diff --git a/.circleci/config.yml b/.circleci/config.yml index 8e4b7a9..732a2c0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,6 +30,14 @@ jobs: steps: - checkout + - run: + name: Submodule init + command: | + git submodule init + git submodule update + cd ./tests/testdata && git fetch && git checkout master + + - run: name: Install dependencies command: | @@ -71,10 +79,10 @@ jobs: sudo apt-get install default-mysql-client - run: - name: Init MySQL database + name: Create MySQL user and databases command: | mysql -h 127.0.0.1 -u root -pjet -e "grant all privileges on *.* to 'jet'@'%';" - mysql -h 127.0.0.1 -u root -pjet -e "set global sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';" + mysql -h 127.0.0.1 -u root -pjet -e "set global sql_mode = 'STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';" mysql -h 127.0.0.1 -u jet -pjet -e "create database test_sample" - run: @@ -98,4 +106,75 @@ jobs: - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ path: /tmp/test-results + build-mariadb: + docker: + # specify the version + - image: circleci/golang:1.11 + - image: circleci/mariadb:10.3 + command: [--default-authentication-plugin=mysql_native_password] + environment: + MYSQL_ROOT_PASSWORD: jet + MYSQL_DATABASE: dvds + MYSQL_USER: jet + MYSQL_PASSWORD: jet + + working_directory: /go/src/github.com/go-jet/jet + + environment: # environment variables for the build itself + TEST_RESULTS: /tmp/test-results # path to where test results will be saved + + steps: + - checkout + + - run: + name: Submodule init + command: | + git submodule init + git submodule update + cd ./tests/testdata && git fetch && git checkout master + + - run: + name: Install dependencies + command: | + go get github.com/google/uuid + go get github.com/lib/pq + go get github.com/go-sql-driver/mysql + + go get github.com/pkg/profile + go get gotest.tools/assert + go get github.com/davecgh/go-spew/spew + go get github.com/jstemmer/go-junit-report + + go install github.com/go-jet/jet/cmd/jet + + - run: + name: Install MySQL CLI; + command: | + sudo apt-get install default-mysql-client + + - run: + name: Init MariaDB database + command: | + mysql -h 127.0.0.1 -u root -pjet -e "grant all privileges on *.* to 'jet'@'%';" + mysql -h 127.0.0.1 -u root -pjet -e "set global sql_mode = 'STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';" + mysql -h 127.0.0.1 -u jet -pjet -e "create database test_sample" + + - run: + name: Init MariaDB database + command: | + cd tests + go run ./init/init.go -testsuite MariaDB + cd .. + + - run: + name: Run MariaDB tests + command: | + go test -v ./tests/mysql/ -source=MariaDB + +workflows: + version: 2 + build_and_test: + jobs: + - build + - build-mariadb diff --git a/.gitignore b/.gitignore index 731f340..f286e83 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,5 @@ # Test files gen -.gentestdata \ No newline at end of file +.gentestdata +.tests/testdata/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..4ae1290 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "tests/testdata"] + path = tests/testdata + url = https://github.com/go-jet/jet-test-data diff --git a/generator/internal/metadata/dialect_query_set.go b/generator/internal/metadata/dialect_query_set.go index 96867be..057be3e 100644 --- a/generator/internal/metadata/dialect_query_set.go +++ b/generator/internal/metadata/dialect_query_set.go @@ -95,10 +95,10 @@ ORDER BY ordinal_position; func (m *MySqlQuerySet) ListOfEnumsQuery() string { return ` -SELECT (CASE DATA_TYPE WHEN 'enum' then CONCAT(TABLE_NAME, '_', COLUMN_NAME) ELSE '' END ), SUBSTRING(COLUMN_TYPE,5) -FROM information_schema.columns -WHERE table_schema = ? -AND DATA_TYPE = 'enum'; +SELECT (CASE c.DATA_TYPE WHEN 'enum' then CONCAT(c.TABLE_NAME, '_', c.COLUMN_NAME) ELSE '' END ), SUBSTRING(c.COLUMN_TYPE,5) +FROM information_schema.columns as c + INNER JOIN information_schema.tables as t on (t.table_schema = c.table_schema AND t.table_name = c.table_name) +WHERE c.table_schema = ? AND DATA_TYPE = 'enum' AND t.TABLE_TYPE = 'BASE TABLE'; ` } diff --git a/internal/jet/bool_expression.go b/internal/jet/bool_expression.go index f4ca0a6..466f624 100644 --- a/internal/jet/bool_expression.go +++ b/internal/jet/bool_expression.go @@ -92,10 +92,10 @@ type binaryBoolExpression struct { binaryOpExpression } -func newBinaryBoolOperator(lhs, rhs Expression, operator string) BoolExpression { +func newBinaryBoolOperator(lhs, rhs Expression, operator string, additionalParams ...Expression) BoolExpression { binaryBoolExpression := binaryBoolExpression{} - binaryBoolExpression.binaryOpExpression = newBinaryExpression(lhs, rhs, operator) + binaryBoolExpression.binaryOpExpression = newBinaryExpression(lhs, rhs, operator, additionalParams...) binaryBoolExpression.ExpressionInterfaceImpl.Parent = &binaryBoolExpression binaryBoolExpression.boolInterfaceImpl.parent = &binaryBoolExpression diff --git a/internal/jet/cast.go b/internal/jet/cast.go index 7369256..bd0eb7c 100644 --- a/internal/jet/cast.go +++ b/internal/jet/cast.go @@ -39,7 +39,7 @@ func (b *castExpression) serialize(statement StatementType, out *SqlBuilder, opt expression := b.expression castType := b.cast - if castOverride := out.Dialect.SerializeOverride("CAST"); castOverride != nil { + if castOverride := out.Dialect.OperatorSerializeOverride("CAST"); castOverride != nil { castOverride(expression, String(castType))(statement, out, options...) return } diff --git a/internal/jet/clause.go b/internal/jet/clause.go index 95283a1..92c9df9 100644 --- a/internal/jet/clause.go +++ b/internal/jet/clause.go @@ -184,14 +184,6 @@ func (s *ClauseSetStmtOperator) Serialize(statementType StatementType, out *SqlB panic("jet: UNION Statement must contain at least two SELECT statements") } - wrap := s.OrderBy.List != nil || s.Limit.Count >= 0 || s.Offset.Count >= 0 - - if wrap { - out.NewLine() - out.WriteString("(") - out.IncreaseIdent() - } - for i, selectStmt := range s.Selects { out.NewLine() if i > 0 { @@ -210,12 +202,6 @@ func (s *ClauseSetStmtOperator) Serialize(statementType StatementType, out *SqlB selectStmt.serialize(statementType, out) } - if wrap { - out.DecreaseIdent() - out.NewLine() - out.WriteString(")") - } - s.OrderBy.Serialize(statementType, out) s.Limit.Serialize(statementType, out) s.Offset.Serialize(statementType, out) @@ -391,26 +377,19 @@ func (d *ClauseStatementBegin) Serialize(statementType StatementType, out *SqlBu } } -type ClauseString struct { - Name string - Data string -} - -func (d *ClauseString) Serialize(statementType StatementType, out *SqlBuilder) { - out.NewLine() - out.WriteString(d.Name) - out.WriteString(d.Data) -} - type ClauseOptional struct { - Name string - Show bool + Name string + Show bool + InNewLine bool } func (d *ClauseOptional) Serialize(statementType StatementType, out *SqlBuilder) { if !d.Show { return } + if d.InNewLine { + out.NewLine() + } out.WriteString(d.Name) } diff --git a/internal/jet/dialect.go b/internal/jet/dialect.go index d07320d..a0a9d37 100644 --- a/internal/jet/dialect.go +++ b/internal/jet/dialect.go @@ -3,7 +3,8 @@ package jet type Dialect interface { Name() string PackageName() string - SerializeOverride(operator string) SerializeOverride + OperatorSerializeOverride(operator string) SerializeOverride + FunctionSerializeOverride(function string) SerializeOverride AliasQuoteChar() byte IdentifierQuoteChar() byte ArgumentPlaceholder() QueryPlaceholderFunc @@ -14,32 +15,35 @@ type SerializeOverride func(expressions ...Expression) SerializeFunc type QueryPlaceholderFunc func(ord int) string type DialectParams struct { - Name string - PackageName string - SerializeOverrides map[string]SerializeOverride - AliasQuoteChar byte - IdentifierQuoteChar byte - ArgumentPlaceholder QueryPlaceholderFunc + Name string + PackageName string + OperatorSerializeOverrides map[string]SerializeOverride + FunctionSerializeOverrides map[string]SerializeOverride + AliasQuoteChar byte + IdentifierQuoteChar byte + ArgumentPlaceholder QueryPlaceholderFunc } func NewDialect(params DialectParams) Dialect { return &dialectImpl{ - name: params.Name, - packageName: params.PackageName, - serializeOverrides: params.SerializeOverrides, - aliasQuoteChar: params.AliasQuoteChar, - identifierQuoteChar: params.IdentifierQuoteChar, - argumentPlaceholder: params.ArgumentPlaceholder, + name: params.Name, + packageName: params.PackageName, + operatorSerializeOverrides: params.OperatorSerializeOverrides, + functionSerializeOverrides: params.FunctionSerializeOverrides, + aliasQuoteChar: params.AliasQuoteChar, + identifierQuoteChar: params.IdentifierQuoteChar, + argumentPlaceholder: params.ArgumentPlaceholder, } } type dialectImpl struct { - name string - packageName string - serializeOverrides map[string]SerializeOverride - aliasQuoteChar byte - identifierQuoteChar byte - argumentPlaceholder QueryPlaceholderFunc + name string + packageName string + operatorSerializeOverrides map[string]SerializeOverride + functionSerializeOverrides map[string]SerializeOverride + aliasQuoteChar byte + identifierQuoteChar byte + argumentPlaceholder QueryPlaceholderFunc supportsReturning bool } @@ -52,8 +56,18 @@ func (d *dialectImpl) PackageName() string { return d.packageName } -func (d *dialectImpl) SerializeOverride(operator string) SerializeOverride { - return d.serializeOverrides[operator] +func (d *dialectImpl) OperatorSerializeOverride(operator string) SerializeOverride { + if d.operatorSerializeOverrides == nil { + return nil + } + return d.operatorSerializeOverrides[operator] +} + +func (d *dialectImpl) FunctionSerializeOverride(function string) SerializeOverride { + if d.functionSerializeOverrides == nil { + return nil + } + return d.functionSerializeOverrides[function] } func (d *dialectImpl) AliasQuoteChar() byte { diff --git a/internal/jet/expression.go b/internal/jet/expression.go index 817ce6f..f303fee 100644 --- a/internal/jet/expression.go +++ b/internal/jet/expression.go @@ -77,17 +77,22 @@ func (e *ExpressionInterfaceImpl) serializeForOrderBy(statement StatementType, o // Representation of binary operations (e.g. comparisons, arithmetic) type binaryOpExpression struct { - lhs, rhs Expression - operator string + lhs, rhs Expression + additionalParam Expression + operator string } -func newBinaryExpression(lhs, rhs Expression, operator string) binaryOpExpression { +func newBinaryExpression(lhs, rhs Expression, operator string, additionalParam ...Expression) binaryOpExpression { binaryExpression := binaryOpExpression{ lhs: lhs, rhs: rhs, operator: operator, } + if len(additionalParam) > 0 { + binaryExpression.additionalParam = additionalParam[0] + } + return binaryExpression } @@ -105,8 +110,8 @@ func (c *binaryOpExpression) serialize(statement StatementType, out *SqlBuilder, out.WriteString("(") } - if serializeOverride := out.Dialect.SerializeOverride(c.operator); serializeOverride != nil { - serializeOverrideFunc := serializeOverride(c.lhs, c.rhs) + if serializeOverride := out.Dialect.OperatorSerializeOverride(c.operator); serializeOverride != nil { + serializeOverrideFunc := serializeOverride(c.lhs, c.rhs, c.additionalParam) serializeOverrideFunc(statement, out, options...) } else { c.lhs.serialize(statement, out) diff --git a/internal/jet/func_expression.go b/internal/jet/func_expression.go index 2e6e9dd..3cab191 100644 --- a/internal/jet/func_expression.go +++ b/internal/jet/func_expression.go @@ -349,7 +349,7 @@ func TO_HEX(number IntegerExpression) StringExpression { // REGEXP_LIKE Returns 1 if the string expr matches the regular expression specified by the pattern pat, 0 otherwise. func REGEXP_LIKE(stringExp StringExpression, pattern StringExpression, matchType ...string) BoolExpression { if len(matchType) > 0 { - return newBoolFunc("REGEXP_LIKE", stringExp, pattern, String(matchType[0], true)) + return newBoolFunc("REGEXP_LIKE", stringExp, pattern, ConstLiteral(matchType[0])) } return newBoolFunc("REGEXP_LIKE", stringExp, pattern) @@ -391,7 +391,7 @@ func CURRENT_TIME(precision ...int) TimezExpression { var timezFunc *timezFunc if len(precision) > 0 { - timezFunc = newTimezFunc("CURRENT_TIME", constLiteral(precision[0])) + timezFunc = newTimezFunc("CURRENT_TIME", ConstLiteral(precision[0])) } else { timezFunc = newTimezFunc("CURRENT_TIME") } @@ -406,7 +406,7 @@ func CURRENT_TIMESTAMP(precision ...int) TimestampzExpression { var timestampzFunc *timestampzFunc if len(precision) > 0 { - timestampzFunc = newTimestampzFunc("CURRENT_TIMESTAMP", constLiteral(precision[0])) + timestampzFunc = newTimestampzFunc("CURRENT_TIMESTAMP", ConstLiteral(precision[0])) } else { timestampzFunc = newTimestampzFunc("CURRENT_TIMESTAMP") } @@ -421,7 +421,7 @@ func LOCALTIME(precision ...int) TimeExpression { var timeFunc *timeFunc if len(precision) > 0 { - timeFunc = newTimeFunc("LOCALTIME", constLiteral(precision[0])) + timeFunc = newTimeFunc("LOCALTIME", ConstLiteral(precision[0])) } else { timeFunc = newTimeFunc("LOCALTIME") } @@ -436,7 +436,7 @@ func LOCALTIMESTAMP(precision ...int) TimestampExpression { var timestampFunc *timestampFunc if len(precision) > 0 { - timestampFunc = NewTimestampFunc("LOCALTIMESTAMP", constLiteral(precision[0])) + timestampFunc = NewTimestampFunc("LOCALTIMESTAMP", ConstLiteral(precision[0])) } else { timestampFunc = NewTimestampFunc("LOCALTIMESTAMP") } @@ -505,7 +505,7 @@ func newFunc(name string, expressions []Expression, parent Expression) *funcExpr } func (f *funcExpressionImpl) serialize(statement StatementType, out *SqlBuilder, options ...SerializeOption) { - if serializeOverride := out.Dialect.SerializeOverride(f.name); serializeOverride != nil { + if serializeOverride := out.Dialect.FunctionSerializeOverride(f.name); serializeOverride != nil { serializeOverrideFunc := serializeOverride(f.expressions...) serializeOverrideFunc(statement, out, options...) return diff --git a/internal/jet/integer_expression_test.go b/internal/jet/integer_expression_test.go index 5496da5..7920545 100644 --- a/internal/jet/integer_expression_test.go +++ b/internal/jet/integer_expression_test.go @@ -66,7 +66,7 @@ func TestIntExpressionPOW(t *testing.T) { func TestIntExpressionBIT_NOT(t *testing.T) { assertClauseSerialize(t, BIT_NOT(table2ColInt), "(~ table2.col_int)") - assertClauseSerialize(t, BIT_NOT(Int(11)), "(~ $1)", int64(11)) + assertClauseSerialize(t, BIT_NOT(Int(11)), "(~ 11)") } func TestIntExpressionBIT_AND(t *testing.T) { diff --git a/internal/jet/literal_expression.go b/internal/jet/literal_expression.go index ccb9940..5516572 100644 --- a/internal/jet/literal_expression.go +++ b/internal/jet/literal_expression.go @@ -32,7 +32,7 @@ func literal(value interface{}, optionalConstant ...bool) *literalExpressionImpl return &exp } -func constLiteral(value interface{}) *literalExpressionImpl { +func ConstLiteral(value interface{}) *literalExpressionImpl { exp := literal(value) exp.constant = true @@ -61,13 +61,10 @@ type integerLiteralExpression struct { } // Int is constructor for integer expressions literals. -func Int(value int64, constant ...bool) IntegerExpression { +func Int(value int64) IntegerExpression { numLiteral := &integerLiteralExpression{} numLiteral.literalExpressionImpl = *literal(value) - if len(constant) > 0 && constant[0] == true { - numLiteral.constant = true - } numLiteral.literalExpressionImpl.Parent = numLiteral numLiteral.integerInterfaceImpl.parent = numLiteral @@ -114,12 +111,9 @@ type stringLiteral struct { } // String creates new string literal expression -func String(value string, constant ...bool) StringExpression { +func String(value string) StringExpression { stringLiteral := stringLiteral{} stringLiteral.literalExpressionImpl = *literal(value) - if len(constant) > 0 && constant[0] == true { - stringLiteral.constant = true - } stringLiteral.stringInterfaceImpl.parent = &stringLiteral diff --git a/internal/jet/operators.go b/internal/jet/operators.go index ba1f984..14dbd77 100644 --- a/internal/jet/operators.go +++ b/internal/jet/operators.go @@ -1,7 +1,9 @@ package jet const ( - StringConcatOperator = "||" + StringConcatOperator = "||" + StringRegexpLikeOperator = "REGEXP" + StringNotRegexpLikeOperator = "NOT REGEXP" ) //----------- Logical operators ---------------// @@ -13,6 +15,9 @@ func NOT(exp BoolExpression) BoolExpression { // BIT_NOT inverts every bit in integer expression result func BIT_NOT(expr IntegerExpression) IntegerExpression { + if literalExp, ok := expr.(LiteralExpression); ok { + literalExp.SetConstant(true) + } return newPrefixIntegerOperator(expr, "~") } diff --git a/internal/jet/string_expression.go b/internal/jet/string_expression.go index 1f491b0..ef8d802 100644 --- a/internal/jet/string_expression.go +++ b/internal/jet/string_expression.go @@ -19,7 +19,8 @@ type StringExpression interface { LIKE(pattern StringExpression) BoolExpression NOT_LIKE(pattern StringExpression) BoolExpression - REGEXP_LIKE(pattern StringExpression, matchType ...string) BoolExpression + REGEXP_LIKE(pattern StringExpression, caseSensitive ...bool) BoolExpression + NOT_REGEXP_LIKE(pattern StringExpression, caseSensitive ...bool) BoolExpression } type stringInterfaceImpl struct { @@ -70,11 +71,16 @@ func (s *stringInterfaceImpl) NOT_LIKE(pattern StringExpression) BoolExpression return newBinaryBoolOperator(s.parent, pattern, "NOT LIKE") } -func (s *stringInterfaceImpl) REGEXP_LIKE(pattern StringExpression, matchType ...string) BoolExpression { - return REGEXP_LIKE(s.parent, pattern, matchType...) +func (s *stringInterfaceImpl) REGEXP_LIKE(pattern StringExpression, caseSensitive ...bool) BoolExpression { + return newBinaryBoolOperator(s.parent, pattern, StringRegexpLikeOperator, Bool(len(caseSensitive) > 0 && caseSensitive[0])) +} + +func (s *stringInterfaceImpl) NOT_REGEXP_LIKE(pattern StringExpression, caseSensitive ...bool) BoolExpression { + return newBinaryBoolOperator(s.parent, pattern, StringNotRegexpLikeOperator, Bool(len(caseSensitive) > 0 && caseSensitive[0])) } //---------------------------------------------------// + type binaryStringExpression struct { ExpressionInterfaceImpl stringInterfaceImpl diff --git a/internal/jet/string_expression_test.go b/internal/jet/string_expression_test.go index cd53e51..0f461ac 100644 --- a/internal/jet/string_expression_test.go +++ b/internal/jet/string_expression_test.go @@ -67,8 +67,13 @@ func TestStringNOT_LIKE(t *testing.T) { } func TestStringREGEXP_LIKE(t *testing.T) { - assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(table2ColStr), "REGEXP_LIKE(table3.col2, table2.col_str)") - assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), "c"), "REGEXP_LIKE(table3.col2, $1, 'c')", "JOHN") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(table2ColStr), "(table3.col2 REGEXP table2.col_str)") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), true), "(table3.col2 REGEXP $1)", "JOHN") +} + +func TestStringNOT_REGEXP_LIKE(t *testing.T) { + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(table2ColStr), "(table3.col2 NOT REGEXP table2.col_str)") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN"), true), "(table3.col2 NOT REGEXP $1)", "JOHN") } func TestStringExp(t *testing.T) { diff --git a/mysql/cast.go b/mysql/cast.go index c4c056c..8240f42 100644 --- a/mysql/cast.go +++ b/mysql/cast.go @@ -30,7 +30,7 @@ type castImpl struct { jet.Cast } -func CAST(expr jet.Expression) cast { +func CAST(expr Expression) cast { castImpl := &castImpl{} castImpl.Cast = jet.NewCastImpl(expr) diff --git a/mysql/delete_statement.go b/mysql/delete_statement.go index a01f1c3..07dd4ef 100644 --- a/mysql/delete_statement.go +++ b/mysql/delete_statement.go @@ -3,7 +3,7 @@ package mysql import "github.com/go-jet/jet/internal/jet" type DeleteStatement interface { - jet.Statement + Statement WHERE(expression BoolExpression) DeleteStatement ORDER_BY(orderByClauses ...jet.OrderByClause) DeleteStatement diff --git a/mysql/dialect.go b/mysql/dialect.go index 1da350a..7186fa6 100644 --- a/mysql/dialect.go +++ b/mysql/dialect.go @@ -8,19 +8,21 @@ var Dialect = NewDialect() func NewDialect() jet.Dialect { - serializeOverrides := map[string]jet.SerializeOverride{} - serializeOverrides["IS DISTINCT FROM"] = mysql_IS_DISTINCT_FROM - serializeOverrides["IS NOT DISTINCT FROM"] = mysql_IS_NOT_DISTINCT_FROM - serializeOverrides["/"] = mysql_DIVISION - serializeOverrides["#"] = mysql_BIT_XOR - serializeOverrides[jet.StringConcatOperator] = mysql_CONCAT_operator + operatorSerializeOverrides := map[string]jet.SerializeOverride{} + operatorSerializeOverrides[jet.StringRegexpLikeOperator] = mysql_REGEXP_LIKE_operator + operatorSerializeOverrides[jet.StringNotRegexpLikeOperator] = mysql_NOT_REGEXP_LIKE_operator + operatorSerializeOverrides["IS DISTINCT FROM"] = mysql_IS_DISTINCT_FROM + operatorSerializeOverrides["IS NOT DISTINCT FROM"] = mysql_IS_NOT_DISTINCT_FROM + operatorSerializeOverrides["/"] = mysql_DIVISION + operatorSerializeOverrides["#"] = mysql_BIT_XOR + operatorSerializeOverrides[jet.StringConcatOperator] = mysql_CONCAT_operator mySQLDialectParams := jet.DialectParams{ - Name: "MySQL", - PackageName: "mysql", - SerializeOverrides: serializeOverrides, - AliasQuoteChar: '"', - IdentifierQuoteChar: '`', + Name: "MySQL", + PackageName: "mysql", + OperatorSerializeOverrides: operatorSerializeOverrides, + AliasQuoteChar: '"', + IdentifierQuoteChar: '`', ArgumentPlaceholder: func(int) string { return "?" }, @@ -31,7 +33,7 @@ func NewDialect() jet.Dialect { func mysql_BIT_XOR(expressions ...jet.Expression) jet.SerializeFunc { return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { - if len(expressions) != 2 { + if len(expressions) < 2 { panic("jet: invalid number of expressions for operator XOR") } @@ -48,7 +50,7 @@ func mysql_BIT_XOR(expressions ...jet.Expression) jet.SerializeFunc { func mysql_CONCAT_operator(expressions ...jet.Expression) jet.SerializeFunc { return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { - if len(expressions) != 2 { + if len(expressions) < 2 { panic("jet: invalid number of expressions for operator CONCAT") } out.WriteString("CONCAT(") @@ -65,7 +67,7 @@ func mysql_CONCAT_operator(expressions ...jet.Expression) jet.SerializeFunc { func mysql_DIVISION(expressions ...jet.Expression) jet.SerializeFunc { return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { - if len(expressions) != 2 { + if len(expressions) < 2 { panic("jet: invalid number of expressions for operator DIV") } @@ -89,7 +91,7 @@ func mysql_DIVISION(expressions ...jet.Expression) jet.SerializeFunc { func mysql_IS_NOT_DISTINCT_FROM(expressions ...jet.Expression) jet.SerializeFunc { return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { - if len(expressions) != 2 { + if len(expressions) < 2 { panic("jet: invalid number of expressions for operator") } @@ -106,3 +108,55 @@ func mysql_IS_DISTINCT_FROM(expressions ...jet.Expression) jet.SerializeFunc { out.WriteString(")") } } + +func mysql_REGEXP_LIKE_operator(expressions ...jet.Expression) jet.SerializeFunc { + return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { + if len(expressions) < 2 { + panic("jet: invalid number of expressions for operator") + } + + jet.Serialize(expressions[0], statement, out, options...) + + caseSensitive := false + + if len(expressions) >= 3 { + if stringLiteral, ok := expressions[2].(jet.LiteralExpression); ok { + caseSensitive = stringLiteral.Value().(bool) + } + } + + out.WriteString("REGEXP") + + if caseSensitive { + out.WriteString("BINARY") + } + + jet.Serialize(expressions[1], statement, out, options...) + } +} + +func mysql_NOT_REGEXP_LIKE_operator(expressions ...jet.Expression) jet.SerializeFunc { + return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { + if len(expressions) < 2 { + panic("jet: invalid number of expressions for operator") + } + + jet.Serialize(expressions[0], statement, out, options...) + + caseSensitive := false + + if len(expressions) >= 3 { + if stringLiteral, ok := expressions[2].(jet.LiteralExpression); ok { + caseSensitive = stringLiteral.Value().(bool) + } + } + + out.WriteString("NOT REGEXP") + + if caseSensitive { + out.WriteString("BINARY") + } + + jet.Serialize(expressions[1], statement, out, options...) + } +} diff --git a/mysql/dialect_test.go b/mysql/dialect_test.go index ed202d8..936277a 100644 --- a/mysql/dialect_test.go +++ b/mysql/dialect_test.go @@ -46,3 +46,17 @@ func TestExists(t *testing.T) { WHERE table1.col1 = table2.col3 ))`, int64(1)) } + +func TestString_REGEXP_LIKE_operator(t *testing.T) { + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(table2ColStr), "(table3.col2 REGEXP table2.col_str)") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN")), "(table3.col2 REGEXP ?)", "JOHN") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), false), "(table3.col2 REGEXP ?)", "JOHN") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), true), "(table3.col2 REGEXP BINARY ?)", "JOHN") +} + +func TestString_NOT_REGEXP_LIKE_operator(t *testing.T) { + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(table2ColStr), "(table3.col2 NOT REGEXP table2.col_str)") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN")), "(table3.col2 NOT REGEXP ?)", "JOHN") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN"), false), "(table3.col2 NOT REGEXP ?)", "JOHN") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN"), true), "(table3.col2 NOT REGEXP BINARY ?)", "JOHN") +} diff --git a/mysql/expressions.go b/mysql/expressions.go index 297507d..2ff56b8 100644 --- a/mysql/expressions.go +++ b/mysql/expressions.go @@ -32,5 +32,3 @@ var TimestampExp = jet.TimestampExp var Raw = jet.Raw var NewEnumValue = jet.NewEnumValue - -type Statement jet.Statement diff --git a/mysql/functions.go b/mysql/functions.go index b4611f2..a78b27e 100644 --- a/mysql/functions.go +++ b/mysql/functions.go @@ -180,7 +180,7 @@ func CURRENT_TIMESTAMP(precision ...int) TimestampExpression { // NOW returns current datetime func NOW(fsp ...int) DateTimeExpression { if len(fsp) > 0 { - return jet.NewTimestampFunc("NOW", Int(int64(fsp[0]), true)) + return jet.NewTimestampFunc("NOW", jet.ConstLiteral(int64(fsp[0]))) } return jet.NewTimestampFunc("NOW") } diff --git a/mysql/insert_statement.go b/mysql/insert_statement.go index a9020fe..8639eb7 100644 --- a/mysql/insert_statement.go +++ b/mysql/insert_statement.go @@ -4,7 +4,7 @@ import "github.com/go-jet/jet/internal/jet" // InsertStatement is interface for SQL INSERT statements type InsertStatement interface { - jet.Statement + Statement // Insert row of values VALUES(value interface{}, values ...interface{}) InsertStatement diff --git a/mysql/select_statement.go b/mysql/select_statement.go index d205bbb..ad91935 100644 --- a/mysql/select_statement.go +++ b/mysql/select_statement.go @@ -10,9 +10,9 @@ var ( ) type SelectStatement interface { - jet.Statement + Statement jet.HasProjections - jet.Expression + Expression DISTINCT() SelectStatement FROM(table ReadableTable) SelectStatement @@ -23,6 +23,7 @@ type SelectStatement interface { LIMIT(limit int64) SelectStatement OFFSET(offset int64) SelectStatement FOR(lock SelectLock) SelectStatement + LOCK_IN_SHARE_MODE() SelectStatement UNION(rhs SelectStatement) SetStatement UNION_ALL(rhs SelectStatement) SetStatement @@ -31,22 +32,24 @@ type SelectStatement interface { } //SELECT creates new SelectStatement with list of projections -func SELECT(projection jet.Projection, projections ...jet.Projection) SelectStatement { - return newSelectStatement(nil, append([]jet.Projection{projection}, projections...)) +func SELECT(projection Projection, projections ...Projection) SelectStatement { + return newSelectStatement(nil, append([]Projection{projection}, projections...)) } -func newSelectStatement(table ReadableTable, projections []jet.Projection) SelectStatement { +func newSelectStatement(table ReadableTable, projections []Projection) SelectStatement { newSelect := &selectStatementImpl{} newSelect.ExpressionStatementImpl.StatementImpl = jet.NewStatementImpl(Dialect, jet.SelectStatementType, newSelect, &newSelect.Select, &newSelect.From, &newSelect.Where, &newSelect.GroupBy, &newSelect.Having, &newSelect.OrderBy, - &newSelect.Limit, &newSelect.Offset, &newSelect.For) + &newSelect.Limit, &newSelect.Offset, &newSelect.For, &newSelect.ShareLock) newSelect.ExpressionStatementImpl.ExpressionInterfaceImpl.Parent = newSelect - newSelect.Select.Projections = projections + newSelect.Select.Projections = toJetProjectionList(projections) newSelect.From.Table = table newSelect.Limit.Count = -1 newSelect.Offset.Count = -1 + newSelect.ShareLock.Name = "LOCK IN SHARE MODE" + newSelect.ShareLock.InNewLine = true newSelect.setOperatorsImpl.parent = newSelect @@ -57,15 +60,16 @@ type selectStatementImpl struct { jet.ExpressionStatementImpl setOperatorsImpl - Select jet.ClauseSelect - From jet.ClauseFrom - Where jet.ClauseWhere - GroupBy jet.ClauseGroupBy - Having jet.ClauseHaving - OrderBy jet.ClauseOrderBy - Limit jet.ClauseLimit - Offset jet.ClauseOffset - For jet.ClauseFor + Select jet.ClauseSelect + From jet.ClauseFrom + Where jet.ClauseWhere + GroupBy jet.ClauseGroupBy + Having jet.ClauseHaving + OrderBy jet.ClauseOrderBy + Limit jet.ClauseLimit + Offset jet.ClauseOffset + For jet.ClauseFor + ShareLock jet.ClauseOptional } func (s *selectStatementImpl) DISTINCT() SelectStatement { @@ -113,6 +117,11 @@ func (s *selectStatementImpl) FOR(lock SelectLock) SelectStatement { return s } +func (s *selectStatementImpl) LOCK_IN_SHARE_MODE() SelectStatement { + s.ShareLock.Show = true + return s +} + func (s *selectStatementImpl) AsTable(alias string) SelectTable { return newSelectTable(s, alias) } diff --git a/mysql/select_statement_test.go b/mysql/select_statement_test.go index e7f3d7e..9655192 100644 --- a/mysql/select_statement_test.go +++ b/mysql/select_statement_test.go @@ -124,3 +124,11 @@ FROM db.table1 FOR SHARE NOWAIT; `) } + +func TestSelect_LOCK_IN_SHARE_MODE(t *testing.T) { + testutils.AssertStatementSql(t, SELECT(table1ColBool).FROM(table1).LOCK_IN_SHARE_MODE(), ` +SELECT table1.col_bool AS "table1.col_bool" +FROM db.table1 +LOCK IN SHARE MODE; +`) +} diff --git a/mysql/table.go b/mysql/table.go index ada83d6..11b02d5 100644 --- a/mysql/table.go +++ b/mysql/table.go @@ -14,7 +14,7 @@ type Table interface { type readableTable interface { // Generates a select query on the current tableName. - SELECT(projection jet.Projection, projections ...jet.Projection) SelectStatement + SELECT(projection Projection, projections ...Projection) SelectStatement // Creates a inner join tableName Expression using onCondition. INNER_JOIN(table ReadableTable, onCondition BoolExpression) joinSelectUpdateTable @@ -47,8 +47,8 @@ type readableTableInterfaceImpl struct { } // Generates a select query on the current tableName. -func (r *readableTableInterfaceImpl) SELECT(projection1 jet.Projection, projections ...jet.Projection) SelectStatement { - return newSelectStatement(r.parent, append([]jet.Projection{projection1}, projections...)) +func (r *readableTableInterfaceImpl) SELECT(projection1 Projection, projections ...Projection) SelectStatement { + return newSelectStatement(r.parent, append([]Projection{projection1}, projections...)) } // Creates a inner join tableName Expression using onCondition. diff --git a/mysql/types.go b/mysql/types.go new file mode 100644 index 0000000..b9063f0 --- /dev/null +++ b/mysql/types.go @@ -0,0 +1,16 @@ +package mysql + +import "github.com/go-jet/jet/internal/jet" + +type Statement jet.Statement +type Projection jet.Projection + +func toJetProjectionList(projections []Projection) []jet.Projection { + ret := []jet.Projection{} + + for _, projection := range projections { + ret = append(ret, projection) + } + + return ret +} diff --git a/postgres/dialect.go b/postgres/dialect.go index 27656b4..8de68b8 100644 --- a/postgres/dialect.go +++ b/postgres/dialect.go @@ -3,23 +3,23 @@ package postgres import ( "github.com/go-jet/jet/internal/jet" "strconv" - "strings" ) var Dialect = NewDialect() func NewDialect() jet.Dialect { - serializeOverrides := map[string]jet.SerializeOverride{} - serializeOverrides["REGEXP_LIKE"] = postgres_REGEXP_LIKE_function - serializeOverrides["CAST"] = postgresCAST + operatorSerializeOverrides := map[string]jet.SerializeOverride{} + operatorSerializeOverrides[jet.StringRegexpLikeOperator] = postgres_REGEXP_LIKE_operator + operatorSerializeOverrides[jet.StringNotRegexpLikeOperator] = postgres_NOT_REGEXP_LIKE_operator + operatorSerializeOverrides["CAST"] = postgresCAST dialectParams := jet.DialectParams{ - Name: "PostgreSQL", - PackageName: "postgres", - SerializeOverrides: serializeOverrides, - AliasQuoteChar: '"', - IdentifierQuoteChar: '"', + Name: "PostgreSQL", + PackageName: "postgres", + OperatorSerializeOverrides: operatorSerializeOverrides, + AliasQuoteChar: '"', + IdentifierQuoteChar: '"', ArgumentPlaceholder: func(ord int) string { return "$" + strconv.Itoa(ord) }, @@ -53,7 +53,7 @@ func postgresCAST(expressions ...jet.Expression) jet.SerializeFunc { } } -func postgres_REGEXP_LIKE_function(expressions ...jet.Expression) jet.SerializeFunc { +func postgres_REGEXP_LIKE_operator(expressions ...jet.Expression) jet.SerializeFunc { return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { if len(expressions) < 2 { panic("jet: invalid number of expressions for operator") @@ -65,9 +65,7 @@ func postgres_REGEXP_LIKE_function(expressions ...jet.Expression) jet.SerializeF if len(expressions) >= 3 { if stringLiteral, ok := expressions[2].(jet.LiteralExpression); ok { - matchType := stringLiteral.Value().(string) - - caseSensitive = !strings.Contains(matchType, "i") + caseSensitive = stringLiteral.Value().(bool) } } @@ -80,3 +78,29 @@ func postgres_REGEXP_LIKE_function(expressions ...jet.Expression) jet.SerializeF jet.Serialize(expressions[1], statement, out, options...) } } + +func postgres_NOT_REGEXP_LIKE_operator(expressions ...jet.Expression) jet.SerializeFunc { + return func(statement jet.StatementType, out *jet.SqlBuilder, options ...jet.SerializeOption) { + if len(expressions) < 2 { + panic("jet: invalid number of expressions for operator") + } + + jet.Serialize(expressions[0], statement, out, options...) + + caseSensitive := false + + if len(expressions) >= 3 { + if stringLiteral, ok := expressions[2].(jet.LiteralExpression); ok { + caseSensitive = stringLiteral.Value().(bool) + } + } + + if caseSensitive { + out.WriteString("!~") + } else { + out.WriteString("!~*") + } + + jet.Serialize(expressions[1], statement, out, options...) + } +} diff --git a/postgres/dialect_test.go b/postgres/dialect_test.go index aecb97f..b6061b7 100644 --- a/postgres/dialect_test.go +++ b/postgres/dialect_test.go @@ -3,15 +3,17 @@ package postgres import "testing" func TestString_REGEXP_LIKE_operator(t *testing.T) { - assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(table2ColStr), "table3.col2 ~* table2.col_str") - assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), "c"), "table3.col2 ~ $1", "JOHN") - assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), "i"), "table3.col2 ~* $1", "JOHN") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(table2ColStr), "(table3.col2 ~* table2.col_str)") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN")), "(table3.col2 ~* $1)", "JOHN") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), false), "(table3.col2 ~* $1)", "JOHN") + assertClauseSerialize(t, table3StrCol.REGEXP_LIKE(String("JOHN"), true), "(table3.col2 ~ $1)", "JOHN") } -func TestString_REGEXP_LIKE_function(t *testing.T) { - assertClauseSerialize(t, REGEXP_LIKE(table3StrCol, table2ColStr), "table3.col2 ~* table2.col_str") - assertClauseSerialize(t, REGEXP_LIKE(table3StrCol, String("JOHN"), "c"), "table3.col2 ~ $1", "JOHN") - assertClauseSerialize(t, REGEXP_LIKE(table3StrCol, String("JOHN"), "i"), "table3.col2 ~* $1", "JOHN") +func TestString_NOT_REGEXP_LIKE_operator(t *testing.T) { + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(table2ColStr), "(table3.col2 !~* table2.col_str)") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN")), "(table3.col2 !~* $1)", "JOHN") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN"), false), "(table3.col2 !~* $1)", "JOHN") + assertClauseSerialize(t, table3StrCol.NOT_REGEXP_LIKE(String("JOHN"), true), "(table3.col2 !~ $1)", "JOHN") } func TestExists(t *testing.T) { diff --git a/postgres/functions.go b/postgres/functions.go index 8f273aa..fafb16a 100644 --- a/postgres/functions.go +++ b/postgres/functions.go @@ -38,7 +38,6 @@ var SUMi = jet.SUMi //--------------------- String functions ------------------// -var REGEXP_LIKE = jet.REGEXP_LIKE var BIT_LENGTH = jet.BIT_LENGTH var CHAR_LENGTH = jet.CHAR_LENGTH var OCTET_LENGTH = jet.OCTET_LENGTH diff --git a/postgres/select_statement.go b/postgres/select_statement.go index 76fd4be..b8bc3c1 100644 --- a/postgres/select_statement.go +++ b/postgres/select_statement.go @@ -37,11 +37,11 @@ type SelectStatement interface { } //SELECT creates new SelectStatement with list of projections -func SELECT(projection jet.Projection, projections ...jet.Projection) SelectStatement { - return newSelectStatement(nil, append([]jet.Projection{projection}, projections...)) +func SELECT(projection Projection, projections ...Projection) SelectStatement { + return newSelectStatement(nil, append([]Projection{projection}, projections...)) } -func newSelectStatement(table ReadableTable, projections []jet.Projection) SelectStatement { +func newSelectStatement(table ReadableTable, projections []Projection) SelectStatement { newSelect := &selectStatementImpl{} newSelect.ExpressionStatementImpl.StatementImpl = jet.NewStatementImpl(Dialect, jet.SelectStatementType, newSelect, &newSelect.Select, &newSelect.From, &newSelect.Where, &newSelect.GroupBy, &newSelect.Having, &newSelect.OrderBy, @@ -49,7 +49,7 @@ func newSelectStatement(table ReadableTable, projections []jet.Projection) Selec newSelect.ExpressionStatementImpl.ExpressionInterfaceImpl.Parent = newSelect - newSelect.Select.Projections = projections + newSelect.Select.Projections = toJetProjectionList(projections) newSelect.From.Table = table newSelect.Limit.Count = -1 newSelect.Offset.Count = -1 diff --git a/postgres/table.go b/postgres/table.go index 963cad8..4d5bef2 100644 --- a/postgres/table.go +++ b/postgres/table.go @@ -4,7 +4,7 @@ import "github.com/go-jet/jet/internal/jet" type readableTable interface { // Generates a select query on the current tableName. - SELECT(projection jet.Projection, projections ...jet.Projection) SelectStatement + SELECT(projection Projection, projections ...Projection) SelectStatement // Creates a inner join tableName Expression using onCondition. INNER_JOIN(table ReadableTable, onCondition BoolExpression) ReadableTable @@ -52,8 +52,8 @@ type readableTableInterfaceImpl struct { } // Generates a select query on the current tableName. -func (r *readableTableInterfaceImpl) SELECT(projection1 jet.Projection, projections ...jet.Projection) SelectStatement { - return newSelectStatement(r.parent, append([]jet.Projection{projection1}, projections...)) +func (r *readableTableInterfaceImpl) SELECT(projection1 Projection, projections ...Projection) SelectStatement { + return newSelectStatement(r.parent, append([]Projection{projection1}, projections...)) } // Creates a inner join tableName Expression using onCondition. diff --git a/postgres/types.go b/postgres/types.go new file mode 100644 index 0000000..20e5c4e --- /dev/null +++ b/postgres/types.go @@ -0,0 +1,16 @@ +package postgres + +import "github.com/go-jet/jet/internal/jet" + +type Statement jet.Statement +type Projection jet.Projection + +func toJetProjectionList(projections []Projection) []jet.Projection { + ret := []jet.Projection{} + + for _, projection := range projections { + ret = append(ret, projection) + } + + return ret +} diff --git a/tests/init/data/mysql/dvds.sql b/tests/init/data/mysql/dvds.sql deleted file mode 100644 index c450c8a..0000000 --- a/tests/init/data/mysql/dvds.sql +++ /dev/null @@ -1,47079 +0,0 @@ --- Sakila Sample Database Schema --- Version 1.0 - --- Copyright (c) 2006, 2015, Oracle and/or its affiliates. --- All rights reserved. - --- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - --- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. --- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. --- * Neither the name of Oracle nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - --- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; -SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; -SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; - -DROP SCHEMA IF EXISTS dvds; -CREATE SCHEMA dvds; -USE dvds; - --- --- Table structure for table `actor` --- - -CREATE TABLE actor ( - actor_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - first_name VARCHAR(45) NOT NULL, - last_name VARCHAR(45) NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (actor_id), - KEY idx_actor_last_name (last_name) -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `address` --- - -CREATE TABLE address ( - address_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - address VARCHAR(50) NOT NULL, - address2 VARCHAR(50) DEFAULT NULL, - district VARCHAR(20) NOT NULL, - city_id SMALLINT UNSIGNED NOT NULL, - postal_code VARCHAR(10) DEFAULT NULL, - phone VARCHAR(20) NOT NULL, - /*!50705 location GEOMETRY NOT NULL,*/ - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (address_id), - KEY idx_fk_city_id (city_id), - /*!50705 SPATIAL KEY `idx_location` (location),*/ - CONSTRAINT `fk_address_city` FOREIGN KEY (city_id) REFERENCES city (city_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `category` --- - -CREATE TABLE category ( - category_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, - name VARCHAR(25) NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (category_id) -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `city` --- - -CREATE TABLE city ( - city_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - city VARCHAR(50) NOT NULL, - country_id SMALLINT UNSIGNED NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (city_id), - KEY idx_fk_country_id (country_id), - CONSTRAINT `fk_city_country` FOREIGN KEY (country_id) REFERENCES country (country_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `country` --- - -CREATE TABLE country ( - country_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - country VARCHAR(50) NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (country_id) -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `customer` --- - -CREATE TABLE customer ( - customer_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - store_id TINYINT UNSIGNED NOT NULL, - first_name VARCHAR(45) NOT NULL, - last_name VARCHAR(45) NOT NULL, - email VARCHAR(50) DEFAULT NULL, - address_id SMALLINT UNSIGNED NOT NULL, - active BOOLEAN NOT NULL DEFAULT TRUE, - create_date DATETIME NOT NULL, - last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (customer_id), - KEY idx_fk_store_id (store_id), - KEY idx_fk_address_id (address_id), - KEY idx_last_name (last_name), - CONSTRAINT fk_customer_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_customer_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `film` --- - -CREATE TABLE film ( - film_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - title VARCHAR(255) NOT NULL, - description TEXT DEFAULT NULL, - release_year YEAR DEFAULT NULL, - language_id TINYINT UNSIGNED NOT NULL, - original_language_id TINYINT UNSIGNED DEFAULT NULL, - rental_duration TINYINT UNSIGNED NOT NULL DEFAULT 3, - rental_rate DECIMAL(4,2) NOT NULL DEFAULT 4.99, - length SMALLINT UNSIGNED DEFAULT NULL, - replacement_cost DECIMAL(5,2) NOT NULL DEFAULT 19.99, - rating ENUM('G','PG','PG-13','R','NC-17') DEFAULT 'G', - special_features SET('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') DEFAULT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (film_id), - KEY idx_title (title), - KEY idx_fk_language_id (language_id), - KEY idx_fk_original_language_id (original_language_id), - CONSTRAINT fk_film_language FOREIGN KEY (language_id) REFERENCES language (language_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_film_language_original FOREIGN KEY (original_language_id) REFERENCES language (language_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `film_actor` --- - -CREATE TABLE film_actor ( - actor_id SMALLINT UNSIGNED NOT NULL, - film_id SMALLINT UNSIGNED NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (actor_id,film_id), - KEY idx_fk_film_id (`film_id`), - CONSTRAINT fk_film_actor_actor FOREIGN KEY (actor_id) REFERENCES actor (actor_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_film_actor_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `film_category` --- - -CREATE TABLE film_category ( - film_id SMALLINT UNSIGNED NOT NULL, - category_id TINYINT UNSIGNED NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (film_id, category_id), - CONSTRAINT fk_film_category_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_film_category_category FOREIGN KEY (category_id) REFERENCES category (category_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `film_text` --- --- InnoDB added FULLTEXT support in 5.6.10. If you use an --- earlier version, then consider upgrading (recommended) or --- changing InnoDB to MyISAM as the film_text engine --- - -CREATE TABLE film_text ( - film_id SMALLINT NOT NULL, - title VARCHAR(255) NOT NULL, - description TEXT, - PRIMARY KEY (film_id), - FULLTEXT KEY idx_title_description (title,description) -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Triggers for loading film_text from film --- - -DELIMITER ;; -CREATE TRIGGER `ins_film` AFTER INSERT ON `film` FOR EACH ROW BEGIN - INSERT INTO film_text (film_id, title, description) - VALUES (new.film_id, new.title, new.description); - END;; - - -CREATE TRIGGER `upd_film` AFTER UPDATE ON `film` FOR EACH ROW BEGIN - IF (old.title != new.title) OR (old.description != new.description) OR (old.film_id != new.film_id) - THEN - UPDATE film_text - SET title=new.title, - description=new.description, - film_id=new.film_id - WHERE film_id=old.film_id; - END IF; - END;; - - -CREATE TRIGGER `del_film` AFTER DELETE ON `film` FOR EACH ROW BEGIN - DELETE FROM film_text WHERE film_id = old.film_id; - END;; - -DELIMITER ; - --- --- Table structure for table `inventory` --- - -CREATE TABLE inventory ( - inventory_id MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT, - film_id SMALLINT UNSIGNED NOT NULL, - store_id TINYINT UNSIGNED NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (inventory_id), - KEY idx_fk_film_id (film_id), - KEY idx_store_id_film_id (store_id,film_id), - CONSTRAINT fk_inventory_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_inventory_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `language` --- - -CREATE TABLE language ( - language_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, - name CHAR(20) NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (language_id) -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `payment` --- - -CREATE TABLE payment ( - payment_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, - customer_id SMALLINT UNSIGNED NOT NULL, - staff_id TINYINT UNSIGNED NOT NULL, - rental_id INT DEFAULT NULL, - amount DECIMAL(5,2) NOT NULL, - payment_date DATETIME NOT NULL, - last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (payment_id), - KEY idx_fk_staff_id (staff_id), - KEY idx_fk_customer_id (customer_id), - CONSTRAINT fk_payment_rental FOREIGN KEY (rental_id) REFERENCES rental (rental_id) ON DELETE SET NULL ON UPDATE CASCADE, - CONSTRAINT fk_payment_customer FOREIGN KEY (customer_id) REFERENCES customer (customer_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_payment_staff FOREIGN KEY (staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - - --- --- Table structure for table `rental` --- - -CREATE TABLE rental ( - rental_id INT NOT NULL AUTO_INCREMENT, - rental_date DATETIME NOT NULL, - inventory_id MEDIUMINT UNSIGNED NOT NULL, - customer_id SMALLINT UNSIGNED NOT NULL, - return_date DATETIME DEFAULT NULL, - staff_id TINYINT UNSIGNED NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (rental_id), - UNIQUE KEY (rental_date,inventory_id,customer_id), - KEY idx_fk_inventory_id (inventory_id), - KEY idx_fk_customer_id (customer_id), - KEY idx_fk_staff_id (staff_id), - CONSTRAINT fk_rental_staff FOREIGN KEY (staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_rental_inventory FOREIGN KEY (inventory_id) REFERENCES inventory (inventory_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_rental_customer FOREIGN KEY (customer_id) REFERENCES customer (customer_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `staff` --- - -CREATE TABLE staff ( - staff_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, - first_name VARCHAR(45) NOT NULL, - last_name VARCHAR(45) NOT NULL, - address_id SMALLINT UNSIGNED NOT NULL, - picture BLOB DEFAULT NULL, - email VARCHAR(50) DEFAULT NULL, - store_id TINYINT UNSIGNED NOT NULL, - active BOOLEAN NOT NULL DEFAULT TRUE, - username VARCHAR(16) NOT NULL, - password VARCHAR(40) BINARY DEFAULT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (staff_id), - KEY idx_fk_store_id (store_id), - KEY idx_fk_address_id (address_id), - CONSTRAINT fk_staff_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_staff_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Table structure for table `store` --- - -CREATE TABLE store ( - store_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, - manager_staff_id TINYINT UNSIGNED NOT NULL, - address_id SMALLINT UNSIGNED NOT NULL, - last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (store_id), - UNIQUE KEY idx_unique_manager (manager_staff_id), - KEY idx_fk_address_id (address_id), - CONSTRAINT fk_store_staff FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE, - CONSTRAINT fk_store_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE RESTRICT ON UPDATE CASCADE -)ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- View structure for view `customer_list` --- - -CREATE VIEW customer_list -AS -SELECT cu.customer_id AS ID, CONCAT(cu.first_name, _utf8' ', cu.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, - a.phone AS phone, city.city AS city, country.country AS country, IF(cu.active, _utf8'active',_utf8'') AS notes, cu.store_id AS SID -FROM customer AS cu JOIN address AS a ON cu.address_id = a.address_id JOIN city ON a.city_id = city.city_id - JOIN country ON city.country_id = country.country_id; - --- --- View structure for view `film_list` --- - -CREATE VIEW film_list -AS -SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, - film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(actor.first_name, _utf8' ', actor.last_name) SEPARATOR ', ') AS actors -FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id - JOIN film_actor ON film.film_id = film_actor.film_id - JOIN actor ON film_actor.actor_id = actor.actor_id -GROUP BY film.film_id, category.name; - --- --- View structure for view `nicer_but_slower_film_list` --- - -CREATE VIEW nicer_but_slower_film_list -AS -SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, - film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(CONCAT(UCASE(SUBSTR(actor.first_name,1,1)), - LCASE(SUBSTR(actor.first_name,2,LENGTH(actor.first_name))),_utf8' ',CONCAT(UCASE(SUBSTR(actor.last_name,1,1)), - LCASE(SUBSTR(actor.last_name,2,LENGTH(actor.last_name)))))) SEPARATOR ', ') AS actors -FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id - JOIN film_actor ON film.film_id = film_actor.film_id - JOIN actor ON film_actor.actor_id = actor.actor_id -GROUP BY film.film_id, category.name; - --- --- View structure for view `staff_list` --- - -CREATE VIEW staff_list -AS -SELECT s.staff_id AS ID, CONCAT(s.first_name, _utf8' ', s.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, a.phone AS phone, - city.city AS city, country.country AS country, s.store_id AS SID -FROM staff AS s JOIN address AS a ON s.address_id = a.address_id JOIN city ON a.city_id = city.city_id - JOIN country ON city.country_id = country.country_id; - --- --- View structure for view `sales_by_store` --- - -CREATE VIEW sales_by_store -AS -SELECT -CONCAT(c.city, _utf8',', cy.country) AS store -, CONCAT(m.first_name, _utf8' ', m.last_name) AS manager -, SUM(p.amount) AS total_sales -FROM payment AS p -INNER JOIN rental AS r ON p.rental_id = r.rental_id -INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id -INNER JOIN store AS s ON i.store_id = s.store_id -INNER JOIN address AS a ON s.address_id = a.address_id -INNER JOIN city AS c ON a.city_id = c.city_id -INNER JOIN country AS cy ON c.country_id = cy.country_id -INNER JOIN staff AS m ON s.manager_staff_id = m.staff_id -GROUP BY s.store_id -ORDER BY cy.country, c.city; - --- --- View structure for view `sales_by_film_category` --- --- Note that total sales will add up to >100% because --- some titles belong to more than 1 category --- - -CREATE VIEW sales_by_film_category -AS -SELECT -c.name AS category -, SUM(p.amount) AS total_sales -FROM payment AS p -INNER JOIN rental AS r ON p.rental_id = r.rental_id -INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id -INNER JOIN film AS f ON i.film_id = f.film_id -INNER JOIN film_category AS fc ON f.film_id = fc.film_id -INNER JOIN category AS c ON fc.category_id = c.category_id -GROUP BY c.name -ORDER BY total_sales DESC; - --- --- View structure for view `actor_info` --- - -CREATE DEFINER=CURRENT_USER SQL SECURITY INVOKER VIEW actor_info -AS -SELECT -a.actor_id, -a.first_name, -a.last_name, -GROUP_CONCAT(DISTINCT CONCAT(c.name, ': ', - (SELECT GROUP_CONCAT(f.title ORDER BY f.title SEPARATOR ', ') - FROM dvds.film f - INNER JOIN dvds.film_category fc - ON f.film_id = fc.film_id - INNER JOIN dvds.film_actor fa - ON f.film_id = fa.film_id - WHERE fc.category_id = c.category_id - AND fa.actor_id = a.actor_id - ) - ) - ORDER BY c.name SEPARATOR '; ') -AS film_info -FROM dvds.actor a -LEFT JOIN dvds.film_actor fa - ON a.actor_id = fa.actor_id -LEFT JOIN dvds.film_category fc - ON fa.film_id = fc.film_id -LEFT JOIN dvds.category c - ON fc.category_id = c.category_id -GROUP BY a.actor_id, a.first_name, a.last_name; - --- --- Procedure structure for procedure `rewards_report` --- - -DELIMITER // - -CREATE PROCEDURE rewards_report ( - IN min_monthly_purchases TINYINT UNSIGNED - , IN min_dollar_amount_purchased DECIMAL(10,2) UNSIGNED - , OUT count_rewardees INT -) -LANGUAGE SQL -NOT DETERMINISTIC -READS SQL DATA -SQL SECURITY DEFINER -COMMENT 'Provides a customizable report on best customers' -proc: BEGIN - - DECLARE last_month_start DATE; - DECLARE last_month_end DATE; - - /* Some sanity checks... */ - IF min_monthly_purchases = 0 THEN - SELECT 'Minimum monthly purchases parameter must be > 0'; - LEAVE proc; - END IF; - IF min_dollar_amount_purchased = 0.00 THEN - SELECT 'Minimum monthly dollar amount purchased parameter must be > $0.00'; - LEAVE proc; - END IF; - - /* Determine start and end time periods */ - SET last_month_start = DATE_SUB(CURRENT_DATE(), INTERVAL 1 MONTH); - SET last_month_start = STR_TO_DATE(CONCAT(YEAR(last_month_start),'-',MONTH(last_month_start),'-01'),'%Y-%m-%d'); - SET last_month_end = LAST_DAY(last_month_start); - - /* - Create a temporary storage area for - Customer IDs. - */ - CREATE TEMPORARY TABLE tmpCustomer (customer_id SMALLINT UNSIGNED NOT NULL PRIMARY KEY); - - /* - Find all customers meeting the - monthly purchase requirements - */ - INSERT INTO tmpCustomer (customer_id) - SELECT p.customer_id - FROM payment AS p - WHERE DATE(p.payment_date) BETWEEN last_month_start AND last_month_end - GROUP BY customer_id - HAVING SUM(p.amount) > min_dollar_amount_purchased - AND COUNT(customer_id) > min_monthly_purchases; - - /* Populate OUT parameter with count of found customers */ - SELECT COUNT(*) FROM tmpCustomer INTO count_rewardees; - - /* - Output ALL customer information of matching rewardees. - Customize output as needed. - */ - SELECT c.* - FROM tmpCustomer AS t - INNER JOIN customer AS c ON t.customer_id = c.customer_id; - - /* Clean up */ - DROP TABLE tmpCustomer; -END // - -DELIMITER ; - -DELIMITER $$ - -CREATE FUNCTION get_customer_balance(p_customer_id INT, p_effective_date DATETIME) RETURNS DECIMAL(5,2) - DETERMINISTIC - READS SQL DATA -BEGIN - - #OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE - #THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS: - # 1) RENTAL FEES FOR ALL PREVIOUS RENTALS - # 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE - # 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST - # 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED - - DECLARE v_rentfees DECIMAL(5,2); #FEES PAID TO RENT THE VIDEOS INITIALLY - DECLARE v_overfees INTEGER; #LATE FEES FOR PRIOR RENTALS - DECLARE v_payments DECIMAL(5,2); #SUM OF PAYMENTS MADE PREVIOUSLY - - SELECT IFNULL(SUM(film.rental_rate),0) INTO v_rentfees - FROM film, inventory, rental - WHERE film.film_id = inventory.film_id - AND inventory.inventory_id = rental.inventory_id - AND rental.rental_date <= p_effective_date - AND rental.customer_id = p_customer_id; - - SELECT IFNULL(SUM(IF((TO_DAYS(rental.return_date) - TO_DAYS(rental.rental_date)) > film.rental_duration, - ((TO_DAYS(rental.return_date) - TO_DAYS(rental.rental_date)) - film.rental_duration),0)),0) INTO v_overfees - FROM rental, inventory, film - WHERE film.film_id = inventory.film_id - AND inventory.inventory_id = rental.inventory_id - AND rental.rental_date <= p_effective_date - AND rental.customer_id = p_customer_id; - - - SELECT IFNULL(SUM(payment.amount),0) INTO v_payments - FROM payment - - WHERE payment.payment_date <= p_effective_date - AND payment.customer_id = p_customer_id; - - RETURN v_rentfees + v_overfees - v_payments; -END $$ - -DELIMITER ; - -DELIMITER $$ - -CREATE PROCEDURE film_in_stock(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT) -READS SQL DATA -BEGIN - SELECT inventory_id - FROM inventory - WHERE film_id = p_film_id - AND store_id = p_store_id - AND inventory_in_stock(inventory_id); - - SELECT FOUND_ROWS() INTO p_film_count; -END $$ - -DELIMITER ; - -DELIMITER $$ - -CREATE PROCEDURE film_not_in_stock(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT) -READS SQL DATA -BEGIN - SELECT inventory_id - FROM inventory - WHERE film_id = p_film_id - AND store_id = p_store_id - AND NOT inventory_in_stock(inventory_id); - - SELECT FOUND_ROWS() INTO p_film_count; -END $$ - -DELIMITER ; - -DELIMITER $$ - -CREATE FUNCTION inventory_held_by_customer(p_inventory_id INT) RETURNS INT -READS SQL DATA -BEGIN - DECLARE v_customer_id INT; - DECLARE EXIT HANDLER FOR NOT FOUND RETURN NULL; - - SELECT customer_id INTO v_customer_id - FROM rental - WHERE return_date IS NULL - AND inventory_id = p_inventory_id; - - RETURN v_customer_id; -END $$ - -DELIMITER ; - -DELIMITER $$ - -CREATE FUNCTION inventory_in_stock(p_inventory_id INT) RETURNS BOOLEAN -READS SQL DATA -BEGIN - DECLARE v_rentals INT; - DECLARE v_out INT; - - #AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE - #FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED - - SELECT COUNT(*) INTO v_rentals - FROM rental - WHERE inventory_id = p_inventory_id; - - IF v_rentals = 0 THEN - RETURN TRUE; - END IF; - - SELECT COUNT(rental_id) INTO v_out - FROM inventory LEFT JOIN rental USING(inventory_id) - WHERE inventory.inventory_id = p_inventory_id - AND rental.return_date IS NULL; - - IF v_out > 0 THEN - RETURN FALSE; - ELSE - RETURN TRUE; - END IF; -END $$ - -DELIMITER ; - -SET SQL_MODE=@OLD_SQL_MODE; -SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; -SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; - - --- Sakila Sample Database Data --- Version 1.0 - --- Copyright (c) 2006, 2015, Oracle and/or its affiliates. --- All rights reserved. - --- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - --- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. --- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. --- * Neither the name of Oracle nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - --- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; -SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; -SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; - -USE dvds; - --- --- Dumping data for table actor --- - -SET AUTOCOMMIT=0; -INSERT INTO actor VALUES (1,'PENELOPE','GUINESS','2006-02-15 04:34:33'), - (2,'NICK','WAHLBERG','2006-02-15 04:34:33'), - (3,'ED','CHASE','2006-02-15 04:34:33'), - (4,'JENNIFER','DAVIS','2006-02-15 04:34:33'), - (5,'JOHNNY','LOLLOBRIGIDA','2006-02-15 04:34:33'), - (6,'BETTE','NICHOLSON','2006-02-15 04:34:33'), - (7,'GRACE','MOSTEL','2006-02-15 04:34:33'), - (8,'MATTHEW','JOHANSSON','2006-02-15 04:34:33'), - (9,'JOE','SWANK','2006-02-15 04:34:33'), - (10,'CHRISTIAN','GABLE','2006-02-15 04:34:33'), - (11,'ZERO','CAGE','2006-02-15 04:34:33'), - (12,'KARL','BERRY','2006-02-15 04:34:33'), - (13,'UMA','WOOD','2006-02-15 04:34:33'), - (14,'VIVIEN','BERGEN','2006-02-15 04:34:33'), - (15,'CUBA','OLIVIER','2006-02-15 04:34:33'), - (16,'FRED','COSTNER','2006-02-15 04:34:33'), - (17,'HELEN','VOIGHT','2006-02-15 04:34:33'), - (18,'DAN','TORN','2006-02-15 04:34:33'), - (19,'BOB','FAWCETT','2006-02-15 04:34:33'), - (20,'LUCILLE','TRACY','2006-02-15 04:34:33'), - (21,'KIRSTEN','PALTROW','2006-02-15 04:34:33'), - (22,'ELVIS','MARX','2006-02-15 04:34:33'), - (23,'SANDRA','KILMER','2006-02-15 04:34:33'), - (24,'CAMERON','STREEP','2006-02-15 04:34:33'), - (25,'KEVIN','BLOOM','2006-02-15 04:34:33'), - (26,'RIP','CRAWFORD','2006-02-15 04:34:33'), - (27,'JULIA','MCQUEEN','2006-02-15 04:34:33'), - (28,'WOODY','HOFFMAN','2006-02-15 04:34:33'), - (29,'ALEC','WAYNE','2006-02-15 04:34:33'), - (30,'SANDRA','PECK','2006-02-15 04:34:33'), - (31,'SISSY','SOBIESKI','2006-02-15 04:34:33'), - (32,'TIM','HACKMAN','2006-02-15 04:34:33'), - (33,'MILLA','PECK','2006-02-15 04:34:33'), - (34,'AUDREY','OLIVIER','2006-02-15 04:34:33'), - (35,'JUDY','DEAN','2006-02-15 04:34:33'), - (36,'BURT','DUKAKIS','2006-02-15 04:34:33'), - (37,'VAL','BOLGER','2006-02-15 04:34:33'), - (38,'TOM','MCKELLEN','2006-02-15 04:34:33'), - (39,'GOLDIE','BRODY','2006-02-15 04:34:33'), - (40,'JOHNNY','CAGE','2006-02-15 04:34:33'), - (41,'JODIE','DEGENERES','2006-02-15 04:34:33'), - (42,'TOM','MIRANDA','2006-02-15 04:34:33'), - (43,'KIRK','JOVOVICH','2006-02-15 04:34:33'), - (44,'NICK','STALLONE','2006-02-15 04:34:33'), - (45,'REESE','KILMER','2006-02-15 04:34:33'), - (46,'PARKER','GOLDBERG','2006-02-15 04:34:33'), - (47,'JULIA','BARRYMORE','2006-02-15 04:34:33'), - (48,'FRANCES','DAY-LEWIS','2006-02-15 04:34:33'), - (49,'ANNE','CRONYN','2006-02-15 04:34:33'), - (50,'NATALIE','HOPKINS','2006-02-15 04:34:33'), - (51,'GARY','PHOENIX','2006-02-15 04:34:33'), - (52,'CARMEN','HUNT','2006-02-15 04:34:33'), - (53,'MENA','TEMPLE','2006-02-15 04:34:33'), - (54,'PENELOPE','PINKETT','2006-02-15 04:34:33'), - (55,'FAY','KILMER','2006-02-15 04:34:33'), - (56,'DAN','HARRIS','2006-02-15 04:34:33'), - (57,'JUDE','CRUISE','2006-02-15 04:34:33'), - (58,'CHRISTIAN','AKROYD','2006-02-15 04:34:33'), - (59,'DUSTIN','TAUTOU','2006-02-15 04:34:33'), - (60,'HENRY','BERRY','2006-02-15 04:34:33'), - (61,'CHRISTIAN','NEESON','2006-02-15 04:34:33'), - (62,'JAYNE','NEESON','2006-02-15 04:34:33'), - (63,'CAMERON','WRAY','2006-02-15 04:34:33'), - (64,'RAY','JOHANSSON','2006-02-15 04:34:33'), - (65,'ANGELA','HUDSON','2006-02-15 04:34:33'), - (66,'MARY','TANDY','2006-02-15 04:34:33'), - (67,'JESSICA','BAILEY','2006-02-15 04:34:33'), - (68,'RIP','WINSLET','2006-02-15 04:34:33'), - (69,'KENNETH','PALTROW','2006-02-15 04:34:33'), - (70,'MICHELLE','MCCONAUGHEY','2006-02-15 04:34:33'), - (71,'ADAM','GRANT','2006-02-15 04:34:33'), - (72,'SEAN','WILLIAMS','2006-02-15 04:34:33'), - (73,'GARY','PENN','2006-02-15 04:34:33'), - (74,'MILLA','KEITEL','2006-02-15 04:34:33'), - (75,'BURT','POSEY','2006-02-15 04:34:33'), - (76,'ANGELINA','ASTAIRE','2006-02-15 04:34:33'), - (77,'CARY','MCCONAUGHEY','2006-02-15 04:34:33'), - (78,'GROUCHO','SINATRA','2006-02-15 04:34:33'), - (79,'MAE','HOFFMAN','2006-02-15 04:34:33'), - (80,'RALPH','CRUZ','2006-02-15 04:34:33'), - (81,'SCARLETT','DAMON','2006-02-15 04:34:33'), - (82,'WOODY','JOLIE','2006-02-15 04:34:33'), - (83,'BEN','WILLIS','2006-02-15 04:34:33'), - (84,'JAMES','PITT','2006-02-15 04:34:33'), - (85,'MINNIE','ZELLWEGER','2006-02-15 04:34:33'), - (86,'GREG','CHAPLIN','2006-02-15 04:34:33'), - (87,'SPENCER','PECK','2006-02-15 04:34:33'), - (88,'KENNETH','PESCI','2006-02-15 04:34:33'), - (89,'CHARLIZE','DENCH','2006-02-15 04:34:33'), - (90,'SEAN','GUINESS','2006-02-15 04:34:33'), - (91,'CHRISTOPHER','BERRY','2006-02-15 04:34:33'), - (92,'KIRSTEN','AKROYD','2006-02-15 04:34:33'), - (93,'ELLEN','PRESLEY','2006-02-15 04:34:33'), - (94,'KENNETH','TORN','2006-02-15 04:34:33'), - (95,'DARYL','WAHLBERG','2006-02-15 04:34:33'), - (96,'GENE','WILLIS','2006-02-15 04:34:33'), - (97,'MEG','HAWKE','2006-02-15 04:34:33'), - (98,'CHRIS','BRIDGES','2006-02-15 04:34:33'), - (99,'JIM','MOSTEL','2006-02-15 04:34:33'), - (100,'SPENCER','DEPP','2006-02-15 04:34:33'), - (101,'SUSAN','DAVIS','2006-02-15 04:34:33'), - (102,'WALTER','TORN','2006-02-15 04:34:33'), - (103,'MATTHEW','LEIGH','2006-02-15 04:34:33'), - (104,'PENELOPE','CRONYN','2006-02-15 04:34:33'), - (105,'SIDNEY','CROWE','2006-02-15 04:34:33'), - (106,'GROUCHO','DUNST','2006-02-15 04:34:33'), - (107,'GINA','DEGENERES','2006-02-15 04:34:33'), - (108,'WARREN','NOLTE','2006-02-15 04:34:33'), - (109,'SYLVESTER','DERN','2006-02-15 04:34:33'), - (110,'SUSAN','DAVIS','2006-02-15 04:34:33'), - (111,'CAMERON','ZELLWEGER','2006-02-15 04:34:33'), - (112,'RUSSELL','BACALL','2006-02-15 04:34:33'), - (113,'MORGAN','HOPKINS','2006-02-15 04:34:33'), - (114,'MORGAN','MCDORMAND','2006-02-15 04:34:33'), - (115,'HARRISON','BALE','2006-02-15 04:34:33'), - (116,'DAN','STREEP','2006-02-15 04:34:33'), - (117,'RENEE','TRACY','2006-02-15 04:34:33'), - (118,'CUBA','ALLEN','2006-02-15 04:34:33'), - (119,'WARREN','JACKMAN','2006-02-15 04:34:33'), - (120,'PENELOPE','MONROE','2006-02-15 04:34:33'), - (121,'LIZA','BERGMAN','2006-02-15 04:34:33'), - (122,'SALMA','NOLTE','2006-02-15 04:34:33'), - (123,'JULIANNE','DENCH','2006-02-15 04:34:33'), - (124,'SCARLETT','BENING','2006-02-15 04:34:33'), - (125,'ALBERT','NOLTE','2006-02-15 04:34:33'), - (126,'FRANCES','TOMEI','2006-02-15 04:34:33'), - (127,'KEVIN','GARLAND','2006-02-15 04:34:33'), - (128,'CATE','MCQUEEN','2006-02-15 04:34:33'), - (129,'DARYL','CRAWFORD','2006-02-15 04:34:33'), - (130,'GRETA','KEITEL','2006-02-15 04:34:33'), - (131,'JANE','JACKMAN','2006-02-15 04:34:33'), - (132,'ADAM','HOPPER','2006-02-15 04:34:33'), - (133,'RICHARD','PENN','2006-02-15 04:34:33'), - (134,'GENE','HOPKINS','2006-02-15 04:34:33'), - (135,'RITA','REYNOLDS','2006-02-15 04:34:33'), - (136,'ED','MANSFIELD','2006-02-15 04:34:33'), - (137,'MORGAN','WILLIAMS','2006-02-15 04:34:33'), - (138,'LUCILLE','DEE','2006-02-15 04:34:33'), - (139,'EWAN','GOODING','2006-02-15 04:34:33'), - (140,'WHOOPI','HURT','2006-02-15 04:34:33'), - (141,'CATE','HARRIS','2006-02-15 04:34:33'), - (142,'JADA','RYDER','2006-02-15 04:34:33'), - (143,'RIVER','DEAN','2006-02-15 04:34:33'), - (144,'ANGELA','WITHERSPOON','2006-02-15 04:34:33'), - (145,'KIM','ALLEN','2006-02-15 04:34:33'), - (146,'ALBERT','JOHANSSON','2006-02-15 04:34:33'), - (147,'FAY','WINSLET','2006-02-15 04:34:33'), - (148,'EMILY','DEE','2006-02-15 04:34:33'), - (149,'RUSSELL','TEMPLE','2006-02-15 04:34:33'), - (150,'JAYNE','NOLTE','2006-02-15 04:34:33'), - (151,'GEOFFREY','HESTON','2006-02-15 04:34:33'), - (152,'BEN','HARRIS','2006-02-15 04:34:33'), - (153,'MINNIE','KILMER','2006-02-15 04:34:33'), - (154,'MERYL','GIBSON','2006-02-15 04:34:33'), - (155,'IAN','TANDY','2006-02-15 04:34:33'), - (156,'FAY','WOOD','2006-02-15 04:34:33'), - (157,'GRETA','MALDEN','2006-02-15 04:34:33'), - (158,'VIVIEN','BASINGER','2006-02-15 04:34:33'), - (159,'LAURA','BRODY','2006-02-15 04:34:33'), - (160,'CHRIS','DEPP','2006-02-15 04:34:33'), - (161,'HARVEY','HOPE','2006-02-15 04:34:33'), - (162,'OPRAH','KILMER','2006-02-15 04:34:33'), - (163,'CHRISTOPHER','WEST','2006-02-15 04:34:33'), - (164,'HUMPHREY','WILLIS','2006-02-15 04:34:33'), - (165,'AL','GARLAND','2006-02-15 04:34:33'), - (166,'NICK','DEGENERES','2006-02-15 04:34:33'), - (167,'LAURENCE','BULLOCK','2006-02-15 04:34:33'), - (168,'WILL','WILSON','2006-02-15 04:34:33'), - (169,'KENNETH','HOFFMAN','2006-02-15 04:34:33'), - (170,'MENA','HOPPER','2006-02-15 04:34:33'), - (171,'OLYMPIA','PFEIFFER','2006-02-15 04:34:33'), - (172,'GROUCHO','WILLIAMS','2006-02-15 04:34:33'), - (173,'ALAN','DREYFUSS','2006-02-15 04:34:33'), - (174,'MICHAEL','BENING','2006-02-15 04:34:33'), - (175,'WILLIAM','HACKMAN','2006-02-15 04:34:33'), - (176,'JON','CHASE','2006-02-15 04:34:33'), - (177,'GENE','MCKELLEN','2006-02-15 04:34:33'), - (178,'LISA','MONROE','2006-02-15 04:34:33'), - (179,'ED','GUINESS','2006-02-15 04:34:33'), - (180,'JEFF','SILVERSTONE','2006-02-15 04:34:33'), - (181,'MATTHEW','CARREY','2006-02-15 04:34:33'), - (182,'DEBBIE','AKROYD','2006-02-15 04:34:33'), - (183,'RUSSELL','CLOSE','2006-02-15 04:34:33'), - (184,'HUMPHREY','GARLAND','2006-02-15 04:34:33'), - (185,'MICHAEL','BOLGER','2006-02-15 04:34:33'), - (186,'JULIA','ZELLWEGER','2006-02-15 04:34:33'), - (187,'RENEE','BALL','2006-02-15 04:34:33'), - (188,'ROCK','DUKAKIS','2006-02-15 04:34:33'), - (189,'CUBA','BIRCH','2006-02-15 04:34:33'), - (190,'AUDREY','BAILEY','2006-02-15 04:34:33'), - (191,'GREGORY','GOODING','2006-02-15 04:34:33'), - (192,'JOHN','SUVARI','2006-02-15 04:34:33'), - (193,'BURT','TEMPLE','2006-02-15 04:34:33'), - (194,'MERYL','ALLEN','2006-02-15 04:34:33'), - (195,'JAYNE','SILVERSTONE','2006-02-15 04:34:33'), - (196,'BELA','WALKEN','2006-02-15 04:34:33'), - (197,'REESE','WEST','2006-02-15 04:34:33'), - (198,'MARY','KEITEL','2006-02-15 04:34:33'), - (199,'JULIA','FAWCETT','2006-02-15 04:34:33'), - (200,'THORA','TEMPLE','2006-02-15 04:34:33'); -COMMIT; - --- --- Dumping data for table address --- - -SET AUTOCOMMIT=0; -INSERT INTO `address` VALUES (1,'47 MySakila Drive',NULL,'Alberta',300,'','',/*!50705 0x0000000001010000003E0A325D63345CC0761FDB8D99D94840,*/'2014-09-25 22:30:27'), - (2,'28 MySQL Boulevard',NULL,'QLD',576,'','',/*!50705 0x0000000001010000008E10D4DF812463404EE08C5022A23BC0,*/'2014-09-25 22:30:09'), - (3,'23 Workhaven Lane',NULL,'Alberta',300,'','14033335568',/*!50705 0x000000000101000000CDC4196863345CC01DEE7E7099D94840,*/'2014-09-25 22:30:27'), - (4,'1411 Lillydale Drive',NULL,'QLD',576,'','6172235589',/*!50705 0x0000000001010000005B0DE4341F26634042D6AE6422A23BC0,*/'2014-09-25 22:30:09'), - (5,'1913 Hanoi Way','','Nagasaki',463,'35200','28303384290',/*!50705 0x00000000010100000028D1370E21376040ABB58BC45F944040,*/'2014-09-25 22:31:53'), - (6,'1121 Loja Avenue','','California',449,'17886','838635286649',/*!50705 0x0000000001010000003C94579D8B525DC0E860472DDE0D4140,*/'2014-09-25 22:34:01'), - (7,'692 Joliet Street','','Attika',38,'83579','448477190408',/*!50705 0x000000000101000000076F59CF5AB737404105D1A45EFD4240,*/'2014-09-25 22:31:07'), - (8,'1566 Inegl Manor','','Mandalay',349,'53561','705814003527',/*!50705 0x00000000010100000006240626DCD857403C45B357C4753540,*/'2014-09-25 22:32:18'), - (9,'53 Idfu Parkway','','Nantou',361,'42399','10655648674',/*!50705 0x0000000001010000001F813FFC7C2A5E40357A354069EA3740,*/'2014-09-25 22:33:16'), - (10,'1795 Santiago de Compostela Way','','Texas',295,'18743','860452626434',/*!50705 0x00000000010100000050502F9D7BE058C0D0CF7932A4813B40,*/'2014-09-25 22:33:55'), - (11,'900 Santiago de Compostela Parkway','','Central Serbia',280,'93896','716571220373',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:11'), - (12,'478 Joliet Way','','Hamilton',200,'77948','657282285970',/*!50705 0x000000000101000000DC84D61E11E9654072B7353344E442C0,*/'2014-09-25 22:32:22'), - (13,'613 Korolev Drive','','Masqat',329,'45844','380657522649',/*!50705 0x00000000010100000001023164D04B4D40CEAC003A279D3740,*/'2014-09-25 22:32:29'), - (14,'1531 Sal Drive','','Esfahan',162,'53628','648856936185',/*!50705 0x000000000101000000DE0951195AD64940635A400D84534040,*/'2014-09-25 22:31:36'), - (15,'1542 Tarlac Parkway','','Kanagawa',440,'1027','635297277345',/*!50705 0x000000000101000000B4CDE8A27C6B61406B7D361724C74140,*/'2014-09-25 22:31:53'), - (16,'808 Bhopal Manor','','Haryana',582,'10672','465887807014',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:30'), - (17,'270 Amroha Parkway','','Osmaniye',384,'29610','695479687538',/*!50705 0x0000000001010000001F436C55B71F4240A11408967E894240,*/'2014-09-25 22:33:27'), - (18,'770 Bydgoszcz Avenue','','California',120,'16266','517338314235',/*!50705 0x0000000001010000006D63A2F7FC515EC04C040539835A4340,*/'2014-09-25 22:33:47'), - (19,'419 Iligan Lane','','Madhya Pradesh',76,'72878','990911107354',/*!50705 0x000000000101000000B7B01303C9595340E6F10FB633413740,*/'2014-09-25 22:31:13'), - (20,'360 Toulouse Parkway','','England',495,'54308','949312333307',/*!50705 0x000000000101000000860FDBCCD7DBE63FFDCFAB4BD7C44940,*/'2014-09-25 22:33:40'), - (21,'270 Toulon Boulevard','','Kalmykia',156,'81766','407752414682',/*!50705 0x000000000101000000FD0BA947BF204640316D495865274740,*/'2014-09-25 22:32:48'), - (22,'320 Brest Avenue','','Kaduna',252,'43331','747791594069',/*!50705 0x0000000001010000006D3425FECDC01D40623FD532630B2540,*/'2014-09-25 22:32:25'), - (23,'1417 Lancaster Avenue','','Northern Cape',267,'72192','272572357893',/*!50705 0x000000000101000000FEE8E5C127C338404DED56E075BB3CC0,*/'2014-09-25 22:33:03'), - (24,'1688 Okara Way','','Nothwest Border Prov',327,'21954','144453869132',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:30'), - (25,'262 A Corua (La Corua) Parkway','','Dhaka',525,'34418','892775750063',/*!50705 0x000000000101000000F13790E4A87A5640E7F6370DF63F3840,*/'2014-09-25 22:30:12'), - (26,'28 Charlotte Amalie Street','','Rabat-Sal-Zammour-Z',443,'37551','161968374323',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:16'), - (27,'1780 Hino Boulevard','','Liepaja',303,'7716','902731229323',/*!50705 0x000000000101000000360F1604450435403CA3AD4A22424C40,*/'2014-09-25 22:31:58'), - (28,'96 Tafuna Way','','Crdoba',128,'99865','934730187245',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:05'), - (29,'934 San Felipe de Puerto Plata Street','','Sind',472,'99780','196495945706',/*!50705 0x0000000001010000008E6B8D52D3285140D58E876302F53B40,*/'2014-09-25 22:32:31'), - (30,'18 Duisburg Boulevard','','',121,'58327','998009777982',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:08'), - (31,'217 Botshabelo Place','','Southern Mindanao',138,'49521','665356572025',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:36'), - (32,'1425 Shikarpur Manor','','Bihar',346,'65599','678220867005',/*!50705 0x0000000001010000007F9F16284E9E55408201840F25603940,*/'2014-09-25 22:31:20'), - (33,'786 Aurora Avenue','','Yamaguchi',474,'65750','18461860151',/*!50705 0x000000000101000000E712584AA05E6040D15735ADB9FA4040,*/'2014-09-25 22:31:53'), - (34,'1668 Anpolis Street','','Taipei',316,'50199','525255540978',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:15'), - (35,'33 Gorontalo Way','','West Bengali',257,'30348','745994947458',/*!50705 0x0000000001010000001A828879FB17564061585936CEAB3640,*/'2014-09-25 22:31:18'), - (36,'176 Mandaluyong Place','','Uttar Pradesh',239,'65213','627705991774',/*!50705 0x00000000010100000073309B0043A553409E3AA0B657743940,*/'2014-09-25 22:31:17'), - (37,'127 Purnea (Purnia) Manor','','Piemonte',17,'79388','911872220378',/*!50705 0x0000000001010000002A2B97D75B382140F2892B1D62744640,*/'2014-09-25 22:31:42'), - (38,'61 Tama Street','','Okayama',284,'94065','708403338270',/*!50705 0x0000000001010000001F7013A488B86040670696C8AA4A4140,*/'2014-09-25 22:31:49'), - (39,'391 Callao Drive','','Midi-Pyrnes',544,'34021','440512153169',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:01'), - (40,'334 Munger (Monghyr) Lane','','Markazi',31,'38145','481183273622',/*!50705 0x000000000101000000737275B636D848404B958334BE0B4140,*/'2014-09-25 22:31:36'), - (41,'1440 Fukuyama Loop','','Henan',362,'47929','912257250465',/*!50705 0x0000000001010000005E3CCD1319225C405886DD1C537F4040,*/'2014-09-25 22:30:40'), - (42,'269 Cam Ranh Parkway','','Chisinau',115,'34689','489783829737',/*!50705 0x000000000101000000AD97F0958ADB3C40CCD47F31B6804740,*/'2014-09-25 22:32:15'), - (43,'306 Antofagasta Place','','Esprito Santo',569,'3989','378318851631',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:23'), - (44,'671 Graz Street','','Oriental',353,'94399','680768868518',/*!50705 0x00000000010100000083F7FAFFDD7707C0F7B7BA5285954140,*/'2014-09-25 22:32:16'), - (45,'42 Brindisi Place','','Yerevan',586,'16744','42384721397',/*!50705 0x000000000101000000281BC528BE4146403BD400EF2E174440,*/'2014-09-25 22:30:08'), - (46,'1632 Bislig Avenue','','Nonthaburi',394,'61117','471675840679',/*!50705 0x000000000101000000935C59FDEC1F5940D5D0611976D32B40,*/'2014-09-25 22:33:20'), - (47,'1447 Imus Way','','Tahiti',167,'48942','539758313890',/*!50705 0x00000000010100000090CE0A56E6B562C059BB9289008E31C0,*/'2014-09-25 22:31:02'), - (48,'1998 Halifax Drive','','Lipetsk',308,'76022','177727722820',/*!50705 0x00000000010100000087985CD60EC943409F1738EA324D4A40,*/'2014-09-25 22:32:54'), - (49,'1718 Valencia Street','','Antofagasta',27,'37359','675292816413',/*!50705 0x0000000001010000007E82D5A24F9951C0C46B4DA901A737C0,*/'2014-09-25 22:30:29'), - (50,'46 Pjatigorsk Lane','','Moscow (City)',343,'23616','262076994845',/*!50705 0x0000000001010000009C51F355F2C4424002E3CFA6D9DF4B40,*/'2014-09-25 22:32:55'), - (51,'686 Garland Manor','','Cear',247,'52535','69493378813',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:19'), - (52,'909 Garland Manor','','Tatarstan',367,'69367','705800322606',/*!50705 0x000000000101000000376DC66988E949402CA85E6D7BD14B40,*/'2014-09-25 22:32:55'), - (53,'725 Isesaki Place','','Mekka',237,'74428','876295323994',/*!50705 0x000000000101000000213361455799434061EB0896D98A3540,*/'2014-09-25 22:33:00'), - (54,'115 Hidalgo Parkway','','Khartum',379,'80168','307703950263',/*!50705 0x00000000010100000004503173263D40404D0DD9E5004A2F40,*/'2014-09-25 22:33:11'), - (55,'1135 Izumisano Parkway','','California',171,'48150','171822533480',/*!50705 0x0000000001010000009763C3E4D75B5DC0799A2732CE0B4140,*/'2014-09-25 22:33:50'), - (56,'939 Probolinggo Loop','','Galicia',1,'4166','680428310138',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:08'), - (57,'17 Kabul Boulevard','','Chiba',355,'38594','697760867968',/*!50705 0x000000000101000000EB257CA5E27C61406F70D86C9BED4140,*/'2014-09-25 22:31:51'), - (58,'1964 Allappuzha (Alleppey) Street','','Yamaguchi',227,'48980','920811325222',/*!50705 0x000000000101000000C2572A5E1B876040D19A7A38DC144140,*/'2014-09-25 22:31:47'), - (59,'1697 Kowloon and New Kowloon Loop','','Moskova',49,'57807','499352017190',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:47'), - (60,'1668 Saint Louis Place','','Tahiti',397,'39072','347487831378',/*!50705 0x0000000001010000006FF3C64921B262C0F8F47DDD8E8931C0,*/'2014-09-25 22:31:02'), - (61,'943 Tokat Street','','Vaduz',560,'45428','889318963672',/*!50705 0x0000000001010000007F784C93080B23400341800C1D924740,*/'2014-09-25 22:31:58'), - (62,'1114 Liepaja Street','','Sarawak',282,'69226','212869228936',/*!50705 0x000000000101000000047FAE6C55955B408285DDC199E9F83F,*/'2014-09-25 22:32:00'), - (63,'1213 Ranchi Parkway','','Karnataka',350,'94352','800024380485',/*!50705 0x000000000101000000000080279AD7C641AA21BB1CC0202B40,*/'2014-09-25 22:31:21'), - (64,'81 Hodeida Way','','Rajasthan',231,'55561','250767749542',/*!50705 0x0000000001010000000A09BDA36BF25240F8B138526CEB3A40,*/'2014-09-25 22:31:17'), - (65,'915 Ponce Place','','Basel-Stadt',56,'83980','1395251317',/*!50705 0x0000000001010000000D6146C2084B1E40E58B07A579C74740,*/'2014-09-25 22:33:12'), - (66,'1717 Guadalajara Lane','','Missouri',441,'85505','914090181665',/*!50705 0x000000000101000000A926D247AA8C56C0A456F3774A504340,*/'2014-09-25 22:33:59'), - (67,'1214 Hanoi Way','','Nebraska',306,'67055','491001136577',/*!50705 0x000000000101000000D6671888AF2A58C0C0E2152DE5684440,*/'2014-09-25 22:33:56'), - (68,'1966 Amroha Avenue','','Sichuan',139,'70385','333489324603',/*!50705 0x0000000001010000000A7778190FE05A402F6013E346373F40,*/'2014-09-25 22:30:32'), - (69,'698 Otsu Street','','Cayenne',105,'71110','409983924481',/*!50705 0x000000000101000000D879C0E1AA2A4AC0D57EC6E0BCBB1340,*/'2014-09-25 22:31:02'), - (70,'1150 Kimchon Manor','','Skne ln',321,'96109','663449333709',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:11'), - (71,'1586 Guaruj Place','','Hunan',579,'5135','947233365992',/*!50705 0x000000000101000000AD3A06BFE83F5C4083047B0217DA3B40,*/'2014-09-25 22:30:46'), - (72,'57 Arlington Manor','','Madhya Pradesh',475,'48960','990214419142',/*!50705 0x0000000001010000008E6D63FDB069534027D9EA724A6E3940,*/'2014-09-25 22:31:27'), - (73,'1031 Daugavpils Parkway','','Bchar',63,'59025','107137400143',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:29:59'), - (74,'1124 Buenaventura Drive','','Mekka',13,'6856','407733804223',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:59'), - (75,'492 Cam Ranh Street','','Eastern Visayas',61,'50805','565018274456',/*!50705 0x0000000001010000007500C45D3D335F40B90265AE675B2540,*/'2014-09-25 22:32:34'), - (76,'89 Allappuzha (Alleppey) Manor','','National Capital Reg',517,'75444','255800440636',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:39'), - (77,'1947 Poos de Caldas Boulevard','','Chiayi',114,'60951','427454485876',/*!50705 0x0000000001010000002F06C54524195E40B4475E8C37763740,*/'2014-09-25 22:33:14'), - (78,'1206 Dos Quebradas Place','','So Paulo',431,'20207','241832790687',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), - (79,'1551 Rampur Lane','','Changhwa',108,'72394','251164340471',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:14'), - (80,'602 Paarl Street','','Pavlodar',402,'98889','896314772871',/*!50705 0x000000000101000000359078C34740534032D010E912234A40,*/'2014-09-25 22:31:55'), - (81,'1692 Ede Loop','','So Paulo',30,'9223','918711376618',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:16'), - (82,'936 Salzburg Lane','','Uttar Pradesh',425,'96709','875756771675',/*!50705 0x0000000001010000000C0EE5FAAD4F5440CBF8F71917383A40,*/'2014-09-25 22:31:24'), - (83,'586 Tete Way','','Kanagawa',256,'1079','18581624103',/*!50705 0x000000000101000000783B0CF79B716140E96D22E989A74140,*/'2014-09-25 22:31:48'), - (84,'1888 Kabul Drive','','Oyo & Osun',217,'20936','701457319790',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:24'), - (85,'320 Baiyin Parkway','','Mahajanga',319,'37307','223664661973',/*!50705 0x000000000101000000EAFD90C888284740CDC75AE8EF6E2FC0,*/'2014-09-25 22:31:59'), - (86,'927 Baha Blanca Parkway','','Krim',479,'9495','821972242086',/*!50705 0x000000000101000000417DCB9C2E0E4140BC29406F857A4640,*/'2014-09-25 22:33:33'), - (87,'929 Tallahassee Loop','','Gauteng',497,'74671','800716535041',/*!50705 0x000000000101000000647F8FB05E6B3C407F60D8ABD9403AC0,*/'2014-09-25 22:33:06'), - (88,'125 Citt del Vaticano Boulevard','','Puebla',40,'67912','48417642933',/*!50705 0x000000000101000000536232B0E99B58C03D0D18247DE83240,*/'2014-09-25 22:32:02'), - (89,'1557 Ktahya Boulevard','','England',88,'88002','720998247660',/*!50705 0x0000000001010000001B43A5B67908FCBF439D03159FE54A40,*/'2014-09-25 22:33:36'), - (90,'870 Ashqelon Loop','','Songkhla',489,'84931','135117278909',/*!50705 0x000000000101000000E82510C017265940115A6A1899CB1C40,*/'2014-09-25 22:33:20'), - (91,'1740 Portoviejo Avenue','','Sucre',480,'29932','198123170793',/*!50705 0x000000000101000000C4AD275F75D952C07A51BB5F059C2240,*/'2014-09-25 22:30:53'), - (92,'1942 Ciparay Parkway','','Cheju',113,'82624','978987363654',/*!50705 0x00000000010100000048F13B97F3A25F40358EA2186AB34040,*/'2014-09-25 22:33:06'), - (93,'1926 El Alto Avenue','','Buenos Aires',289,'75543','846225459260',/*!50705 0x000000000101000000AD05AC0B2EFA4CC0C5D0A057F27541C0,*/'2014-09-25 22:30:05'), - (94,'1952 Chatsworth Drive','','Guangdong',332,'25958','991562402283',/*!50705 0x000000000101000000A5F386A08F085D406DF65157885A3840,*/'2014-09-25 22:30:40'), - (95,'1370 Le Mans Avenue','','Brunei and Muara',53,'52163','345679835036',/*!50705 0x00000000010100000013E85D06ADBC5C402A0E5652DDC21340,*/'2014-09-25 22:30:23'), - (96,'984 Effon-Alaiye Avenue','','Gois',183,'17119','132986892228',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:17'), - (97,'832 Nakhon Sawan Manor','','Inner Mongolia',592,'49021','275595571388',/*!50705 0x000000000101000000535C55F6DDAD5E400000001D69FABC41,*/'2014-09-25 22:30:50'), - (98,'152 Kitwe Parkway','','Caraga',82,'53182','835433605312',/*!50705 0x000000000101000000DF652BD43F945F4006CAB788396E2040,*/'2014-09-25 22:32:35'), - (99,'1697 Tanauan Lane','','Punjab',399,'22870','4764773857',/*!50705 0x000000000101000000CA97063447E95240B933B852742A4040,*/'2014-09-25 22:31:22'), - (100,'1308 Arecibo Way','','Georgia',41,'30695','6171054059',/*!50705 0x000000000101000000FC00FFEF637E54C0BD9EF9E648BC4040,*/'2014-09-25 22:33:43'), - (101,'1599 Plock Drive','','Tete',534,'71986','817248913162',/*!50705 0x000000000101000000DC77561C18CB4040B443577D092830C0,*/'2014-09-25 22:32:18'), - (102,'669 Firozabad Loop','','Abu Dhabi',12,'92265','412903167998',/*!50705 0x0000000001010000009C76E73F5AE14B404AD05FE811313840,*/'2014-09-25 22:33:35'), - (103,'588 Vila Velha Manor','','Kyongsangbuk',268,'51540','333339908719',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:07'), - (104,'1913 Kamakura Place','','Lipetsk',238,'97287','942570536750',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:49'), - (105,'733 Mandaluyong Place','','Asir',2,'77459','196568435814',/*!50705 0x0000000001010000007823980FAD404540798FD89365373240,*/'2014-09-25 22:32:59'), - (106,'659 Vaduz Drive','','Ha Darom',34,'49708','709935135487',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:40'), - (107,'1177 Jelets Way','','Kwara & Kogi',220,'3305','484292626944',/*!50705 0x0000000001010000001767672CF53712407E3E25427E192140,*/'2014-09-25 22:32:24'), - (108,'1386 Yangor Avenue','','Provence-Alpes-Cte',543,'80720','449216226468',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:01'), - (109,'454 Nakhon Sawan Boulevard','','Funafuti',173,'76383','963887147572',/*!50705 0x0000000001010000005822ABB636666640FF74A84B6B0C21C0,*/'2014-09-25 22:33:31'), - (110,'1867 San Juan Bautista Tuxtepec Avenue','','Ivanovo',225,'78311','547003310357',/*!50705 0x000000000101000000BC6DF0CF567C4440E2B034F0A37F4C40,*/'2014-09-25 22:32:48'), - (111,'1532 Dzerzinsk Way','','Buenos Aires',334,'9599','330838016880',/*!50705 0x000000000101000000BF93BB74385D4DC0E207420D3A5541C0,*/'2014-09-25 22:30:06'), - (112,'1002 Ahmadnagar Manor','','Mxico',213,'93026','371490777743',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:07'), - (113,'682 Junan Way','','North West',273,'30418','622255216127',/*!50705 0x000000000101000000714683CAAEAA3A406AEDC73725DA3AC0,*/'2014-09-25 22:33:04'), - (114,'804 Elista Drive','','Hubei',159,'61069','379804592943',/*!50705 0x0000000001010000009E013FF4EE5E5B40E7E099D0245F3E40,*/'2014-09-25 22:30:33'), - (115,'1378 Alvorada Avenue','','Distrito Federal',102,'75834','272234298332',/*!50705 0x0000000001010000000C3444BA44B850C047B1378CDDF92440,*/'2014-09-25 22:34:03'), - (116,'793 Cam Ranh Avenue','','California',292,'87057','824370924746',/*!50705 0x00000000010100000003AF3B82C0885DC0610212A859594140,*/'2014-09-25 22:33:55'), - (117,'1079 Tel Aviv-Jaffa Boulevard','','Sucre',132,'10885','358178933857',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:04'), - (118,'442 Rae Bareli Place','','Nordrhein-Westfalen',148,'24321','886636413768',/*!50705 0x000000000101000000C19EC085860F1B40E37ED12F5BB74940,*/'2014-09-25 22:31:04'), - (119,'1107 Nakhon Sawan Avenue','','Mxico',365,'75149','867546627903',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:11'), - (120,'544 Malm Parkway','','Central Java',403,'63502','386759646229',/*!50705 0x0000000001010000003AEF5A9D77575B4026F103A106C51BC0,*/'2014-09-25 22:31:34'), - (121,'1967 Sincelejo Place','','Gujarat',176,'73644','577812616052',/*!50705 0x00000000010100000059912CBBBB2B52408DBC074378373740,*/'2014-09-25 22:31:16'), - (122,'333 Goinia Way','','Texas',185,'78625','909029256431',/*!50705 0x0000000001010000002AE67BA1DB3F58C0E46B2AE67B5F4040,*/'2014-09-25 22:33:51'), - (123,'1987 Coacalco de Berriozbal Loop','','al-Qalyubiya',476,'96065','787654415858',/*!50705 0x000000000101000000595AFC5C23403F40AFBA698E07203E40,*/'2014-09-25 22:30:58'), - (124,'241 Mosul Lane','','Risaralda',147,'76157','765345144779',/*!50705 0x000000000101000000983A23A5B4EA52C06155BDFC4E5B1340,*/'2014-09-25 22:30:52'), - (125,'211 Chiayi Drive','','Uttar Pradesh',164,'58186','665993880048',/*!50705 0x000000000101000000A44BA4D961C1534007F247AC20C73A40,*/'2014-09-25 22:31:15'), - (126,'1175 Tanauan Way','','Lima',305,'64615','937222955822',/*!50705 0x000000000101000000848A60D2CE4153C0E5417A8A1C1628C0,*/'2014-09-25 22:32:33'), - (127,'117 Boa Vista Way','','Uttar Pradesh',566,'6804','677976133614',/*!50705 0x00000000010100000085364AA8AAC0544086BAFE1312513940,*/'2014-09-25 22:31:29'), - (128,'848 Tafuna Manor','','Ktahya',281,'45142','614935229095',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:27'), - (129,'569 Baicheng Lane','','Gauteng',85,'60304','490211944645',/*!50705 0x000000000101000000D71E51FC73423C4048AE51C543363AC0,*/'2014-09-25 22:33:02'), - (130,'1666 Qomsheh Drive','','So Paulo',410,'66255','582835362905',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:20'), - (131,'801 Hagonoy Drive','','Smolensk',484,'8439','237426099212',/*!50705 0x0000000001010000001EB814A122054040BB8509FE12644B40,*/'2014-09-25 22:32:57'), - (132,'1050 Garden Grove Avenue','','Slaskie',236,'4999','973047364353',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:42'), - (133,'1854 Tieli Street','','Shandong',302,'15819','509492324775',/*!50705 0x0000000001010000007A820E0492FE5C408F0475255D3A4240,*/'2014-09-25 22:30:39'), - (134,'758 Junan Lane','','Gois',190,'82639','935448624185',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:18'), - (135,'1752 So Leopoldo Parkway','','Taka-Karpatia',345,'14014','252265130067',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:32'), - (136,'898 Belm Manor','','Free State',87,'49757','707169393853',/*!50705 0x000000000101000000ED4CFCAC8DB43A409EAC623B29453DC0,*/'2014-09-25 22:33:02'), - (137,'261 Saint Louis Way','','Coahuila de Zaragoza',541,'83401','321944036800',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:13'), - (138,'765 Southampton Drive','','al-Qalyubiya',421,'4285','23712411567',/*!50705 0x0000000001010000001BEB877DA7343F409FBC7E77E12D3E40,*/'2014-09-25 22:30:57'), - (139,'943 Johannesburg Avenue','','Maharashtra',417,'5892','90921003005',/*!50705 0x000000000101000000F27A3029BE7652405E2ADB2C03853240,*/'2014-09-25 22:31:24'), - (140,'788 Atinsk Street','','Karnataka',211,'81691','146497509724',/*!50705 0x0000000001010000000000801B1998C64157A945E977E62E40,*/'2014-09-25 22:31:17'), - (141,'1749 Daxian Place','','Gelderland',29,'11044','963369996279',/*!50705 0x000000000101000000E4CE96BDB6E0174000B0952B171C4A40,*/'2014-09-25 22:32:20'), - (142,'1587 Sullana Lane','','Inner Mongolia',207,'85769','468060467018',/*!50705 0x000000000101000000870CF505BEE95B407422669BC0674440,*/'2014-09-25 22:30:35'), - (143,'1029 Dzerzinsk Manor','','Ynlin',542,'57519','33173584456',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:16'), - (144,'1666 Beni-Mellal Place','','Tennessee',123,'13377','9099941466',/*!50705 0x00000000010100000005D1A45E01D755C084CCDFCECF434240,*/'2014-09-25 22:33:48'), - (145,'928 Jaffna Loop','','Hiroshima',172,'93762','581852137991',/*!50705 0x0000000001010000002F2988CBBBAB6040E2FF33EFDD3D4140,*/'2014-09-25 22:31:45'), - (146,'483 Ljubertsy Parkway','','Scotland',149,'60562','581174211853',/*!50705 0x000000000101000000C53E5CCD95CC07C0FAFD518A0C3C4C40,*/'2014-09-25 22:33:36'), - (147,'374 Bat Yam Boulevard','','Kilis',266,'97700','923261616249',/*!50705 0x000000000101000000184FF344C68E4240FD55DBA8A95B4240,*/'2014-09-25 22:33:26'), - (148,'1027 Songkhla Manor','','Minsk',340,'30861','563660187896',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:13'), - (149,'999 Sanaa Loop','','Gauteng',491,'3439','918032330119',/*!50705 0x0000000001010000000E0D309864193C40F234AA1D0F7939C0,*/'2014-09-25 22:33:05'), - (150,'879 Newcastle Way','','Michigan',499,'90732','206841104594',/*!50705 0x000000000101000000916A8E62EFC154C08244C99A474A4540,*/'2014-09-25 22:34:01'), - (151,'1337 Lincoln Parkway','','Saitama',555,'99457','597815221267',/*!50705 0x0000000001010000005E0E6036A6746140456227614BEE4140,*/'2014-09-25 22:31:55'), - (152,'1952 Pune Lane','','Saint-Denis',442,'92150','354615066969',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:46'), - (153,'782 Mosul Street','','Massachusetts',94,'25545','885899703621',/*!50705 0x000000000101000000E9C4D44C2DC151C0D1686105AE0A4540,*/'2014-09-25 22:33:46'), - (154,'781 Shimonoseki Drive','','Michoacn de Ocampo',202,'95444','632316273199',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:06'), - (155,'1560 Jelets Boulevard','','Shandong',291,'77777','189446090264',/*!50705 0x00000000010100000018D57D5B0B6A5D40ADDA3521AD184240,*/'2014-09-25 22:30:38'), - (156,'1963 Moscow Place','','Assam',354,'64863','761379480249',/*!50705 0x000000000101000000203BB9F04D2C57405D595826B2593A40,*/'2014-09-25 22:31:21'), - (157,'456 Escobar Way','','Jakarta Raya',232,'36061','719202533520',/*!50705 0x000000000101000000DDC2A9C516B65A4095CCFB49C6DB18C0,*/'2014-09-25 22:31:33'), - (158,'798 Cianjur Avenue','','Shanxi',590,'76990','499408708580',/*!50705 0x00000000010100000013D6C6D889BF5B409B4BBBE2F3824140,*/'2014-09-25 22:30:49'), - (159,'185 Novi Sad Place','','Bern',72,'41778','904253967161',/*!50705 0x00000000010100000000D0BC772FCA1D40377D2C335B794740,*/'2014-09-25 22:33:13'), - (160,'1367 Yantai Manor','','Ondo & Ekiti',381,'21294','889538496300',/*!50705 0x000000000101000000C25E72ED555514408A7A1C61ACAA1C40,*/'2014-09-25 22:32:26'), - (161,'1386 Nakhon Sawan Boulevard','','Pyongyang-si',420,'53502','368899174225',/*!50705 0x000000000101000000F4BA8FED46705F40A55F6C6B55844340,*/'2014-09-25 22:32:28'), - (162,'369 Papeete Way','','North Carolina',187,'66639','170117068815',/*!50705 0x000000000101000000C49D66DCAFF253C07A2D324B4C094240,*/'2014-09-25 22:33:52'), - (163,'1440 Compton Place','','North Austria',307,'81037','931059836497',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:10'), - (164,'1623 Baha Blanca Manor','','Moskova',310,'81511','149981248346',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:54'), - (165,'97 Shimoga Avenue','','Tel Aviv',533,'44660','177167004331',/*!50705 0x0000000001010000009A56AFC7E96341403192E2885A0A4040,*/'2014-09-25 22:31:41'), - (166,'1740 Le Mans Loop','','Pays de la Loire',297,'22853','168476538960',/*!50705 0x000000000101000000452A8C2D04B9D23F0000006AB82DBD41,*/'2014-09-25 22:31:01'), - (167,'1287 Xiangfan Boulevard','','Gifu',253,'57844','819416131190',/*!50705 0x0000000001010000006AE514D3BB1B61408141D2A755B54140,*/'2014-09-25 22:31:48'), - (168,'842 Salzburg Lane','','Adana',529,'3313','697151428760',/*!50705 0x0000000001010000007207A0072DD5414093228D6555A64240,*/'2014-09-25 22:33:29'), - (169,'154 Tallahassee Loop','','Xinxiang',199,'62250','935508855935',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:34'), - (170,'710 San Felipe del Progreso Avenue','','Lilongwe',304,'76901','843801144113',/*!50705 0x00000000010100000089C855D1C4E44040501D064E11EF2BC0,*/'2014-09-25 22:31:59'), - (171,'1540 Wroclaw Drive','','Maharashtra',107,'62686','182363341674',/*!50705 0x0000000001010000004E10D0D8F2D253407CFB294476F23340,*/'2014-09-25 22:31:14'), - (172,'475 Atinsk Way','','Gansu',240,'59571','201705577290',/*!50705 0x0000000001010000007872970E678C59405544978114404340,*/'2014-09-25 22:30:36'), - (173,'1294 Firozabad Drive','','Jiangxi',407,'70618','161801569569',/*!50705 0x000000000101000000EED7F8A7AF775C402332079C00943B40,*/'2014-09-25 22:30:40'), - (174,'1877 Ezhou Lane','','Rajasthan',550,'63337','264541743403',/*!50705 0x00000000010100000029722DFF466C52401969F34938923840,*/'2014-09-25 22:31:28'), - (175,'316 Uruapan Street','','Perak',223,'58194','275788967899',/*!50705 0x0000000001010000005A3629BB4F4559400AC5B18927561240,*/'2014-09-25 22:31:59'), - (176,'29 Pyongyang Loop','','Batman',58,'47753','734780743462',/*!50705 0x0000000001010000001C430070EC9044403C8963B895F14240,*/'2014-09-25 22:33:23'), - (177,'1010 Klerksdorp Way','','Steiermark',186,'6802','493008546874',/*!50705 0x000000000101000000CFEE35A90DE72E409C0425BB88884740,*/'2014-09-25 22:30:10'), - (178,'1848 Salala Boulevard','','Miranda',373,'25220','48265851133',/*!50705 0x0000000001010000006D08E984ABB150C02F90FBB1A43B2440,*/'2014-09-25 22:34:04'), - (179,'431 Xiangtan Avenue','','Kerala',18,'4854','230250973122',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:10'), - (180,'757 Rustenburg Avenue','','Skikda',483,'89668','506134035434',/*!50705 0x000000000101000000BFD76BD509A31B4063867C8626704240,*/'2014-09-25 22:30:01'), - (181,'146 Johannesburg Way','','Tamaulipas',330,'54132','953689007081',/*!50705 0x0000000001010000003C45B357446058C0EAD621ED35E13940,*/'2014-09-25 22:32:09'), - (182,'1891 Rizhao Boulevard','','So Paulo',456,'47288','391065549876',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), - (183,'1089 Iwatsuki Avenue','','Kirov',270,'35109','866092335135',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:50'), - (184,'1410 Benin City Parkway','','Risaralda',405,'29747','104150372603',/*!50705 0x0000000001010000007C4F9B278DEC52C0795BE9B5D9401340,*/'2014-09-25 22:30:52'), - (185,'682 Garden Grove Place','','Tennessee',333,'67497','72136330362',/*!50705 0x0000000001010000004204C188228356C06B4F24F323934140,*/'2014-09-25 22:33:57'), - (186,'533 al-Ayn Boulevard','','California',126,'8862','662227486184',/*!50705 0x000000000101000000BF2264C5158E5DC08533AE6EABF24040,*/'2014-09-25 22:33:48'), - (187,'1839 Szkesfehrvr Parkway','','Gois',317,'55709','947468818183',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:20'), - (188,'741 Ambattur Manor','','Noord-Brabant',438,'43310','302590383819',/*!50705 0x000000000101000000699E6D7F78371540EF0D74A37ED94940,*/'2014-09-25 22:32:21'), - (189,'927 Barcelona Street','','Chaharmahal va Bakht',467,'65121','951486492670',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:38'), - (190,'435 0 Way','','West Bengali',195,'74750','760171523969',/*!50705 0x000000000101000000D9846A3906075640037168DB7A0F3640,*/'2014-09-25 22:31:16'), - (191,'140 Chiayi Parkway','','Sumy',506,'38982','855863906434',/*!50705 0x0000000001010000002C43C1317066414051BB5F05F8754940,*/'2014-09-25 22:33:34'), - (192,'1166 Changhwa Street','','Caraga',62,'58852','650752094490',/*!50705 0x0000000001010000009DB756201F715F40F53E9F1221832140,*/'2014-09-25 22:32:34'), - (193,'891 Novi Sad Manor','','Ontario',383,'5379','247646995453',/*!50705 0x0000000001010000005E49F25C5FB653C0DE6AE74537F34540,*/'2014-09-25 22:30:28'), - (194,'605 Rio Claro Parkway','','Tabora',513,'49348','352469351088',/*!50705 0x0000000001010000004E8B0B51CF694040DF67017F9D1014C0,*/'2014-09-25 22:33:18'), - (195,'1077 San Felipe de Puerto Plata Place','','Rostov-na-Donu',369,'65387','812824036424',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:56'), - (196,'9 San Miguel de Tucumn Manor','','Uttar Pradesh',169,'90845','956188728558',/*!50705 0x00000000010100000067DBC424B7995340A461E75C40263B40,*/'2014-09-25 22:31:15'), - (197,'447 Surakarta Loop','','Nyanza',271,'10428','940830176580',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:56'), - (198,'345 Oshawa Boulevard','','Tokyo-to',204,'32114','104491201771',/*!50705 0x000000000101000000FB5E9E29CF6C61404BFCF61A27D64140,*/'2014-09-25 22:31:45'), - (199,'1792 Valle de la Pascua Place','','Nordrhein-Westfalen',477,'15540','419419591240',/*!50705 0x000000000101000000E9BD8CBD720C204056725F18FA6F4940,*/'2014-09-25 22:31:06'), - (200,'1074 Binzhou Manor','','Baden-Wrttemberg',325,'36490','331132568928',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:05'), - (201,'817 Bradford Loop','','Jiangsu',109,'89459','264286442804',/*!50705 0x000000000101000000C3E1BB830EFD5D4006B243A10AC63F40,*/'2014-09-25 22:30:31'), - (202,'955 Bamenda Way','','Ondo & Ekiti',218,'1545','768481779568',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:24'), - (203,'1149 A Corua (La Corua) Boulevard','','Haiphong',194,'95824','470884141195',/*!50705 0x0000000001010000007573F1B7BDAB5A4050A0997164DD3440,*/'2014-09-25 22:34:06'), - (204,'387 Mwene-Ditu Drive','','Ahal',35,'8073','764477681869',/*!50705 0x000000000101000000B0253F3D11314D40A538A2D68FFA4240,*/'2014-09-25 22:33:30'), - (205,'68 Molodetno Manor','','Nordrhein-Westfalen',575,'4662','146640639760',/*!50705 0x000000000101000000EEF3739E0C691D40FE486CD2C8B84940,*/'2014-09-25 22:31:06'), - (206,'642 Nador Drive','','Maharashtra',77,'3924','369050085652',/*!50705 0x000000000101000000559D7A4908F25240E010AAD4EC0B3540,*/'2014-09-25 22:31:13'), - (207,'1688 Nador Lane','','Sulawesi Utara',184,'61613','652218196731',/*!50705 0x000000000101000000E358727044945E4093F139C148B9E83F,*/'2014-09-25 22:31:32'), - (208,'1215 Pyongyang Parkway','','Usak',557,'25238','646237101779',/*!50705 0x000000000101000000019E59B7E6673D40735E08DE35564340,*/'2014-09-25 22:33:30'), - (209,'1679 Antofagasta Street','','Alto Paran',122,'86599','905903574913',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:32'), - (210,'1304 s-Hertogenbosch Way','','Santa Catarina',83,'10925','90336226227',/*!50705 0x000000000101000000BDEAB765768848C05755D40561EB3AC0,*/'2014-09-25 22:30:16'), - (211,'850 Salala Loop','','Kitaa',371,'10800','403404780639',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:07'), - (212,'624 Oshawa Boulevard','','West Bengali',51,'89959','49677664184',/*!50705 0x0000000001010000000FBCB5A7BF315640EA7CD34F93383940,*/'2014-09-25 22:31:11'), - (213,'43 Dadu Avenue','','Rajasthan',74,'4855','95666951770',/*!50705 0x000000000101000000BCF957A0A7A852404046E5CBB0583940,*/'2014-09-25 22:31:12'), - (214,'751 Lima Loop','','Aden',7,'99405','756460337785',/*!50705 0x0000000001010000005ECF21BAB1844640A9007388138F2940,*/'2014-09-25 22:34:08'), - (215,'1333 Haldia Street','','Jilin',174,'82161','408304391718',/*!50705 0x00000000010100000007A51E5844345F404CE71E6D77974640,*/'2014-09-25 22:30:33'), - (216,'660 Jedda Boulevard','','Washington',65,'25053','168758068397',/*!50705 0x00000000010100000009EEF60FD88C5EC03C331C2A21CE4740,*/'2014-09-25 22:33:45'), - (217,'1001 Miyakonojo Lane','','Taizz',518,'67924','584316724815',/*!50705 0x0000000001010000006642DD51AD024640782C1103B8282B40,*/'2014-09-25 22:34:11'), - (218,'226 Brest Manor','','California',508,'2299','785881412500',/*!50705 0x000000000101000000CF9F36AA53825EC0B54D96FF35AF4240,*/'2014-09-25 22:34:02'), - (219,'1229 Valencia Parkway','','Haskovo',498,'99124','352679173732',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:24'), - (220,'1201 Qomsheh Manor','','Gois',28,'21464','873492228462',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:15'), - (221,'866 Shivapuri Manor','','Uttar Pradesh',448,'22474','778502731092',/*!50705 0x000000000101000000940BDF0C48A4534072648ADE4E953C40,*/'2014-09-25 22:31:26'), - (222,'1168 Najafabad Parkway','','Kabol',251,'40301','886649065861',/*!50705 0x0000000001010000009173AC9C074B51408EBDCDD199434140,*/'2014-09-25 22:29:59'), - (223,'1244 Allappuzha (Alleppey) Place','','Buenos Aires',567,'20657','991802825778',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:08'), - (224,'1842 Luzinia Boulevard','','Zanzibar West',593,'94420','706878974831',/*!50705 0x00000000010100000045E169E855994340B62C5F97E1A718C0,*/'2014-09-25 22:33:19'), - (225,'1926 Gingoog Street','','Sisilia',511,'22824','469738825391',/*!50705 0x0000000001010000004DD9E907758D2E40719AF4ADC58A4240,*/'2014-09-25 22:31:44'), - (226,'810 Palghat (Palakkad) Boulevard','','Jaroslavl',235,'73431','516331171356',/*!50705 0x00000000010100000069D48DC1D4EF43400294D0A79FD04C40,*/'2014-09-25 22:32:49'), - (227,'1820 Maring Parkway','','Punjab',324,'88307','99760893676',/*!50705 0x0000000001010000001E053EF5FE5E52406C617193AC4A4040,*/'2014-09-25 22:32:30'), - (228,'60 Poos de Caldas Street','','Rajasthan',243,'82338','963063788669',/*!50705 0x00000000010100000069EED7536140524079605B9AB6443A40,*/'2014-09-25 22:31:18'), - (229,'1014 Loja Manor','','Tamil Nadu',22,'66851','460795526514',/*!50705 0x000000000101000000803E366E560A5440A1212DDF44322A40,*/'2014-09-25 22:31:10'), - (230,'201 Effon-Alaiye Way','','Asuncin',37,'64344','684192903087',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:31'), - (231,'430 Alessandria Loop','','Saarland',439,'47446','669828224459',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:06'), - (232,'754 Valencia Place','','Phnom Penh',406,'87911','594319417514',/*!50705 0x0000000001010000009093D3E89F3A5A40AACCDE63FA1F2740,*/'2014-09-25 22:30:25'), - (233,'356 Olomouc Manor','','Gois',26,'93323','22326410776',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:15'), - (234,'1256 Bislig Boulevard','','Botosani',86,'50598','479007229460',/*!50705 0x00000000010100000085059C4AABAA3A408DAC46C032E04740,*/'2014-09-25 22:32:46'), - (235,'954 Kimchon Place','','West Bengali',559,'42420','541327526474',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:28'), - (236,'885 Yingkou Manor','','Kaduna',596,'31390','588964509072',/*!50705 0x00000000010100000006CF296D16E41E4038E3EAB6FA382640,*/'2014-09-25 22:32:28'), - (237,'1736 Cavite Place','','Qina',216,'98775','431770603551',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), - (238,'346 Skikda Parkway','','Hawalli',233,'90628','630424482919',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:57'), - (239,'98 Stara Zagora Boulevard','','Valle',96,'76448','610173756082',/*!50705 0x00000000010100000084CD4AA4FE4153C0DB9953138E0A0F40,*/'2014-09-25 22:30:51'), - (240,'1479 Rustenburg Boulevard','','Southern Tagalog',527,'18727','727785483194',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:40'), - (241,'647 A Corua (La Corua) Street','','Chollanam',357,'36971','792557457753',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:07'), - (242,'1964 Gijn Manor','','Karnataka',473,'14408','918119601885',/*!50705 0x000000000101000000BBC3DCA458E45240DA4246F6F7DC2B40,*/'2014-09-25 22:31:26'), - (243,'47 Syktyvkar Lane','','West Java',118,'22236','63937119031',/*!50705 0x000000000101000000EDABBC2E8DB05A40C3C1397E037E1AC0,*/'2014-09-25 22:31:31'), - (244,'1148 Saarbrcken Parkway','','Fukushima',226,'1921','137773001988',/*!50705 0x000000000101000000AD8ACB4C449C614053F8229001874240,*/'2014-09-25 22:31:47'), - (245,'1103 Bilbays Parkway','','Hubei',578,'87660','279979529227',/*!50705 0x000000000101000000A76ED34444095C401234C1CB67054040,*/'2014-09-25 22:30:45'), - (246,'1246 Boksburg Parkway','','Hebei',422,'28349','890283544295',/*!50705 0x000000000101000000B66A323EA7E55D40E508BE0E41F74340,*/'2014-09-25 22:30:41'), - (247,'1483 Pathankot Street','','Tucumn',454,'37288','686015532180',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:06'), - (248,'582 Papeete Loop','','Central Visayas',294,'27722','569868543137',/*!50705 0x0000000001010000001F189BB1C3FC5E407DC4F9E5DD9E2440,*/'2014-09-25 22:32:38'), - (249,'300 Junan Street','','Kyonggi',553,'81314','890289150158',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:08'), - (250,'829 Grand Prairie Way','','Paran',328,'6461','741070712873',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:20'), - (251,'1473 Changhwa Parkway','','Mxico',124,'75933','266798132374',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:03'), - (252,'1309 Weifang Street','','Florida',520,'57338','435785045362',/*!50705 0x000000000101000000EC0CF8A1F71155C0995A006432703E40,*/'2014-09-25 22:34:02'), - (253,'1760 Oshawa Manor','','Tianjin',535,'38140','56257502250',/*!50705 0x000000000101000000FBBD5EAB4E4B5D40EB0A6C8434924340,*/'2014-09-25 22:30:43'), - (254,'786 Stara Zagora Way','','Oyo & Osun',390,'98332','716256596301',/*!50705 0x000000000101000000DB45E22F77770F4073C8BC44AB691F40,*/'2014-09-25 22:32:27'), - (255,'1966 Tonghae Street','','Anhalt Sachsen',198,'36481','567359279425',/*!50705 0x0000000001010000000000009825D59D41450A0A2879C84940,*/'2014-09-25 22:31:05'), - (256,'1497 Yuzhou Drive','','England',312,'3433','246810237916',/*!50705 0x000000000101000000CC4642B68718C0BFCA822E8617C14940,*/'2014-09-25 22:33:37'), - (258,'752 Ondo Loop','','Miyazaki',338,'32474','134673576619',/*!50705 0x00000000010100000048AD8B36226260408871EDFABBBB3F40,*/'2014-09-25 22:31:50'), - (259,'1338 Zalantun Lane','','Minas Gerais',413,'45403','840522972766',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), - (260,'127 Iwakuni Boulevard','','Central Luzon',192,'20777','987442542471',/*!50705 0x0000000001010000000E6954E0E42E5E40AF05627E13AB2D40,*/'2014-09-25 22:32:37'), - (261,'51 Laredo Avenue','','Sagaing',342,'68146','884536620568',/*!50705 0x0000000001010000008720BD97B1C85740D4D7F335CB1B3640,*/'2014-09-25 22:32:18'), - (262,'771 Yaound Manor','','Sofala',64,'86768','245477603573',/*!50705 0x000000000101000000103345CA606B414046CB2665F7D733C0,*/'2014-09-25 22:32:17'), - (263,'532 Toulon Street','','Santiago',460,'69517','46871694740',/*!50705 0x000000000101000000ECD33B269CAC51C09AB67F65A5733340,*/'2014-09-25 22:30:55'), - (264,'1027 Banjul Place','','West Bengali',197,'50390','538241037443',/*!50705 0x000000000101000000FE14223BCA1A5640AC6F6072A3EE3640,*/'2014-09-25 22:31:16'), - (265,'1158 Mandi Bahauddin Parkway','','Shanxi',136,'98484','276555730211',/*!50705 0x000000000101000000ECC84741A6525C40A93C7084FB0B4440,*/'2014-09-25 22:30:32'), - (266,'862 Xintai Lane','','Cagayan Valley',548,'30065','265153400632',/*!50705 0x00000000010100000015580053866E5E408A5CCBBFF19C3140,*/'2014-09-25 22:32:41'), - (267,'816 Cayenne Parkway','','Manab',414,'93629','282874611748',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), - (268,'1831 Nam Dinh Loop','','National Capital Reg',323,'51990','322888976727',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:38'), - (269,'446 Kirovo-Tepetsk Lane','','Osaka',203,'19428','303967439816',/*!50705 0x0000000001010000008D94D2D8C3F36040608CED5AE7554140,*/'2014-09-25 22:31:45'), - (270,'682 Halisahar Place','','Severn Morava',378,'20536','475553436330',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:54'), - (271,'1587 Loja Manor','','Salzburg',447,'5410','621625204422',/*!50705 0x0000000001010000002C83C53C86162A405886DD1C53E64740,*/'2014-09-25 22:30:10'), - (272,'1762 Paarl Parkway','','Hunan',298,'53928','192459639410',/*!50705 0x00000000010100000067333D177CDB5B40DBA8A9C024B03B40,*/'2014-09-25 22:30:39'), - (273,'1519 Ilorin Place','','Kerala',395,'49298','357445645426',/*!50705 0x0000000001010000000C4FF921002A5340BD772F52838C2540,*/'2014-09-25 22:31:21'), - (274,'920 Kumbakonam Loop','','California',446,'75090','685010736240',/*!50705 0x00000000010100000012EF4ADCF4695EC01B95E535C0564240,*/'2014-09-25 22:34:00'), - (275,'906 Goinia Way','','Wielkopolskie',255,'83565','701767622697',/*!50705 0x0000000001010000007FA2B2614D1732404064366D6BE14940,*/'2014-09-25 22:32:42'), - (276,'1675 Xiangfan Manor','','Tamil Nadu',283,'11763','271149517630',/*!50705 0x00000000010100000042B687180AD95340EE4108C897EC2540,*/'2014-09-25 22:31:20'), - (277,'85 San Felipe de Puerto Plata Drive','','Shandong',584,'46063','170739645687',/*!50705 0x000000000101000000EA605859365C5E40EF1010DDFDBC4240,*/'2014-09-25 22:30:48'), - (278,'144 South Hill Loop','','Guanajuato',445,'2012','45387294817',/*!50705 0x0000000001010000002B84D558424C59C0699B2CFF6B923440,*/'2014-09-25 22:32:11'), - (279,'1884 Shikarpur Avenue','','Haryana',263,'85548','959949395183',/*!50705 0x0000000001010000002CE395DA413F5340EB460EC7A9B03D40,*/'2014-09-25 22:31:19'), - (280,'1980 Kamjanets-Podilskyi Street','','Illinois',404,'89502','874337098891',/*!50705 0x000000000101000000167CE420B26556C0B7966EB7C9584440,*/'2014-09-25 22:33:57'), - (281,'1944 Bamenda Way','','Michigan',573,'24645','75975221996',/*!50705 0x000000000101000000B8B64B76C7C154C0EF254344203D4540,*/'2014-09-25 22:34:03'), - (282,'556 Baybay Manor','','Oyo & Osun',374,'55802','363982224739',/*!50705 0x000000000101000000F5C6FFD3C30E1140FC30E7BE41502040,*/'2014-09-25 22:32:25'), - (283,'457 Tongliao Loop','','Bursa',222,'56254','880756161823',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:25'), - (284,'600 Bradford Street','','East Azerbaidzan',514,'96204','117592274996',/*!50705 0x000000000101000000EE4E2D115E25474044FF5FD09D0A4340,*/'2014-09-25 22:31:40'), - (285,'1006 Santa Brbara dOeste Manor','','Ondo & Ekiti',389,'36229','85059738746',/*!50705 0x000000000101000000FBC67CE5E6581640531A7B40EAC81C40,*/'2014-09-25 22:32:26'), - (286,'1308 Sumy Loop','','Fujian',175,'30657','583021225407',/*!50705 0x000000000101000000DC7AF25597D35D409617AAACB70F3A40,*/'2014-09-25 22:30:34'), - (287,'1405 Chisinau Place','','Ponce',411,'8160','62781725285',/*!50705 0x000000000101000000974341DF4CA750C03F219628D6023240,*/'2014-09-25 22:32:45'), - (288,'226 Halifax Street','','Xinxiang',277,'58492','790651020929',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:38'), - (289,'1279 Udine Parkway','','Edo & Delta',69,'75860','195003555232',/*!50705 0x000000000101000000FFB7EDD68D8216408FF4B3A217571940,*/'2014-09-25 22:32:23'), - (290,'1336 Benin City Drive','','Shiga',386,'46044','341242939532',/*!50705 0x000000000101000000D5810761C9FB60401B07A8BA91804140,*/'2014-09-25 22:31:53'), - (291,'1155 Liaocheng Place','','Oyo & Osun',152,'22650','558236142492',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:23'), - (292,'1993 Tabuk Lane','','Tamil Nadu',522,'64221','648482415405',/*!50705 0x0000000001010000002AF3A0EA210854407F94C78965D92940,*/'2014-09-25 22:31:27'), - (293,'86 Higashiosaka Lane','','Guanajuato',563,'33768','957128697225',/*!50705 0x0000000001010000002DAF5C6F1B4C59C07F34F7EBA9643440,*/'2014-09-25 22:32:14'), - (294,'1912 Allende Manor','','Kowloon and New Kowl',279,'58124','172262454487',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:09'), - (295,'544 Tarsus Boulevard','','Gurico',562,'53145','892523334',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:05'), - (296,'1936 Cuman Avenue','','Virginia',433,'61195','976798660411',/*!50705 0x000000000101000000FD7B3A6840FC53C065F4ED6EAFA24240,*/'2014-09-25 22:33:58'), - (297,'1192 Tongliao Street','','Sharja',470,'19065','350970907017',/*!50705 0x000000000101000000AA27F38FBEB44B4053E68B625E563940,*/'2014-09-25 22:33:35'), - (298,'44 Najafabad Way','','Baskimaa',146,'61391','96604821070',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:08'), - (299,'32 Pudukkottai Lane','','Ohio',140,'38834','967274728547',/*!50705 0x000000000101000000077AA86D430C55C0409C2C5A25E14340,*/'2014-09-25 22:33:49'), - (300,'661 Chisinau Lane','','Pietari',274,'8856','816436065431',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:51'), - (301,'951 Stara Zagora Manor','','Punjab',400,'98573','429925609431',/*!50705 0x0000000001010000001E296C50C51953405651723DC0533E40,*/'2014-09-25 22:31:22'), - (302,'922 Vila Velha Loop','','Maharashtra',9,'4085','510737228015',/*!50705 0x000000000101000000738F5B8242AF5240612129D835183340,*/'2014-09-25 22:31:10'), - (303,'898 Jining Lane','','Pohjois-Pohjanmaa',387,'40070','161643343536',/*!50705 0x0000000001010000003DFB80F6D9773940C8D0B183CA405040,*/'2014-09-25 22:31:00'), - (304,'1635 Kuwana Boulevard','','Hiroshima',205,'52137','710603868323',/*!50705 0x000000000101000000AA944330B38E6040247035FCB8324140,*/'2014-09-25 22:31:46'), - (305,'41 El Alto Parkway','','Maharashtra',398,'56883','51917807050',/*!50705 0x000000000101000000D487E41A55315340BC3088FEBF443340,*/'2014-09-25 22:31:22'), - (306,'1883 Maikop Lane','','Kaliningrad',254,'68469','96110042435',/*!50705 0x00000000010100000020DF94A8CD82344015D918856E5A4B40,*/'2014-09-25 22:32:50'), - (307,'1908 Gaziantep Place','','Liaoning',536,'58979','108053751300',/*!50705 0x0000000001010000004DAA6C0EC6E65E408E9F7C30DF344540,*/'2014-09-25 22:30:43'), - (308,'687 Alessandria Parkway','','Sanaa',455,'57587','407218522294',/*!50705 0x0000000001010000000C60257A741A4640854A123A9EB52E40,*/'2014-09-25 22:34:10'), - (309,'827 Yuncheng Drive','','Callao',99,'79047','504434452842',/*!50705 0x000000000101000000C2514DA48F4753C0271CD544FA1C28C0,*/'2014-09-25 22:32:32'), - (310,'913 Coacalco de Berriozbal Loop','','Texas',33,'42141','262088367001',/*!50705 0x00000000010100000023371EC7EA4658C0A86851442B5E4040,*/'2014-09-25 22:33:43'), - (311,'715 So Bernardo do Campo Lane','','Kedah',507,'84804','181179321332',/*!50705 0x000000000101000000D8DBC1E3361F5940520DFB3DB1961640,*/'2014-09-25 22:32:00'), - (312,'1354 Siegen Street','','Rio de Janeiro',25,'80184','573441801529',/*!50705 0x0000000001010000009146054EB62846C0FCA0D398B50137C0,*/'2014-09-25 22:30:15'), - (313,'1191 Sungai Petani Boulevard','','Missouri',262,'9668','983259819766',/*!50705 0x00000000010100000055890D7107A557C0CB7564F6C38C4340,*/'2014-09-25 22:33:54'), - (314,'1224 Huejutla de Reyes Boulevard','','Lombardia',91,'70923','806016930576',/*!50705 0x000000000101000000D85B6F40F06D24405EEE38EA8DC44640,*/'2014-09-25 22:31:43'), - (315,'543 Bergamo Avenue','','Minas Gerais',215,'59686','103602195112',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:18'), - (316,'746 Joliet Lane','','Kursk',286,'94878','688485191923',/*!50705 0x00000000010100000085949F54FB174240E0DCBAF660DE4940,*/'2014-09-25 22:32:52'), - (317,'780 Kimberley Way','','Tabuk',515,'17032','824396883951',/*!50705 0x0000000001010000001BD47E6B274942408B53AD8559663C40,*/'2014-09-25 22:33:00'), - (318,'1774 Yaound Place','','Hubei',166,'91400','613124286867',/*!50705 0x0000000001010000002A00C633E8B15C404C63C5BA027D3E40,*/'2014-09-25 22:30:33'), - (319,'1957 Yantai Lane','','So Paulo',490,'59255','704948322302',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:22'), - (320,'1542 Lubumbashi Boulevard','','Tel Aviv',57,'62472','508800331065',/*!50705 0x000000000101000000765F84DF3C6041403CAB60AF0B034040,*/'2014-09-25 22:31:41'), - (321,'651 Pathankot Loop','','Maharashtra',336,'59811','139378397418',/*!50705 0x0000000001010000002198FE8062A952408AC168FBFCD23040,*/'2014-09-25 22:31:20'), - (322,'1359 Zhoushan Parkway','','Streymoyar',545,'29763','46568045367',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:59'), - (323,'1769 Iwaki Lane','','Kujawsko-Pomorskie',97,'25787','556100547674',/*!50705 0x000000000101000000487B7203F4013240837EF0EBD18F4A40,*/'2014-09-25 22:32:41'), - (324,'1145 Vilnius Manor','','Mxico',451,'73170','674805712553',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:12'), - (325,'1892 Nabereznyje Telny Lane','','Tutuila',516,'28396','478229987054',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:02'), - (326,'470 Boksburg Street','','Central',81,'97960','908029859266',/*!50705 0x000000000101000000DAE78C83263855405BE21291AB023B40,*/'2014-09-25 22:32:19'), - (327,'1427 A Corua (La Corua) Place','','Buenos Aires',45,'85799','972574862516',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:04'), - (328,'479 San Felipe del Progreso Avenue','','Morelos',130,'54949','869051782691',/*!50705 0x000000000101000000C87E710484BC58C039FD8F02FACD3240,*/'2014-09-25 22:32:04'), - (329,'867 Benin City Avenue','','Henan',591,'78543','168884817145',/*!50705 0x000000000101000000A0F2F972B05D5C405D68531AD6144140,*/'2014-09-25 22:30:50'), - (330,'981 Kumbakonam Place','','Distrito Federal',89,'87611','829116184079',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:17'), - (331,'1016 Iwakuni Street','','St George',269,'49833','961370847344',/*!50705 0x000000000101000000A1DC11A9C49C4EC0D11B936A44512A40,*/'2014-09-25 22:32:59'), - (332,'663 Baha Blanca Parkway','','Adana',5,'33463','834418779292',/*!50705 0x000000000101000000BE72182719AA4140CCD1E3F736804240,*/'2014-09-25 22:33:22'), - (333,'1860 Taguig Loop','','West Java',119,'59550','38158430589',/*!50705 0x00000000010100000042ACA34FD0E55A40D698C6E52ED81BC0,*/'2014-09-25 22:31:32'), - (334,'1816 Bydgoszcz Loop','','Dhaka',234,'64308','965273813662',/*!50705 0x000000000101000000A717C627AE7C564080BD1D3C6EEB3840,*/'2014-09-25 22:30:12'), - (335,'587 Benguela Manor','','Illinois',42,'91590','165450987037',/*!50705 0x00000000010100000097CEE2207C1456C0DDEFABCD5AE14440,*/'2014-09-25 22:33:44'), - (336,'430 Kumbakonam Drive','','Santa F',457,'28814','105470691550',/*!50705 0x00000000010100000004C1882249304DC055DF54FF7B4E41C0,*/'2014-09-25 22:30:07'), - (337,'1838 Tabriz Lane','','Dhaka',143,'1195','38988715447',/*!50705 0x0000000001010000001A5D948F139A5640C4D21B49DDB53740,*/'2014-09-25 22:30:12'), - (338,'431 Szkesfehrvr Avenue','','Baki',48,'57828','119501405123',/*!50705 0x000000000101000000A77686A92DF248400FAECACF57304440,*/'2014-09-25 22:30:11'), - (339,'503 Sogamoso Loop','','Sumqayit',505,'49812','834626715837',/*!50705 0x0000000001010000006C83C94395D548402C8EB9217C4B4440,*/'2014-09-25 22:30:11'), - (340,'507 Smolensk Loop','','Sousse',492,'22971','80303246192',/*!50705 0x000000000101000000298EA8F52346254075DA649EA6E94140,*/'2014-09-25 22:33:21'), - (341,'1920 Weifang Avenue','','Uttar Pradesh',427,'15643','869507847714',/*!50705 0x0000000001010000001F3EFA70DAC153407410CF6D1DCF3C40,*/'2014-09-25 22:31:25'), - (342,'124 al-Manama Way','','Hiroshima',382,'52368','647899404952',/*!50705 0x0000000001010000004BE07B244AA760407B0ED18D55354140,*/'2014-09-25 22:31:52'), - (343,'1443 Mardan Street','','Western Cape',392,'31483','231383037471',/*!50705 0x000000000101000000FB6074D42CF73240B0B03B3833DA40C0,*/'2014-09-25 22:33:05'), - (344,'1909 Benguela Lane','','Henan',581,'19913','624138001031',/*!50705 0x000000000101000000F4AD6AA480775C4066EB2AEE89A74140,*/'2014-09-25 22:30:47'), - (345,'68 Ponce Parkway','','Hanoi',201,'85926','870635127812',/*!50705 0x0000000001010000005DF525C0D5755A4000F61B3746063540,*/'2014-09-25 22:34:06'), - (346,'1217 Konotop Avenue','','Gelderland',151,'504','718917251754',/*!50705 0x000000000101000000F438679F22A2164019B4EB3944044A40,*/'2014-09-25 22:32:20'), - (347,'1293 Nam Dinh Way','','Roraima',84,'71583','697656479977',/*!50705 0x0000000001010000008EE6C8CA2F564EC0D9C23DE0CB8E0640,*/'2014-09-25 22:30:17'), - (348,'785 Vaduz Street','','Baja California',335,'36170','895616862749',/*!50705 0x0000000001010000000D61EB0816DD5CC07DB328475C504040,*/'2014-09-25 22:32:10'), - (349,'1516 Escobar Drive','','Tongatapu',370,'46069','64536069371',/*!50705 0x0000000001010000009132987575E665C0BE11DDB3AE2335C0,*/'2014-09-25 22:33:20'), - (350,'1628 Nagareyama Lane','','Central',453,'60079','20064292617',/*!50705 0x00000000010100000019A5F04520C14CC029006B7AF55639C0,*/'2014-09-25 22:32:32'), - (351,'1157 Nyeri Loop','','Adygea',320,'56380','262744791493',/*!50705 0x000000000101000000AC91B8228C0D4440EBD10AC2CB4D4640,*/'2014-09-25 22:32:55'), - (352,'1673 Tangail Drive','','Daugavpils',137,'26857','627924259271',/*!50705 0x0000000001010000004377A45588883A40E580B80611F14B40,*/'2014-09-25 22:31:57'), - (353,'381 Kabul Way','','Taipei',209,'87272','55477302294',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:15'), - (354,'953 Hodeida Street','','Southern Tagalog',221,'18841','53912826864',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:37'), - (355,'469 Nakhon Sawan Street','','Tuvassia',531,'58866','689199636560',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:58'), - (356,'1378 Beira Loop','','Krasnojarsk',597,'40792','840957664136',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:58'), - (357,'1641 Changhwa Place','','Nord-Ouest',52,'37636','256546485220',/*!50705 0x000000000101000000103B53E8BC4A2440A4C0A7DEBFD61740,*/'2014-09-25 22:30:25'), - (358,'1698 Southport Loop','','Hidalgo',393,'49009','754358349853',/*!50705 0x0000000001010000007AB82E46EEAE58C03DED951EF21D3440,*/'2014-09-25 22:32:11'), - (359,'519 Nyeri Manor','','So Paulo',461,'37650','764680915323',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), - (360,'619 Hunuco Avenue','','Shimane',331,'81508','142596392389',/*!50705 0x000000000101000000A09ADC399EA160405B1D4AFE71BC4140,*/'2014-09-25 22:31:50'), - (361,'45 Aparecida de Goinia Place','','Madhya Pradesh',464,'7431','650496654258',/*!50705 0x0000000001010000009E0CE94BCA345440C9FDB38B0E953840,*/'2014-09-25 22:31:26'), - (362,'482 Kowloon and New Kowloon Manor','','Bratislava',90,'97056','738968474939',/*!50705 0x00000000010100000070DC18F1531B3140BDB90908F7124840,*/'2014-09-25 22:33:02'), - (363,'604 Bern Place','','Jharkhand',429,'5373','620719383725',/*!50705 0x000000000101000000799F9916AB55554037CC86EB07593740,*/'2014-09-25 22:31:25'), - (364,'1623 Kingstown Drive','','Buenos Aires',20,'91299','296394569728',/*!50705 0x000000000101000000791563AAAA2A4DC0E4839ECDAA6A41C0,*/'2014-09-25 22:30:04'), - (365,'1009 Zanzibar Lane','','Arecibo',32,'64875','102396298916',/*!50705 0x000000000101000000FBBD5EABCEAD50C0E9787187F2783240,*/'2014-09-25 22:32:45'), - (366,'114 Jalib al-Shuyukh Manor','','Centre',585,'60440','845378657301',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:25'), - (367,'1163 London Parkway','','Par',66,'6066','675120358494',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:16'), - (368,'1658 Jastrzebie-Zdrj Loop','','Central',372,'96584','568367775448',/*!50705 0x0000000001010000002B73A900CEEF4240660811BA956FB9BF,*/'2014-09-25 22:31:56'), - (369,'817 Laredo Avenue','','Jalisco',188,'77449','151249681135',/*!50705 0x000000000101000000F00BF9B113D959C03E4EE2BDB4AA3440,*/'2014-09-25 22:32:06'), - (370,'1565 Tangail Manor','','Okinawa',377,'45750','634445428822',/*!50705 0x000000000101000000D94C744CCCAA5F4045A1C096B2C53940,*/'2014-09-25 22:31:52'), - (371,'1912 Emeishan Drive','','Balikesir',50,'33050','99883471275',/*!50705 0x000000000101000000F1074D5CD8E23B400B2A053818D34340,*/'2014-09-25 22:33:22'), - (372,'230 Urawa Drive','','Andhra Pradesh',8,'2738','166898395731',/*!50705 0x0000000001010000008B04AE869F515340B2930BDF0C402F40,*/'2014-09-25 22:31:09'), - (373,'1922 Miraj Way','','Esfahan',356,'13203','320471479776',/*!50705 0x00000000010100000017050B71F6AE494026231DD434514040,*/'2014-09-25 22:31:37'), - (374,'433 Florencia Street','','Chihuahua',250,'91330','561729882725',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:08'), - (375,'1049 Matamoros Parkway','','Karnataka',191,'69640','960505250340',/*!50705 0x0000000001010000007923F3C89F355340386744696F563140,*/'2014-09-25 22:31:16'), - (376,'1061 Ede Avenue','','Southern Tagalog',98,'57810','333390595558',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:35'), - (377,'154 Oshawa Manor','','East Java',415,'72771','440365973660',/*!50705 0x00000000010100000005B93077D24D5C4065074B2B74041FC0,*/'2014-09-25 22:31:34'), - (378,'1191 Tandil Drive','','Southern Tagalog',523,'6362','45554316010',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:40'), - (379,'1133 Rizhao Avenue','','Pernambuco',572,'2800','600264533987',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:23'), - (380,'1519 Santiago de los Caballeros Loop','','East Kasai',348,'22025','409315295763',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:53'), - (381,'1618 Olomouc Manor','','Kurgan',285,'26385','96846695220',/*!50705 0x000000000101000000B1694A5755555040EA8FD552E5B94B40,*/'2014-09-25 22:32:51'), - (382,'220 Hidalgo Drive','','Kermanshah',265,'45298','342720754566',/*!50705 0x0000000001010000004E7A843F6888474008605EDB36284140,*/'2014-09-25 22:31:37'), - (383,'686 Donostia-San Sebastin Lane','','Guangdong',471,'97390','71857599858',/*!50705 0x000000000101000000F90A1C1A60845C400FDB711EA98B3640,*/'2014-09-25 22:30:42'), - (384,'97 Mogiljov Lane','','Gujarat',73,'89294','924815207181',/*!50705 0x000000000101000000B4F116FEC209524097DB076A42C63540,*/'2014-09-25 22:31:11'), - (385,'1642 Charlotte Amalie Drive','','Slaskie',549,'75442','821476736117',/*!50705 0x000000000101000000DDC4DA2967F73240D5D6E3198F114940,*/'2014-09-25 22:32:44'), - (386,'1368 Maracabo Boulevard','','',493,'32716','934352415130',/*!50705 0x000000000101000000731074B4AA8A4FC050920953EF2E3240,*/'2014-09-25 22:30:03'), - (387,'401 Sucre Boulevard','','New Hampshire',322,'25007','486395999608',/*!50705 0x000000000101000000817FA54E1BDD51C013718456717F4540,*/'2014-09-25 22:33:56'), - (388,'368 Hunuco Boulevard','','Namibe',360,'17165','106439158941',/*!50705 0x000000000101000000B5858CECEF4D28404D8EF11769642EC0,*/'2014-09-25 22:30:03'), - (389,'500 Lincoln Parkway','','Jiangsu',210,'95509','550306965159',/*!50705 0x0000000001010000003C399E2A3AC15D404409449957CB4040,*/'2014-09-25 22:30:35'), - (390,'102 Chapra Drive','','Ibaragi',521,'14073','776031833752',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:54'), - (391,'1793 Meixian Place','','Hmelnytskyi',258,'33535','619966287415',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:31'), - (392,'514 Ife Way','','Shaba',315,'69973','900235712074',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:53'), - (393,'717 Changzhou Lane','','Southern Tagalog',104,'21615','426255288071',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:36'), - (394,'753 Ilorin Avenue','','Sichuan',157,'3656','464511145118',/*!50705 0x0000000001010000008531D8C3CDD8594059D70D805D883D40,*/'2014-09-25 22:30:32'), - (395,'1337 Mit Ghamr Avenue','','Nakhon Sawan',358,'29810','175283210378',/*!50705 0x0000000001010000009A588572C70859404D237722D2682F40,*/'2014-09-25 22:33:19'), - (396,'767 Pyongyang Drive','','Osaka',229,'83536','667736124769',/*!50705 0x000000000101000000149A7F4FC7EA6040A02413A6DE2F4140,*/'2014-09-25 22:31:48'), - (397,'614 Pak Kret Street','','Addis Abeba',6,'27796','47808359842',/*!50705 0x0000000001010000009F84E3439A5F43402233BCFEC90C2240,*/'2014-09-25 22:30:59'), - (398,'954 Lapu-Lapu Way','','Moskova',278,'8816','737229003916',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:51'), - (399,'331 Bydgoszcz Parkway','','Asturia',181,'966','537374465982',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:09'), - (400,'1152 Citrus Heights Manor','','al-Qadarif',15,'5239','765957414528',/*!50705 0x00000000010100000084F6459D14B14140AA36EE83E2112C40,*/'2014-09-25 22:33:11'), - (401,'168 Cianjur Manor','','Saitama',228,'73824','679095087143',/*!50705 0x000000000101000000DEA925C2EB75614032005471E3F94140,*/'2014-09-25 22:31:48'), - (402,'616 Hagonoy Avenue','','Krasnojarsk',39,'46043','604177838256',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:47'), - (403,'1190 0 Place','','Rio Grande do Sul',44,'10417','841876514789',/*!50705 0x0000000001010000002347DF49B00D4BC086151340D6543FC0,*/'2014-09-25 22:30:16'), - (404,'734 Bchar Place','','Punjab',375,'30586','280578750435',/*!50705 0x0000000001010000006D3B6D8D885C5240C4A40925DDCE3E40,*/'2014-09-25 22:32:31'), - (405,'530 Lausanne Lane','','Texas',135,'11067','775235029633',/*!50705 0x0000000001010000009C830C89A03358C0E2D3F7753B644040,*/'2014-09-25 22:33:49'), - (406,'454 Patiala Lane','','Fukushima',276,'13496','794553031307',/*!50705 0x000000000101000000EC3D4B46448C614091306711E5BB4240,*/'2014-09-25 22:31:49'), - (407,'1346 Mysore Drive','','Bretagne',92,'61507','516647474029',/*!50705 0x0000000001010000004474BE8EEEEE11C070010DDBBB3F4840,*/'2014-09-25 22:31:00'), - (408,'990 Etawah Loop','','Tamil Nadu',564,'79940','206169448769',/*!50705 0x000000000101000000D54B42D8DF3C5340FE518A0C61A72440,*/'2014-09-25 22:31:29'), - (409,'1266 Laredo Parkway','','Saitama',380,'7664','1483365694',/*!50705 0x000000000101000000FBD97EE8F87361403BA5283C0DF44140,*/'2014-09-25 22:31:52'), - (410,'88 Nagaon Manor','','Buenos Aires',524,'86868','779461480495',/*!50705 0x000000000101000000CA3736960B914DC0D78A91802CA942C0,*/'2014-09-25 22:30:07'), - (411,'264 Bhimavaram Manor','','St Thomas',111,'54749','302526949177',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:08'), - (412,'1639 Saarbrcken Drive','','North West',437,'9827','328494873422',/*!50705 0x00000000010100000015CB8866F93D3B40E48AE65CE5AA39C0,*/'2014-09-25 22:33:05'), - (413,'692 Amroha Drive','','Northern',230,'35575','359478883004',/*!50705 0x00000000010100000027648CB47900544098E777503F562340,*/'2014-09-25 22:33:10'), - (414,'1936 Lapu-Lapu Parkway','','Bauchi & Gombe',141,'7122','653436985797',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:23'), - (415,'432 Garden Grove Street','','Ontario',430,'65630','615964523510',/*!50705 0x0000000001010000003E867DF1FBDB53C05900AEBF80EF4540,*/'2014-09-25 22:30:28'), - (416,'1445 Carmen Parkway','','West Java',117,'70809','598912394463',/*!50705 0x000000000101000000957950F550C55A40B3BFA21122171BC0,*/'2014-09-25 22:31:30'), - (417,'791 Salinas Street','','Punjab',208,'40509','129953030512',/*!50705 0x000000000101000000579E9B911CFA524075D256804A883F40,*/'2014-09-25 22:31:17'), - (418,'126 Acua Parkway','','West Bengali',71,'58888','480039662421',/*!50705 0x000000000101000000C3013E89191056404E9F7829D01A3840,*/'2014-09-25 22:31:11'), - (419,'397 Sunnyvale Avenue','','Guanajuato',19,'55566','680851640676',/*!50705 0x000000000101000000754419059C2F59C02409C21550EA3440,*/'2014-09-25 22:32:01'), - (420,'992 Klerksdorp Loop','','Utrecht',23,'33711','855290087237',/*!50705 0x000000000101000000C1DFD4ACD88C15404FDC3BB4D9134A40,*/'2014-09-25 22:32:19'), - (421,'966 Arecibo Loop','','Sind',134,'94018','15273765306',/*!50705 0x000000000101000000BE9B1320AFF15040D93400659DBB3A40,*/'2014-09-25 22:32:30'), - (422,'289 Santo Andr Manor','','al-Sharqiya',16,'72410','214976066017',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:59'), - (423,'437 Chungho Drive','','Puerto Plata',450,'59489','491271355190',/*!50705 0x000000000101000000225A86930FAC51C0082692431FCB3340,*/'2014-09-25 22:30:55'), - (424,'1948 Bayugan Parkway','','Bihar',264,'60622','987306329957',/*!50705 0x0000000001010000007613211A82E45540D685C4E2DC893940,*/'2014-09-25 22:31:19'), - (425,'1866 al-Qatif Avenue','','California',155,'89420','546793516940',/*!50705 0x000000000101000000B4EE7AC4C3815DC0165D28AAC8084140,*/'2014-09-25 22:33:50'), - (426,'1661 Abha Drive','','Tamil Nadu',416,'14400','270456873752',/*!50705 0x000000000101000000D3B36A2192B45340FBC5111038C32440,*/'2014-09-25 22:31:23'), - (427,'1557 Cape Coral Parkway','','Hubei',293,'46875','368284120423',/*!50705 0x00000000010100000034CC1A06BDEA5B402D5A25FD62314040,*/'2014-09-25 22:30:38'), - (428,'1727 Matamoros Place','','Sawhaj',465,'78813','129673677866',/*!50705 0x00000000010100000083E38D27DDB13F40555BA093948E3A40,*/'2014-09-25 22:30:57'), - (429,'1269 Botosani Manor','','Guangdong',468,'47394','736517327853',/*!50705 0x000000000101000000C8E1DDDB3ED65C40281B20E230C83640,*/'2014-09-25 22:30:42'), - (430,'355 Vitria de Santo Anto Way','','Oaxaca',452,'81758','548003849552',/*!50705 0x0000000001010000000363D8BC050858C0503750E09D163240,*/'2014-09-25 22:32:13'), - (431,'1596 Acua Parkway','','Jharkhand',418,'70425','157133457169',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:24'), - (432,'259 Ipoh Drive','','So Paulo',189,'64964','419009857119',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:18'), - (433,'1823 Hoshiarpur Lane','','Komi',510,'33191','307133768620',/*!50705 0x000000000101000000C6DA8420AC674940DD9ACF1495D64E40,*/'2014-09-25 22:32:57'), - (434,'1404 Taguig Drive','','Okayama',547,'87212','572068624538',/*!50705 0x000000000101000000205D11A1F6BF6040BFE90203AD864140,*/'2014-09-25 22:31:54'), - (435,'740 Udaipur Lane','','Nizni Novgorod',150,'33505','497288595103',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:47'), - (436,'287 Cuautla Boulevard','','Chuquisaca',501,'72736','82619513349',/*!50705 0x0000000001010000002A0B15D2D05050C049C44ABB870833C0,*/'2014-09-25 22:30:14'), - (437,'1766 Almirante Brown Street','','KwaZulu-Natal',364,'63104','617567598243',/*!50705 0x000000000101000000FDAB7DF090EE3D40488D64EA09C23BC0,*/'2014-09-25 22:33:04'), - (438,'596 Huixquilucan Place','','Nampula',351,'65892','342709348083',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:17'), - (439,'1351 Aparecida de Goinia Parkway','','Northern Mindanao',391,'41775','959834530529',/*!50705 0x000000000101000000DAFF006B55F55E40898C58D5DC4F2040,*/'2014-09-25 22:32:38'), - (440,'722 Bradford Lane','','Shandong',249,'90920','746251338300',/*!50705 0x000000000101000000653E7B890CB55D4078A0A932E7954140,*/'2014-09-25 22:30:37'), - (441,'983 Santa F Way','','British Colombia',565,'47472','145720452260',/*!50705 0x000000000101000000719CCA58A3C75EC0EEE7B92AF59F4840,*/'2014-09-25 22:30:28'), - (442,'1245 Ibirit Way','','La Romana',290,'40926','331888642162',/*!50705 0x0000000001010000006D59BE2E433E51C04FC87322666D3240,*/'2014-09-25 22:30:54'), - (443,'1836 Korla Parkway','','Copperbelt',272,'55405','689681677428',/*!50705 0x000000000101000000064257C796363C40BB7EC16ED89A29C0,*/'2014-09-25 22:34:11'), - (444,'231 Kaliningrad Place','','Lombardia',70,'57833','575081026569',/*!50705 0x0000000001010000007A185A9D9C552340A77E390E17D94640,*/'2014-09-25 22:31:42'), - (445,'495 Bhimavaram Lane','','Maharashtra',144,'3','82088937724',/*!50705 0x0000000001010000003EE1911DC0B15240B39943520BE73440,*/'2014-09-25 22:31:15'), - (446,'1924 Shimonoseki Drive','','Batna',59,'52625','406784385440',/*!50705 0x000000000101000000347CB03154B21840DF814B112AC74140,*/'2014-09-25 22:29:59'), - (447,'105 Dzerzinsk Manor','','Inner Mongolia',540,'48570','240776414296',/*!50705 0x000000000101000000F1C05B7BFA905E40F5EC03DA67CE4540,*/'2014-09-25 22:30:44'), - (448,'614 Denizli Parkway','','Rio Grande do Sul',486,'29444','876491807547',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:22'), - (449,'1289 Belm Boulevard','','Tartumaa',530,'88306','237368926031',/*!50705 0x00000000010100000079680EFF9FB93A406C7E575FB8304D40,*/'2014-09-25 22:30:58'), - (450,'203 Tambaram Street','','Buenos Aires',161,'73942','411549550611',/*!50705 0x000000000101000000E753C72AA5604DC0438CD7BCAA2A41C0,*/'2014-09-25 22:30:05'), - (451,'1704 Tambaram Manor','','West Bengali',554,'2834','39463554936',/*!50705 0x000000000101000000A4E9A2D755065640F598EDAFC3793640,*/'2014-09-25 22:31:28'), - (452,'207 Cuernavaca Loop','','Tatarstan',352,'52671','782900030287',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:55'), - (453,'319 Springs Loop','','Baijeri',160,'99552','72524459905',/*!50705 0x0000000001010000006A62CB3C0304264081FEE7D5A5CB4840,*/'2014-09-25 22:31:05'), - (454,'956 Nam Dinh Manor','','Kerman',481,'21872','474047727727',/*!50705 0x000000000101000000F16206CF29D74B40CFA91A738D733D40,*/'2014-09-25 22:31:39'), - (455,'1947 Paarl Way','','Central Java',509,'23636','834061016202',/*!50705 0x000000000101000000C4D78D2D3AB55B40AC996B8775391EC0,*/'2014-09-25 22:31:35'), - (456,'814 Simferopol Loop','','Sinaloa',154,'48745','524567129902',/*!50705 0x000000000101000000954330B3F42F5BC090CCD9F115313A40,*/'2014-09-25 22:32:05'), - (457,'535 Ahmadnagar Manor','','Abu Dhabi',3,'41136','985109775584',/*!50705 0x000000000101000000D3E6EE29EF2E4B4099C6E52E78773840,*/'2014-09-25 22:33:34'), - (458,'138 Caracas Boulevard','','Zulia',326,'16790','974433019532',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:04'), - (459,'251 Florencia Drive','','Michoacn de Ocampo',556,'16119','118011831565',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:13'), - (460,'659 Gatineau Boulevard','','La Paz',153,'28587','205524798287',/*!50705 0x00000000010100000017E7B9CFBB0B51C0A029858ABB7B30C0,*/'2014-09-25 22:30:13'), - (461,'1889 Valparai Way','','Ziguinchor',600,'75559','670370974122',/*!50705 0x00000000010100000020E1C50C9E4530C0FC219111AB2A2940,*/'2014-09-25 22:33:01'), - (462,'1485 Bratislava Place','','Illinois',435,'83183','924663855568',/*!50705 0x000000000101000000A081A2C30D4656C04453D1B3B4224540,*/'2014-09-25 22:33:59'), - (463,'935 Aden Boulevard','','Central Java',532,'64709','335052544020',/*!50705 0x000000000101000000C7139C55FA485B40BEE435655D7A1BC0,*/'2014-09-25 22:31:35'), - (464,'76 Kermanshah Manor','','Esfahan',423,'23343','762361821578',/*!50705 0x000000000101000000FF66182DF6EE4940A60BB1FA23014040,*/'2014-09-25 22:31:37'), - (465,'734 Tanshui Avenue','','Caquet',170,'70664','366776723320',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:52'), - (466,'118 Jaffna Loop','','Northern Mindanao',182,'10447','325526730021',/*!50705 0x00000000010100000028B27B9777475F40BAEA4B80ABAA2140,*/'2014-09-25 22:32:36'), - (467,'1621 Tongliao Avenue','','Irkutsk',558,'22173','209342540247',/*!50705 0x000000000101000000C7269E584CE95940E56A1ACA3F604A40,*/'2014-09-25 22:32:58'), - (468,'1844 Usak Avenue','','Nova Scotia',196,'84461','164414772677',/*!50705 0x0000000001010000004205871744C94FC0162B0F779A524640,*/'2014-09-25 22:30:27'), - (469,'1872 Toulon Loop','','OHiggins',428,'7939','928809465153',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:30'), - (470,'1088 Ibirit Place','','Jalisco',595,'88502','49084281333',/*!50705 0x0000000001010000007820578FA0D859C06AE514D33BB93440,*/'2014-09-25 22:32:15'), - (471,'1322 Mosul Parkway','','Shandong',145,'95400','268053970382',/*!50705 0x0000000001010000002856574F779F5D402425E2523ABB4240,*/'2014-09-25 22:30:32'), - (472,'1447 Chatsworth Place','','Chihuahua',129,'41545','769370126331',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:04'), - (473,'1257 Guadalajara Street','','Karnataka',78,'33599','195337700615',/*!50705 0x000000000101000000052049A4C8ED5240E702F2800DD33040,*/'2014-09-25 22:31:14'), - (474,'1469 Plock Lane','','Galicia',388,'95835','622884741180',/*!50705 0x000000000101000000FB44F9DDCF741FC0ED9A90D6182B4540,*/'2014-09-25 22:33:09'), - (475,'434 Ourense (Orense) Manor','','Hodeida',206,'14122','562370137426',/*!50705 0x000000000101000000F56FF2B62D7A4540DF80E03B7B982D40,*/'2014-09-25 22:34:10'), - (476,'270 Tambaram Parkway','','Gauteng',244,'9668','248446668735',/*!50705 0x0000000001010000005B5540EB2B0B3C4082412D61C8333AC0,*/'2014-09-25 22:33:03'), - (477,'1786 Salinas Place','','Nam Ha',359,'66546','206060652238',/*!50705 0x00000000010100000044BD851A2A7E5A40C2DB8310908D3440,*/'2014-09-25 22:34:07'), - (478,'1078 Stara Zagora Drive','','Aceh',301,'69221','932992626595',/*!50705 0x00000000010100000034057CC8A5495840D2C9ADA470B81440,*/'2014-09-25 22:31:33'), - (479,'1854 Okara Boulevard','','Drenthe',158,'42123','131912793873',/*!50705 0x0000000001010000006E8AC745B5A01B40947BCBE6BB634A40,*/'2014-09-25 22:32:21'), - (480,'421 Yaound Street','','Sumy',385,'11363','726875628268',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:33'), - (481,'1153 Allende Way','','Qubec',179,'20336','856872225376',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:26'), - (482,'808 Naala-Porto Parkway','','England',500,'41060','553452430707',/*!50705 0x0000000001010000000E6036A6CC4201C0B9D7930A74B44A40,*/'2014-09-25 22:33:41'), - (483,'632 Usolje-Sibirskoje Parkway','','Ha Darom',36,'73085','667648979883',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:41'), - (484,'98 Pyongyang Boulevard','','Ohio',11,'88749','191958435142',/*!50705 0x0000000001010000008AB1A778376154C0990524AB6C8A4440,*/'2014-09-25 22:33:42'), - (485,'984 Novoterkassk Loop','','Gaziantep',180,'28165','435118527255',/*!50705 0x000000000101000000CAAF7A1BF6B04240AA8889BC9B874240,*/'2014-09-25 22:33:25'), - (486,'64 Korla Street','','Mwanza',347,'25145','510383179153',/*!50705 0x0000000001010000002A28FB9DDC7B40402EBB719C252204C0,*/'2014-09-25 22:33:17'), - (487,'1785 So Bernardo do Campo Street','','Veracruz',125,'71182','684529463244',/*!50705 0x000000000101000000A1551CBD509C57C0141F44D72A223240,*/'2014-09-25 22:32:04'), - (488,'698 Jelets Boulevard','','Denizli',142,'2596','975185523021',/*!50705 0x000000000101000000EECD6F9868163D40B226BB3E18E34240,*/'2014-09-25 22:33:24'), - (489,'1297 Alvorada Parkway','','Ningxia',587,'11839','508348602835',/*!50705 0x0000000001010000001583D1F679915A4029876066E93B4340,*/'2014-09-25 22:30:49'), - (490,'1909 Dayton Avenue','','Guangdong',469,'88513','702955450528',/*!50705 0x0000000001010000007BE0BE6955655C405457998466E43840,*/'2014-09-25 22:30:42'), - (491,'1789 Saint-Denis Parkway','','Coahuila de Zaragoza',4,'8268','936806643983',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:01'), - (492,'185 Mannheim Lane','','Stavropol',408,'23661','589377568313',/*!50705 0x000000000101000000333E82D19B87454024592CEA38064640,*/'2014-09-25 22:32:56'), - (493,'184 Mandaluyong Street','','Baja California Sur',288,'94239','488425406814',/*!50705 0x000000000101000000173B2BB3D2935BC078F6F0C05B233840,*/'2014-09-25 22:32:09'), - (494,'591 Sungai Petani Drive','','Okayama',376,'46400','37247325001',/*!50705 0x0000000001010000001966B2C9EBBD60404CC054D8B1544140,*/'2014-09-25 22:31:51'), - (495,'656 Matamoros Drive','','Boyac',487,'19489','17305839123',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:53'), - (496,'775 ostka Drive','','al-Daqahliya',337,'22358','171973024401',/*!50705 0x000000000101000000FC4DCD8A4D423F403EDF60B9EFB63E40,*/'2014-09-25 22:30:57'), - (497,'1013 Tabuk Boulevard','','West Bengali',261,'96203','158399646978',/*!50705 0x0000000001010000005D1B857F6C1B5640793BC269C1F53640,*/'2014-09-25 22:31:19'), - (498,'319 Plock Parkway','','Istanbul',504,'26101','854259976812',/*!50705 0x000000000101000000B6EFF6C54A453D40277E3100F97A4440,*/'2014-09-25 22:33:28'), - (499,'1954 Kowloon and New Kowloon Way','','Chimborazo',434,'63667','898559280434',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), - (500,'362 Rajkot Lane','','Gansu',47,'98030','962020153680',/*!50705 0x0000000001010000004F6FEB13E50A5A4028733D1B03464240,*/'2014-09-25 22:30:31'), - (501,'1060 Tandil Lane','','Shandong',432,'72349','211256301880',/*!50705 0x000000000101000000CAB61D6423DD5D40ADF1E379BAB64140,*/'2014-09-25 22:30:41'), - (502,'1515 Korla Way','','England',589,'57197','959467760895',/*!50705 0x0000000001010000004C42D8DFC852F1BFBA826DC493FA4A40,*/'2014-09-25 22:33:42'), - (503,'1416 San Juan Bautista Tuxtepec Avenue','','Zufar',444,'50592','144206758053',/*!50705 0x000000000101000000A6684018D30B4B40078662E1DA033140,*/'2014-09-25 22:32:29'), - (504,'1 Valle de Santiago Avenue','','Apulia',93,'86208','465897838272',/*!50705 0x000000000101000000CAFED4D3A2EF3140584D7C5AEA504440,*/'2014-09-25 22:31:43'), - (505,'519 Brescia Parkway','','East Java',318,'69504','793996678771',/*!50705 0x000000000101000000A3C794B487E15B400A230736F8841EC0,*/'2014-09-25 22:31:33'), - (506,'414 Mandaluyong Street','','Lubelskie',314,'16370','52709222667',/*!50705 0x0000000001010000000FE6C0BC1191364020F0C000C2A04940,*/'2014-09-25 22:32:43'), - (507,'1197 Sokoto Boulevard','','West Bengali',478,'87687','868602816371',/*!50705 0x000000000101000000109546CC6C1B56408F0FC4C3C5B53A40,*/'2014-09-25 22:31:27'), - (508,'496 Celaya Drive','','Nagano',552,'90797','759586584889',/*!50705 0x000000000101000000254E3805034961402486D3388A334240,*/'2014-09-25 22:31:54'), - (509,'786 Matsue Way','','Illinois',245,'37469','111177206479',/*!50705 0x0000000001010000000F3B9D75570556C0FA91C77839C34440,*/'2014-09-25 22:33:54'), - (510,'48 Maracabo Place','','Central Luzon',519,'1570','82671830126',/*!50705 0x000000000101000000223999B8D53A5E408D87AD8F3D2D2F40,*/'2014-09-25 22:32:39'), - (511,'1152 al-Qatif Lane','','Kalimantan Barat',412,'44816','131370665218',/*!50705 0x000000000101000000107FA88F9B545B4021037976F9D69FBF,*/'2014-09-25 22:31:34'), - (512,'1269 Ipoh Avenue','','Eskisehir',163,'54674','402630109080',/*!50705 0x000000000101000000E9D32AFA43853E40767D303A6AE34340,*/'2014-09-25 22:33:24'), - (513,'758 Korolev Parkway','','Andhra Pradesh',568,'75474','441628280920',/*!50705 0x00000000010100000031DA99F859285440AF528BD2EF843040,*/'2014-09-25 22:31:29'), - (514,'1747 Rustenburg Place','','Bihar',110,'51369','442673923363',/*!50705 0x0000000001010000000BFD5DE9C62E554041C4BC7D0CC83940,*/'2014-09-25 22:31:14'), - (515,'886 Tonghae Place','','Volgograd',259,'19450','711928348157',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:50'), - (516,'1574 Goinia Boulevard','','Heilongjiang',502,'39529','59634255214',/*!50705 0x00000000010100000017128B73AFBF5F40C5ECC094DC514740,*/'2014-09-25 22:30:43'), - (517,'548 Uruapan Street','','Ontario',312,'35653','879347453467',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:38'), - (519,'962 Tama Loop','','',583,'65952','282667506728',/*!50705 0x000000000101000000FA545FA722DD6440AA7A9EE4B321E1BF,*/'2014-09-25 22:32:19'), - (520,'1778 Gijn Manor','','Hubei',594,'35156','288910576761',/*!50705 0x000000000101000000E358727044305C40A58A3D0F49104040,*/'2014-09-25 22:30:50'), - (521,'568 Dhule (Dhulia) Loop','','Coquimbo',127,'92568','602101369463',/*!50705 0x0000000001010000000000804A296FC5C1DDA85F330AC13EC0,*/'2014-09-25 22:30:30'), - (522,'1768 Udine Loop','','Battambang',60,'32347','448876499197',/*!50705 0x000000000101000000708802C7AFCC59402ABC15D396342A40,*/'2014-09-25 22:30:24'), - (523,'608 Birgunj Parkway','','Taipei',116,'400','627425618482',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:14'), - (524,'680 A Corua (La Corua) Manor','','Sivas',482,'49806','158326114853',/*!50705 0x000000000101000000936EF02A10824240F2F6D676C9DF4340,*/'2014-09-25 22:33:28'), - (525,'1949 Sanya Street','','Gumma',224,'61244','132100972047',/*!50705 0x000000000101000000943F29A406696140E4CA8FAE88284240,*/'2014-09-25 22:31:47'), - (526,'617 Klerksdorp Place','','Khanh Hoa',366,'94707','574973479129',/*!50705 0x0000000001010000004A1751C96F4C5B4032F504D37A7D2840,*/'2014-09-25 22:34:07'), - (527,'1993 0 Loop','','Liaoning',588,'41214','25865528181',/*!50705 0x000000000101000000B65E1D119D8E5E40171A3ED818554440,*/'2014-09-25 22:30:49'), - (528,'1176 Southend-on-Sea Manor','','Southern Tagalog',458,'81651','236679267178',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:39'), - (529,'600 Purnea (Purnia) Avenue','','Nghe An',571,'18043','638409958875',/*!50705 0x000000000101000000962364204F6C5A407A6D365662AC3240,*/'2014-09-25 22:34:07'), - (530,'1003 Qinhuangdao Street','','West Java',419,'25972','35533115997',/*!50705 0x0000000001010000005EA516A55FDC5A40A21639FA4E3A1AC0,*/'2014-09-25 22:31:35'), - (531,'1986 Sivas Place','','Friuli-Venezia Giuli',551,'95775','182059202712',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:44'), - (532,'1427 Tabuk Place','','Florida',101,'31342','214756839122',/*!50705 0x0000000001010000003C702942C57C54C02A5D555117903A40,*/'2014-09-25 22:33:47'), - (533,'556 Asuncin Way','','Mogiljov',339,'35364','338244023543',/*!50705 0x0000000001010000006B6DD04D51583E40673513C259F54A40,*/'2014-09-25 22:30:13'), - (534,'486 Ondo Parkway','','Benguela',67,'35202','105882218332',/*!50705 0x000000000101000000BD83E9C59ACF2A40B9FA56900B2729C0,*/'2014-09-25 22:30:02'), - (535,'635 Brest Manor','','Andhra Pradesh',75,'40899','80593242951',/*!50705 0x00000000010100000079FA52897C615440D2C9ADA4708A3040,*/'2014-09-25 22:31:13'), - (536,'166 Jinchang Street','','Buenos Aires',165,'86760','717566026669',/*!50705 0x0000000001010000003EB896242A434DC0E0771DBB556D41C0,*/'2014-09-25 22:30:05'), - (537,'958 Sagamihara Lane','','Mie',287,'88408','427274926505',/*!50705 0x000000000101000000BED29E37BA1761409B5F837467884140,*/'2014-09-25 22:31:50'), - (538,'1817 Livorno Way','','Khanh Hoa',100,'79401','478380208348',/*!50705 0x000000000101000000944A78422F4A5B40236D3E09C7D72740,*/'2014-09-25 22:34:05'), - (539,'1332 Gaziantep Lane','','Shandong',80,'22813','383353187467',/*!50705 0x000000000101000000BC2F1D2911815D4074B0A316EFAE4240,*/'2014-09-25 22:30:31'), - (540,'949 Allende Lane','','Uttar Pradesh',24,'67521','122981120653',/*!50705 0x0000000001010000008C91DBE5119E534039A8B34934E73C40,*/'2014-09-25 22:31:11'), - (541,'195 Ilorin Street','','Chari-Baguirmi',363,'49250','8912935608',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:29'), - (542,'193 Bhusawal Place','','Kang-won',539,'9750','745267607502',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:07'), - (543,'43 Vilnius Manor','','Colorado',42,'79814','484500282381',/*!50705 0x0000000001010000009389004C3E355AC0D03582435EDD4340,*/'2014-09-25 22:33:44'), - (544,'183 Haiphong Street','','Jilin',46,'69953','488600270038',/*!50705 0x000000000101000000AFA3607C87B45E4038A85890C1CD4640,*/'2014-09-25 22:30:30'), - (545,'163 Augusta-Richmond County Loop','','Carabobo',561,'33030','754579047924',/*!50705 0x000000000101000000CC0C1B657D0051C06B7F677BF4522440,*/'2014-09-25 22:34:05'), - (546,'191 Jos Azueta Parkway','','Ruse',436,'13629','932156667696',/*!50705 0x00000000010100000067A9ABF188F83940CD6CA1759EED4540,*/'2014-09-25 22:30:23'), - (547,'379 Lublin Parkway','','Toscana',309,'74568','921960450089',/*!50705 0x00000000010100000090920D5AFEA62440CC13BEADAAC54540,*/'2014-09-25 22:31:44'), - (548,'1658 Cuman Loop','','Sumatera Selatan',396,'51309','784907335610',/*!50705 0x00000000010100000018D75306E9885A40E8209EDB3A4E01C0,*/'2014-09-25 22:31:34'), - (549,'454 Qinhuangdao Drive','','Tadla-Azilal',68,'25866','786270036240',/*!50705 0x000000000101000000419479F53B6619C04F09E3022B2B4040,*/'2014-09-25 22:32:16'), - (550,'1715 Okayama Street','','So Paulo',485,'55676','169352919175',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:22'), - (551,'182 Nukualofa Drive','','Sumy',275,'15414','426346224043',/*!50705 0x00000000010100000079F71109F099404055BBCBEAC29E4940,*/'2014-09-25 22:33:32'), - (552,'390 Wroclaw Way','','Hainan',462,'5753','357593328658',/*!50705 0x000000000101000000F70FD88B57605B40364E5480393E3240,*/'2014-09-25 22:30:41'), - (553,'1421 Quilmes Lane','','Ishikawa',260,'19151','135407755975',/*!50705 0x0000000001010000008F9F32A30414614053AEF02E174C4240,*/'2014-09-25 22:31:49'), - (554,'947 Trshavn Place','','Central Luzon',528,'841','50898428626',/*!50705 0x000000000101000000C56DD9C644265E4002B5BD82D9F52E40,*/'2014-09-25 22:32:40'), - (555,'1764 Jalib al-Shuyukh Parkway','','Galicia',459,'77642','84794532510',/*!50705 0x00000000010100000090FFB8B3651721C09DB23FF5B4704540,*/'2014-09-25 22:33:10'), - (556,'346 Cam Ranh Avenue','','Zhejiang',599,'39976','978430786151',/*!50705 0x000000000101000000A0E63FFF188D5E4056DBA8A9C0023E40,*/'2014-09-25 22:30:51'), - (557,'1407 Pachuca de Soto Place','','Rio Grande do Sul',21,'26284','380077794770',/*!50705 0x000000000101000000A3CEDC43C28449C0608209922DFD3DC0,*/'2014-09-25 22:30:14'), - (558,'904 Clarksville Drive','','Zhejiang',193,'52234','955349440539',/*!50705 0x000000000101000000E5886B6BFA2A5E4038E04E7D7B7A3E40,*/'2014-09-25 22:30:34'), - (559,'1917 Kumbakonam Parkway','','Vojvodina',368,'11892','698182547686',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:11'), - (560,'1447 Imus Place','','Gujarat',426,'12905','62127829280',/*!50705 0x000000000101000000667F4523C4B25140819C8B1AA74A3640,*/'2014-09-25 22:31:25'), - (561,'1497 Fengshan Drive','','KwaZulu-Natal',112,'63022','368738360376',/*!50705 0x000000000101000000938FDD054AE43E402AF97DA42DEB3DC0,*/'2014-09-25 22:33:03'), - (562,'869 Shikarpur Way','','England',496,'57380','590764256785',/*!50705 0x000000000101000000894FF003460D08C0828472ECEAD24A40,*/'2014-09-25 22:33:40'), - (563,'1059 Yuncheng Avenue','','Vilna',570,'47498','107092893983',/*!50705 0x00000000010100000046B82462A5473940BA0ACE8536584B40,*/'2014-09-25 22:31:58'), - (564,'505 Madiun Boulevard','','Dolnoslaskie',577,'97271','970638808606',/*!50705 0x000000000101000000F0D46D9A8808314023A93B05AF914940,*/'2014-09-25 22:32:44'), - (565,'1741 Hoshiarpur Boulevard','','al-Sharqiya',79,'22372','855066328617',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), - (566,'1229 Varanasi (Benares) Manor','','Buenos Aires',43,'40195','817740355461',/*!50705 0x00000000010100000014DA28A1AA2A4DC02E156580555541C0,*/'2014-09-25 22:30:04'), - (567,'1894 Boa Vista Way','','Texas',178,'77464','239357986667',/*!50705 0x000000000101000000C1D1448EE32858C0AD8D0CCDD0744040,*/'2014-09-25 22:33:51'), - (568,'1342 Sharja Way','','Sokoto & Kebbi & Zam',488,'93655','946114054231',/*!50705 0x0000000001010000005B087250C2F41440E711ED74311F2A40,*/'2014-09-25 22:32:27'), - (569,'1342 Abha Boulevard','','Bukarest',95,'10714','997453607116',/*!50705 0x000000000101000000924FD9FA331B3A40B1CBA61254374640,*/'2014-09-25 22:32:46'), - (570,'415 Pune Avenue','','Shandong',580,'44274','203202500108',/*!50705 0x000000000101000000CC3857DE1F705D408F26CDD545F34140,*/'2014-09-25 22:30:47'), - (571,'1746 Faaa Way','','Huanuco',214,'32515','863080561151',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:33'), - (572,'539 Hami Way','','Tokat',538,'52196','525518075499',/*!50705 0x0000000001010000006F302F1BF8464240AD7B759F2D284440,*/'2014-09-25 22:33:29'), - (573,'1407 Surakarta Manor','','Moskova',466,'33224','324346485054',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:56'), - (574,'502 Mandi Bahauddin Parkway','','Anzotegui',55,'15992','618156722572',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:03'), - (575,'1052 Pathankot Avenue','','Sichuan',299,'77397','128499386727',/*!50705 0x000000000101000000AA054026E3F05940CCC12275F18F3D40,*/'2014-09-25 22:30:39'), - (576,'1351 Sousse Lane','','Coahuila de Zaragoza',341,'37815','203804046132',/*!50705 0x0000000001010000006AB86D84EA5A59C027AA12C028E83A40,*/'2014-09-25 22:32:10'), - (577,'1501 Pangkal Pinang Avenue','','Mazowieckie',409,'943','770864062795',/*!50705 0x0000000001010000001646C4DED5B43340308AD46AFE454A40,*/'2014-09-25 22:32:43'), - (578,'1405 Hagonoy Avenue','','Slaskie',133,'86587','867287719310',/*!50705 0x0000000001010000002431F77FC41F3340F5B06197F2654940,*/'2014-09-25 22:32:42'), - (579,'521 San Juan Bautista Tuxtepec Place','','Qaraghandy',598,'95093','844018348565',/*!50705 0x0000000001010000006848CB3711F15040E32A604C44E44740,*/'2014-09-25 22:31:56'), - (580,'923 Tangail Boulevard','','Tokyo-to',10,'33384','315528269898',/*!50705 0x00000000010100000078E5C468A76B6140C3A27D079ADA4140,*/'2014-09-25 22:31:45'), - (581,'186 Skikda Lane','','Morelos',131,'89422','14465669789',/*!50705 0x00000000010100000048C2BE9DC4CE58C0DA3DD4111BED3240,*/'2014-09-25 22:32:05'), - (582,'1568 Celaya Parkway','','Kaohsiung',168,'34750','278669994384',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:15'), - (583,'1489 Kakamigahara Lane','','Taipei',526,'98883','29341849811',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:16'), - (584,'1819 Alessandria Loop','','Campeche',103,'53829','377633994405',/*!50705 0x0000000001010000008636A5611DF556C0374F1A0F5BA53240,*/'2014-09-25 22:32:02'), - (585,'1208 Tama Loop','','Ninawa',344,'73605','954786054144',/*!50705 0x000000000101000000314F9DFD378F4540961EF23BF22A4240,*/'2014-09-25 22:31:40'), - (586,'951 Springs Lane','','Central Mindanao',219,'96115','165164761435',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:37'), - (587,'760 Miyakonojo Drive','','Guerrero',246,'64682','294449058179',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:08'), - (588,'966 Asuncin Way','','Hidalgo',212,'62703','995527378381',/*!50705 0x000000000101000000EBBD4230D89A58C0E30632F1FD233540,*/'2014-09-25 22:32:07'), - (589,'1584 Ljubertsy Lane','','England',494,'22954','285710089439',/*!50705 0x00000000010100000035385B8AF577F6BF8C7560EFB4734940,*/'2014-09-25 22:33:38'), - (590,'247 Jining Parkway','','Banjul',54,'53446','170115379190',/*!50705 0x0000000001010000001BE4E434FA9330C08A8F4FC8CEE72A40,*/'2014-09-25 22:31:04'), - (591,'773 Dallas Manor','','Buenos Aires',424,'12664','914466027044',/*!50705 0x00000000010100000009C3802557204DC0B75CA21FB25C41C0,*/'2014-09-25 22:30:06'), - (592,'1923 Stara Zagora Lane','','Nantou',546,'95179','182178609211',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:17'), - (593,'1402 Zanzibar Boulevard','','Guanajuato',106,'71102','387448063440',/*!50705 0x000000000101000000FCB7DCAA353459C05CA8A1B206863440,*/'2014-09-25 22:32:03'), - (594,'1464 Kursk Parkway','','Shandong',574,'17381','338758048786',/*!50705 0x0000000001010000008CA2073E86C65D40055669E6245B4240,*/'2014-09-25 22:30:44'), - (595,'1074 Sanaa Parkway','','Loja',311,'22474','154124128457',/*!50705 0x00000000010100000092DBE51112CD53C00EF96706F1F10FC0,*/'2014-09-25 22:30:55'), - (596,'1759 Niznekamsk Avenue','','al-Manama',14,'39414','864392582257',/*!50705 0x000000000101000000044D9539A74A49401224004922373A40,*/'2014-09-25 22:30:11'), - (597,'32 Liaocheng Way','','Minas Gerais',248,'1944','410877354933',/*!50705 0x000000000101000000C2757BFFD5AC45C0424F1432A1C335C0,*/'2014-09-25 22:30:19'), - (598,'42 Fontana Avenue','','Fejr',512,'14684','437829801725',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:09'), - (599,'1895 Zhezqazghan Drive','','California',177,'36693','137809746111',/*!50705 0x0000000001010000003EC7ECD1407C5DC057FA1A930FE34040,*/'2014-09-25 22:33:51'), - (600,'1837 Kaduna Parkway','','Inner Mongolia',241,'82580','640843562301',/*!50705 0x000000000101000000D61A4AEDC5465C400E64E2FB87834440,*/'2014-09-25 22:30:37'), - (601,'844 Bucuresti Place','','Liaoning',242,'36603','935952366111',/*!50705 0x000000000101000000B88086EDDD6D5E407CED9925018D4340,*/'2014-09-25 22:30:37'), - (602,'1101 Bucuresti Boulevard','','West Greece',401,'97661','199514580428',/*!50705 0x000000000101000000AAC1EA7E04BC3540E65F26E5491F4340,*/'2014-09-25 22:31:07'), - (603,'1103 Quilmes Boulevard','','Piura',503,'52137','644021380889',/*!50705 0x000000000101000000AD9685C0DB2B54C09B012EC8969D13C0,*/'2014-09-25 22:32:34'), - (604,'1331 Usak Boulevard','','Vaud',296,'61960','145308717464',/*!50705 0x000000000101000000CE273CB203881A40205734E72A424740,*/'2014-09-25 22:33:14'), - (605,'1325 Fukuyama Street','','Heilongjiang',537,'27107','288241215394',/*!50705 0x00000000010100000017540A70700160401E1C47077F7D4740,*/'2014-09-25 22:30:44'); -COMMIT; - --- --- Dumping data for table category --- - -SET AUTOCOMMIT=0; -INSERT INTO category VALUES (1,'Action','2006-02-15 04:46:27'), - (2,'Animation','2006-02-15 04:46:27'), - (3,'Children','2006-02-15 04:46:27'), - (4,'Classics','2006-02-15 04:46:27'), - (5,'Comedy','2006-02-15 04:46:27'), - (6,'Documentary','2006-02-15 04:46:27'), - (7,'Drama','2006-02-15 04:46:27'), - (8,'Family','2006-02-15 04:46:27'), - (9,'Foreign','2006-02-15 04:46:27'), - (10,'Games','2006-02-15 04:46:27'), - (11,'Horror','2006-02-15 04:46:27'), - (12,'Music','2006-02-15 04:46:27'), - (13,'New','2006-02-15 04:46:27'), - (14,'Sci-Fi','2006-02-15 04:46:27'), - (15,'Sports','2006-02-15 04:46:27'), - (16,'Travel','2006-02-15 04:46:27'); -COMMIT; - --- --- Dumping data for table city --- - -SET AUTOCOMMIT=0; -INSERT INTO city VALUES (1,'A Corua (La Corua)',87,'2006-02-15 04:45:25'), - (2,'Abha',82,'2006-02-15 04:45:25'), - (3,'Abu Dhabi',101,'2006-02-15 04:45:25'), - (4,'Acua',60,'2006-02-15 04:45:25'), - (5,'Adana',97,'2006-02-15 04:45:25'), - (6,'Addis Abeba',31,'2006-02-15 04:45:25'), - (7,'Aden',107,'2006-02-15 04:45:25'), - (8,'Adoni',44,'2006-02-15 04:45:25'), - (9,'Ahmadnagar',44,'2006-02-15 04:45:25'), - (10,'Akishima',50,'2006-02-15 04:45:25'), - (11,'Akron',103,'2006-02-15 04:45:25'), - (12,'al-Ayn',101,'2006-02-15 04:45:25'), - (13,'al-Hawiya',82,'2006-02-15 04:45:25'), - (14,'al-Manama',11,'2006-02-15 04:45:25'), - (15,'al-Qadarif',89,'2006-02-15 04:45:25'), - (16,'al-Qatif',82,'2006-02-15 04:45:25'), - (17,'Alessandria',49,'2006-02-15 04:45:25'), - (18,'Allappuzha (Alleppey)',44,'2006-02-15 04:45:25'), - (19,'Allende',60,'2006-02-15 04:45:25'), - (20,'Almirante Brown',6,'2006-02-15 04:45:25'), - (21,'Alvorada',15,'2006-02-15 04:45:25'), - (22,'Ambattur',44,'2006-02-15 04:45:25'), - (23,'Amersfoort',67,'2006-02-15 04:45:25'), - (24,'Amroha',44,'2006-02-15 04:45:25'), - (25,'Angra dos Reis',15,'2006-02-15 04:45:25'), - (26,'Anpolis',15,'2006-02-15 04:45:25'), - (27,'Antofagasta',22,'2006-02-15 04:45:25'), - (28,'Aparecida de Goinia',15,'2006-02-15 04:45:25'), - (29,'Apeldoorn',67,'2006-02-15 04:45:25'), - (30,'Araatuba',15,'2006-02-15 04:45:25'), - (31,'Arak',46,'2006-02-15 04:45:25'), - (32,'Arecibo',77,'2006-02-15 04:45:25'), - (33,'Arlington',103,'2006-02-15 04:45:25'), - (34,'Ashdod',48,'2006-02-15 04:45:25'), - (35,'Ashgabat',98,'2006-02-15 04:45:25'), - (36,'Ashqelon',48,'2006-02-15 04:45:25'), - (37,'Asuncin',73,'2006-02-15 04:45:25'), - (38,'Athenai',39,'2006-02-15 04:45:25'), - (39,'Atinsk',80,'2006-02-15 04:45:25'), - (40,'Atlixco',60,'2006-02-15 04:45:25'), - (41,'Augusta-Richmond County',103,'2006-02-15 04:45:25'), - (42,'Aurora',103,'2006-02-15 04:45:25'), - (43,'Avellaneda',6,'2006-02-15 04:45:25'), - (44,'Bag',15,'2006-02-15 04:45:25'), - (45,'Baha Blanca',6,'2006-02-15 04:45:25'), - (46,'Baicheng',23,'2006-02-15 04:45:25'), - (47,'Baiyin',23,'2006-02-15 04:45:25'), - (48,'Baku',10,'2006-02-15 04:45:25'), - (49,'Balaiha',80,'2006-02-15 04:45:25'), - (50,'Balikesir',97,'2006-02-15 04:45:25'), - (51,'Balurghat',44,'2006-02-15 04:45:25'), - (52,'Bamenda',19,'2006-02-15 04:45:25'), - (53,'Bandar Seri Begawan',16,'2006-02-15 04:45:25'), - (54,'Banjul',37,'2006-02-15 04:45:25'), - (55,'Barcelona',104,'2006-02-15 04:45:25'), - (56,'Basel',91,'2006-02-15 04:45:25'), - (57,'Bat Yam',48,'2006-02-15 04:45:25'), - (58,'Batman',97,'2006-02-15 04:45:25'), - (59,'Batna',2,'2006-02-15 04:45:25'), - (60,'Battambang',18,'2006-02-15 04:45:25'), - (61,'Baybay',75,'2006-02-15 04:45:25'), - (62,'Bayugan',75,'2006-02-15 04:45:25'), - (63,'Bchar',2,'2006-02-15 04:45:25'), - (64,'Beira',63,'2006-02-15 04:45:25'), - (65,'Bellevue',103,'2006-02-15 04:45:25'), - (66,'Belm',15,'2006-02-15 04:45:25'), - (67,'Benguela',4,'2006-02-15 04:45:25'), - (68,'Beni-Mellal',62,'2006-02-15 04:45:25'), - (69,'Benin City',69,'2006-02-15 04:45:25'), - (70,'Bergamo',49,'2006-02-15 04:45:25'), - (71,'Berhampore (Baharampur)',44,'2006-02-15 04:45:25'), - (72,'Bern',91,'2006-02-15 04:45:25'), - (73,'Bhavnagar',44,'2006-02-15 04:45:25'), - (74,'Bhilwara',44,'2006-02-15 04:45:25'), - (75,'Bhimavaram',44,'2006-02-15 04:45:25'), - (76,'Bhopal',44,'2006-02-15 04:45:25'), - (77,'Bhusawal',44,'2006-02-15 04:45:25'), - (78,'Bijapur',44,'2006-02-15 04:45:25'), - (79,'Bilbays',29,'2006-02-15 04:45:25'), - (80,'Binzhou',23,'2006-02-15 04:45:25'), - (81,'Birgunj',66,'2006-02-15 04:45:25'), - (82,'Bislig',75,'2006-02-15 04:45:25'), - (83,'Blumenau',15,'2006-02-15 04:45:25'), - (84,'Boa Vista',15,'2006-02-15 04:45:25'), - (85,'Boksburg',85,'2006-02-15 04:45:25'), - (86,'Botosani',78,'2006-02-15 04:45:25'), - (87,'Botshabelo',85,'2006-02-15 04:45:25'), - (88,'Bradford',102,'2006-02-15 04:45:25'), - (89,'Braslia',15,'2006-02-15 04:45:25'), - (90,'Bratislava',84,'2006-02-15 04:45:25'), - (91,'Brescia',49,'2006-02-15 04:45:25'), - (92,'Brest',34,'2006-02-15 04:45:25'), - (93,'Brindisi',49,'2006-02-15 04:45:25'), - (94,'Brockton',103,'2006-02-15 04:45:25'), - (95,'Bucuresti',78,'2006-02-15 04:45:25'), - (96,'Buenaventura',24,'2006-02-15 04:45:25'), - (97,'Bydgoszcz',76,'2006-02-15 04:45:25'), - (98,'Cabuyao',75,'2006-02-15 04:45:25'), - (99,'Callao',74,'2006-02-15 04:45:25'), - (100,'Cam Ranh',105,'2006-02-15 04:45:25'), - (101,'Cape Coral',103,'2006-02-15 04:45:25'), - (102,'Caracas',104,'2006-02-15 04:45:25'), - (103,'Carmen',60,'2006-02-15 04:45:25'), - (104,'Cavite',75,'2006-02-15 04:45:25'), - (105,'Cayenne',35,'2006-02-15 04:45:25'), - (106,'Celaya',60,'2006-02-15 04:45:25'), - (107,'Chandrapur',44,'2006-02-15 04:45:25'), - (108,'Changhwa',92,'2006-02-15 04:45:25'), - (109,'Changzhou',23,'2006-02-15 04:45:25'), - (110,'Chapra',44,'2006-02-15 04:45:25'), - (111,'Charlotte Amalie',106,'2006-02-15 04:45:25'), - (112,'Chatsworth',85,'2006-02-15 04:45:25'), - (113,'Cheju',86,'2006-02-15 04:45:25'), - (114,'Chiayi',92,'2006-02-15 04:45:25'), - (115,'Chisinau',61,'2006-02-15 04:45:25'), - (116,'Chungho',92,'2006-02-15 04:45:25'), - (117,'Cianjur',45,'2006-02-15 04:45:25'), - (118,'Ciomas',45,'2006-02-15 04:45:25'), - (119,'Ciparay',45,'2006-02-15 04:45:25'), - (120,'Citrus Heights',103,'2006-02-15 04:45:25'), - (121,'Citt del Vaticano',41,'2006-02-15 04:45:25'), - (122,'Ciudad del Este',73,'2006-02-15 04:45:25'), - (123,'Clarksville',103,'2006-02-15 04:45:25'), - (124,'Coacalco de Berriozbal',60,'2006-02-15 04:45:25'), - (125,'Coatzacoalcos',60,'2006-02-15 04:45:25'), - (126,'Compton',103,'2006-02-15 04:45:25'), - (127,'Coquimbo',22,'2006-02-15 04:45:25'), - (128,'Crdoba',6,'2006-02-15 04:45:25'), - (129,'Cuauhtmoc',60,'2006-02-15 04:45:25'), - (130,'Cuautla',60,'2006-02-15 04:45:25'), - (131,'Cuernavaca',60,'2006-02-15 04:45:25'), - (132,'Cuman',104,'2006-02-15 04:45:25'), - (133,'Czestochowa',76,'2006-02-15 04:45:25'), - (134,'Dadu',72,'2006-02-15 04:45:25'), - (135,'Dallas',103,'2006-02-15 04:45:25'), - (136,'Datong',23,'2006-02-15 04:45:25'), - (137,'Daugavpils',54,'2006-02-15 04:45:25'), - (138,'Davao',75,'2006-02-15 04:45:25'), - (139,'Daxian',23,'2006-02-15 04:45:25'), - (140,'Dayton',103,'2006-02-15 04:45:25'), - (141,'Deba Habe',69,'2006-02-15 04:45:25'), - (142,'Denizli',97,'2006-02-15 04:45:25'), - (143,'Dhaka',12,'2006-02-15 04:45:25'), - (144,'Dhule (Dhulia)',44,'2006-02-15 04:45:25'), - (145,'Dongying',23,'2006-02-15 04:45:25'), - (146,'Donostia-San Sebastin',87,'2006-02-15 04:45:25'), - (147,'Dos Quebradas',24,'2006-02-15 04:45:25'), - (148,'Duisburg',38,'2006-02-15 04:45:25'), - (149,'Dundee',102,'2006-02-15 04:45:25'), - (150,'Dzerzinsk',80,'2006-02-15 04:45:25'), - (151,'Ede',67,'2006-02-15 04:45:25'), - (152,'Effon-Alaiye',69,'2006-02-15 04:45:25'), - (153,'El Alto',14,'2006-02-15 04:45:25'), - (154,'El Fuerte',60,'2006-02-15 04:45:25'), - (155,'El Monte',103,'2006-02-15 04:45:25'), - (156,'Elista',80,'2006-02-15 04:45:25'), - (157,'Emeishan',23,'2006-02-15 04:45:25'), - (158,'Emmen',67,'2006-02-15 04:45:25'), - (159,'Enshi',23,'2006-02-15 04:45:25'), - (160,'Erlangen',38,'2006-02-15 04:45:25'), - (161,'Escobar',6,'2006-02-15 04:45:25'), - (162,'Esfahan',46,'2006-02-15 04:45:25'), - (163,'Eskisehir',97,'2006-02-15 04:45:25'), - (164,'Etawah',44,'2006-02-15 04:45:25'), - (165,'Ezeiza',6,'2006-02-15 04:45:25'), - (166,'Ezhou',23,'2006-02-15 04:45:25'), - (167,'Faaa',36,'2006-02-15 04:45:25'), - (168,'Fengshan',92,'2006-02-15 04:45:25'), - (169,'Firozabad',44,'2006-02-15 04:45:25'), - (170,'Florencia',24,'2006-02-15 04:45:25'), - (171,'Fontana',103,'2006-02-15 04:45:25'), - (172,'Fukuyama',50,'2006-02-15 04:45:25'), - (173,'Funafuti',99,'2006-02-15 04:45:25'), - (174,'Fuyu',23,'2006-02-15 04:45:25'), - (175,'Fuzhou',23,'2006-02-15 04:45:25'), - (176,'Gandhinagar',44,'2006-02-15 04:45:25'), - (177,'Garden Grove',103,'2006-02-15 04:45:25'), - (178,'Garland',103,'2006-02-15 04:45:25'), - (179,'Gatineau',20,'2006-02-15 04:45:25'), - (180,'Gaziantep',97,'2006-02-15 04:45:25'), - (181,'Gijn',87,'2006-02-15 04:45:25'), - (182,'Gingoog',75,'2006-02-15 04:45:25'), - (183,'Goinia',15,'2006-02-15 04:45:25'), - (184,'Gorontalo',45,'2006-02-15 04:45:25'), - (185,'Grand Prairie',103,'2006-02-15 04:45:25'), - (186,'Graz',9,'2006-02-15 04:45:25'), - (187,'Greensboro',103,'2006-02-15 04:45:25'), - (188,'Guadalajara',60,'2006-02-15 04:45:25'), - (189,'Guaruj',15,'2006-02-15 04:45:25'), - (190,'guas Lindas de Gois',15,'2006-02-15 04:45:25'), - (191,'Gulbarga',44,'2006-02-15 04:45:25'), - (192,'Hagonoy',75,'2006-02-15 04:45:25'), - (193,'Haining',23,'2006-02-15 04:45:25'), - (194,'Haiphong',105,'2006-02-15 04:45:25'), - (195,'Haldia',44,'2006-02-15 04:45:25'), - (196,'Halifax',20,'2006-02-15 04:45:25'), - (197,'Halisahar',44,'2006-02-15 04:45:25'), - (198,'Halle/Saale',38,'2006-02-15 04:45:25'), - (199,'Hami',23,'2006-02-15 04:45:25'), - (200,'Hamilton',68,'2006-02-15 04:45:25'), - (201,'Hanoi',105,'2006-02-15 04:45:25'), - (202,'Hidalgo',60,'2006-02-15 04:45:25'), - (203,'Higashiosaka',50,'2006-02-15 04:45:25'), - (204,'Hino',50,'2006-02-15 04:45:25'), - (205,'Hiroshima',50,'2006-02-15 04:45:25'), - (206,'Hodeida',107,'2006-02-15 04:45:25'), - (207,'Hohhot',23,'2006-02-15 04:45:25'), - (208,'Hoshiarpur',44,'2006-02-15 04:45:25'), - (209,'Hsichuh',92,'2006-02-15 04:45:25'), - (210,'Huaian',23,'2006-02-15 04:45:25'), - (211,'Hubli-Dharwad',44,'2006-02-15 04:45:25'), - (212,'Huejutla de Reyes',60,'2006-02-15 04:45:25'), - (213,'Huixquilucan',60,'2006-02-15 04:45:25'), - (214,'Hunuco',74,'2006-02-15 04:45:25'), - (215,'Ibirit',15,'2006-02-15 04:45:25'), - (216,'Idfu',29,'2006-02-15 04:45:25'), - (217,'Ife',69,'2006-02-15 04:45:25'), - (218,'Ikerre',69,'2006-02-15 04:45:25'), - (219,'Iligan',75,'2006-02-15 04:45:25'), - (220,'Ilorin',69,'2006-02-15 04:45:25'), - (221,'Imus',75,'2006-02-15 04:45:25'), - (222,'Inegl',97,'2006-02-15 04:45:25'), - (223,'Ipoh',59,'2006-02-15 04:45:25'), - (224,'Isesaki',50,'2006-02-15 04:45:25'), - (225,'Ivanovo',80,'2006-02-15 04:45:25'), - (226,'Iwaki',50,'2006-02-15 04:45:25'), - (227,'Iwakuni',50,'2006-02-15 04:45:25'), - (228,'Iwatsuki',50,'2006-02-15 04:45:25'), - (229,'Izumisano',50,'2006-02-15 04:45:25'), - (230,'Jaffna',88,'2006-02-15 04:45:25'), - (231,'Jaipur',44,'2006-02-15 04:45:25'), - (232,'Jakarta',45,'2006-02-15 04:45:25'), - (233,'Jalib al-Shuyukh',53,'2006-02-15 04:45:25'), - (234,'Jamalpur',12,'2006-02-15 04:45:25'), - (235,'Jaroslavl',80,'2006-02-15 04:45:25'), - (236,'Jastrzebie-Zdrj',76,'2006-02-15 04:45:25'), - (237,'Jedda',82,'2006-02-15 04:45:25'), - (238,'Jelets',80,'2006-02-15 04:45:25'), - (239,'Jhansi',44,'2006-02-15 04:45:25'), - (240,'Jinchang',23,'2006-02-15 04:45:25'), - (241,'Jining',23,'2006-02-15 04:45:25'), - (242,'Jinzhou',23,'2006-02-15 04:45:25'), - (243,'Jodhpur',44,'2006-02-15 04:45:25'), - (244,'Johannesburg',85,'2006-02-15 04:45:25'), - (245,'Joliet',103,'2006-02-15 04:45:25'), - (246,'Jos Azueta',60,'2006-02-15 04:45:25'), - (247,'Juazeiro do Norte',15,'2006-02-15 04:45:25'), - (248,'Juiz de Fora',15,'2006-02-15 04:45:25'), - (249,'Junan',23,'2006-02-15 04:45:25'), - (250,'Jurez',60,'2006-02-15 04:45:25'), - (251,'Kabul',1,'2006-02-15 04:45:25'), - (252,'Kaduna',69,'2006-02-15 04:45:25'), - (253,'Kakamigahara',50,'2006-02-15 04:45:25'), - (254,'Kaliningrad',80,'2006-02-15 04:45:25'), - (255,'Kalisz',76,'2006-02-15 04:45:25'), - (256,'Kamakura',50,'2006-02-15 04:45:25'), - (257,'Kamarhati',44,'2006-02-15 04:45:25'), - (258,'Kamjanets-Podilskyi',100,'2006-02-15 04:45:25'), - (259,'Kamyin',80,'2006-02-15 04:45:25'), - (260,'Kanazawa',50,'2006-02-15 04:45:25'), - (261,'Kanchrapara',44,'2006-02-15 04:45:25'), - (262,'Kansas City',103,'2006-02-15 04:45:25'), - (263,'Karnal',44,'2006-02-15 04:45:25'), - (264,'Katihar',44,'2006-02-15 04:45:25'), - (265,'Kermanshah',46,'2006-02-15 04:45:25'), - (266,'Kilis',97,'2006-02-15 04:45:25'), - (267,'Kimberley',85,'2006-02-15 04:45:25'), - (268,'Kimchon',86,'2006-02-15 04:45:25'), - (269,'Kingstown',81,'2006-02-15 04:45:25'), - (270,'Kirovo-Tepetsk',80,'2006-02-15 04:45:25'), - (271,'Kisumu',52,'2006-02-15 04:45:25'), - (272,'Kitwe',109,'2006-02-15 04:45:25'), - (273,'Klerksdorp',85,'2006-02-15 04:45:25'), - (274,'Kolpino',80,'2006-02-15 04:45:25'), - (275,'Konotop',100,'2006-02-15 04:45:25'), - (276,'Koriyama',50,'2006-02-15 04:45:25'), - (277,'Korla',23,'2006-02-15 04:45:25'), - (278,'Korolev',80,'2006-02-15 04:45:25'), - (279,'Kowloon and New Kowloon',42,'2006-02-15 04:45:25'), - (280,'Kragujevac',108,'2006-02-15 04:45:25'), - (281,'Ktahya',97,'2006-02-15 04:45:25'), - (282,'Kuching',59,'2006-02-15 04:45:25'), - (283,'Kumbakonam',44,'2006-02-15 04:45:25'), - (284,'Kurashiki',50,'2006-02-15 04:45:25'), - (285,'Kurgan',80,'2006-02-15 04:45:25'), - (286,'Kursk',80,'2006-02-15 04:45:25'), - (287,'Kuwana',50,'2006-02-15 04:45:25'), - (288,'La Paz',60,'2006-02-15 04:45:25'), - (289,'La Plata',6,'2006-02-15 04:45:25'), - (290,'La Romana',27,'2006-02-15 04:45:25'), - (291,'Laiwu',23,'2006-02-15 04:45:25'), - (292,'Lancaster',103,'2006-02-15 04:45:25'), - (293,'Laohekou',23,'2006-02-15 04:45:25'), - (294,'Lapu-Lapu',75,'2006-02-15 04:45:25'), - (295,'Laredo',103,'2006-02-15 04:45:25'), - (296,'Lausanne',91,'2006-02-15 04:45:25'), - (297,'Le Mans',34,'2006-02-15 04:45:25'), - (298,'Lengshuijiang',23,'2006-02-15 04:45:25'), - (299,'Leshan',23,'2006-02-15 04:45:25'), - (300,'Lethbridge',20,'2006-02-15 04:45:25'), - (301,'Lhokseumawe',45,'2006-02-15 04:45:25'), - (302,'Liaocheng',23,'2006-02-15 04:45:25'), - (303,'Liepaja',54,'2006-02-15 04:45:25'), - (304,'Lilongwe',58,'2006-02-15 04:45:25'), - (305,'Lima',74,'2006-02-15 04:45:25'), - (306,'Lincoln',103,'2006-02-15 04:45:25'), - (307,'Linz',9,'2006-02-15 04:45:25'), - (308,'Lipetsk',80,'2006-02-15 04:45:25'), - (309,'Livorno',49,'2006-02-15 04:45:25'), - (310,'Ljubertsy',80,'2006-02-15 04:45:25'), - (311,'Loja',28,'2006-02-15 04:45:25'), - (312,'London',102,'2006-02-15 04:45:25'), - (313,'London',20,'2006-02-15 04:45:25'), - (314,'Lublin',76,'2006-02-15 04:45:25'), - (315,'Lubumbashi',25,'2006-02-15 04:45:25'), - (316,'Lungtan',92,'2006-02-15 04:45:25'), - (317,'Luzinia',15,'2006-02-15 04:45:25'), - (318,'Madiun',45,'2006-02-15 04:45:25'), - (319,'Mahajanga',57,'2006-02-15 04:45:25'), - (320,'Maikop',80,'2006-02-15 04:45:25'), - (321,'Malm',90,'2006-02-15 04:45:25'), - (322,'Manchester',103,'2006-02-15 04:45:25'), - (323,'Mandaluyong',75,'2006-02-15 04:45:25'), - (324,'Mandi Bahauddin',72,'2006-02-15 04:45:25'), - (325,'Mannheim',38,'2006-02-15 04:45:25'), - (326,'Maracabo',104,'2006-02-15 04:45:25'), - (327,'Mardan',72,'2006-02-15 04:45:25'), - (328,'Maring',15,'2006-02-15 04:45:25'), - (329,'Masqat',71,'2006-02-15 04:45:25'), - (330,'Matamoros',60,'2006-02-15 04:45:25'), - (331,'Matsue',50,'2006-02-15 04:45:25'), - (332,'Meixian',23,'2006-02-15 04:45:25'), - (333,'Memphis',103,'2006-02-15 04:45:25'), - (334,'Merlo',6,'2006-02-15 04:45:25'), - (335,'Mexicali',60,'2006-02-15 04:45:25'), - (336,'Miraj',44,'2006-02-15 04:45:25'), - (337,'Mit Ghamr',29,'2006-02-15 04:45:25'), - (338,'Miyakonojo',50,'2006-02-15 04:45:25'), - (339,'Mogiljov',13,'2006-02-15 04:45:25'), - (340,'Molodetno',13,'2006-02-15 04:45:25'), - (341,'Monclova',60,'2006-02-15 04:45:25'), - (342,'Monywa',64,'2006-02-15 04:45:25'), - (343,'Moscow',80,'2006-02-15 04:45:25'), - (344,'Mosul',47,'2006-02-15 04:45:25'), - (345,'Mukateve',100,'2006-02-15 04:45:25'), - (346,'Munger (Monghyr)',44,'2006-02-15 04:45:25'), - (347,'Mwanza',93,'2006-02-15 04:45:25'), - (348,'Mwene-Ditu',25,'2006-02-15 04:45:25'), - (349,'Myingyan',64,'2006-02-15 04:45:25'), - (350,'Mysore',44,'2006-02-15 04:45:25'), - (351,'Naala-Porto',63,'2006-02-15 04:45:25'), - (352,'Nabereznyje Telny',80,'2006-02-15 04:45:25'), - (353,'Nador',62,'2006-02-15 04:45:25'), - (354,'Nagaon',44,'2006-02-15 04:45:25'), - (355,'Nagareyama',50,'2006-02-15 04:45:25'), - (356,'Najafabad',46,'2006-02-15 04:45:25'), - (357,'Naju',86,'2006-02-15 04:45:25'), - (358,'Nakhon Sawan',94,'2006-02-15 04:45:25'), - (359,'Nam Dinh',105,'2006-02-15 04:45:25'), - (360,'Namibe',4,'2006-02-15 04:45:25'), - (361,'Nantou',92,'2006-02-15 04:45:25'), - (362,'Nanyang',23,'2006-02-15 04:45:25'), - (363,'NDjamna',21,'2006-02-15 04:45:25'), - (364,'Newcastle',85,'2006-02-15 04:45:25'), - (365,'Nezahualcyotl',60,'2006-02-15 04:45:25'), - (366,'Nha Trang',105,'2006-02-15 04:45:25'), - (367,'Niznekamsk',80,'2006-02-15 04:45:25'), - (368,'Novi Sad',108,'2006-02-15 04:45:25'), - (369,'Novoterkassk',80,'2006-02-15 04:45:25'), - (370,'Nukualofa',95,'2006-02-15 04:45:25'), - (371,'Nuuk',40,'2006-02-15 04:45:25'), - (372,'Nyeri',52,'2006-02-15 04:45:25'), - (373,'Ocumare del Tuy',104,'2006-02-15 04:45:25'), - (374,'Ogbomosho',69,'2006-02-15 04:45:25'), - (375,'Okara',72,'2006-02-15 04:45:25'), - (376,'Okayama',50,'2006-02-15 04:45:25'), - (377,'Okinawa',50,'2006-02-15 04:45:25'), - (378,'Olomouc',26,'2006-02-15 04:45:25'), - (379,'Omdurman',89,'2006-02-15 04:45:25'), - (380,'Omiya',50,'2006-02-15 04:45:25'), - (381,'Ondo',69,'2006-02-15 04:45:25'), - (382,'Onomichi',50,'2006-02-15 04:45:25'), - (383,'Oshawa',20,'2006-02-15 04:45:25'), - (384,'Osmaniye',97,'2006-02-15 04:45:25'), - (385,'ostka',100,'2006-02-15 04:45:25'), - (386,'Otsu',50,'2006-02-15 04:45:25'), - (387,'Oulu',33,'2006-02-15 04:45:25'), - (388,'Ourense (Orense)',87,'2006-02-15 04:45:25'), - (389,'Owo',69,'2006-02-15 04:45:25'), - (390,'Oyo',69,'2006-02-15 04:45:25'), - (391,'Ozamis',75,'2006-02-15 04:45:25'), - (392,'Paarl',85,'2006-02-15 04:45:25'), - (393,'Pachuca de Soto',60,'2006-02-15 04:45:25'), - (394,'Pak Kret',94,'2006-02-15 04:45:25'), - (395,'Palghat (Palakkad)',44,'2006-02-15 04:45:25'), - (396,'Pangkal Pinang',45,'2006-02-15 04:45:25'), - (397,'Papeete',36,'2006-02-15 04:45:25'), - (398,'Parbhani',44,'2006-02-15 04:45:25'), - (399,'Pathankot',44,'2006-02-15 04:45:25'), - (400,'Patiala',44,'2006-02-15 04:45:25'), - (401,'Patras',39,'2006-02-15 04:45:25'), - (402,'Pavlodar',51,'2006-02-15 04:45:25'), - (403,'Pemalang',45,'2006-02-15 04:45:25'), - (404,'Peoria',103,'2006-02-15 04:45:25'), - (405,'Pereira',24,'2006-02-15 04:45:25'), - (406,'Phnom Penh',18,'2006-02-15 04:45:25'), - (407,'Pingxiang',23,'2006-02-15 04:45:25'), - (408,'Pjatigorsk',80,'2006-02-15 04:45:25'), - (409,'Plock',76,'2006-02-15 04:45:25'), - (410,'Po',15,'2006-02-15 04:45:25'), - (411,'Ponce',77,'2006-02-15 04:45:25'), - (412,'Pontianak',45,'2006-02-15 04:45:25'), - (413,'Poos de Caldas',15,'2006-02-15 04:45:25'), - (414,'Portoviejo',28,'2006-02-15 04:45:25'), - (415,'Probolinggo',45,'2006-02-15 04:45:25'), - (416,'Pudukkottai',44,'2006-02-15 04:45:25'), - (417,'Pune',44,'2006-02-15 04:45:25'), - (418,'Purnea (Purnia)',44,'2006-02-15 04:45:25'), - (419,'Purwakarta',45,'2006-02-15 04:45:25'), - (420,'Pyongyang',70,'2006-02-15 04:45:25'), - (421,'Qalyub',29,'2006-02-15 04:45:25'), - (422,'Qinhuangdao',23,'2006-02-15 04:45:25'), - (423,'Qomsheh',46,'2006-02-15 04:45:25'), - (424,'Quilmes',6,'2006-02-15 04:45:25'), - (425,'Rae Bareli',44,'2006-02-15 04:45:25'), - (426,'Rajkot',44,'2006-02-15 04:45:25'), - (427,'Rampur',44,'2006-02-15 04:45:25'), - (428,'Rancagua',22,'2006-02-15 04:45:25'), - (429,'Ranchi',44,'2006-02-15 04:45:25'), - (430,'Richmond Hill',20,'2006-02-15 04:45:25'), - (431,'Rio Claro',15,'2006-02-15 04:45:25'), - (432,'Rizhao',23,'2006-02-15 04:45:25'), - (433,'Roanoke',103,'2006-02-15 04:45:25'), - (434,'Robamba',28,'2006-02-15 04:45:25'), - (435,'Rockford',103,'2006-02-15 04:45:25'), - (436,'Ruse',17,'2006-02-15 04:45:25'), - (437,'Rustenburg',85,'2006-02-15 04:45:25'), - (438,'s-Hertogenbosch',67,'2006-02-15 04:45:25'), - (439,'Saarbrcken',38,'2006-02-15 04:45:25'), - (440,'Sagamihara',50,'2006-02-15 04:45:25'), - (441,'Saint Louis',103,'2006-02-15 04:45:25'), - (442,'Saint-Denis',79,'2006-02-15 04:45:25'), - (443,'Sal',62,'2006-02-15 04:45:25'), - (444,'Salala',71,'2006-02-15 04:45:25'), - (445,'Salamanca',60,'2006-02-15 04:45:25'), - (446,'Salinas',103,'2006-02-15 04:45:25'), - (447,'Salzburg',9,'2006-02-15 04:45:25'), - (448,'Sambhal',44,'2006-02-15 04:45:25'), - (449,'San Bernardino',103,'2006-02-15 04:45:25'), - (450,'San Felipe de Puerto Plata',27,'2006-02-15 04:45:25'), - (451,'San Felipe del Progreso',60,'2006-02-15 04:45:25'), - (452,'San Juan Bautista Tuxtepec',60,'2006-02-15 04:45:25'), - (453,'San Lorenzo',73,'2006-02-15 04:45:25'), - (454,'San Miguel de Tucumn',6,'2006-02-15 04:45:25'), - (455,'Sanaa',107,'2006-02-15 04:45:25'), - (456,'Santa Brbara dOeste',15,'2006-02-15 04:45:25'), - (457,'Santa F',6,'2006-02-15 04:45:25'), - (458,'Santa Rosa',75,'2006-02-15 04:45:25'), - (459,'Santiago de Compostela',87,'2006-02-15 04:45:25'), - (460,'Santiago de los Caballeros',27,'2006-02-15 04:45:25'), - (461,'Santo Andr',15,'2006-02-15 04:45:25'), - (462,'Sanya',23,'2006-02-15 04:45:25'), - (463,'Sasebo',50,'2006-02-15 04:45:25'), - (464,'Satna',44,'2006-02-15 04:45:25'), - (465,'Sawhaj',29,'2006-02-15 04:45:25'), - (466,'Serpuhov',80,'2006-02-15 04:45:25'), - (467,'Shahr-e Kord',46,'2006-02-15 04:45:25'), - (468,'Shanwei',23,'2006-02-15 04:45:25'), - (469,'Shaoguan',23,'2006-02-15 04:45:25'), - (470,'Sharja',101,'2006-02-15 04:45:25'), - (471,'Shenzhen',23,'2006-02-15 04:45:25'), - (472,'Shikarpur',72,'2006-02-15 04:45:25'), - (473,'Shimoga',44,'2006-02-15 04:45:25'), - (474,'Shimonoseki',50,'2006-02-15 04:45:25'), - (475,'Shivapuri',44,'2006-02-15 04:45:25'), - (476,'Shubra al-Khayma',29,'2006-02-15 04:45:25'), - (477,'Siegen',38,'2006-02-15 04:45:25'), - (478,'Siliguri (Shiliguri)',44,'2006-02-15 04:45:25'), - (479,'Simferopol',100,'2006-02-15 04:45:25'), - (480,'Sincelejo',24,'2006-02-15 04:45:25'), - (481,'Sirjan',46,'2006-02-15 04:45:25'), - (482,'Sivas',97,'2006-02-15 04:45:25'), - (483,'Skikda',2,'2006-02-15 04:45:25'), - (484,'Smolensk',80,'2006-02-15 04:45:25'), - (485,'So Bernardo do Campo',15,'2006-02-15 04:45:25'), - (486,'So Leopoldo',15,'2006-02-15 04:45:25'), - (487,'Sogamoso',24,'2006-02-15 04:45:25'), - (488,'Sokoto',69,'2006-02-15 04:45:25'), - (489,'Songkhla',94,'2006-02-15 04:45:25'), - (490,'Sorocaba',15,'2006-02-15 04:45:25'), - (491,'Soshanguve',85,'2006-02-15 04:45:25'), - (492,'Sousse',96,'2006-02-15 04:45:25'), - (493,'South Hill',5,'2006-02-15 04:45:25'), - (494,'Southampton',102,'2006-02-15 04:45:25'), - (495,'Southend-on-Sea',102,'2006-02-15 04:45:25'), - (496,'Southport',102,'2006-02-15 04:45:25'), - (497,'Springs',85,'2006-02-15 04:45:25'), - (498,'Stara Zagora',17,'2006-02-15 04:45:25'), - (499,'Sterling Heights',103,'2006-02-15 04:45:25'), - (500,'Stockport',102,'2006-02-15 04:45:25'), - (501,'Sucre',14,'2006-02-15 04:45:25'), - (502,'Suihua',23,'2006-02-15 04:45:25'), - (503,'Sullana',74,'2006-02-15 04:45:25'), - (504,'Sultanbeyli',97,'2006-02-15 04:45:25'), - (505,'Sumqayit',10,'2006-02-15 04:45:25'), - (506,'Sumy',100,'2006-02-15 04:45:25'), - (507,'Sungai Petani',59,'2006-02-15 04:45:25'), - (508,'Sunnyvale',103,'2006-02-15 04:45:25'), - (509,'Surakarta',45,'2006-02-15 04:45:25'), - (510,'Syktyvkar',80,'2006-02-15 04:45:25'), - (511,'Syrakusa',49,'2006-02-15 04:45:25'), - (512,'Szkesfehrvr',43,'2006-02-15 04:45:25'), - (513,'Tabora',93,'2006-02-15 04:45:25'), - (514,'Tabriz',46,'2006-02-15 04:45:25'), - (515,'Tabuk',82,'2006-02-15 04:45:25'), - (516,'Tafuna',3,'2006-02-15 04:45:25'), - (517,'Taguig',75,'2006-02-15 04:45:25'), - (518,'Taizz',107,'2006-02-15 04:45:25'), - (519,'Talavera',75,'2006-02-15 04:45:25'), - (520,'Tallahassee',103,'2006-02-15 04:45:25'), - (521,'Tama',50,'2006-02-15 04:45:25'), - (522,'Tambaram',44,'2006-02-15 04:45:25'), - (523,'Tanauan',75,'2006-02-15 04:45:25'), - (524,'Tandil',6,'2006-02-15 04:45:25'), - (525,'Tangail',12,'2006-02-15 04:45:25'), - (526,'Tanshui',92,'2006-02-15 04:45:25'), - (527,'Tanza',75,'2006-02-15 04:45:25'), - (528,'Tarlac',75,'2006-02-15 04:45:25'), - (529,'Tarsus',97,'2006-02-15 04:45:25'), - (530,'Tartu',30,'2006-02-15 04:45:25'), - (531,'Teboksary',80,'2006-02-15 04:45:25'), - (532,'Tegal',45,'2006-02-15 04:45:25'), - (533,'Tel Aviv-Jaffa',48,'2006-02-15 04:45:25'), - (534,'Tete',63,'2006-02-15 04:45:25'), - (535,'Tianjin',23,'2006-02-15 04:45:25'), - (536,'Tiefa',23,'2006-02-15 04:45:25'), - (537,'Tieli',23,'2006-02-15 04:45:25'), - (538,'Tokat',97,'2006-02-15 04:45:25'), - (539,'Tonghae',86,'2006-02-15 04:45:25'), - (540,'Tongliao',23,'2006-02-15 04:45:25'), - (541,'Torren',60,'2006-02-15 04:45:25'), - (542,'Touliu',92,'2006-02-15 04:45:25'), - (543,'Toulon',34,'2006-02-15 04:45:25'), - (544,'Toulouse',34,'2006-02-15 04:45:25'), - (545,'Trshavn',32,'2006-02-15 04:45:25'), - (546,'Tsaotun',92,'2006-02-15 04:45:25'), - (547,'Tsuyama',50,'2006-02-15 04:45:25'), - (548,'Tuguegarao',75,'2006-02-15 04:45:25'), - (549,'Tychy',76,'2006-02-15 04:45:25'), - (550,'Udaipur',44,'2006-02-15 04:45:25'), - (551,'Udine',49,'2006-02-15 04:45:25'), - (552,'Ueda',50,'2006-02-15 04:45:25'), - (553,'Uijongbu',86,'2006-02-15 04:45:25'), - (554,'Uluberia',44,'2006-02-15 04:45:25'), - (555,'Urawa',50,'2006-02-15 04:45:25'), - (556,'Uruapan',60,'2006-02-15 04:45:25'), - (557,'Usak',97,'2006-02-15 04:45:25'), - (558,'Usolje-Sibirskoje',80,'2006-02-15 04:45:25'), - (559,'Uttarpara-Kotrung',44,'2006-02-15 04:45:25'), - (560,'Vaduz',55,'2006-02-15 04:45:25'), - (561,'Valencia',104,'2006-02-15 04:45:25'), - (562,'Valle de la Pascua',104,'2006-02-15 04:45:25'), - (563,'Valle de Santiago',60,'2006-02-15 04:45:25'), - (564,'Valparai',44,'2006-02-15 04:45:25'), - (565,'Vancouver',20,'2006-02-15 04:45:25'), - (566,'Varanasi (Benares)',44,'2006-02-15 04:45:25'), - (567,'Vicente Lpez',6,'2006-02-15 04:45:25'), - (568,'Vijayawada',44,'2006-02-15 04:45:25'), - (569,'Vila Velha',15,'2006-02-15 04:45:25'), - (570,'Vilnius',56,'2006-02-15 04:45:25'), - (571,'Vinh',105,'2006-02-15 04:45:25'), - (572,'Vitria de Santo Anto',15,'2006-02-15 04:45:25'), - (573,'Warren',103,'2006-02-15 04:45:25'), - (574,'Weifang',23,'2006-02-15 04:45:25'), - (575,'Witten',38,'2006-02-15 04:45:25'), - (576,'Woodridge',8,'2006-02-15 04:45:25'), - (577,'Wroclaw',76,'2006-02-15 04:45:25'), - (578,'Xiangfan',23,'2006-02-15 04:45:25'), - (579,'Xiangtan',23,'2006-02-15 04:45:25'), - (580,'Xintai',23,'2006-02-15 04:45:25'), - (581,'Xinxiang',23,'2006-02-15 04:45:25'), - (582,'Yamuna Nagar',44,'2006-02-15 04:45:25'), - (583,'Yangor',65,'2006-02-15 04:45:25'), - (584,'Yantai',23,'2006-02-15 04:45:25'), - (585,'Yaound',19,'2006-02-15 04:45:25'), - (586,'Yerevan',7,'2006-02-15 04:45:25'), - (587,'Yinchuan',23,'2006-02-15 04:45:25'), - (588,'Yingkou',23,'2006-02-15 04:45:25'), - (589,'York',102,'2006-02-15 04:45:25'), - (590,'Yuncheng',23,'2006-02-15 04:45:25'), - (591,'Yuzhou',23,'2006-02-15 04:45:25'), - (592,'Zalantun',23,'2006-02-15 04:45:25'), - (593,'Zanzibar',93,'2006-02-15 04:45:25'), - (594,'Zaoyang',23,'2006-02-15 04:45:25'), - (595,'Zapopan',60,'2006-02-15 04:45:25'), - (596,'Zaria',69,'2006-02-15 04:45:25'), - (597,'Zeleznogorsk',80,'2006-02-15 04:45:25'), - (598,'Zhezqazghan',51,'2006-02-15 04:45:25'), - (599,'Zhoushan',23,'2006-02-15 04:45:25'), - (600,'Ziguinchor',83,'2006-02-15 04:45:25'); -COMMIT; - --- --- Dumping data for table country --- - -SET AUTOCOMMIT=0; -INSERT INTO country VALUES (1,'Afghanistan','2006-02-15 04:44:00'), - (2,'Algeria','2006-02-15 04:44:00'), - (3,'American Samoa','2006-02-15 04:44:00'), - (4,'Angola','2006-02-15 04:44:00'), - (5,'Anguilla','2006-02-15 04:44:00'), - (6,'Argentina','2006-02-15 04:44:00'), - (7,'Armenia','2006-02-15 04:44:00'), - (8,'Australia','2006-02-15 04:44:00'), - (9,'Austria','2006-02-15 04:44:00'), - (10,'Azerbaijan','2006-02-15 04:44:00'), - (11,'Bahrain','2006-02-15 04:44:00'), - (12,'Bangladesh','2006-02-15 04:44:00'), - (13,'Belarus','2006-02-15 04:44:00'), - (14,'Bolivia','2006-02-15 04:44:00'), - (15,'Brazil','2006-02-15 04:44:00'), - (16,'Brunei','2006-02-15 04:44:00'), - (17,'Bulgaria','2006-02-15 04:44:00'), - (18,'Cambodia','2006-02-15 04:44:00'), - (19,'Cameroon','2006-02-15 04:44:00'), - (20,'Canada','2006-02-15 04:44:00'), - (21,'Chad','2006-02-15 04:44:00'), - (22,'Chile','2006-02-15 04:44:00'), - (23,'China','2006-02-15 04:44:00'), - (24,'Colombia','2006-02-15 04:44:00'), - (25,'Congo, The Democratic Republic of the','2006-02-15 04:44:00'), - (26,'Czech Republic','2006-02-15 04:44:00'), - (27,'Dominican Republic','2006-02-15 04:44:00'), - (28,'Ecuador','2006-02-15 04:44:00'), - (29,'Egypt','2006-02-15 04:44:00'), - (30,'Estonia','2006-02-15 04:44:00'), - (31,'Ethiopia','2006-02-15 04:44:00'), - (32,'Faroe Islands','2006-02-15 04:44:00'), - (33,'Finland','2006-02-15 04:44:00'), - (34,'France','2006-02-15 04:44:00'), - (35,'French Guiana','2006-02-15 04:44:00'), - (36,'French Polynesia','2006-02-15 04:44:00'), - (37,'Gambia','2006-02-15 04:44:00'), - (38,'Germany','2006-02-15 04:44:00'), - (39,'Greece','2006-02-15 04:44:00'), - (40,'Greenland','2006-02-15 04:44:00'), - (41,'Holy See (Vatican City State)','2006-02-15 04:44:00'), - (42,'Hong Kong','2006-02-15 04:44:00'), - (43,'Hungary','2006-02-15 04:44:00'), - (44,'India','2006-02-15 04:44:00'), - (45,'Indonesia','2006-02-15 04:44:00'), - (46,'Iran','2006-02-15 04:44:00'), - (47,'Iraq','2006-02-15 04:44:00'), - (48,'Israel','2006-02-15 04:44:00'), - (49,'Italy','2006-02-15 04:44:00'), - (50,'Japan','2006-02-15 04:44:00'), - (51,'Kazakstan','2006-02-15 04:44:00'), - (52,'Kenya','2006-02-15 04:44:00'), - (53,'Kuwait','2006-02-15 04:44:00'), - (54,'Latvia','2006-02-15 04:44:00'), - (55,'Liechtenstein','2006-02-15 04:44:00'), - (56,'Lithuania','2006-02-15 04:44:00'), - (57,'Madagascar','2006-02-15 04:44:00'), - (58,'Malawi','2006-02-15 04:44:00'), - (59,'Malaysia','2006-02-15 04:44:00'), - (60,'Mexico','2006-02-15 04:44:00'), - (61,'Moldova','2006-02-15 04:44:00'), - (62,'Morocco','2006-02-15 04:44:00'), - (63,'Mozambique','2006-02-15 04:44:00'), - (64,'Myanmar','2006-02-15 04:44:00'), - (65,'Nauru','2006-02-15 04:44:00'), - (66,'Nepal','2006-02-15 04:44:00'), - (67,'Netherlands','2006-02-15 04:44:00'), - (68,'New Zealand','2006-02-15 04:44:00'), - (69,'Nigeria','2006-02-15 04:44:00'), - (70,'North Korea','2006-02-15 04:44:00'), - (71,'Oman','2006-02-15 04:44:00'), - (72,'Pakistan','2006-02-15 04:44:00'), - (73,'Paraguay','2006-02-15 04:44:00'), - (74,'Peru','2006-02-15 04:44:00'), - (75,'Philippines','2006-02-15 04:44:00'), - (76,'Poland','2006-02-15 04:44:00'), - (77,'Puerto Rico','2006-02-15 04:44:00'), - (78,'Romania','2006-02-15 04:44:00'), - (79,'Runion','2006-02-15 04:44:00'), - (80,'Russian Federation','2006-02-15 04:44:00'), - (81,'Saint Vincent and the Grenadines','2006-02-15 04:44:00'), - (82,'Saudi Arabia','2006-02-15 04:44:00'), - (83,'Senegal','2006-02-15 04:44:00'), - (84,'Slovakia','2006-02-15 04:44:00'), - (85,'South Africa','2006-02-15 04:44:00'), - (86,'South Korea','2006-02-15 04:44:00'), - (87,'Spain','2006-02-15 04:44:00'), - (88,'Sri Lanka','2006-02-15 04:44:00'), - (89,'Sudan','2006-02-15 04:44:00'), - (90,'Sweden','2006-02-15 04:44:00'), - (91,'Switzerland','2006-02-15 04:44:00'), - (92,'Taiwan','2006-02-15 04:44:00'), - (93,'Tanzania','2006-02-15 04:44:00'), - (94,'Thailand','2006-02-15 04:44:00'), - (95,'Tonga','2006-02-15 04:44:00'), - (96,'Tunisia','2006-02-15 04:44:00'), - (97,'Turkey','2006-02-15 04:44:00'), - (98,'Turkmenistan','2006-02-15 04:44:00'), - (99,'Tuvalu','2006-02-15 04:44:00'), - (100,'Ukraine','2006-02-15 04:44:00'), - (101,'United Arab Emirates','2006-02-15 04:44:00'), - (102,'United Kingdom','2006-02-15 04:44:00'), - (103,'United States','2006-02-15 04:44:00'), - (104,'Venezuela','2006-02-15 04:44:00'), - (105,'Vietnam','2006-02-15 04:44:00'), - (106,'Virgin Islands, U.S.','2006-02-15 04:44:00'), - (107,'Yemen','2006-02-15 04:44:00'), - (108,'Yugoslavia','2006-02-15 04:44:00'), - (109,'Zambia','2006-02-15 04:44:00'); -COMMIT; - --- --- Dumping data for table customer --- - -SET AUTOCOMMIT=0; -INSERT INTO customer VALUES (1,1,'MARY','SMITH','MARY.SMITH@dvdscustomer.org',5,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (2,1,'PATRICIA','JOHNSON','PATRICIA.JOHNSON@dvdscustomer.org',6,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (3,1,'LINDA','WILLIAMS','LINDA.WILLIAMS@dvdscustomer.org',7,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (4,2,'BARBARA','JONES','BARBARA.JONES@dvdscustomer.org',8,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (5,1,'ELIZABETH','BROWN','ELIZABETH.BROWN@dvdscustomer.org',9,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (6,2,'JENNIFER','DAVIS','JENNIFER.DAVIS@dvdscustomer.org',10,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (7,1,'MARIA','MILLER','MARIA.MILLER@dvdscustomer.org',11,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (8,2,'SUSAN','WILSON','SUSAN.WILSON@dvdscustomer.org',12,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (9,2,'MARGARET','MOORE','MARGARET.MOORE@dvdscustomer.org',13,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (10,1,'DOROTHY','TAYLOR','DOROTHY.TAYLOR@dvdscustomer.org',14,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (11,2,'LISA','ANDERSON','LISA.ANDERSON@dvdscustomer.org',15,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (12,1,'NANCY','THOMAS','NANCY.THOMAS@dvdscustomer.org',16,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (13,2,'KAREN','JACKSON','KAREN.JACKSON@dvdscustomer.org',17,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (14,2,'BETTY','WHITE','BETTY.WHITE@dvdscustomer.org',18,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (15,1,'HELEN','HARRIS','HELEN.HARRIS@dvdscustomer.org',19,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (16,2,'SANDRA','MARTIN','SANDRA.MARTIN@dvdscustomer.org',20,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (17,1,'DONNA','THOMPSON','DONNA.THOMPSON@dvdscustomer.org',21,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (18,2,'CAROL','GARCIA','CAROL.GARCIA@dvdscustomer.org',22,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (19,1,'RUTH','MARTINEZ','RUTH.MARTINEZ@dvdscustomer.org',23,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (20,2,'SHARON','ROBINSON','SHARON.ROBINSON@dvdscustomer.org',24,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (21,1,'MICHELLE','CLARK','MICHELLE.CLARK@dvdscustomer.org',25,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (22,1,'LAURA','RODRIGUEZ','LAURA.RODRIGUEZ@dvdscustomer.org',26,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (23,2,'SARAH','LEWIS','SARAH.LEWIS@dvdscustomer.org',27,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (24,2,'KIMBERLY','LEE','KIMBERLY.LEE@dvdscustomer.org',28,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (25,1,'DEBORAH','WALKER','DEBORAH.WALKER@dvdscustomer.org',29,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (26,2,'JESSICA','HALL','JESSICA.HALL@dvdscustomer.org',30,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (27,2,'SHIRLEY','ALLEN','SHIRLEY.ALLEN@dvdscustomer.org',31,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (28,1,'CYNTHIA','YOUNG','CYNTHIA.YOUNG@dvdscustomer.org',32,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (29,2,'ANGELA','HERNANDEZ','ANGELA.HERNANDEZ@dvdscustomer.org',33,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (30,1,'MELISSA','KING','MELISSA.KING@dvdscustomer.org',34,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (31,2,'BRENDA','WRIGHT','BRENDA.WRIGHT@dvdscustomer.org',35,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (32,1,'AMY','LOPEZ','AMY.LOPEZ@dvdscustomer.org',36,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (33,2,'ANNA','HILL','ANNA.HILL@dvdscustomer.org',37,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (34,2,'REBECCA','SCOTT','REBECCA.SCOTT@dvdscustomer.org',38,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (35,2,'VIRGINIA','GREEN','VIRGINIA.GREEN@dvdscustomer.org',39,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (36,2,'KATHLEEN','ADAMS','KATHLEEN.ADAMS@dvdscustomer.org',40,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (37,1,'PAMELA','BAKER','PAMELA.BAKER@dvdscustomer.org',41,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (38,1,'MARTHA','GONZALEZ','MARTHA.GONZALEZ@dvdscustomer.org',42,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (39,1,'DEBRA','NELSON','DEBRA.NELSON@dvdscustomer.org',43,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (40,2,'AMANDA','CARTER','AMANDA.CARTER@dvdscustomer.org',44,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (41,1,'STEPHANIE','MITCHELL','STEPHANIE.MITCHELL@dvdscustomer.org',45,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (42,2,'CAROLYN','PEREZ','CAROLYN.PEREZ@dvdscustomer.org',46,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (43,2,'CHRISTINE','ROBERTS','CHRISTINE.ROBERTS@dvdscustomer.org',47,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (44,1,'MARIE','TURNER','MARIE.TURNER@dvdscustomer.org',48,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (45,1,'JANET','PHILLIPS','JANET.PHILLIPS@dvdscustomer.org',49,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (46,2,'CATHERINE','CAMPBELL','CATHERINE.CAMPBELL@dvdscustomer.org',50,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (47,1,'FRANCES','PARKER','FRANCES.PARKER@dvdscustomer.org',51,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (48,1,'ANN','EVANS','ANN.EVANS@dvdscustomer.org',52,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (49,2,'JOYCE','EDWARDS','JOYCE.EDWARDS@dvdscustomer.org',53,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (50,1,'DIANE','COLLINS','DIANE.COLLINS@dvdscustomer.org',54,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (51,1,'ALICE','STEWART','ALICE.STEWART@dvdscustomer.org',55,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (52,1,'JULIE','SANCHEZ','JULIE.SANCHEZ@dvdscustomer.org',56,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (53,1,'HEATHER','MORRIS','HEATHER.MORRIS@dvdscustomer.org',57,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (54,1,'TERESA','ROGERS','TERESA.ROGERS@dvdscustomer.org',58,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (55,2,'DORIS','REED','DORIS.REED@dvdscustomer.org',59,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (56,1,'GLORIA','COOK','GLORIA.COOK@dvdscustomer.org',60,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (57,2,'EVELYN','MORGAN','EVELYN.MORGAN@dvdscustomer.org',61,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (58,1,'JEAN','BELL','JEAN.BELL@dvdscustomer.org',62,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (59,1,'CHERYL','MURPHY','CHERYL.MURPHY@dvdscustomer.org',63,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (60,1,'MILDRED','BAILEY','MILDRED.BAILEY@dvdscustomer.org',64,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (61,2,'KATHERINE','RIVERA','KATHERINE.RIVERA@dvdscustomer.org',65,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (62,1,'JOAN','COOPER','JOAN.COOPER@dvdscustomer.org',66,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (63,1,'ASHLEY','RICHARDSON','ASHLEY.RICHARDSON@dvdscustomer.org',67,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (64,2,'JUDITH','COX','JUDITH.COX@dvdscustomer.org',68,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (65,2,'ROSE','HOWARD','ROSE.HOWARD@dvdscustomer.org',69,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (66,2,'JANICE','WARD','JANICE.WARD@dvdscustomer.org',70,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (67,1,'KELLY','TORRES','KELLY.TORRES@dvdscustomer.org',71,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (68,1,'NICOLE','PETERSON','NICOLE.PETERSON@dvdscustomer.org',72,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (69,2,'JUDY','GRAY','JUDY.GRAY@dvdscustomer.org',73,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (70,2,'CHRISTINA','RAMIREZ','CHRISTINA.RAMIREZ@dvdscustomer.org',74,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (71,1,'KATHY','JAMES','KATHY.JAMES@dvdscustomer.org',75,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (72,2,'THERESA','WATSON','THERESA.WATSON@dvdscustomer.org',76,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (73,2,'BEVERLY','BROOKS','BEVERLY.BROOKS@dvdscustomer.org',77,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (74,1,'DENISE','KELLY','DENISE.KELLY@dvdscustomer.org',78,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (75,2,'TAMMY','SANDERS','TAMMY.SANDERS@dvdscustomer.org',79,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (76,2,'IRENE','PRICE','IRENE.PRICE@dvdscustomer.org',80,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (77,2,'JANE','BENNETT','JANE.BENNETT@dvdscustomer.org',81,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (78,1,'LORI','WOOD','LORI.WOOD@dvdscustomer.org',82,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (79,1,'RACHEL','BARNES','RACHEL.BARNES@dvdscustomer.org',83,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (80,1,'MARILYN','ROSS','MARILYN.ROSS@dvdscustomer.org',84,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (81,1,'ANDREA','HENDERSON','ANDREA.HENDERSON@dvdscustomer.org',85,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (82,1,'KATHRYN','COLEMAN','KATHRYN.COLEMAN@dvdscustomer.org',86,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (83,1,'LOUISE','JENKINS','LOUISE.JENKINS@dvdscustomer.org',87,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (84,2,'SARA','PERRY','SARA.PERRY@dvdscustomer.org',88,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (85,2,'ANNE','POWELL','ANNE.POWELL@dvdscustomer.org',89,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (86,2,'JACQUELINE','LONG','JACQUELINE.LONG@dvdscustomer.org',90,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (87,1,'WANDA','PATTERSON','WANDA.PATTERSON@dvdscustomer.org',91,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (88,2,'BONNIE','HUGHES','BONNIE.HUGHES@dvdscustomer.org',92,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (89,1,'JULIA','FLORES','JULIA.FLORES@dvdscustomer.org',93,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (90,2,'RUBY','WASHINGTON','RUBY.WASHINGTON@dvdscustomer.org',94,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (91,2,'LOIS','BUTLER','LOIS.BUTLER@dvdscustomer.org',95,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (92,2,'TINA','SIMMONS','TINA.SIMMONS@dvdscustomer.org',96,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (93,1,'PHYLLIS','FOSTER','PHYLLIS.FOSTER@dvdscustomer.org',97,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (94,1,'NORMA','GONZALES','NORMA.GONZALES@dvdscustomer.org',98,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (95,2,'PAULA','BRYANT','PAULA.BRYANT@dvdscustomer.org',99,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (96,1,'DIANA','ALEXANDER','DIANA.ALEXANDER@dvdscustomer.org',100,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (97,2,'ANNIE','RUSSELL','ANNIE.RUSSELL@dvdscustomer.org',101,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (98,1,'LILLIAN','GRIFFIN','LILLIAN.GRIFFIN@dvdscustomer.org',102,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (99,2,'EMILY','DIAZ','EMILY.DIAZ@dvdscustomer.org',103,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (100,1,'ROBIN','HAYES','ROBIN.HAYES@dvdscustomer.org',104,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (101,1,'PEGGY','MYERS','PEGGY.MYERS@dvdscustomer.org',105,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (102,1,'CRYSTAL','FORD','CRYSTAL.FORD@dvdscustomer.org',106,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (103,1,'GLADYS','HAMILTON','GLADYS.HAMILTON@dvdscustomer.org',107,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (104,1,'RITA','GRAHAM','RITA.GRAHAM@dvdscustomer.org',108,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (105,1,'DAWN','SULLIVAN','DAWN.SULLIVAN@dvdscustomer.org',109,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (106,1,'CONNIE','WALLACE','CONNIE.WALLACE@dvdscustomer.org',110,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (107,1,'FLORENCE','WOODS','FLORENCE.WOODS@dvdscustomer.org',111,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (108,1,'TRACY','COLE','TRACY.COLE@dvdscustomer.org',112,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (109,2,'EDNA','WEST','EDNA.WEST@dvdscustomer.org',113,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (110,2,'TIFFANY','JORDAN','TIFFANY.JORDAN@dvdscustomer.org',114,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (111,1,'CARMEN','OWENS','CARMEN.OWENS@dvdscustomer.org',115,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (112,2,'ROSA','REYNOLDS','ROSA.REYNOLDS@dvdscustomer.org',116,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (113,2,'CINDY','FISHER','CINDY.FISHER@dvdscustomer.org',117,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (114,2,'GRACE','ELLIS','GRACE.ELLIS@dvdscustomer.org',118,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (115,1,'WENDY','HARRISON','WENDY.HARRISON@dvdscustomer.org',119,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (116,1,'VICTORIA','GIBSON','VICTORIA.GIBSON@dvdscustomer.org',120,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (117,1,'EDITH','MCDONALD','EDITH.MCDONALD@dvdscustomer.org',121,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (118,1,'KIM','CRUZ','KIM.CRUZ@dvdscustomer.org',122,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (119,1,'SHERRY','MARSHALL','SHERRY.MARSHALL@dvdscustomer.org',123,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (120,2,'SYLVIA','ORTIZ','SYLVIA.ORTIZ@dvdscustomer.org',124,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (121,1,'JOSEPHINE','GOMEZ','JOSEPHINE.GOMEZ@dvdscustomer.org',125,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (122,1,'THELMA','MURRAY','THELMA.MURRAY@dvdscustomer.org',126,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (123,2,'SHANNON','FREEMAN','SHANNON.FREEMAN@dvdscustomer.org',127,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (124,1,'SHEILA','WELLS','SHEILA.WELLS@dvdscustomer.org',128,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (125,1,'ETHEL','WEBB','ETHEL.WEBB@dvdscustomer.org',129,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (126,1,'ELLEN','SIMPSON','ELLEN.SIMPSON@dvdscustomer.org',130,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (127,2,'ELAINE','STEVENS','ELAINE.STEVENS@dvdscustomer.org',131,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (128,1,'MARJORIE','TUCKER','MARJORIE.TUCKER@dvdscustomer.org',132,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (129,1,'CARRIE','PORTER','CARRIE.PORTER@dvdscustomer.org',133,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (130,1,'CHARLOTTE','HUNTER','CHARLOTTE.HUNTER@dvdscustomer.org',134,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (131,2,'MONICA','HICKS','MONICA.HICKS@dvdscustomer.org',135,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (132,2,'ESTHER','CRAWFORD','ESTHER.CRAWFORD@dvdscustomer.org',136,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (133,1,'PAULINE','HENRY','PAULINE.HENRY@dvdscustomer.org',137,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (134,1,'EMMA','BOYD','EMMA.BOYD@dvdscustomer.org',138,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (135,2,'JUANITA','MASON','JUANITA.MASON@dvdscustomer.org',139,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (136,2,'ANITA','MORALES','ANITA.MORALES@dvdscustomer.org',140,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (137,2,'RHONDA','KENNEDY','RHONDA.KENNEDY@dvdscustomer.org',141,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (138,1,'HAZEL','WARREN','HAZEL.WARREN@dvdscustomer.org',142,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (139,1,'AMBER','DIXON','AMBER.DIXON@dvdscustomer.org',143,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (140,1,'EVA','RAMOS','EVA.RAMOS@dvdscustomer.org',144,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (141,1,'DEBBIE','REYES','DEBBIE.REYES@dvdscustomer.org',145,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (142,1,'APRIL','BURNS','APRIL.BURNS@dvdscustomer.org',146,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (143,1,'LESLIE','GORDON','LESLIE.GORDON@dvdscustomer.org',147,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (144,1,'CLARA','SHAW','CLARA.SHAW@dvdscustomer.org',148,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (145,1,'LUCILLE','HOLMES','LUCILLE.HOLMES@dvdscustomer.org',149,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (146,1,'JAMIE','RICE','JAMIE.RICE@dvdscustomer.org',150,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (147,2,'JOANNE','ROBERTSON','JOANNE.ROBERTSON@dvdscustomer.org',151,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (148,1,'ELEANOR','HUNT','ELEANOR.HUNT@dvdscustomer.org',152,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (149,1,'VALERIE','BLACK','VALERIE.BLACK@dvdscustomer.org',153,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (150,2,'DANIELLE','DANIELS','DANIELLE.DANIELS@dvdscustomer.org',154,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (151,2,'MEGAN','PALMER','MEGAN.PALMER@dvdscustomer.org',155,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (152,1,'ALICIA','MILLS','ALICIA.MILLS@dvdscustomer.org',156,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (153,2,'SUZANNE','NICHOLS','SUZANNE.NICHOLS@dvdscustomer.org',157,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (154,2,'MICHELE','GRANT','MICHELE.GRANT@dvdscustomer.org',158,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (155,1,'GAIL','KNIGHT','GAIL.KNIGHT@dvdscustomer.org',159,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (156,1,'BERTHA','FERGUSON','BERTHA.FERGUSON@dvdscustomer.org',160,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (157,2,'DARLENE','ROSE','DARLENE.ROSE@dvdscustomer.org',161,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (158,1,'VERONICA','STONE','VERONICA.STONE@dvdscustomer.org',162,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (159,1,'JILL','HAWKINS','JILL.HAWKINS@dvdscustomer.org',163,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (160,2,'ERIN','DUNN','ERIN.DUNN@dvdscustomer.org',164,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (161,1,'GERALDINE','PERKINS','GERALDINE.PERKINS@dvdscustomer.org',165,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (162,2,'LAUREN','HUDSON','LAUREN.HUDSON@dvdscustomer.org',166,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (163,1,'CATHY','SPENCER','CATHY.SPENCER@dvdscustomer.org',167,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (164,2,'JOANN','GARDNER','JOANN.GARDNER@dvdscustomer.org',168,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (165,2,'LORRAINE','STEPHENS','LORRAINE.STEPHENS@dvdscustomer.org',169,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (166,1,'LYNN','PAYNE','LYNN.PAYNE@dvdscustomer.org',170,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (167,2,'SALLY','PIERCE','SALLY.PIERCE@dvdscustomer.org',171,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (168,1,'REGINA','BERRY','REGINA.BERRY@dvdscustomer.org',172,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (169,2,'ERICA','MATTHEWS','ERICA.MATTHEWS@dvdscustomer.org',173,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (170,1,'BEATRICE','ARNOLD','BEATRICE.ARNOLD@dvdscustomer.org',174,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (171,2,'DOLORES','WAGNER','DOLORES.WAGNER@dvdscustomer.org',175,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (172,1,'BERNICE','WILLIS','BERNICE.WILLIS@dvdscustomer.org',176,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (173,1,'AUDREY','RAY','AUDREY.RAY@dvdscustomer.org',177,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (174,2,'YVONNE','WATKINS','YVONNE.WATKINS@dvdscustomer.org',178,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (175,1,'ANNETTE','OLSON','ANNETTE.OLSON@dvdscustomer.org',179,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (176,1,'JUNE','CARROLL','JUNE.CARROLL@dvdscustomer.org',180,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (177,2,'SAMANTHA','DUNCAN','SAMANTHA.DUNCAN@dvdscustomer.org',181,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (178,2,'MARION','SNYDER','MARION.SNYDER@dvdscustomer.org',182,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (179,1,'DANA','HART','DANA.HART@dvdscustomer.org',183,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (180,2,'STACY','CUNNINGHAM','STACY.CUNNINGHAM@dvdscustomer.org',184,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (181,2,'ANA','BRADLEY','ANA.BRADLEY@dvdscustomer.org',185,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (182,1,'RENEE','LANE','RENEE.LANE@dvdscustomer.org',186,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (183,2,'IDA','ANDREWS','IDA.ANDREWS@dvdscustomer.org',187,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (184,1,'VIVIAN','RUIZ','VIVIAN.RUIZ@dvdscustomer.org',188,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (185,1,'ROBERTA','HARPER','ROBERTA.HARPER@dvdscustomer.org',189,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (186,2,'HOLLY','FOX','HOLLY.FOX@dvdscustomer.org',190,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (187,2,'BRITTANY','RILEY','BRITTANY.RILEY@dvdscustomer.org',191,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (188,1,'MELANIE','ARMSTRONG','MELANIE.ARMSTRONG@dvdscustomer.org',192,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (189,1,'LORETTA','CARPENTER','LORETTA.CARPENTER@dvdscustomer.org',193,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (190,2,'YOLANDA','WEAVER','YOLANDA.WEAVER@dvdscustomer.org',194,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (191,1,'JEANETTE','GREENE','JEANETTE.GREENE@dvdscustomer.org',195,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (192,1,'LAURIE','LAWRENCE','LAURIE.LAWRENCE@dvdscustomer.org',196,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (193,2,'KATIE','ELLIOTT','KATIE.ELLIOTT@dvdscustomer.org',197,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (194,2,'KRISTEN','CHAVEZ','KRISTEN.CHAVEZ@dvdscustomer.org',198,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (195,1,'VANESSA','SIMS','VANESSA.SIMS@dvdscustomer.org',199,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (196,1,'ALMA','AUSTIN','ALMA.AUSTIN@dvdscustomer.org',200,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (197,2,'SUE','PETERS','SUE.PETERS@dvdscustomer.org',201,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (198,2,'ELSIE','KELLEY','ELSIE.KELLEY@dvdscustomer.org',202,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (199,2,'BETH','FRANKLIN','BETH.FRANKLIN@dvdscustomer.org',203,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (200,2,'JEANNE','LAWSON','JEANNE.LAWSON@dvdscustomer.org',204,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (201,1,'VICKI','FIELDS','VICKI.FIELDS@dvdscustomer.org',205,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (202,2,'CARLA','GUTIERREZ','CARLA.GUTIERREZ@dvdscustomer.org',206,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (203,1,'TARA','RYAN','TARA.RYAN@dvdscustomer.org',207,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (204,1,'ROSEMARY','SCHMIDT','ROSEMARY.SCHMIDT@dvdscustomer.org',208,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (205,2,'EILEEN','CARR','EILEEN.CARR@dvdscustomer.org',209,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (206,1,'TERRI','VASQUEZ','TERRI.VASQUEZ@dvdscustomer.org',210,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (207,1,'GERTRUDE','CASTILLO','GERTRUDE.CASTILLO@dvdscustomer.org',211,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (208,1,'LUCY','WHEELER','LUCY.WHEELER@dvdscustomer.org',212,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (209,2,'TONYA','CHAPMAN','TONYA.CHAPMAN@dvdscustomer.org',213,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (210,2,'ELLA','OLIVER','ELLA.OLIVER@dvdscustomer.org',214,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (211,1,'STACEY','MONTGOMERY','STACEY.MONTGOMERY@dvdscustomer.org',215,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (212,2,'WILMA','RICHARDS','WILMA.RICHARDS@dvdscustomer.org',216,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (213,1,'GINA','WILLIAMSON','GINA.WILLIAMSON@dvdscustomer.org',217,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (214,1,'KRISTIN','JOHNSTON','KRISTIN.JOHNSTON@dvdscustomer.org',218,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (215,2,'JESSIE','BANKS','JESSIE.BANKS@dvdscustomer.org',219,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (216,1,'NATALIE','MEYER','NATALIE.MEYER@dvdscustomer.org',220,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (217,2,'AGNES','BISHOP','AGNES.BISHOP@dvdscustomer.org',221,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (218,1,'VERA','MCCOY','VERA.MCCOY@dvdscustomer.org',222,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (219,2,'WILLIE','HOWELL','WILLIE.HOWELL@dvdscustomer.org',223,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (220,2,'CHARLENE','ALVAREZ','CHARLENE.ALVAREZ@dvdscustomer.org',224,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (221,1,'BESSIE','MORRISON','BESSIE.MORRISON@dvdscustomer.org',225,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (222,2,'DELORES','HANSEN','DELORES.HANSEN@dvdscustomer.org',226,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (223,1,'MELINDA','FERNANDEZ','MELINDA.FERNANDEZ@dvdscustomer.org',227,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (224,2,'PEARL','GARZA','PEARL.GARZA@dvdscustomer.org',228,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (225,1,'ARLENE','HARVEY','ARLENE.HARVEY@dvdscustomer.org',229,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (226,2,'MAUREEN','LITTLE','MAUREEN.LITTLE@dvdscustomer.org',230,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (227,1,'COLLEEN','BURTON','COLLEEN.BURTON@dvdscustomer.org',231,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (228,2,'ALLISON','STANLEY','ALLISON.STANLEY@dvdscustomer.org',232,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (229,1,'TAMARA','NGUYEN','TAMARA.NGUYEN@dvdscustomer.org',233,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (230,2,'JOY','GEORGE','JOY.GEORGE@dvdscustomer.org',234,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (231,1,'GEORGIA','JACOBS','GEORGIA.JACOBS@dvdscustomer.org',235,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (232,2,'CONSTANCE','REID','CONSTANCE.REID@dvdscustomer.org',236,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (233,2,'LILLIE','KIM','LILLIE.KIM@dvdscustomer.org',237,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (234,1,'CLAUDIA','FULLER','CLAUDIA.FULLER@dvdscustomer.org',238,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (235,1,'JACKIE','LYNCH','JACKIE.LYNCH@dvdscustomer.org',239,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (236,1,'MARCIA','DEAN','MARCIA.DEAN@dvdscustomer.org',240,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (237,1,'TANYA','GILBERT','TANYA.GILBERT@dvdscustomer.org',241,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (238,1,'NELLIE','GARRETT','NELLIE.GARRETT@dvdscustomer.org',242,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (239,2,'MINNIE','ROMERO','MINNIE.ROMERO@dvdscustomer.org',243,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (240,1,'MARLENE','WELCH','MARLENE.WELCH@dvdscustomer.org',244,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (241,2,'HEIDI','LARSON','HEIDI.LARSON@dvdscustomer.org',245,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (242,1,'GLENDA','FRAZIER','GLENDA.FRAZIER@dvdscustomer.org',246,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (243,1,'LYDIA','BURKE','LYDIA.BURKE@dvdscustomer.org',247,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (244,2,'VIOLA','HANSON','VIOLA.HANSON@dvdscustomer.org',248,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (245,1,'COURTNEY','DAY','COURTNEY.DAY@dvdscustomer.org',249,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (246,1,'MARIAN','MENDOZA','MARIAN.MENDOZA@dvdscustomer.org',250,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (247,1,'STELLA','MORENO','STELLA.MORENO@dvdscustomer.org',251,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (248,1,'CAROLINE','BOWMAN','CAROLINE.BOWMAN@dvdscustomer.org',252,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (249,2,'DORA','MEDINA','DORA.MEDINA@dvdscustomer.org',253,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (250,2,'JO','FOWLER','JO.FOWLER@dvdscustomer.org',254,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (251,2,'VICKIE','BREWER','VICKIE.BREWER@dvdscustomer.org',255,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (252,2,'MATTIE','HOFFMAN','MATTIE.HOFFMAN@dvdscustomer.org',256,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (253,1,'TERRY','CARLSON','TERRY.CARLSON@dvdscustomer.org',258,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (254,2,'MAXINE','SILVA','MAXINE.SILVA@dvdscustomer.org',259,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (255,2,'IRMA','PEARSON','IRMA.PEARSON@dvdscustomer.org',260,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (256,2,'MABEL','HOLLAND','MABEL.HOLLAND@dvdscustomer.org',261,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (257,2,'MARSHA','DOUGLAS','MARSHA.DOUGLAS@dvdscustomer.org',262,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (258,1,'MYRTLE','FLEMING','MYRTLE.FLEMING@dvdscustomer.org',263,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (259,2,'LENA','JENSEN','LENA.JENSEN@dvdscustomer.org',264,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (260,1,'CHRISTY','VARGAS','CHRISTY.VARGAS@dvdscustomer.org',265,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (261,1,'DEANNA','BYRD','DEANNA.BYRD@dvdscustomer.org',266,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (262,2,'PATSY','DAVIDSON','PATSY.DAVIDSON@dvdscustomer.org',267,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (263,1,'HILDA','HOPKINS','HILDA.HOPKINS@dvdscustomer.org',268,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (264,1,'GWENDOLYN','MAY','GWENDOLYN.MAY@dvdscustomer.org',269,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (265,2,'JENNIE','TERRY','JENNIE.TERRY@dvdscustomer.org',270,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (266,2,'NORA','HERRERA','NORA.HERRERA@dvdscustomer.org',271,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (267,1,'MARGIE','WADE','MARGIE.WADE@dvdscustomer.org',272,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (268,1,'NINA','SOTO','NINA.SOTO@dvdscustomer.org',273,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (269,1,'CASSANDRA','WALTERS','CASSANDRA.WALTERS@dvdscustomer.org',274,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (270,1,'LEAH','CURTIS','LEAH.CURTIS@dvdscustomer.org',275,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (271,1,'PENNY','NEAL','PENNY.NEAL@dvdscustomer.org',276,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), - (272,1,'KAY','CALDWELL','KAY.CALDWELL@dvdscustomer.org',277,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (273,2,'PRISCILLA','LOWE','PRISCILLA.LOWE@dvdscustomer.org',278,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (274,1,'NAOMI','JENNINGS','NAOMI.JENNINGS@dvdscustomer.org',279,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (275,2,'CAROLE','BARNETT','CAROLE.BARNETT@dvdscustomer.org',280,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (276,1,'BRANDY','GRAVES','BRANDY.GRAVES@dvdscustomer.org',281,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (277,2,'OLGA','JIMENEZ','OLGA.JIMENEZ@dvdscustomer.org',282,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (278,2,'BILLIE','HORTON','BILLIE.HORTON@dvdscustomer.org',283,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (279,2,'DIANNE','SHELTON','DIANNE.SHELTON@dvdscustomer.org',284,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (280,2,'TRACEY','BARRETT','TRACEY.BARRETT@dvdscustomer.org',285,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (281,2,'LEONA','OBRIEN','LEONA.OBRIEN@dvdscustomer.org',286,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (282,2,'JENNY','CASTRO','JENNY.CASTRO@dvdscustomer.org',287,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (283,1,'FELICIA','SUTTON','FELICIA.SUTTON@dvdscustomer.org',288,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (284,1,'SONIA','GREGORY','SONIA.GREGORY@dvdscustomer.org',289,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (285,1,'MIRIAM','MCKINNEY','MIRIAM.MCKINNEY@dvdscustomer.org',290,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (286,1,'VELMA','LUCAS','VELMA.LUCAS@dvdscustomer.org',291,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (287,2,'BECKY','MILES','BECKY.MILES@dvdscustomer.org',292,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (288,1,'BOBBIE','CRAIG','BOBBIE.CRAIG@dvdscustomer.org',293,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (289,1,'VIOLET','RODRIQUEZ','VIOLET.RODRIQUEZ@dvdscustomer.org',294,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (290,1,'KRISTINA','CHAMBERS','KRISTINA.CHAMBERS@dvdscustomer.org',295,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (291,1,'TONI','HOLT','TONI.HOLT@dvdscustomer.org',296,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (292,2,'MISTY','LAMBERT','MISTY.LAMBERT@dvdscustomer.org',297,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (293,2,'MAE','FLETCHER','MAE.FLETCHER@dvdscustomer.org',298,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (294,2,'SHELLY','WATTS','SHELLY.WATTS@dvdscustomer.org',299,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (295,1,'DAISY','BATES','DAISY.BATES@dvdscustomer.org',300,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (296,2,'RAMONA','HALE','RAMONA.HALE@dvdscustomer.org',301,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (297,1,'SHERRI','RHODES','SHERRI.RHODES@dvdscustomer.org',302,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (298,1,'ERIKA','PENA','ERIKA.PENA@dvdscustomer.org',303,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (299,2,'JAMES','GANNON','JAMES.GANNON@dvdscustomer.org',304,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (300,1,'JOHN','FARNSWORTH','JOHN.FARNSWORTH@dvdscustomer.org',305,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (301,2,'ROBERT','BAUGHMAN','ROBERT.BAUGHMAN@dvdscustomer.org',306,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (302,1,'MICHAEL','SILVERMAN','MICHAEL.SILVERMAN@dvdscustomer.org',307,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (303,2,'WILLIAM','SATTERFIELD','WILLIAM.SATTERFIELD@dvdscustomer.org',308,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (304,2,'DAVID','ROYAL','DAVID.ROYAL@dvdscustomer.org',309,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (305,1,'RICHARD','MCCRARY','RICHARD.MCCRARY@dvdscustomer.org',310,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (306,1,'CHARLES','KOWALSKI','CHARLES.KOWALSKI@dvdscustomer.org',311,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (307,2,'JOSEPH','JOY','JOSEPH.JOY@dvdscustomer.org',312,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (308,1,'THOMAS','GRIGSBY','THOMAS.GRIGSBY@dvdscustomer.org',313,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (309,1,'CHRISTOPHER','GRECO','CHRISTOPHER.GRECO@dvdscustomer.org',314,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (310,2,'DANIEL','CABRAL','DANIEL.CABRAL@dvdscustomer.org',315,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (311,2,'PAUL','TROUT','PAUL.TROUT@dvdscustomer.org',316,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (312,2,'MARK','RINEHART','MARK.RINEHART@dvdscustomer.org',317,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (313,2,'DONALD','MAHON','DONALD.MAHON@dvdscustomer.org',318,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (314,1,'GEORGE','LINTON','GEORGE.LINTON@dvdscustomer.org',319,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (315,2,'KENNETH','GOODEN','KENNETH.GOODEN@dvdscustomer.org',320,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (316,1,'STEVEN','CURLEY','STEVEN.CURLEY@dvdscustomer.org',321,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (317,2,'EDWARD','BAUGH','EDWARD.BAUGH@dvdscustomer.org',322,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (318,1,'BRIAN','WYMAN','BRIAN.WYMAN@dvdscustomer.org',323,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (319,2,'RONALD','WEINER','RONALD.WEINER@dvdscustomer.org',324,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (320,2,'ANTHONY','SCHWAB','ANTHONY.SCHWAB@dvdscustomer.org',325,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (321,1,'KEVIN','SCHULER','KEVIN.SCHULER@dvdscustomer.org',326,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (322,1,'JASON','MORRISSEY','JASON.MORRISSEY@dvdscustomer.org',327,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (323,2,'MATTHEW','MAHAN','MATTHEW.MAHAN@dvdscustomer.org',328,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (324,2,'GARY','COY','GARY.COY@dvdscustomer.org',329,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (325,1,'TIMOTHY','BUNN','TIMOTHY.BUNN@dvdscustomer.org',330,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (326,1,'JOSE','ANDREW','JOSE.ANDREW@dvdscustomer.org',331,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (327,2,'LARRY','THRASHER','LARRY.THRASHER@dvdscustomer.org',332,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (328,2,'JEFFREY','SPEAR','JEFFREY.SPEAR@dvdscustomer.org',333,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (329,2,'FRANK','WAGGONER','FRANK.WAGGONER@dvdscustomer.org',334,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (330,1,'SCOTT','SHELLEY','SCOTT.SHELLEY@dvdscustomer.org',335,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (331,1,'ERIC','ROBERT','ERIC.ROBERT@dvdscustomer.org',336,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (332,1,'STEPHEN','QUALLS','STEPHEN.QUALLS@dvdscustomer.org',337,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (333,2,'ANDREW','PURDY','ANDREW.PURDY@dvdscustomer.org',338,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (334,2,'RAYMOND','MCWHORTER','RAYMOND.MCWHORTER@dvdscustomer.org',339,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (335,1,'GREGORY','MAULDIN','GREGORY.MAULDIN@dvdscustomer.org',340,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (336,1,'JOSHUA','MARK','JOSHUA.MARK@dvdscustomer.org',341,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (337,1,'JERRY','JORDON','JERRY.JORDON@dvdscustomer.org',342,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (338,1,'DENNIS','GILMAN','DENNIS.GILMAN@dvdscustomer.org',343,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (339,2,'WALTER','PERRYMAN','WALTER.PERRYMAN@dvdscustomer.org',344,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (340,1,'PATRICK','NEWSOM','PATRICK.NEWSOM@dvdscustomer.org',345,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (341,1,'PETER','MENARD','PETER.MENARD@dvdscustomer.org',346,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (342,1,'HAROLD','MARTINO','HAROLD.MARTINO@dvdscustomer.org',347,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (343,1,'DOUGLAS','GRAF','DOUGLAS.GRAF@dvdscustomer.org',348,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (344,1,'HENRY','BILLINGSLEY','HENRY.BILLINGSLEY@dvdscustomer.org',349,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (345,1,'CARL','ARTIS','CARL.ARTIS@dvdscustomer.org',350,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (346,1,'ARTHUR','SIMPKINS','ARTHUR.SIMPKINS@dvdscustomer.org',351,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (347,2,'RYAN','SALISBURY','RYAN.SALISBURY@dvdscustomer.org',352,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (348,2,'ROGER','QUINTANILLA','ROGER.QUINTANILLA@dvdscustomer.org',353,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (349,2,'JOE','GILLILAND','JOE.GILLILAND@dvdscustomer.org',354,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (350,1,'JUAN','FRALEY','JUAN.FRALEY@dvdscustomer.org',355,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (351,1,'JACK','FOUST','JACK.FOUST@dvdscustomer.org',356,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (352,1,'ALBERT','CROUSE','ALBERT.CROUSE@dvdscustomer.org',357,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (353,1,'JONATHAN','SCARBOROUGH','JONATHAN.SCARBOROUGH@dvdscustomer.org',358,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (354,2,'JUSTIN','NGO','JUSTIN.NGO@dvdscustomer.org',359,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (355,2,'TERRY','GRISSOM','TERRY.GRISSOM@dvdscustomer.org',360,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (356,2,'GERALD','FULTZ','GERALD.FULTZ@dvdscustomer.org',361,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (357,1,'KEITH','RICO','KEITH.RICO@dvdscustomer.org',362,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (358,2,'SAMUEL','MARLOW','SAMUEL.MARLOW@dvdscustomer.org',363,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (359,2,'WILLIE','MARKHAM','WILLIE.MARKHAM@dvdscustomer.org',364,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (360,2,'RALPH','MADRIGAL','RALPH.MADRIGAL@dvdscustomer.org',365,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (361,2,'LAWRENCE','LAWTON','LAWRENCE.LAWTON@dvdscustomer.org',366,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (362,1,'NICHOLAS','BARFIELD','NICHOLAS.BARFIELD@dvdscustomer.org',367,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (363,2,'ROY','WHITING','ROY.WHITING@dvdscustomer.org',368,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (364,1,'BENJAMIN','VARNEY','BENJAMIN.VARNEY@dvdscustomer.org',369,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (365,2,'BRUCE','SCHWARZ','BRUCE.SCHWARZ@dvdscustomer.org',370,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (366,1,'BRANDON','HUEY','BRANDON.HUEY@dvdscustomer.org',371,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (367,1,'ADAM','GOOCH','ADAM.GOOCH@dvdscustomer.org',372,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (368,1,'HARRY','ARCE','HARRY.ARCE@dvdscustomer.org',373,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (369,2,'FRED','WHEAT','FRED.WHEAT@dvdscustomer.org',374,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (370,2,'WAYNE','TRUONG','WAYNE.TRUONG@dvdscustomer.org',375,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (371,1,'BILLY','POULIN','BILLY.POULIN@dvdscustomer.org',376,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (372,2,'STEVE','MACKENZIE','STEVE.MACKENZIE@dvdscustomer.org',377,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (373,1,'LOUIS','LEONE','LOUIS.LEONE@dvdscustomer.org',378,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (374,2,'JEREMY','HURTADO','JEREMY.HURTADO@dvdscustomer.org',379,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (375,2,'AARON','SELBY','AARON.SELBY@dvdscustomer.org',380,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (376,1,'RANDY','GAITHER','RANDY.GAITHER@dvdscustomer.org',381,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (377,1,'HOWARD','FORTNER','HOWARD.FORTNER@dvdscustomer.org',382,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (378,1,'EUGENE','CULPEPPER','EUGENE.CULPEPPER@dvdscustomer.org',383,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (379,1,'CARLOS','COUGHLIN','CARLOS.COUGHLIN@dvdscustomer.org',384,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (380,1,'RUSSELL','BRINSON','RUSSELL.BRINSON@dvdscustomer.org',385,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (381,2,'BOBBY','BOUDREAU','BOBBY.BOUDREAU@dvdscustomer.org',386,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (382,2,'VICTOR','BARKLEY','VICTOR.BARKLEY@dvdscustomer.org',387,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (383,1,'MARTIN','BALES','MARTIN.BALES@dvdscustomer.org',388,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (384,2,'ERNEST','STEPP','ERNEST.STEPP@dvdscustomer.org',389,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (385,1,'PHILLIP','HOLM','PHILLIP.HOLM@dvdscustomer.org',390,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (386,1,'TODD','TAN','TODD.TAN@dvdscustomer.org',391,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (387,2,'JESSE','SCHILLING','JESSE.SCHILLING@dvdscustomer.org',392,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (388,2,'CRAIG','MORRELL','CRAIG.MORRELL@dvdscustomer.org',393,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (389,1,'ALAN','KAHN','ALAN.KAHN@dvdscustomer.org',394,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (390,1,'SHAWN','HEATON','SHAWN.HEATON@dvdscustomer.org',395,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (391,1,'CLARENCE','GAMEZ','CLARENCE.GAMEZ@dvdscustomer.org',396,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (392,2,'SEAN','DOUGLASS','SEAN.DOUGLASS@dvdscustomer.org',397,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (393,1,'PHILIP','CAUSEY','PHILIP.CAUSEY@dvdscustomer.org',398,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (394,2,'CHRIS','BROTHERS','CHRIS.BROTHERS@dvdscustomer.org',399,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (395,2,'JOHNNY','TURPIN','JOHNNY.TURPIN@dvdscustomer.org',400,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (396,1,'EARL','SHANKS','EARL.SHANKS@dvdscustomer.org',401,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (397,1,'JIMMY','SCHRADER','JIMMY.SCHRADER@dvdscustomer.org',402,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (398,1,'ANTONIO','MEEK','ANTONIO.MEEK@dvdscustomer.org',403,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (399,1,'DANNY','ISOM','DANNY.ISOM@dvdscustomer.org',404,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (400,2,'BRYAN','HARDISON','BRYAN.HARDISON@dvdscustomer.org',405,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (401,2,'TONY','CARRANZA','TONY.CARRANZA@dvdscustomer.org',406,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (402,1,'LUIS','YANEZ','LUIS.YANEZ@dvdscustomer.org',407,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (403,1,'MIKE','WAY','MIKE.WAY@dvdscustomer.org',408,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (404,2,'STANLEY','SCROGGINS','STANLEY.SCROGGINS@dvdscustomer.org',409,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (405,1,'LEONARD','SCHOFIELD','LEONARD.SCHOFIELD@dvdscustomer.org',410,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (406,1,'NATHAN','RUNYON','NATHAN.RUNYON@dvdscustomer.org',411,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (407,1,'DALE','RATCLIFF','DALE.RATCLIFF@dvdscustomer.org',412,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (408,1,'MANUEL','MURRELL','MANUEL.MURRELL@dvdscustomer.org',413,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (409,2,'RODNEY','MOELLER','RODNEY.MOELLER@dvdscustomer.org',414,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (410,2,'CURTIS','IRBY','CURTIS.IRBY@dvdscustomer.org',415,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (411,1,'NORMAN','CURRIER','NORMAN.CURRIER@dvdscustomer.org',416,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (412,2,'ALLEN','BUTTERFIELD','ALLEN.BUTTERFIELD@dvdscustomer.org',417,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (413,2,'MARVIN','YEE','MARVIN.YEE@dvdscustomer.org',418,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (414,1,'VINCENT','RALSTON','VINCENT.RALSTON@dvdscustomer.org',419,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (415,1,'GLENN','PULLEN','GLENN.PULLEN@dvdscustomer.org',420,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (416,2,'JEFFERY','PINSON','JEFFERY.PINSON@dvdscustomer.org',421,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (417,1,'TRAVIS','ESTEP','TRAVIS.ESTEP@dvdscustomer.org',422,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (418,2,'JEFF','EAST','JEFF.EAST@dvdscustomer.org',423,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (419,1,'CHAD','CARBONE','CHAD.CARBONE@dvdscustomer.org',424,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (420,1,'JACOB','LANCE','JACOB.LANCE@dvdscustomer.org',425,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (421,1,'LEE','HAWKS','LEE.HAWKS@dvdscustomer.org',426,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (422,1,'MELVIN','ELLINGTON','MELVIN.ELLINGTON@dvdscustomer.org',427,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (423,2,'ALFRED','CASILLAS','ALFRED.CASILLAS@dvdscustomer.org',428,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (424,2,'KYLE','SPURLOCK','KYLE.SPURLOCK@dvdscustomer.org',429,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (425,2,'FRANCIS','SIKES','FRANCIS.SIKES@dvdscustomer.org',430,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (426,1,'BRADLEY','MOTLEY','BRADLEY.MOTLEY@dvdscustomer.org',431,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (427,2,'JESUS','MCCARTNEY','JESUS.MCCARTNEY@dvdscustomer.org',432,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (428,2,'HERBERT','KRUGER','HERBERT.KRUGER@dvdscustomer.org',433,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (429,2,'FREDERICK','ISBELL','FREDERICK.ISBELL@dvdscustomer.org',434,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (430,1,'RAY','HOULE','RAY.HOULE@dvdscustomer.org',435,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (431,2,'JOEL','FRANCISCO','JOEL.FRANCISCO@dvdscustomer.org',436,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (432,1,'EDWIN','BURK','EDWIN.BURK@dvdscustomer.org',437,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (433,1,'DON','BONE','DON.BONE@dvdscustomer.org',438,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (434,1,'EDDIE','TOMLIN','EDDIE.TOMLIN@dvdscustomer.org',439,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (435,2,'RICKY','SHELBY','RICKY.SHELBY@dvdscustomer.org',440,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (436,1,'TROY','QUIGLEY','TROY.QUIGLEY@dvdscustomer.org',441,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (437,2,'RANDALL','NEUMANN','RANDALL.NEUMANN@dvdscustomer.org',442,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (438,1,'BARRY','LOVELACE','BARRY.LOVELACE@dvdscustomer.org',443,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (439,2,'ALEXANDER','FENNELL','ALEXANDER.FENNELL@dvdscustomer.org',444,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (440,1,'BERNARD','COLBY','BERNARD.COLBY@dvdscustomer.org',445,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (441,1,'MARIO','CHEATHAM','MARIO.CHEATHAM@dvdscustomer.org',446,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (442,1,'LEROY','BUSTAMANTE','LEROY.BUSTAMANTE@dvdscustomer.org',447,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (443,2,'FRANCISCO','SKIDMORE','FRANCISCO.SKIDMORE@dvdscustomer.org',448,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (444,2,'MARCUS','HIDALGO','MARCUS.HIDALGO@dvdscustomer.org',449,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (445,1,'MICHEAL','FORMAN','MICHEAL.FORMAN@dvdscustomer.org',450,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (446,2,'THEODORE','CULP','THEODORE.CULP@dvdscustomer.org',451,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (447,1,'CLIFFORD','BOWENS','CLIFFORD.BOWENS@dvdscustomer.org',452,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (448,1,'MIGUEL','BETANCOURT','MIGUEL.BETANCOURT@dvdscustomer.org',453,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (449,2,'OSCAR','AQUINO','OSCAR.AQUINO@dvdscustomer.org',454,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (450,1,'JAY','ROBB','JAY.ROBB@dvdscustomer.org',455,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (451,1,'JIM','REA','JIM.REA@dvdscustomer.org',456,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (452,1,'TOM','MILNER','TOM.MILNER@dvdscustomer.org',457,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (453,1,'CALVIN','MARTEL','CALVIN.MARTEL@dvdscustomer.org',458,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (454,2,'ALEX','GRESHAM','ALEX.GRESHAM@dvdscustomer.org',459,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (455,2,'JON','WILES','JON.WILES@dvdscustomer.org',460,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (456,2,'RONNIE','RICKETTS','RONNIE.RICKETTS@dvdscustomer.org',461,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (457,2,'BILL','GAVIN','BILL.GAVIN@dvdscustomer.org',462,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (458,1,'LLOYD','DOWD','LLOYD.DOWD@dvdscustomer.org',463,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (459,1,'TOMMY','COLLAZO','TOMMY.COLLAZO@dvdscustomer.org',464,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (460,1,'LEON','BOSTIC','LEON.BOSTIC@dvdscustomer.org',465,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (461,1,'DEREK','BLAKELY','DEREK.BLAKELY@dvdscustomer.org',466,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (462,2,'WARREN','SHERROD','WARREN.SHERROD@dvdscustomer.org',467,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (463,2,'DARRELL','POWER','DARRELL.POWER@dvdscustomer.org',468,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (464,1,'JEROME','KENYON','JEROME.KENYON@dvdscustomer.org',469,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (465,1,'FLOYD','GANDY','FLOYD.GANDY@dvdscustomer.org',470,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (466,1,'LEO','EBERT','LEO.EBERT@dvdscustomer.org',471,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (467,2,'ALVIN','DELOACH','ALVIN.DELOACH@dvdscustomer.org',472,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (468,1,'TIM','CARY','TIM.CARY@dvdscustomer.org',473,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (469,2,'WESLEY','BULL','WESLEY.BULL@dvdscustomer.org',474,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (470,1,'GORDON','ALLARD','GORDON.ALLARD@dvdscustomer.org',475,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (471,1,'DEAN','SAUER','DEAN.SAUER@dvdscustomer.org',476,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (472,1,'GREG','ROBINS','GREG.ROBINS@dvdscustomer.org',477,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (473,2,'JORGE','OLIVARES','JORGE.OLIVARES@dvdscustomer.org',478,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (474,2,'DUSTIN','GILLETTE','DUSTIN.GILLETTE@dvdscustomer.org',479,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (475,2,'PEDRO','CHESTNUT','PEDRO.CHESTNUT@dvdscustomer.org',480,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (476,1,'DERRICK','BOURQUE','DERRICK.BOURQUE@dvdscustomer.org',481,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (477,1,'DAN','PAINE','DAN.PAINE@dvdscustomer.org',482,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (478,1,'LEWIS','LYMAN','LEWIS.LYMAN@dvdscustomer.org',483,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (479,1,'ZACHARY','HITE','ZACHARY.HITE@dvdscustomer.org',484,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (480,1,'COREY','HAUSER','COREY.HAUSER@dvdscustomer.org',485,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (481,1,'HERMAN','DEVORE','HERMAN.DEVORE@dvdscustomer.org',486,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (482,1,'MAURICE','CRAWLEY','MAURICE.CRAWLEY@dvdscustomer.org',487,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (483,2,'VERNON','CHAPA','VERNON.CHAPA@dvdscustomer.org',488,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (484,1,'ROBERTO','VU','ROBERTO.VU@dvdscustomer.org',489,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (485,1,'CLYDE','TOBIAS','CLYDE.TOBIAS@dvdscustomer.org',490,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (486,1,'GLEN','TALBERT','GLEN.TALBERT@dvdscustomer.org',491,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (487,2,'HECTOR','POINDEXTER','HECTOR.POINDEXTER@dvdscustomer.org',492,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (488,2,'SHANE','MILLARD','SHANE.MILLARD@dvdscustomer.org',493,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (489,1,'RICARDO','MEADOR','RICARDO.MEADOR@dvdscustomer.org',494,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (490,1,'SAM','MCDUFFIE','SAM.MCDUFFIE@dvdscustomer.org',495,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (491,2,'RICK','MATTOX','RICK.MATTOX@dvdscustomer.org',496,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (492,2,'LESTER','KRAUS','LESTER.KRAUS@dvdscustomer.org',497,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (493,1,'BRENT','HARKINS','BRENT.HARKINS@dvdscustomer.org',498,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (494,2,'RAMON','CHOATE','RAMON.CHOATE@dvdscustomer.org',499,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (495,2,'CHARLIE','BESS','CHARLIE.BESS@dvdscustomer.org',500,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (496,2,'TYLER','WREN','TYLER.WREN@dvdscustomer.org',501,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (497,2,'GILBERT','SLEDGE','GILBERT.SLEDGE@dvdscustomer.org',502,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (498,1,'GENE','SANBORN','GENE.SANBORN@dvdscustomer.org',503,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (499,2,'MARC','OUTLAW','MARC.OUTLAW@dvdscustomer.org',504,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (500,1,'REGINALD','KINDER','REGINALD.KINDER@dvdscustomer.org',505,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (501,1,'RUBEN','GEARY','RUBEN.GEARY@dvdscustomer.org',506,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (502,1,'BRETT','CORNWELL','BRETT.CORNWELL@dvdscustomer.org',507,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (503,1,'ANGEL','BARCLAY','ANGEL.BARCLAY@dvdscustomer.org',508,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (504,1,'NATHANIEL','ADAM','NATHANIEL.ADAM@dvdscustomer.org',509,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (505,1,'RAFAEL','ABNEY','RAFAEL.ABNEY@dvdscustomer.org',510,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (506,2,'LESLIE','SEWARD','LESLIE.SEWARD@dvdscustomer.org',511,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (507,2,'EDGAR','RHOADS','EDGAR.RHOADS@dvdscustomer.org',512,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (508,2,'MILTON','HOWLAND','MILTON.HOWLAND@dvdscustomer.org',513,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (509,1,'RAUL','FORTIER','RAUL.FORTIER@dvdscustomer.org',514,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (510,2,'BEN','EASTER','BEN.EASTER@dvdscustomer.org',515,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (511,1,'CHESTER','BENNER','CHESTER.BENNER@dvdscustomer.org',516,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (512,1,'CECIL','VINES','CECIL.VINES@dvdscustomer.org',517,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (513,2,'DUANE','TUBBS','DUANE.TUBBS@dvdscustomer.org',519,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (514,2,'FRANKLIN','TROUTMAN','FRANKLIN.TROUTMAN@dvdscustomer.org',520,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (515,1,'ANDRE','RAPP','ANDRE.RAPP@dvdscustomer.org',521,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (516,2,'ELMER','NOE','ELMER.NOE@dvdscustomer.org',522,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (517,2,'BRAD','MCCURDY','BRAD.MCCURDY@dvdscustomer.org',523,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (518,1,'GABRIEL','HARDER','GABRIEL.HARDER@dvdscustomer.org',524,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (519,2,'RON','DELUCA','RON.DELUCA@dvdscustomer.org',525,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (520,2,'MITCHELL','WESTMORELAND','MITCHELL.WESTMORELAND@dvdscustomer.org',526,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (521,2,'ROLAND','SOUTH','ROLAND.SOUTH@dvdscustomer.org',527,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (522,2,'ARNOLD','HAVENS','ARNOLD.HAVENS@dvdscustomer.org',528,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (523,1,'HARVEY','GUAJARDO','HARVEY.GUAJARDO@dvdscustomer.org',529,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (524,1,'JARED','ELY','JARED.ELY@dvdscustomer.org',530,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (525,2,'ADRIAN','CLARY','ADRIAN.CLARY@dvdscustomer.org',531,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (526,2,'KARL','SEAL','KARL.SEAL@dvdscustomer.org',532,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (527,1,'CORY','MEEHAN','CORY.MEEHAN@dvdscustomer.org',533,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (528,1,'CLAUDE','HERZOG','CLAUDE.HERZOG@dvdscustomer.org',534,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (529,2,'ERIK','GUILLEN','ERIK.GUILLEN@dvdscustomer.org',535,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (530,2,'DARRYL','ASHCRAFT','DARRYL.ASHCRAFT@dvdscustomer.org',536,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (531,2,'JAMIE','WAUGH','JAMIE.WAUGH@dvdscustomer.org',537,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (532,2,'NEIL','RENNER','NEIL.RENNER@dvdscustomer.org',538,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (533,1,'JESSIE','MILAM','JESSIE.MILAM@dvdscustomer.org',539,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (534,1,'CHRISTIAN','JUNG','CHRISTIAN.JUNG@dvdscustomer.org',540,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (535,1,'JAVIER','ELROD','JAVIER.ELROD@dvdscustomer.org',541,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (536,2,'FERNANDO','CHURCHILL','FERNANDO.CHURCHILL@dvdscustomer.org',542,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (537,2,'CLINTON','BUFORD','CLINTON.BUFORD@dvdscustomer.org',543,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (538,2,'TED','BREAUX','TED.BREAUX@dvdscustomer.org',544,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (539,1,'MATHEW','BOLIN','MATHEW.BOLIN@dvdscustomer.org',545,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (540,1,'TYRONE','ASHER','TYRONE.ASHER@dvdscustomer.org',546,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (541,2,'DARREN','WINDHAM','DARREN.WINDHAM@dvdscustomer.org',547,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (542,2,'LONNIE','TIRADO','LONNIE.TIRADO@dvdscustomer.org',548,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (543,1,'LANCE','PEMBERTON','LANCE.PEMBERTON@dvdscustomer.org',549,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (544,2,'CODY','NOLEN','CODY.NOLEN@dvdscustomer.org',550,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (545,2,'JULIO','NOLAND','JULIO.NOLAND@dvdscustomer.org',551,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (546,1,'KELLY','KNOTT','KELLY.KNOTT@dvdscustomer.org',552,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (547,1,'KURT','EMMONS','KURT.EMMONS@dvdscustomer.org',553,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (548,1,'ALLAN','CORNISH','ALLAN.CORNISH@dvdscustomer.org',554,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (549,1,'NELSON','CHRISTENSON','NELSON.CHRISTENSON@dvdscustomer.org',555,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (550,2,'GUY','BROWNLEE','GUY.BROWNLEE@dvdscustomer.org',556,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (551,2,'CLAYTON','BARBEE','CLAYTON.BARBEE@dvdscustomer.org',557,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (552,2,'HUGH','WALDROP','HUGH.WALDROP@dvdscustomer.org',558,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (553,1,'MAX','PITT','MAX.PITT@dvdscustomer.org',559,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (554,1,'DWAYNE','OLVERA','DWAYNE.OLVERA@dvdscustomer.org',560,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (555,1,'DWIGHT','LOMBARDI','DWIGHT.LOMBARDI@dvdscustomer.org',561,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (556,2,'ARMANDO','GRUBER','ARMANDO.GRUBER@dvdscustomer.org',562,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (557,1,'FELIX','GAFFNEY','FELIX.GAFFNEY@dvdscustomer.org',563,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (558,1,'JIMMIE','EGGLESTON','JIMMIE.EGGLESTON@dvdscustomer.org',564,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (559,2,'EVERETT','BANDA','EVERETT.BANDA@dvdscustomer.org',565,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (560,1,'JORDAN','ARCHULETA','JORDAN.ARCHULETA@dvdscustomer.org',566,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (561,2,'IAN','STILL','IAN.STILL@dvdscustomer.org',567,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (562,1,'WALLACE','SLONE','WALLACE.SLONE@dvdscustomer.org',568,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (563,2,'KEN','PREWITT','KEN.PREWITT@dvdscustomer.org',569,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (564,2,'BOB','PFEIFFER','BOB.PFEIFFER@dvdscustomer.org',570,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (565,2,'JAIME','NETTLES','JAIME.NETTLES@dvdscustomer.org',571,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (566,1,'CASEY','MENA','CASEY.MENA@dvdscustomer.org',572,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (567,2,'ALFREDO','MCADAMS','ALFREDO.MCADAMS@dvdscustomer.org',573,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (568,2,'ALBERTO','HENNING','ALBERTO.HENNING@dvdscustomer.org',574,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (569,2,'DAVE','GARDINER','DAVE.GARDINER@dvdscustomer.org',575,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (570,2,'IVAN','CROMWELL','IVAN.CROMWELL@dvdscustomer.org',576,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (571,2,'JOHNNIE','CHISHOLM','JOHNNIE.CHISHOLM@dvdscustomer.org',577,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (572,1,'SIDNEY','BURLESON','SIDNEY.BURLESON@dvdscustomer.org',578,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (573,1,'BYRON','BOX','BYRON.BOX@dvdscustomer.org',579,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (574,2,'JULIAN','VEST','JULIAN.VEST@dvdscustomer.org',580,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (575,2,'ISAAC','OGLESBY','ISAAC.OGLESBY@dvdscustomer.org',581,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (576,2,'MORRIS','MCCARTER','MORRIS.MCCARTER@dvdscustomer.org',582,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (577,2,'CLIFTON','MALCOLM','CLIFTON.MALCOLM@dvdscustomer.org',583,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (578,2,'WILLARD','LUMPKIN','WILLARD.LUMPKIN@dvdscustomer.org',584,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (579,2,'DARYL','LARUE','DARYL.LARUE@dvdscustomer.org',585,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (580,1,'ROSS','GREY','ROSS.GREY@dvdscustomer.org',586,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (581,1,'VIRGIL','WOFFORD','VIRGIL.WOFFORD@dvdscustomer.org',587,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (582,2,'ANDY','VANHORN','ANDY.VANHORN@dvdscustomer.org',588,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (583,1,'MARSHALL','THORN','MARSHALL.THORN@dvdscustomer.org',589,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (584,2,'SALVADOR','TEEL','SALVADOR.TEEL@dvdscustomer.org',590,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (585,1,'PERRY','SWAFFORD','PERRY.SWAFFORD@dvdscustomer.org',591,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (586,1,'KIRK','STCLAIR','KIRK.STCLAIR@dvdscustomer.org',592,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (587,1,'SERGIO','STANFIELD','SERGIO.STANFIELD@dvdscustomer.org',593,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (588,1,'MARION','OCAMPO','MARION.OCAMPO@dvdscustomer.org',594,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (589,1,'TRACY','HERRMANN','TRACY.HERRMANN@dvdscustomer.org',595,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (590,2,'SETH','HANNON','SETH.HANNON@dvdscustomer.org',596,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (591,1,'KENT','ARSENAULT','KENT.ARSENAULT@dvdscustomer.org',597,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (592,1,'TERRANCE','ROUSH','TERRANCE.ROUSH@dvdscustomer.org',598,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (593,2,'RENE','MCALISTER','RENE.MCALISTER@dvdscustomer.org',599,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (594,1,'EDUARDO','HIATT','EDUARDO.HIATT@dvdscustomer.org',600,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (595,1,'TERRENCE','GUNDERSON','TERRENCE.GUNDERSON@dvdscustomer.org',601,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (596,1,'ENRIQUE','FORSYTHE','ENRIQUE.FORSYTHE@dvdscustomer.org',602,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (597,1,'FREDDIE','DUGGAN','FREDDIE.DUGGAN@dvdscustomer.org',603,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (598,1,'WADE','DELVALLE','WADE.DELVALLE@dvdscustomer.org',604,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), - (599,2,'AUSTIN','CINTRON','AUSTIN.CINTRON@dvdscustomer.org',605,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'); -COMMIT; - --- --- Trigger to enforce create dates on INSERT --- - -CREATE TRIGGER customer_create_date BEFORE INSERT ON customer - FOR EACH ROW SET NEW.create_date = NOW(); - --- --- Dumping data for table film --- - -SET AUTOCOMMIT=0; -INSERT INTO film 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,6,'0.99',86,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (2,'ACE GOLDFINGER','A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China',2006,1,NULL,3,'4.99',48,'12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (3,'ADAPTATION HOLES','A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory',2006,1,NULL,7,'2.99',50,'18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (4,'AFFAIR PREJUDICE','A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank',2006,1,NULL,5,'2.99',117,'26.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',130,'22.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (6,'AGENT TRUMAN','A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China',2006,1,NULL,3,'2.99',169,'17.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (7,'AIRPLANE SIERRA','A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat',2006,1,NULL,6,'4.99',62,'28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (8,'AIRPORT POLLOCK','A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India',2006,1,NULL,6,'4.99',54,'15.99','R','Trailers','2006-02-15 05:03:42'), - (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,3,'2.99',114,'21.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (10,'ALADDIN CALENDAR','A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China',2006,1,NULL,6,'4.99',63,'24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',126,'16.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (12,'ALASKA PHANTOM','A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia',2006,1,NULL,6,'0.99',136,'22.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',150,'21.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',94,'23.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',46,'10.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (16,'ALLEY EVOLUTION','A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans',2006,1,NULL,6,'2.99',180,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',82,'14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',57,'27.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (19,'AMADEUS HOLY','A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon',2006,1,NULL,6,'0.99',113,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (20,'AMELIE HELLFIGHTERS','A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon',2006,1,NULL,4,'4.99',79,'23.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',129,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (22,'AMISTAD MIDSUMMER','A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California',2006,1,NULL,6,'2.99',85,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (23,'ANACONDA CONFESSIONS','A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia',2006,1,NULL,3,'0.99',92,'9.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',181,'19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (25,'ANGELS LIFE','A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin',2006,1,NULL,3,'2.99',74,'15.99','G','Trailers','2006-02-15 05:03:42'), - (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,3,'0.99',86,'15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',179,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',91,'16.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (29,'ANTITRUST TOMATOES','A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India',2006,1,NULL,5,'2.99',168,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',82,'27.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',119,'11.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,5,'2.99',153,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (34,'ARABIA DOGMA','A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria',2006,1,NULL,6,'0.99',62,'29.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',147,'24.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',127,'12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'2.99',121,'28.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (38,'ARK RIDGEMONT','A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert',2006,1,NULL,6,'0.99',68,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',99,'10.99','G','Trailers','2006-02-15 05:03:42'), - (40,'ARMY FLINTSTONES','A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria',2006,1,NULL,4,'0.99',148,'22.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (41,'ARSENIC INDEPENDENCE','A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin',2006,1,NULL,4,'0.99',137,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (42,'ARTIST COLDBLOODED','A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California',2006,1,NULL,5,'2.99',170,'10.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',170,'15.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',113,'21.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (45,'ATTRACTION NEWTON','A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan',2006,1,NULL,5,'4.99',83,'14.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',153,'23.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,3,'4.99',118,'24.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',162,'22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (50,'BAKED CLEOPATRA','A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery',2006,1,NULL,3,'2.99',182,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',75,'10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (52,'BALLROOM MOCKINGBIRD','A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California',2006,1,NULL,6,'0.99',173,'29.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',87,'25.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',113,'15.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (55,'BARBARELLA STREETCAR','A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery',2006,1,NULL,6,'2.99',65,'27.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',129,'15.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',90,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',122,'16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',160,'20.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (60,'BEAST HUNCHBACK','A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China',2006,1,NULL,3,'4.99',89,'22.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',175,'28.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,5,'2.99',106,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',73,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',151,'26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (65,'BEHAVIOR RUNAWAY','A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin',2006,1,NULL,3,'4.99',100,'20.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',53,'27.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (67,'BERETS AGENT','A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China',2006,1,NULL,5,'2.99',77,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',122,'26.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',85,'21.99','R','Trailers','2006-02-15 05:03:42'), - (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,7,'4.99',142,'26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',100,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',93,'12.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (73,'BINGO TALENTED','A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria',2006,1,NULL,5,'2.99',150,'22.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (74,'BIRCH ANTITRUST','A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon',2006,1,NULL,4,'4.99',162,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (75,'BIRD INDEPENDENCE','A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies',2006,1,NULL,6,'4.99',163,'14.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (76,'BIRDCAGE CASPER','A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India',2006,1,NULL,4,'0.99',103,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (77,'BIRDS PERDITION','A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California',2006,1,NULL,5,'4.99',61,'15.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',85,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',114,'10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (80,'BLANKET BEVERLY','A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria',2006,1,NULL,7,'2.99',148,'21.99','G','Trailers','2006-02-15 05:03:42'), - (81,'BLINDNESS GUN','A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat',2006,1,NULL,6,'4.99',103,'29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (82,'BLOOD ARGONAUTS','A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse',2006,1,NULL,3,'0.99',71,'13.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',50,'18.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (84,'BOILED DARES','A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan',2006,1,NULL,7,'4.99',102,'13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (85,'BONNIE HOLOCAUST','A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan',2006,1,NULL,4,'0.99',63,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',121,'11.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',76,'14.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (88,'BORN SPINAL','A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria',2006,1,NULL,7,'4.99',179,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',63,'22.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (90,'BOULEVARD MOB','A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China',2006,1,NULL,3,'0.99',63,'11.99','R','Trailers','2006-02-15 05:03:42'), - (91,'BOUND CHEAPER','A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon',2006,1,NULL,5,'0.99',98,'17.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (92,'BOWFINGER GABLES','A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California',2006,1,NULL,7,'4.99',72,'19.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (93,'BRANNIGAN SUNRISE','A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin',2006,1,NULL,4,'4.99',121,'27.99','PG','Trailers','2006-02-15 05:03:42'), - (94,'BRAVEHEART HUMAN','A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin',2006,1,NULL,7,'2.99',176,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (95,'BREAKFAST GOLDFINGER','A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin',2006,1,NULL,5,'4.99',123,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',169,'21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (97,'BRIDE INTRIGUE','A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans',2006,1,NULL,7,'0.99',56,'24.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (98,'BRIGHT ENCOUNTERS','A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat',2006,1,NULL,4,'4.99',73,'12.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,7,'2.99',136,'14.99','PG','Trailers','2006-02-15 05:03:42'), - (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,7,'4.99',161,'21.99','R','Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',73,'26.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (102,'BUBBLE GROSSE','A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon',2006,1,NULL,4,'4.99',60,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (103,'BUCKET BROTHERHOOD','A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory',2006,1,NULL,7,'4.99',133,'27.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',119,'17.99','G','Commentaries','2006-02-15 05:03:42'), - (105,'BULL SHAWSHANK','A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies',2006,1,NULL,6,'0.99',125,'21.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',61,'14.99','G','Trailers','2006-02-15 05:03:42'), - (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,4,'2.99',63,'13.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (108,'BUTCH PANTHER','A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans',2006,1,NULL,6,'0.99',67,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (109,'BUTTERFLY CHOCOLAT','A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank',2006,1,NULL,3,'0.99',89,'17.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',53,'25.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (111,'CADDYSHACK JEDI','A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia',2006,1,NULL,3,'0.99',52,'17.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (112,'CALENDAR GUNFIGHT','A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria',2006,1,NULL,4,'4.99',120,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',75,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',61,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',167,'27.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',70,'10.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',135,'15.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (118,'CANYON STOCK','A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse',2006,1,NULL,7,'0.99',85,'26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (119,'CAPER MOTIONS','A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention',2006,1,NULL,6,'0.99',176,'22.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (121,'CAROL TEXAS','A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery',2006,1,NULL,4,'2.99',151,'15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (122,'CARRIE BUNCH','A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies',2006,1,NULL,7,'0.99',114,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',85,'22.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (124,'CASPER DRAGONFLY','A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert',2006,1,NULL,3,'4.99',163,'16.99','PG-13','Trailers','2006-02-15 05:03:42'), - (125,'CASSIDY WYOMING','A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans',2006,1,NULL,5,'2.99',61,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',179,'16.99','G','Trailers','2006-02-15 05:03:42'), - (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,5,'4.99',112,'14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (128,'CATCH AMISTAD','A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria',2006,1,NULL,7,'0.99',183,'10.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',179,'16.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',110,'24.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (131,'CENTER DINOSAUR','A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California',2006,1,NULL,5,'4.99',152,'12.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (132,'CHAINSAW UPTOWN','A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia',2006,1,NULL,6,'0.99',114,'25.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (133,'CHAMBER ITALIAN','A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria',2006,1,NULL,7,'4.99',117,'14.99','NC-17','Trailers','2006-02-15 05:03:42'), - (134,'CHAMPION FLATLINERS','A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery',2006,1,NULL,4,'4.99',51,'21.99','PG','Trailers','2006-02-15 05:03:42'), - (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,3,'2.99',70,'22.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (136,'CHAPLIN LICENSE','A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India',2006,1,NULL,7,'2.99',146,'26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',66,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',71,'29.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',114,'21.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (140,'CHEAPER CLYDE','A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan',2006,1,NULL,6,'0.99',87,'23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (141,'CHICAGO NORTH','A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California',2006,1,NULL,6,'4.99',185,'11.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (142,'CHICKEN HELLFIGHTERS','A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia',2006,1,NULL,3,'0.99',122,'24.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',142,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (144,'CHINATOWN GLADIATOR','A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India',2006,1,NULL,7,'4.99',61,'24.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (145,'CHISUM BEHAVIOR','A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India',2006,1,NULL,5,'4.99',124,'25.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',107,'24.99','G','Commentaries','2006-02-15 05:03:42'), - (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,5,'0.99',101,'16.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',132,'13.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',150,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',101,'9.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (151,'CINCINATTI WHISPERER','A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin',2006,1,NULL,5,'4.99',143,'26.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (152,'CIRCUS YOUTH','A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon',2006,1,NULL,5,'2.99',90,'13.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',165,'18.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (154,'CLASH FREDDY','A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia',2006,1,NULL,6,'2.99',81,'12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',150,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (156,'CLERKS ANGELS','A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon',2006,1,NULL,3,'4.99',164,'15.99','G','Commentaries','2006-02-15 05:03:42'), - (157,'CLOCKWORK PARADISE','A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon',2006,1,NULL,7,'0.99',143,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (158,'CLONES PINOCCHIO','A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans',2006,1,NULL,6,'2.99',124,'16.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (159,'CLOSER BANG','A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India',2006,1,NULL,5,'4.99',58,'12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (160,'CLUB GRAFFITI','A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat',2006,1,NULL,4,'0.99',65,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (161,'CLUE GRAIL','A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China',2006,1,NULL,6,'4.99',70,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',95,'13.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (163,'CLYDE THEORY','A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat',2006,1,NULL,4,'0.99',139,'29.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',55,'20.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',70,'27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (166,'COLOR PHILADELPHIA','A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert',2006,1,NULL,6,'2.99',149,'19.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (167,'COMA HEAD','A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California',2006,1,NULL,6,'4.99',109,'10.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,5,'0.99',67,'23.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',76,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',120,'28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',59,'13.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (172,'CONEHEADS SMOOCHY','A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria',2006,1,NULL,7,'4.99',112,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (173,'CONFESSIONS MAGUIRE','A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon',2006,1,NULL,7,'4.99',65,'25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (174,'CONFIDENTIAL INTERVIEW','A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan',2006,1,NULL,6,'4.99',180,'13.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (175,'CONFUSED CANDLES','A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon',2006,1,NULL,3,'2.99',122,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (176,'CONGENIALITY QUEST','A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon',2006,1,NULL,6,'0.99',87,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',172,'20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',115,'25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',173,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',184,'27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',166,'10.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (182,'CONTROL ANTHEM','A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery',2006,1,NULL,7,'4.99',185,'9.99','G','Commentaries','2006-02-15 05:03:42'), - (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,4,'4.99',112,'14.99','R','Commentaries','2006-02-15 05:03:42'), - (184,'CORE SUIT','A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse',2006,1,NULL,3,'2.99',92,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (185,'COWBOY DOOM','A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon',2006,1,NULL,3,'2.99',146,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',64,'17.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',57,'12.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (188,'CRAZY HOME','A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback',2006,1,NULL,7,'2.99',136,'24.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (189,'CREATURES SHAKESPEARE','A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India',2006,1,NULL,3,'0.99',139,'23.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',172,'23.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',143,'27.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (192,'CROSSING DIVORCE','A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin',2006,1,NULL,4,'4.99',50,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (193,'CROSSROADS CASUALTIES','A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback',2006,1,NULL,5,'2.99',153,'20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',104,'22.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',112,'16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (196,'CRUELTY UNFORGIVEN','A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria',2006,1,NULL,7,'0.99',69,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',112,'27.99','R','Commentaries','2006-02-15 05:03:42'), - (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,6,'2.99',184,'22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',56,'29.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',133,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (201,'CYCLONE FAMILY','A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention',2006,1,NULL,7,'2.99',176,'18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',161,'26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',84,'9.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (204,'DALMATIONS SWEDEN','A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse',2006,1,NULL,4,'0.99',106,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',58,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',144,'25.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (207,'DANGEROUS UPTOWN','A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California',2006,1,NULL,7,'4.99',121,'26.99','PG','Commentaries','2006-02-15 05:03:42'), - (208,'DARES PLUTO','A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans',2006,1,NULL,7,'2.99',89,'16.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (209,'DARKNESS WAR','A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert',2006,1,NULL,6,'2.99',99,'24.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (210,'DARKO DORADO','A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans',2006,1,NULL,3,'4.99',130,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',165,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',185,'14.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (213,'DATE SPEED','A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention',2006,1,NULL,4,'0.99',104,'19.99','R','Commentaries','2006-02-15 05:03:42'), - (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,3,'4.99',59,'13.99','PG-13','Trailers','2006-02-15 05:03:42'), - (215,'DAWN POND','A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin',2006,1,NULL,4,'4.99',57,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',113,'16.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',120,'20.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (218,'DECEIVER BETRAYED','A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India',2006,1,NULL,7,'0.99',122,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (219,'DEEP CRUSADE','A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia',2006,1,NULL,6,'4.99',51,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',106,'13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (221,'DELIVERANCE MULHOLLAND','A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank',2006,1,NULL,4,'0.99',100,'9.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (222,'DESERT POSEIDON','A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans',2006,1,NULL,4,'4.99',64,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',76,'24.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (224,'DESPERATE TRAINSPOTTING','A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California',2006,1,NULL,7,'4.99',81,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (225,'DESTINATION JERK','A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat',2006,1,NULL,3,'0.99',76,'19.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (226,'DESTINY SATURDAY','A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia',2006,1,NULL,4,'4.99',56,'20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (227,'DETAILS PACKER','A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat',2006,1,NULL,4,'4.99',88,'17.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (228,'DETECTIVE VISION','A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan',2006,1,NULL,4,'0.99',143,'16.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (229,'DEVIL DESIRE','A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan',2006,1,NULL,6,'4.99',87,'12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',107,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',63,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',147,'29.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',141,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (234,'DISTURBING SCARFACE','A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat',2006,1,NULL,6,'2.99',94,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (235,'DIVIDE MONSTER','A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery',2006,1,NULL,6,'2.99',68,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',100,'19.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (237,'DIVORCE SHINING','A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India',2006,1,NULL,3,'2.99',47,'21.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (238,'DOCTOR GRAIL','A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback',2006,1,NULL,4,'2.99',57,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',122,'16.99','G','Commentaries','2006-02-15 05:03:42'), - (240,'DOLLS RAGE','A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback',2006,1,NULL,7,'2.99',120,'10.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (241,'DONNIE ALLEY','A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan',2006,1,NULL,4,'0.99',125,'20.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',68,'13.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'4.99',49,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',139,'26.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,4,'0.99',177,'28.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',154,'16.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',47,'19.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (248,'DOZEN LION','A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies',2006,1,NULL,6,'4.99',177,'20.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',176,'26.99','G','Commentaries','2006-02-15 05:03:42'), - (250,'DRAGON SQUAD','A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China',2006,1,NULL,4,'0.99',170,'26.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (251,'DRAGONFLY STRANGERS','A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria',2006,1,NULL,6,'4.99',133,'19.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',135,'18.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (253,'DRIFTER COMMANDMENTS','A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat',2006,1,NULL,5,'4.99',61,'18.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',159,'11.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',175,'21.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (256,'DROP WATERFRONT','A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China',2006,1,NULL,6,'4.99',178,'20.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',110,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',96,'11.99','PG','Trailers','2006-02-15 05:03:42'), - (259,'DUCK RACER','A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank',2006,1,NULL,4,'2.99',116,'15.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',132,'9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (261,'DUFFEL APOCALYPSE','A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention',2006,1,NULL,5,'0.99',171,'13.99','G','Commentaries','2006-02-15 05:03:42'), - (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,5,'0.99',119,'17.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',154,'14.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (264,'DWARFS ALTER','A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan',2006,1,NULL,6,'2.99',101,'13.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (265,'DYING MAKER','A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California',2006,1,NULL,5,'4.99',168,'28.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',141,'27.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',140,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (268,'EARLY HOME','A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback',2006,1,NULL,6,'4.99',96,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (269,'EARRING INSTINCT','A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria',2006,1,NULL,3,'0.99',98,'22.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (270,'EARTH VISION','A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India',2006,1,NULL,7,'0.99',85,'29.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (271,'EASY GLADIATOR','A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India',2006,1,NULL,5,'4.99',148,'12.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',153,'9.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',107,'14.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',67,'20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',85,'11.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',115,'28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (277,'ELEPHANT TROJAN','A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon',2006,1,NULL,4,'4.99',126,'24.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',155,'19.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (279,'ELIZABETH SHANE','A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan',2006,1,NULL,7,'4.99',152,'11.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',177,'26.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (281,'ENCINO ELF','A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon',2006,1,NULL,6,'0.99',143,'9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (282,'ENCOUNTERS CURTAIN','A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans',2006,1,NULL,5,'0.99',92,'20.99','NC-17','Trailers','2006-02-15 05:03:42'), - (283,'ENDING CROWDS','A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin',2006,1,NULL,6,'0.99',85,'10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (284,'ENEMY ODDS','A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India',2006,1,NULL,5,'4.99',77,'23.99','NC-17','Trailers','2006-02-15 05:03:42'), - (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,3,'0.99',51,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',158,'16.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,5,'0.99',176,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (288,'ESCAPE METROPOLIS','A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans',2006,1,NULL,7,'2.99',167,'20.99','R','Trailers','2006-02-15 05:03:42'), - (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,5,'4.99',66,'25.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (290,'EVERYONE CRAFT','A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria',2006,1,NULL,4,'0.99',163,'29.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,5,'0.99',174,'10.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (292,'EXCITEMENT EVE','A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank',2006,1,NULL,3,'0.99',51,'20.99','G','Commentaries','2006-02-15 05:03:42'), - (293,'EXORCIST STING','A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin',2006,1,NULL,6,'2.99',167,'17.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',138,'26.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',97,'14.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (296,'EXPRESS LONELY','A Boring Drama of a Astronaut And a Boat who must Face a Boat in California',2006,1,NULL,5,'2.99',178,'23.99','R','Trailers','2006-02-15 05:03:42'), - (297,'EXTRAORDINARY CONQUERER','A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin',2006,1,NULL,6,'2.99',122,'29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (298,'EYES DRIVING','A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback',2006,1,NULL,4,'2.99',172,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'0.99',144,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',102,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (301,'FAMILY SWEET','A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin',2006,1,NULL,4,'0.99',155,'24.99','R','Trailers','2006-02-15 05:03:42'), - (302,'FANTASIA PARK','A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia',2006,1,NULL,5,'2.99',131,'29.99','G','Commentaries','2006-02-15 05:03:42'), - (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,6,'0.99',58,'27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (304,'FARGO GANDHI','A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback',2006,1,NULL,3,'2.99',130,'28.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (305,'FATAL HAUNTED','A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan',2006,1,NULL,6,'2.99',91,'24.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (306,'FEATHERS METAL','A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia',2006,1,NULL,3,'0.99',104,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (307,'FELLOWSHIP AUTUMN','A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon',2006,1,NULL,6,'4.99',77,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',142,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',98,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',158,'20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',72,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',75,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',118,'11.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (314,'FIGHT JAWBREAKER','A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse',2006,1,NULL,3,'0.99',91,'13.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (315,'FINDING ANACONDA','A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans',2006,1,NULL,4,'0.99',156,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (316,'FIRE WOLVES','A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria',2006,1,NULL,5,'4.99',173,'18.99','R','Trailers','2006-02-15 05:03:42'), - (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,4,'0.99',148,'25.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',103,'14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (319,'FISH OPUS','A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia',2006,1,NULL,4,'2.99',125,'22.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',80,'28.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,3,'4.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',100,'29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (323,'FLIGHT LIES','A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans',2006,1,NULL,7,'4.99',179,'22.99','R','Trailers','2006-02-15 05:03:42'), - (324,'FLINTSTONES HAPPINESS','A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California',2006,1,NULL,3,'4.99',148,'11.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (325,'FLOATS GARDEN','A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan',2006,1,NULL,6,'2.99',145,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (326,'FLYING HOOK','A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria',2006,1,NULL,6,'2.99',69,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (327,'FOOL MOCKINGBIRD','A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat',2006,1,NULL,3,'4.99',158,'24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',131,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',63,'15.99','R','Commentaries','2006-02-15 05:03:42'), - (330,'FORRESTER COMANCHEROS','A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria',2006,1,NULL,7,'4.99',112,'22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',90,'25.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (332,'FRANKENSTEIN STRANGER','A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria',2006,1,NULL,7,'0.99',159,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',126,'16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (334,'FREDDY STORM','A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback',2006,1,NULL,6,'4.99',65,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (335,'FREEDOM CLEOPATRA','A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon',2006,1,NULL,5,'0.99',133,'23.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (336,'FRENCH HOLIDAY','A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin',2006,1,NULL,5,'4.99',99,'22.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',73,'11.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',51,'23.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (339,'FROGMEN BREAKING','A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia',2006,1,NULL,5,'0.99',111,'17.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',183,'14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (341,'FROST HEAD','A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention',2006,1,NULL,5,'0.99',82,'13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (342,'FUGITIVE MAGUIRE','A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia',2006,1,NULL,7,'4.99',83,'28.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (343,'FULL FLATLINERS','A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank',2006,1,NULL,6,'2.99',94,'14.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (344,'FURY MURDER','A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery',2006,1,NULL,3,'0.99',178,'28.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',161,'17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (346,'GALAXY SWEETHEARTS','A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin',2006,1,NULL,4,'4.99',128,'13.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (347,'GAMES BOWFINGER','A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery',2006,1,NULL,7,'4.99',119,'17.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (348,'GANDHI KWAI','A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin',2006,1,NULL,7,'0.99',86,'9.99','PG-13','Trailers','2006-02-15 05:03:42'), - (349,'GANGS PRIDE','A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin',2006,1,NULL,4,'2.99',185,'27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (350,'GARDEN ISLAND','A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback',2006,1,NULL,3,'4.99',80,'21.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',106,'10.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (352,'GATHERING CALENDAR','A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention',2006,1,NULL,4,'0.99',176,'22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',125,'22.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (354,'GHOST GROUNDHOG','A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India',2006,1,NULL,6,'4.99',85,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (355,'GHOSTBUSTERS ELF','A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin',2006,1,NULL,7,'0.99',101,'18.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (356,'GIANT TROOPERS','A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies',2006,1,NULL,5,'2.99',102,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (357,'GILBERT PELICAN','A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse',2006,1,NULL,7,'0.99',114,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (358,'GILMORE BOILED','A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat',2006,1,NULL,5,'0.99',163,'29.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (359,'GLADIATOR WESTWARD','A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan',2006,1,NULL,6,'4.99',173,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (360,'GLASS DYING','A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan',2006,1,NULL,4,'0.99',103,'24.99','G','Trailers','2006-02-15 05:03:42'), - (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,5,'2.99',89,'25.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',115,'13.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',54,'12.99','R','Trailers','2006-02-15 05:03:42'), - (364,'GODFATHER DIARY','A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback',2006,1,NULL,3,'2.99',73,'14.99','NC-17','Trailers','2006-02-15 05:03:42'), - (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,4,'4.99',154,'21.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',93,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (367,'GOLDMINE TYCOON','A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback',2006,1,NULL,6,'0.99',153,'20.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',84,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',56,'22.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',108,'26.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (371,'GOSFORD DONNIE','A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin',2006,1,NULL,5,'4.99',129,'17.99','G','Commentaries','2006-02-15 05:03:42'), - (372,'GRACELAND DYNAMITE','A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans',2006,1,NULL,5,'4.99',140,'26.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',156,'14.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (374,'GRAFFITI LOVE','A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin',2006,1,NULL,3,'0.99',117,'29.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',85,'17.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (376,'GRAPES FURY','A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia',2006,1,NULL,4,'0.99',155,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (377,'GREASE YOUTH','A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia',2006,1,NULL,7,'0.99',135,'20.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',93,'24.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',166,'14.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',176,'11.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',150,'25.99','R','Trailers','2006-02-15 05:03:42'), - (382,'GRIT CLOCKWORK','A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank',2006,1,NULL,3,'0.99',137,'21.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',111,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (384,'GROSSE WONDERFUL','A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia',2006,1,NULL,5,'4.99',49,'19.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',139,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',53,'12.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',100,'27.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',70,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (389,'GUNFIGHTER MUSSOLINI','A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan',2006,1,NULL,3,'2.99',127,'9.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (390,'GUYS FALCON','A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat',2006,1,NULL,4,'4.99',84,'20.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',146,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',51,'13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',47,'19.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (394,'HAMLET WISDOM','A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback',2006,1,NULL,7,'2.99',146,'21.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (395,'HANDICAP BOONDOCK','A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia',2006,1,NULL,4,'0.99',108,'28.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (396,'HANGING DEEP','A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin',2006,1,NULL,5,'4.99',62,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (397,'HANKY OCTOBER','A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia',2006,1,NULL,5,'2.99',107,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',47,'21.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',100,'23.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (400,'HARDLY ROBBERS','A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin',2006,1,NULL,7,'2.99',72,'15.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',168,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',52,'15.99','G','Trailers','2006-02-15 05:03:42'), - (403,'HARRY IDAHO','A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California',2006,1,NULL,5,'4.99',121,'18.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',107,'26.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (405,'HAUNTED ANTITRUST','A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India',2006,1,NULL,6,'4.99',76,'13.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',181,'22.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (407,'HAWK CHILL','A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia',2006,1,NULL,5,'0.99',47,'12.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',69,'28.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'4.99',59,'9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (410,'HEAVEN FREEDOM','A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans',2006,1,NULL,7,'2.99',48,'19.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,5,'4.99',49,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',102,'25.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',169,'16.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (414,'HELLFIGHTERS SIERRA','A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia',2006,1,NULL,3,'2.99',75,'23.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (415,'HIGH ENCINO','A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia',2006,1,NULL,3,'2.99',84,'23.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',110,'10.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (417,'HILLS NEIGHBORS','A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat',2006,1,NULL,5,'0.99',93,'29.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',157,'27.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',141,'19.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',128,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (421,'HOLIDAY GAMES','A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan',2006,1,NULL,7,'4.99',78,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (422,'HOLLOW JEOPARDY','A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery',2006,1,NULL,7,'4.99',136,'25.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',69,'29.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (424,'HOLOCAUST HIGHBALL','A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia',2006,1,NULL,6,'0.99',149,'12.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',88,'20.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',185,'15.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (427,'HOMEWARD CIDER','A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse',2006,1,NULL,5,'0.99',103,'19.99','R','Trailers','2006-02-15 05:03:42'), - (428,'HOMICIDE PEACH','A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention',2006,1,NULL,6,'2.99',141,'21.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (429,'HONEY TIES','A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank',2006,1,NULL,3,'0.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (430,'HOOK CHARIOTS','A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia',2006,1,NULL,7,'0.99',49,'23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',176,'12.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',139,'22.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',95,'23.99','PG','Trailers','2006-02-15 05:03:42'), - (434,'HORROR REIGN','A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria',2006,1,NULL,3,'0.99',139,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',181,'28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (436,'HOURS RAGE','A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia',2006,1,NULL,4,'0.99',122,'14.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (437,'HOUSE DYNAMITE','A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia',2006,1,NULL,7,'2.99',109,'13.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',68,'22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (439,'HUNCHBACK IMPOSSIBLE','A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan',2006,1,NULL,4,'4.99',151,'28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',105,'21.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',125,'21.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',65,'24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',49,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',83,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (445,'HYDE DOCTOR','A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat',2006,1,NULL,5,'2.99',100,'11.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (446,'HYSTERICAL GRAIL','A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse',2006,1,NULL,5,'4.99',150,'19.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',131,'28.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',172,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (449,'IDENTITY LOVER','A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback',2006,1,NULL,4,'2.99',119,'12.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (450,'IDOLS SNATCHERS','A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery',2006,1,NULL,5,'2.99',84,'29.99','NC-17','Trailers','2006-02-15 05:03:42'), - (451,'IGBY MAKER','A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory',2006,1,NULL,7,'4.99',160,'12.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',122,'15.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',178,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',180,'20.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (455,'IMPOSSIBLE PREJUDICE','A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China',2006,1,NULL,7,'4.99',103,'11.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (456,'INCH JET','A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery',2006,1,NULL,6,'4.99',167,'18.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (457,'INDEPENDENCE HOTEL','A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery',2006,1,NULL,5,'0.99',157,'21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',135,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',74,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (460,'INNOCENT USUAL','A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback',2006,1,NULL,3,'4.99',178,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (461,'INSECTS STONE','A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse',2006,1,NULL,3,'0.99',123,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',78,'17.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',116,'21.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',107,'13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',59,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',63,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',181,'10.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',97,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',46,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',79,'24.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',84,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'4.99',174,'24.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (473,'JACKET FRISCO','A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon',2006,1,NULL,5,'2.99',181,'16.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',174,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (475,'JAPANESE RUN','A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback',2006,1,NULL,6,'0.99',135,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (476,'JASON TRAP','A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery',2006,1,NULL,5,'2.99',130,'9.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',118,'15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',112,'10.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (479,'JEDI BENEATH','A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria',2006,1,NULL,7,'0.99',128,'12.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (480,'JEEPERS WEDDING','A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia',2006,1,NULL,3,'2.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (481,'JEKYLL FROGMEN','A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank',2006,1,NULL,4,'2.99',58,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (482,'JEOPARDY ENCINO','A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India',2006,1,NULL,3,'0.99',102,'12.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (483,'JERICHO MULAN','A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat',2006,1,NULL,3,'2.99',171,'29.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,3,'2.99',172,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (485,'JERSEY SASSY','A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan',2006,1,NULL,6,'4.99',60,'16.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (486,'JET NEIGHBORS','A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat',2006,1,NULL,7,'4.99',59,'14.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (487,'JINGLE SAGEBRUSH','A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon',2006,1,NULL,6,'4.99',124,'29.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',105,'23.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (489,'JUGGLER HARDLY','A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California',2006,1,NULL,4,'0.99',54,'14.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (490,'JUMANJI BLADE','A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans',2006,1,NULL,4,'2.99',121,'13.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (491,'JUMPING WRATH','A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin',2006,1,NULL,4,'0.99',74,'18.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (492,'JUNGLE CLOSER','A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia',2006,1,NULL,6,'0.99',134,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (493,'KANE EXORCIST','A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin',2006,1,NULL,5,'0.99',92,'18.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (494,'KARATE MOON','A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention',2006,1,NULL,4,'0.99',120,'21.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (495,'KENTUCKIAN GIANT','A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat',2006,1,NULL,5,'2.99',169,'10.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (496,'KICK SAVANNAH','A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans',2006,1,NULL,3,'0.99',179,'10.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (497,'KILL BROTHERHOOD','A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback',2006,1,NULL,4,'0.99',54,'15.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',161,'11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (499,'KING EVOLUTION','A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon',2006,1,NULL,3,'4.99',184,'24.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (500,'KISS GLORY','A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies',2006,1,NULL,5,'4.99',163,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',141,'9.99','R','Trailers','2006-02-15 05:03:42'), - (502,'KNOCK WARLOCK','A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon',2006,1,NULL,4,'2.99',71,'21.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,3,'2.99',171,'24.99','R','Trailers','2006-02-15 05:03:42'), - (504,'KWAI HOMEWARD','A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia',2006,1,NULL,5,'0.99',46,'25.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,6,'2.99',46,'24.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',67,'14.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',113,'13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (508,'LAMBS CINCINATTI','A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia',2006,1,NULL,6,'4.99',144,'18.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',78,'26.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (510,'LAWLESS VISION','A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback',2006,1,NULL,6,'4.99',181,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (511,'LAWRENCE LOVE','A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin',2006,1,NULL,7,'0.99',175,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (512,'LEAGUE HELLFIGHTERS','A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China',2006,1,NULL,5,'4.99',110,'25.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,6,'2.99',153,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (514,'LEBOWSKI SOLDIERS','A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China',2006,1,NULL,6,'2.99',69,'17.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',113,'14.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (516,'LEGEND JEDI','A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback',2006,1,NULL,7,'0.99',59,'18.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (517,'LESSON CLEOPATRA','A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse',2006,1,NULL,3,'0.99',167,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',140,'15.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (519,'LIBERTY MAGNIFICENT','A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon',2006,1,NULL,3,'2.99',138,'27.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (520,'LICENSE WEEKEND','A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery',2006,1,NULL,7,'2.99',91,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',147,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',137,'9.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',174,'21.99','R','Commentaries','2006-02-15 05:03:42'), - (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,6,'0.99',50,'13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',140,'29.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',120,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'4.99',85,'24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',155,'25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (529,'LONELY ELEPHANT','A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia',2006,1,NULL,3,'2.99',67,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',108,'27.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,3,'0.99',137,'18.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (532,'LOSER HUSTLER','A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria',2006,1,NULL,5,'4.99',80,'28.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',98,'21.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',70,'18.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,6,'0.99',181,'21.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (536,'LOVELY JINGLE','A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback',2006,1,NULL,3,'2.99',65,'18.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',75,'29.99','G','Trailers','2006-02-15 05:03:42'), - (538,'LOVERBOY ATTACKS','A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia',2006,1,NULL,7,'0.99',162,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (539,'LUCK OPUS','A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank',2006,1,NULL,7,'2.99',152,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',97,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',74,'21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',52,'28.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',116,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',147,'11.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',178,'14.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,7,'2.99',98,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',117,'19.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (548,'MAGNIFICENT CHITTY','A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California',2006,1,NULL,3,'2.99',53,'27.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (549,'MAGNOLIA FORRESTER','A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans',2006,1,NULL,4,'0.99',171,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',74,'22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'4.99',138,'9.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',130,'15.99','PG','Trailers','2006-02-15 05:03:42'), - (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,4,'0.99',136,'12.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (554,'MALKOVICH PET','A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback',2006,1,NULL,6,'2.99',159,'22.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (555,'MALLRATS UNITED','A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery',2006,1,NULL,4,'0.99',133,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (556,'MALTESE HOPE','A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California',2006,1,NULL,6,'4.99',127,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (557,'MANCHURIAN CURTAIN','A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin',2006,1,NULL,5,'2.99',177,'27.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'2.99',71,'18.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',114,'22.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (560,'MARS ROMAN','A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia',2006,1,NULL,6,'0.99',62,'21.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (561,'MASK PEACH','A Boring Character Study of a Student And a Robot who must Meet a Woman in California',2006,1,NULL,6,'2.99',123,'26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',151,'12.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (563,'MASSACRE USUAL','A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California',2006,1,NULL,6,'4.99',165,'16.99','R','Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',161,'11.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (565,'MATRIX SNOWMAN','A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California',2006,1,NULL,6,'4.99',56,'9.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (566,'MAUDE MOD','A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria',2006,1,NULL,6,'0.99',72,'20.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (567,'MEET CHOCOLATE','A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention',2006,1,NULL,3,'2.99',80,'26.99','G','Trailers','2006-02-15 05:03:42'), - (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,4,'4.99',77,'11.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',147,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (570,'MERMAID INSECTS','A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California',2006,1,NULL,5,'4.99',104,'20.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (571,'METAL ARMAGEDDON','A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory',2006,1,NULL,6,'2.99',161,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',64,'9.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (573,'MICROCOSMOS PARADISE','A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria',2006,1,NULL,6,'2.99',105,'22.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',86,'19.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (575,'MIDSUMMER GROUNDHOG','A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan',2006,1,NULL,3,'4.99',48,'27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',122,'13.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (577,'MILE MULAN','A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention',2006,1,NULL,4,'0.99',64,'10.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',142,'16.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',149,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (580,'MINE TITANS','A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin',2006,1,NULL,3,'4.99',166,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (581,'MINORITY KISS','A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback',2006,1,NULL,4,'0.99',59,'16.99','G','Trailers','2006-02-15 05:03:42'), - (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,3,'2.99',162,'19.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',164,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (584,'MIXED DOORS','A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India',2006,1,NULL,6,'2.99',180,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (585,'MOB DUFFEL','A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies',2006,1,NULL,4,'0.99',105,'25.99','G','Trailers','2006-02-15 05:03:42'), - (586,'MOCKINGBIRD HOLLYWOOD','A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin',2006,1,NULL,4,'0.99',60,'27.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (587,'MOD SECRETARY','A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans',2006,1,NULL,6,'4.99',77,'20.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (588,'MODEL FISH','A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia',2006,1,NULL,4,'4.99',175,'11.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',74,'20.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (590,'MONEY HAROLD','A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia',2006,1,NULL,3,'2.99',135,'17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (591,'MONSOON CAUSE','A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat',2006,1,NULL,6,'4.99',182,'20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (592,'MONSTER SPARTACUS','A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia',2006,1,NULL,6,'2.99',107,'28.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',158,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (594,'MONTEZUMA COMMAND','A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat',2006,1,NULL,6,'0.99',126,'22.99','NC-17','Trailers','2006-02-15 05:03:42'), - (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,7,'0.99',83,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (596,'MOONSHINE CABIN','A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat',2006,1,NULL,4,'4.99',171,'25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (597,'MOONWALKER FOOL','A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans',2006,1,NULL,5,'4.99',184,'12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (598,'MOSQUITO ARMAGEDDON','A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan',2006,1,NULL,6,'0.99',57,'22.99','G','Trailers','2006-02-15 05:03:42'), - (599,'MOTHER OLEANDER','A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China',2006,1,NULL,3,'0.99',103,'20.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,5,'0.99',166,'16.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',79,'20.99','PG-13','Trailers','2006-02-15 05:03:42'), - (602,'MOURNING PURPLE','A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans',2006,1,NULL,5,'0.99',146,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (603,'MOVIE SHAKESPEARE','A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin',2006,1,NULL,6,'4.99',53,'27.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (604,'MULAN MOON','A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon',2006,1,NULL,4,'0.99',160,'10.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',157,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (606,'MUMMY CREATURES','A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia',2006,1,NULL,3,'0.99',160,'15.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',50,'18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',166,'11.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (609,'MUSCLE BRIGHT','A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India',2006,1,NULL,7,'2.99',185,'23.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',129,'17.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (611,'MUSKETEERS WAIT','A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia',2006,1,NULL,7,'4.99',73,'17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (612,'MUSSOLINI SPOILERS','A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China',2006,1,NULL,6,'2.99',180,'10.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (613,'MYSTIC TRUMAN','A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia',2006,1,NULL,5,'0.99',92,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (614,'NAME DETECTIVE','A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria',2006,1,NULL,5,'4.99',178,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',180,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (616,'NATIONAL STORY','A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California',2006,1,NULL,4,'2.99',92,'19.99','NC-17','Trailers','2006-02-15 05:03:42'), - (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,4,'0.99',50,'24.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (618,'NECKLACE OUTBREAK','A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California',2006,1,NULL,3,'0.99',132,'21.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',161,'20.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (620,'NEMO CAMPUS','A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',131,'23.99','NC-17','Trailers','2006-02-15 05:03:42'), - (621,'NETWORK PEAK','A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California',2006,1,NULL,5,'2.99',75,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',159,'25.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',75,'9.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',149,'25.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',83,'18.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,5,'2.99',57,'12.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',67,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',172,'24.99','PG','Trailers','2006-02-15 05:03:42'), - (629,'NOTORIOUS REUNION','A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon',2006,1,NULL,7,'0.99',128,'9.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (630,'NOTTING SPEAKEASY','A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies',2006,1,NULL,7,'0.99',48,'19.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (631,'NOVOCAINE FLIGHT','A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria',2006,1,NULL,4,'0.99',64,'11.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (632,'NUTS TIES','A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California',2006,1,NULL,5,'4.99',145,'10.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (633,'OCTOBER SUBMARINE','A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat',2006,1,NULL,6,'4.99',54,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (634,'ODDS BOOGIE','A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin',2006,1,NULL,6,'0.99',48,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (635,'OKLAHOMA JUMANJI','A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert',2006,1,NULL,7,'0.99',58,'15.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',161,'12.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',131,'16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (638,'OPERATION OPERATION','A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China',2006,1,NULL,7,'2.99',156,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (639,'OPPOSITE NECKLACE','A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria',2006,1,NULL,7,'4.99',92,'9.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',102,'21.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (641,'ORANGE GRAPES','A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat',2006,1,NULL,4,'0.99',76,'21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',120,'13.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',118,'22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (644,'OSCAR GOLD','A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia',2006,1,NULL,7,'2.99',115,'29.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',118,'18.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',169,'12.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',129,'18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (648,'OUTLAW HANKY','A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert',2006,1,NULL,7,'4.99',148,'17.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',85,'14.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',144,'27.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',84,'20.99','PG-13','Trailers','2006-02-15 05:03:42'), - (652,'PAJAMA JAWBREAKER','A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California',2006,1,NULL,3,'0.99',126,'14.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (653,'PANIC CLUB','A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon',2006,1,NULL,3,'4.99',102,'15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',93,'19.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',109,'22.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (656,'PAPI NECKLACE','A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan',2006,1,NULL,3,'0.99',128,'9.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (657,'PARADISE SABRINA','A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse',2006,1,NULL,5,'2.99',48,'12.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (658,'PARIS WEEKEND','A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback',2006,1,NULL,7,'2.99',121,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (659,'PARK CITIZEN','A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan',2006,1,NULL,3,'4.99',109,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',107,'11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (661,'PAST SUICIDES','A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery',2006,1,NULL,5,'4.99',157,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (662,'PATHS CONTROL','A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China',2006,1,NULL,3,'4.99',118,'9.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (663,'PATIENT SISTER','A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia',2006,1,NULL,7,'0.99',99,'29.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (664,'PATRIOT ROMAN','A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California',2006,1,NULL,6,'2.99',65,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (665,'PATTON INTERVIEW','A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin',2006,1,NULL,4,'2.99',175,'22.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,4,'4.99',145,'27.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (667,'PEACH INNOCENT','A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin',2006,1,NULL,3,'2.99',160,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',80,'25.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',74,'10.99','NC-17','Trailers','2006-02-15 05:03:42'), - (670,'PELICAN COMFORTS','A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin',2006,1,NULL,4,'4.99',48,'17.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (671,'PERDITION FARGO','A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin',2006,1,NULL,7,'4.99',99,'27.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (672,'PERFECT GROOVE','A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon',2006,1,NULL,7,'2.99',82,'17.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (673,'PERSONAL LADYBUGS','A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan',2006,1,NULL,3,'0.99',118,'19.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (674,'PET HAUNTING','A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California',2006,1,NULL,3,'0.99',99,'11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (675,'PHANTOM GLORY','A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery',2006,1,NULL,6,'2.99',60,'17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',137,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (677,'PIANIST OUTFIELD','A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery',2006,1,NULL,6,'0.99',136,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',77,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',50,'17.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',103,'21.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',100,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (682,'PITTSBURGH HUNCHBACK','A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia',2006,1,NULL,4,'4.99',134,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (683,'PITY BOUND','A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria',2006,1,NULL,5,'4.99',60,'19.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (684,'PIZZA JUMANJI','A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat',2006,1,NULL,4,'2.99',173,'11.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (685,'PLATOON INSTINCT','A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia',2006,1,NULL,6,'4.99',132,'10.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,5,'4.99',84,'9.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (687,'POCUS PULP','A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory',2006,1,NULL,6,'0.99',138,'15.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',61,'12.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (689,'POLLOCK DELIVERANCE','A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert',2006,1,NULL,5,'2.99',137,'14.99','PG','Commentaries','2006-02-15 05:03:42'), - (690,'POND SEATTLE','A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China',2006,1,NULL,7,'2.99',185,'25.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (691,'POSEIDON FOREVER','A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery',2006,1,NULL,6,'4.99',159,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (692,'POTLUCK MIXED','A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon',2006,1,NULL,3,'2.99',179,'10.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (693,'POTTER CONNECTICUT','A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin',2006,1,NULL,5,'2.99',115,'16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (694,'PREJUDICE OLEANDER','A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat',2006,1,NULL,6,'4.99',98,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (695,'PRESIDENT BANG','A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia',2006,1,NULL,6,'4.99',144,'12.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',114,'20.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',53,'16.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',71,'29.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',106,'26.99','PG','Trailers','2006-02-15 05:03:42'), - (700,'PRIX UNDEFEATED','A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China',2006,1,NULL,4,'2.99',115,'13.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (701,'PSYCHO SHRUNK','A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria',2006,1,NULL,5,'2.99',155,'11.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (702,'PULP BEVERLY','A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria',2006,1,NULL,4,'2.99',89,'12.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',100,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (704,'PURE RUNNER','A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse',2006,1,NULL,3,'2.99',121,'25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',88,'9.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (706,'QUEEN LUKE','A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans',2006,1,NULL,5,'4.99',163,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',177,'29.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (708,'QUILLS BULL','A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia',2006,1,NULL,4,'4.99',112,'19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (709,'RACER EGG','A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California',2006,1,NULL,7,'2.99',147,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',120,'18.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',154,'18.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',82,'11.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (713,'RAINBOW SHOCK','A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India',2006,1,NULL,3,'4.99',74,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (714,'RANDOM GO','A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank',2006,1,NULL,6,'2.99',73,'29.99','NC-17','Trailers','2006-02-15 05:03:42'), - (715,'RANGE MOONWALKER','A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon',2006,1,NULL,3,'4.99',147,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',136,'26.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,6,'0.99',97,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (718,'REBEL AIRPORT','A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India',2006,1,NULL,7,'0.99',73,'24.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (719,'RECORDS ZORRO','A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback',2006,1,NULL,7,'4.99',182,'11.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (720,'REDEMPTION COMFORTS','A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China',2006,1,NULL,3,'2.99',179,'20.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (721,'REDS POCUS','A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia',2006,1,NULL,7,'4.99',182,'23.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (722,'REEF SALUTE','A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon',2006,1,NULL,5,'0.99',123,'26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',82,'29.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (724,'REMEMBER DIARY','A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India',2006,1,NULL,5,'2.99',110,'15.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,6,'4.99',167,'25.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (726,'RESERVOIR ADAPTATION','A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California',2006,1,NULL,7,'2.99',61,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (727,'RESURRECTION SILVERADO','A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention',2006,1,NULL,6,'0.99',117,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',63,'26.99','R','Commentaries','2006-02-15 05:03:42'), - (729,'RIDER CADDYSHACK','A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria',2006,1,NULL,5,'2.99',177,'28.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (730,'RIDGEMONT SUBMARINE','A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan',2006,1,NULL,3,'0.99',46,'28.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',153,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (732,'RINGS HEARTBREAKERS','A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans',2006,1,NULL,5,'0.99',58,'17.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',149,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (734,'ROAD ROXANNE','A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan',2006,1,NULL,4,'4.99',158,'12.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',102,'26.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (736,'ROBBERY BRIGHT','A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan',2006,1,NULL,4,'0.99',134,'21.99','R','Trailers','2006-02-15 05:03:42'), - (737,'ROCK INSTINCT','A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India',2006,1,NULL,4,'0.99',102,'28.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',178,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (739,'ROCKY WAR','A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria',2006,1,NULL,4,'4.99',145,'17.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',153,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (741,'ROMAN PUNK','A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin',2006,1,NULL,7,'0.99',81,'28.99','NC-17','Trailers','2006-02-15 05:03:42'), - (742,'ROOF CHAMPION','A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon',2006,1,NULL,7,'0.99',101,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',60,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (744,'ROOTS REMEMBER','A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin',2006,1,NULL,4,'0.99',89,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',162,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (746,'ROUGE SQUAD','A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia',2006,1,NULL,3,'0.99',118,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',171,'9.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (748,'RUGRATS SHAKESPEARE','A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria',2006,1,NULL,4,'0.99',109,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',153,'19.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',145,'25.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',181,'17.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (752,'RUNNER MADIGAN','A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback',2006,1,NULL,6,'0.99',101,'27.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (753,'RUSH GOODFELLAS','A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia',2006,1,NULL,3,'0.99',48,'20.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (754,'RUSHMORE MERMAID','A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank',2006,1,NULL,6,'2.99',150,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (755,'SABRINA MIDNIGHT','A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert',2006,1,NULL,5,'4.99',99,'11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',80,'10.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (757,'SAGEBRUSH CLUELESS','A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan',2006,1,NULL,4,'2.99',106,'28.99','G','Trailers','2006-02-15 05:03:42'), - (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,5,'2.99',125,'11.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',73,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (760,'SAMURAI LION','A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon',2006,1,NULL,5,'2.99',110,'21.99','G','Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',154,'23.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',154,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (763,'SATISFACTION CONFIDENTIAL','A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China',2006,1,NULL,3,'4.99',75,'26.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (764,'SATURDAY LAMBS','A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon',2006,1,NULL,3,'4.99',150,'28.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (765,'SATURN NAME','A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin',2006,1,NULL,7,'4.99',182,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',84,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (767,'SCALAWAG DUCK','A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery',2006,1,NULL,6,'4.99',183,'13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (768,'SCARFACE BANG','A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory',2006,1,NULL,3,'4.99',102,'11.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (769,'SCHOOL JACKET','A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse',2006,1,NULL,5,'4.99',151,'21.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,5,'2.99',147,'13.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',137,'23.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',80,'24.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',112,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',182,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',110,'18.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,6,'4.99',90,'11.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',158,'10.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (778,'SECRETS PARADISE','A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse',2006,1,NULL,3,'4.99',109,'24.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,4,'4.99',54,'23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',98,'15.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (781,'SEVEN SWARM','A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin',2006,1,NULL,4,'4.99',127,'15.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',60,'26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (783,'SHANE DARKNESS','A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin',2006,1,NULL,5,'2.99',93,'22.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',47,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',80,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (786,'SHEPHERD MIDSUMMER','A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon',2006,1,NULL,7,'0.99',113,'14.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',125,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (788,'SHIP WONDERLAND','A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback',2006,1,NULL,5,'2.99',104,'15.99','R','Commentaries','2006-02-15 05:03:42'), - (789,'SHOCK CABIN','A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans',2006,1,NULL,7,'2.99',79,'15.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (790,'SHOOTIST SUPERFLY','A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin',2006,1,NULL,6,'0.99',67,'22.99','PG-13','Trailers','2006-02-15 05:03:42'), - (791,'SHOW LORD','A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan',2006,1,NULL,3,'4.99',167,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',154,'15.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (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,6,'2.99',139,'14.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (794,'SIDE ARK','A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies',2006,1,NULL,5,'0.99',52,'28.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',111,'23.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (796,'SIERRA DIVIDE','A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California',2006,1,NULL,3,'0.99',135,'12.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',67,'23.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (798,'SILVERADO GOLDFINGER','A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India',2006,1,NULL,4,'4.99',74,'11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',51,'26.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',126,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (801,'SISTER FREDDY','A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia',2006,1,NULL,5,'4.99',152,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',132,'15.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',179,'29.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',129,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (805,'SLEEPLESS MONSOON','A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia',2006,1,NULL,5,'4.99',64,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (806,'SLEEPY JAPANESE','A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback',2006,1,NULL,4,'2.99',137,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (807,'SLEUTH ORIENT','A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India',2006,1,NULL,4,'0.99',87,'25.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',84,'10.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',156,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',147,'21.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (811,'SMILE EARRING','A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin',2006,1,NULL,4,'2.99',60,'29.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',50,'13.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (813,'SMOOCHY CONTROL','A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China',2006,1,NULL,7,'0.99',184,'18.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (814,'SNATCH SLIPPER','A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin',2006,1,NULL,6,'4.99',110,'15.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',74,'14.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',62,'27.99','G','Trailers','2006-02-15 05:03:42'), - (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,7,'4.99',185,'27.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',180,'17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (819,'SONG HEDWIG','A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention',2006,1,NULL,3,'0.99',165,'29.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',184,'11.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',184,'17.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',169,'12.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',143,'21.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',52,'19.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',165,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (826,'SPEED SUIT','A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China',2006,1,NULL,7,'4.99',124,'19.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',141,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (828,'SPIKING ELEMENT','A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery',2006,1,NULL,7,'2.99',79,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (829,'SPINAL ROCKY','A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California',2006,1,NULL,7,'2.99',138,'12.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (830,'SPIRIT FLINTSTONES','A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan',2006,1,NULL,7,'0.99',149,'23.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (831,'SPIRITED CASUALTIES','A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory',2006,1,NULL,5,'0.99',138,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (832,'SPLASH GUMP','A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank',2006,1,NULL,5,'0.99',175,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (833,'SPLENDOR PATTON','A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin',2006,1,NULL,5,'0.99',134,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',151,'26.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (835,'SPY MILE','A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon',2006,1,NULL,6,'2.99',112,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (836,'SQUAD FISH','A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin',2006,1,NULL,3,'2.99',136,'14.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (837,'STAGE WORLD','A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat',2006,1,NULL,4,'2.99',85,'19.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (838,'STAGECOACH ARMAGEDDON','A Touching Display of a Pioneer And a Butler who must Chase a Car in California',2006,1,NULL,5,'4.99',112,'25.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (839,'STALLION SUNDANCE','A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia',2006,1,NULL,5,'0.99',130,'23.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (840,'STAMPEDE DISTURBING','A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat',2006,1,NULL,5,'0.99',75,'26.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',181,'9.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,4,'2.99',113,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (843,'STEEL SANTA','A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria',2006,1,NULL,4,'4.99',143,'15.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',140,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',48,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (846,'STING PERSONAL','A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat',2006,1,NULL,3,'4.99',93,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (847,'STOCK GLASS','A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China',2006,1,NULL,7,'2.99',160,'10.99','PG','Commentaries','2006-02-15 05:03:42'), - (848,'STONE FIRE','A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia',2006,1,NULL,3,'0.99',94,'19.99','G','Trailers','2006-02-15 05:03:42'), - (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,6,'0.99',57,'28.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',163,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (851,'STRAIGHT HOURS','A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback',2006,1,NULL,3,'0.99',151,'19.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',103,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',139,'12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',119,'22.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (855,'STREAK RIDGEMONT','A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans',2006,1,NULL,7,'0.99',132,'28.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',73,'11.99','R','Commentaries','2006-02-15 05:03:42'), - (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,3,'2.99',144,'24.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (858,'SUBMARINE BED','A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia',2006,1,NULL,5,'4.99',127,'21.99','R','Trailers','2006-02-15 05:03:42'), - (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,3,'4.99',114,'20.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',93,'13.99','G','Deleted Scenes','2006-02-15 05:03:42'), - (861,'SUIT WALLS','A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia',2006,1,NULL,3,'4.99',111,'12.99','R','Commentaries','2006-02-15 05:03:42'), - (862,'SUMMER SCARFACE','A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank',2006,1,NULL,5,'0.99',53,'25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',141,'9.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (864,'SUNDANCE INVASION','A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory',2006,1,NULL,5,'0.99',92,'21.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (865,'SUNRISE LEAGUE','A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse',2006,1,NULL,3,'4.99',135,'19.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',48,'28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',58,'10.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',114,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (869,'SUSPECTS QUILLS','A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse',2006,1,NULL,4,'2.99',47,'22.99','PG','Trailers','2006-02-15 05:03:42'), - (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,4,'0.99',123,'12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (871,'SWEDEN SHINING','A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies',2006,1,NULL,6,'4.99',176,'19.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',185,'27.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',155,'13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,6,'0.99',173,'9.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',91,'11.99','PG-13','Trailers','2006-02-15 05:03:42'), - (877,'TAXI KICK','A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia',2006,1,NULL,4,'0.99',64,'23.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',74,'25.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (879,'TELEGRAPH VOYAGE','A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat',2006,1,NULL,3,'4.99',148,'20.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,6,'2.99',152,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',71,'13.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',99,'24.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (883,'TEQUILA PAST','A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria',2006,1,NULL,6,'4.99',53,'17.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',88,'11.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',179,'22.99','NC-17','Trailers','2006-02-15 05:03:42'), - (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,5,'0.99',184,'9.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',135,'28.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (888,'THIN SAGEBRUSH','A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India',2006,1,NULL,5,'4.99',53,'9.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',111,'28.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (890,'TIGHTS DAWN','A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon',2006,1,NULL,5,'0.99',172,'14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (891,'TIMBERLAND SKY','A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat',2006,1,NULL,3,'0.99',69,'13.99','G','Commentaries','2006-02-15 05:03:42'), - (892,'TITANIC BOONDOCK','A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory',2006,1,NULL,3,'4.99',104,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',91,'11.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (894,'TOMATOES HELLFIGHTERS','A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank',2006,1,NULL,6,'0.99',68,'23.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'2.99',142,'21.99','R','Commentaries','2006-02-15 05:03:42'), - (896,'TOOTSIE PILOT','A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin',2006,1,NULL,3,'0.99',157,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (897,'TORQUE BOUND','A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan',2006,1,NULL,3,'4.99',179,'27.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (898,'TOURIST PELICAN','A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia',2006,1,NULL,4,'4.99',152,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (899,'TOWERS HURRICANE','A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention',2006,1,NULL,7,'0.99',144,'14.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',136,'17.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (901,'TRACY CIDER','A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria',2006,1,NULL,3,'0.99',142,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',170,'22.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'4.99',139,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (904,'TRAIN BUNCH','A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India',2006,1,NULL,3,'4.99',71,'26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',132,'10.99','PG-13','Trailers','2006-02-15 05:03:42'), - (906,'TRAMP OTHERS','A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India',2006,1,NULL,4,'0.99',171,'27.99','PG','Deleted Scenes','2006-02-15 05:03:42'), - (907,'TRANSLATION SUMMER','A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention',2006,1,NULL,4,'0.99',168,'10.99','PG-13','Trailers','2006-02-15 05:03:42'), - (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,3,'4.99',110,'11.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (909,'TREASURE COMMAND','A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California',2006,1,NULL,3,'0.99',102,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',87,'19.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',64,'14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (912,'TROJAN TOMORROW','A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India',2006,1,NULL,3,'2.99',52,'9.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (913,'TROOPERS METAL','A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin',2006,1,NULL,3,'0.99',115,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (914,'TROUBLE DATE','A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan',2006,1,NULL,6,'2.99',61,'13.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (915,'TRUMAN CRAZY','A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery',2006,1,NULL,7,'4.99',92,'9.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (916,'TURN STAR','A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans',2006,1,NULL,3,'2.99',80,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (917,'TUXEDO MILE','A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India',2006,1,NULL,3,'2.99',152,'24.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (918,'TWISTED PIRATES','A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention',2006,1,NULL,4,'4.99',152,'23.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',82,'17.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (920,'UNBREAKABLE KARATE','A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia',2006,1,NULL,3,'0.99',62,'16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',172,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',107,'22.99','PG-13','Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',78,'12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',129,'15.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',164,'27.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',120,'11.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (927,'UPRISING UPTOWN','A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin',2006,1,NULL,6,'2.99',174,'16.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',84,'16.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,5,'4.99',128,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',145,'23.99','R','Commentaries','2006-02-15 05:03:42'), - (931,'VALENTINE VANISHING','A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California',2006,1,NULL,7,'0.99',48,'9.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (932,'VALLEY PACKER','A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin',2006,1,NULL,3,'0.99',73,'21.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (933,'VAMPIRE WHALE','A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention',2006,1,NULL,4,'4.99',126,'11.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (934,'VANILLA DAY','A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria',2006,1,NULL,7,'4.99',122,'20.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (935,'VANISHED GARDEN','A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California',2006,1,NULL,5,'0.99',142,'17.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (936,'VANISHING ROCKY','A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention',2006,1,NULL,3,'2.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',85,'14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'4.99',173,'14.99','R','Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'2.99',90,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',64,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (941,'VIDEOTAPE ARSENIC','A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia',2006,1,NULL,4,'4.99',145,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (942,'VIETNAM SMOOCHY','A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia',2006,1,NULL,7,'0.99',174,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',76,'27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,6,'4.99',179,'29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (945,'VIRGINIAN PLUTO','A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin',2006,1,NULL,5,'0.99',164,'22.99','R','Deleted Scenes','2006-02-15 05:03:42'), - (946,'VIRTUAL SPOILERS','A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia',2006,1,NULL,3,'4.99',144,'14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (947,'VISION TORQUE','A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank',2006,1,NULL,5,'0.99',59,'16.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',139,'22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (949,'VOLCANO TEXAS','A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback',2006,1,NULL,6,'0.99',157,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (950,'VOLUME HOUSE','A Boring Tale of a Dog And a Woman who must Meet a Dentist in California',2006,1,NULL,7,'4.99',132,'12.99','PG','Commentaries','2006-02-15 05:03:42'), - (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,6,'0.99',78,'28.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (952,'WAGON JAWS','A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse',2006,1,NULL,7,'2.99',152,'17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',112,'9.99','PG-13','Trailers','2006-02-15 05:03:42'), - (954,'WAKE JAWS','A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin',2006,1,NULL,7,'4.99',73,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',135,'19.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (956,'WANDA CHAMBER','A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback',2006,1,NULL,7,'4.99',107,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'4.99',80,'26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'2.99',178,'19.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), - (959,'WARLOCK WEREWOLF','A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback',2006,1,NULL,6,'2.99',83,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'2.99',128,'15.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (961,'WASH HEAVENLY','A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China',2006,1,NULL,7,'4.99',161,'22.99','R','Commentaries','2006-02-15 05:03:42'), - (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,7,'2.99',85,'18.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (963,'WATCH TRACY','A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria',2006,1,NULL,5,'0.99',78,'12.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (964,'WATERFRONT DELIVERANCE','A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria',2006,1,NULL,4,'4.99',61,'17.99','G','Behind the Scenes','2006-02-15 05:03:42'), - (965,'WATERSHIP FRONTIER','A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia',2006,1,NULL,6,'0.99',112,'28.99','G','Commentaries','2006-02-15 05:03:42'), - (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,3,'0.99',70,'14.99','PG','Trailers','2006-02-15 05:03:42'), - (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,5,'2.99',134,'26.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (968,'WEREWOLF LOLA','A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery',2006,1,NULL,6,'4.99',79,'19.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',159,'29.99','G','Trailers','2006-02-15 05:03:42'), - (970,'WESTWARD SEABISCUIT','A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China',2006,1,NULL,7,'0.99',52,'11.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',109,'11.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (972,'WHISPERER GIANT','A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan',2006,1,NULL,4,'4.99',59,'24.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (973,'WIFE TURN','A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan',2006,1,NULL,3,'4.99',183,'27.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',181,'24.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (975,'WILLOW TRACY','A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse',2006,1,NULL,6,'2.99',137,'22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',111,'12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (977,'WINDOW SIDE','A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery',2006,1,NULL,3,'2.99',85,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',98,'12.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (979,'WITCHES PANIC','A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria',2006,1,NULL,6,'4.99',100,'10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'4.99',75,'12.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,7,'0.99',55,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), - (982,'WOMEN DORADO','A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia',2006,1,NULL,4,'0.99',126,'23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (983,'WON DARES','A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat',2006,1,NULL,7,'2.99',105,'18.99','PG','Behind the Scenes','2006-02-15 05:03:42'), - (984,'WONDERFUL DROP','A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat',2006,1,NULL,3,'2.99',126,'20.99','NC-17','Commentaries','2006-02-15 05:03:42'), - (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,4,'4.99',111,'19.99','PG','Commentaries','2006-02-15 05:03:42'), - (986,'WONKA SEA','A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India',2006,1,NULL,6,'2.99',85,'24.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,3,'2.99',116,'13.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,7,'2.99',139,'26.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), - (989,'WORKING MICROCOSMOS','A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China',2006,1,NULL,4,'4.99',74,'22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,3,'0.99',171,'13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (991,'WORST BANGER','A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback',2006,1,NULL,4,'2.99',185,'26.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), - (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,5,'0.99',176,'17.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), - (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,6,'2.99',178,'10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,6,'4.99',100,'29.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), - (995,'YENTL IDAHO','A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin',2006,1,NULL,5,'4.99',86,'11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), - (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,6,'0.99',183,'9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (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,4,'0.99',179,'14.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), - (998,'ZHIVAGO CORE','A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies',2006,1,NULL,6,'0.99',105,'10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), - (999,'ZOOLANDER FICTION','A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China',2006,1,NULL,5,'2.99',101,'28.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), - (1000,'ZORRO ARK','A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery',2006,1,NULL,3,'4.99',50,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'); -COMMIT; - --- --- Dumping data for table film_actor --- - -SET AUTOCOMMIT=0; -INSERT INTO film_actor VALUES (1,1,'2006-02-15 05:05:03'), - (1,23,'2006-02-15 05:05:03'), - (1,25,'2006-02-15 05:05:03'), - (1,106,'2006-02-15 05:05:03'), - (1,140,'2006-02-15 05:05:03'), - (1,166,'2006-02-15 05:05:03'), - (1,277,'2006-02-15 05:05:03'), - (1,361,'2006-02-15 05:05:03'), - (1,438,'2006-02-15 05:05:03'), - (1,499,'2006-02-15 05:05:03'), - (1,506,'2006-02-15 05:05:03'), - (1,509,'2006-02-15 05:05:03'), - (1,605,'2006-02-15 05:05:03'), - (1,635,'2006-02-15 05:05:03'), - (1,749,'2006-02-15 05:05:03'), - (1,832,'2006-02-15 05:05:03'), - (1,939,'2006-02-15 05:05:03'), - (1,970,'2006-02-15 05:05:03'), - (1,980,'2006-02-15 05:05:03'), - (2,3,'2006-02-15 05:05:03'), - (2,31,'2006-02-15 05:05:03'), - (2,47,'2006-02-15 05:05:03'), - (2,105,'2006-02-15 05:05:03'), - (2,132,'2006-02-15 05:05:03'), - (2,145,'2006-02-15 05:05:03'), - (2,226,'2006-02-15 05:05:03'), - (2,249,'2006-02-15 05:05:03'), - (2,314,'2006-02-15 05:05:03'), - (2,321,'2006-02-15 05:05:03'), - (2,357,'2006-02-15 05:05:03'), - (2,369,'2006-02-15 05:05:03'), - (2,399,'2006-02-15 05:05:03'), - (2,458,'2006-02-15 05:05:03'), - (2,481,'2006-02-15 05:05:03'), - (2,485,'2006-02-15 05:05:03'), - (2,518,'2006-02-15 05:05:03'), - (2,540,'2006-02-15 05:05:03'), - (2,550,'2006-02-15 05:05:03'), - (2,555,'2006-02-15 05:05:03'), - (2,561,'2006-02-15 05:05:03'), - (2,742,'2006-02-15 05:05:03'), - (2,754,'2006-02-15 05:05:03'), - (2,811,'2006-02-15 05:05:03'), - (2,958,'2006-02-15 05:05:03'), - (3,17,'2006-02-15 05:05:03'), - (3,40,'2006-02-15 05:05:03'), - (3,42,'2006-02-15 05:05:03'), - (3,87,'2006-02-15 05:05:03'), - (3,111,'2006-02-15 05:05:03'), - (3,185,'2006-02-15 05:05:03'), - (3,289,'2006-02-15 05:05:03'), - (3,329,'2006-02-15 05:05:03'), - (3,336,'2006-02-15 05:05:03'), - (3,341,'2006-02-15 05:05:03'), - (3,393,'2006-02-15 05:05:03'), - (3,441,'2006-02-15 05:05:03'), - (3,453,'2006-02-15 05:05:03'), - (3,480,'2006-02-15 05:05:03'), - (3,539,'2006-02-15 05:05:03'), - (3,618,'2006-02-15 05:05:03'), - (3,685,'2006-02-15 05:05:03'), - (3,827,'2006-02-15 05:05:03'), - (3,966,'2006-02-15 05:05:03'), - (3,967,'2006-02-15 05:05:03'), - (3,971,'2006-02-15 05:05:03'), - (3,996,'2006-02-15 05:05:03'), - (4,23,'2006-02-15 05:05:03'), - (4,25,'2006-02-15 05:05:03'), - (4,56,'2006-02-15 05:05:03'), - (4,62,'2006-02-15 05:05:03'), - (4,79,'2006-02-15 05:05:03'), - (4,87,'2006-02-15 05:05:03'), - (4,355,'2006-02-15 05:05:03'), - (4,379,'2006-02-15 05:05:03'), - (4,398,'2006-02-15 05:05:03'), - (4,463,'2006-02-15 05:05:03'), - (4,490,'2006-02-15 05:05:03'), - (4,616,'2006-02-15 05:05:03'), - (4,635,'2006-02-15 05:05:03'), - (4,691,'2006-02-15 05:05:03'), - (4,712,'2006-02-15 05:05:03'), - (4,714,'2006-02-15 05:05:03'), - (4,721,'2006-02-15 05:05:03'), - (4,798,'2006-02-15 05:05:03'), - (4,832,'2006-02-15 05:05:03'), - (4,858,'2006-02-15 05:05:03'), - (4,909,'2006-02-15 05:05:03'), - (4,924,'2006-02-15 05:05:03'), - (5,19,'2006-02-15 05:05:03'), - (5,54,'2006-02-15 05:05:03'), - (5,85,'2006-02-15 05:05:03'), - (5,146,'2006-02-15 05:05:03'), - (5,171,'2006-02-15 05:05:03'), - (5,172,'2006-02-15 05:05:03'), - (5,202,'2006-02-15 05:05:03'), - (5,203,'2006-02-15 05:05:03'), - (5,286,'2006-02-15 05:05:03'), - (5,288,'2006-02-15 05:05:03'), - (5,316,'2006-02-15 05:05:03'), - (5,340,'2006-02-15 05:05:03'), - (5,369,'2006-02-15 05:05:03'), - (5,375,'2006-02-15 05:05:03'), - (5,383,'2006-02-15 05:05:03'), - (5,392,'2006-02-15 05:05:03'), - (5,411,'2006-02-15 05:05:03'), - (5,503,'2006-02-15 05:05:03'), - (5,535,'2006-02-15 05:05:03'), - (5,571,'2006-02-15 05:05:03'), - (5,650,'2006-02-15 05:05:03'), - (5,665,'2006-02-15 05:05:03'), - (5,687,'2006-02-15 05:05:03'), - (5,730,'2006-02-15 05:05:03'), - (5,732,'2006-02-15 05:05:03'), - (5,811,'2006-02-15 05:05:03'), - (5,817,'2006-02-15 05:05:03'), - (5,841,'2006-02-15 05:05:03'), - (5,865,'2006-02-15 05:05:03'), - (6,29,'2006-02-15 05:05:03'), - (6,53,'2006-02-15 05:05:03'), - (6,60,'2006-02-15 05:05:03'), - (6,70,'2006-02-15 05:05:03'), - (6,112,'2006-02-15 05:05:03'), - (6,164,'2006-02-15 05:05:03'), - (6,165,'2006-02-15 05:05:03'), - (6,193,'2006-02-15 05:05:03'), - (6,256,'2006-02-15 05:05:03'), - (6,451,'2006-02-15 05:05:03'), - (6,503,'2006-02-15 05:05:03'), - (6,509,'2006-02-15 05:05:03'), - (6,517,'2006-02-15 05:05:03'), - (6,519,'2006-02-15 05:05:03'), - (6,605,'2006-02-15 05:05:03'), - (6,692,'2006-02-15 05:05:03'), - (6,826,'2006-02-15 05:05:03'), - (6,892,'2006-02-15 05:05:03'), - (6,902,'2006-02-15 05:05:03'), - (6,994,'2006-02-15 05:05:03'), - (7,25,'2006-02-15 05:05:03'), - (7,27,'2006-02-15 05:05:03'), - (7,35,'2006-02-15 05:05:03'), - (7,67,'2006-02-15 05:05:03'), - (7,96,'2006-02-15 05:05:03'), - (7,170,'2006-02-15 05:05:03'), - (7,173,'2006-02-15 05:05:03'), - (7,217,'2006-02-15 05:05:03'), - (7,218,'2006-02-15 05:05:03'), - (7,225,'2006-02-15 05:05:03'), - (7,292,'2006-02-15 05:05:03'), - (7,351,'2006-02-15 05:05:03'), - (7,414,'2006-02-15 05:05:03'), - (7,463,'2006-02-15 05:05:03'), - (7,554,'2006-02-15 05:05:03'), - (7,618,'2006-02-15 05:05:03'), - (7,633,'2006-02-15 05:05:03'), - (7,637,'2006-02-15 05:05:03'), - (7,691,'2006-02-15 05:05:03'), - (7,758,'2006-02-15 05:05:03'), - (7,766,'2006-02-15 05:05:03'), - (7,770,'2006-02-15 05:05:03'), - (7,805,'2006-02-15 05:05:03'), - (7,806,'2006-02-15 05:05:03'), - (7,846,'2006-02-15 05:05:03'), - (7,900,'2006-02-15 05:05:03'), - (7,901,'2006-02-15 05:05:03'), - (7,910,'2006-02-15 05:05:03'), - (7,957,'2006-02-15 05:05:03'), - (7,959,'2006-02-15 05:05:03'), - (8,47,'2006-02-15 05:05:03'), - (8,115,'2006-02-15 05:05:03'), - (8,158,'2006-02-15 05:05:03'), - (8,179,'2006-02-15 05:05:03'), - (8,195,'2006-02-15 05:05:03'), - (8,205,'2006-02-15 05:05:03'), - (8,255,'2006-02-15 05:05:03'), - (8,263,'2006-02-15 05:05:03'), - (8,321,'2006-02-15 05:05:03'), - (8,396,'2006-02-15 05:05:03'), - (8,458,'2006-02-15 05:05:03'), - (8,523,'2006-02-15 05:05:03'), - (8,532,'2006-02-15 05:05:03'), - (8,554,'2006-02-15 05:05:03'), - (8,752,'2006-02-15 05:05:03'), - (8,769,'2006-02-15 05:05:03'), - (8,771,'2006-02-15 05:05:03'), - (8,859,'2006-02-15 05:05:03'), - (8,895,'2006-02-15 05:05:03'), - (8,936,'2006-02-15 05:05:03'), - (9,30,'2006-02-15 05:05:03'), - (9,74,'2006-02-15 05:05:03'), - (9,147,'2006-02-15 05:05:03'), - (9,148,'2006-02-15 05:05:03'), - (9,191,'2006-02-15 05:05:03'), - (9,200,'2006-02-15 05:05:03'), - (9,204,'2006-02-15 05:05:03'), - (9,434,'2006-02-15 05:05:03'), - (9,510,'2006-02-15 05:05:03'), - (9,514,'2006-02-15 05:05:03'), - (9,552,'2006-02-15 05:05:03'), - (9,650,'2006-02-15 05:05:03'), - (9,671,'2006-02-15 05:05:03'), - (9,697,'2006-02-15 05:05:03'), - (9,722,'2006-02-15 05:05:03'), - (9,752,'2006-02-15 05:05:03'), - (9,811,'2006-02-15 05:05:03'), - (9,815,'2006-02-15 05:05:03'), - (9,865,'2006-02-15 05:05:03'), - (9,873,'2006-02-15 05:05:03'), - (9,889,'2006-02-15 05:05:03'), - (9,903,'2006-02-15 05:05:03'), - (9,926,'2006-02-15 05:05:03'), - (9,964,'2006-02-15 05:05:03'), - (9,974,'2006-02-15 05:05:03'), - (10,1,'2006-02-15 05:05:03'), - (10,9,'2006-02-15 05:05:03'), - (10,191,'2006-02-15 05:05:03'), - (10,236,'2006-02-15 05:05:03'), - (10,251,'2006-02-15 05:05:03'), - (10,366,'2006-02-15 05:05:03'), - (10,477,'2006-02-15 05:05:03'), - (10,480,'2006-02-15 05:05:03'), - (10,522,'2006-02-15 05:05:03'), - (10,530,'2006-02-15 05:05:03'), - (10,587,'2006-02-15 05:05:03'), - (10,694,'2006-02-15 05:05:03'), - (10,703,'2006-02-15 05:05:03'), - (10,716,'2006-02-15 05:05:03'), - (10,782,'2006-02-15 05:05:03'), - (10,914,'2006-02-15 05:05:03'), - (10,929,'2006-02-15 05:05:03'), - (10,930,'2006-02-15 05:05:03'), - (10,964,'2006-02-15 05:05:03'), - (10,966,'2006-02-15 05:05:03'), - (10,980,'2006-02-15 05:05:03'), - (10,983,'2006-02-15 05:05:03'), - (11,118,'2006-02-15 05:05:03'), - (11,205,'2006-02-15 05:05:03'), - (11,281,'2006-02-15 05:05:03'), - (11,283,'2006-02-15 05:05:03'), - (11,348,'2006-02-15 05:05:03'), - (11,364,'2006-02-15 05:05:03'), - (11,395,'2006-02-15 05:05:03'), - (11,429,'2006-02-15 05:05:03'), - (11,433,'2006-02-15 05:05:03'), - (11,453,'2006-02-15 05:05:03'), - (11,485,'2006-02-15 05:05:03'), - (11,532,'2006-02-15 05:05:03'), - (11,567,'2006-02-15 05:05:03'), - (11,587,'2006-02-15 05:05:03'), - (11,597,'2006-02-15 05:05:03'), - (11,636,'2006-02-15 05:05:03'), - (11,709,'2006-02-15 05:05:03'), - (11,850,'2006-02-15 05:05:03'), - (11,854,'2006-02-15 05:05:03'), - (11,888,'2006-02-15 05:05:03'), - (11,896,'2006-02-15 05:05:03'), - (11,928,'2006-02-15 05:05:03'), - (11,938,'2006-02-15 05:05:03'), - (11,969,'2006-02-15 05:05:03'), - (11,988,'2006-02-15 05:05:03'), - (12,16,'2006-02-15 05:05:03'), - (12,17,'2006-02-15 05:05:03'), - (12,34,'2006-02-15 05:05:03'), - (12,37,'2006-02-15 05:05:03'), - (12,91,'2006-02-15 05:05:03'), - (12,92,'2006-02-15 05:05:03'), - (12,107,'2006-02-15 05:05:03'), - (12,155,'2006-02-15 05:05:03'), - (12,177,'2006-02-15 05:05:03'), - (12,208,'2006-02-15 05:05:03'), - (12,213,'2006-02-15 05:05:03'), - (12,216,'2006-02-15 05:05:03'), - (12,243,'2006-02-15 05:05:03'), - (12,344,'2006-02-15 05:05:03'), - (12,400,'2006-02-15 05:05:03'), - (12,416,'2006-02-15 05:05:03'), - (12,420,'2006-02-15 05:05:03'), - (12,457,'2006-02-15 05:05:03'), - (12,513,'2006-02-15 05:05:03'), - (12,540,'2006-02-15 05:05:03'), - (12,593,'2006-02-15 05:05:03'), - (12,631,'2006-02-15 05:05:03'), - (12,635,'2006-02-15 05:05:03'), - (12,672,'2006-02-15 05:05:03'), - (12,716,'2006-02-15 05:05:03'), - (12,728,'2006-02-15 05:05:03'), - (12,812,'2006-02-15 05:05:03'), - (12,838,'2006-02-15 05:05:03'), - (12,871,'2006-02-15 05:05:03'), - (12,880,'2006-02-15 05:05:03'), - (12,945,'2006-02-15 05:05:03'), - (13,17,'2006-02-15 05:05:03'), - (13,29,'2006-02-15 05:05:03'), - (13,45,'2006-02-15 05:05:03'), - (13,87,'2006-02-15 05:05:03'), - (13,110,'2006-02-15 05:05:03'), - (13,144,'2006-02-15 05:05:03'), - (13,154,'2006-02-15 05:05:03'), - (13,162,'2006-02-15 05:05:03'), - (13,203,'2006-02-15 05:05:03'), - (13,254,'2006-02-15 05:05:03'), - (13,337,'2006-02-15 05:05:03'), - (13,346,'2006-02-15 05:05:03'), - (13,381,'2006-02-15 05:05:03'), - (13,385,'2006-02-15 05:05:03'), - (13,427,'2006-02-15 05:05:03'), - (13,456,'2006-02-15 05:05:03'), - (13,513,'2006-02-15 05:05:03'), - (13,515,'2006-02-15 05:05:03'), - (13,522,'2006-02-15 05:05:03'), - (13,524,'2006-02-15 05:05:03'), - (13,528,'2006-02-15 05:05:03'), - (13,571,'2006-02-15 05:05:03'), - (13,588,'2006-02-15 05:05:03'), - (13,597,'2006-02-15 05:05:03'), - (13,600,'2006-02-15 05:05:03'), - (13,718,'2006-02-15 05:05:03'), - (13,729,'2006-02-15 05:05:03'), - (13,816,'2006-02-15 05:05:03'), - (13,817,'2006-02-15 05:05:03'), - (13,832,'2006-02-15 05:05:03'), - (13,833,'2006-02-15 05:05:03'), - (13,843,'2006-02-15 05:05:03'), - (13,897,'2006-02-15 05:05:03'), - (13,966,'2006-02-15 05:05:03'), - (13,998,'2006-02-15 05:05:03'), - (14,154,'2006-02-15 05:05:03'), - (14,187,'2006-02-15 05:05:03'), - (14,232,'2006-02-15 05:05:03'), - (14,241,'2006-02-15 05:05:03'), - (14,253,'2006-02-15 05:05:03'), - (14,255,'2006-02-15 05:05:03'), - (14,258,'2006-02-15 05:05:03'), - (14,284,'2006-02-15 05:05:03'), - (14,292,'2006-02-15 05:05:03'), - (14,370,'2006-02-15 05:05:03'), - (14,415,'2006-02-15 05:05:03'), - (14,417,'2006-02-15 05:05:03'), - (14,418,'2006-02-15 05:05:03'), - (14,454,'2006-02-15 05:05:03'), - (14,472,'2006-02-15 05:05:03'), - (14,475,'2006-02-15 05:05:03'), - (14,495,'2006-02-15 05:05:03'), - (14,536,'2006-02-15 05:05:03'), - (14,537,'2006-02-15 05:05:03'), - (14,612,'2006-02-15 05:05:03'), - (14,688,'2006-02-15 05:05:03'), - (14,759,'2006-02-15 05:05:03'), - (14,764,'2006-02-15 05:05:03'), - (14,847,'2006-02-15 05:05:03'), - (14,856,'2006-02-15 05:05:03'), - (14,890,'2006-02-15 05:05:03'), - (14,908,'2006-02-15 05:05:03'), - (14,919,'2006-02-15 05:05:03'), - (14,948,'2006-02-15 05:05:03'), - (14,970,'2006-02-15 05:05:03'), - (15,31,'2006-02-15 05:05:03'), - (15,89,'2006-02-15 05:05:03'), - (15,91,'2006-02-15 05:05:03'), - (15,108,'2006-02-15 05:05:03'), - (15,125,'2006-02-15 05:05:03'), - (15,236,'2006-02-15 05:05:03'), - (15,275,'2006-02-15 05:05:03'), - (15,280,'2006-02-15 05:05:03'), - (15,326,'2006-02-15 05:05:03'), - (15,342,'2006-02-15 05:05:03'), - (15,414,'2006-02-15 05:05:03'), - (15,445,'2006-02-15 05:05:03'), - (15,500,'2006-02-15 05:05:03'), - (15,502,'2006-02-15 05:05:03'), - (15,541,'2006-02-15 05:05:03'), - (15,553,'2006-02-15 05:05:03'), - (15,594,'2006-02-15 05:05:03'), - (15,626,'2006-02-15 05:05:03'), - (15,635,'2006-02-15 05:05:03'), - (15,745,'2006-02-15 05:05:03'), - (15,783,'2006-02-15 05:05:03'), - (15,795,'2006-02-15 05:05:03'), - (15,817,'2006-02-15 05:05:03'), - (15,886,'2006-02-15 05:05:03'), - (15,924,'2006-02-15 05:05:03'), - (15,949,'2006-02-15 05:05:03'), - (15,968,'2006-02-15 05:05:03'), - (15,985,'2006-02-15 05:05:03'), - (16,80,'2006-02-15 05:05:03'), - (16,87,'2006-02-15 05:05:03'), - (16,101,'2006-02-15 05:05:03'), - (16,121,'2006-02-15 05:05:03'), - (16,155,'2006-02-15 05:05:03'), - (16,177,'2006-02-15 05:05:03'), - (16,218,'2006-02-15 05:05:03'), - (16,221,'2006-02-15 05:05:03'), - (16,267,'2006-02-15 05:05:03'), - (16,269,'2006-02-15 05:05:03'), - (16,271,'2006-02-15 05:05:03'), - (16,280,'2006-02-15 05:05:03'), - (16,287,'2006-02-15 05:05:03'), - (16,345,'2006-02-15 05:05:03'), - (16,438,'2006-02-15 05:05:03'), - (16,453,'2006-02-15 05:05:03'), - (16,455,'2006-02-15 05:05:03'), - (16,456,'2006-02-15 05:05:03'), - (16,503,'2006-02-15 05:05:03'), - (16,548,'2006-02-15 05:05:03'), - (16,582,'2006-02-15 05:05:03'), - (16,583,'2006-02-15 05:05:03'), - (16,717,'2006-02-15 05:05:03'), - (16,758,'2006-02-15 05:05:03'), - (16,779,'2006-02-15 05:05:03'), - (16,886,'2006-02-15 05:05:03'), - (16,967,'2006-02-15 05:05:03'), - (17,96,'2006-02-15 05:05:03'), - (17,119,'2006-02-15 05:05:03'), - (17,124,'2006-02-15 05:05:03'), - (17,127,'2006-02-15 05:05:03'), - (17,154,'2006-02-15 05:05:03'), - (17,199,'2006-02-15 05:05:03'), - (17,201,'2006-02-15 05:05:03'), - (17,236,'2006-02-15 05:05:03'), - (17,280,'2006-02-15 05:05:03'), - (17,310,'2006-02-15 05:05:03'), - (17,313,'2006-02-15 05:05:03'), - (17,378,'2006-02-15 05:05:03'), - (17,457,'2006-02-15 05:05:03'), - (17,469,'2006-02-15 05:05:03'), - (17,478,'2006-02-15 05:05:03'), - (17,500,'2006-02-15 05:05:03'), - (17,515,'2006-02-15 05:05:03'), - (17,521,'2006-02-15 05:05:03'), - (17,573,'2006-02-15 05:05:03'), - (17,603,'2006-02-15 05:05:03'), - (17,606,'2006-02-15 05:05:03'), - (17,734,'2006-02-15 05:05:03'), - (17,770,'2006-02-15 05:05:03'), - (17,794,'2006-02-15 05:05:03'), - (17,800,'2006-02-15 05:05:03'), - (17,853,'2006-02-15 05:05:03'), - (17,873,'2006-02-15 05:05:03'), - (17,874,'2006-02-15 05:05:03'), - (17,880,'2006-02-15 05:05:03'), - (17,948,'2006-02-15 05:05:03'), - (17,957,'2006-02-15 05:05:03'), - (17,959,'2006-02-15 05:05:03'), - (18,44,'2006-02-15 05:05:03'), - (18,84,'2006-02-15 05:05:03'), - (18,144,'2006-02-15 05:05:03'), - (18,172,'2006-02-15 05:05:03'), - (18,268,'2006-02-15 05:05:03'), - (18,279,'2006-02-15 05:05:03'), - (18,280,'2006-02-15 05:05:03'), - (18,321,'2006-02-15 05:05:03'), - (18,386,'2006-02-15 05:05:03'), - (18,460,'2006-02-15 05:05:03'), - (18,462,'2006-02-15 05:05:03'), - (18,484,'2006-02-15 05:05:03'), - (18,536,'2006-02-15 05:05:03'), - (18,561,'2006-02-15 05:05:03'), - (18,612,'2006-02-15 05:05:03'), - (18,717,'2006-02-15 05:05:03'), - (18,808,'2006-02-15 05:05:03'), - (18,842,'2006-02-15 05:05:03'), - (18,863,'2006-02-15 05:05:03'), - (18,883,'2006-02-15 05:05:03'), - (18,917,'2006-02-15 05:05:03'), - (18,944,'2006-02-15 05:05:03'), - (19,2,'2006-02-15 05:05:03'), - (19,3,'2006-02-15 05:05:03'), - (19,144,'2006-02-15 05:05:03'), - (19,152,'2006-02-15 05:05:03'), - (19,182,'2006-02-15 05:05:03'), - (19,208,'2006-02-15 05:05:03'), - (19,212,'2006-02-15 05:05:03'), - (19,217,'2006-02-15 05:05:03'), - (19,266,'2006-02-15 05:05:03'), - (19,404,'2006-02-15 05:05:03'), - (19,428,'2006-02-15 05:05:03'), - (19,473,'2006-02-15 05:05:03'), - (19,490,'2006-02-15 05:05:03'), - (19,510,'2006-02-15 05:05:03'), - (19,513,'2006-02-15 05:05:03'), - (19,644,'2006-02-15 05:05:03'), - (19,670,'2006-02-15 05:05:03'), - (19,673,'2006-02-15 05:05:03'), - (19,711,'2006-02-15 05:05:03'), - (19,750,'2006-02-15 05:05:03'), - (19,752,'2006-02-15 05:05:03'), - (19,756,'2006-02-15 05:05:03'), - (19,771,'2006-02-15 05:05:03'), - (19,785,'2006-02-15 05:05:03'), - (19,877,'2006-02-15 05:05:03'), - (20,1,'2006-02-15 05:05:03'), - (20,54,'2006-02-15 05:05:03'), - (20,63,'2006-02-15 05:05:03'), - (20,140,'2006-02-15 05:05:03'), - (20,146,'2006-02-15 05:05:03'), - (20,165,'2006-02-15 05:05:03'), - (20,231,'2006-02-15 05:05:03'), - (20,243,'2006-02-15 05:05:03'), - (20,269,'2006-02-15 05:05:03'), - (20,274,'2006-02-15 05:05:03'), - (20,348,'2006-02-15 05:05:03'), - (20,366,'2006-02-15 05:05:03'), - (20,445,'2006-02-15 05:05:03'), - (20,478,'2006-02-15 05:05:03'), - (20,492,'2006-02-15 05:05:03'), - (20,499,'2006-02-15 05:05:03'), - (20,527,'2006-02-15 05:05:03'), - (20,531,'2006-02-15 05:05:03'), - (20,538,'2006-02-15 05:05:03'), - (20,589,'2006-02-15 05:05:03'), - (20,643,'2006-02-15 05:05:03'), - (20,652,'2006-02-15 05:05:03'), - (20,663,'2006-02-15 05:05:03'), - (20,714,'2006-02-15 05:05:03'), - (20,717,'2006-02-15 05:05:03'), - (20,757,'2006-02-15 05:05:03'), - (20,784,'2006-02-15 05:05:03'), - (20,863,'2006-02-15 05:05:03'), - (20,962,'2006-02-15 05:05:03'), - (20,977,'2006-02-15 05:05:03'), - (21,6,'2006-02-15 05:05:03'), - (21,87,'2006-02-15 05:05:03'), - (21,88,'2006-02-15 05:05:03'), - (21,142,'2006-02-15 05:05:03'), - (21,159,'2006-02-15 05:05:03'), - (21,179,'2006-02-15 05:05:03'), - (21,253,'2006-02-15 05:05:03'), - (21,281,'2006-02-15 05:05:03'), - (21,321,'2006-02-15 05:05:03'), - (21,398,'2006-02-15 05:05:03'), - (21,426,'2006-02-15 05:05:03'), - (21,429,'2006-02-15 05:05:03'), - (21,497,'2006-02-15 05:05:03'), - (21,507,'2006-02-15 05:05:03'), - (21,530,'2006-02-15 05:05:03'), - (21,680,'2006-02-15 05:05:03'), - (21,686,'2006-02-15 05:05:03'), - (21,700,'2006-02-15 05:05:03'), - (21,702,'2006-02-15 05:05:03'), - (21,733,'2006-02-15 05:05:03'), - (21,734,'2006-02-15 05:05:03'), - (21,798,'2006-02-15 05:05:03'), - (21,804,'2006-02-15 05:05:03'), - (21,887,'2006-02-15 05:05:03'), - (21,893,'2006-02-15 05:05:03'), - (21,920,'2006-02-15 05:05:03'), - (21,983,'2006-02-15 05:05:03'), - (22,9,'2006-02-15 05:05:03'), - (22,23,'2006-02-15 05:05:03'), - (22,56,'2006-02-15 05:05:03'), - (22,89,'2006-02-15 05:05:03'), - (22,111,'2006-02-15 05:05:03'), - (22,146,'2006-02-15 05:05:03'), - (22,291,'2006-02-15 05:05:03'), - (22,294,'2006-02-15 05:05:03'), - (22,349,'2006-02-15 05:05:03'), - (22,369,'2006-02-15 05:05:03'), - (22,418,'2006-02-15 05:05:03'), - (22,430,'2006-02-15 05:05:03'), - (22,483,'2006-02-15 05:05:03'), - (22,491,'2006-02-15 05:05:03'), - (22,495,'2006-02-15 05:05:03'), - (22,536,'2006-02-15 05:05:03'), - (22,600,'2006-02-15 05:05:03'), - (22,634,'2006-02-15 05:05:03'), - (22,648,'2006-02-15 05:05:03'), - (22,688,'2006-02-15 05:05:03'), - (22,731,'2006-02-15 05:05:03'), - (22,742,'2006-02-15 05:05:03'), - (22,775,'2006-02-15 05:05:03'), - (22,802,'2006-02-15 05:05:03'), - (22,912,'2006-02-15 05:05:03'), - (22,964,'2006-02-15 05:05:03'), - (23,6,'2006-02-15 05:05:03'), - (23,42,'2006-02-15 05:05:03'), - (23,78,'2006-02-15 05:05:03'), - (23,105,'2006-02-15 05:05:03'), - (23,116,'2006-02-15 05:05:03'), - (23,117,'2006-02-15 05:05:03'), - (23,125,'2006-02-15 05:05:03'), - (23,212,'2006-02-15 05:05:03'), - (23,226,'2006-02-15 05:05:03'), - (23,235,'2006-02-15 05:05:03'), - (23,254,'2006-02-15 05:05:03'), - (23,367,'2006-02-15 05:05:03'), - (23,370,'2006-02-15 05:05:03'), - (23,414,'2006-02-15 05:05:03'), - (23,419,'2006-02-15 05:05:03'), - (23,435,'2006-02-15 05:05:03'), - (23,449,'2006-02-15 05:05:03'), - (23,491,'2006-02-15 05:05:03'), - (23,536,'2006-02-15 05:05:03'), - (23,549,'2006-02-15 05:05:03'), - (23,636,'2006-02-15 05:05:03'), - (23,649,'2006-02-15 05:05:03'), - (23,673,'2006-02-15 05:05:03'), - (23,691,'2006-02-15 05:05:03'), - (23,766,'2006-02-15 05:05:03'), - (23,782,'2006-02-15 05:05:03'), - (23,804,'2006-02-15 05:05:03'), - (23,820,'2006-02-15 05:05:03'), - (23,826,'2006-02-15 05:05:03'), - (23,833,'2006-02-15 05:05:03'), - (23,842,'2006-02-15 05:05:03'), - (23,853,'2006-02-15 05:05:03'), - (23,855,'2006-02-15 05:05:03'), - (23,856,'2006-02-15 05:05:03'), - (23,935,'2006-02-15 05:05:03'), - (23,981,'2006-02-15 05:05:03'), - (23,997,'2006-02-15 05:05:03'), - (24,3,'2006-02-15 05:05:03'), - (24,83,'2006-02-15 05:05:03'), - (24,112,'2006-02-15 05:05:03'), - (24,126,'2006-02-15 05:05:03'), - (24,148,'2006-02-15 05:05:03'), - (24,164,'2006-02-15 05:05:03'), - (24,178,'2006-02-15 05:05:03'), - (24,194,'2006-02-15 05:05:03'), - (24,199,'2006-02-15 05:05:03'), - (24,242,'2006-02-15 05:05:03'), - (24,256,'2006-02-15 05:05:03'), - (24,277,'2006-02-15 05:05:03'), - (24,335,'2006-02-15 05:05:03'), - (24,405,'2006-02-15 05:05:03'), - (24,463,'2006-02-15 05:05:03'), - (24,515,'2006-02-15 05:05:03'), - (24,585,'2006-02-15 05:05:03'), - (24,603,'2006-02-15 05:05:03'), - (24,653,'2006-02-15 05:05:03'), - (24,704,'2006-02-15 05:05:03'), - (24,781,'2006-02-15 05:05:03'), - (24,829,'2006-02-15 05:05:03'), - (24,832,'2006-02-15 05:05:03'), - (24,969,'2006-02-15 05:05:03'), - (25,21,'2006-02-15 05:05:03'), - (25,86,'2006-02-15 05:05:03'), - (25,153,'2006-02-15 05:05:03'), - (25,179,'2006-02-15 05:05:03'), - (25,204,'2006-02-15 05:05:03'), - (25,213,'2006-02-15 05:05:03'), - (25,226,'2006-02-15 05:05:03'), - (25,245,'2006-02-15 05:05:03'), - (25,311,'2006-02-15 05:05:03'), - (25,404,'2006-02-15 05:05:03'), - (25,411,'2006-02-15 05:05:03'), - (25,420,'2006-02-15 05:05:03'), - (25,538,'2006-02-15 05:05:03'), - (25,564,'2006-02-15 05:05:03'), - (25,583,'2006-02-15 05:05:03'), - (25,606,'2006-02-15 05:05:03'), - (25,688,'2006-02-15 05:05:03'), - (25,697,'2006-02-15 05:05:03'), - (25,755,'2006-02-15 05:05:03'), - (25,871,'2006-02-15 05:05:03'), - (25,914,'2006-02-15 05:05:03'), - (26,9,'2006-02-15 05:05:03'), - (26,21,'2006-02-15 05:05:03'), - (26,34,'2006-02-15 05:05:03'), - (26,90,'2006-02-15 05:05:03'), - (26,93,'2006-02-15 05:05:03'), - (26,103,'2006-02-15 05:05:03'), - (26,147,'2006-02-15 05:05:03'), - (26,186,'2006-02-15 05:05:03'), - (26,201,'2006-02-15 05:05:03'), - (26,225,'2006-02-15 05:05:03'), - (26,241,'2006-02-15 05:05:03'), - (26,327,'2006-02-15 05:05:03'), - (26,329,'2006-02-15 05:05:03'), - (26,340,'2006-02-15 05:05:03'), - (26,345,'2006-02-15 05:05:03'), - (26,390,'2006-02-15 05:05:03'), - (26,392,'2006-02-15 05:05:03'), - (26,529,'2006-02-15 05:05:03'), - (26,544,'2006-02-15 05:05:03'), - (26,564,'2006-02-15 05:05:03'), - (26,635,'2006-02-15 05:05:03'), - (26,644,'2006-02-15 05:05:03'), - (26,682,'2006-02-15 05:05:03'), - (26,688,'2006-02-15 05:05:03'), - (26,715,'2006-02-15 05:05:03'), - (26,732,'2006-02-15 05:05:03'), - (26,758,'2006-02-15 05:05:03'), - (26,764,'2006-02-15 05:05:03'), - (26,795,'2006-02-15 05:05:03'), - (26,821,'2006-02-15 05:05:03'), - (26,885,'2006-02-15 05:05:03'), - (26,904,'2006-02-15 05:05:03'), - (26,906,'2006-02-15 05:05:03'), - (27,19,'2006-02-15 05:05:03'), - (27,34,'2006-02-15 05:05:03'), - (27,85,'2006-02-15 05:05:03'), - (27,150,'2006-02-15 05:05:03'), - (27,172,'2006-02-15 05:05:03'), - (27,273,'2006-02-15 05:05:03'), - (27,334,'2006-02-15 05:05:03'), - (27,347,'2006-02-15 05:05:03'), - (27,359,'2006-02-15 05:05:03'), - (27,398,'2006-02-15 05:05:03'), - (27,415,'2006-02-15 05:05:03'), - (27,462,'2006-02-15 05:05:03'), - (27,477,'2006-02-15 05:05:03'), - (27,500,'2006-02-15 05:05:03'), - (27,503,'2006-02-15 05:05:03'), - (27,540,'2006-02-15 05:05:03'), - (27,586,'2006-02-15 05:05:03'), - (27,593,'2006-02-15 05:05:03'), - (27,637,'2006-02-15 05:05:03'), - (27,679,'2006-02-15 05:05:03'), - (27,682,'2006-02-15 05:05:03'), - (27,695,'2006-02-15 05:05:03'), - (27,771,'2006-02-15 05:05:03'), - (27,805,'2006-02-15 05:05:03'), - (27,830,'2006-02-15 05:05:03'), - (27,854,'2006-02-15 05:05:03'), - (27,873,'2006-02-15 05:05:03'), - (27,880,'2006-02-15 05:05:03'), - (27,889,'2006-02-15 05:05:03'), - (27,904,'2006-02-15 05:05:03'), - (27,967,'2006-02-15 05:05:03'), - (27,986,'2006-02-15 05:05:03'), - (27,996,'2006-02-15 05:05:03'), - (28,14,'2006-02-15 05:05:03'), - (28,43,'2006-02-15 05:05:03'), - (28,58,'2006-02-15 05:05:03'), - (28,74,'2006-02-15 05:05:03'), - (28,96,'2006-02-15 05:05:03'), - (28,107,'2006-02-15 05:05:03'), - (28,259,'2006-02-15 05:05:03'), - (28,263,'2006-02-15 05:05:03'), - (28,287,'2006-02-15 05:05:03'), - (28,358,'2006-02-15 05:05:03'), - (28,502,'2006-02-15 05:05:03'), - (28,508,'2006-02-15 05:05:03'), - (28,532,'2006-02-15 05:05:03'), - (28,551,'2006-02-15 05:05:03'), - (28,574,'2006-02-15 05:05:03'), - (28,597,'2006-02-15 05:05:03'), - (28,619,'2006-02-15 05:05:03'), - (28,625,'2006-02-15 05:05:03'), - (28,652,'2006-02-15 05:05:03'), - (28,679,'2006-02-15 05:05:03'), - (28,743,'2006-02-15 05:05:03'), - (28,790,'2006-02-15 05:05:03'), - (28,793,'2006-02-15 05:05:03'), - (28,816,'2006-02-15 05:05:03'), - (28,827,'2006-02-15 05:05:03'), - (28,835,'2006-02-15 05:05:03'), - (28,879,'2006-02-15 05:05:03'), - (28,908,'2006-02-15 05:05:03'), - (28,953,'2006-02-15 05:05:03'), - (28,973,'2006-02-15 05:05:03'), - (28,994,'2006-02-15 05:05:03'), - (29,10,'2006-02-15 05:05:03'), - (29,79,'2006-02-15 05:05:03'), - (29,105,'2006-02-15 05:05:03'), - (29,110,'2006-02-15 05:05:03'), - (29,131,'2006-02-15 05:05:03'), - (29,133,'2006-02-15 05:05:03'), - (29,172,'2006-02-15 05:05:03'), - (29,226,'2006-02-15 05:05:03'), - (29,273,'2006-02-15 05:05:03'), - (29,282,'2006-02-15 05:05:03'), - (29,296,'2006-02-15 05:05:03'), - (29,311,'2006-02-15 05:05:03'), - (29,335,'2006-02-15 05:05:03'), - (29,342,'2006-02-15 05:05:03'), - (29,436,'2006-02-15 05:05:03'), - (29,444,'2006-02-15 05:05:03'), - (29,449,'2006-02-15 05:05:03'), - (29,462,'2006-02-15 05:05:03'), - (29,482,'2006-02-15 05:05:03'), - (29,488,'2006-02-15 05:05:03'), - (29,519,'2006-02-15 05:05:03'), - (29,547,'2006-02-15 05:05:03'), - (29,590,'2006-02-15 05:05:03'), - (29,646,'2006-02-15 05:05:03'), - (29,723,'2006-02-15 05:05:03'), - (29,812,'2006-02-15 05:05:03'), - (29,862,'2006-02-15 05:05:03'), - (29,928,'2006-02-15 05:05:03'), - (29,944,'2006-02-15 05:05:03'), - (30,1,'2006-02-15 05:05:03'), - (30,53,'2006-02-15 05:05:03'), - (30,64,'2006-02-15 05:05:03'), - (30,69,'2006-02-15 05:05:03'), - (30,77,'2006-02-15 05:05:03'), - (30,87,'2006-02-15 05:05:03'), - (30,260,'2006-02-15 05:05:03'), - (30,262,'2006-02-15 05:05:03'), - (30,286,'2006-02-15 05:05:03'), - (30,292,'2006-02-15 05:05:03'), - (30,301,'2006-02-15 05:05:03'), - (30,318,'2006-02-15 05:05:03'), - (30,321,'2006-02-15 05:05:03'), - (30,357,'2006-02-15 05:05:03'), - (30,565,'2006-02-15 05:05:03'), - (30,732,'2006-02-15 05:05:03'), - (30,797,'2006-02-15 05:05:03'), - (30,838,'2006-02-15 05:05:03'), - (30,945,'2006-02-15 05:05:03'), - (31,88,'2006-02-15 05:05:03'), - (31,146,'2006-02-15 05:05:03'), - (31,163,'2006-02-15 05:05:03'), - (31,164,'2006-02-15 05:05:03'), - (31,188,'2006-02-15 05:05:03'), - (31,299,'2006-02-15 05:05:03'), - (31,308,'2006-02-15 05:05:03'), - (31,368,'2006-02-15 05:05:03'), - (31,380,'2006-02-15 05:05:03'), - (31,431,'2006-02-15 05:05:03'), - (31,585,'2006-02-15 05:05:03'), - (31,637,'2006-02-15 05:05:03'), - (31,700,'2006-02-15 05:05:03'), - (31,739,'2006-02-15 05:05:03'), - (31,793,'2006-02-15 05:05:03'), - (31,802,'2006-02-15 05:05:03'), - (31,880,'2006-02-15 05:05:03'), - (31,978,'2006-02-15 05:05:03'), - (32,65,'2006-02-15 05:05:03'), - (32,84,'2006-02-15 05:05:03'), - (32,103,'2006-02-15 05:05:03'), - (32,112,'2006-02-15 05:05:03'), - (32,136,'2006-02-15 05:05:03'), - (32,197,'2006-02-15 05:05:03'), - (32,199,'2006-02-15 05:05:03'), - (32,219,'2006-02-15 05:05:03'), - (32,309,'2006-02-15 05:05:03'), - (32,312,'2006-02-15 05:05:03'), - (32,401,'2006-02-15 05:05:03'), - (32,427,'2006-02-15 05:05:03'), - (32,431,'2006-02-15 05:05:03'), - (32,523,'2006-02-15 05:05:03'), - (32,567,'2006-02-15 05:05:03'), - (32,585,'2006-02-15 05:05:03'), - (32,606,'2006-02-15 05:05:03'), - (32,651,'2006-02-15 05:05:03'), - (32,667,'2006-02-15 05:05:03'), - (32,669,'2006-02-15 05:05:03'), - (32,815,'2006-02-15 05:05:03'), - (32,928,'2006-02-15 05:05:03'), - (32,980,'2006-02-15 05:05:03'), - (33,56,'2006-02-15 05:05:03'), - (33,112,'2006-02-15 05:05:03'), - (33,135,'2006-02-15 05:05:03'), - (33,154,'2006-02-15 05:05:03'), - (33,214,'2006-02-15 05:05:03'), - (33,252,'2006-02-15 05:05:03'), - (33,305,'2006-02-15 05:05:03'), - (33,306,'2006-02-15 05:05:03'), - (33,473,'2006-02-15 05:05:03'), - (33,489,'2006-02-15 05:05:03'), - (33,574,'2006-02-15 05:05:03'), - (33,618,'2006-02-15 05:05:03'), - (33,667,'2006-02-15 05:05:03'), - (33,694,'2006-02-15 05:05:03'), - (33,712,'2006-02-15 05:05:03'), - (33,735,'2006-02-15 05:05:03'), - (33,737,'2006-02-15 05:05:03'), - (33,754,'2006-02-15 05:05:03'), - (33,775,'2006-02-15 05:05:03'), - (33,878,'2006-02-15 05:05:03'), - (33,881,'2006-02-15 05:05:03'), - (33,965,'2006-02-15 05:05:03'), - (33,972,'2006-02-15 05:05:03'), - (33,993,'2006-02-15 05:05:03'), - (34,43,'2006-02-15 05:05:03'), - (34,90,'2006-02-15 05:05:03'), - (34,119,'2006-02-15 05:05:03'), - (34,125,'2006-02-15 05:05:03'), - (34,172,'2006-02-15 05:05:03'), - (34,182,'2006-02-15 05:05:03'), - (34,244,'2006-02-15 05:05:03'), - (34,336,'2006-02-15 05:05:03'), - (34,389,'2006-02-15 05:05:03'), - (34,393,'2006-02-15 05:05:03'), - (34,438,'2006-02-15 05:05:03'), - (34,493,'2006-02-15 05:05:03'), - (34,502,'2006-02-15 05:05:03'), - (34,525,'2006-02-15 05:05:03'), - (34,668,'2006-02-15 05:05:03'), - (34,720,'2006-02-15 05:05:03'), - (34,779,'2006-02-15 05:05:03'), - (34,788,'2006-02-15 05:05:03'), - (34,794,'2006-02-15 05:05:03'), - (34,836,'2006-02-15 05:05:03'), - (34,846,'2006-02-15 05:05:03'), - (34,853,'2006-02-15 05:05:03'), - (34,929,'2006-02-15 05:05:03'), - (34,950,'2006-02-15 05:05:03'), - (34,971,'2006-02-15 05:05:03'), - (35,10,'2006-02-15 05:05:03'), - (35,35,'2006-02-15 05:05:03'), - (35,52,'2006-02-15 05:05:03'), - (35,201,'2006-02-15 05:05:03'), - (35,256,'2006-02-15 05:05:03'), - (35,389,'2006-02-15 05:05:03'), - (35,589,'2006-02-15 05:05:03'), - (35,612,'2006-02-15 05:05:03'), - (35,615,'2006-02-15 05:05:03'), - (35,707,'2006-02-15 05:05:03'), - (35,732,'2006-02-15 05:05:03'), - (35,738,'2006-02-15 05:05:03'), - (35,748,'2006-02-15 05:05:03'), - (35,817,'2006-02-15 05:05:03'), - (35,914,'2006-02-15 05:05:03'), - (36,15,'2006-02-15 05:05:03'), - (36,81,'2006-02-15 05:05:03'), - (36,171,'2006-02-15 05:05:03'), - (36,231,'2006-02-15 05:05:03'), - (36,245,'2006-02-15 05:05:03'), - (36,283,'2006-02-15 05:05:03'), - (36,380,'2006-02-15 05:05:03'), - (36,381,'2006-02-15 05:05:03'), - (36,387,'2006-02-15 05:05:03'), - (36,390,'2006-02-15 05:05:03'), - (36,410,'2006-02-15 05:05:03'), - (36,426,'2006-02-15 05:05:03'), - (36,427,'2006-02-15 05:05:03'), - (36,453,'2006-02-15 05:05:03'), - (36,466,'2006-02-15 05:05:03'), - (36,484,'2006-02-15 05:05:03'), - (36,493,'2006-02-15 05:05:03'), - (36,499,'2006-02-15 05:05:03'), - (36,569,'2006-02-15 05:05:03'), - (36,590,'2006-02-15 05:05:03'), - (36,600,'2006-02-15 05:05:03'), - (36,714,'2006-02-15 05:05:03'), - (36,715,'2006-02-15 05:05:03'), - (36,716,'2006-02-15 05:05:03'), - (36,731,'2006-02-15 05:05:03'), - (36,875,'2006-02-15 05:05:03'), - (36,915,'2006-02-15 05:05:03'), - (36,931,'2006-02-15 05:05:03'), - (36,956,'2006-02-15 05:05:03'), - (37,10,'2006-02-15 05:05:03'), - (37,12,'2006-02-15 05:05:03'), - (37,19,'2006-02-15 05:05:03'), - (37,118,'2006-02-15 05:05:03'), - (37,119,'2006-02-15 05:05:03'), - (37,122,'2006-02-15 05:05:03'), - (37,146,'2006-02-15 05:05:03'), - (37,204,'2006-02-15 05:05:03'), - (37,253,'2006-02-15 05:05:03'), - (37,260,'2006-02-15 05:05:03'), - (37,277,'2006-02-15 05:05:03'), - (37,317,'2006-02-15 05:05:03'), - (37,467,'2006-02-15 05:05:03'), - (37,477,'2006-02-15 05:05:03'), - (37,485,'2006-02-15 05:05:03'), - (37,508,'2006-02-15 05:05:03'), - (37,529,'2006-02-15 05:05:03'), - (37,553,'2006-02-15 05:05:03'), - (37,555,'2006-02-15 05:05:03'), - (37,572,'2006-02-15 05:05:03'), - (37,588,'2006-02-15 05:05:03'), - (37,662,'2006-02-15 05:05:03'), - (37,663,'2006-02-15 05:05:03'), - (37,694,'2006-02-15 05:05:03'), - (37,697,'2006-02-15 05:05:03'), - (37,785,'2006-02-15 05:05:03'), - (37,839,'2006-02-15 05:05:03'), - (37,840,'2006-02-15 05:05:03'), - (37,853,'2006-02-15 05:05:03'), - (37,900,'2006-02-15 05:05:03'), - (37,925,'2006-02-15 05:05:03'), - (37,963,'2006-02-15 05:05:03'), - (37,966,'2006-02-15 05:05:03'), - (37,989,'2006-02-15 05:05:03'), - (37,997,'2006-02-15 05:05:03'), - (38,24,'2006-02-15 05:05:03'), - (38,111,'2006-02-15 05:05:03'), - (38,160,'2006-02-15 05:05:03'), - (38,176,'2006-02-15 05:05:03'), - (38,223,'2006-02-15 05:05:03'), - (38,241,'2006-02-15 05:05:03'), - (38,274,'2006-02-15 05:05:03'), - (38,335,'2006-02-15 05:05:03'), - (38,338,'2006-02-15 05:05:03'), - (38,353,'2006-02-15 05:05:03'), - (38,448,'2006-02-15 05:05:03'), - (38,450,'2006-02-15 05:05:03'), - (38,458,'2006-02-15 05:05:03'), - (38,501,'2006-02-15 05:05:03'), - (38,516,'2006-02-15 05:05:03'), - (38,547,'2006-02-15 05:05:03'), - (38,583,'2006-02-15 05:05:03'), - (38,618,'2006-02-15 05:05:03'), - (38,619,'2006-02-15 05:05:03'), - (38,705,'2006-02-15 05:05:03'), - (38,793,'2006-02-15 05:05:03'), - (38,827,'2006-02-15 05:05:03'), - (38,839,'2006-02-15 05:05:03'), - (38,853,'2006-02-15 05:05:03'), - (38,876,'2006-02-15 05:05:03'), - (39,71,'2006-02-15 05:05:03'), - (39,73,'2006-02-15 05:05:03'), - (39,168,'2006-02-15 05:05:03'), - (39,203,'2006-02-15 05:05:03'), - (39,222,'2006-02-15 05:05:03'), - (39,290,'2006-02-15 05:05:03'), - (39,293,'2006-02-15 05:05:03'), - (39,320,'2006-02-15 05:05:03'), - (39,415,'2006-02-15 05:05:03'), - (39,425,'2006-02-15 05:05:03'), - (39,431,'2006-02-15 05:05:03'), - (39,456,'2006-02-15 05:05:03'), - (39,476,'2006-02-15 05:05:03'), - (39,559,'2006-02-15 05:05:03'), - (39,587,'2006-02-15 05:05:03'), - (39,598,'2006-02-15 05:05:03'), - (39,606,'2006-02-15 05:05:03'), - (39,648,'2006-02-15 05:05:03'), - (39,683,'2006-02-15 05:05:03'), - (39,689,'2006-02-15 05:05:03'), - (39,696,'2006-02-15 05:05:03'), - (39,700,'2006-02-15 05:05:03'), - (39,703,'2006-02-15 05:05:03'), - (39,736,'2006-02-15 05:05:03'), - (39,772,'2006-02-15 05:05:03'), - (39,815,'2006-02-15 05:05:03'), - (39,831,'2006-02-15 05:05:03'), - (39,920,'2006-02-15 05:05:03'), - (40,1,'2006-02-15 05:05:03'), - (40,11,'2006-02-15 05:05:03'), - (40,34,'2006-02-15 05:05:03'), - (40,107,'2006-02-15 05:05:03'), - (40,128,'2006-02-15 05:05:03'), - (40,163,'2006-02-15 05:05:03'), - (40,177,'2006-02-15 05:05:03'), - (40,223,'2006-02-15 05:05:03'), - (40,233,'2006-02-15 05:05:03'), - (40,326,'2006-02-15 05:05:03'), - (40,374,'2006-02-15 05:05:03'), - (40,394,'2006-02-15 05:05:03'), - (40,396,'2006-02-15 05:05:03'), - (40,463,'2006-02-15 05:05:03'), - (40,466,'2006-02-15 05:05:03'), - (40,494,'2006-02-15 05:05:03'), - (40,521,'2006-02-15 05:05:03'), - (40,723,'2006-02-15 05:05:03'), - (40,737,'2006-02-15 05:05:03'), - (40,744,'2006-02-15 05:05:03'), - (40,747,'2006-02-15 05:05:03'), - (40,754,'2006-02-15 05:05:03'), - (40,799,'2006-02-15 05:05:03'), - (40,835,'2006-02-15 05:05:03'), - (40,868,'2006-02-15 05:05:03'), - (40,869,'2006-02-15 05:05:03'), - (40,887,'2006-02-15 05:05:03'), - (40,933,'2006-02-15 05:05:03'), - (40,938,'2006-02-15 05:05:03'), - (41,4,'2006-02-15 05:05:03'), - (41,60,'2006-02-15 05:05:03'), - (41,69,'2006-02-15 05:05:03'), - (41,86,'2006-02-15 05:05:03'), - (41,100,'2006-02-15 05:05:03'), - (41,150,'2006-02-15 05:05:03'), - (41,159,'2006-02-15 05:05:03'), - (41,194,'2006-02-15 05:05:03'), - (41,203,'2006-02-15 05:05:03'), - (41,212,'2006-02-15 05:05:03'), - (41,230,'2006-02-15 05:05:03'), - (41,249,'2006-02-15 05:05:03'), - (41,252,'2006-02-15 05:05:03'), - (41,305,'2006-02-15 05:05:03'), - (41,336,'2006-02-15 05:05:03'), - (41,383,'2006-02-15 05:05:03'), - (41,544,'2006-02-15 05:05:03'), - (41,596,'2006-02-15 05:05:03'), - (41,657,'2006-02-15 05:05:03'), - (41,674,'2006-02-15 05:05:03'), - (41,678,'2006-02-15 05:05:03'), - (41,721,'2006-02-15 05:05:03'), - (41,724,'2006-02-15 05:05:03'), - (41,779,'2006-02-15 05:05:03'), - (41,784,'2006-02-15 05:05:03'), - (41,799,'2006-02-15 05:05:03'), - (41,894,'2006-02-15 05:05:03'), - (41,912,'2006-02-15 05:05:03'), - (41,942,'2006-02-15 05:05:03'), - (42,24,'2006-02-15 05:05:03'), - (42,139,'2006-02-15 05:05:03'), - (42,309,'2006-02-15 05:05:03'), - (42,320,'2006-02-15 05:05:03'), - (42,333,'2006-02-15 05:05:03'), - (42,500,'2006-02-15 05:05:03'), - (42,502,'2006-02-15 05:05:03'), - (42,505,'2006-02-15 05:05:03'), - (42,527,'2006-02-15 05:05:03'), - (42,535,'2006-02-15 05:05:03'), - (42,546,'2006-02-15 05:05:03'), - (42,568,'2006-02-15 05:05:03'), - (42,648,'2006-02-15 05:05:03'), - (42,665,'2006-02-15 05:05:03'), - (42,673,'2006-02-15 05:05:03'), - (42,687,'2006-02-15 05:05:03'), - (42,713,'2006-02-15 05:05:03'), - (42,738,'2006-02-15 05:05:03'), - (42,798,'2006-02-15 05:05:03'), - (42,861,'2006-02-15 05:05:03'), - (42,865,'2006-02-15 05:05:03'), - (42,867,'2006-02-15 05:05:03'), - (42,876,'2006-02-15 05:05:03'), - (42,890,'2006-02-15 05:05:03'), - (42,907,'2006-02-15 05:05:03'), - (42,922,'2006-02-15 05:05:03'), - (42,932,'2006-02-15 05:05:03'), - (43,19,'2006-02-15 05:05:03'), - (43,42,'2006-02-15 05:05:03'), - (43,56,'2006-02-15 05:05:03'), - (43,89,'2006-02-15 05:05:03'), - (43,105,'2006-02-15 05:05:03'), - (43,147,'2006-02-15 05:05:03'), - (43,161,'2006-02-15 05:05:03'), - (43,180,'2006-02-15 05:05:03'), - (43,239,'2006-02-15 05:05:03'), - (43,276,'2006-02-15 05:05:03'), - (43,330,'2006-02-15 05:05:03'), - (43,344,'2006-02-15 05:05:03'), - (43,359,'2006-02-15 05:05:03'), - (43,377,'2006-02-15 05:05:03'), - (43,410,'2006-02-15 05:05:03'), - (43,462,'2006-02-15 05:05:03'), - (43,533,'2006-02-15 05:05:03'), - (43,598,'2006-02-15 05:05:03'), - (43,605,'2006-02-15 05:05:03'), - (43,608,'2006-02-15 05:05:03'), - (43,621,'2006-02-15 05:05:03'), - (43,753,'2006-02-15 05:05:03'), - (43,827,'2006-02-15 05:05:03'), - (43,833,'2006-02-15 05:05:03'), - (43,917,'2006-02-15 05:05:03'), - (43,958,'2006-02-15 05:05:03'), - (44,58,'2006-02-15 05:05:03'), - (44,84,'2006-02-15 05:05:03'), - (44,88,'2006-02-15 05:05:03'), - (44,94,'2006-02-15 05:05:03'), - (44,109,'2006-02-15 05:05:03'), - (44,176,'2006-02-15 05:05:03'), - (44,242,'2006-02-15 05:05:03'), - (44,273,'2006-02-15 05:05:03'), - (44,322,'2006-02-15 05:05:03'), - (44,420,'2006-02-15 05:05:03'), - (44,434,'2006-02-15 05:05:03'), - (44,490,'2006-02-15 05:05:03'), - (44,591,'2006-02-15 05:05:03'), - (44,598,'2006-02-15 05:05:03'), - (44,604,'2006-02-15 05:05:03'), - (44,699,'2006-02-15 05:05:03'), - (44,751,'2006-02-15 05:05:03'), - (44,784,'2006-02-15 05:05:03'), - (44,825,'2006-02-15 05:05:03'), - (44,854,'2006-02-15 05:05:03'), - (44,875,'2006-02-15 05:05:03'), - (44,878,'2006-02-15 05:05:03'), - (44,883,'2006-02-15 05:05:03'), - (44,896,'2006-02-15 05:05:03'), - (44,902,'2006-02-15 05:05:03'), - (44,937,'2006-02-15 05:05:03'), - (44,944,'2006-02-15 05:05:03'), - (44,952,'2006-02-15 05:05:03'), - (44,982,'2006-02-15 05:05:03'), - (44,998,'2006-02-15 05:05:03'), - (45,18,'2006-02-15 05:05:03'), - (45,65,'2006-02-15 05:05:03'), - (45,66,'2006-02-15 05:05:03'), - (45,115,'2006-02-15 05:05:03'), - (45,117,'2006-02-15 05:05:03'), - (45,164,'2006-02-15 05:05:03'), - (45,187,'2006-02-15 05:05:03'), - (45,198,'2006-02-15 05:05:03'), - (45,219,'2006-02-15 05:05:03'), - (45,330,'2006-02-15 05:05:03'), - (45,407,'2006-02-15 05:05:03'), - (45,416,'2006-02-15 05:05:03'), - (45,463,'2006-02-15 05:05:03'), - (45,467,'2006-02-15 05:05:03'), - (45,484,'2006-02-15 05:05:03'), - (45,502,'2006-02-15 05:05:03'), - (45,503,'2006-02-15 05:05:03'), - (45,508,'2006-02-15 05:05:03'), - (45,537,'2006-02-15 05:05:03'), - (45,680,'2006-02-15 05:05:03'), - (45,714,'2006-02-15 05:05:03'), - (45,767,'2006-02-15 05:05:03'), - (45,778,'2006-02-15 05:05:03'), - (45,797,'2006-02-15 05:05:03'), - (45,810,'2006-02-15 05:05:03'), - (45,895,'2006-02-15 05:05:03'), - (45,900,'2006-02-15 05:05:03'), - (45,901,'2006-02-15 05:05:03'), - (45,920,'2006-02-15 05:05:03'), - (45,925,'2006-02-15 05:05:03'), - (45,975,'2006-02-15 05:05:03'), - (45,978,'2006-02-15 05:05:03'), - (46,38,'2006-02-15 05:05:03'), - (46,51,'2006-02-15 05:05:03'), - (46,174,'2006-02-15 05:05:03'), - (46,254,'2006-02-15 05:05:03'), - (46,296,'2006-02-15 05:05:03'), - (46,319,'2006-02-15 05:05:03'), - (46,407,'2006-02-15 05:05:03'), - (46,448,'2006-02-15 05:05:03'), - (46,456,'2006-02-15 05:05:03'), - (46,463,'2006-02-15 05:05:03'), - (46,478,'2006-02-15 05:05:03'), - (46,538,'2006-02-15 05:05:03'), - (46,540,'2006-02-15 05:05:03'), - (46,567,'2006-02-15 05:05:03'), - (46,731,'2006-02-15 05:05:03'), - (46,766,'2006-02-15 05:05:03'), - (46,768,'2006-02-15 05:05:03'), - (46,820,'2006-02-15 05:05:03'), - (46,829,'2006-02-15 05:05:03'), - (46,830,'2006-02-15 05:05:03'), - (46,836,'2006-02-15 05:05:03'), - (46,889,'2006-02-15 05:05:03'), - (46,980,'2006-02-15 05:05:03'), - (46,991,'2006-02-15 05:05:03'), - (47,25,'2006-02-15 05:05:03'), - (47,36,'2006-02-15 05:05:03'), - (47,53,'2006-02-15 05:05:03'), - (47,67,'2006-02-15 05:05:03'), - (47,172,'2006-02-15 05:05:03'), - (47,233,'2006-02-15 05:05:03'), - (47,273,'2006-02-15 05:05:03'), - (47,351,'2006-02-15 05:05:03'), - (47,385,'2006-02-15 05:05:03'), - (47,484,'2006-02-15 05:05:03'), - (47,508,'2006-02-15 05:05:03'), - (47,576,'2006-02-15 05:05:03'), - (47,670,'2006-02-15 05:05:03'), - (47,734,'2006-02-15 05:05:03'), - (47,737,'2006-02-15 05:05:03'), - (47,770,'2006-02-15 05:05:03'), - (47,777,'2006-02-15 05:05:03'), - (47,787,'2006-02-15 05:05:03'), - (47,790,'2006-02-15 05:05:03'), - (47,913,'2006-02-15 05:05:03'), - (47,923,'2006-02-15 05:05:03'), - (47,924,'2006-02-15 05:05:03'), - (47,944,'2006-02-15 05:05:03'), - (47,973,'2006-02-15 05:05:03'), - (48,99,'2006-02-15 05:05:03'), - (48,101,'2006-02-15 05:05:03'), - (48,134,'2006-02-15 05:05:03'), - (48,150,'2006-02-15 05:05:03'), - (48,164,'2006-02-15 05:05:03'), - (48,211,'2006-02-15 05:05:03'), - (48,245,'2006-02-15 05:05:03'), - (48,267,'2006-02-15 05:05:03'), - (48,287,'2006-02-15 05:05:03'), - (48,295,'2006-02-15 05:05:03'), - (48,312,'2006-02-15 05:05:03'), - (48,315,'2006-02-15 05:05:03'), - (48,345,'2006-02-15 05:05:03'), - (48,349,'2006-02-15 05:05:03'), - (48,428,'2006-02-15 05:05:03'), - (48,506,'2006-02-15 05:05:03'), - (48,545,'2006-02-15 05:05:03'), - (48,559,'2006-02-15 05:05:03'), - (48,570,'2006-02-15 05:05:03'), - (48,599,'2006-02-15 05:05:03'), - (48,645,'2006-02-15 05:05:03'), - (48,705,'2006-02-15 05:05:03'), - (48,757,'2006-02-15 05:05:03'), - (48,792,'2006-02-15 05:05:03'), - (48,922,'2006-02-15 05:05:03'), - (48,926,'2006-02-15 05:05:03'), - (49,31,'2006-02-15 05:05:03'), - (49,151,'2006-02-15 05:05:03'), - (49,195,'2006-02-15 05:05:03'), - (49,207,'2006-02-15 05:05:03'), - (49,250,'2006-02-15 05:05:03'), - (49,282,'2006-02-15 05:05:03'), - (49,348,'2006-02-15 05:05:03'), - (49,391,'2006-02-15 05:05:03'), - (49,400,'2006-02-15 05:05:03'), - (49,407,'2006-02-15 05:05:03'), - (49,423,'2006-02-15 05:05:03'), - (49,433,'2006-02-15 05:05:03'), - (49,469,'2006-02-15 05:05:03'), - (49,506,'2006-02-15 05:05:03'), - (49,542,'2006-02-15 05:05:03'), - (49,558,'2006-02-15 05:05:03'), - (49,579,'2006-02-15 05:05:03'), - (49,595,'2006-02-15 05:05:03'), - (49,662,'2006-02-15 05:05:03'), - (49,709,'2006-02-15 05:05:03'), - (49,716,'2006-02-15 05:05:03'), - (49,725,'2006-02-15 05:05:03'), - (49,729,'2006-02-15 05:05:03'), - (49,811,'2006-02-15 05:05:03'), - (49,927,'2006-02-15 05:05:03'), - (49,977,'2006-02-15 05:05:03'), - (49,980,'2006-02-15 05:05:03'), - (50,111,'2006-02-15 05:05:03'), - (50,178,'2006-02-15 05:05:03'), - (50,243,'2006-02-15 05:05:03'), - (50,248,'2006-02-15 05:05:03'), - (50,274,'2006-02-15 05:05:03'), - (50,288,'2006-02-15 05:05:03'), - (50,303,'2006-02-15 05:05:03'), - (50,306,'2006-02-15 05:05:03'), - (50,327,'2006-02-15 05:05:03'), - (50,372,'2006-02-15 05:05:03'), - (50,401,'2006-02-15 05:05:03'), - (50,417,'2006-02-15 05:05:03'), - (50,420,'2006-02-15 05:05:03'), - (50,437,'2006-02-15 05:05:03'), - (50,476,'2006-02-15 05:05:03'), - (50,504,'2006-02-15 05:05:03'), - (50,520,'2006-02-15 05:05:03'), - (50,552,'2006-02-15 05:05:03'), - (50,591,'2006-02-15 05:05:03'), - (50,621,'2006-02-15 05:05:03'), - (50,632,'2006-02-15 05:05:03'), - (50,645,'2006-02-15 05:05:03'), - (50,672,'2006-02-15 05:05:03'), - (50,717,'2006-02-15 05:05:03'), - (50,732,'2006-02-15 05:05:03'), - (50,795,'2006-02-15 05:05:03'), - (50,829,'2006-02-15 05:05:03'), - (50,840,'2006-02-15 05:05:03'), - (50,897,'2006-02-15 05:05:03'), - (50,918,'2006-02-15 05:05:03'), - (50,924,'2006-02-15 05:05:03'), - (50,957,'2006-02-15 05:05:03'), - (51,5,'2006-02-15 05:05:03'), - (51,63,'2006-02-15 05:05:03'), - (51,103,'2006-02-15 05:05:03'), - (51,112,'2006-02-15 05:05:03'), - (51,121,'2006-02-15 05:05:03'), - (51,153,'2006-02-15 05:05:03'), - (51,395,'2006-02-15 05:05:03'), - (51,408,'2006-02-15 05:05:03'), - (51,420,'2006-02-15 05:05:03'), - (51,461,'2006-02-15 05:05:03'), - (51,490,'2006-02-15 05:05:03'), - (51,525,'2006-02-15 05:05:03'), - (51,627,'2006-02-15 05:05:03'), - (51,678,'2006-02-15 05:05:03'), - (51,733,'2006-02-15 05:05:03'), - (51,734,'2006-02-15 05:05:03'), - (51,737,'2006-02-15 05:05:03'), - (51,750,'2006-02-15 05:05:03'), - (51,847,'2006-02-15 05:05:03'), - (51,891,'2006-02-15 05:05:03'), - (51,895,'2006-02-15 05:05:03'), - (51,940,'2006-02-15 05:05:03'), - (51,974,'2006-02-15 05:05:03'), - (51,990,'2006-02-15 05:05:03'), - (51,993,'2006-02-15 05:05:03'), - (52,20,'2006-02-15 05:05:03'), - (52,92,'2006-02-15 05:05:03'), - (52,96,'2006-02-15 05:05:03'), - (52,108,'2006-02-15 05:05:03'), - (52,203,'2006-02-15 05:05:03'), - (52,249,'2006-02-15 05:05:03'), - (52,341,'2006-02-15 05:05:03'), - (52,376,'2006-02-15 05:05:03'), - (52,388,'2006-02-15 05:05:03'), - (52,407,'2006-02-15 05:05:03'), - (52,424,'2006-02-15 05:05:03'), - (52,474,'2006-02-15 05:05:03'), - (52,515,'2006-02-15 05:05:03'), - (52,517,'2006-02-15 05:05:03'), - (52,584,'2006-02-15 05:05:03'), - (52,596,'2006-02-15 05:05:03'), - (52,664,'2006-02-15 05:05:03'), - (52,675,'2006-02-15 05:05:03'), - (52,689,'2006-02-15 05:05:03'), - (52,714,'2006-02-15 05:05:03'), - (52,812,'2006-02-15 05:05:03'), - (52,878,'2006-02-15 05:05:03'), - (52,879,'2006-02-15 05:05:03'), - (52,915,'2006-02-15 05:05:03'), - (52,951,'2006-02-15 05:05:03'), - (52,999,'2006-02-15 05:05:03'), - (53,1,'2006-02-15 05:05:03'), - (53,9,'2006-02-15 05:05:03'), - (53,51,'2006-02-15 05:05:03'), - (53,58,'2006-02-15 05:05:03'), - (53,109,'2006-02-15 05:05:03'), - (53,122,'2006-02-15 05:05:03'), - (53,126,'2006-02-15 05:05:03'), - (53,181,'2006-02-15 05:05:03'), - (53,256,'2006-02-15 05:05:03'), - (53,268,'2006-02-15 05:05:03'), - (53,285,'2006-02-15 05:05:03'), - (53,307,'2006-02-15 05:05:03'), - (53,358,'2006-02-15 05:05:03'), - (53,386,'2006-02-15 05:05:03'), - (53,447,'2006-02-15 05:05:03'), - (53,465,'2006-02-15 05:05:03'), - (53,490,'2006-02-15 05:05:03'), - (53,492,'2006-02-15 05:05:03'), - (53,508,'2006-02-15 05:05:03'), - (53,518,'2006-02-15 05:05:03'), - (53,573,'2006-02-15 05:05:03'), - (53,576,'2006-02-15 05:05:03'), - (53,577,'2006-02-15 05:05:03'), - (53,697,'2006-02-15 05:05:03'), - (53,725,'2006-02-15 05:05:03'), - (53,727,'2006-02-15 05:05:03'), - (53,937,'2006-02-15 05:05:03'), - (53,947,'2006-02-15 05:05:03'), - (53,961,'2006-02-15 05:05:03'), - (53,980,'2006-02-15 05:05:03'), - (54,84,'2006-02-15 05:05:03'), - (54,129,'2006-02-15 05:05:03'), - (54,150,'2006-02-15 05:05:03'), - (54,184,'2006-02-15 05:05:03'), - (54,285,'2006-02-15 05:05:03'), - (54,292,'2006-02-15 05:05:03'), - (54,301,'2006-02-15 05:05:03'), - (54,348,'2006-02-15 05:05:03'), - (54,489,'2006-02-15 05:05:03'), - (54,510,'2006-02-15 05:05:03'), - (54,524,'2006-02-15 05:05:03'), - (54,546,'2006-02-15 05:05:03'), - (54,600,'2006-02-15 05:05:03'), - (54,636,'2006-02-15 05:05:03'), - (54,649,'2006-02-15 05:05:03'), - (54,658,'2006-02-15 05:05:03'), - (54,754,'2006-02-15 05:05:03'), - (54,764,'2006-02-15 05:05:03'), - (54,842,'2006-02-15 05:05:03'), - (54,858,'2006-02-15 05:05:03'), - (54,861,'2006-02-15 05:05:03'), - (54,913,'2006-02-15 05:05:03'), - (54,970,'2006-02-15 05:05:03'), - (54,988,'2006-02-15 05:05:03'), - (54,990,'2006-02-15 05:05:03'), - (55,8,'2006-02-15 05:05:03'), - (55,27,'2006-02-15 05:05:03'), - (55,75,'2006-02-15 05:05:03'), - (55,197,'2006-02-15 05:05:03'), - (55,307,'2006-02-15 05:05:03'), - (55,320,'2006-02-15 05:05:03'), - (55,340,'2006-02-15 05:05:03'), - (55,403,'2006-02-15 05:05:03'), - (55,485,'2006-02-15 05:05:03'), - (55,486,'2006-02-15 05:05:03'), - (55,603,'2006-02-15 05:05:03'), - (55,612,'2006-02-15 05:05:03'), - (55,620,'2006-02-15 05:05:03'), - (55,709,'2006-02-15 05:05:03'), - (55,776,'2006-02-15 05:05:03'), - (55,790,'2006-02-15 05:05:03'), - (55,815,'2006-02-15 05:05:03'), - (55,827,'2006-02-15 05:05:03'), - (55,930,'2006-02-15 05:05:03'), - (55,963,'2006-02-15 05:05:03'), - (56,63,'2006-02-15 05:05:03'), - (56,87,'2006-02-15 05:05:03'), - (56,226,'2006-02-15 05:05:03'), - (56,236,'2006-02-15 05:05:03'), - (56,298,'2006-02-15 05:05:03'), - (56,307,'2006-02-15 05:05:03'), - (56,354,'2006-02-15 05:05:03'), - (56,383,'2006-02-15 05:05:03'), - (56,417,'2006-02-15 05:05:03'), - (56,421,'2006-02-15 05:05:03'), - (56,457,'2006-02-15 05:05:03'), - (56,462,'2006-02-15 05:05:03'), - (56,474,'2006-02-15 05:05:03'), - (56,521,'2006-02-15 05:05:03'), - (56,593,'2006-02-15 05:05:03'), - (56,728,'2006-02-15 05:05:03'), - (56,750,'2006-02-15 05:05:03'), - (56,769,'2006-02-15 05:05:03'), - (56,781,'2006-02-15 05:05:03'), - (56,795,'2006-02-15 05:05:03'), - (56,844,'2006-02-15 05:05:03'), - (56,851,'2006-02-15 05:05:03'), - (56,862,'2006-02-15 05:05:03'), - (56,868,'2006-02-15 05:05:03'), - (56,892,'2006-02-15 05:05:03'), - (56,893,'2006-02-15 05:05:03'), - (56,936,'2006-02-15 05:05:03'), - (56,965,'2006-02-15 05:05:03'), - (57,16,'2006-02-15 05:05:03'), - (57,34,'2006-02-15 05:05:03'), - (57,101,'2006-02-15 05:05:03'), - (57,114,'2006-02-15 05:05:03'), - (57,122,'2006-02-15 05:05:03'), - (57,134,'2006-02-15 05:05:03'), - (57,144,'2006-02-15 05:05:03'), - (57,153,'2006-02-15 05:05:03'), - (57,192,'2006-02-15 05:05:03'), - (57,213,'2006-02-15 05:05:03'), - (57,258,'2006-02-15 05:05:03'), - (57,267,'2006-02-15 05:05:03'), - (57,317,'2006-02-15 05:05:03'), - (57,340,'2006-02-15 05:05:03'), - (57,393,'2006-02-15 05:05:03'), - (57,437,'2006-02-15 05:05:03'), - (57,447,'2006-02-15 05:05:03'), - (57,502,'2006-02-15 05:05:03'), - (57,592,'2006-02-15 05:05:03'), - (57,605,'2006-02-15 05:05:03'), - (57,637,'2006-02-15 05:05:03'), - (57,685,'2006-02-15 05:05:03'), - (57,707,'2006-02-15 05:05:03'), - (57,714,'2006-02-15 05:05:03'), - (57,717,'2006-02-15 05:05:03'), - (57,737,'2006-02-15 05:05:03'), - (57,767,'2006-02-15 05:05:03'), - (57,852,'2006-02-15 05:05:03'), - (57,891,'2006-02-15 05:05:03'), - (57,918,'2006-02-15 05:05:03'), - (58,48,'2006-02-15 05:05:03'), - (58,68,'2006-02-15 05:05:03'), - (58,119,'2006-02-15 05:05:03'), - (58,128,'2006-02-15 05:05:03'), - (58,135,'2006-02-15 05:05:03'), - (58,175,'2006-02-15 05:05:03'), - (58,199,'2006-02-15 05:05:03'), - (58,235,'2006-02-15 05:05:03'), - (58,242,'2006-02-15 05:05:03'), - (58,243,'2006-02-15 05:05:03'), - (58,254,'2006-02-15 05:05:03'), - (58,306,'2006-02-15 05:05:03'), - (58,316,'2006-02-15 05:05:03'), - (58,417,'2006-02-15 05:05:03'), - (58,426,'2006-02-15 05:05:03'), - (58,460,'2006-02-15 05:05:03'), - (58,477,'2006-02-15 05:05:03'), - (58,541,'2006-02-15 05:05:03'), - (58,549,'2006-02-15 05:05:03'), - (58,551,'2006-02-15 05:05:03'), - (58,553,'2006-02-15 05:05:03'), - (58,578,'2006-02-15 05:05:03'), - (58,602,'2006-02-15 05:05:03'), - (58,632,'2006-02-15 05:05:03'), - (58,635,'2006-02-15 05:05:03'), - (58,638,'2006-02-15 05:05:03'), - (58,698,'2006-02-15 05:05:03'), - (58,726,'2006-02-15 05:05:03'), - (58,755,'2006-02-15 05:05:03'), - (58,800,'2006-02-15 05:05:03'), - (58,856,'2006-02-15 05:05:03'), - (58,858,'2006-02-15 05:05:03'), - (59,5,'2006-02-15 05:05:03'), - (59,46,'2006-02-15 05:05:03'), - (59,54,'2006-02-15 05:05:03'), - (59,72,'2006-02-15 05:05:03'), - (59,88,'2006-02-15 05:05:03'), - (59,121,'2006-02-15 05:05:03'), - (59,129,'2006-02-15 05:05:03'), - (59,130,'2006-02-15 05:05:03'), - (59,183,'2006-02-15 05:05:03'), - (59,210,'2006-02-15 05:05:03'), - (59,241,'2006-02-15 05:05:03'), - (59,295,'2006-02-15 05:05:03'), - (59,418,'2006-02-15 05:05:03'), - (59,572,'2006-02-15 05:05:03'), - (59,644,'2006-02-15 05:05:03'), - (59,650,'2006-02-15 05:05:03'), - (59,689,'2006-02-15 05:05:03'), - (59,694,'2006-02-15 05:05:03'), - (59,702,'2006-02-15 05:05:03'), - (59,713,'2006-02-15 05:05:03'), - (59,749,'2006-02-15 05:05:03'), - (59,772,'2006-02-15 05:05:03'), - (59,853,'2006-02-15 05:05:03'), - (59,862,'2006-02-15 05:05:03'), - (59,943,'2006-02-15 05:05:03'), - (59,946,'2006-02-15 05:05:03'), - (59,984,'2006-02-15 05:05:03'), - (60,31,'2006-02-15 05:05:03'), - (60,85,'2006-02-15 05:05:03'), - (60,133,'2006-02-15 05:05:03'), - (60,142,'2006-02-15 05:05:03'), - (60,177,'2006-02-15 05:05:03'), - (60,179,'2006-02-15 05:05:03'), - (60,186,'2006-02-15 05:05:03'), - (60,222,'2006-02-15 05:05:03'), - (60,235,'2006-02-15 05:05:03'), - (60,239,'2006-02-15 05:05:03'), - (60,253,'2006-02-15 05:05:03'), - (60,262,'2006-02-15 05:05:03'), - (60,297,'2006-02-15 05:05:03'), - (60,299,'2006-02-15 05:05:03'), - (60,334,'2006-02-15 05:05:03'), - (60,376,'2006-02-15 05:05:03'), - (60,423,'2006-02-15 05:05:03'), - (60,436,'2006-02-15 05:05:03'), - (60,493,'2006-02-15 05:05:03'), - (60,534,'2006-02-15 05:05:03'), - (60,551,'2006-02-15 05:05:03'), - (60,658,'2006-02-15 05:05:03'), - (60,665,'2006-02-15 05:05:03'), - (60,679,'2006-02-15 05:05:03'), - (60,754,'2006-02-15 05:05:03'), - (60,771,'2006-02-15 05:05:03'), - (60,783,'2006-02-15 05:05:03'), - (60,784,'2006-02-15 05:05:03'), - (60,805,'2006-02-15 05:05:03'), - (60,830,'2006-02-15 05:05:03'), - (60,835,'2006-02-15 05:05:03'), - (60,928,'2006-02-15 05:05:03'), - (60,952,'2006-02-15 05:05:03'), - (60,971,'2006-02-15 05:05:03'), - (60,986,'2006-02-15 05:05:03'), - (61,235,'2006-02-15 05:05:03'), - (61,237,'2006-02-15 05:05:03'), - (61,307,'2006-02-15 05:05:03'), - (61,362,'2006-02-15 05:05:03'), - (61,372,'2006-02-15 05:05:03'), - (61,374,'2006-02-15 05:05:03'), - (61,423,'2006-02-15 05:05:03'), - (61,433,'2006-02-15 05:05:03'), - (61,508,'2006-02-15 05:05:03'), - (61,518,'2006-02-15 05:05:03'), - (61,519,'2006-02-15 05:05:03'), - (61,535,'2006-02-15 05:05:03'), - (61,537,'2006-02-15 05:05:03'), - (61,585,'2006-02-15 05:05:03'), - (61,639,'2006-02-15 05:05:03'), - (61,648,'2006-02-15 05:05:03'), - (61,649,'2006-02-15 05:05:03'), - (61,703,'2006-02-15 05:05:03'), - (61,752,'2006-02-15 05:05:03'), - (61,766,'2006-02-15 05:05:03'), - (61,767,'2006-02-15 05:05:03'), - (61,780,'2006-02-15 05:05:03'), - (61,831,'2006-02-15 05:05:03'), - (61,832,'2006-02-15 05:05:03'), - (61,990,'2006-02-15 05:05:03'), - (62,6,'2006-02-15 05:05:03'), - (62,42,'2006-02-15 05:05:03'), - (62,54,'2006-02-15 05:05:03'), - (62,100,'2006-02-15 05:05:03'), - (62,101,'2006-02-15 05:05:03'), - (62,129,'2006-02-15 05:05:03'), - (62,198,'2006-02-15 05:05:03'), - (62,211,'2006-02-15 05:05:03'), - (62,231,'2006-02-15 05:05:03'), - (62,272,'2006-02-15 05:05:03'), - (62,295,'2006-02-15 05:05:03'), - (62,337,'2006-02-15 05:05:03'), - (62,375,'2006-02-15 05:05:03'), - (62,385,'2006-02-15 05:05:03'), - (62,393,'2006-02-15 05:05:03'), - (62,398,'2006-02-15 05:05:03'), - (62,406,'2006-02-15 05:05:03'), - (62,413,'2006-02-15 05:05:03'), - (62,428,'2006-02-15 05:05:03'), - (62,445,'2006-02-15 05:05:03'), - (62,457,'2006-02-15 05:05:03'), - (62,465,'2006-02-15 05:05:03'), - (62,688,'2006-02-15 05:05:03'), - (62,707,'2006-02-15 05:05:03'), - (62,719,'2006-02-15 05:05:03'), - (62,951,'2006-02-15 05:05:03'), - (62,981,'2006-02-15 05:05:03'), - (62,988,'2006-02-15 05:05:03'), - (62,990,'2006-02-15 05:05:03'), - (63,73,'2006-02-15 05:05:03'), - (63,134,'2006-02-15 05:05:03'), - (63,167,'2006-02-15 05:05:03'), - (63,208,'2006-02-15 05:05:03'), - (63,225,'2006-02-15 05:05:03'), - (63,248,'2006-02-15 05:05:03'), - (63,249,'2006-02-15 05:05:03'), - (63,278,'2006-02-15 05:05:03'), - (63,392,'2006-02-15 05:05:03'), - (63,517,'2006-02-15 05:05:03'), - (63,633,'2006-02-15 05:05:03'), - (63,763,'2006-02-15 05:05:03'), - (63,781,'2006-02-15 05:05:03'), - (63,809,'2006-02-15 05:05:03'), - (63,893,'2006-02-15 05:05:03'), - (63,932,'2006-02-15 05:05:03'), - (63,944,'2006-02-15 05:05:03'), - (63,945,'2006-02-15 05:05:03'), - (63,981,'2006-02-15 05:05:03'), - (64,3,'2006-02-15 05:05:03'), - (64,10,'2006-02-15 05:05:03'), - (64,37,'2006-02-15 05:05:03'), - (64,87,'2006-02-15 05:05:03'), - (64,88,'2006-02-15 05:05:03'), - (64,124,'2006-02-15 05:05:03'), - (64,197,'2006-02-15 05:05:03'), - (64,280,'2006-02-15 05:05:03'), - (64,291,'2006-02-15 05:05:03'), - (64,307,'2006-02-15 05:05:03'), - (64,335,'2006-02-15 05:05:03'), - (64,345,'2006-02-15 05:05:03'), - (64,448,'2006-02-15 05:05:03'), - (64,469,'2006-02-15 05:05:03'), - (64,471,'2006-02-15 05:05:03'), - (64,506,'2006-02-15 05:05:03'), - (64,543,'2006-02-15 05:05:03'), - (64,557,'2006-02-15 05:05:03'), - (64,569,'2006-02-15 05:05:03'), - (64,572,'2006-02-15 05:05:03'), - (64,597,'2006-02-15 05:05:03'), - (64,616,'2006-02-15 05:05:03'), - (64,646,'2006-02-15 05:05:03'), - (64,694,'2006-02-15 05:05:03'), - (64,832,'2006-02-15 05:05:03'), - (64,852,'2006-02-15 05:05:03'), - (64,860,'2006-02-15 05:05:03'), - (64,921,'2006-02-15 05:05:03'), - (64,925,'2006-02-15 05:05:03'), - (64,980,'2006-02-15 05:05:03'), - (65,39,'2006-02-15 05:05:03'), - (65,46,'2006-02-15 05:05:03'), - (65,97,'2006-02-15 05:05:03'), - (65,106,'2006-02-15 05:05:03'), - (65,117,'2006-02-15 05:05:03'), - (65,125,'2006-02-15 05:05:03'), - (65,158,'2006-02-15 05:05:03'), - (65,276,'2006-02-15 05:05:03'), - (65,305,'2006-02-15 05:05:03'), - (65,338,'2006-02-15 05:05:03'), - (65,347,'2006-02-15 05:05:03'), - (65,371,'2006-02-15 05:05:03'), - (65,398,'2006-02-15 05:05:03'), - (65,471,'2006-02-15 05:05:03'), - (65,475,'2006-02-15 05:05:03'), - (65,476,'2006-02-15 05:05:03'), - (65,491,'2006-02-15 05:05:03'), - (65,496,'2006-02-15 05:05:03'), - (65,516,'2006-02-15 05:05:03'), - (65,517,'2006-02-15 05:05:03'), - (65,541,'2006-02-15 05:05:03'), - (65,556,'2006-02-15 05:05:03'), - (65,571,'2006-02-15 05:05:03'), - (65,577,'2006-02-15 05:05:03'), - (65,615,'2006-02-15 05:05:03'), - (65,658,'2006-02-15 05:05:03'), - (65,683,'2006-02-15 05:05:03'), - (65,694,'2006-02-15 05:05:03'), - (65,714,'2006-02-15 05:05:03'), - (65,735,'2006-02-15 05:05:03'), - (65,852,'2006-02-15 05:05:03'), - (65,938,'2006-02-15 05:05:03'), - (65,951,'2006-02-15 05:05:03'), - (65,965,'2006-02-15 05:05:03'), - (66,55,'2006-02-15 05:05:03'), - (66,143,'2006-02-15 05:05:03'), - (66,207,'2006-02-15 05:05:03'), - (66,226,'2006-02-15 05:05:03'), - (66,229,'2006-02-15 05:05:03'), - (66,230,'2006-02-15 05:05:03'), - (66,283,'2006-02-15 05:05:03'), - (66,300,'2006-02-15 05:05:03'), - (66,342,'2006-02-15 05:05:03'), - (66,350,'2006-02-15 05:05:03'), - (66,361,'2006-02-15 05:05:03'), - (66,376,'2006-02-15 05:05:03'), - (66,424,'2006-02-15 05:05:03'), - (66,434,'2006-02-15 05:05:03'), - (66,553,'2006-02-15 05:05:03'), - (66,608,'2006-02-15 05:05:03'), - (66,676,'2006-02-15 05:05:03'), - (66,697,'2006-02-15 05:05:03'), - (66,706,'2006-02-15 05:05:03'), - (66,725,'2006-02-15 05:05:03'), - (66,769,'2006-02-15 05:05:03'), - (66,793,'2006-02-15 05:05:03'), - (66,829,'2006-02-15 05:05:03'), - (66,871,'2006-02-15 05:05:03'), - (66,909,'2006-02-15 05:05:03'), - (66,915,'2006-02-15 05:05:03'), - (66,928,'2006-02-15 05:05:03'), - (66,951,'2006-02-15 05:05:03'), - (66,957,'2006-02-15 05:05:03'), - (66,960,'2006-02-15 05:05:03'), - (66,999,'2006-02-15 05:05:03'), - (67,24,'2006-02-15 05:05:03'), - (67,57,'2006-02-15 05:05:03'), - (67,67,'2006-02-15 05:05:03'), - (67,144,'2006-02-15 05:05:03'), - (67,242,'2006-02-15 05:05:03'), - (67,244,'2006-02-15 05:05:03'), - (67,256,'2006-02-15 05:05:03'), - (67,408,'2006-02-15 05:05:03'), - (67,477,'2006-02-15 05:05:03'), - (67,496,'2006-02-15 05:05:03'), - (67,512,'2006-02-15 05:05:03'), - (67,576,'2006-02-15 05:05:03'), - (67,601,'2006-02-15 05:05:03'), - (67,725,'2006-02-15 05:05:03'), - (67,726,'2006-02-15 05:05:03'), - (67,731,'2006-02-15 05:05:03'), - (67,766,'2006-02-15 05:05:03'), - (67,861,'2006-02-15 05:05:03'), - (67,870,'2006-02-15 05:05:03'), - (67,915,'2006-02-15 05:05:03'), - (67,945,'2006-02-15 05:05:03'), - (67,972,'2006-02-15 05:05:03'), - (67,981,'2006-02-15 05:05:03'), - (68,9,'2006-02-15 05:05:03'), - (68,45,'2006-02-15 05:05:03'), - (68,133,'2006-02-15 05:05:03'), - (68,161,'2006-02-15 05:05:03'), - (68,205,'2006-02-15 05:05:03'), - (68,213,'2006-02-15 05:05:03'), - (68,215,'2006-02-15 05:05:03'), - (68,255,'2006-02-15 05:05:03'), - (68,296,'2006-02-15 05:05:03'), - (68,315,'2006-02-15 05:05:03'), - (68,325,'2006-02-15 05:05:03'), - (68,331,'2006-02-15 05:05:03'), - (68,347,'2006-02-15 05:05:03'), - (68,357,'2006-02-15 05:05:03'), - (68,378,'2006-02-15 05:05:03'), - (68,380,'2006-02-15 05:05:03'), - (68,386,'2006-02-15 05:05:03'), - (68,396,'2006-02-15 05:05:03'), - (68,435,'2006-02-15 05:05:03'), - (68,497,'2006-02-15 05:05:03'), - (68,607,'2006-02-15 05:05:03'), - (68,654,'2006-02-15 05:05:03'), - (68,665,'2006-02-15 05:05:03'), - (68,671,'2006-02-15 05:05:03'), - (68,706,'2006-02-15 05:05:03'), - (68,747,'2006-02-15 05:05:03'), - (68,834,'2006-02-15 05:05:03'), - (68,839,'2006-02-15 05:05:03'), - (68,840,'2006-02-15 05:05:03'), - (68,971,'2006-02-15 05:05:03'), - (69,15,'2006-02-15 05:05:03'), - (69,88,'2006-02-15 05:05:03'), - (69,111,'2006-02-15 05:05:03'), - (69,202,'2006-02-15 05:05:03'), - (69,236,'2006-02-15 05:05:03'), - (69,292,'2006-02-15 05:05:03'), - (69,300,'2006-02-15 05:05:03'), - (69,306,'2006-02-15 05:05:03'), - (69,374,'2006-02-15 05:05:03'), - (69,396,'2006-02-15 05:05:03'), - (69,452,'2006-02-15 05:05:03'), - (69,466,'2006-02-15 05:05:03'), - (69,529,'2006-02-15 05:05:03'), - (69,612,'2006-02-15 05:05:03'), - (69,720,'2006-02-15 05:05:03'), - (69,722,'2006-02-15 05:05:03'), - (69,761,'2006-02-15 05:05:03'), - (69,791,'2006-02-15 05:05:03'), - (69,864,'2006-02-15 05:05:03'), - (69,877,'2006-02-15 05:05:03'), - (69,914,'2006-02-15 05:05:03'), - (70,50,'2006-02-15 05:05:03'), - (70,53,'2006-02-15 05:05:03'), - (70,92,'2006-02-15 05:05:03'), - (70,202,'2006-02-15 05:05:03'), - (70,227,'2006-02-15 05:05:03'), - (70,249,'2006-02-15 05:05:03'), - (70,290,'2006-02-15 05:05:03'), - (70,304,'2006-02-15 05:05:03'), - (70,343,'2006-02-15 05:05:03'), - (70,414,'2006-02-15 05:05:03'), - (70,453,'2006-02-15 05:05:03'), - (70,466,'2006-02-15 05:05:03'), - (70,504,'2006-02-15 05:05:03'), - (70,584,'2006-02-15 05:05:03'), - (70,628,'2006-02-15 05:05:03'), - (70,654,'2006-02-15 05:05:03'), - (70,725,'2006-02-15 05:05:03'), - (70,823,'2006-02-15 05:05:03'), - (70,834,'2006-02-15 05:05:03'), - (70,856,'2006-02-15 05:05:03'), - (70,869,'2006-02-15 05:05:03'), - (70,953,'2006-02-15 05:05:03'), - (70,964,'2006-02-15 05:05:03'), - (71,26,'2006-02-15 05:05:03'), - (71,52,'2006-02-15 05:05:03'), - (71,233,'2006-02-15 05:05:03'), - (71,317,'2006-02-15 05:05:03'), - (71,359,'2006-02-15 05:05:03'), - (71,362,'2006-02-15 05:05:03'), - (71,385,'2006-02-15 05:05:03'), - (71,399,'2006-02-15 05:05:03'), - (71,450,'2006-02-15 05:05:03'), - (71,532,'2006-02-15 05:05:03'), - (71,560,'2006-02-15 05:05:03'), - (71,574,'2006-02-15 05:05:03'), - (71,638,'2006-02-15 05:05:03'), - (71,773,'2006-02-15 05:05:03'), - (71,833,'2006-02-15 05:05:03'), - (71,874,'2006-02-15 05:05:03'), - (71,918,'2006-02-15 05:05:03'), - (71,956,'2006-02-15 05:05:03'), - (72,34,'2006-02-15 05:05:03'), - (72,144,'2006-02-15 05:05:03'), - (72,237,'2006-02-15 05:05:03'), - (72,249,'2006-02-15 05:05:03'), - (72,286,'2006-02-15 05:05:03'), - (72,296,'2006-02-15 05:05:03'), - (72,325,'2006-02-15 05:05:03'), - (72,331,'2006-02-15 05:05:03'), - (72,405,'2006-02-15 05:05:03'), - (72,450,'2006-02-15 05:05:03'), - (72,550,'2006-02-15 05:05:03'), - (72,609,'2006-02-15 05:05:03'), - (72,623,'2006-02-15 05:05:03'), - (72,636,'2006-02-15 05:05:03'), - (72,640,'2006-02-15 05:05:03'), - (72,665,'2006-02-15 05:05:03'), - (72,718,'2006-02-15 05:05:03'), - (72,743,'2006-02-15 05:05:03'), - (72,757,'2006-02-15 05:05:03'), - (72,773,'2006-02-15 05:05:03'), - (72,854,'2006-02-15 05:05:03'), - (72,865,'2006-02-15 05:05:03'), - (72,938,'2006-02-15 05:05:03'), - (72,956,'2006-02-15 05:05:03'), - (72,964,'2006-02-15 05:05:03'), - (72,969,'2006-02-15 05:05:03'), - (73,36,'2006-02-15 05:05:03'), - (73,45,'2006-02-15 05:05:03'), - (73,51,'2006-02-15 05:05:03'), - (73,77,'2006-02-15 05:05:03'), - (73,148,'2006-02-15 05:05:03'), - (73,245,'2006-02-15 05:05:03'), - (73,275,'2006-02-15 05:05:03'), - (73,322,'2006-02-15 05:05:03'), - (73,374,'2006-02-15 05:05:03'), - (73,379,'2006-02-15 05:05:03'), - (73,467,'2006-02-15 05:05:03'), - (73,548,'2006-02-15 05:05:03'), - (73,561,'2006-02-15 05:05:03'), - (73,562,'2006-02-15 05:05:03'), - (73,565,'2006-02-15 05:05:03'), - (73,627,'2006-02-15 05:05:03'), - (73,666,'2006-02-15 05:05:03'), - (73,667,'2006-02-15 05:05:03'), - (73,707,'2006-02-15 05:05:03'), - (73,748,'2006-02-15 05:05:03'), - (73,772,'2006-02-15 05:05:03'), - (73,823,'2006-02-15 05:05:03'), - (73,936,'2006-02-15 05:05:03'), - (73,946,'2006-02-15 05:05:03'), - (73,950,'2006-02-15 05:05:03'), - (73,998,'2006-02-15 05:05:03'), - (74,28,'2006-02-15 05:05:03'), - (74,44,'2006-02-15 05:05:03'), - (74,117,'2006-02-15 05:05:03'), - (74,185,'2006-02-15 05:05:03'), - (74,192,'2006-02-15 05:05:03'), - (74,203,'2006-02-15 05:05:03'), - (74,263,'2006-02-15 05:05:03'), - (74,321,'2006-02-15 05:05:03'), - (74,415,'2006-02-15 05:05:03'), - (74,484,'2006-02-15 05:05:03'), - (74,503,'2006-02-15 05:05:03'), - (74,537,'2006-02-15 05:05:03'), - (74,543,'2006-02-15 05:05:03'), - (74,617,'2006-02-15 05:05:03'), - (74,626,'2006-02-15 05:05:03'), - (74,637,'2006-02-15 05:05:03'), - (74,663,'2006-02-15 05:05:03'), - (74,704,'2006-02-15 05:05:03'), - (74,720,'2006-02-15 05:05:03'), - (74,747,'2006-02-15 05:05:03'), - (74,780,'2006-02-15 05:05:03'), - (74,804,'2006-02-15 05:05:03'), - (74,834,'2006-02-15 05:05:03'), - (74,836,'2006-02-15 05:05:03'), - (74,848,'2006-02-15 05:05:03'), - (74,872,'2006-02-15 05:05:03'), - (74,902,'2006-02-15 05:05:03'), - (74,956,'2006-02-15 05:05:03'), - (75,12,'2006-02-15 05:05:03'), - (75,34,'2006-02-15 05:05:03'), - (75,143,'2006-02-15 05:05:03'), - (75,170,'2006-02-15 05:05:03'), - (75,222,'2006-02-15 05:05:03'), - (75,301,'2006-02-15 05:05:03'), - (75,347,'2006-02-15 05:05:03'), - (75,372,'2006-02-15 05:05:03'), - (75,436,'2006-02-15 05:05:03'), - (75,445,'2006-02-15 05:05:03'), - (75,446,'2006-02-15 05:05:03'), - (75,492,'2006-02-15 05:05:03'), - (75,498,'2006-02-15 05:05:03'), - (75,508,'2006-02-15 05:05:03'), - (75,541,'2006-02-15 05:05:03'), - (75,547,'2006-02-15 05:05:03'), - (75,579,'2006-02-15 05:05:03'), - (75,645,'2006-02-15 05:05:03'), - (75,667,'2006-02-15 05:05:03'), - (75,744,'2006-02-15 05:05:03'), - (75,764,'2006-02-15 05:05:03'), - (75,780,'2006-02-15 05:05:03'), - (75,870,'2006-02-15 05:05:03'), - (75,920,'2006-02-15 05:05:03'), - (76,60,'2006-02-15 05:05:03'), - (76,66,'2006-02-15 05:05:03'), - (76,68,'2006-02-15 05:05:03'), - (76,95,'2006-02-15 05:05:03'), - (76,122,'2006-02-15 05:05:03'), - (76,187,'2006-02-15 05:05:03'), - (76,223,'2006-02-15 05:05:03'), - (76,234,'2006-02-15 05:05:03'), - (76,251,'2006-02-15 05:05:03'), - (76,348,'2006-02-15 05:05:03'), - (76,444,'2006-02-15 05:05:03'), - (76,464,'2006-02-15 05:05:03'), - (76,474,'2006-02-15 05:05:03'), - (76,498,'2006-02-15 05:05:03'), - (76,568,'2006-02-15 05:05:03'), - (76,604,'2006-02-15 05:05:03'), - (76,606,'2006-02-15 05:05:03'), - (76,642,'2006-02-15 05:05:03'), - (76,648,'2006-02-15 05:05:03'), - (76,650,'2006-02-15 05:05:03'), - (76,709,'2006-02-15 05:05:03'), - (76,760,'2006-02-15 05:05:03'), - (76,765,'2006-02-15 05:05:03'), - (76,781,'2006-02-15 05:05:03'), - (76,850,'2006-02-15 05:05:03'), - (76,862,'2006-02-15 05:05:03'), - (76,866,'2006-02-15 05:05:03'), - (76,870,'2006-02-15 05:05:03'), - (76,912,'2006-02-15 05:05:03'), - (76,935,'2006-02-15 05:05:03'), - (76,958,'2006-02-15 05:05:03'), - (77,13,'2006-02-15 05:05:03'), - (77,22,'2006-02-15 05:05:03'), - (77,40,'2006-02-15 05:05:03'), - (77,73,'2006-02-15 05:05:03'), - (77,78,'2006-02-15 05:05:03'), - (77,153,'2006-02-15 05:05:03'), - (77,224,'2006-02-15 05:05:03'), - (77,240,'2006-02-15 05:05:03'), - (77,245,'2006-02-15 05:05:03'), - (77,261,'2006-02-15 05:05:03'), - (77,343,'2006-02-15 05:05:03'), - (77,442,'2006-02-15 05:05:03'), - (77,458,'2006-02-15 05:05:03'), - (77,538,'2006-02-15 05:05:03'), - (77,566,'2006-02-15 05:05:03'), - (77,612,'2006-02-15 05:05:03'), - (77,635,'2006-02-15 05:05:03'), - (77,694,'2006-02-15 05:05:03'), - (77,749,'2006-02-15 05:05:03'), - (77,938,'2006-02-15 05:05:03'), - (77,943,'2006-02-15 05:05:03'), - (77,963,'2006-02-15 05:05:03'), - (77,969,'2006-02-15 05:05:03'), - (77,993,'2006-02-15 05:05:03'), - (78,86,'2006-02-15 05:05:03'), - (78,239,'2006-02-15 05:05:03'), - (78,260,'2006-02-15 05:05:03'), - (78,261,'2006-02-15 05:05:03'), - (78,265,'2006-02-15 05:05:03'), - (78,301,'2006-02-15 05:05:03'), - (78,387,'2006-02-15 05:05:03'), - (78,393,'2006-02-15 05:05:03'), - (78,428,'2006-02-15 05:05:03'), - (78,457,'2006-02-15 05:05:03'), - (78,505,'2006-02-15 05:05:03'), - (78,520,'2006-02-15 05:05:03'), - (78,530,'2006-02-15 05:05:03'), - (78,549,'2006-02-15 05:05:03'), - (78,552,'2006-02-15 05:05:03'), - (78,599,'2006-02-15 05:05:03'), - (78,670,'2006-02-15 05:05:03'), - (78,674,'2006-02-15 05:05:03'), - (78,689,'2006-02-15 05:05:03'), - (78,762,'2006-02-15 05:05:03'), - (78,767,'2006-02-15 05:05:03'), - (78,811,'2006-02-15 05:05:03'), - (78,852,'2006-02-15 05:05:03'), - (78,880,'2006-02-15 05:05:03'), - (78,963,'2006-02-15 05:05:03'), - (78,968,'2006-02-15 05:05:03'), - (79,32,'2006-02-15 05:05:03'), - (79,33,'2006-02-15 05:05:03'), - (79,40,'2006-02-15 05:05:03'), - (79,141,'2006-02-15 05:05:03'), - (79,205,'2006-02-15 05:05:03'), - (79,230,'2006-02-15 05:05:03'), - (79,242,'2006-02-15 05:05:03'), - (79,262,'2006-02-15 05:05:03'), - (79,267,'2006-02-15 05:05:03'), - (79,269,'2006-02-15 05:05:03'), - (79,299,'2006-02-15 05:05:03'), - (79,367,'2006-02-15 05:05:03'), - (79,428,'2006-02-15 05:05:03'), - (79,430,'2006-02-15 05:05:03'), - (79,473,'2006-02-15 05:05:03'), - (79,607,'2006-02-15 05:05:03'), - (79,628,'2006-02-15 05:05:03'), - (79,634,'2006-02-15 05:05:03'), - (79,646,'2006-02-15 05:05:03'), - (79,727,'2006-02-15 05:05:03'), - (79,750,'2006-02-15 05:05:03'), - (79,753,'2006-02-15 05:05:03'), - (79,769,'2006-02-15 05:05:03'), - (79,776,'2006-02-15 05:05:03'), - (79,788,'2006-02-15 05:05:03'), - (79,840,'2006-02-15 05:05:03'), - (79,853,'2006-02-15 05:05:03'), - (79,916,'2006-02-15 05:05:03'), - (80,69,'2006-02-15 05:05:03'), - (80,118,'2006-02-15 05:05:03'), - (80,124,'2006-02-15 05:05:03'), - (80,175,'2006-02-15 05:05:03'), - (80,207,'2006-02-15 05:05:03'), - (80,212,'2006-02-15 05:05:03'), - (80,260,'2006-02-15 05:05:03'), - (80,262,'2006-02-15 05:05:03'), - (80,280,'2006-02-15 05:05:03'), - (80,341,'2006-02-15 05:05:03'), - (80,342,'2006-02-15 05:05:03'), - (80,343,'2006-02-15 05:05:03'), - (80,362,'2006-02-15 05:05:03'), - (80,436,'2006-02-15 05:05:03'), - (80,475,'2006-02-15 05:05:03'), - (80,553,'2006-02-15 05:05:03'), - (80,619,'2006-02-15 05:05:03'), - (80,622,'2006-02-15 05:05:03'), - (80,680,'2006-02-15 05:05:03'), - (80,687,'2006-02-15 05:05:03'), - (80,688,'2006-02-15 05:05:03'), - (80,709,'2006-02-15 05:05:03'), - (80,788,'2006-02-15 05:05:03'), - (80,807,'2006-02-15 05:05:03'), - (80,858,'2006-02-15 05:05:03'), - (80,888,'2006-02-15 05:05:03'), - (80,941,'2006-02-15 05:05:03'), - (80,979,'2006-02-15 05:05:03'), - (81,4,'2006-02-15 05:05:03'), - (81,11,'2006-02-15 05:05:03'), - (81,59,'2006-02-15 05:05:03'), - (81,89,'2006-02-15 05:05:03'), - (81,178,'2006-02-15 05:05:03'), - (81,186,'2006-02-15 05:05:03'), - (81,194,'2006-02-15 05:05:03'), - (81,215,'2006-02-15 05:05:03'), - (81,219,'2006-02-15 05:05:03'), - (81,232,'2006-02-15 05:05:03'), - (81,260,'2006-02-15 05:05:03'), - (81,267,'2006-02-15 05:05:03'), - (81,268,'2006-02-15 05:05:03'), - (81,304,'2006-02-15 05:05:03'), - (81,332,'2006-02-15 05:05:03'), - (81,389,'2006-02-15 05:05:03'), - (81,398,'2006-02-15 05:05:03'), - (81,453,'2006-02-15 05:05:03'), - (81,458,'2006-02-15 05:05:03'), - (81,465,'2006-02-15 05:05:03'), - (81,505,'2006-02-15 05:05:03'), - (81,508,'2006-02-15 05:05:03'), - (81,527,'2006-02-15 05:05:03'), - (81,545,'2006-02-15 05:05:03'), - (81,564,'2006-02-15 05:05:03'), - (81,578,'2006-02-15 05:05:03'), - (81,579,'2006-02-15 05:05:03'), - (81,613,'2006-02-15 05:05:03'), - (81,619,'2006-02-15 05:05:03'), - (81,643,'2006-02-15 05:05:03'), - (81,692,'2006-02-15 05:05:03'), - (81,710,'2006-02-15 05:05:03'), - (81,729,'2006-02-15 05:05:03'), - (81,761,'2006-02-15 05:05:03'), - (81,827,'2006-02-15 05:05:03'), - (81,910,'2006-02-15 05:05:03'), - (82,17,'2006-02-15 05:05:03'), - (82,33,'2006-02-15 05:05:03'), - (82,104,'2006-02-15 05:05:03'), - (82,143,'2006-02-15 05:05:03'), - (82,188,'2006-02-15 05:05:03'), - (82,242,'2006-02-15 05:05:03'), - (82,247,'2006-02-15 05:05:03'), - (82,290,'2006-02-15 05:05:03'), - (82,306,'2006-02-15 05:05:03'), - (82,316,'2006-02-15 05:05:03'), - (82,344,'2006-02-15 05:05:03'), - (82,453,'2006-02-15 05:05:03'), - (82,468,'2006-02-15 05:05:03'), - (82,480,'2006-02-15 05:05:03'), - (82,497,'2006-02-15 05:05:03'), - (82,503,'2006-02-15 05:05:03'), - (82,527,'2006-02-15 05:05:03'), - (82,551,'2006-02-15 05:05:03'), - (82,561,'2006-02-15 05:05:03'), - (82,750,'2006-02-15 05:05:03'), - (82,787,'2006-02-15 05:05:03'), - (82,802,'2006-02-15 05:05:03'), - (82,838,'2006-02-15 05:05:03'), - (82,839,'2006-02-15 05:05:03'), - (82,870,'2006-02-15 05:05:03'), - (82,877,'2006-02-15 05:05:03'), - (82,893,'2006-02-15 05:05:03'), - (82,911,'2006-02-15 05:05:03'), - (82,954,'2006-02-15 05:05:03'), - (82,978,'2006-02-15 05:05:03'), - (82,985,'2006-02-15 05:05:03'), - (83,49,'2006-02-15 05:05:03'), - (83,52,'2006-02-15 05:05:03'), - (83,58,'2006-02-15 05:05:03'), - (83,110,'2006-02-15 05:05:03'), - (83,120,'2006-02-15 05:05:03'), - (83,121,'2006-02-15 05:05:03'), - (83,135,'2006-02-15 05:05:03'), - (83,165,'2006-02-15 05:05:03'), - (83,217,'2006-02-15 05:05:03'), - (83,247,'2006-02-15 05:05:03'), - (83,249,'2006-02-15 05:05:03'), - (83,263,'2006-02-15 05:05:03'), - (83,268,'2006-02-15 05:05:03'), - (83,279,'2006-02-15 05:05:03'), - (83,281,'2006-02-15 05:05:03'), - (83,339,'2006-02-15 05:05:03'), - (83,340,'2006-02-15 05:05:03'), - (83,369,'2006-02-15 05:05:03'), - (83,412,'2006-02-15 05:05:03'), - (83,519,'2006-02-15 05:05:03'), - (83,529,'2006-02-15 05:05:03'), - (83,615,'2006-02-15 05:05:03'), - (83,631,'2006-02-15 05:05:03'), - (83,655,'2006-02-15 05:05:03'), - (83,672,'2006-02-15 05:05:03'), - (83,686,'2006-02-15 05:05:03'), - (83,719,'2006-02-15 05:05:03'), - (83,764,'2006-02-15 05:05:03'), - (83,777,'2006-02-15 05:05:03'), - (83,784,'2006-02-15 05:05:03'), - (83,833,'2006-02-15 05:05:03'), - (83,873,'2006-02-15 05:05:03'), - (83,932,'2006-02-15 05:05:03'), - (84,19,'2006-02-15 05:05:03'), - (84,39,'2006-02-15 05:05:03'), - (84,46,'2006-02-15 05:05:03'), - (84,175,'2006-02-15 05:05:03'), - (84,238,'2006-02-15 05:05:03'), - (84,281,'2006-02-15 05:05:03'), - (84,290,'2006-02-15 05:05:03'), - (84,312,'2006-02-15 05:05:03'), - (84,317,'2006-02-15 05:05:03'), - (84,413,'2006-02-15 05:05:03'), - (84,414,'2006-02-15 05:05:03'), - (84,460,'2006-02-15 05:05:03'), - (84,479,'2006-02-15 05:05:03'), - (84,491,'2006-02-15 05:05:03'), - (84,529,'2006-02-15 05:05:03'), - (84,540,'2006-02-15 05:05:03'), - (84,566,'2006-02-15 05:05:03'), - (84,574,'2006-02-15 05:05:03'), - (84,589,'2006-02-15 05:05:03'), - (84,616,'2006-02-15 05:05:03'), - (84,646,'2006-02-15 05:05:03'), - (84,703,'2006-02-15 05:05:03'), - (84,729,'2006-02-15 05:05:03'), - (84,764,'2006-02-15 05:05:03'), - (84,782,'2006-02-15 05:05:03'), - (84,809,'2006-02-15 05:05:03'), - (84,830,'2006-02-15 05:05:03'), - (84,843,'2006-02-15 05:05:03'), - (84,887,'2006-02-15 05:05:03'), - (84,975,'2006-02-15 05:05:03'), - (84,996,'2006-02-15 05:05:03'), - (85,2,'2006-02-15 05:05:03'), - (85,14,'2006-02-15 05:05:03'), - (85,72,'2006-02-15 05:05:03'), - (85,85,'2006-02-15 05:05:03'), - (85,92,'2006-02-15 05:05:03'), - (85,148,'2006-02-15 05:05:03'), - (85,216,'2006-02-15 05:05:03'), - (85,290,'2006-02-15 05:05:03'), - (85,296,'2006-02-15 05:05:03'), - (85,297,'2006-02-15 05:05:03'), - (85,337,'2006-02-15 05:05:03'), - (85,383,'2006-02-15 05:05:03'), - (85,421,'2006-02-15 05:05:03'), - (85,446,'2006-02-15 05:05:03'), - (85,461,'2006-02-15 05:05:03'), - (85,475,'2006-02-15 05:05:03'), - (85,478,'2006-02-15 05:05:03'), - (85,522,'2006-02-15 05:05:03'), - (85,543,'2006-02-15 05:05:03'), - (85,558,'2006-02-15 05:05:03'), - (85,591,'2006-02-15 05:05:03'), - (85,630,'2006-02-15 05:05:03'), - (85,678,'2006-02-15 05:05:03'), - (85,711,'2006-02-15 05:05:03'), - (85,761,'2006-02-15 05:05:03'), - (85,812,'2006-02-15 05:05:03'), - (85,869,'2006-02-15 05:05:03'), - (85,875,'2006-02-15 05:05:03'), - (85,895,'2006-02-15 05:05:03'), - (85,957,'2006-02-15 05:05:03'), - (85,960,'2006-02-15 05:05:03'), - (86,137,'2006-02-15 05:05:03'), - (86,163,'2006-02-15 05:05:03'), - (86,196,'2006-02-15 05:05:03'), - (86,216,'2006-02-15 05:05:03'), - (86,249,'2006-02-15 05:05:03'), - (86,303,'2006-02-15 05:05:03'), - (86,331,'2006-02-15 05:05:03'), - (86,364,'2006-02-15 05:05:03'), - (86,391,'2006-02-15 05:05:03'), - (86,432,'2006-02-15 05:05:03'), - (86,482,'2006-02-15 05:05:03'), - (86,486,'2006-02-15 05:05:03'), - (86,519,'2006-02-15 05:05:03'), - (86,520,'2006-02-15 05:05:03'), - (86,548,'2006-02-15 05:05:03'), - (86,623,'2006-02-15 05:05:03'), - (86,631,'2006-02-15 05:05:03'), - (86,636,'2006-02-15 05:05:03'), - (86,752,'2006-02-15 05:05:03'), - (86,760,'2006-02-15 05:05:03'), - (86,808,'2006-02-15 05:05:03'), - (86,857,'2006-02-15 05:05:03'), - (86,878,'2006-02-15 05:05:03'), - (86,893,'2006-02-15 05:05:03'), - (86,905,'2006-02-15 05:05:03'), - (86,923,'2006-02-15 05:05:03'), - (86,929,'2006-02-15 05:05:03'), - (87,48,'2006-02-15 05:05:03'), - (87,157,'2006-02-15 05:05:03'), - (87,161,'2006-02-15 05:05:03'), - (87,199,'2006-02-15 05:05:03'), - (87,207,'2006-02-15 05:05:03'), - (87,250,'2006-02-15 05:05:03'), - (87,253,'2006-02-15 05:05:03'), - (87,312,'2006-02-15 05:05:03'), - (87,421,'2006-02-15 05:05:03'), - (87,570,'2006-02-15 05:05:03'), - (87,599,'2006-02-15 05:05:03'), - (87,606,'2006-02-15 05:05:03'), - (87,654,'2006-02-15 05:05:03'), - (87,679,'2006-02-15 05:05:03'), - (87,706,'2006-02-15 05:05:03'), - (87,718,'2006-02-15 05:05:03'), - (87,721,'2006-02-15 05:05:03'), - (87,830,'2006-02-15 05:05:03'), - (87,870,'2006-02-15 05:05:03'), - (87,952,'2006-02-15 05:05:03'), - (87,961,'2006-02-15 05:05:03'), - (88,4,'2006-02-15 05:05:03'), - (88,76,'2006-02-15 05:05:03'), - (88,87,'2006-02-15 05:05:03'), - (88,128,'2006-02-15 05:05:03'), - (88,170,'2006-02-15 05:05:03'), - (88,193,'2006-02-15 05:05:03'), - (88,234,'2006-02-15 05:05:03'), - (88,304,'2006-02-15 05:05:03'), - (88,602,'2006-02-15 05:05:03'), - (88,620,'2006-02-15 05:05:03'), - (88,668,'2006-02-15 05:05:03'), - (88,717,'2006-02-15 05:05:03'), - (88,785,'2006-02-15 05:05:03'), - (88,819,'2006-02-15 05:05:03'), - (88,839,'2006-02-15 05:05:03'), - (88,881,'2006-02-15 05:05:03'), - (88,908,'2006-02-15 05:05:03'), - (88,929,'2006-02-15 05:05:03'), - (88,940,'2006-02-15 05:05:03'), - (88,968,'2006-02-15 05:05:03'), - (89,47,'2006-02-15 05:05:03'), - (89,103,'2006-02-15 05:05:03'), - (89,117,'2006-02-15 05:05:03'), - (89,162,'2006-02-15 05:05:03'), - (89,182,'2006-02-15 05:05:03'), - (89,187,'2006-02-15 05:05:03'), - (89,212,'2006-02-15 05:05:03'), - (89,254,'2006-02-15 05:05:03'), - (89,266,'2006-02-15 05:05:03'), - (89,306,'2006-02-15 05:05:03'), - (89,342,'2006-02-15 05:05:03'), - (89,406,'2006-02-15 05:05:03'), - (89,410,'2006-02-15 05:05:03'), - (89,446,'2006-02-15 05:05:03'), - (89,473,'2006-02-15 05:05:03'), - (89,488,'2006-02-15 05:05:03'), - (89,529,'2006-02-15 05:05:03'), - (89,542,'2006-02-15 05:05:03'), - (89,564,'2006-02-15 05:05:03'), - (89,697,'2006-02-15 05:05:03'), - (89,833,'2006-02-15 05:05:03'), - (89,864,'2006-02-15 05:05:03'), - (89,970,'2006-02-15 05:05:03'), - (89,976,'2006-02-15 05:05:03'), - (90,2,'2006-02-15 05:05:03'), - (90,11,'2006-02-15 05:05:03'), - (90,100,'2006-02-15 05:05:03'), - (90,197,'2006-02-15 05:05:03'), - (90,212,'2006-02-15 05:05:03'), - (90,262,'2006-02-15 05:05:03'), - (90,303,'2006-02-15 05:05:03'), - (90,330,'2006-02-15 05:05:03'), - (90,363,'2006-02-15 05:05:03'), - (90,374,'2006-02-15 05:05:03'), - (90,384,'2006-02-15 05:05:03'), - (90,385,'2006-02-15 05:05:03'), - (90,391,'2006-02-15 05:05:03'), - (90,406,'2006-02-15 05:05:03'), - (90,433,'2006-02-15 05:05:03'), - (90,442,'2006-02-15 05:05:03'), - (90,451,'2006-02-15 05:05:03'), - (90,520,'2006-02-15 05:05:03'), - (90,529,'2006-02-15 05:05:03'), - (90,542,'2006-02-15 05:05:03'), - (90,586,'2006-02-15 05:05:03'), - (90,633,'2006-02-15 05:05:03'), - (90,663,'2006-02-15 05:05:03'), - (90,676,'2006-02-15 05:05:03'), - (90,771,'2006-02-15 05:05:03'), - (90,817,'2006-02-15 05:05:03'), - (90,838,'2006-02-15 05:05:03'), - (90,855,'2006-02-15 05:05:03'), - (90,858,'2006-02-15 05:05:03'), - (90,868,'2006-02-15 05:05:03'), - (90,880,'2006-02-15 05:05:03'), - (90,901,'2006-02-15 05:05:03'), - (90,925,'2006-02-15 05:05:03'), - (91,13,'2006-02-15 05:05:03'), - (91,25,'2006-02-15 05:05:03'), - (91,48,'2006-02-15 05:05:03'), - (91,176,'2006-02-15 05:05:03'), - (91,181,'2006-02-15 05:05:03'), - (91,190,'2006-02-15 05:05:03'), - (91,335,'2006-02-15 05:05:03'), - (91,416,'2006-02-15 05:05:03'), - (91,447,'2006-02-15 05:05:03'), - (91,480,'2006-02-15 05:05:03'), - (91,493,'2006-02-15 05:05:03'), - (91,509,'2006-02-15 05:05:03'), - (91,511,'2006-02-15 05:05:03'), - (91,608,'2006-02-15 05:05:03'), - (91,807,'2006-02-15 05:05:03'), - (91,829,'2006-02-15 05:05:03'), - (91,849,'2006-02-15 05:05:03'), - (91,859,'2006-02-15 05:05:03'), - (91,941,'2006-02-15 05:05:03'), - (91,982,'2006-02-15 05:05:03'), - (92,90,'2006-02-15 05:05:03'), - (92,94,'2006-02-15 05:05:03'), - (92,103,'2006-02-15 05:05:03'), - (92,104,'2006-02-15 05:05:03'), - (92,123,'2006-02-15 05:05:03'), - (92,137,'2006-02-15 05:05:03'), - (92,207,'2006-02-15 05:05:03'), - (92,229,'2006-02-15 05:05:03'), - (92,338,'2006-02-15 05:05:03'), - (92,381,'2006-02-15 05:05:03'), - (92,436,'2006-02-15 05:05:03'), - (92,443,'2006-02-15 05:05:03'), - (92,453,'2006-02-15 05:05:03'), - (92,470,'2006-02-15 05:05:03'), - (92,505,'2006-02-15 05:05:03'), - (92,512,'2006-02-15 05:05:03'), - (92,543,'2006-02-15 05:05:03'), - (92,545,'2006-02-15 05:05:03'), - (92,547,'2006-02-15 05:05:03'), - (92,553,'2006-02-15 05:05:03'), - (92,564,'2006-02-15 05:05:03'), - (92,568,'2006-02-15 05:05:03'), - (92,618,'2006-02-15 05:05:03'), - (92,662,'2006-02-15 05:05:03'), - (92,686,'2006-02-15 05:05:03'), - (92,699,'2006-02-15 05:05:03'), - (92,712,'2006-02-15 05:05:03'), - (92,728,'2006-02-15 05:05:03'), - (92,802,'2006-02-15 05:05:03'), - (92,825,'2006-02-15 05:05:03'), - (92,838,'2006-02-15 05:05:03'), - (92,889,'2006-02-15 05:05:03'), - (92,929,'2006-02-15 05:05:03'), - (92,991,'2006-02-15 05:05:03'), - (93,71,'2006-02-15 05:05:03'), - (93,120,'2006-02-15 05:05:03'), - (93,124,'2006-02-15 05:05:03'), - (93,280,'2006-02-15 05:05:03'), - (93,325,'2006-02-15 05:05:03'), - (93,339,'2006-02-15 05:05:03'), - (93,427,'2006-02-15 05:05:03'), - (93,445,'2006-02-15 05:05:03'), - (93,453,'2006-02-15 05:05:03'), - (93,473,'2006-02-15 05:05:03'), - (93,573,'2006-02-15 05:05:03'), - (93,621,'2006-02-15 05:05:03'), - (93,644,'2006-02-15 05:05:03'), - (93,678,'2006-02-15 05:05:03'), - (93,680,'2006-02-15 05:05:03'), - (93,699,'2006-02-15 05:05:03'), - (93,744,'2006-02-15 05:05:03'), - (93,768,'2006-02-15 05:05:03'), - (93,777,'2006-02-15 05:05:03'), - (93,835,'2006-02-15 05:05:03'), - (93,856,'2006-02-15 05:05:03'), - (93,874,'2006-02-15 05:05:03'), - (93,909,'2006-02-15 05:05:03'), - (93,916,'2006-02-15 05:05:03'), - (93,982,'2006-02-15 05:05:03'), - (94,13,'2006-02-15 05:05:03'), - (94,60,'2006-02-15 05:05:03'), - (94,76,'2006-02-15 05:05:03'), - (94,122,'2006-02-15 05:05:03'), - (94,153,'2006-02-15 05:05:03'), - (94,193,'2006-02-15 05:05:03'), - (94,206,'2006-02-15 05:05:03'), - (94,228,'2006-02-15 05:05:03'), - (94,270,'2006-02-15 05:05:03'), - (94,275,'2006-02-15 05:05:03'), - (94,320,'2006-02-15 05:05:03'), - (94,322,'2006-02-15 05:05:03'), - (94,337,'2006-02-15 05:05:03'), - (94,354,'2006-02-15 05:05:03'), - (94,402,'2006-02-15 05:05:03'), - (94,428,'2006-02-15 05:05:03'), - (94,457,'2006-02-15 05:05:03'), - (94,473,'2006-02-15 05:05:03'), - (94,475,'2006-02-15 05:05:03'), - (94,512,'2006-02-15 05:05:03'), - (94,517,'2006-02-15 05:05:03'), - (94,521,'2006-02-15 05:05:03'), - (94,533,'2006-02-15 05:05:03'), - (94,540,'2006-02-15 05:05:03'), - (94,548,'2006-02-15 05:05:03'), - (94,551,'2006-02-15 05:05:03'), - (94,712,'2006-02-15 05:05:03'), - (94,713,'2006-02-15 05:05:03'), - (94,724,'2006-02-15 05:05:03'), - (94,775,'2006-02-15 05:05:03'), - (94,788,'2006-02-15 05:05:03'), - (94,950,'2006-02-15 05:05:03'), - (94,989,'2006-02-15 05:05:03'), - (95,22,'2006-02-15 05:05:03'), - (95,35,'2006-02-15 05:05:03'), - (95,47,'2006-02-15 05:05:03'), - (95,52,'2006-02-15 05:05:03'), - (95,65,'2006-02-15 05:05:03'), - (95,74,'2006-02-15 05:05:03'), - (95,126,'2006-02-15 05:05:03'), - (95,207,'2006-02-15 05:05:03'), - (95,245,'2006-02-15 05:05:03'), - (95,294,'2006-02-15 05:05:03'), - (95,301,'2006-02-15 05:05:03'), - (95,312,'2006-02-15 05:05:03'), - (95,329,'2006-02-15 05:05:03'), - (95,353,'2006-02-15 05:05:03'), - (95,375,'2006-02-15 05:05:03'), - (95,420,'2006-02-15 05:05:03'), - (95,424,'2006-02-15 05:05:03'), - (95,431,'2006-02-15 05:05:03'), - (95,498,'2006-02-15 05:05:03'), - (95,522,'2006-02-15 05:05:03'), - (95,546,'2006-02-15 05:05:03'), - (95,551,'2006-02-15 05:05:03'), - (95,619,'2006-02-15 05:05:03'), - (95,627,'2006-02-15 05:05:03'), - (95,690,'2006-02-15 05:05:03'), - (95,748,'2006-02-15 05:05:03'), - (95,813,'2006-02-15 05:05:03'), - (95,828,'2006-02-15 05:05:03'), - (95,855,'2006-02-15 05:05:03'), - (95,903,'2006-02-15 05:05:03'), - (95,923,'2006-02-15 05:05:03'), - (96,8,'2006-02-15 05:05:03'), - (96,36,'2006-02-15 05:05:03'), - (96,40,'2006-02-15 05:05:03'), - (96,54,'2006-02-15 05:05:03'), - (96,58,'2006-02-15 05:05:03'), - (96,66,'2006-02-15 05:05:03'), - (96,134,'2006-02-15 05:05:03'), - (96,209,'2006-02-15 05:05:03'), - (96,244,'2006-02-15 05:05:03'), - (96,320,'2006-02-15 05:05:03'), - (96,430,'2006-02-15 05:05:03'), - (96,452,'2006-02-15 05:05:03'), - (96,486,'2006-02-15 05:05:03'), - (96,572,'2006-02-15 05:05:03'), - (96,590,'2006-02-15 05:05:03'), - (96,661,'2006-02-15 05:05:03'), - (96,778,'2006-02-15 05:05:03'), - (96,832,'2006-02-15 05:05:03'), - (96,846,'2006-02-15 05:05:03'), - (96,874,'2006-02-15 05:05:03'), - (96,945,'2006-02-15 05:05:03'), - (96,968,'2006-02-15 05:05:03'), - (96,987,'2006-02-15 05:05:03'), - (97,143,'2006-02-15 05:05:03'), - (97,177,'2006-02-15 05:05:03'), - (97,188,'2006-02-15 05:05:03'), - (97,197,'2006-02-15 05:05:03'), - (97,256,'2006-02-15 05:05:03'), - (97,312,'2006-02-15 05:05:03'), - (97,342,'2006-02-15 05:05:03'), - (97,348,'2006-02-15 05:05:03'), - (97,358,'2006-02-15 05:05:03'), - (97,370,'2006-02-15 05:05:03'), - (97,437,'2006-02-15 05:05:03'), - (97,446,'2006-02-15 05:05:03'), - (97,466,'2006-02-15 05:05:03'), - (97,518,'2006-02-15 05:05:03'), - (97,553,'2006-02-15 05:05:03'), - (97,561,'2006-02-15 05:05:03'), - (97,641,'2006-02-15 05:05:03'), - (97,656,'2006-02-15 05:05:03'), - (97,728,'2006-02-15 05:05:03'), - (97,755,'2006-02-15 05:05:03'), - (97,757,'2006-02-15 05:05:03'), - (97,826,'2006-02-15 05:05:03'), - (97,862,'2006-02-15 05:05:03'), - (97,930,'2006-02-15 05:05:03'), - (97,933,'2006-02-15 05:05:03'), - (97,947,'2006-02-15 05:05:03'), - (97,951,'2006-02-15 05:05:03'), - (98,66,'2006-02-15 05:05:03'), - (98,72,'2006-02-15 05:05:03'), - (98,81,'2006-02-15 05:05:03'), - (98,87,'2006-02-15 05:05:03'), - (98,107,'2006-02-15 05:05:03'), - (98,120,'2006-02-15 05:05:03'), - (98,183,'2006-02-15 05:05:03'), - (98,194,'2006-02-15 05:05:03'), - (98,212,'2006-02-15 05:05:03'), - (98,297,'2006-02-15 05:05:03'), - (98,607,'2006-02-15 05:05:03'), - (98,634,'2006-02-15 05:05:03'), - (98,686,'2006-02-15 05:05:03'), - (98,705,'2006-02-15 05:05:03'), - (98,710,'2006-02-15 05:05:03'), - (98,721,'2006-02-15 05:05:03'), - (98,725,'2006-02-15 05:05:03'), - (98,734,'2006-02-15 05:05:03'), - (98,738,'2006-02-15 05:05:03'), - (98,765,'2006-02-15 05:05:03'), - (98,782,'2006-02-15 05:05:03'), - (98,824,'2006-02-15 05:05:03'), - (98,829,'2006-02-15 05:05:03'), - (98,912,'2006-02-15 05:05:03'), - (98,955,'2006-02-15 05:05:03'), - (98,985,'2006-02-15 05:05:03'), - (98,990,'2006-02-15 05:05:03'), - (99,7,'2006-02-15 05:05:03'), - (99,27,'2006-02-15 05:05:03'), - (99,84,'2006-02-15 05:05:03'), - (99,250,'2006-02-15 05:05:03'), - (99,322,'2006-02-15 05:05:03'), - (99,325,'2006-02-15 05:05:03'), - (99,381,'2006-02-15 05:05:03'), - (99,414,'2006-02-15 05:05:03'), - (99,475,'2006-02-15 05:05:03'), - (99,490,'2006-02-15 05:05:03'), - (99,512,'2006-02-15 05:05:03'), - (99,540,'2006-02-15 05:05:03'), - (99,572,'2006-02-15 05:05:03'), - (99,600,'2006-02-15 05:05:03'), - (99,618,'2006-02-15 05:05:03'), - (99,620,'2006-02-15 05:05:03'), - (99,622,'2006-02-15 05:05:03'), - (99,636,'2006-02-15 05:05:03'), - (99,672,'2006-02-15 05:05:03'), - (99,726,'2006-02-15 05:05:03'), - (99,741,'2006-02-15 05:05:03'), - (99,796,'2006-02-15 05:05:03'), - (99,835,'2006-02-15 05:05:03'), - (99,967,'2006-02-15 05:05:03'), - (99,978,'2006-02-15 05:05:03'), - (99,982,'2006-02-15 05:05:03'), - (100,17,'2006-02-15 05:05:03'), - (100,118,'2006-02-15 05:05:03'), - (100,250,'2006-02-15 05:05:03'), - (100,411,'2006-02-15 05:05:03'), - (100,414,'2006-02-15 05:05:03'), - (100,513,'2006-02-15 05:05:03'), - (100,563,'2006-02-15 05:05:03'), - (100,642,'2006-02-15 05:05:03'), - (100,714,'2006-02-15 05:05:03'), - (100,718,'2006-02-15 05:05:03'), - (100,759,'2006-02-15 05:05:03'), - (100,779,'2006-02-15 05:05:03'), - (100,815,'2006-02-15 05:05:03'), - (100,846,'2006-02-15 05:05:03'), - (100,850,'2006-02-15 05:05:03'), - (100,872,'2006-02-15 05:05:03'), - (100,877,'2006-02-15 05:05:03'), - (100,909,'2006-02-15 05:05:03'), - (100,919,'2006-02-15 05:05:03'), - (100,944,'2006-02-15 05:05:03'), - (100,967,'2006-02-15 05:05:03'), - (100,979,'2006-02-15 05:05:03'), - (100,991,'2006-02-15 05:05:03'), - (100,992,'2006-02-15 05:05:03'), - (101,60,'2006-02-15 05:05:03'), - (101,66,'2006-02-15 05:05:03'), - (101,85,'2006-02-15 05:05:03'), - (101,146,'2006-02-15 05:05:03'), - (101,189,'2006-02-15 05:05:03'), - (101,250,'2006-02-15 05:05:03'), - (101,255,'2006-02-15 05:05:03'), - (101,263,'2006-02-15 05:05:03'), - (101,275,'2006-02-15 05:05:03'), - (101,289,'2006-02-15 05:05:03'), - (101,491,'2006-02-15 05:05:03'), - (101,494,'2006-02-15 05:05:03'), - (101,511,'2006-02-15 05:05:03'), - (101,568,'2006-02-15 05:05:03'), - (101,608,'2006-02-15 05:05:03'), - (101,617,'2006-02-15 05:05:03'), - (101,655,'2006-02-15 05:05:03'), - (101,662,'2006-02-15 05:05:03'), - (101,700,'2006-02-15 05:05:03'), - (101,702,'2006-02-15 05:05:03'), - (101,758,'2006-02-15 05:05:03'), - (101,774,'2006-02-15 05:05:03'), - (101,787,'2006-02-15 05:05:03'), - (101,828,'2006-02-15 05:05:03'), - (101,841,'2006-02-15 05:05:03'), - (101,928,'2006-02-15 05:05:03'), - (101,932,'2006-02-15 05:05:03'), - (101,936,'2006-02-15 05:05:03'), - (101,941,'2006-02-15 05:05:03'), - (101,978,'2006-02-15 05:05:03'), - (101,980,'2006-02-15 05:05:03'), - (101,984,'2006-02-15 05:05:03'), - (101,988,'2006-02-15 05:05:03'), - (102,20,'2006-02-15 05:05:03'), - (102,34,'2006-02-15 05:05:03'), - (102,53,'2006-02-15 05:05:03'), - (102,123,'2006-02-15 05:05:03'), - (102,124,'2006-02-15 05:05:03'), - (102,194,'2006-02-15 05:05:03'), - (102,200,'2006-02-15 05:05:03'), - (102,205,'2006-02-15 05:05:03'), - (102,268,'2006-02-15 05:05:03'), - (102,326,'2006-02-15 05:05:03'), - (102,329,'2006-02-15 05:05:03'), - (102,334,'2006-02-15 05:05:03'), - (102,351,'2006-02-15 05:05:03'), - (102,418,'2006-02-15 05:05:03'), - (102,431,'2006-02-15 05:05:03'), - (102,446,'2006-02-15 05:05:03'), - (102,485,'2006-02-15 05:05:03'), - (102,508,'2006-02-15 05:05:03'), - (102,517,'2006-02-15 05:05:03'), - (102,521,'2006-02-15 05:05:03'), - (102,526,'2006-02-15 05:05:03'), - (102,529,'2006-02-15 05:05:03'), - (102,544,'2006-02-15 05:05:03'), - (102,600,'2006-02-15 05:05:03'), - (102,605,'2006-02-15 05:05:03'), - (102,606,'2006-02-15 05:05:03'), - (102,624,'2006-02-15 05:05:03'), - (102,631,'2006-02-15 05:05:03'), - (102,712,'2006-02-15 05:05:03'), - (102,728,'2006-02-15 05:05:03'), - (102,744,'2006-02-15 05:05:03'), - (102,796,'2006-02-15 05:05:03'), - (102,802,'2006-02-15 05:05:03'), - (102,810,'2006-02-15 05:05:03'), - (102,828,'2006-02-15 05:05:03'), - (102,837,'2006-02-15 05:05:03'), - (102,845,'2006-02-15 05:05:03'), - (102,852,'2006-02-15 05:05:03'), - (102,958,'2006-02-15 05:05:03'), - (102,979,'2006-02-15 05:05:03'), - (102,980,'2006-02-15 05:05:03'), - (103,5,'2006-02-15 05:05:03'), - (103,118,'2006-02-15 05:05:03'), - (103,130,'2006-02-15 05:05:03'), - (103,197,'2006-02-15 05:05:03'), - (103,199,'2006-02-15 05:05:03'), - (103,206,'2006-02-15 05:05:03'), - (103,215,'2006-02-15 05:05:03'), - (103,221,'2006-02-15 05:05:03'), - (103,271,'2006-02-15 05:05:03'), - (103,285,'2006-02-15 05:05:03'), - (103,315,'2006-02-15 05:05:03'), - (103,318,'2006-02-15 05:05:03'), - (103,333,'2006-02-15 05:05:03'), - (103,347,'2006-02-15 05:05:03'), - (103,356,'2006-02-15 05:05:03'), - (103,360,'2006-02-15 05:05:03'), - (103,378,'2006-02-15 05:05:03'), - (103,437,'2006-02-15 05:05:03'), - (103,585,'2006-02-15 05:05:03'), - (103,609,'2006-02-15 05:05:03'), - (103,639,'2006-02-15 05:05:03'), - (103,643,'2006-02-15 05:05:03'), - (103,692,'2006-02-15 05:05:03'), - (103,735,'2006-02-15 05:05:03'), - (103,822,'2006-02-15 05:05:03'), - (103,895,'2006-02-15 05:05:03'), - (103,903,'2006-02-15 05:05:03'), - (103,912,'2006-02-15 05:05:03'), - (103,942,'2006-02-15 05:05:03'), - (103,956,'2006-02-15 05:05:03'), - (104,19,'2006-02-15 05:05:03'), - (104,39,'2006-02-15 05:05:03'), - (104,40,'2006-02-15 05:05:03'), - (104,59,'2006-02-15 05:05:03'), - (104,70,'2006-02-15 05:05:03'), - (104,136,'2006-02-15 05:05:03'), - (104,156,'2006-02-15 05:05:03'), - (104,184,'2006-02-15 05:05:03'), - (104,198,'2006-02-15 05:05:03'), - (104,233,'2006-02-15 05:05:03'), - (104,259,'2006-02-15 05:05:03'), - (104,287,'2006-02-15 05:05:03'), - (104,309,'2006-02-15 05:05:03'), - (104,313,'2006-02-15 05:05:03'), - (104,394,'2006-02-15 05:05:03'), - (104,401,'2006-02-15 05:05:03'), - (104,463,'2006-02-15 05:05:03'), - (104,506,'2006-02-15 05:05:03'), - (104,516,'2006-02-15 05:05:03'), - (104,583,'2006-02-15 05:05:03'), - (104,600,'2006-02-15 05:05:03'), - (104,607,'2006-02-15 05:05:03'), - (104,657,'2006-02-15 05:05:03'), - (104,677,'2006-02-15 05:05:03'), - (104,739,'2006-02-15 05:05:03'), - (104,892,'2006-02-15 05:05:03'), - (104,904,'2006-02-15 05:05:03'), - (104,926,'2006-02-15 05:05:03'), - (104,945,'2006-02-15 05:05:03'), - (104,984,'2006-02-15 05:05:03'), - (104,999,'2006-02-15 05:05:03'), - (105,12,'2006-02-15 05:05:03'), - (105,15,'2006-02-15 05:05:03'), - (105,21,'2006-02-15 05:05:03'), - (105,29,'2006-02-15 05:05:03'), - (105,42,'2006-02-15 05:05:03'), - (105,116,'2006-02-15 05:05:03'), - (105,158,'2006-02-15 05:05:03'), - (105,239,'2006-02-15 05:05:03'), - (105,280,'2006-02-15 05:05:03'), - (105,283,'2006-02-15 05:05:03'), - (105,315,'2006-02-15 05:05:03'), - (105,333,'2006-02-15 05:05:03'), - (105,372,'2006-02-15 05:05:03'), - (105,377,'2006-02-15 05:05:03'), - (105,530,'2006-02-15 05:05:03'), - (105,558,'2006-02-15 05:05:03'), - (105,561,'2006-02-15 05:05:03'), - (105,606,'2006-02-15 05:05:03'), - (105,649,'2006-02-15 05:05:03'), - (105,686,'2006-02-15 05:05:03'), - (105,750,'2006-02-15 05:05:03'), - (105,795,'2006-02-15 05:05:03'), - (105,831,'2006-02-15 05:05:03'), - (105,835,'2006-02-15 05:05:03'), - (105,858,'2006-02-15 05:05:03'), - (105,864,'2006-02-15 05:05:03'), - (105,893,'2006-02-15 05:05:03'), - (105,906,'2006-02-15 05:05:03'), - (105,910,'2006-02-15 05:05:03'), - (105,915,'2006-02-15 05:05:03'), - (105,954,'2006-02-15 05:05:03'), - (105,990,'2006-02-15 05:05:03'), - (105,993,'2006-02-15 05:05:03'), - (105,994,'2006-02-15 05:05:03'), - (106,44,'2006-02-15 05:05:03'), - (106,83,'2006-02-15 05:05:03'), - (106,108,'2006-02-15 05:05:03'), - (106,126,'2006-02-15 05:05:03'), - (106,136,'2006-02-15 05:05:03'), - (106,166,'2006-02-15 05:05:03'), - (106,189,'2006-02-15 05:05:03'), - (106,194,'2006-02-15 05:05:03'), - (106,204,'2006-02-15 05:05:03'), - (106,229,'2006-02-15 05:05:03'), - (106,241,'2006-02-15 05:05:03'), - (106,345,'2006-02-15 05:05:03'), - (106,365,'2006-02-15 05:05:03'), - (106,399,'2006-02-15 05:05:03'), - (106,439,'2006-02-15 05:05:03'), - (106,457,'2006-02-15 05:05:03'), - (106,469,'2006-02-15 05:05:03'), - (106,500,'2006-02-15 05:05:03'), - (106,505,'2006-02-15 05:05:03'), - (106,559,'2006-02-15 05:05:03'), - (106,566,'2006-02-15 05:05:03'), - (106,585,'2006-02-15 05:05:03'), - (106,639,'2006-02-15 05:05:03'), - (106,654,'2006-02-15 05:05:03'), - (106,659,'2006-02-15 05:05:03'), - (106,675,'2006-02-15 05:05:03'), - (106,687,'2006-02-15 05:05:03'), - (106,752,'2006-02-15 05:05:03'), - (106,763,'2006-02-15 05:05:03'), - (106,780,'2006-02-15 05:05:03'), - (106,858,'2006-02-15 05:05:03'), - (106,866,'2006-02-15 05:05:03'), - (106,881,'2006-02-15 05:05:03'), - (106,894,'2006-02-15 05:05:03'), - (106,934,'2006-02-15 05:05:03'), - (107,62,'2006-02-15 05:05:03'), - (107,112,'2006-02-15 05:05:03'), - (107,133,'2006-02-15 05:05:03'), - (107,136,'2006-02-15 05:05:03'), - (107,138,'2006-02-15 05:05:03'), - (107,162,'2006-02-15 05:05:03'), - (107,165,'2006-02-15 05:05:03'), - (107,172,'2006-02-15 05:05:03'), - (107,209,'2006-02-15 05:05:03'), - (107,220,'2006-02-15 05:05:03'), - (107,239,'2006-02-15 05:05:03'), - (107,277,'2006-02-15 05:05:03'), - (107,292,'2006-02-15 05:05:03'), - (107,338,'2006-02-15 05:05:03'), - (107,348,'2006-02-15 05:05:03'), - (107,369,'2006-02-15 05:05:03'), - (107,388,'2006-02-15 05:05:03'), - (107,392,'2006-02-15 05:05:03'), - (107,409,'2006-02-15 05:05:03'), - (107,430,'2006-02-15 05:05:03'), - (107,445,'2006-02-15 05:05:03'), - (107,454,'2006-02-15 05:05:03'), - (107,458,'2006-02-15 05:05:03'), - (107,467,'2006-02-15 05:05:03'), - (107,520,'2006-02-15 05:05:03'), - (107,534,'2006-02-15 05:05:03'), - (107,548,'2006-02-15 05:05:03'), - (107,571,'2006-02-15 05:05:03'), - (107,574,'2006-02-15 05:05:03'), - (107,603,'2006-02-15 05:05:03'), - (107,606,'2006-02-15 05:05:03'), - (107,637,'2006-02-15 05:05:03'), - (107,774,'2006-02-15 05:05:03'), - (107,781,'2006-02-15 05:05:03'), - (107,796,'2006-02-15 05:05:03'), - (107,831,'2006-02-15 05:05:03'), - (107,849,'2006-02-15 05:05:03'), - (107,859,'2006-02-15 05:05:03'), - (107,879,'2006-02-15 05:05:03'), - (107,905,'2006-02-15 05:05:03'), - (107,973,'2006-02-15 05:05:03'), - (107,977,'2006-02-15 05:05:03'), - (108,1,'2006-02-15 05:05:03'), - (108,6,'2006-02-15 05:05:03'), - (108,9,'2006-02-15 05:05:03'), - (108,137,'2006-02-15 05:05:03'), - (108,208,'2006-02-15 05:05:03'), - (108,219,'2006-02-15 05:05:03'), - (108,242,'2006-02-15 05:05:03'), - (108,278,'2006-02-15 05:05:03'), - (108,302,'2006-02-15 05:05:03'), - (108,350,'2006-02-15 05:05:03'), - (108,378,'2006-02-15 05:05:03'), - (108,379,'2006-02-15 05:05:03'), - (108,495,'2006-02-15 05:05:03'), - (108,507,'2006-02-15 05:05:03'), - (108,517,'2006-02-15 05:05:03'), - (108,561,'2006-02-15 05:05:03'), - (108,567,'2006-02-15 05:05:03'), - (108,648,'2006-02-15 05:05:03'), - (108,652,'2006-02-15 05:05:03'), - (108,655,'2006-02-15 05:05:03'), - (108,673,'2006-02-15 05:05:03'), - (108,693,'2006-02-15 05:05:03'), - (108,696,'2006-02-15 05:05:03'), - (108,702,'2006-02-15 05:05:03'), - (108,721,'2006-02-15 05:05:03'), - (108,733,'2006-02-15 05:05:03'), - (108,741,'2006-02-15 05:05:03'), - (108,744,'2006-02-15 05:05:03'), - (108,887,'2006-02-15 05:05:03'), - (108,892,'2006-02-15 05:05:03'), - (108,894,'2006-02-15 05:05:03'), - (108,920,'2006-02-15 05:05:03'), - (108,958,'2006-02-15 05:05:03'), - (108,966,'2006-02-15 05:05:03'), - (109,12,'2006-02-15 05:05:03'), - (109,48,'2006-02-15 05:05:03'), - (109,77,'2006-02-15 05:05:03'), - (109,157,'2006-02-15 05:05:03'), - (109,174,'2006-02-15 05:05:03'), - (109,190,'2006-02-15 05:05:03'), - (109,243,'2006-02-15 05:05:03'), - (109,281,'2006-02-15 05:05:03'), - (109,393,'2006-02-15 05:05:03'), - (109,463,'2006-02-15 05:05:03'), - (109,622,'2006-02-15 05:05:03'), - (109,657,'2006-02-15 05:05:03'), - (109,694,'2006-02-15 05:05:03'), - (109,700,'2006-02-15 05:05:03'), - (109,732,'2006-02-15 05:05:03'), - (109,753,'2006-02-15 05:05:03'), - (109,785,'2006-02-15 05:05:03'), - (109,786,'2006-02-15 05:05:03'), - (109,863,'2006-02-15 05:05:03'), - (109,885,'2006-02-15 05:05:03'), - (109,955,'2006-02-15 05:05:03'), - (109,967,'2006-02-15 05:05:03'), - (110,8,'2006-02-15 05:05:03'), - (110,27,'2006-02-15 05:05:03'), - (110,62,'2006-02-15 05:05:03'), - (110,120,'2006-02-15 05:05:03'), - (110,126,'2006-02-15 05:05:03'), - (110,156,'2006-02-15 05:05:03'), - (110,292,'2006-02-15 05:05:03'), - (110,343,'2006-02-15 05:05:03'), - (110,360,'2006-02-15 05:05:03'), - (110,369,'2006-02-15 05:05:03'), - (110,435,'2006-02-15 05:05:03'), - (110,513,'2006-02-15 05:05:03'), - (110,525,'2006-02-15 05:05:03'), - (110,539,'2006-02-15 05:05:03'), - (110,545,'2006-02-15 05:05:03'), - (110,625,'2006-02-15 05:05:03'), - (110,650,'2006-02-15 05:05:03'), - (110,801,'2006-02-15 05:05:03'), - (110,912,'2006-02-15 05:05:03'), - (110,961,'2006-02-15 05:05:03'), - (110,987,'2006-02-15 05:05:03'), - (111,61,'2006-02-15 05:05:03'), - (111,78,'2006-02-15 05:05:03'), - (111,98,'2006-02-15 05:05:03'), - (111,162,'2006-02-15 05:05:03'), - (111,179,'2006-02-15 05:05:03'), - (111,194,'2006-02-15 05:05:03'), - (111,325,'2006-02-15 05:05:03'), - (111,359,'2006-02-15 05:05:03'), - (111,382,'2006-02-15 05:05:03'), - (111,403,'2006-02-15 05:05:03'), - (111,407,'2006-02-15 05:05:03'), - (111,414,'2006-02-15 05:05:03'), - (111,474,'2006-02-15 05:05:03'), - (111,489,'2006-02-15 05:05:03'), - (111,508,'2006-02-15 05:05:03'), - (111,555,'2006-02-15 05:05:03'), - (111,603,'2006-02-15 05:05:03'), - (111,608,'2006-02-15 05:05:03'), - (111,643,'2006-02-15 05:05:03'), - (111,669,'2006-02-15 05:05:03'), - (111,679,'2006-02-15 05:05:03'), - (111,680,'2006-02-15 05:05:03'), - (111,699,'2006-02-15 05:05:03'), - (111,731,'2006-02-15 05:05:03'), - (111,732,'2006-02-15 05:05:03'), - (111,737,'2006-02-15 05:05:03'), - (111,744,'2006-02-15 05:05:03'), - (111,777,'2006-02-15 05:05:03'), - (111,847,'2006-02-15 05:05:03'), - (111,894,'2006-02-15 05:05:03'), - (111,919,'2006-02-15 05:05:03'), - (111,962,'2006-02-15 05:05:03'), - (111,973,'2006-02-15 05:05:03'), - (112,34,'2006-02-15 05:05:03'), - (112,37,'2006-02-15 05:05:03'), - (112,151,'2006-02-15 05:05:03'), - (112,173,'2006-02-15 05:05:03'), - (112,188,'2006-02-15 05:05:03'), - (112,231,'2006-02-15 05:05:03'), - (112,312,'2006-02-15 05:05:03'), - (112,322,'2006-02-15 05:05:03'), - (112,443,'2006-02-15 05:05:03'), - (112,450,'2006-02-15 05:05:03'), - (112,565,'2006-02-15 05:05:03'), - (112,603,'2006-02-15 05:05:03'), - (112,606,'2006-02-15 05:05:03'), - (112,654,'2006-02-15 05:05:03'), - (112,666,'2006-02-15 05:05:03'), - (112,700,'2006-02-15 05:05:03'), - (112,728,'2006-02-15 05:05:03'), - (112,772,'2006-02-15 05:05:03'), - (112,796,'2006-02-15 05:05:03'), - (112,817,'2006-02-15 05:05:03'), - (112,829,'2006-02-15 05:05:03'), - (112,856,'2006-02-15 05:05:03'), - (112,865,'2006-02-15 05:05:03'), - (112,869,'2006-02-15 05:05:03'), - (112,988,'2006-02-15 05:05:03'), - (113,35,'2006-02-15 05:05:03'), - (113,84,'2006-02-15 05:05:03'), - (113,116,'2006-02-15 05:05:03'), - (113,181,'2006-02-15 05:05:03'), - (113,218,'2006-02-15 05:05:03'), - (113,249,'2006-02-15 05:05:03'), - (113,258,'2006-02-15 05:05:03'), - (113,292,'2006-02-15 05:05:03'), - (113,322,'2006-02-15 05:05:03'), - (113,353,'2006-02-15 05:05:03'), - (113,403,'2006-02-15 05:05:03'), - (113,525,'2006-02-15 05:05:03'), - (113,642,'2006-02-15 05:05:03'), - (113,656,'2006-02-15 05:05:03'), - (113,674,'2006-02-15 05:05:03'), - (113,680,'2006-02-15 05:05:03'), - (113,700,'2006-02-15 05:05:03'), - (113,719,'2006-02-15 05:05:03'), - (113,723,'2006-02-15 05:05:03'), - (113,726,'2006-02-15 05:05:03'), - (113,732,'2006-02-15 05:05:03'), - (113,748,'2006-02-15 05:05:03'), - (113,838,'2006-02-15 05:05:03'), - (113,890,'2006-02-15 05:05:03'), - (113,921,'2006-02-15 05:05:03'), - (113,969,'2006-02-15 05:05:03'), - (113,981,'2006-02-15 05:05:03'), - (114,13,'2006-02-15 05:05:03'), - (114,68,'2006-02-15 05:05:03'), - (114,90,'2006-02-15 05:05:03'), - (114,162,'2006-02-15 05:05:03'), - (114,188,'2006-02-15 05:05:03'), - (114,194,'2006-02-15 05:05:03'), - (114,210,'2006-02-15 05:05:03'), - (114,237,'2006-02-15 05:05:03'), - (114,254,'2006-02-15 05:05:03'), - (114,305,'2006-02-15 05:05:03'), - (114,339,'2006-02-15 05:05:03'), - (114,420,'2006-02-15 05:05:03'), - (114,425,'2006-02-15 05:05:03'), - (114,452,'2006-02-15 05:05:03'), - (114,538,'2006-02-15 05:05:03'), - (114,619,'2006-02-15 05:05:03'), - (114,757,'2006-02-15 05:05:03'), - (114,807,'2006-02-15 05:05:03'), - (114,827,'2006-02-15 05:05:03'), - (114,841,'2006-02-15 05:05:03'), - (114,861,'2006-02-15 05:05:03'), - (114,866,'2006-02-15 05:05:03'), - (114,913,'2006-02-15 05:05:03'), - (114,961,'2006-02-15 05:05:03'), - (114,993,'2006-02-15 05:05:03'), - (115,49,'2006-02-15 05:05:03'), - (115,52,'2006-02-15 05:05:03'), - (115,245,'2006-02-15 05:05:03'), - (115,246,'2006-02-15 05:05:03'), - (115,277,'2006-02-15 05:05:03'), - (115,302,'2006-02-15 05:05:03'), - (115,379,'2006-02-15 05:05:03'), - (115,383,'2006-02-15 05:05:03'), - (115,391,'2006-02-15 05:05:03'), - (115,428,'2006-02-15 05:05:03'), - (115,506,'2006-02-15 05:05:03'), - (115,531,'2006-02-15 05:05:03'), - (115,607,'2006-02-15 05:05:03'), - (115,615,'2006-02-15 05:05:03'), - (115,661,'2006-02-15 05:05:03'), - (115,671,'2006-02-15 05:05:03'), - (115,686,'2006-02-15 05:05:03'), - (115,703,'2006-02-15 05:05:03'), - (115,714,'2006-02-15 05:05:03'), - (115,740,'2006-02-15 05:05:03'), - (115,754,'2006-02-15 05:05:03'), - (115,846,'2006-02-15 05:05:03'), - (115,887,'2006-02-15 05:05:03'), - (115,952,'2006-02-15 05:05:03'), - (115,955,'2006-02-15 05:05:03'), - (115,966,'2006-02-15 05:05:03'), - (115,985,'2006-02-15 05:05:03'), - (115,994,'2006-02-15 05:05:03'), - (116,36,'2006-02-15 05:05:03'), - (116,48,'2006-02-15 05:05:03'), - (116,88,'2006-02-15 05:05:03'), - (116,90,'2006-02-15 05:05:03'), - (116,105,'2006-02-15 05:05:03'), - (116,128,'2006-02-15 05:05:03'), - (116,336,'2006-02-15 05:05:03'), - (116,338,'2006-02-15 05:05:03'), - (116,384,'2006-02-15 05:05:03'), - (116,412,'2006-02-15 05:05:03'), - (116,420,'2006-02-15 05:05:03'), - (116,451,'2006-02-15 05:05:03'), - (116,481,'2006-02-15 05:05:03'), - (116,492,'2006-02-15 05:05:03'), - (116,584,'2006-02-15 05:05:03'), - (116,606,'2006-02-15 05:05:03'), - (116,622,'2006-02-15 05:05:03'), - (116,647,'2006-02-15 05:05:03'), - (116,653,'2006-02-15 05:05:03'), - (116,742,'2006-02-15 05:05:03'), - (116,784,'2006-02-15 05:05:03'), - (116,844,'2006-02-15 05:05:03'), - (116,939,'2006-02-15 05:05:03'), - (116,956,'2006-02-15 05:05:03'), - (117,10,'2006-02-15 05:05:03'), - (117,15,'2006-02-15 05:05:03'), - (117,42,'2006-02-15 05:05:03'), - (117,167,'2006-02-15 05:05:03'), - (117,178,'2006-02-15 05:05:03'), - (117,190,'2006-02-15 05:05:03'), - (117,197,'2006-02-15 05:05:03'), - (117,224,'2006-02-15 05:05:03'), - (117,246,'2006-02-15 05:05:03'), - (117,273,'2006-02-15 05:05:03'), - (117,298,'2006-02-15 05:05:03'), - (117,316,'2006-02-15 05:05:03'), - (117,337,'2006-02-15 05:05:03'), - (117,395,'2006-02-15 05:05:03'), - (117,423,'2006-02-15 05:05:03'), - (117,432,'2006-02-15 05:05:03'), - (117,459,'2006-02-15 05:05:03'), - (117,468,'2006-02-15 05:05:03'), - (117,550,'2006-02-15 05:05:03'), - (117,578,'2006-02-15 05:05:03'), - (117,707,'2006-02-15 05:05:03'), - (117,710,'2006-02-15 05:05:03'), - (117,738,'2006-02-15 05:05:03'), - (117,739,'2006-02-15 05:05:03'), - (117,778,'2006-02-15 05:05:03'), - (117,783,'2006-02-15 05:05:03'), - (117,785,'2006-02-15 05:05:03'), - (117,797,'2006-02-15 05:05:03'), - (117,812,'2006-02-15 05:05:03'), - (117,831,'2006-02-15 05:05:03'), - (117,864,'2006-02-15 05:05:03'), - (117,887,'2006-02-15 05:05:03'), - (117,926,'2006-02-15 05:05:03'), - (118,35,'2006-02-15 05:05:03'), - (118,39,'2006-02-15 05:05:03'), - (118,41,'2006-02-15 05:05:03'), - (118,49,'2006-02-15 05:05:03'), - (118,55,'2006-02-15 05:05:03'), - (118,136,'2006-02-15 05:05:03'), - (118,141,'2006-02-15 05:05:03'), - (118,151,'2006-02-15 05:05:03'), - (118,311,'2006-02-15 05:05:03'), - (118,384,'2006-02-15 05:05:03'), - (118,399,'2006-02-15 05:05:03'), - (118,499,'2006-02-15 05:05:03'), - (118,517,'2006-02-15 05:05:03'), - (118,553,'2006-02-15 05:05:03'), - (118,558,'2006-02-15 05:05:03'), - (118,572,'2006-02-15 05:05:03'), - (118,641,'2006-02-15 05:05:03'), - (118,656,'2006-02-15 05:05:03'), - (118,695,'2006-02-15 05:05:03'), - (118,735,'2006-02-15 05:05:03'), - (118,788,'2006-02-15 05:05:03'), - (118,852,'2006-02-15 05:05:03'), - (118,938,'2006-02-15 05:05:03'), - (118,957,'2006-02-15 05:05:03'), - (118,969,'2006-02-15 05:05:03'), - (119,21,'2006-02-15 05:05:03'), - (119,49,'2006-02-15 05:05:03'), - (119,64,'2006-02-15 05:05:03'), - (119,87,'2006-02-15 05:05:03'), - (119,143,'2006-02-15 05:05:03'), - (119,171,'2006-02-15 05:05:03'), - (119,172,'2006-02-15 05:05:03'), - (119,173,'2006-02-15 05:05:03'), - (119,381,'2006-02-15 05:05:03'), - (119,394,'2006-02-15 05:05:03'), - (119,412,'2006-02-15 05:05:03'), - (119,418,'2006-02-15 05:05:03'), - (119,454,'2006-02-15 05:05:03'), - (119,509,'2006-02-15 05:05:03'), - (119,521,'2006-02-15 05:05:03'), - (119,567,'2006-02-15 05:05:03'), - (119,570,'2006-02-15 05:05:03'), - (119,592,'2006-02-15 05:05:03'), - (119,614,'2006-02-15 05:05:03'), - (119,636,'2006-02-15 05:05:03'), - (119,649,'2006-02-15 05:05:03'), - (119,693,'2006-02-15 05:05:03'), - (119,738,'2006-02-15 05:05:03'), - (119,751,'2006-02-15 05:05:03'), - (119,782,'2006-02-15 05:05:03'), - (119,786,'2006-02-15 05:05:03'), - (119,788,'2006-02-15 05:05:03'), - (119,802,'2006-02-15 05:05:03'), - (119,858,'2006-02-15 05:05:03'), - (119,868,'2006-02-15 05:05:03'), - (119,900,'2006-02-15 05:05:03'), - (119,939,'2006-02-15 05:05:03'), - (120,57,'2006-02-15 05:05:03'), - (120,63,'2006-02-15 05:05:03'), - (120,144,'2006-02-15 05:05:03'), - (120,149,'2006-02-15 05:05:03'), - (120,208,'2006-02-15 05:05:03'), - (120,231,'2006-02-15 05:05:03'), - (120,238,'2006-02-15 05:05:03'), - (120,255,'2006-02-15 05:05:03'), - (120,414,'2006-02-15 05:05:03'), - (120,424,'2006-02-15 05:05:03'), - (120,489,'2006-02-15 05:05:03'), - (120,513,'2006-02-15 05:05:03'), - (120,590,'2006-02-15 05:05:03'), - (120,641,'2006-02-15 05:05:03'), - (120,642,'2006-02-15 05:05:03'), - (120,659,'2006-02-15 05:05:03'), - (120,682,'2006-02-15 05:05:03'), - (120,691,'2006-02-15 05:05:03'), - (120,715,'2006-02-15 05:05:03'), - (120,717,'2006-02-15 05:05:03'), - (120,722,'2006-02-15 05:05:03'), - (120,746,'2006-02-15 05:05:03'), - (120,830,'2006-02-15 05:05:03'), - (120,894,'2006-02-15 05:05:03'), - (120,898,'2006-02-15 05:05:03'), - (120,911,'2006-02-15 05:05:03'), - (120,994,'2006-02-15 05:05:03'), - (121,141,'2006-02-15 05:05:03'), - (121,154,'2006-02-15 05:05:03'), - (121,161,'2006-02-15 05:05:03'), - (121,170,'2006-02-15 05:05:03'), - (121,186,'2006-02-15 05:05:03'), - (121,198,'2006-02-15 05:05:03'), - (121,220,'2006-02-15 05:05:03'), - (121,222,'2006-02-15 05:05:03'), - (121,284,'2006-02-15 05:05:03'), - (121,297,'2006-02-15 05:05:03'), - (121,338,'2006-02-15 05:05:03'), - (121,353,'2006-02-15 05:05:03'), - (121,449,'2006-02-15 05:05:03'), - (121,479,'2006-02-15 05:05:03'), - (121,517,'2006-02-15 05:05:03'), - (121,633,'2006-02-15 05:05:03'), - (121,654,'2006-02-15 05:05:03'), - (121,658,'2006-02-15 05:05:03'), - (121,666,'2006-02-15 05:05:03'), - (121,771,'2006-02-15 05:05:03'), - (121,780,'2006-02-15 05:05:03'), - (121,847,'2006-02-15 05:05:03'), - (121,884,'2006-02-15 05:05:03'), - (121,885,'2006-02-15 05:05:03'), - (121,966,'2006-02-15 05:05:03'), - (122,22,'2006-02-15 05:05:03'), - (122,29,'2006-02-15 05:05:03'), - (122,76,'2006-02-15 05:05:03'), - (122,83,'2006-02-15 05:05:03'), - (122,157,'2006-02-15 05:05:03'), - (122,158,'2006-02-15 05:05:03'), - (122,166,'2006-02-15 05:05:03'), - (122,227,'2006-02-15 05:05:03'), - (122,238,'2006-02-15 05:05:03'), - (122,300,'2006-02-15 05:05:03'), - (122,307,'2006-02-15 05:05:03'), - (122,363,'2006-02-15 05:05:03'), - (122,470,'2006-02-15 05:05:03'), - (122,489,'2006-02-15 05:05:03'), - (122,491,'2006-02-15 05:05:03'), - (122,542,'2006-02-15 05:05:03'), - (122,620,'2006-02-15 05:05:03'), - (122,649,'2006-02-15 05:05:03'), - (122,654,'2006-02-15 05:05:03'), - (122,673,'2006-02-15 05:05:03'), - (122,718,'2006-02-15 05:05:03'), - (122,795,'2006-02-15 05:05:03'), - (122,957,'2006-02-15 05:05:03'), - (122,961,'2006-02-15 05:05:03'), - (122,998,'2006-02-15 05:05:03'), - (123,3,'2006-02-15 05:05:03'), - (123,43,'2006-02-15 05:05:03'), - (123,67,'2006-02-15 05:05:03'), - (123,105,'2006-02-15 05:05:03'), - (123,148,'2006-02-15 05:05:03'), - (123,151,'2006-02-15 05:05:03'), - (123,185,'2006-02-15 05:05:03'), - (123,223,'2006-02-15 05:05:03'), - (123,234,'2006-02-15 05:05:03'), - (123,245,'2006-02-15 05:05:03'), - (123,246,'2006-02-15 05:05:03'), - (123,266,'2006-02-15 05:05:03'), - (123,286,'2006-02-15 05:05:03'), - (123,429,'2006-02-15 05:05:03'), - (123,442,'2006-02-15 05:05:03'), - (123,446,'2006-02-15 05:05:03'), - (123,479,'2006-02-15 05:05:03'), - (123,480,'2006-02-15 05:05:03'), - (123,494,'2006-02-15 05:05:03'), - (123,503,'2006-02-15 05:05:03'), - (123,530,'2006-02-15 05:05:03'), - (123,576,'2006-02-15 05:05:03'), - (123,577,'2006-02-15 05:05:03'), - (123,589,'2006-02-15 05:05:03'), - (123,593,'2006-02-15 05:05:03'), - (123,725,'2006-02-15 05:05:03'), - (123,730,'2006-02-15 05:05:03'), - (123,786,'2006-02-15 05:05:03'), - (123,860,'2006-02-15 05:05:03'), - (123,892,'2006-02-15 05:05:03'), - (123,926,'2006-02-15 05:05:03'), - (123,988,'2006-02-15 05:05:03'), - (124,22,'2006-02-15 05:05:03'), - (124,64,'2006-02-15 05:05:03'), - (124,106,'2006-02-15 05:05:03'), - (124,113,'2006-02-15 05:05:03'), - (124,190,'2006-02-15 05:05:03'), - (124,246,'2006-02-15 05:05:03'), - (124,260,'2006-02-15 05:05:03'), - (124,263,'2006-02-15 05:05:03'), - (124,289,'2006-02-15 05:05:03'), - (124,306,'2006-02-15 05:05:03'), - (124,312,'2006-02-15 05:05:03'), - (124,322,'2006-02-15 05:05:03'), - (124,343,'2006-02-15 05:05:03'), - (124,449,'2006-02-15 05:05:03'), - (124,468,'2006-02-15 05:05:03'), - (124,539,'2006-02-15 05:05:03'), - (124,601,'2006-02-15 05:05:03'), - (124,726,'2006-02-15 05:05:03'), - (124,742,'2006-02-15 05:05:03'), - (124,775,'2006-02-15 05:05:03'), - (124,785,'2006-02-15 05:05:03'), - (124,814,'2006-02-15 05:05:03'), - (124,858,'2006-02-15 05:05:03'), - (124,882,'2006-02-15 05:05:03'), - (124,987,'2006-02-15 05:05:03'), - (124,997,'2006-02-15 05:05:03'), - (125,62,'2006-02-15 05:05:03'), - (125,98,'2006-02-15 05:05:03'), - (125,100,'2006-02-15 05:05:03'), - (125,114,'2006-02-15 05:05:03'), - (125,175,'2006-02-15 05:05:03'), - (125,188,'2006-02-15 05:05:03'), - (125,204,'2006-02-15 05:05:03'), - (125,238,'2006-02-15 05:05:03'), - (125,250,'2006-02-15 05:05:03'), - (125,324,'2006-02-15 05:05:03'), - (125,338,'2006-02-15 05:05:03'), - (125,361,'2006-02-15 05:05:03'), - (125,367,'2006-02-15 05:05:03'), - (125,395,'2006-02-15 05:05:03'), - (125,414,'2006-02-15 05:05:03'), - (125,428,'2006-02-15 05:05:03'), - (125,429,'2006-02-15 05:05:03'), - (125,450,'2006-02-15 05:05:03'), - (125,497,'2006-02-15 05:05:03'), - (125,557,'2006-02-15 05:05:03'), - (125,568,'2006-02-15 05:05:03'), - (125,584,'2006-02-15 05:05:03'), - (125,602,'2006-02-15 05:05:03'), - (125,623,'2006-02-15 05:05:03'), - (125,664,'2006-02-15 05:05:03'), - (125,683,'2006-02-15 05:05:03'), - (125,710,'2006-02-15 05:05:03'), - (125,877,'2006-02-15 05:05:03'), - (125,908,'2006-02-15 05:05:03'), - (125,949,'2006-02-15 05:05:03'), - (125,965,'2006-02-15 05:05:03'), - (126,21,'2006-02-15 05:05:03'), - (126,34,'2006-02-15 05:05:03'), - (126,43,'2006-02-15 05:05:03'), - (126,58,'2006-02-15 05:05:03'), - (126,85,'2006-02-15 05:05:03'), - (126,96,'2006-02-15 05:05:03'), - (126,193,'2006-02-15 05:05:03'), - (126,194,'2006-02-15 05:05:03'), - (126,199,'2006-02-15 05:05:03'), - (126,256,'2006-02-15 05:05:03'), - (126,263,'2006-02-15 05:05:03'), - (126,288,'2006-02-15 05:05:03'), - (126,317,'2006-02-15 05:05:03'), - (126,347,'2006-02-15 05:05:03'), - (126,369,'2006-02-15 05:05:03'), - (126,370,'2006-02-15 05:05:03'), - (126,419,'2006-02-15 05:05:03'), - (126,468,'2006-02-15 05:05:03'), - (126,469,'2006-02-15 05:05:03'), - (126,545,'2006-02-15 05:05:03'), - (126,685,'2006-02-15 05:05:03'), - (126,836,'2006-02-15 05:05:03'), - (126,860,'2006-02-15 05:05:03'), - (127,36,'2006-02-15 05:05:03'), - (127,47,'2006-02-15 05:05:03'), - (127,48,'2006-02-15 05:05:03'), - (127,79,'2006-02-15 05:05:03'), - (127,119,'2006-02-15 05:05:03'), - (127,141,'2006-02-15 05:05:03'), - (127,157,'2006-02-15 05:05:03'), - (127,202,'2006-02-15 05:05:03'), - (127,286,'2006-02-15 05:05:03'), - (127,333,'2006-02-15 05:05:03'), - (127,354,'2006-02-15 05:05:03'), - (127,366,'2006-02-15 05:05:03'), - (127,382,'2006-02-15 05:05:03'), - (127,388,'2006-02-15 05:05:03'), - (127,411,'2006-02-15 05:05:03'), - (127,459,'2006-02-15 05:05:03'), - (127,553,'2006-02-15 05:05:03'), - (127,573,'2006-02-15 05:05:03'), - (127,613,'2006-02-15 05:05:03'), - (127,617,'2006-02-15 05:05:03'), - (127,641,'2006-02-15 05:05:03'), - (127,710,'2006-02-15 05:05:03'), - (127,727,'2006-02-15 05:05:03'), - (127,749,'2006-02-15 05:05:03'), - (127,763,'2006-02-15 05:05:03'), - (127,771,'2006-02-15 05:05:03'), - (127,791,'2006-02-15 05:05:03'), - (127,819,'2006-02-15 05:05:03'), - (127,839,'2006-02-15 05:05:03'), - (127,846,'2006-02-15 05:05:03'), - (127,911,'2006-02-15 05:05:03'), - (127,953,'2006-02-15 05:05:03'), - (127,970,'2006-02-15 05:05:03'), - (128,26,'2006-02-15 05:05:03'), - (128,82,'2006-02-15 05:05:03'), - (128,119,'2006-02-15 05:05:03'), - (128,168,'2006-02-15 05:05:03'), - (128,212,'2006-02-15 05:05:03'), - (128,238,'2006-02-15 05:05:03'), - (128,299,'2006-02-15 05:05:03'), - (128,312,'2006-02-15 05:05:03'), - (128,326,'2006-02-15 05:05:03'), - (128,336,'2006-02-15 05:05:03'), - (128,345,'2006-02-15 05:05:03'), - (128,407,'2006-02-15 05:05:03'), - (128,462,'2006-02-15 05:05:03'), - (128,485,'2006-02-15 05:05:03'), - (128,516,'2006-02-15 05:05:03'), - (128,564,'2006-02-15 05:05:03'), - (128,614,'2006-02-15 05:05:03'), - (128,650,'2006-02-15 05:05:03'), - (128,665,'2006-02-15 05:05:03'), - (128,671,'2006-02-15 05:05:03'), - (128,693,'2006-02-15 05:05:03'), - (128,696,'2006-02-15 05:05:03'), - (128,759,'2006-02-15 05:05:03'), - (128,774,'2006-02-15 05:05:03'), - (128,814,'2006-02-15 05:05:03'), - (128,899,'2006-02-15 05:05:03'), - (128,912,'2006-02-15 05:05:03'), - (128,944,'2006-02-15 05:05:03'), - (128,949,'2006-02-15 05:05:03'), - (128,965,'2006-02-15 05:05:03'), - (129,56,'2006-02-15 05:05:03'), - (129,89,'2006-02-15 05:05:03'), - (129,101,'2006-02-15 05:05:03'), - (129,166,'2006-02-15 05:05:03'), - (129,202,'2006-02-15 05:05:03'), - (129,230,'2006-02-15 05:05:03'), - (129,247,'2006-02-15 05:05:03'), - (129,249,'2006-02-15 05:05:03'), - (129,348,'2006-02-15 05:05:03'), - (129,367,'2006-02-15 05:05:03'), - (129,391,'2006-02-15 05:05:03'), - (129,418,'2006-02-15 05:05:03'), - (129,431,'2006-02-15 05:05:03'), - (129,452,'2006-02-15 05:05:03'), - (129,471,'2006-02-15 05:05:03'), - (129,520,'2006-02-15 05:05:03'), - (129,597,'2006-02-15 05:05:03'), - (129,602,'2006-02-15 05:05:03'), - (129,640,'2006-02-15 05:05:03'), - (129,669,'2006-02-15 05:05:03'), - (129,684,'2006-02-15 05:05:03'), - (129,705,'2006-02-15 05:05:03'), - (129,805,'2006-02-15 05:05:03'), - (129,826,'2006-02-15 05:05:03'), - (129,834,'2006-02-15 05:05:03'), - (129,857,'2006-02-15 05:05:03'), - (129,910,'2006-02-15 05:05:03'), - (129,920,'2006-02-15 05:05:03'), - (129,938,'2006-02-15 05:05:03'), - (129,962,'2006-02-15 05:05:03'), - (130,9,'2006-02-15 05:05:03'), - (130,26,'2006-02-15 05:05:03'), - (130,37,'2006-02-15 05:05:03'), - (130,43,'2006-02-15 05:05:03'), - (130,49,'2006-02-15 05:05:03'), - (130,57,'2006-02-15 05:05:03'), - (130,107,'2006-02-15 05:05:03'), - (130,112,'2006-02-15 05:05:03'), - (130,208,'2006-02-15 05:05:03'), - (130,326,'2006-02-15 05:05:03'), - (130,375,'2006-02-15 05:05:03'), - (130,416,'2006-02-15 05:05:03'), - (130,431,'2006-02-15 05:05:03'), - (130,452,'2006-02-15 05:05:03'), - (130,453,'2006-02-15 05:05:03'), - (130,478,'2006-02-15 05:05:03'), - (130,507,'2006-02-15 05:05:03'), - (130,525,'2006-02-15 05:05:03'), - (130,549,'2006-02-15 05:05:03'), - (130,592,'2006-02-15 05:05:03'), - (130,702,'2006-02-15 05:05:03'), - (130,725,'2006-02-15 05:05:03'), - (130,764,'2006-02-15 05:05:03'), - (130,809,'2006-02-15 05:05:03'), - (130,869,'2006-02-15 05:05:03'), - (130,930,'2006-02-15 05:05:03'), - (130,981,'2006-02-15 05:05:03'), - (131,48,'2006-02-15 05:05:03'), - (131,66,'2006-02-15 05:05:03'), - (131,94,'2006-02-15 05:05:03'), - (131,120,'2006-02-15 05:05:03'), - (131,147,'2006-02-15 05:05:03'), - (131,206,'2006-02-15 05:05:03'), - (131,320,'2006-02-15 05:05:03'), - (131,383,'2006-02-15 05:05:03'), - (131,432,'2006-02-15 05:05:03'), - (131,436,'2006-02-15 05:05:03'), - (131,450,'2006-02-15 05:05:03'), - (131,479,'2006-02-15 05:05:03'), - (131,494,'2006-02-15 05:05:03'), - (131,515,'2006-02-15 05:05:03'), - (131,539,'2006-02-15 05:05:03'), - (131,590,'2006-02-15 05:05:03'), - (131,647,'2006-02-15 05:05:03'), - (131,693,'2006-02-15 05:05:03'), - (131,713,'2006-02-15 05:05:03'), - (131,770,'2006-02-15 05:05:03'), - (131,798,'2006-02-15 05:05:03'), - (131,809,'2006-02-15 05:05:03'), - (131,875,'2006-02-15 05:05:03'), - (131,881,'2006-02-15 05:05:03'), - (131,921,'2006-02-15 05:05:03'), - (132,81,'2006-02-15 05:05:03'), - (132,82,'2006-02-15 05:05:03'), - (132,133,'2006-02-15 05:05:03'), - (132,156,'2006-02-15 05:05:03'), - (132,162,'2006-02-15 05:05:03'), - (132,311,'2006-02-15 05:05:03'), - (132,345,'2006-02-15 05:05:03'), - (132,377,'2006-02-15 05:05:03'), - (132,410,'2006-02-15 05:05:03'), - (132,538,'2006-02-15 05:05:03'), - (132,562,'2006-02-15 05:05:03'), - (132,586,'2006-02-15 05:05:03'), - (132,626,'2006-02-15 05:05:03'), - (132,637,'2006-02-15 05:05:03'), - (132,698,'2006-02-15 05:05:03'), - (132,756,'2006-02-15 05:05:03'), - (132,806,'2006-02-15 05:05:03'), - (132,897,'2006-02-15 05:05:03'), - (132,899,'2006-02-15 05:05:03'), - (132,904,'2006-02-15 05:05:03'), - (132,930,'2006-02-15 05:05:03'), - (132,987,'2006-02-15 05:05:03'), - (133,7,'2006-02-15 05:05:03'), - (133,51,'2006-02-15 05:05:03'), - (133,133,'2006-02-15 05:05:03'), - (133,172,'2006-02-15 05:05:03'), - (133,210,'2006-02-15 05:05:03'), - (133,270,'2006-02-15 05:05:03'), - (133,280,'2006-02-15 05:05:03'), - (133,286,'2006-02-15 05:05:03'), - (133,338,'2006-02-15 05:05:03'), - (133,342,'2006-02-15 05:05:03'), - (133,351,'2006-02-15 05:05:03'), - (133,368,'2006-02-15 05:05:03'), - (133,385,'2006-02-15 05:05:03'), - (133,390,'2006-02-15 05:05:03'), - (133,397,'2006-02-15 05:05:03'), - (133,410,'2006-02-15 05:05:03'), - (133,452,'2006-02-15 05:05:03'), - (133,463,'2006-02-15 05:05:03'), - (133,514,'2006-02-15 05:05:03'), - (133,588,'2006-02-15 05:05:03'), - (133,594,'2006-02-15 05:05:03'), - (133,635,'2006-02-15 05:05:03'), - (133,652,'2006-02-15 05:05:03'), - (133,727,'2006-02-15 05:05:03'), - (133,806,'2006-02-15 05:05:03'), - (133,868,'2006-02-15 05:05:03'), - (133,882,'2006-02-15 05:05:03'), - (133,894,'2006-02-15 05:05:03'), - (133,933,'2006-02-15 05:05:03'), - (133,952,'2006-02-15 05:05:03'), - (134,132,'2006-02-15 05:05:03'), - (134,145,'2006-02-15 05:05:03'), - (134,161,'2006-02-15 05:05:03'), - (134,219,'2006-02-15 05:05:03'), - (134,243,'2006-02-15 05:05:03'), - (134,250,'2006-02-15 05:05:03'), - (134,278,'2006-02-15 05:05:03'), - (134,341,'2006-02-15 05:05:03'), - (134,386,'2006-02-15 05:05:03'), - (134,413,'2006-02-15 05:05:03'), - (134,558,'2006-02-15 05:05:03'), - (134,588,'2006-02-15 05:05:03'), - (134,624,'2006-02-15 05:05:03'), - (134,655,'2006-02-15 05:05:03'), - (134,683,'2006-02-15 05:05:03'), - (134,690,'2006-02-15 05:05:03'), - (134,861,'2006-02-15 05:05:03'), - (134,896,'2006-02-15 05:05:03'), - (134,897,'2006-02-15 05:05:03'), - (134,915,'2006-02-15 05:05:03'), - (134,927,'2006-02-15 05:05:03'), - (134,936,'2006-02-15 05:05:03'), - (135,35,'2006-02-15 05:05:03'), - (135,41,'2006-02-15 05:05:03'), - (135,65,'2006-02-15 05:05:03'), - (135,88,'2006-02-15 05:05:03'), - (135,170,'2006-02-15 05:05:03'), - (135,269,'2006-02-15 05:05:03'), - (135,320,'2006-02-15 05:05:03'), - (135,353,'2006-02-15 05:05:03'), - (135,357,'2006-02-15 05:05:03'), - (135,364,'2006-02-15 05:05:03'), - (135,455,'2006-02-15 05:05:03'), - (135,458,'2006-02-15 05:05:03'), - (135,484,'2006-02-15 05:05:03'), - (135,541,'2006-02-15 05:05:03'), - (135,553,'2006-02-15 05:05:03'), - (135,616,'2006-02-15 05:05:03'), - (135,628,'2006-02-15 05:05:03'), - (135,719,'2006-02-15 05:05:03'), - (135,814,'2006-02-15 05:05:03'), - (135,905,'2006-02-15 05:05:03'), - (136,20,'2006-02-15 05:05:03'), - (136,25,'2006-02-15 05:05:03'), - (136,33,'2006-02-15 05:05:03'), - (136,56,'2006-02-15 05:05:03'), - (136,61,'2006-02-15 05:05:03'), - (136,193,'2006-02-15 05:05:03'), - (136,214,'2006-02-15 05:05:03'), - (136,229,'2006-02-15 05:05:03'), - (136,243,'2006-02-15 05:05:03'), - (136,256,'2006-02-15 05:05:03'), - (136,262,'2006-02-15 05:05:03'), - (136,271,'2006-02-15 05:05:03'), - (136,288,'2006-02-15 05:05:03'), - (136,300,'2006-02-15 05:05:03'), - (136,364,'2006-02-15 05:05:03'), - (136,401,'2006-02-15 05:05:03'), - (136,414,'2006-02-15 05:05:03'), - (136,420,'2006-02-15 05:05:03'), - (136,474,'2006-02-15 05:05:03'), - (136,485,'2006-02-15 05:05:03'), - (136,542,'2006-02-15 05:05:03'), - (136,552,'2006-02-15 05:05:03'), - (136,620,'2006-02-15 05:05:03'), - (136,649,'2006-02-15 05:05:03'), - (136,686,'2006-02-15 05:05:03'), - (136,781,'2006-02-15 05:05:03'), - (136,806,'2006-02-15 05:05:03'), - (136,808,'2006-02-15 05:05:03'), - (136,818,'2006-02-15 05:05:03'), - (136,842,'2006-02-15 05:05:03'), - (136,933,'2006-02-15 05:05:03'), - (136,993,'2006-02-15 05:05:03'), - (137,6,'2006-02-15 05:05:03'), - (137,14,'2006-02-15 05:05:03'), - (137,56,'2006-02-15 05:05:03'), - (137,96,'2006-02-15 05:05:03'), - (137,160,'2006-02-15 05:05:03'), - (137,224,'2006-02-15 05:05:03'), - (137,249,'2006-02-15 05:05:03'), - (137,254,'2006-02-15 05:05:03'), - (137,263,'2006-02-15 05:05:03'), - (137,268,'2006-02-15 05:05:03'), - (137,304,'2006-02-15 05:05:03'), - (137,390,'2006-02-15 05:05:03'), - (137,410,'2006-02-15 05:05:03'), - (137,433,'2006-02-15 05:05:03'), - (137,446,'2006-02-15 05:05:03'), - (137,489,'2006-02-15 05:05:03'), - (137,530,'2006-02-15 05:05:03'), - (137,564,'2006-02-15 05:05:03'), - (137,603,'2006-02-15 05:05:03'), - (137,610,'2006-02-15 05:05:03'), - (137,688,'2006-02-15 05:05:03'), - (137,703,'2006-02-15 05:05:03'), - (137,745,'2006-02-15 05:05:03'), - (137,758,'2006-02-15 05:05:03'), - (137,832,'2006-02-15 05:05:03'), - (137,841,'2006-02-15 05:05:03'), - (137,917,'2006-02-15 05:05:03'), - (138,8,'2006-02-15 05:05:03'), - (138,52,'2006-02-15 05:05:03'), - (138,61,'2006-02-15 05:05:03'), - (138,125,'2006-02-15 05:05:03'), - (138,157,'2006-02-15 05:05:03'), - (138,214,'2006-02-15 05:05:03'), - (138,258,'2006-02-15 05:05:03'), - (138,376,'2006-02-15 05:05:03'), - (138,403,'2006-02-15 05:05:03'), - (138,446,'2006-02-15 05:05:03'), - (138,453,'2006-02-15 05:05:03'), - (138,508,'2006-02-15 05:05:03'), - (138,553,'2006-02-15 05:05:03'), - (138,561,'2006-02-15 05:05:03'), - (138,583,'2006-02-15 05:05:03'), - (138,627,'2006-02-15 05:05:03'), - (138,639,'2006-02-15 05:05:03'), - (138,695,'2006-02-15 05:05:03'), - (138,747,'2006-02-15 05:05:03'), - (138,879,'2006-02-15 05:05:03'), - (138,885,'2006-02-15 05:05:03'), - (138,923,'2006-02-15 05:05:03'), - (138,970,'2006-02-15 05:05:03'), - (138,989,'2006-02-15 05:05:03'), - (139,20,'2006-02-15 05:05:03'), - (139,35,'2006-02-15 05:05:03'), - (139,57,'2006-02-15 05:05:03'), - (139,74,'2006-02-15 05:05:03'), - (139,90,'2006-02-15 05:05:03'), - (139,107,'2006-02-15 05:05:03'), - (139,155,'2006-02-15 05:05:03'), - (139,170,'2006-02-15 05:05:03'), - (139,181,'2006-02-15 05:05:03'), - (139,200,'2006-02-15 05:05:03'), - (139,229,'2006-02-15 05:05:03'), - (139,233,'2006-02-15 05:05:03'), - (139,261,'2006-02-15 05:05:03'), - (139,262,'2006-02-15 05:05:03'), - (139,266,'2006-02-15 05:05:03'), - (139,282,'2006-02-15 05:05:03'), - (139,284,'2006-02-15 05:05:03'), - (139,373,'2006-02-15 05:05:03'), - (139,447,'2006-02-15 05:05:03'), - (139,489,'2006-02-15 05:05:03'), - (139,529,'2006-02-15 05:05:03'), - (139,540,'2006-02-15 05:05:03'), - (139,570,'2006-02-15 05:05:03'), - (139,602,'2006-02-15 05:05:03'), - (139,605,'2006-02-15 05:05:03'), - (139,636,'2006-02-15 05:05:03'), - (139,691,'2006-02-15 05:05:03'), - (139,706,'2006-02-15 05:05:03'), - (139,719,'2006-02-15 05:05:03'), - (139,744,'2006-02-15 05:05:03'), - (139,746,'2006-02-15 05:05:03'), - (139,862,'2006-02-15 05:05:03'), - (139,892,'2006-02-15 05:05:03'), - (140,27,'2006-02-15 05:05:03'), - (140,77,'2006-02-15 05:05:03'), - (140,112,'2006-02-15 05:05:03'), - (140,135,'2006-02-15 05:05:03'), - (140,185,'2006-02-15 05:05:03'), - (140,258,'2006-02-15 05:05:03'), - (140,370,'2006-02-15 05:05:03'), - (140,373,'2006-02-15 05:05:03'), - (140,498,'2006-02-15 05:05:03'), - (140,509,'2006-02-15 05:05:03'), - (140,576,'2006-02-15 05:05:03'), - (140,587,'2006-02-15 05:05:03'), - (140,599,'2006-02-15 05:05:03'), - (140,608,'2006-02-15 05:05:03'), - (140,647,'2006-02-15 05:05:03'), - (140,665,'2006-02-15 05:05:03'), - (140,670,'2006-02-15 05:05:03'), - (140,693,'2006-02-15 05:05:03'), - (140,702,'2006-02-15 05:05:03'), - (140,729,'2006-02-15 05:05:03'), - (140,730,'2006-02-15 05:05:03'), - (140,731,'2006-02-15 05:05:03'), - (140,736,'2006-02-15 05:05:03'), - (140,742,'2006-02-15 05:05:03'), - (140,778,'2006-02-15 05:05:03'), - (140,820,'2006-02-15 05:05:03'), - (140,830,'2006-02-15 05:05:03'), - (140,835,'2006-02-15 05:05:03'), - (140,857,'2006-02-15 05:05:03'), - (140,923,'2006-02-15 05:05:03'), - (140,934,'2006-02-15 05:05:03'), - (140,999,'2006-02-15 05:05:03'), - (141,43,'2006-02-15 05:05:03'), - (141,67,'2006-02-15 05:05:03'), - (141,188,'2006-02-15 05:05:03'), - (141,191,'2006-02-15 05:05:03'), - (141,207,'2006-02-15 05:05:03'), - (141,223,'2006-02-15 05:05:03'), - (141,341,'2006-02-15 05:05:03'), - (141,358,'2006-02-15 05:05:03'), - (141,380,'2006-02-15 05:05:03'), - (141,395,'2006-02-15 05:05:03'), - (141,467,'2006-02-15 05:05:03'), - (141,491,'2006-02-15 05:05:03'), - (141,589,'2006-02-15 05:05:03'), - (141,607,'2006-02-15 05:05:03'), - (141,673,'2006-02-15 05:05:03'), - (141,740,'2006-02-15 05:05:03'), - (141,752,'2006-02-15 05:05:03'), - (141,768,'2006-02-15 05:05:03'), - (141,772,'2006-02-15 05:05:03'), - (141,787,'2006-02-15 05:05:03'), - (141,821,'2006-02-15 05:05:03'), - (141,829,'2006-02-15 05:05:03'), - (141,840,'2006-02-15 05:05:03'), - (141,849,'2006-02-15 05:05:03'), - (141,862,'2006-02-15 05:05:03'), - (141,863,'2006-02-15 05:05:03'), - (141,909,'2006-02-15 05:05:03'), - (141,992,'2006-02-15 05:05:03'), - (142,10,'2006-02-15 05:05:03'), - (142,18,'2006-02-15 05:05:03'), - (142,107,'2006-02-15 05:05:03'), - (142,139,'2006-02-15 05:05:03'), - (142,186,'2006-02-15 05:05:03'), - (142,199,'2006-02-15 05:05:03'), - (142,248,'2006-02-15 05:05:03'), - (142,328,'2006-02-15 05:05:03'), - (142,350,'2006-02-15 05:05:03'), - (142,371,'2006-02-15 05:05:03'), - (142,470,'2006-02-15 05:05:03'), - (142,481,'2006-02-15 05:05:03'), - (142,494,'2006-02-15 05:05:03'), - (142,501,'2006-02-15 05:05:03'), - (142,504,'2006-02-15 05:05:03'), - (142,540,'2006-02-15 05:05:03'), - (142,554,'2006-02-15 05:05:03'), - (142,575,'2006-02-15 05:05:03'), - (142,608,'2006-02-15 05:05:03'), - (142,710,'2006-02-15 05:05:03'), - (142,712,'2006-02-15 05:05:03'), - (142,735,'2006-02-15 05:05:03'), - (142,759,'2006-02-15 05:05:03'), - (142,794,'2006-02-15 05:05:03'), - (142,842,'2006-02-15 05:05:03'), - (142,859,'2006-02-15 05:05:03'), - (142,863,'2006-02-15 05:05:03'), - (142,875,'2006-02-15 05:05:03'), - (142,906,'2006-02-15 05:05:03'), - (142,914,'2006-02-15 05:05:03'), - (142,999,'2006-02-15 05:05:03'), - (143,47,'2006-02-15 05:05:03'), - (143,79,'2006-02-15 05:05:03'), - (143,141,'2006-02-15 05:05:03'), - (143,175,'2006-02-15 05:05:03'), - (143,232,'2006-02-15 05:05:03'), - (143,239,'2006-02-15 05:05:03'), - (143,316,'2006-02-15 05:05:03'), - (143,339,'2006-02-15 05:05:03'), - (143,361,'2006-02-15 05:05:03'), - (143,386,'2006-02-15 05:05:03'), - (143,404,'2006-02-15 05:05:03'), - (143,457,'2006-02-15 05:05:03'), - (143,485,'2006-02-15 05:05:03'), - (143,497,'2006-02-15 05:05:03'), - (143,560,'2006-02-15 05:05:03'), - (143,576,'2006-02-15 05:05:03'), - (143,603,'2006-02-15 05:05:03'), - (143,613,'2006-02-15 05:05:03'), - (143,659,'2006-02-15 05:05:03'), - (143,660,'2006-02-15 05:05:03'), - (143,680,'2006-02-15 05:05:03'), - (143,687,'2006-02-15 05:05:03'), - (143,690,'2006-02-15 05:05:03'), - (143,706,'2006-02-15 05:05:03'), - (143,792,'2006-02-15 05:05:03'), - (143,821,'2006-02-15 05:05:03'), - (143,830,'2006-02-15 05:05:03'), - (143,872,'2006-02-15 05:05:03'), - (143,878,'2006-02-15 05:05:03'), - (143,906,'2006-02-15 05:05:03'), - (143,958,'2006-02-15 05:05:03'), - (144,18,'2006-02-15 05:05:03'), - (144,67,'2006-02-15 05:05:03'), - (144,79,'2006-02-15 05:05:03'), - (144,90,'2006-02-15 05:05:03'), - (144,99,'2006-02-15 05:05:03'), - (144,105,'2006-02-15 05:05:03'), - (144,123,'2006-02-15 05:05:03'), - (144,125,'2006-02-15 05:05:03'), - (144,127,'2006-02-15 05:05:03'), - (144,130,'2006-02-15 05:05:03'), - (144,135,'2006-02-15 05:05:03'), - (144,164,'2006-02-15 05:05:03'), - (144,184,'2006-02-15 05:05:03'), - (144,216,'2006-02-15 05:05:03'), - (144,228,'2006-02-15 05:05:03'), - (144,260,'2006-02-15 05:05:03'), - (144,272,'2006-02-15 05:05:03'), - (144,291,'2006-02-15 05:05:03'), - (144,293,'2006-02-15 05:05:03'), - (144,312,'2006-02-15 05:05:03'), - (144,393,'2006-02-15 05:05:03'), - (144,396,'2006-02-15 05:05:03'), - (144,473,'2006-02-15 05:05:03'), - (144,504,'2006-02-15 05:05:03'), - (144,540,'2006-02-15 05:05:03'), - (144,599,'2006-02-15 05:05:03'), - (144,668,'2006-02-15 05:05:03'), - (144,702,'2006-02-15 05:05:03'), - (144,753,'2006-02-15 05:05:03'), - (144,762,'2006-02-15 05:05:03'), - (144,776,'2006-02-15 05:05:03'), - (144,785,'2006-02-15 05:05:03'), - (144,845,'2006-02-15 05:05:03'), - (144,894,'2006-02-15 05:05:03'), - (144,953,'2006-02-15 05:05:03'), - (145,39,'2006-02-15 05:05:03'), - (145,109,'2006-02-15 05:05:03'), - (145,120,'2006-02-15 05:05:03'), - (145,154,'2006-02-15 05:05:03'), - (145,155,'2006-02-15 05:05:03'), - (145,243,'2006-02-15 05:05:03'), - (145,293,'2006-02-15 05:05:03'), - (145,402,'2006-02-15 05:05:03'), - (145,409,'2006-02-15 05:05:03'), - (145,457,'2006-02-15 05:05:03'), - (145,475,'2006-02-15 05:05:03'), - (145,487,'2006-02-15 05:05:03'), - (145,494,'2006-02-15 05:05:03'), - (145,527,'2006-02-15 05:05:03'), - (145,592,'2006-02-15 05:05:03'), - (145,625,'2006-02-15 05:05:03'), - (145,629,'2006-02-15 05:05:03'), - (145,641,'2006-02-15 05:05:03'), - (145,661,'2006-02-15 05:05:03'), - (145,664,'2006-02-15 05:05:03'), - (145,692,'2006-02-15 05:05:03'), - (145,713,'2006-02-15 05:05:03'), - (145,726,'2006-02-15 05:05:03'), - (145,748,'2006-02-15 05:05:03'), - (145,822,'2006-02-15 05:05:03'), - (145,893,'2006-02-15 05:05:03'), - (145,923,'2006-02-15 05:05:03'), - (145,953,'2006-02-15 05:05:03'), - (146,12,'2006-02-15 05:05:03'), - (146,16,'2006-02-15 05:05:03'), - (146,33,'2006-02-15 05:05:03'), - (146,117,'2006-02-15 05:05:03'), - (146,177,'2006-02-15 05:05:03'), - (146,191,'2006-02-15 05:05:03'), - (146,197,'2006-02-15 05:05:03'), - (146,207,'2006-02-15 05:05:03'), - (146,218,'2006-02-15 05:05:03'), - (146,278,'2006-02-15 05:05:03'), - (146,296,'2006-02-15 05:05:03'), - (146,314,'2006-02-15 05:05:03'), - (146,320,'2006-02-15 05:05:03'), - (146,372,'2006-02-15 05:05:03'), - (146,384,'2006-02-15 05:05:03'), - (146,402,'2006-02-15 05:05:03'), - (146,410,'2006-02-15 05:05:03'), - (146,427,'2006-02-15 05:05:03'), - (146,429,'2006-02-15 05:05:03'), - (146,512,'2006-02-15 05:05:03'), - (146,514,'2006-02-15 05:05:03'), - (146,571,'2006-02-15 05:05:03'), - (146,591,'2006-02-15 05:05:03'), - (146,720,'2006-02-15 05:05:03'), - (146,731,'2006-02-15 05:05:03'), - (146,734,'2006-02-15 05:05:03'), - (146,871,'2006-02-15 05:05:03'), - (146,909,'2006-02-15 05:05:03'), - (146,922,'2006-02-15 05:05:03'), - (146,945,'2006-02-15 05:05:03'), - (146,955,'2006-02-15 05:05:03'), - (146,966,'2006-02-15 05:05:03'), - (146,969,'2006-02-15 05:05:03'), - (147,4,'2006-02-15 05:05:03'), - (147,85,'2006-02-15 05:05:03'), - (147,131,'2006-02-15 05:05:03'), - (147,139,'2006-02-15 05:05:03'), - (147,145,'2006-02-15 05:05:03'), - (147,178,'2006-02-15 05:05:03'), - (147,251,'2006-02-15 05:05:03'), - (147,254,'2006-02-15 05:05:03'), - (147,295,'2006-02-15 05:05:03'), - (147,298,'2006-02-15 05:05:03'), - (147,305,'2006-02-15 05:05:03'), - (147,310,'2006-02-15 05:05:03'), - (147,318,'2006-02-15 05:05:03'), - (147,333,'2006-02-15 05:05:03'), - (147,341,'2006-02-15 05:05:03'), - (147,351,'2006-02-15 05:05:03'), - (147,394,'2006-02-15 05:05:03'), - (147,402,'2006-02-15 05:05:03'), - (147,405,'2006-02-15 05:05:03'), - (147,410,'2006-02-15 05:05:03'), - (147,431,'2006-02-15 05:05:03'), - (147,443,'2006-02-15 05:05:03'), - (147,508,'2006-02-15 05:05:03'), - (147,554,'2006-02-15 05:05:03'), - (147,563,'2006-02-15 05:05:03'), - (147,649,'2006-02-15 05:05:03'), - (147,688,'2006-02-15 05:05:03'), - (147,708,'2006-02-15 05:05:03'), - (147,864,'2006-02-15 05:05:03'), - (147,957,'2006-02-15 05:05:03'), - (147,987,'2006-02-15 05:05:03'), - (148,27,'2006-02-15 05:05:03'), - (148,57,'2006-02-15 05:05:03'), - (148,133,'2006-02-15 05:05:03'), - (148,149,'2006-02-15 05:05:03'), - (148,226,'2006-02-15 05:05:03'), - (148,342,'2006-02-15 05:05:03'), - (148,368,'2006-02-15 05:05:03'), - (148,422,'2006-02-15 05:05:03'), - (148,468,'2006-02-15 05:05:03'), - (148,633,'2006-02-15 05:05:03'), - (148,718,'2006-02-15 05:05:03'), - (148,768,'2006-02-15 05:05:03'), - (148,772,'2006-02-15 05:05:03'), - (148,792,'2006-02-15 05:05:03'), - (149,53,'2006-02-15 05:05:03'), - (149,72,'2006-02-15 05:05:03'), - (149,95,'2006-02-15 05:05:03'), - (149,118,'2006-02-15 05:05:03'), - (149,139,'2006-02-15 05:05:03'), - (149,146,'2006-02-15 05:05:03'), - (149,153,'2006-02-15 05:05:03'), - (149,159,'2006-02-15 05:05:03'), - (149,169,'2006-02-15 05:05:03'), - (149,178,'2006-02-15 05:05:03'), - (149,188,'2006-02-15 05:05:03'), - (149,193,'2006-02-15 05:05:03'), - (149,339,'2006-02-15 05:05:03'), - (149,354,'2006-02-15 05:05:03'), - (149,362,'2006-02-15 05:05:03'), - (149,365,'2006-02-15 05:05:03'), - (149,458,'2006-02-15 05:05:03'), - (149,631,'2006-02-15 05:05:03'), - (149,670,'2006-02-15 05:05:03'), - (149,685,'2006-02-15 05:05:03'), - (149,761,'2006-02-15 05:05:03'), - (149,782,'2006-02-15 05:05:03'), - (149,810,'2006-02-15 05:05:03'), - (149,811,'2006-02-15 05:05:03'), - (149,899,'2006-02-15 05:05:03'), - (149,905,'2006-02-15 05:05:03'), - (149,913,'2006-02-15 05:05:03'), - (149,921,'2006-02-15 05:05:03'), - (149,947,'2006-02-15 05:05:03'), - (149,949,'2006-02-15 05:05:03'), - (149,992,'2006-02-15 05:05:03'), - (150,23,'2006-02-15 05:05:03'), - (150,63,'2006-02-15 05:05:03'), - (150,75,'2006-02-15 05:05:03'), - (150,94,'2006-02-15 05:05:03'), - (150,105,'2006-02-15 05:05:03'), - (150,168,'2006-02-15 05:05:03'), - (150,190,'2006-02-15 05:05:03'), - (150,206,'2006-02-15 05:05:03'), - (150,233,'2006-02-15 05:05:03'), - (150,270,'2006-02-15 05:05:03'), - (150,285,'2006-02-15 05:05:03'), - (150,306,'2006-02-15 05:05:03'), - (150,386,'2006-02-15 05:05:03'), - (150,433,'2006-02-15 05:05:03'), - (150,446,'2006-02-15 05:05:03'), - (150,447,'2006-02-15 05:05:03'), - (150,468,'2006-02-15 05:05:03'), - (150,508,'2006-02-15 05:05:03'), - (150,542,'2006-02-15 05:05:03'), - (150,551,'2006-02-15 05:05:03'), - (150,629,'2006-02-15 05:05:03'), - (150,647,'2006-02-15 05:05:03'), - (150,672,'2006-02-15 05:05:03'), - (150,697,'2006-02-15 05:05:03'), - (150,728,'2006-02-15 05:05:03'), - (150,777,'2006-02-15 05:05:03'), - (150,854,'2006-02-15 05:05:03'), - (150,873,'2006-02-15 05:05:03'), - (150,880,'2006-02-15 05:05:03'), - (150,887,'2006-02-15 05:05:03'), - (150,889,'2006-02-15 05:05:03'), - (150,892,'2006-02-15 05:05:03'), - (150,953,'2006-02-15 05:05:03'), - (150,962,'2006-02-15 05:05:03'), - (151,131,'2006-02-15 05:05:03'), - (151,144,'2006-02-15 05:05:03'), - (151,167,'2006-02-15 05:05:03'), - (151,170,'2006-02-15 05:05:03'), - (151,217,'2006-02-15 05:05:03'), - (151,232,'2006-02-15 05:05:03'), - (151,342,'2006-02-15 05:05:03'), - (151,367,'2006-02-15 05:05:03'), - (151,370,'2006-02-15 05:05:03'), - (151,382,'2006-02-15 05:05:03'), - (151,451,'2006-02-15 05:05:03'), - (151,463,'2006-02-15 05:05:03'), - (151,482,'2006-02-15 05:05:03'), - (151,501,'2006-02-15 05:05:03'), - (151,527,'2006-02-15 05:05:03'), - (151,539,'2006-02-15 05:05:03'), - (151,570,'2006-02-15 05:05:03'), - (151,574,'2006-02-15 05:05:03'), - (151,634,'2006-02-15 05:05:03'), - (151,658,'2006-02-15 05:05:03'), - (151,665,'2006-02-15 05:05:03'), - (151,703,'2006-02-15 05:05:03'), - (151,880,'2006-02-15 05:05:03'), - (151,892,'2006-02-15 05:05:03'), - (151,895,'2006-02-15 05:05:03'), - (151,989,'2006-02-15 05:05:03'), - (152,59,'2006-02-15 05:05:03'), - (152,153,'2006-02-15 05:05:03'), - (152,217,'2006-02-15 05:05:03'), - (152,248,'2006-02-15 05:05:03'), - (152,318,'2006-02-15 05:05:03'), - (152,332,'2006-02-15 05:05:03'), - (152,475,'2006-02-15 05:05:03'), - (152,476,'2006-02-15 05:05:03'), - (152,578,'2006-02-15 05:05:03'), - (152,607,'2006-02-15 05:05:03'), - (152,611,'2006-02-15 05:05:03'), - (152,615,'2006-02-15 05:05:03'), - (152,674,'2006-02-15 05:05:03'), - (152,680,'2006-02-15 05:05:03'), - (152,729,'2006-02-15 05:05:03'), - (152,768,'2006-02-15 05:05:03'), - (152,821,'2006-02-15 05:05:03'), - (152,846,'2006-02-15 05:05:03'), - (152,891,'2006-02-15 05:05:03'), - (152,898,'2006-02-15 05:05:03'), - (152,927,'2006-02-15 05:05:03'), - (152,964,'2006-02-15 05:05:03'), - (152,968,'2006-02-15 05:05:03'), - (153,47,'2006-02-15 05:05:03'), - (153,64,'2006-02-15 05:05:03'), - (153,136,'2006-02-15 05:05:03'), - (153,180,'2006-02-15 05:05:03'), - (153,203,'2006-02-15 05:05:03'), - (153,231,'2006-02-15 05:05:03'), - (153,444,'2006-02-15 05:05:03'), - (153,476,'2006-02-15 05:05:03'), - (153,480,'2006-02-15 05:05:03'), - (153,486,'2006-02-15 05:05:03'), - (153,536,'2006-02-15 05:05:03'), - (153,627,'2006-02-15 05:05:03'), - (153,732,'2006-02-15 05:05:03'), - (153,756,'2006-02-15 05:05:03'), - (153,766,'2006-02-15 05:05:03'), - (153,817,'2006-02-15 05:05:03'), - (153,847,'2006-02-15 05:05:03'), - (153,919,'2006-02-15 05:05:03'), - (153,938,'2006-02-15 05:05:03'), - (153,988,'2006-02-15 05:05:03'), - (154,27,'2006-02-15 05:05:03'), - (154,111,'2006-02-15 05:05:03'), - (154,141,'2006-02-15 05:05:03'), - (154,158,'2006-02-15 05:05:03'), - (154,169,'2006-02-15 05:05:03'), - (154,170,'2006-02-15 05:05:03'), - (154,193,'2006-02-15 05:05:03'), - (154,208,'2006-02-15 05:05:03'), - (154,274,'2006-02-15 05:05:03'), - (154,276,'2006-02-15 05:05:03'), - (154,282,'2006-02-15 05:05:03'), - (154,299,'2006-02-15 05:05:03'), - (154,314,'2006-02-15 05:05:03'), - (154,396,'2006-02-15 05:05:03'), - (154,399,'2006-02-15 05:05:03'), - (154,421,'2006-02-15 05:05:03'), - (154,440,'2006-02-15 05:05:03'), - (154,467,'2006-02-15 05:05:03'), - (154,474,'2006-02-15 05:05:03'), - (154,489,'2006-02-15 05:05:03'), - (154,588,'2006-02-15 05:05:03'), - (154,602,'2006-02-15 05:05:03'), - (154,680,'2006-02-15 05:05:03'), - (154,698,'2006-02-15 05:05:03'), - (154,802,'2006-02-15 05:05:03'), - (154,842,'2006-02-15 05:05:03'), - (154,954,'2006-02-15 05:05:03'), - (154,988,'2006-02-15 05:05:03'), - (155,20,'2006-02-15 05:05:03'), - (155,67,'2006-02-15 05:05:03'), - (155,128,'2006-02-15 05:05:03'), - (155,153,'2006-02-15 05:05:03'), - (155,220,'2006-02-15 05:05:03'), - (155,249,'2006-02-15 05:05:03'), - (155,303,'2006-02-15 05:05:03'), - (155,312,'2006-02-15 05:05:03'), - (155,359,'2006-02-15 05:05:03'), - (155,361,'2006-02-15 05:05:03'), - (155,383,'2006-02-15 05:05:03'), - (155,387,'2006-02-15 05:05:03'), - (155,407,'2006-02-15 05:05:03'), - (155,427,'2006-02-15 05:05:03'), - (155,459,'2006-02-15 05:05:03'), - (155,513,'2006-02-15 05:05:03'), - (155,584,'2006-02-15 05:05:03'), - (155,590,'2006-02-15 05:05:03'), - (155,630,'2006-02-15 05:05:03'), - (155,688,'2006-02-15 05:05:03'), - (155,757,'2006-02-15 05:05:03'), - (155,768,'2006-02-15 05:05:03'), - (155,785,'2006-02-15 05:05:03'), - (155,849,'2006-02-15 05:05:03'), - (155,885,'2006-02-15 05:05:03'), - (155,890,'2006-02-15 05:05:03'), - (155,941,'2006-02-15 05:05:03'), - (155,966,'2006-02-15 05:05:03'), - (155,987,'2006-02-15 05:05:03'), - (155,997,'2006-02-15 05:05:03'), - (155,1000,'2006-02-15 05:05:03'), - (156,53,'2006-02-15 05:05:03'), - (156,155,'2006-02-15 05:05:03'), - (156,198,'2006-02-15 05:05:03'), - (156,244,'2006-02-15 05:05:03'), - (156,262,'2006-02-15 05:05:03'), - (156,263,'2006-02-15 05:05:03'), - (156,285,'2006-02-15 05:05:03'), - (156,297,'2006-02-15 05:05:03'), - (156,301,'2006-02-15 05:05:03'), - (156,349,'2006-02-15 05:05:03'), - (156,379,'2006-02-15 05:05:03'), - (156,448,'2006-02-15 05:05:03'), - (156,462,'2006-02-15 05:05:03'), - (156,467,'2006-02-15 05:05:03'), - (156,504,'2006-02-15 05:05:03'), - (156,518,'2006-02-15 05:05:03'), - (156,593,'2006-02-15 05:05:03'), - (156,646,'2006-02-15 05:05:03'), - (156,705,'2006-02-15 05:05:03'), - (156,754,'2006-02-15 05:05:03'), - (156,775,'2006-02-15 05:05:03'), - (156,844,'2006-02-15 05:05:03'), - (157,10,'2006-02-15 05:05:03'), - (157,24,'2006-02-15 05:05:03'), - (157,34,'2006-02-15 05:05:03'), - (157,122,'2006-02-15 05:05:03'), - (157,159,'2006-02-15 05:05:03'), - (157,183,'2006-02-15 05:05:03'), - (157,210,'2006-02-15 05:05:03'), - (157,217,'2006-02-15 05:05:03'), - (157,291,'2006-02-15 05:05:03'), - (157,303,'2006-02-15 05:05:03'), - (157,321,'2006-02-15 05:05:03'), - (157,326,'2006-02-15 05:05:03'), - (157,353,'2006-02-15 05:05:03'), - (157,400,'2006-02-15 05:05:03'), - (157,406,'2006-02-15 05:05:03'), - (157,431,'2006-02-15 05:05:03'), - (157,496,'2006-02-15 05:05:03'), - (157,535,'2006-02-15 05:05:03'), - (157,573,'2006-02-15 05:05:03'), - (157,574,'2006-02-15 05:05:03'), - (157,604,'2006-02-15 05:05:03'), - (157,616,'2006-02-15 05:05:03'), - (157,642,'2006-02-15 05:05:03'), - (157,661,'2006-02-15 05:05:03'), - (157,696,'2006-02-15 05:05:03'), - (157,713,'2006-02-15 05:05:03'), - (157,802,'2006-02-15 05:05:03'), - (157,835,'2006-02-15 05:05:03'), - (157,874,'2006-02-15 05:05:03'), - (157,913,'2006-02-15 05:05:03'), - (157,967,'2006-02-15 05:05:03'), - (157,973,'2006-02-15 05:05:03'), - (158,32,'2006-02-15 05:05:03'), - (158,47,'2006-02-15 05:05:03'), - (158,64,'2006-02-15 05:05:03'), - (158,66,'2006-02-15 05:05:03'), - (158,102,'2006-02-15 05:05:03'), - (158,121,'2006-02-15 05:05:03'), - (158,177,'2006-02-15 05:05:03'), - (158,178,'2006-02-15 05:05:03'), - (158,188,'2006-02-15 05:05:03'), - (158,215,'2006-02-15 05:05:03'), - (158,241,'2006-02-15 05:05:03'), - (158,293,'2006-02-15 05:05:03'), - (158,437,'2006-02-15 05:05:03'), - (158,473,'2006-02-15 05:05:03'), - (158,483,'2006-02-15 05:05:03'), - (158,532,'2006-02-15 05:05:03'), - (158,555,'2006-02-15 05:05:03'), - (158,581,'2006-02-15 05:05:03'), - (158,601,'2006-02-15 05:05:03'), - (158,616,'2006-02-15 05:05:03'), - (158,626,'2006-02-15 05:05:03'), - (158,637,'2006-02-15 05:05:03'), - (158,799,'2006-02-15 05:05:03'), - (158,812,'2006-02-15 05:05:03'), - (158,824,'2006-02-15 05:05:03'), - (158,830,'2006-02-15 05:05:03'), - (158,840,'2006-02-15 05:05:03'), - (158,869,'2006-02-15 05:05:03'), - (158,879,'2006-02-15 05:05:03'), - (158,880,'2006-02-15 05:05:03'), - (158,894,'2006-02-15 05:05:03'), - (158,896,'2006-02-15 05:05:03'), - (158,967,'2006-02-15 05:05:03'), - (158,968,'2006-02-15 05:05:03'), - (158,990,'2006-02-15 05:05:03'), - (159,20,'2006-02-15 05:05:03'), - (159,82,'2006-02-15 05:05:03'), - (159,127,'2006-02-15 05:05:03'), - (159,187,'2006-02-15 05:05:03'), - (159,206,'2006-02-15 05:05:03'), - (159,208,'2006-02-15 05:05:03'), - (159,223,'2006-02-15 05:05:03'), - (159,248,'2006-02-15 05:05:03'), - (159,342,'2006-02-15 05:05:03'), - (159,343,'2006-02-15 05:05:03'), - (159,344,'2006-02-15 05:05:03'), - (159,364,'2006-02-15 05:05:03'), - (159,418,'2006-02-15 05:05:03'), - (159,549,'2006-02-15 05:05:03'), - (159,561,'2006-02-15 05:05:03'), - (159,600,'2006-02-15 05:05:03'), - (159,674,'2006-02-15 05:05:03'), - (159,680,'2006-02-15 05:05:03'), - (159,784,'2006-02-15 05:05:03'), - (159,789,'2006-02-15 05:05:03'), - (159,800,'2006-02-15 05:05:03'), - (159,802,'2006-02-15 05:05:03'), - (159,818,'2006-02-15 05:05:03'), - (159,876,'2006-02-15 05:05:03'), - (159,907,'2006-02-15 05:05:03'), - (159,978,'2006-02-15 05:05:03'), - (160,2,'2006-02-15 05:05:03'), - (160,17,'2006-02-15 05:05:03'), - (160,43,'2006-02-15 05:05:03'), - (160,242,'2006-02-15 05:05:03'), - (160,267,'2006-02-15 05:05:03'), - (160,275,'2006-02-15 05:05:03'), - (160,368,'2006-02-15 05:05:03'), - (160,455,'2006-02-15 05:05:03'), - (160,469,'2006-02-15 05:05:03'), - (160,484,'2006-02-15 05:05:03'), - (160,579,'2006-02-15 05:05:03'), - (160,660,'2006-02-15 05:05:03'), - (160,755,'2006-02-15 05:05:03'), - (160,767,'2006-02-15 05:05:03'), - (160,769,'2006-02-15 05:05:03'), - (160,794,'2006-02-15 05:05:03'), - (160,826,'2006-02-15 05:05:03'), - (160,883,'2006-02-15 05:05:03'), - (160,950,'2006-02-15 05:05:03'), - (160,954,'2006-02-15 05:05:03'), - (161,43,'2006-02-15 05:05:03'), - (161,58,'2006-02-15 05:05:03'), - (161,89,'2006-02-15 05:05:03'), - (161,90,'2006-02-15 05:05:03'), - (161,120,'2006-02-15 05:05:03'), - (161,188,'2006-02-15 05:05:03'), - (161,247,'2006-02-15 05:05:03'), - (161,269,'2006-02-15 05:05:03'), - (161,281,'2006-02-15 05:05:03'), - (161,340,'2006-02-15 05:05:03'), - (161,353,'2006-02-15 05:05:03'), - (161,401,'2006-02-15 05:05:03'), - (161,414,'2006-02-15 05:05:03'), - (161,425,'2006-02-15 05:05:03'), - (161,469,'2006-02-15 05:05:03'), - (161,526,'2006-02-15 05:05:03'), - (161,588,'2006-02-15 05:05:03'), - (161,644,'2006-02-15 05:05:03'), - (161,653,'2006-02-15 05:05:03'), - (161,655,'2006-02-15 05:05:03'), - (161,669,'2006-02-15 05:05:03'), - (161,684,'2006-02-15 05:05:03'), - (161,714,'2006-02-15 05:05:03'), - (161,749,'2006-02-15 05:05:03'), - (161,807,'2006-02-15 05:05:03'), - (161,825,'2006-02-15 05:05:03'), - (161,850,'2006-02-15 05:05:03'), - (161,880,'2006-02-15 05:05:03'), - (161,920,'2006-02-15 05:05:03'), - (161,921,'2006-02-15 05:05:03'), - (161,924,'2006-02-15 05:05:03'), - (161,927,'2006-02-15 05:05:03'), - (162,1,'2006-02-15 05:05:03'), - (162,4,'2006-02-15 05:05:03'), - (162,7,'2006-02-15 05:05:03'), - (162,18,'2006-02-15 05:05:03'), - (162,28,'2006-02-15 05:05:03'), - (162,32,'2006-02-15 05:05:03'), - (162,33,'2006-02-15 05:05:03'), - (162,41,'2006-02-15 05:05:03'), - (162,85,'2006-02-15 05:05:03'), - (162,121,'2006-02-15 05:05:03'), - (162,164,'2006-02-15 05:05:03'), - (162,274,'2006-02-15 05:05:03'), - (162,279,'2006-02-15 05:05:03'), - (162,409,'2006-02-15 05:05:03'), - (162,410,'2006-02-15 05:05:03'), - (162,415,'2006-02-15 05:05:03'), - (162,500,'2006-02-15 05:05:03'), - (162,574,'2006-02-15 05:05:03'), - (162,612,'2006-02-15 05:05:03'), - (162,636,'2006-02-15 05:05:03'), - (162,659,'2006-02-15 05:05:03'), - (162,786,'2006-02-15 05:05:03'), - (162,844,'2006-02-15 05:05:03'), - (162,909,'2006-02-15 05:05:03'), - (162,968,'2006-02-15 05:05:03'), - (163,30,'2006-02-15 05:05:03'), - (163,45,'2006-02-15 05:05:03'), - (163,166,'2006-02-15 05:05:03'), - (163,180,'2006-02-15 05:05:03'), - (163,239,'2006-02-15 05:05:03'), - (163,283,'2006-02-15 05:05:03'), - (163,303,'2006-02-15 05:05:03'), - (163,304,'2006-02-15 05:05:03'), - (163,307,'2006-02-15 05:05:03'), - (163,394,'2006-02-15 05:05:03'), - (163,409,'2006-02-15 05:05:03'), - (163,434,'2006-02-15 05:05:03'), - (163,444,'2006-02-15 05:05:03'), - (163,522,'2006-02-15 05:05:03'), - (163,719,'2006-02-15 05:05:03'), - (163,785,'2006-02-15 05:05:03'), - (163,833,'2006-02-15 05:05:03'), - (163,881,'2006-02-15 05:05:03'), - (163,891,'2006-02-15 05:05:03'), - (163,947,'2006-02-15 05:05:03'), - (163,996,'2006-02-15 05:05:03'), - (164,15,'2006-02-15 05:05:03'), - (164,23,'2006-02-15 05:05:03'), - (164,148,'2006-02-15 05:05:03'), - (164,169,'2006-02-15 05:05:03'), - (164,252,'2006-02-15 05:05:03'), - (164,324,'2006-02-15 05:05:03'), - (164,347,'2006-02-15 05:05:03'), - (164,367,'2006-02-15 05:05:03'), - (164,431,'2006-02-15 05:05:03'), - (164,448,'2006-02-15 05:05:03'), - (164,469,'2006-02-15 05:05:03'), - (164,545,'2006-02-15 05:05:03'), - (164,610,'2006-02-15 05:05:03'), - (164,613,'2006-02-15 05:05:03'), - (164,673,'2006-02-15 05:05:03'), - (164,681,'2006-02-15 05:05:03'), - (164,698,'2006-02-15 05:05:03'), - (164,801,'2006-02-15 05:05:03'), - (164,820,'2006-02-15 05:05:03'), - (164,832,'2006-02-15 05:05:03'), - (164,834,'2006-02-15 05:05:03'), - (164,851,'2006-02-15 05:05:03'), - (164,884,'2006-02-15 05:05:03'), - (164,908,'2006-02-15 05:05:03'), - (164,957,'2006-02-15 05:05:03'), - (164,984,'2006-02-15 05:05:03'), - (165,72,'2006-02-15 05:05:03'), - (165,95,'2006-02-15 05:05:03'), - (165,146,'2006-02-15 05:05:03'), - (165,204,'2006-02-15 05:05:03'), - (165,253,'2006-02-15 05:05:03'), - (165,286,'2006-02-15 05:05:03'), - (165,360,'2006-02-15 05:05:03'), - (165,375,'2006-02-15 05:05:03'), - (165,395,'2006-02-15 05:05:03'), - (165,421,'2006-02-15 05:05:03'), - (165,437,'2006-02-15 05:05:03'), - (165,473,'2006-02-15 05:05:03'), - (165,607,'2006-02-15 05:05:03'), - (165,644,'2006-02-15 05:05:03'), - (165,659,'2006-02-15 05:05:03'), - (165,693,'2006-02-15 05:05:03'), - (165,737,'2006-02-15 05:05:03'), - (165,779,'2006-02-15 05:05:03'), - (165,798,'2006-02-15 05:05:03'), - (165,807,'2006-02-15 05:05:03'), - (165,809,'2006-02-15 05:05:03'), - (165,832,'2006-02-15 05:05:03'), - (165,833,'2006-02-15 05:05:03'), - (165,947,'2006-02-15 05:05:03'), - (165,948,'2006-02-15 05:05:03'), - (165,962,'2006-02-15 05:05:03'), - (166,25,'2006-02-15 05:05:03'), - (166,38,'2006-02-15 05:05:03'), - (166,55,'2006-02-15 05:05:03'), - (166,61,'2006-02-15 05:05:03'), - (166,68,'2006-02-15 05:05:03'), - (166,86,'2006-02-15 05:05:03'), - (166,146,'2006-02-15 05:05:03'), - (166,255,'2006-02-15 05:05:03'), - (166,297,'2006-02-15 05:05:03'), - (166,306,'2006-02-15 05:05:03'), - (166,326,'2006-02-15 05:05:03'), - (166,361,'2006-02-15 05:05:03'), - (166,366,'2006-02-15 05:05:03'), - (166,426,'2006-02-15 05:05:03'), - (166,580,'2006-02-15 05:05:03'), - (166,622,'2006-02-15 05:05:03'), - (166,674,'2006-02-15 05:05:03'), - (166,714,'2006-02-15 05:05:03'), - (166,788,'2006-02-15 05:05:03'), - (166,867,'2006-02-15 05:05:03'), - (166,944,'2006-02-15 05:05:03'), - (166,1000,'2006-02-15 05:05:03'), - (167,17,'2006-02-15 05:05:03'), - (167,25,'2006-02-15 05:05:03'), - (167,63,'2006-02-15 05:05:03'), - (167,72,'2006-02-15 05:05:03'), - (167,107,'2006-02-15 05:05:03'), - (167,120,'2006-02-15 05:05:03'), - (167,191,'2006-02-15 05:05:03'), - (167,294,'2006-02-15 05:05:03'), - (167,319,'2006-02-15 05:05:03'), - (167,339,'2006-02-15 05:05:03'), - (167,341,'2006-02-15 05:05:03'), - (167,496,'2006-02-15 05:05:03'), - (167,554,'2006-02-15 05:05:03'), - (167,626,'2006-02-15 05:05:03'), - (167,628,'2006-02-15 05:05:03'), - (167,672,'2006-02-15 05:05:03'), - (167,692,'2006-02-15 05:05:03'), - (167,717,'2006-02-15 05:05:03'), - (167,734,'2006-02-15 05:05:03'), - (167,794,'2006-02-15 05:05:03'), - (167,800,'2006-02-15 05:05:03'), - (167,802,'2006-02-15 05:05:03'), - (167,856,'2006-02-15 05:05:03'), - (167,864,'2006-02-15 05:05:03'), - (167,882,'2006-02-15 05:05:03'), - (167,923,'2006-02-15 05:05:03'), - (168,32,'2006-02-15 05:05:03'), - (168,56,'2006-02-15 05:05:03'), - (168,92,'2006-02-15 05:05:03'), - (168,115,'2006-02-15 05:05:03'), - (168,188,'2006-02-15 05:05:03'), - (168,196,'2006-02-15 05:05:03'), - (168,208,'2006-02-15 05:05:03'), - (168,237,'2006-02-15 05:05:03'), - (168,241,'2006-02-15 05:05:03'), - (168,255,'2006-02-15 05:05:03'), - (168,305,'2006-02-15 05:05:03'), - (168,336,'2006-02-15 05:05:03'), - (168,387,'2006-02-15 05:05:03'), - (168,433,'2006-02-15 05:05:03'), - (168,438,'2006-02-15 05:05:03'), - (168,519,'2006-02-15 05:05:03'), - (168,602,'2006-02-15 05:05:03'), - (168,619,'2006-02-15 05:05:03'), - (168,626,'2006-02-15 05:05:03'), - (168,652,'2006-02-15 05:05:03'), - (168,678,'2006-02-15 05:05:03'), - (168,685,'2006-02-15 05:05:03'), - (168,804,'2006-02-15 05:05:03'), - (168,807,'2006-02-15 05:05:03'), - (168,826,'2006-02-15 05:05:03'), - (168,841,'2006-02-15 05:05:03'), - (168,886,'2006-02-15 05:05:03'), - (168,889,'2006-02-15 05:05:03'), - (168,892,'2006-02-15 05:05:03'), - (168,927,'2006-02-15 05:05:03'), - (168,959,'2006-02-15 05:05:03'), - (169,6,'2006-02-15 05:05:03'), - (169,78,'2006-02-15 05:05:03'), - (169,93,'2006-02-15 05:05:03'), - (169,246,'2006-02-15 05:05:03'), - (169,248,'2006-02-15 05:05:03'), - (169,289,'2006-02-15 05:05:03'), - (169,301,'2006-02-15 05:05:03'), - (169,326,'2006-02-15 05:05:03'), - (169,349,'2006-02-15 05:05:03'), - (169,372,'2006-02-15 05:05:03'), - (169,398,'2006-02-15 05:05:03'), - (169,434,'2006-02-15 05:05:03'), - (169,505,'2006-02-15 05:05:03'), - (169,564,'2006-02-15 05:05:03'), - (169,571,'2006-02-15 05:05:03'), - (169,634,'2006-02-15 05:05:03'), - (169,642,'2006-02-15 05:05:03'), - (169,673,'2006-02-15 05:05:03'), - (169,694,'2006-02-15 05:05:03'), - (169,727,'2006-02-15 05:05:03'), - (169,778,'2006-02-15 05:05:03'), - (169,815,'2006-02-15 05:05:03'), - (169,847,'2006-02-15 05:05:03'), - (169,849,'2006-02-15 05:05:03'), - (169,894,'2006-02-15 05:05:03'), - (169,897,'2006-02-15 05:05:03'), - (169,954,'2006-02-15 05:05:03'), - (169,992,'2006-02-15 05:05:03'), - (169,998,'2006-02-15 05:05:03'), - (170,7,'2006-02-15 05:05:03'), - (170,15,'2006-02-15 05:05:03'), - (170,27,'2006-02-15 05:05:03'), - (170,33,'2006-02-15 05:05:03'), - (170,102,'2006-02-15 05:05:03'), - (170,139,'2006-02-15 05:05:03'), - (170,180,'2006-02-15 05:05:03'), - (170,184,'2006-02-15 05:05:03'), - (170,212,'2006-02-15 05:05:03'), - (170,299,'2006-02-15 05:05:03'), - (170,322,'2006-02-15 05:05:03'), - (170,358,'2006-02-15 05:05:03'), - (170,416,'2006-02-15 05:05:03'), - (170,508,'2006-02-15 05:05:03'), - (170,537,'2006-02-15 05:05:03'), - (170,705,'2006-02-15 05:05:03'), - (170,758,'2006-02-15 05:05:03'), - (170,764,'2006-02-15 05:05:03'), - (170,868,'2006-02-15 05:05:03'), - (170,877,'2006-02-15 05:05:03'), - (170,886,'2006-02-15 05:05:03'), - (170,925,'2006-02-15 05:05:03'), - (170,993,'2006-02-15 05:05:03'), - (170,996,'2006-02-15 05:05:03'), - (171,49,'2006-02-15 05:05:03'), - (171,146,'2006-02-15 05:05:03'), - (171,166,'2006-02-15 05:05:03'), - (171,181,'2006-02-15 05:05:03'), - (171,219,'2006-02-15 05:05:03'), - (171,273,'2006-02-15 05:05:03'), - (171,296,'2006-02-15 05:05:03'), - (171,318,'2006-02-15 05:05:03'), - (171,342,'2006-02-15 05:05:03'), - (171,397,'2006-02-15 05:05:03'), - (171,447,'2006-02-15 05:05:03'), - (171,450,'2006-02-15 05:05:03'), - (171,466,'2006-02-15 05:05:03'), - (171,549,'2006-02-15 05:05:03'), - (171,560,'2006-02-15 05:05:03'), - (171,566,'2006-02-15 05:05:03'), - (171,608,'2006-02-15 05:05:03'), - (171,625,'2006-02-15 05:05:03'), - (171,645,'2006-02-15 05:05:03'), - (171,701,'2006-02-15 05:05:03'), - (171,761,'2006-02-15 05:05:03'), - (171,779,'2006-02-15 05:05:03'), - (171,849,'2006-02-15 05:05:03'), - (171,872,'2006-02-15 05:05:03'), - (171,892,'2006-02-15 05:05:03'), - (171,898,'2006-02-15 05:05:03'), - (171,903,'2006-02-15 05:05:03'), - (171,953,'2006-02-15 05:05:03'), - (172,57,'2006-02-15 05:05:03'), - (172,100,'2006-02-15 05:05:03'), - (172,148,'2006-02-15 05:05:03'), - (172,215,'2006-02-15 05:05:03'), - (172,302,'2006-02-15 05:05:03'), - (172,345,'2006-02-15 05:05:03'), - (172,368,'2006-02-15 05:05:03'), - (172,385,'2006-02-15 05:05:03'), - (172,423,'2006-02-15 05:05:03'), - (172,487,'2006-02-15 05:05:03'), - (172,493,'2006-02-15 05:05:03'), - (172,529,'2006-02-15 05:05:03'), - (172,538,'2006-02-15 05:05:03'), - (172,567,'2006-02-15 05:05:03'), - (172,609,'2006-02-15 05:05:03'), - (172,639,'2006-02-15 05:05:03'), - (172,649,'2006-02-15 05:05:03'), - (172,661,'2006-02-15 05:05:03'), - (172,667,'2006-02-15 05:05:03'), - (172,710,'2006-02-15 05:05:03'), - (172,744,'2006-02-15 05:05:03'), - (172,758,'2006-02-15 05:05:03'), - (172,771,'2006-02-15 05:05:03'), - (172,833,'2006-02-15 05:05:03'), - (172,959,'2006-02-15 05:05:03'), - (173,49,'2006-02-15 05:05:03'), - (173,55,'2006-02-15 05:05:03'), - (173,74,'2006-02-15 05:05:03'), - (173,80,'2006-02-15 05:05:03'), - (173,106,'2006-02-15 05:05:03'), - (173,154,'2006-02-15 05:05:03'), - (173,162,'2006-02-15 05:05:03'), - (173,188,'2006-02-15 05:05:03'), - (173,235,'2006-02-15 05:05:03'), - (173,313,'2006-02-15 05:05:03'), - (173,379,'2006-02-15 05:05:03'), - (173,405,'2006-02-15 05:05:03'), - (173,491,'2006-02-15 05:05:03'), - (173,496,'2006-02-15 05:05:03'), - (173,529,'2006-02-15 05:05:03'), - (173,550,'2006-02-15 05:05:03'), - (173,564,'2006-02-15 05:05:03'), - (173,571,'2006-02-15 05:05:03'), - (173,592,'2006-02-15 05:05:03'), - (173,688,'2006-02-15 05:05:03'), - (173,753,'2006-02-15 05:05:03'), - (173,757,'2006-02-15 05:05:03'), - (173,852,'2006-02-15 05:05:03'), - (173,857,'2006-02-15 05:05:03'), - (173,921,'2006-02-15 05:05:03'), - (173,928,'2006-02-15 05:05:03'), - (173,933,'2006-02-15 05:05:03'), - (174,11,'2006-02-15 05:05:03'), - (174,61,'2006-02-15 05:05:03'), - (174,168,'2006-02-15 05:05:03'), - (174,298,'2006-02-15 05:05:03'), - (174,352,'2006-02-15 05:05:03'), - (174,442,'2006-02-15 05:05:03'), - (174,451,'2006-02-15 05:05:03'), - (174,496,'2006-02-15 05:05:03'), - (174,610,'2006-02-15 05:05:03'), - (174,618,'2006-02-15 05:05:03'), - (174,622,'2006-02-15 05:05:03'), - (174,659,'2006-02-15 05:05:03'), - (174,677,'2006-02-15 05:05:03'), - (174,705,'2006-02-15 05:05:03'), - (174,722,'2006-02-15 05:05:03'), - (174,780,'2006-02-15 05:05:03'), - (174,797,'2006-02-15 05:05:03'), - (174,809,'2006-02-15 05:05:03'), - (174,827,'2006-02-15 05:05:03'), - (174,830,'2006-02-15 05:05:03'), - (174,852,'2006-02-15 05:05:03'), - (174,853,'2006-02-15 05:05:03'), - (174,879,'2006-02-15 05:05:03'), - (174,982,'2006-02-15 05:05:03'), - (175,9,'2006-02-15 05:05:03'), - (175,29,'2006-02-15 05:05:03'), - (175,67,'2006-02-15 05:05:03'), - (175,129,'2006-02-15 05:05:03'), - (175,155,'2006-02-15 05:05:03'), - (175,190,'2006-02-15 05:05:03'), - (175,191,'2006-02-15 05:05:03'), - (175,362,'2006-02-15 05:05:03'), - (175,405,'2006-02-15 05:05:03'), - (175,424,'2006-02-15 05:05:03'), - (175,439,'2006-02-15 05:05:03'), - (175,442,'2006-02-15 05:05:03'), - (175,483,'2006-02-15 05:05:03'), - (175,591,'2006-02-15 05:05:03'), - (175,596,'2006-02-15 05:05:03'), - (175,616,'2006-02-15 05:05:03'), - (175,719,'2006-02-15 05:05:03'), - (175,729,'2006-02-15 05:05:03'), - (175,772,'2006-02-15 05:05:03'), - (175,778,'2006-02-15 05:05:03'), - (175,828,'2006-02-15 05:05:03'), - (175,842,'2006-02-15 05:05:03'), - (175,890,'2006-02-15 05:05:03'), - (175,908,'2006-02-15 05:05:03'), - (175,977,'2006-02-15 05:05:03'), - (175,978,'2006-02-15 05:05:03'), - (175,998,'2006-02-15 05:05:03'), - (176,13,'2006-02-15 05:05:03'), - (176,73,'2006-02-15 05:05:03'), - (176,89,'2006-02-15 05:05:03'), - (176,150,'2006-02-15 05:05:03'), - (176,162,'2006-02-15 05:05:03'), - (176,238,'2006-02-15 05:05:03'), - (176,252,'2006-02-15 05:05:03'), - (176,303,'2006-02-15 05:05:03'), - (176,320,'2006-02-15 05:05:03'), - (176,401,'2006-02-15 05:05:03'), - (176,417,'2006-02-15 05:05:03'), - (176,441,'2006-02-15 05:05:03'), - (176,458,'2006-02-15 05:05:03'), - (176,461,'2006-02-15 05:05:03'), - (176,517,'2006-02-15 05:05:03'), - (176,521,'2006-02-15 05:05:03'), - (176,543,'2006-02-15 05:05:03'), - (176,573,'2006-02-15 05:05:03'), - (176,699,'2006-02-15 05:05:03'), - (176,726,'2006-02-15 05:05:03'), - (176,740,'2006-02-15 05:05:03'), - (176,746,'2006-02-15 05:05:03'), - (176,758,'2006-02-15 05:05:03'), - (176,802,'2006-02-15 05:05:03'), - (176,827,'2006-02-15 05:05:03'), - (176,839,'2006-02-15 05:05:03'), - (176,859,'2006-02-15 05:05:03'), - (176,872,'2006-02-15 05:05:03'), - (176,946,'2006-02-15 05:05:03'), - (177,12,'2006-02-15 05:05:03'), - (177,39,'2006-02-15 05:05:03'), - (177,52,'2006-02-15 05:05:03'), - (177,55,'2006-02-15 05:05:03'), - (177,86,'2006-02-15 05:05:03'), - (177,175,'2006-02-15 05:05:03'), - (177,188,'2006-02-15 05:05:03'), - (177,235,'2006-02-15 05:05:03'), - (177,237,'2006-02-15 05:05:03'), - (177,289,'2006-02-15 05:05:03'), - (177,363,'2006-02-15 05:05:03'), - (177,401,'2006-02-15 05:05:03'), - (177,433,'2006-02-15 05:05:03'), - (177,458,'2006-02-15 05:05:03'), - (177,522,'2006-02-15 05:05:03'), - (177,543,'2006-02-15 05:05:03'), - (177,563,'2006-02-15 05:05:03'), - (177,649,'2006-02-15 05:05:03'), - (177,683,'2006-02-15 05:05:03'), - (177,684,'2006-02-15 05:05:03'), - (177,726,'2006-02-15 05:05:03'), - (177,751,'2006-02-15 05:05:03'), - (177,763,'2006-02-15 05:05:03'), - (177,764,'2006-02-15 05:05:03'), - (177,827,'2006-02-15 05:05:03'), - (177,910,'2006-02-15 05:05:03'), - (177,956,'2006-02-15 05:05:03'), - (178,30,'2006-02-15 05:05:03'), - (178,34,'2006-02-15 05:05:03'), - (178,109,'2006-02-15 05:05:03'), - (178,146,'2006-02-15 05:05:03'), - (178,160,'2006-02-15 05:05:03'), - (178,164,'2006-02-15 05:05:03'), - (178,194,'2006-02-15 05:05:03'), - (178,197,'2006-02-15 05:05:03'), - (178,273,'2006-02-15 05:05:03'), - (178,311,'2006-02-15 05:05:03'), - (178,397,'2006-02-15 05:05:03'), - (178,483,'2006-02-15 05:05:03'), - (178,517,'2006-02-15 05:05:03'), - (178,537,'2006-02-15 05:05:03'), - (178,587,'2006-02-15 05:05:03'), - (178,708,'2006-02-15 05:05:03'), - (178,733,'2006-02-15 05:05:03'), - (178,744,'2006-02-15 05:05:03'), - (178,762,'2006-02-15 05:05:03'), - (178,930,'2006-02-15 05:05:03'), - (178,974,'2006-02-15 05:05:03'), - (178,983,'2006-02-15 05:05:03'), - (178,1000,'2006-02-15 05:05:03'), - (179,24,'2006-02-15 05:05:03'), - (179,27,'2006-02-15 05:05:03'), - (179,65,'2006-02-15 05:05:03'), - (179,85,'2006-02-15 05:05:03'), - (179,109,'2006-02-15 05:05:03'), - (179,131,'2006-02-15 05:05:03'), - (179,159,'2006-02-15 05:05:03'), - (179,193,'2006-02-15 05:05:03'), - (179,250,'2006-02-15 05:05:03'), - (179,291,'2006-02-15 05:05:03'), - (179,353,'2006-02-15 05:05:03'), - (179,415,'2006-02-15 05:05:03'), - (179,463,'2006-02-15 05:05:03'), - (179,468,'2006-02-15 05:05:03'), - (179,489,'2006-02-15 05:05:03'), - (179,566,'2006-02-15 05:05:03'), - (179,588,'2006-02-15 05:05:03'), - (179,650,'2006-02-15 05:05:03'), - (179,698,'2006-02-15 05:05:03'), - (179,732,'2006-02-15 05:05:03'), - (179,737,'2006-02-15 05:05:03'), - (179,769,'2006-02-15 05:05:03'), - (179,811,'2006-02-15 05:05:03'), - (179,817,'2006-02-15 05:05:03'), - (179,852,'2006-02-15 05:05:03'), - (179,924,'2006-02-15 05:05:03'), - (179,931,'2006-02-15 05:05:03'), - (179,960,'2006-02-15 05:05:03'), - (179,976,'2006-02-15 05:05:03'), - (180,12,'2006-02-15 05:05:03'), - (180,33,'2006-02-15 05:05:03'), - (180,144,'2006-02-15 05:05:03'), - (180,195,'2006-02-15 05:05:03'), - (180,258,'2006-02-15 05:05:03'), - (180,441,'2006-02-15 05:05:03'), - (180,506,'2006-02-15 05:05:03'), - (180,561,'2006-02-15 05:05:03'), - (180,609,'2006-02-15 05:05:03'), - (180,622,'2006-02-15 05:05:03'), - (180,628,'2006-02-15 05:05:03'), - (180,657,'2006-02-15 05:05:03'), - (180,724,'2006-02-15 05:05:03'), - (180,729,'2006-02-15 05:05:03'), - (180,732,'2006-02-15 05:05:03'), - (180,777,'2006-02-15 05:05:03'), - (180,809,'2006-02-15 05:05:03'), - (180,811,'2006-02-15 05:05:03'), - (180,820,'2006-02-15 05:05:03'), - (180,824,'2006-02-15 05:05:03'), - (180,847,'2006-02-15 05:05:03'), - (180,869,'2006-02-15 05:05:03'), - (180,874,'2006-02-15 05:05:03'), - (180,955,'2006-02-15 05:05:03'), - (180,963,'2006-02-15 05:05:03'), - (181,5,'2006-02-15 05:05:03'), - (181,40,'2006-02-15 05:05:03'), - (181,74,'2006-02-15 05:05:03'), - (181,78,'2006-02-15 05:05:03'), - (181,83,'2006-02-15 05:05:03'), - (181,152,'2006-02-15 05:05:03'), - (181,195,'2006-02-15 05:05:03'), - (181,233,'2006-02-15 05:05:03'), - (181,286,'2006-02-15 05:05:03'), - (181,301,'2006-02-15 05:05:03'), - (181,311,'2006-02-15 05:05:03'), - (181,381,'2006-02-15 05:05:03'), - (181,387,'2006-02-15 05:05:03'), - (181,403,'2006-02-15 05:05:03'), - (181,409,'2006-02-15 05:05:03'), - (181,420,'2006-02-15 05:05:03'), - (181,437,'2006-02-15 05:05:03'), - (181,456,'2006-02-15 05:05:03'), - (181,507,'2006-02-15 05:05:03'), - (181,522,'2006-02-15 05:05:03'), - (181,539,'2006-02-15 05:05:03'), - (181,542,'2006-02-15 05:05:03'), - (181,546,'2006-02-15 05:05:03'), - (181,579,'2006-02-15 05:05:03'), - (181,596,'2006-02-15 05:05:03'), - (181,604,'2006-02-15 05:05:03'), - (181,609,'2006-02-15 05:05:03'), - (181,625,'2006-02-15 05:05:03'), - (181,744,'2006-02-15 05:05:03'), - (181,816,'2006-02-15 05:05:03'), - (181,836,'2006-02-15 05:05:03'), - (181,868,'2006-02-15 05:05:03'), - (181,870,'2006-02-15 05:05:03'), - (181,874,'2006-02-15 05:05:03'), - (181,892,'2006-02-15 05:05:03'), - (181,907,'2006-02-15 05:05:03'), - (181,911,'2006-02-15 05:05:03'), - (181,921,'2006-02-15 05:05:03'), - (181,991,'2006-02-15 05:05:03'), - (182,33,'2006-02-15 05:05:03'), - (182,160,'2006-02-15 05:05:03'), - (182,301,'2006-02-15 05:05:03'), - (182,324,'2006-02-15 05:05:03'), - (182,346,'2006-02-15 05:05:03'), - (182,362,'2006-02-15 05:05:03'), - (182,391,'2006-02-15 05:05:03'), - (182,413,'2006-02-15 05:05:03'), - (182,421,'2006-02-15 05:05:03'), - (182,437,'2006-02-15 05:05:03'), - (182,590,'2006-02-15 05:05:03'), - (182,639,'2006-02-15 05:05:03'), - (182,668,'2006-02-15 05:05:03'), - (182,677,'2006-02-15 05:05:03'), - (182,679,'2006-02-15 05:05:03'), - (182,695,'2006-02-15 05:05:03'), - (182,714,'2006-02-15 05:05:03'), - (182,720,'2006-02-15 05:05:03'), - (182,819,'2006-02-15 05:05:03'), - (182,828,'2006-02-15 05:05:03'), - (182,845,'2006-02-15 05:05:03'), - (182,864,'2006-02-15 05:05:03'), - (182,940,'2006-02-15 05:05:03'), - (182,990,'2006-02-15 05:05:03'), - (183,32,'2006-02-15 05:05:03'), - (183,40,'2006-02-15 05:05:03'), - (183,71,'2006-02-15 05:05:03'), - (183,113,'2006-02-15 05:05:03'), - (183,313,'2006-02-15 05:05:03'), - (183,388,'2006-02-15 05:05:03'), - (183,389,'2006-02-15 05:05:03'), - (183,390,'2006-02-15 05:05:03'), - (183,495,'2006-02-15 05:05:03'), - (183,520,'2006-02-15 05:05:03'), - (183,576,'2006-02-15 05:05:03'), - (183,636,'2006-02-15 05:05:03'), - (183,715,'2006-02-15 05:05:03'), - (183,850,'2006-02-15 05:05:03'), - (183,862,'2006-02-15 05:05:03'), - (183,914,'2006-02-15 05:05:03'), - (183,941,'2006-02-15 05:05:03'), - (183,949,'2006-02-15 05:05:03'), - (183,983,'2006-02-15 05:05:03'), - (184,35,'2006-02-15 05:05:03'), - (184,87,'2006-02-15 05:05:03'), - (184,146,'2006-02-15 05:05:03'), - (184,169,'2006-02-15 05:05:03'), - (184,221,'2006-02-15 05:05:03'), - (184,336,'2006-02-15 05:05:03'), - (184,371,'2006-02-15 05:05:03'), - (184,452,'2006-02-15 05:05:03'), - (184,486,'2006-02-15 05:05:03'), - (184,492,'2006-02-15 05:05:03'), - (184,500,'2006-02-15 05:05:03'), - (184,574,'2006-02-15 05:05:03'), - (184,580,'2006-02-15 05:05:03'), - (184,597,'2006-02-15 05:05:03'), - (184,615,'2006-02-15 05:05:03'), - (184,640,'2006-02-15 05:05:03'), - (184,642,'2006-02-15 05:05:03'), - (184,650,'2006-02-15 05:05:03'), - (184,661,'2006-02-15 05:05:03'), - (184,684,'2006-02-15 05:05:03'), - (184,745,'2006-02-15 05:05:03'), - (184,772,'2006-02-15 05:05:03'), - (184,787,'2006-02-15 05:05:03'), - (184,867,'2006-02-15 05:05:03'), - (184,959,'2006-02-15 05:05:03'), - (184,966,'2006-02-15 05:05:03'), - (184,967,'2006-02-15 05:05:03'), - (184,969,'2006-02-15 05:05:03'), - (184,985,'2006-02-15 05:05:03'), - (185,7,'2006-02-15 05:05:03'), - (185,95,'2006-02-15 05:05:03'), - (185,138,'2006-02-15 05:05:03'), - (185,265,'2006-02-15 05:05:03'), - (185,286,'2006-02-15 05:05:03'), - (185,360,'2006-02-15 05:05:03'), - (185,411,'2006-02-15 05:05:03'), - (185,427,'2006-02-15 05:05:03'), - (185,437,'2006-02-15 05:05:03'), - (185,448,'2006-02-15 05:05:03'), - (185,494,'2006-02-15 05:05:03'), - (185,510,'2006-02-15 05:05:03'), - (185,518,'2006-02-15 05:05:03'), - (185,554,'2006-02-15 05:05:03'), - (185,560,'2006-02-15 05:05:03'), - (185,571,'2006-02-15 05:05:03'), - (185,584,'2006-02-15 05:05:03'), - (185,631,'2006-02-15 05:05:03'), - (185,665,'2006-02-15 05:05:03'), - (185,694,'2006-02-15 05:05:03'), - (185,730,'2006-02-15 05:05:03'), - (185,761,'2006-02-15 05:05:03'), - (185,818,'2006-02-15 05:05:03'), - (185,845,'2006-02-15 05:05:03'), - (185,880,'2006-02-15 05:05:03'), - (185,882,'2006-02-15 05:05:03'), - (185,919,'2006-02-15 05:05:03'), - (185,920,'2006-02-15 05:05:03'), - (185,965,'2006-02-15 05:05:03'), - (185,973,'2006-02-15 05:05:03'), - (186,95,'2006-02-15 05:05:03'), - (186,187,'2006-02-15 05:05:03'), - (186,208,'2006-02-15 05:05:03'), - (186,228,'2006-02-15 05:05:03'), - (186,237,'2006-02-15 05:05:03'), - (186,422,'2006-02-15 05:05:03'), - (186,482,'2006-02-15 05:05:03'), - (186,508,'2006-02-15 05:05:03'), - (186,552,'2006-02-15 05:05:03'), - (186,579,'2006-02-15 05:05:03'), - (186,637,'2006-02-15 05:05:03'), - (186,648,'2006-02-15 05:05:03'), - (186,654,'2006-02-15 05:05:03'), - (186,729,'2006-02-15 05:05:03'), - (186,983,'2006-02-15 05:05:03'), - (186,994,'2006-02-15 05:05:03'), - (187,17,'2006-02-15 05:05:03'), - (187,25,'2006-02-15 05:05:03'), - (187,29,'2006-02-15 05:05:03'), - (187,51,'2006-02-15 05:05:03'), - (187,73,'2006-02-15 05:05:03'), - (187,76,'2006-02-15 05:05:03'), - (187,98,'2006-02-15 05:05:03'), - (187,110,'2006-02-15 05:05:03'), - (187,127,'2006-02-15 05:05:03'), - (187,168,'2006-02-15 05:05:03'), - (187,222,'2006-02-15 05:05:03'), - (187,224,'2006-02-15 05:05:03'), - (187,297,'2006-02-15 05:05:03'), - (187,354,'2006-02-15 05:05:03'), - (187,379,'2006-02-15 05:05:03'), - (187,417,'2006-02-15 05:05:03'), - (187,435,'2006-02-15 05:05:03'), - (187,441,'2006-02-15 05:05:03'), - (187,474,'2006-02-15 05:05:03'), - (187,499,'2006-02-15 05:05:03'), - (187,538,'2006-02-15 05:05:03'), - (187,548,'2006-02-15 05:05:03'), - (187,561,'2006-02-15 05:05:03'), - (187,617,'2006-02-15 05:05:03'), - (187,625,'2006-02-15 05:05:03'), - (187,664,'2006-02-15 05:05:03'), - (187,671,'2006-02-15 05:05:03'), - (187,768,'2006-02-15 05:05:03'), - (187,779,'2006-02-15 05:05:03'), - (187,906,'2006-02-15 05:05:03'), - (187,914,'2006-02-15 05:05:03'), - (187,923,'2006-02-15 05:05:03'), - (187,976,'2006-02-15 05:05:03'), - (188,1,'2006-02-15 05:05:03'), - (188,10,'2006-02-15 05:05:03'), - (188,14,'2006-02-15 05:05:03'), - (188,51,'2006-02-15 05:05:03'), - (188,102,'2006-02-15 05:05:03'), - (188,111,'2006-02-15 05:05:03'), - (188,146,'2006-02-15 05:05:03'), - (188,206,'2006-02-15 05:05:03'), - (188,223,'2006-02-15 05:05:03'), - (188,289,'2006-02-15 05:05:03'), - (188,311,'2006-02-15 05:05:03'), - (188,322,'2006-02-15 05:05:03'), - (188,338,'2006-02-15 05:05:03'), - (188,396,'2006-02-15 05:05:03'), - (188,412,'2006-02-15 05:05:03'), - (188,506,'2006-02-15 05:05:03'), - (188,517,'2006-02-15 05:05:03'), - (188,529,'2006-02-15 05:05:03'), - (188,566,'2006-02-15 05:05:03'), - (188,593,'2006-02-15 05:05:03'), - (188,606,'2006-02-15 05:05:03'), - (188,662,'2006-02-15 05:05:03'), - (188,770,'2006-02-15 05:05:03'), - (188,773,'2006-02-15 05:05:03'), - (188,774,'2006-02-15 05:05:03'), - (188,815,'2006-02-15 05:05:03'), - (188,849,'2006-02-15 05:05:03'), - (188,925,'2006-02-15 05:05:03'), - (188,988,'2006-02-15 05:05:03'), - (188,989,'2006-02-15 05:05:03'), - (189,43,'2006-02-15 05:05:03'), - (189,82,'2006-02-15 05:05:03'), - (189,171,'2006-02-15 05:05:03'), - (189,266,'2006-02-15 05:05:03'), - (189,272,'2006-02-15 05:05:03'), - (189,315,'2006-02-15 05:05:03'), - (189,378,'2006-02-15 05:05:03'), - (189,492,'2006-02-15 05:05:03'), - (189,509,'2006-02-15 05:05:03'), - (189,512,'2006-02-15 05:05:03'), - (189,519,'2006-02-15 05:05:03'), - (189,533,'2006-02-15 05:05:03'), - (189,548,'2006-02-15 05:05:03'), - (189,560,'2006-02-15 05:05:03'), - (189,628,'2006-02-15 05:05:03'), - (189,734,'2006-02-15 05:05:03'), - (189,748,'2006-02-15 05:05:03'), - (189,788,'2006-02-15 05:05:03'), - (189,820,'2006-02-15 05:05:03'), - (189,853,'2006-02-15 05:05:03'), - (189,882,'2006-02-15 05:05:03'), - (189,896,'2006-02-15 05:05:03'), - (189,899,'2006-02-15 05:05:03'), - (189,940,'2006-02-15 05:05:03'), - (190,38,'2006-02-15 05:05:03'), - (190,54,'2006-02-15 05:05:03'), - (190,62,'2006-02-15 05:05:03'), - (190,87,'2006-02-15 05:05:03'), - (190,173,'2006-02-15 05:05:03'), - (190,234,'2006-02-15 05:05:03'), - (190,253,'2006-02-15 05:05:03'), - (190,278,'2006-02-15 05:05:03'), - (190,310,'2006-02-15 05:05:03'), - (190,374,'2006-02-15 05:05:03'), - (190,411,'2006-02-15 05:05:03'), - (190,426,'2006-02-15 05:05:03'), - (190,472,'2006-02-15 05:05:03'), - (190,549,'2006-02-15 05:05:03'), - (190,562,'2006-02-15 05:05:03'), - (190,606,'2006-02-15 05:05:03'), - (190,623,'2006-02-15 05:05:03'), - (190,679,'2006-02-15 05:05:03'), - (190,682,'2006-02-15 05:05:03'), - (190,693,'2006-02-15 05:05:03'), - (190,695,'2006-02-15 05:05:03'), - (190,705,'2006-02-15 05:05:03'), - (190,708,'2006-02-15 05:05:03'), - (190,802,'2006-02-15 05:05:03'), - (190,806,'2006-02-15 05:05:03'), - (190,874,'2006-02-15 05:05:03'), - (190,959,'2006-02-15 05:05:03'), - (191,16,'2006-02-15 05:05:03'), - (191,39,'2006-02-15 05:05:03'), - (191,84,'2006-02-15 05:05:03'), - (191,185,'2006-02-15 05:05:03'), - (191,219,'2006-02-15 05:05:03'), - (191,293,'2006-02-15 05:05:03'), - (191,296,'2006-02-15 05:05:03'), - (191,378,'2006-02-15 05:05:03'), - (191,410,'2006-02-15 05:05:03'), - (191,420,'2006-02-15 05:05:03'), - (191,461,'2006-02-15 05:05:03'), - (191,544,'2006-02-15 05:05:03'), - (191,551,'2006-02-15 05:05:03'), - (191,596,'2006-02-15 05:05:03'), - (191,638,'2006-02-15 05:05:03'), - (191,668,'2006-02-15 05:05:03'), - (191,692,'2006-02-15 05:05:03'), - (191,775,'2006-02-15 05:05:03'), - (191,801,'2006-02-15 05:05:03'), - (191,819,'2006-02-15 05:05:03'), - (191,827,'2006-02-15 05:05:03'), - (191,830,'2006-02-15 05:05:03'), - (191,834,'2006-02-15 05:05:03'), - (191,849,'2006-02-15 05:05:03'), - (191,858,'2006-02-15 05:05:03'), - (191,914,'2006-02-15 05:05:03'), - (191,958,'2006-02-15 05:05:03'), - (191,969,'2006-02-15 05:05:03'), - (191,971,'2006-02-15 05:05:03'), - (191,993,'2006-02-15 05:05:03'), - (192,16,'2006-02-15 05:05:03'), - (192,69,'2006-02-15 05:05:03'), - (192,117,'2006-02-15 05:05:03'), - (192,155,'2006-02-15 05:05:03'), - (192,166,'2006-02-15 05:05:03'), - (192,179,'2006-02-15 05:05:03'), - (192,214,'2006-02-15 05:05:03'), - (192,361,'2006-02-15 05:05:03'), - (192,367,'2006-02-15 05:05:03'), - (192,426,'2006-02-15 05:05:03'), - (192,465,'2006-02-15 05:05:03'), - (192,470,'2006-02-15 05:05:03'), - (192,475,'2006-02-15 05:05:03'), - (192,485,'2006-02-15 05:05:03'), - (192,541,'2006-02-15 05:05:03'), - (192,578,'2006-02-15 05:05:03'), - (192,592,'2006-02-15 05:05:03'), - (192,614,'2006-02-15 05:05:03'), - (192,618,'2006-02-15 05:05:03'), - (192,622,'2006-02-15 05:05:03'), - (192,674,'2006-02-15 05:05:03'), - (192,677,'2006-02-15 05:05:03'), - (192,680,'2006-02-15 05:05:03'), - (192,682,'2006-02-15 05:05:03'), - (192,708,'2006-02-15 05:05:03'), - (192,711,'2006-02-15 05:05:03'), - (192,747,'2006-02-15 05:05:03'), - (192,763,'2006-02-15 05:05:03'), - (192,819,'2006-02-15 05:05:03'), - (193,44,'2006-02-15 05:05:03'), - (193,80,'2006-02-15 05:05:03'), - (193,103,'2006-02-15 05:05:03'), - (193,109,'2006-02-15 05:05:03'), - (193,119,'2006-02-15 05:05:03'), - (193,141,'2006-02-15 05:05:03'), - (193,164,'2006-02-15 05:05:03'), - (193,291,'2006-02-15 05:05:03'), - (193,352,'2006-02-15 05:05:03'), - (193,358,'2006-02-15 05:05:03'), - (193,376,'2006-02-15 05:05:03'), - (193,412,'2006-02-15 05:05:03'), - (193,462,'2006-02-15 05:05:03'), - (193,689,'2006-02-15 05:05:03'), - (193,709,'2006-02-15 05:05:03'), - (193,745,'2006-02-15 05:05:03'), - (193,807,'2006-02-15 05:05:03'), - (193,828,'2006-02-15 05:05:03'), - (193,834,'2006-02-15 05:05:03'), - (193,851,'2006-02-15 05:05:03'), - (193,937,'2006-02-15 05:05:03'), - (193,953,'2006-02-15 05:05:03'), - (193,960,'2006-02-15 05:05:03'), - (194,9,'2006-02-15 05:05:03'), - (194,42,'2006-02-15 05:05:03'), - (194,67,'2006-02-15 05:05:03'), - (194,86,'2006-02-15 05:05:03'), - (194,88,'2006-02-15 05:05:03'), - (194,98,'2006-02-15 05:05:03'), - (194,135,'2006-02-15 05:05:03'), - (194,161,'2006-02-15 05:05:03'), - (194,163,'2006-02-15 05:05:03'), - (194,215,'2006-02-15 05:05:03'), - (194,232,'2006-02-15 05:05:03'), - (194,352,'2006-02-15 05:05:03'), - (194,415,'2006-02-15 05:05:03'), - (194,486,'2006-02-15 05:05:03'), - (194,498,'2006-02-15 05:05:03'), - (194,531,'2006-02-15 05:05:03'), - (194,719,'2006-02-15 05:05:03'), - (194,738,'2006-02-15 05:05:03'), - (194,786,'2006-02-15 05:05:03'), - (194,872,'2006-02-15 05:05:03'), - (194,938,'2006-02-15 05:05:03'), - (194,940,'2006-02-15 05:05:03'), - (195,129,'2006-02-15 05:05:03'), - (195,130,'2006-02-15 05:05:03'), - (195,141,'2006-02-15 05:05:03'), - (195,144,'2006-02-15 05:05:03'), - (195,298,'2006-02-15 05:05:03'), - (195,359,'2006-02-15 05:05:03'), - (195,361,'2006-02-15 05:05:03'), - (195,392,'2006-02-15 05:05:03'), - (195,403,'2006-02-15 05:05:03'), - (195,494,'2006-02-15 05:05:03'), - (195,520,'2006-02-15 05:05:03'), - (195,534,'2006-02-15 05:05:03'), - (195,560,'2006-02-15 05:05:03'), - (195,592,'2006-02-15 05:05:03'), - (195,649,'2006-02-15 05:05:03'), - (195,658,'2006-02-15 05:05:03'), - (195,673,'2006-02-15 05:05:03'), - (195,677,'2006-02-15 05:05:03'), - (195,706,'2006-02-15 05:05:03'), - (195,738,'2006-02-15 05:05:03'), - (195,769,'2006-02-15 05:05:03'), - (195,781,'2006-02-15 05:05:03'), - (195,794,'2006-02-15 05:05:03'), - (195,813,'2006-02-15 05:05:03'), - (195,869,'2006-02-15 05:05:03'), - (195,885,'2006-02-15 05:05:03'), - (195,962,'2006-02-15 05:05:03'), - (196,64,'2006-02-15 05:05:03'), - (196,122,'2006-02-15 05:05:03'), - (196,156,'2006-02-15 05:05:03'), - (196,169,'2006-02-15 05:05:03'), - (196,276,'2006-02-15 05:05:03'), - (196,284,'2006-02-15 05:05:03'), - (196,303,'2006-02-15 05:05:03'), - (196,324,'2006-02-15 05:05:03'), - (196,423,'2006-02-15 05:05:03'), - (196,473,'2006-02-15 05:05:03'), - (196,484,'2006-02-15 05:05:03'), - (196,515,'2006-02-15 05:05:03'), - (196,524,'2006-02-15 05:05:03'), - (196,541,'2006-02-15 05:05:03'), - (196,560,'2006-02-15 05:05:03'), - (196,575,'2006-02-15 05:05:03'), - (196,576,'2006-02-15 05:05:03'), - (196,587,'2006-02-15 05:05:03'), - (196,615,'2006-02-15 05:05:03'), - (196,635,'2006-02-15 05:05:03'), - (196,684,'2006-02-15 05:05:03'), - (196,795,'2006-02-15 05:05:03'), - (196,815,'2006-02-15 05:05:03'), - (196,833,'2006-02-15 05:05:03'), - (196,837,'2006-02-15 05:05:03'), - (196,906,'2006-02-15 05:05:03'), - (196,908,'2006-02-15 05:05:03'), - (196,919,'2006-02-15 05:05:03'), - (196,939,'2006-02-15 05:05:03'), - (196,972,'2006-02-15 05:05:03'), - (197,6,'2006-02-15 05:05:03'), - (197,29,'2006-02-15 05:05:03'), - (197,63,'2006-02-15 05:05:03'), - (197,123,'2006-02-15 05:05:03'), - (197,129,'2006-02-15 05:05:03'), - (197,147,'2006-02-15 05:05:03'), - (197,164,'2006-02-15 05:05:03'), - (197,189,'2006-02-15 05:05:03'), - (197,243,'2006-02-15 05:05:03'), - (197,249,'2006-02-15 05:05:03'), - (197,258,'2006-02-15 05:05:03'), - (197,364,'2006-02-15 05:05:03'), - (197,369,'2006-02-15 05:05:03'), - (197,370,'2006-02-15 05:05:03'), - (197,418,'2006-02-15 05:05:03'), - (197,522,'2006-02-15 05:05:03'), - (197,531,'2006-02-15 05:05:03'), - (197,554,'2006-02-15 05:05:03'), - (197,598,'2006-02-15 05:05:03'), - (197,628,'2006-02-15 05:05:03'), - (197,691,'2006-02-15 05:05:03'), - (197,724,'2006-02-15 05:05:03'), - (197,746,'2006-02-15 05:05:03'), - (197,752,'2006-02-15 05:05:03'), - (197,758,'2006-02-15 05:05:03'), - (197,769,'2006-02-15 05:05:03'), - (197,815,'2006-02-15 05:05:03'), - (197,916,'2006-02-15 05:05:03'), - (197,950,'2006-02-15 05:05:03'), - (197,967,'2006-02-15 05:05:03'), - (197,974,'2006-02-15 05:05:03'), - (197,979,'2006-02-15 05:05:03'), - (197,995,'2006-02-15 05:05:03'), - (198,1,'2006-02-15 05:05:03'), - (198,109,'2006-02-15 05:05:03'), - (198,125,'2006-02-15 05:05:03'), - (198,186,'2006-02-15 05:05:03'), - (198,262,'2006-02-15 05:05:03'), - (198,264,'2006-02-15 05:05:03'), - (198,303,'2006-02-15 05:05:03'), - (198,309,'2006-02-15 05:05:03'), - (198,311,'2006-02-15 05:05:03'), - (198,329,'2006-02-15 05:05:03'), - (198,347,'2006-02-15 05:05:03'), - (198,379,'2006-02-15 05:05:03'), - (198,395,'2006-02-15 05:05:03'), - (198,406,'2006-02-15 05:05:03'), - (198,450,'2006-02-15 05:05:03'), - (198,464,'2006-02-15 05:05:03'), - (198,482,'2006-02-15 05:05:03'), - (198,499,'2006-02-15 05:05:03'), - (198,536,'2006-02-15 05:05:03'), - (198,541,'2006-02-15 05:05:03'), - (198,545,'2006-02-15 05:05:03'), - (198,555,'2006-02-15 05:05:03'), - (198,568,'2006-02-15 05:05:03'), - (198,570,'2006-02-15 05:05:03'), - (198,588,'2006-02-15 05:05:03'), - (198,597,'2006-02-15 05:05:03'), - (198,628,'2006-02-15 05:05:03'), - (198,745,'2006-02-15 05:05:03'), - (198,758,'2006-02-15 05:05:03'), - (198,796,'2006-02-15 05:05:03'), - (198,806,'2006-02-15 05:05:03'), - (198,817,'2006-02-15 05:05:03'), - (198,843,'2006-02-15 05:05:03'), - (198,858,'2006-02-15 05:05:03'), - (198,871,'2006-02-15 05:05:03'), - (198,886,'2006-02-15 05:05:03'), - (198,892,'2006-02-15 05:05:03'), - (198,924,'2006-02-15 05:05:03'), - (198,952,'2006-02-15 05:05:03'), - (198,997,'2006-02-15 05:05:03'), - (199,67,'2006-02-15 05:05:03'), - (199,84,'2006-02-15 05:05:03'), - (199,145,'2006-02-15 05:05:03'), - (199,159,'2006-02-15 05:05:03'), - (199,216,'2006-02-15 05:05:03'), - (199,432,'2006-02-15 05:05:03'), - (199,541,'2006-02-15 05:05:03'), - (199,604,'2006-02-15 05:05:03'), - (199,640,'2006-02-15 05:05:03'), - (199,689,'2006-02-15 05:05:03'), - (199,730,'2006-02-15 05:05:03'), - (199,784,'2006-02-15 05:05:03'), - (199,785,'2006-02-15 05:05:03'), - (199,886,'2006-02-15 05:05:03'), - (199,953,'2006-02-15 05:05:03'), - (200,5,'2006-02-15 05:05:03'), - (200,49,'2006-02-15 05:05:03'), - (200,80,'2006-02-15 05:05:03'), - (200,116,'2006-02-15 05:05:03'), - (200,121,'2006-02-15 05:05:03'), - (200,149,'2006-02-15 05:05:03'), - (200,346,'2006-02-15 05:05:03'), - (200,419,'2006-02-15 05:05:03'), - (200,462,'2006-02-15 05:05:03'), - (200,465,'2006-02-15 05:05:03'), - (200,474,'2006-02-15 05:05:03'), - (200,537,'2006-02-15 05:05:03'), - (200,538,'2006-02-15 05:05:03'), - (200,544,'2006-02-15 05:05:03'), - (200,714,'2006-02-15 05:05:03'), - (200,879,'2006-02-15 05:05:03'), - (200,912,'2006-02-15 05:05:03'), - (200,945,'2006-02-15 05:05:03'), - (200,958,'2006-02-15 05:05:03'), - (200,993,'2006-02-15 05:05:03'); -COMMIT; - --- --- Dumping data for table film_category --- - -SET AUTOCOMMIT=0; -INSERT INTO film_category VALUES (1,6,'2006-02-15 05:07:09'), - (2,11,'2006-02-15 05:07:09'), - (3,6,'2006-02-15 05:07:09'), - (4,11,'2006-02-15 05:07:09'), - (5,8,'2006-02-15 05:07:09'), - (6,9,'2006-02-15 05:07:09'), - (7,5,'2006-02-15 05:07:09'), - (8,11,'2006-02-15 05:07:09'), - (9,11,'2006-02-15 05:07:09'), - (10,15,'2006-02-15 05:07:09'), - (11,9,'2006-02-15 05:07:09'), - (12,12,'2006-02-15 05:07:09'), - (13,11,'2006-02-15 05:07:09'), - (14,4,'2006-02-15 05:07:09'), - (15,9,'2006-02-15 05:07:09'), - (16,9,'2006-02-15 05:07:09'), - (17,12,'2006-02-15 05:07:09'), - (18,2,'2006-02-15 05:07:09'), - (19,1,'2006-02-15 05:07:09'), - (20,12,'2006-02-15 05:07:09'), - (21,1,'2006-02-15 05:07:09'), - (22,13,'2006-02-15 05:07:09'), - (23,2,'2006-02-15 05:07:09'), - (24,11,'2006-02-15 05:07:09'), - (25,13,'2006-02-15 05:07:09'), - (26,14,'2006-02-15 05:07:09'), - (27,15,'2006-02-15 05:07:09'), - (28,5,'2006-02-15 05:07:09'), - (29,1,'2006-02-15 05:07:09'), - (30,11,'2006-02-15 05:07:09'), - (31,8,'2006-02-15 05:07:09'), - (32,13,'2006-02-15 05:07:09'), - (33,7,'2006-02-15 05:07:09'), - (34,11,'2006-02-15 05:07:09'), - (35,11,'2006-02-15 05:07:09'), - (36,2,'2006-02-15 05:07:09'), - (37,4,'2006-02-15 05:07:09'), - (38,1,'2006-02-15 05:07:09'), - (39,14,'2006-02-15 05:07:09'), - (40,6,'2006-02-15 05:07:09'), - (41,16,'2006-02-15 05:07:09'), - (42,15,'2006-02-15 05:07:09'), - (43,8,'2006-02-15 05:07:09'), - (44,14,'2006-02-15 05:07:09'), - (45,13,'2006-02-15 05:07:09'), - (46,10,'2006-02-15 05:07:09'), - (47,9,'2006-02-15 05:07:09'), - (48,3,'2006-02-15 05:07:09'), - (49,14,'2006-02-15 05:07:09'), - (50,8,'2006-02-15 05:07:09'), - (51,12,'2006-02-15 05:07:09'), - (52,9,'2006-02-15 05:07:09'), - (53,8,'2006-02-15 05:07:09'), - (54,12,'2006-02-15 05:07:09'), - (55,14,'2006-02-15 05:07:09'), - (56,1,'2006-02-15 05:07:09'), - (57,16,'2006-02-15 05:07:09'), - (58,6,'2006-02-15 05:07:09'), - (59,3,'2006-02-15 05:07:09'), - (60,4,'2006-02-15 05:07:09'), - (61,7,'2006-02-15 05:07:09'), - (62,6,'2006-02-15 05:07:09'), - (63,8,'2006-02-15 05:07:09'), - (64,7,'2006-02-15 05:07:09'), - (65,11,'2006-02-15 05:07:09'), - (66,3,'2006-02-15 05:07:09'), - (67,1,'2006-02-15 05:07:09'), - (68,3,'2006-02-15 05:07:09'), - (69,14,'2006-02-15 05:07:09'), - (70,2,'2006-02-15 05:07:09'), - (71,8,'2006-02-15 05:07:09'), - (72,6,'2006-02-15 05:07:09'), - (73,14,'2006-02-15 05:07:09'), - (74,12,'2006-02-15 05:07:09'), - (75,16,'2006-02-15 05:07:09'), - (76,12,'2006-02-15 05:07:09'), - (77,13,'2006-02-15 05:07:09'), - (78,2,'2006-02-15 05:07:09'), - (79,7,'2006-02-15 05:07:09'), - (80,8,'2006-02-15 05:07:09'), - (81,14,'2006-02-15 05:07:09'), - (82,8,'2006-02-15 05:07:09'), - (83,8,'2006-02-15 05:07:09'), - (84,16,'2006-02-15 05:07:09'), - (85,6,'2006-02-15 05:07:09'), - (86,12,'2006-02-15 05:07:09'), - (87,16,'2006-02-15 05:07:09'), - (88,16,'2006-02-15 05:07:09'), - (89,2,'2006-02-15 05:07:09'), - (90,13,'2006-02-15 05:07:09'), - (91,4,'2006-02-15 05:07:09'), - (92,11,'2006-02-15 05:07:09'), - (93,13,'2006-02-15 05:07:09'), - (94,8,'2006-02-15 05:07:09'), - (95,13,'2006-02-15 05:07:09'), - (96,13,'2006-02-15 05:07:09'), - (97,1,'2006-02-15 05:07:09'), - (98,7,'2006-02-15 05:07:09'), - (99,5,'2006-02-15 05:07:09'), - (100,9,'2006-02-15 05:07:09'), - (101,6,'2006-02-15 05:07:09'), - (102,15,'2006-02-15 05:07:09'), - (103,16,'2006-02-15 05:07:09'), - (104,9,'2006-02-15 05:07:09'), - (105,1,'2006-02-15 05:07:09'), - (106,10,'2006-02-15 05:07:09'), - (107,7,'2006-02-15 05:07:09'), - (108,13,'2006-02-15 05:07:09'), - (109,13,'2006-02-15 05:07:09'), - (110,3,'2006-02-15 05:07:09'), - (111,1,'2006-02-15 05:07:09'), - (112,9,'2006-02-15 05:07:09'), - (113,15,'2006-02-15 05:07:09'), - (114,14,'2006-02-15 05:07:09'), - (115,1,'2006-02-15 05:07:09'), - (116,4,'2006-02-15 05:07:09'), - (117,10,'2006-02-15 05:07:09'), - (118,2,'2006-02-15 05:07:09'), - (119,5,'2006-02-15 05:07:09'), - (120,15,'2006-02-15 05:07:09'), - (121,2,'2006-02-15 05:07:09'), - (122,11,'2006-02-15 05:07:09'), - (123,16,'2006-02-15 05:07:09'), - (124,3,'2006-02-15 05:07:09'), - (125,16,'2006-02-15 05:07:09'), - (126,1,'2006-02-15 05:07:09'), - (127,5,'2006-02-15 05:07:09'), - (128,9,'2006-02-15 05:07:09'), - (129,6,'2006-02-15 05:07:09'), - (130,1,'2006-02-15 05:07:09'), - (131,4,'2006-02-15 05:07:09'), - (132,14,'2006-02-15 05:07:09'), - (133,12,'2006-02-15 05:07:09'), - (134,2,'2006-02-15 05:07:09'), - (135,15,'2006-02-15 05:07:09'), - (136,13,'2006-02-15 05:07:09'), - (137,14,'2006-02-15 05:07:09'), - (138,14,'2006-02-15 05:07:09'), - (139,8,'2006-02-15 05:07:09'), - (140,14,'2006-02-15 05:07:09'), - (141,10,'2006-02-15 05:07:09'), - (142,6,'2006-02-15 05:07:09'), - (143,7,'2006-02-15 05:07:09'), - (144,13,'2006-02-15 05:07:09'), - (145,8,'2006-02-15 05:07:09'), - (146,7,'2006-02-15 05:07:09'), - (147,8,'2006-02-15 05:07:09'), - (148,9,'2006-02-15 05:07:09'), - (149,3,'2006-02-15 05:07:09'), - (150,6,'2006-02-15 05:07:09'), - (151,14,'2006-02-15 05:07:09'), - (152,3,'2006-02-15 05:07:09'), - (153,14,'2006-02-15 05:07:09'), - (154,2,'2006-02-15 05:07:09'), - (155,13,'2006-02-15 05:07:09'), - (156,6,'2006-02-15 05:07:09'), - (157,3,'2006-02-15 05:07:09'), - (158,12,'2006-02-15 05:07:09'), - (159,5,'2006-02-15 05:07:09'), - (160,2,'2006-02-15 05:07:09'), - (161,12,'2006-02-15 05:07:09'), - (162,1,'2006-02-15 05:07:09'), - (163,13,'2006-02-15 05:07:09'), - (164,6,'2006-02-15 05:07:09'), - (165,14,'2006-02-15 05:07:09'), - (166,4,'2006-02-15 05:07:09'), - (167,16,'2006-02-15 05:07:09'), - (168,3,'2006-02-15 05:07:09'), - (169,16,'2006-02-15 05:07:09'), - (170,9,'2006-02-15 05:07:09'), - (171,11,'2006-02-15 05:07:09'), - (172,7,'2006-02-15 05:07:09'), - (173,7,'2006-02-15 05:07:09'), - (174,12,'2006-02-15 05:07:09'), - (175,8,'2006-02-15 05:07:09'), - (176,15,'2006-02-15 05:07:09'), - (177,14,'2006-02-15 05:07:09'), - (178,5,'2006-02-15 05:07:09'), - (179,7,'2006-02-15 05:07:09'), - (180,4,'2006-02-15 05:07:09'), - (181,16,'2006-02-15 05:07:09'), - (182,5,'2006-02-15 05:07:09'), - (183,8,'2006-02-15 05:07:09'), - (184,4,'2006-02-15 05:07:09'), - (185,9,'2006-02-15 05:07:09'), - (186,7,'2006-02-15 05:07:09'), - (187,15,'2006-02-15 05:07:09'), - (188,5,'2006-02-15 05:07:09'), - (189,10,'2006-02-15 05:07:09'), - (190,4,'2006-02-15 05:07:09'), - (191,3,'2006-02-15 05:07:09'), - (192,9,'2006-02-15 05:07:09'), - (193,2,'2006-02-15 05:07:09'), - (194,1,'2006-02-15 05:07:09'), - (195,14,'2006-02-15 05:07:09'), - (196,4,'2006-02-15 05:07:09'), - (197,15,'2006-02-15 05:07:09'), - (198,9,'2006-02-15 05:07:09'), - (199,6,'2006-02-15 05:07:09'), - (200,10,'2006-02-15 05:07:09'), - (201,9,'2006-02-15 05:07:09'), - (202,5,'2006-02-15 05:07:09'), - (203,14,'2006-02-15 05:07:09'), - (204,7,'2006-02-15 05:07:09'), - (205,1,'2006-02-15 05:07:09'), - (206,6,'2006-02-15 05:07:09'), - (207,9,'2006-02-15 05:07:09'), - (208,2,'2006-02-15 05:07:09'), - (209,7,'2006-02-15 05:07:09'), - (210,1,'2006-02-15 05:07:09'), - (211,10,'2006-02-15 05:07:09'), - (212,1,'2006-02-15 05:07:09'), - (213,8,'2006-02-15 05:07:09'), - (214,3,'2006-02-15 05:07:09'), - (215,10,'2006-02-15 05:07:09'), - (216,13,'2006-02-15 05:07:09'), - (217,10,'2006-02-15 05:07:09'), - (218,7,'2006-02-15 05:07:09'), - (219,6,'2006-02-15 05:07:09'), - (220,12,'2006-02-15 05:07:09'), - (221,6,'2006-02-15 05:07:09'), - (222,11,'2006-02-15 05:07:09'), - (223,2,'2006-02-15 05:07:09'), - (224,16,'2006-02-15 05:07:09'), - (225,7,'2006-02-15 05:07:09'), - (226,13,'2006-02-15 05:07:09'), - (227,10,'2006-02-15 05:07:09'), - (228,4,'2006-02-15 05:07:09'), - (229,1,'2006-02-15 05:07:09'), - (230,7,'2006-02-15 05:07:09'), - (231,8,'2006-02-15 05:07:09'), - (232,10,'2006-02-15 05:07:09'), - (233,16,'2006-02-15 05:07:09'), - (234,14,'2006-02-15 05:07:09'), - (235,14,'2006-02-15 05:07:09'), - (236,10,'2006-02-15 05:07:09'), - (237,15,'2006-02-15 05:07:09'), - (238,3,'2006-02-15 05:07:09'), - (239,2,'2006-02-15 05:07:09'), - (240,14,'2006-02-15 05:07:09'), - (241,2,'2006-02-15 05:07:09'), - (242,5,'2006-02-15 05:07:09'), - (243,2,'2006-02-15 05:07:09'), - (244,12,'2006-02-15 05:07:09'), - (245,2,'2006-02-15 05:07:09'), - (246,9,'2006-02-15 05:07:09'), - (247,5,'2006-02-15 05:07:09'), - (248,6,'2006-02-15 05:07:09'), - (249,4,'2006-02-15 05:07:09'), - (250,1,'2006-02-15 05:07:09'), - (251,13,'2006-02-15 05:07:09'), - (252,1,'2006-02-15 05:07:09'), - (253,1,'2006-02-15 05:07:09'), - (254,15,'2006-02-15 05:07:09'), - (255,12,'2006-02-15 05:07:09'), - (256,15,'2006-02-15 05:07:09'), - (257,16,'2006-02-15 05:07:09'), - (258,11,'2006-02-15 05:07:09'), - (259,2,'2006-02-15 05:07:09'), - (260,15,'2006-02-15 05:07:09'), - (261,6,'2006-02-15 05:07:09'), - (262,8,'2006-02-15 05:07:09'), - (263,15,'2006-02-15 05:07:09'), - (264,10,'2006-02-15 05:07:09'), - (265,5,'2006-02-15 05:07:09'), - (266,4,'2006-02-15 05:07:09'), - (267,13,'2006-02-15 05:07:09'), - (268,2,'2006-02-15 05:07:09'), - (269,8,'2006-02-15 05:07:09'), - (270,13,'2006-02-15 05:07:09'), - (271,1,'2006-02-15 05:07:09'), - (272,7,'2006-02-15 05:07:09'), - (273,8,'2006-02-15 05:07:09'), - (274,6,'2006-02-15 05:07:09'), - (275,11,'2006-02-15 05:07:09'), - (276,5,'2006-02-15 05:07:09'), - (277,11,'2006-02-15 05:07:09'), - (278,12,'2006-02-15 05:07:09'), - (279,15,'2006-02-15 05:07:09'), - (280,3,'2006-02-15 05:07:09'), - (281,10,'2006-02-15 05:07:09'), - (282,7,'2006-02-15 05:07:09'), - (283,13,'2006-02-15 05:07:09'), - (284,12,'2006-02-15 05:07:09'), - (285,14,'2006-02-15 05:07:09'), - (286,16,'2006-02-15 05:07:09'), - (287,1,'2006-02-15 05:07:09'), - (288,16,'2006-02-15 05:07:09'), - (289,13,'2006-02-15 05:07:09'), - (290,9,'2006-02-15 05:07:09'), - (291,15,'2006-02-15 05:07:09'), - (292,1,'2006-02-15 05:07:09'), - (293,15,'2006-02-15 05:07:09'), - (294,16,'2006-02-15 05:07:09'), - (295,6,'2006-02-15 05:07:09'), - (296,14,'2006-02-15 05:07:09'), - (297,4,'2006-02-15 05:07:09'), - (298,14,'2006-02-15 05:07:09'), - (299,16,'2006-02-15 05:07:09'), - (300,2,'2006-02-15 05:07:09'), - (301,11,'2006-02-15 05:07:09'), - (302,10,'2006-02-15 05:07:09'), - (303,1,'2006-02-15 05:07:09'), - (304,3,'2006-02-15 05:07:09'), - (305,13,'2006-02-15 05:07:09'), - (306,10,'2006-02-15 05:07:09'), - (307,16,'2006-02-15 05:07:09'), - (308,5,'2006-02-15 05:07:09'), - (309,8,'2006-02-15 05:07:09'), - (310,10,'2006-02-15 05:07:09'), - (311,9,'2006-02-15 05:07:09'), - (312,14,'2006-02-15 05:07:09'), - (313,11,'2006-02-15 05:07:09'), - (314,2,'2006-02-15 05:07:09'), - (315,8,'2006-02-15 05:07:09'), - (316,10,'2006-02-15 05:07:09'), - (317,5,'2006-02-15 05:07:09'), - (318,1,'2006-02-15 05:07:09'), - (319,14,'2006-02-15 05:07:09'), - (320,13,'2006-02-15 05:07:09'), - (321,13,'2006-02-15 05:07:09'), - (322,15,'2006-02-15 05:07:09'), - (323,15,'2006-02-15 05:07:09'), - (324,5,'2006-02-15 05:07:09'), - (325,2,'2006-02-15 05:07:09'), - (326,2,'2006-02-15 05:07:09'), - (327,1,'2006-02-15 05:07:09'), - (328,3,'2006-02-15 05:07:09'), - (329,1,'2006-02-15 05:07:09'), - (330,2,'2006-02-15 05:07:09'), - (331,10,'2006-02-15 05:07:09'), - (332,5,'2006-02-15 05:07:09'), - (333,12,'2006-02-15 05:07:09'), - (334,11,'2006-02-15 05:07:09'), - (335,5,'2006-02-15 05:07:09'), - (336,6,'2006-02-15 05:07:09'), - (337,9,'2006-02-15 05:07:09'), - (338,14,'2006-02-15 05:07:09'), - (339,16,'2006-02-15 05:07:09'), - (340,13,'2006-02-15 05:07:09'), - (341,4,'2006-02-15 05:07:09'), - (342,16,'2006-02-15 05:07:09'), - (343,3,'2006-02-15 05:07:09'), - (344,3,'2006-02-15 05:07:09'), - (345,8,'2006-02-15 05:07:09'), - (346,4,'2006-02-15 05:07:09'), - (347,16,'2006-02-15 05:07:09'), - (348,8,'2006-02-15 05:07:09'), - (349,2,'2006-02-15 05:07:09'), - (350,14,'2006-02-15 05:07:09'), - (351,11,'2006-02-15 05:07:09'), - (352,10,'2006-02-15 05:07:09'), - (353,9,'2006-02-15 05:07:09'), - (354,3,'2006-02-15 05:07:09'), - (355,2,'2006-02-15 05:07:09'), - (356,3,'2006-02-15 05:07:09'), - (357,4,'2006-02-15 05:07:09'), - (358,4,'2006-02-15 05:07:09'), - (359,8,'2006-02-15 05:07:09'), - (360,1,'2006-02-15 05:07:09'), - (361,15,'2006-02-15 05:07:09'), - (362,10,'2006-02-15 05:07:09'), - (363,12,'2006-02-15 05:07:09'), - (364,13,'2006-02-15 05:07:09'), - (365,5,'2006-02-15 05:07:09'), - (366,7,'2006-02-15 05:07:09'), - (367,14,'2006-02-15 05:07:09'), - (368,7,'2006-02-15 05:07:09'), - (369,14,'2006-02-15 05:07:09'), - (370,3,'2006-02-15 05:07:09'), - (371,1,'2006-02-15 05:07:09'), - (372,15,'2006-02-15 05:07:09'), - (373,3,'2006-02-15 05:07:09'), - (374,14,'2006-02-15 05:07:09'), - (375,1,'2006-02-15 05:07:09'), - (376,9,'2006-02-15 05:07:09'), - (377,8,'2006-02-15 05:07:09'), - (378,12,'2006-02-15 05:07:09'), - (379,7,'2006-02-15 05:07:09'), - (380,9,'2006-02-15 05:07:09'), - (381,10,'2006-02-15 05:07:09'), - (382,10,'2006-02-15 05:07:09'), - (383,15,'2006-02-15 05:07:09'), - (384,12,'2006-02-15 05:07:09'), - (385,5,'2006-02-15 05:07:09'), - (386,16,'2006-02-15 05:07:09'), - (387,10,'2006-02-15 05:07:09'), - (388,5,'2006-02-15 05:07:09'), - (389,15,'2006-02-15 05:07:09'), - (390,14,'2006-02-15 05:07:09'), - (391,8,'2006-02-15 05:07:09'), - (392,3,'2006-02-15 05:07:09'), - (393,6,'2006-02-15 05:07:09'), - (394,14,'2006-02-15 05:07:09'), - (395,1,'2006-02-15 05:07:09'), - (396,7,'2006-02-15 05:07:09'), - (397,14,'2006-02-15 05:07:09'), - (398,12,'2006-02-15 05:07:09'), - (399,9,'2006-02-15 05:07:09'), - (400,6,'2006-02-15 05:07:09'), - (401,7,'2006-02-15 05:07:09'), - (402,2,'2006-02-15 05:07:09'), - (403,7,'2006-02-15 05:07:09'), - (404,5,'2006-02-15 05:07:09'), - (405,16,'2006-02-15 05:07:09'), - (406,10,'2006-02-15 05:07:09'), - (407,6,'2006-02-15 05:07:09'), - (408,10,'2006-02-15 05:07:09'), - (409,3,'2006-02-15 05:07:09'), - (410,5,'2006-02-15 05:07:09'), - (411,12,'2006-02-15 05:07:09'), - (412,6,'2006-02-15 05:07:09'), - (413,5,'2006-02-15 05:07:09'), - (414,9,'2006-02-15 05:07:09'), - (415,11,'2006-02-15 05:07:09'), - (416,9,'2006-02-15 05:07:09'), - (417,1,'2006-02-15 05:07:09'), - (418,7,'2006-02-15 05:07:09'), - (419,8,'2006-02-15 05:07:09'), - (420,15,'2006-02-15 05:07:09'), - (421,9,'2006-02-15 05:07:09'), - (422,14,'2006-02-15 05:07:09'), - (423,3,'2006-02-15 05:07:09'), - (424,3,'2006-02-15 05:07:09'), - (425,4,'2006-02-15 05:07:09'), - (426,12,'2006-02-15 05:07:09'), - (427,6,'2006-02-15 05:07:09'), - (428,8,'2006-02-15 05:07:09'), - (429,15,'2006-02-15 05:07:09'), - (430,2,'2006-02-15 05:07:09'), - (431,9,'2006-02-15 05:07:09'), - (432,4,'2006-02-15 05:07:09'), - (433,2,'2006-02-15 05:07:09'), - (434,16,'2006-02-15 05:07:09'), - (435,9,'2006-02-15 05:07:09'), - (436,13,'2006-02-15 05:07:09'), - (437,8,'2006-02-15 05:07:09'), - (438,10,'2006-02-15 05:07:09'), - (439,7,'2006-02-15 05:07:09'), - (440,9,'2006-02-15 05:07:09'), - (441,6,'2006-02-15 05:07:09'), - (442,8,'2006-02-15 05:07:09'), - (443,5,'2006-02-15 05:07:09'), - (444,5,'2006-02-15 05:07:09'), - (445,4,'2006-02-15 05:07:09'), - (446,15,'2006-02-15 05:07:09'), - (447,10,'2006-02-15 05:07:09'), - (448,13,'2006-02-15 05:07:09'), - (449,14,'2006-02-15 05:07:09'), - (450,3,'2006-02-15 05:07:09'), - (451,16,'2006-02-15 05:07:09'), - (452,9,'2006-02-15 05:07:09'), - (453,15,'2006-02-15 05:07:09'), - (454,12,'2006-02-15 05:07:09'), - (455,9,'2006-02-15 05:07:09'), - (456,2,'2006-02-15 05:07:09'), - (457,6,'2006-02-15 05:07:09'), - (458,8,'2006-02-15 05:07:09'), - (459,9,'2006-02-15 05:07:09'), - (460,9,'2006-02-15 05:07:09'), - (461,2,'2006-02-15 05:07:09'), - (462,12,'2006-02-15 05:07:09'), - (463,15,'2006-02-15 05:07:09'), - (464,2,'2006-02-15 05:07:09'), - (465,13,'2006-02-15 05:07:09'), - (466,6,'2006-02-15 05:07:09'), - (467,9,'2006-02-15 05:07:09'), - (468,3,'2006-02-15 05:07:09'), - (469,4,'2006-02-15 05:07:09'), - (470,2,'2006-02-15 05:07:09'), - (471,4,'2006-02-15 05:07:09'), - (472,16,'2006-02-15 05:07:09'), - (473,7,'2006-02-15 05:07:09'), - (474,15,'2006-02-15 05:07:09'), - (475,11,'2006-02-15 05:07:09'), - (476,8,'2006-02-15 05:07:09'), - (477,12,'2006-02-15 05:07:09'), - (478,5,'2006-02-15 05:07:09'), - (479,8,'2006-02-15 05:07:09'), - (480,4,'2006-02-15 05:07:09'), - (481,13,'2006-02-15 05:07:09'), - (482,4,'2006-02-15 05:07:09'), - (483,10,'2006-02-15 05:07:09'), - (484,4,'2006-02-15 05:07:09'), - (485,3,'2006-02-15 05:07:09'), - (486,9,'2006-02-15 05:07:09'), - (487,4,'2006-02-15 05:07:09'), - (488,15,'2006-02-15 05:07:09'), - (489,2,'2006-02-15 05:07:09'), - (490,13,'2006-02-15 05:07:09'), - (491,3,'2006-02-15 05:07:09'), - (492,13,'2006-02-15 05:07:09'), - (493,9,'2006-02-15 05:07:09'), - (494,11,'2006-02-15 05:07:09'), - (495,11,'2006-02-15 05:07:09'), - (496,16,'2006-02-15 05:07:09'), - (497,6,'2006-02-15 05:07:09'), - (498,8,'2006-02-15 05:07:09'), - (499,8,'2006-02-15 05:07:09'), - (500,9,'2006-02-15 05:07:09'), - (501,1,'2006-02-15 05:07:09'), - (502,5,'2006-02-15 05:07:09'), - (503,15,'2006-02-15 05:07:09'), - (504,7,'2006-02-15 05:07:09'), - (505,3,'2006-02-15 05:07:09'), - (506,11,'2006-02-15 05:07:09'), - (507,10,'2006-02-15 05:07:09'), - (508,10,'2006-02-15 05:07:09'), - (509,3,'2006-02-15 05:07:09'), - (510,2,'2006-02-15 05:07:09'), - (511,1,'2006-02-15 05:07:09'), - (512,4,'2006-02-15 05:07:09'), - (513,16,'2006-02-15 05:07:09'), - (514,7,'2006-02-15 05:07:09'), - (515,3,'2006-02-15 05:07:09'), - (516,12,'2006-02-15 05:07:09'), - (517,15,'2006-02-15 05:07:09'), - (518,16,'2006-02-15 05:07:09'), - (519,15,'2006-02-15 05:07:09'), - (520,14,'2006-02-15 05:07:09'), - (521,7,'2006-02-15 05:07:09'), - (522,5,'2006-02-15 05:07:09'), - (523,4,'2006-02-15 05:07:09'), - (524,5,'2006-02-15 05:07:09'), - (525,4,'2006-02-15 05:07:09'), - (526,16,'2006-02-15 05:07:09'), - (527,11,'2006-02-15 05:07:09'), - (528,8,'2006-02-15 05:07:09'), - (529,5,'2006-02-15 05:07:09'), - (530,1,'2006-02-15 05:07:09'), - (531,9,'2006-02-15 05:07:09'), - (532,15,'2006-02-15 05:07:09'), - (533,9,'2006-02-15 05:07:09'), - (534,8,'2006-02-15 05:07:09'), - (535,11,'2006-02-15 05:07:09'), - (536,4,'2006-02-15 05:07:09'), - (537,4,'2006-02-15 05:07:09'), - (538,13,'2006-02-15 05:07:09'), - (539,7,'2006-02-15 05:07:09'), - (540,12,'2006-02-15 05:07:09'), - (541,2,'2006-02-15 05:07:09'), - (542,1,'2006-02-15 05:07:09'), - (543,16,'2006-02-15 05:07:09'), - (544,6,'2006-02-15 05:07:09'), - (545,9,'2006-02-15 05:07:09'), - (546,10,'2006-02-15 05:07:09'), - (547,3,'2006-02-15 05:07:09'), - (548,4,'2006-02-15 05:07:09'), - (549,1,'2006-02-15 05:07:09'), - (550,8,'2006-02-15 05:07:09'), - (551,13,'2006-02-15 05:07:09'), - (552,6,'2006-02-15 05:07:09'), - (553,3,'2006-02-15 05:07:09'), - (554,4,'2006-02-15 05:07:09'), - (555,5,'2006-02-15 05:07:09'), - (556,10,'2006-02-15 05:07:09'), - (557,8,'2006-02-15 05:07:09'), - (558,13,'2006-02-15 05:07:09'), - (559,14,'2006-02-15 05:07:09'), - (560,10,'2006-02-15 05:07:09'), - (561,13,'2006-02-15 05:07:09'), - (562,12,'2006-02-15 05:07:09'), - (563,10,'2006-02-15 05:07:09'), - (564,2,'2006-02-15 05:07:09'), - (565,9,'2006-02-15 05:07:09'), - (566,9,'2006-02-15 05:07:09'), - (567,9,'2006-02-15 05:07:09'), - (568,5,'2006-02-15 05:07:09'), - (569,2,'2006-02-15 05:07:09'), - (570,15,'2006-02-15 05:07:09'), - (571,6,'2006-02-15 05:07:09'), - (572,14,'2006-02-15 05:07:09'), - (573,3,'2006-02-15 05:07:09'), - (574,1,'2006-02-15 05:07:09'), - (575,6,'2006-02-15 05:07:09'), - (576,6,'2006-02-15 05:07:09'), - (577,15,'2006-02-15 05:07:09'), - (578,4,'2006-02-15 05:07:09'), - (579,1,'2006-02-15 05:07:09'), - (580,13,'2006-02-15 05:07:09'), - (581,12,'2006-02-15 05:07:09'), - (582,2,'2006-02-15 05:07:09'), - (583,2,'2006-02-15 05:07:09'), - (584,9,'2006-02-15 05:07:09'), - (585,7,'2006-02-15 05:07:09'), - (586,1,'2006-02-15 05:07:09'), - (587,6,'2006-02-15 05:07:09'), - (588,3,'2006-02-15 05:07:09'), - (589,6,'2006-02-15 05:07:09'), - (590,13,'2006-02-15 05:07:09'), - (591,10,'2006-02-15 05:07:09'), - (592,12,'2006-02-15 05:07:09'), - (593,11,'2006-02-15 05:07:09'), - (594,1,'2006-02-15 05:07:09'), - (595,9,'2006-02-15 05:07:09'), - (596,10,'2006-02-15 05:07:09'), - (597,10,'2006-02-15 05:07:09'), - (598,15,'2006-02-15 05:07:09'), - (599,15,'2006-02-15 05:07:09'), - (600,11,'2006-02-15 05:07:09'), - (601,16,'2006-02-15 05:07:09'), - (602,14,'2006-02-15 05:07:09'), - (603,8,'2006-02-15 05:07:09'), - (604,5,'2006-02-15 05:07:09'), - (605,9,'2006-02-15 05:07:09'), - (606,15,'2006-02-15 05:07:09'), - (607,9,'2006-02-15 05:07:09'), - (608,3,'2006-02-15 05:07:09'), - (609,16,'2006-02-15 05:07:09'), - (610,8,'2006-02-15 05:07:09'), - (611,4,'2006-02-15 05:07:09'), - (612,15,'2006-02-15 05:07:09'), - (613,5,'2006-02-15 05:07:09'), - (614,10,'2006-02-15 05:07:09'), - (615,2,'2006-02-15 05:07:09'), - (616,6,'2006-02-15 05:07:09'), - (617,8,'2006-02-15 05:07:09'), - (618,7,'2006-02-15 05:07:09'), - (619,15,'2006-02-15 05:07:09'), - (620,14,'2006-02-15 05:07:09'), - (621,8,'2006-02-15 05:07:09'), - (622,6,'2006-02-15 05:07:09'), - (623,9,'2006-02-15 05:07:09'), - (624,10,'2006-02-15 05:07:09'), - (625,14,'2006-02-15 05:07:09'), - (626,3,'2006-02-15 05:07:09'), - (627,6,'2006-02-15 05:07:09'), - (628,15,'2006-02-15 05:07:09'), - (629,6,'2006-02-15 05:07:09'), - (630,7,'2006-02-15 05:07:09'), - (631,15,'2006-02-15 05:07:09'), - (632,13,'2006-02-15 05:07:09'), - (633,4,'2006-02-15 05:07:09'), - (634,8,'2006-02-15 05:07:09'), - (635,13,'2006-02-15 05:07:09'), - (636,12,'2006-02-15 05:07:09'), - (637,14,'2006-02-15 05:07:09'), - (638,5,'2006-02-15 05:07:09'), - (639,8,'2006-02-15 05:07:09'), - (640,9,'2006-02-15 05:07:09'), - (641,9,'2006-02-15 05:07:09'), - (642,16,'2006-02-15 05:07:09'), - (643,7,'2006-02-15 05:07:09'), - (644,2,'2006-02-15 05:07:09'), - (645,16,'2006-02-15 05:07:09'), - (646,10,'2006-02-15 05:07:09'), - (647,12,'2006-02-15 05:07:09'), - (648,16,'2006-02-15 05:07:09'), - (649,2,'2006-02-15 05:07:09'), - (650,6,'2006-02-15 05:07:09'), - (651,2,'2006-02-15 05:07:09'), - (652,4,'2006-02-15 05:07:09'), - (653,11,'2006-02-15 05:07:09'), - (654,10,'2006-02-15 05:07:09'), - (655,14,'2006-02-15 05:07:09'), - (656,16,'2006-02-15 05:07:09'), - (657,5,'2006-02-15 05:07:09'), - (658,11,'2006-02-15 05:07:09'), - (659,1,'2006-02-15 05:07:09'), - (660,5,'2006-02-15 05:07:09'), - (661,9,'2006-02-15 05:07:09'), - (662,7,'2006-02-15 05:07:09'), - (663,4,'2006-02-15 05:07:09'), - (664,1,'2006-02-15 05:07:09'), - (665,11,'2006-02-15 05:07:09'), - (666,7,'2006-02-15 05:07:09'), - (667,15,'2006-02-15 05:07:09'), - (668,15,'2006-02-15 05:07:09'), - (669,9,'2006-02-15 05:07:09'), - (670,6,'2006-02-15 05:07:09'), - (671,15,'2006-02-15 05:07:09'), - (672,5,'2006-02-15 05:07:09'), - (673,12,'2006-02-15 05:07:09'), - (674,9,'2006-02-15 05:07:09'), - (675,13,'2006-02-15 05:07:09'), - (676,15,'2006-02-15 05:07:09'), - (677,13,'2006-02-15 05:07:09'), - (678,15,'2006-02-15 05:07:09'), - (679,8,'2006-02-15 05:07:09'), - (680,5,'2006-02-15 05:07:09'), - (681,15,'2006-02-15 05:07:09'), - (682,8,'2006-02-15 05:07:09'), - (683,7,'2006-02-15 05:07:09'), - (684,10,'2006-02-15 05:07:09'), - (685,13,'2006-02-15 05:07:09'), - (686,13,'2006-02-15 05:07:09'), - (687,6,'2006-02-15 05:07:09'), - (688,3,'2006-02-15 05:07:09'), - (689,9,'2006-02-15 05:07:09'), - (690,2,'2006-02-15 05:07:09'), - (691,15,'2006-02-15 05:07:09'), - (692,2,'2006-02-15 05:07:09'), - (693,2,'2006-02-15 05:07:09'), - (694,4,'2006-02-15 05:07:09'), - (695,8,'2006-02-15 05:07:09'), - (696,2,'2006-02-15 05:07:09'), - (697,1,'2006-02-15 05:07:09'), - (698,6,'2006-02-15 05:07:09'), - (699,10,'2006-02-15 05:07:09'), - (700,8,'2006-02-15 05:07:09'), - (701,10,'2006-02-15 05:07:09'), - (702,11,'2006-02-15 05:07:09'), - (703,2,'2006-02-15 05:07:09'), - (704,5,'2006-02-15 05:07:09'), - (705,9,'2006-02-15 05:07:09'), - (706,7,'2006-02-15 05:07:09'), - (707,1,'2006-02-15 05:07:09'), - (708,6,'2006-02-15 05:07:09'), - (709,7,'2006-02-15 05:07:09'), - (710,8,'2006-02-15 05:07:09'), - (711,14,'2006-02-15 05:07:09'), - (712,6,'2006-02-15 05:07:09'), - (713,6,'2006-02-15 05:07:09'), - (714,14,'2006-02-15 05:07:09'), - (715,8,'2006-02-15 05:07:09'), - (716,11,'2006-02-15 05:07:09'), - (717,1,'2006-02-15 05:07:09'), - (718,12,'2006-02-15 05:07:09'), - (719,15,'2006-02-15 05:07:09'), - (720,13,'2006-02-15 05:07:09'), - (721,12,'2006-02-15 05:07:09'), - (722,11,'2006-02-15 05:07:09'), - (723,14,'2006-02-15 05:07:09'), - (724,8,'2006-02-15 05:07:09'), - (725,4,'2006-02-15 05:07:09'), - (726,9,'2006-02-15 05:07:09'), - (727,8,'2006-02-15 05:07:09'), - (728,7,'2006-02-15 05:07:09'), - (729,15,'2006-02-15 05:07:09'), - (730,13,'2006-02-15 05:07:09'), - (731,4,'2006-02-15 05:07:09'), - (732,1,'2006-02-15 05:07:09'), - (733,15,'2006-02-15 05:07:09'), - (734,6,'2006-02-15 05:07:09'), - (735,3,'2006-02-15 05:07:09'), - (736,8,'2006-02-15 05:07:09'), - (737,11,'2006-02-15 05:07:09'), - (738,9,'2006-02-15 05:07:09'), - (739,7,'2006-02-15 05:07:09'), - (740,11,'2006-02-15 05:07:09'), - (741,12,'2006-02-15 05:07:09'), - (742,10,'2006-02-15 05:07:09'), - (743,2,'2006-02-15 05:07:09'), - (744,4,'2006-02-15 05:07:09'), - (745,15,'2006-02-15 05:07:09'), - (746,10,'2006-02-15 05:07:09'), - (747,10,'2006-02-15 05:07:09'), - (748,1,'2006-02-15 05:07:09'), - (749,11,'2006-02-15 05:07:09'), - (750,13,'2006-02-15 05:07:09'), - (751,13,'2006-02-15 05:07:09'), - (752,12,'2006-02-15 05:07:09'), - (753,8,'2006-02-15 05:07:09'), - (754,5,'2006-02-15 05:07:09'), - (755,3,'2006-02-15 05:07:09'), - (756,5,'2006-02-15 05:07:09'), - (757,6,'2006-02-15 05:07:09'), - (758,7,'2006-02-15 05:07:09'), - (759,13,'2006-02-15 05:07:09'), - (760,13,'2006-02-15 05:07:09'), - (761,3,'2006-02-15 05:07:09'), - (762,10,'2006-02-15 05:07:09'), - (763,15,'2006-02-15 05:07:09'), - (764,15,'2006-02-15 05:07:09'), - (765,5,'2006-02-15 05:07:09'), - (766,7,'2006-02-15 05:07:09'), - (767,12,'2006-02-15 05:07:09'), - (768,3,'2006-02-15 05:07:09'), - (769,9,'2006-02-15 05:07:09'), - (770,9,'2006-02-15 05:07:09'), - (771,7,'2006-02-15 05:07:09'), - (772,7,'2006-02-15 05:07:09'), - (773,15,'2006-02-15 05:07:09'), - (774,5,'2006-02-15 05:07:09'), - (775,7,'2006-02-15 05:07:09'), - (776,6,'2006-02-15 05:07:09'), - (777,15,'2006-02-15 05:07:09'), - (778,8,'2006-02-15 05:07:09'), - (779,15,'2006-02-15 05:07:09'), - (780,8,'2006-02-15 05:07:09'), - (781,10,'2006-02-15 05:07:09'), - (782,15,'2006-02-15 05:07:09'), - (783,16,'2006-02-15 05:07:09'), - (784,16,'2006-02-15 05:07:09'), - (785,16,'2006-02-15 05:07:09'), - (786,3,'2006-02-15 05:07:09'), - (787,16,'2006-02-15 05:07:09'), - (788,6,'2006-02-15 05:07:09'), - (789,9,'2006-02-15 05:07:09'), - (790,7,'2006-02-15 05:07:09'), - (791,6,'2006-02-15 05:07:09'), - (792,9,'2006-02-15 05:07:09'), - (793,1,'2006-02-15 05:07:09'), - (794,1,'2006-02-15 05:07:09'), - (795,8,'2006-02-15 05:07:09'), - (796,15,'2006-02-15 05:07:09'), - (797,12,'2006-02-15 05:07:09'), - (798,14,'2006-02-15 05:07:09'), - (799,11,'2006-02-15 05:07:09'), - (800,11,'2006-02-15 05:07:09'), - (801,3,'2006-02-15 05:07:09'), - (802,1,'2006-02-15 05:07:09'), - (803,7,'2006-02-15 05:07:09'), - (804,11,'2006-02-15 05:07:09'), - (805,2,'2006-02-15 05:07:09'), - (806,13,'2006-02-15 05:07:09'), - (807,10,'2006-02-15 05:07:09'), - (808,4,'2006-02-15 05:07:09'), - (809,15,'2006-02-15 05:07:09'), - (810,8,'2006-02-15 05:07:09'), - (811,16,'2006-02-15 05:07:09'), - (812,6,'2006-02-15 05:07:09'), - (813,15,'2006-02-15 05:07:09'), - (814,5,'2006-02-15 05:07:09'), - (815,4,'2006-02-15 05:07:09'), - (816,2,'2006-02-15 05:07:09'), - (817,14,'2006-02-15 05:07:09'), - (818,7,'2006-02-15 05:07:09'), - (819,12,'2006-02-15 05:07:09'), - (820,2,'2006-02-15 05:07:09'), - (821,9,'2006-02-15 05:07:09'), - (822,8,'2006-02-15 05:07:09'), - (823,1,'2006-02-15 05:07:09'), - (824,8,'2006-02-15 05:07:09'), - (825,1,'2006-02-15 05:07:09'), - (826,16,'2006-02-15 05:07:09'), - (827,7,'2006-02-15 05:07:09'), - (828,4,'2006-02-15 05:07:09'), - (829,8,'2006-02-15 05:07:09'), - (830,11,'2006-02-15 05:07:09'), - (831,14,'2006-02-15 05:07:09'), - (832,8,'2006-02-15 05:07:09'), - (833,3,'2006-02-15 05:07:09'), - (834,6,'2006-02-15 05:07:09'), - (835,10,'2006-02-15 05:07:09'), - (836,15,'2006-02-15 05:07:09'), - (837,5,'2006-02-15 05:07:09'), - (838,1,'2006-02-15 05:07:09'), - (839,14,'2006-02-15 05:07:09'), - (840,10,'2006-02-15 05:07:09'), - (841,15,'2006-02-15 05:07:09'), - (842,10,'2006-02-15 05:07:09'), - (843,4,'2006-02-15 05:07:09'), - (844,15,'2006-02-15 05:07:09'), - (845,9,'2006-02-15 05:07:09'), - (846,13,'2006-02-15 05:07:09'), - (847,13,'2006-02-15 05:07:09'), - (848,16,'2006-02-15 05:07:09'), - (849,2,'2006-02-15 05:07:09'), - (850,1,'2006-02-15 05:07:09'), - (851,15,'2006-02-15 05:07:09'), - (852,3,'2006-02-15 05:07:09'), - (853,3,'2006-02-15 05:07:09'), - (854,11,'2006-02-15 05:07:09'), - (855,6,'2006-02-15 05:07:09'), - (856,11,'2006-02-15 05:07:09'), - (857,5,'2006-02-15 05:07:09'), - (858,5,'2006-02-15 05:07:09'), - (859,2,'2006-02-15 05:07:09'), - (860,14,'2006-02-15 05:07:09'), - (861,10,'2006-02-15 05:07:09'), - (862,4,'2006-02-15 05:07:09'), - (863,14,'2006-02-15 05:07:09'), - (864,3,'2006-02-15 05:07:09'), - (865,2,'2006-02-15 05:07:09'), - (866,8,'2006-02-15 05:07:09'), - (867,8,'2006-02-15 05:07:09'), - (868,16,'2006-02-15 05:07:09'), - (869,1,'2006-02-15 05:07:09'), - (870,11,'2006-02-15 05:07:09'), - (871,5,'2006-02-15 05:07:09'), - (872,16,'2006-02-15 05:07:09'), - (873,3,'2006-02-15 05:07:09'), - (874,4,'2006-02-15 05:07:09'), - (875,15,'2006-02-15 05:07:09'), - (876,11,'2006-02-15 05:07:09'), - (877,12,'2006-02-15 05:07:09'), - (878,16,'2006-02-15 05:07:09'), - (879,12,'2006-02-15 05:07:09'), - (880,2,'2006-02-15 05:07:09'), - (881,11,'2006-02-15 05:07:09'), - (882,7,'2006-02-15 05:07:09'), - (883,3,'2006-02-15 05:07:09'), - (884,12,'2006-02-15 05:07:09'), - (885,11,'2006-02-15 05:07:09'), - (886,2,'2006-02-15 05:07:09'), - (887,2,'2006-02-15 05:07:09'), - (888,6,'2006-02-15 05:07:09'), - (889,3,'2006-02-15 05:07:09'), - (890,15,'2006-02-15 05:07:09'), - (891,4,'2006-02-15 05:07:09'), - (892,2,'2006-02-15 05:07:09'), - (893,14,'2006-02-15 05:07:09'), - (894,16,'2006-02-15 05:07:09'), - (895,4,'2006-02-15 05:07:09'), - (896,3,'2006-02-15 05:07:09'), - (897,7,'2006-02-15 05:07:09'), - (898,15,'2006-02-15 05:07:09'), - (899,4,'2006-02-15 05:07:09'), - (900,9,'2006-02-15 05:07:09'), - (901,2,'2006-02-15 05:07:09'), - (902,15,'2006-02-15 05:07:09'), - (903,16,'2006-02-15 05:07:09'), - (904,11,'2006-02-15 05:07:09'), - (905,5,'2006-02-15 05:07:09'), - (906,5,'2006-02-15 05:07:09'), - (907,7,'2006-02-15 05:07:09'), - (908,9,'2006-02-15 05:07:09'), - (909,11,'2006-02-15 05:07:09'), - (910,7,'2006-02-15 05:07:09'), - (911,1,'2006-02-15 05:07:09'), - (912,14,'2006-02-15 05:07:09'), - (913,13,'2006-02-15 05:07:09'), - (914,16,'2006-02-15 05:07:09'), - (915,1,'2006-02-15 05:07:09'), - (916,2,'2006-02-15 05:07:09'), - (917,15,'2006-02-15 05:07:09'), - (918,3,'2006-02-15 05:07:09'), - (919,10,'2006-02-15 05:07:09'), - (920,13,'2006-02-15 05:07:09'), - (921,12,'2006-02-15 05:07:09'), - (922,11,'2006-02-15 05:07:09'), - (923,7,'2006-02-15 05:07:09'), - (924,14,'2006-02-15 05:07:09'), - (925,6,'2006-02-15 05:07:09'), - (926,6,'2006-02-15 05:07:09'), - (927,1,'2006-02-15 05:07:09'), - (928,3,'2006-02-15 05:07:09'), - (929,9,'2006-02-15 05:07:09'), - (930,14,'2006-02-15 05:07:09'), - (931,16,'2006-02-15 05:07:09'), - (932,5,'2006-02-15 05:07:09'), - (933,13,'2006-02-15 05:07:09'), - (934,10,'2006-02-15 05:07:09'), - (935,13,'2006-02-15 05:07:09'), - (936,12,'2006-02-15 05:07:09'), - (937,13,'2006-02-15 05:07:09'), - (938,5,'2006-02-15 05:07:09'), - (939,5,'2006-02-15 05:07:09'), - (940,15,'2006-02-15 05:07:09'), - (941,10,'2006-02-15 05:07:09'), - (942,7,'2006-02-15 05:07:09'), - (943,6,'2006-02-15 05:07:09'), - (944,7,'2006-02-15 05:07:09'), - (945,6,'2006-02-15 05:07:09'), - (946,8,'2006-02-15 05:07:09'), - (947,9,'2006-02-15 05:07:09'), - (948,13,'2006-02-15 05:07:09'), - (949,10,'2006-02-15 05:07:09'), - (950,4,'2006-02-15 05:07:09'), - (951,4,'2006-02-15 05:07:09'), - (952,6,'2006-02-15 05:07:09'), - (953,2,'2006-02-15 05:07:09'), - (954,13,'2006-02-15 05:07:09'), - (955,3,'2006-02-15 05:07:09'), - (956,10,'2006-02-15 05:07:09'), - (957,9,'2006-02-15 05:07:09'), - (958,7,'2006-02-15 05:07:09'), - (959,3,'2006-02-15 05:07:09'), - (960,6,'2006-02-15 05:07:09'), - (961,9,'2006-02-15 05:07:09'), - (962,4,'2006-02-15 05:07:09'), - (963,2,'2006-02-15 05:07:09'), - (964,1,'2006-02-15 05:07:09'), - (965,11,'2006-02-15 05:07:09'), - (966,6,'2006-02-15 05:07:09'), - (967,14,'2006-02-15 05:07:09'), - (968,1,'2006-02-15 05:07:09'), - (969,7,'2006-02-15 05:07:09'), - (970,4,'2006-02-15 05:07:09'), - (971,9,'2006-02-15 05:07:09'), - (972,14,'2006-02-15 05:07:09'), - (973,6,'2006-02-15 05:07:09'), - (974,13,'2006-02-15 05:07:09'), - (975,8,'2006-02-15 05:07:09'), - (976,10,'2006-02-15 05:07:09'), - (977,16,'2006-02-15 05:07:09'), - (978,5,'2006-02-15 05:07:09'), - (979,7,'2006-02-15 05:07:09'), - (980,12,'2006-02-15 05:07:09'), - (981,16,'2006-02-15 05:07:09'), - (982,1,'2006-02-15 05:07:09'), - (983,12,'2006-02-15 05:07:09'), - (984,9,'2006-02-15 05:07:09'), - (985,14,'2006-02-15 05:07:09'), - (986,2,'2006-02-15 05:07:09'), - (987,12,'2006-02-15 05:07:09'), - (988,16,'2006-02-15 05:07:09'), - (989,16,'2006-02-15 05:07:09'), - (990,11,'2006-02-15 05:07:09'), - (991,1,'2006-02-15 05:07:09'), - (992,6,'2006-02-15 05:07:09'), - (993,3,'2006-02-15 05:07:09'), - (994,13,'2006-02-15 05:07:09'), - (995,11,'2006-02-15 05:07:09'), - (996,6,'2006-02-15 05:07:09'), - (997,12,'2006-02-15 05:07:09'), - (998,11,'2006-02-15 05:07:09'), - (999,3,'2006-02-15 05:07:09'), - (1000,5,'2006-02-15 05:07:09'); -COMMIT; - --- --- Dumping data for table inventory --- - -SET AUTOCOMMIT=0; -INSERT INTO inventory VALUES (1,1,1,'2006-02-15 05:09:17'), - (2,1,1,'2006-02-15 05:09:17'), - (3,1,1,'2006-02-15 05:09:17'), - (4,1,1,'2006-02-15 05:09:17'), - (5,1,2,'2006-02-15 05:09:17'), - (6,1,2,'2006-02-15 05:09:17'), - (7,1,2,'2006-02-15 05:09:17'), - (8,1,2,'2006-02-15 05:09:17'), - (9,2,2,'2006-02-15 05:09:17'), - (10,2,2,'2006-02-15 05:09:17'), - (11,2,2,'2006-02-15 05:09:17'), - (12,3,2,'2006-02-15 05:09:17'), - (13,3,2,'2006-02-15 05:09:17'), - (14,3,2,'2006-02-15 05:09:17'), - (15,3,2,'2006-02-15 05:09:17'), - (16,4,1,'2006-02-15 05:09:17'), - (17,4,1,'2006-02-15 05:09:17'), - (18,4,1,'2006-02-15 05:09:17'), - (19,4,1,'2006-02-15 05:09:17'), - (20,4,2,'2006-02-15 05:09:17'), - (21,4,2,'2006-02-15 05:09:17'), - (22,4,2,'2006-02-15 05:09:17'), - (23,5,2,'2006-02-15 05:09:17'), - (24,5,2,'2006-02-15 05:09:17'), - (25,5,2,'2006-02-15 05:09:17'), - (26,6,1,'2006-02-15 05:09:17'), - (27,6,1,'2006-02-15 05:09:17'), - (28,6,1,'2006-02-15 05:09:17'), - (29,6,2,'2006-02-15 05:09:17'), - (30,6,2,'2006-02-15 05:09:17'), - (31,6,2,'2006-02-15 05:09:17'), - (32,7,1,'2006-02-15 05:09:17'), - (33,7,1,'2006-02-15 05:09:17'), - (34,7,2,'2006-02-15 05:09:17'), - (35,7,2,'2006-02-15 05:09:17'), - (36,7,2,'2006-02-15 05:09:17'), - (37,8,2,'2006-02-15 05:09:17'), - (38,8,2,'2006-02-15 05:09:17'), - (39,8,2,'2006-02-15 05:09:17'), - (40,8,2,'2006-02-15 05:09:17'), - (41,9,1,'2006-02-15 05:09:17'), - (42,9,1,'2006-02-15 05:09:17'), - (43,9,1,'2006-02-15 05:09:17'), - (44,9,2,'2006-02-15 05:09:17'), - (45,9,2,'2006-02-15 05:09:17'), - (46,10,1,'2006-02-15 05:09:17'), - (47,10,1,'2006-02-15 05:09:17'), - (48,10,1,'2006-02-15 05:09:17'), - (49,10,1,'2006-02-15 05:09:17'), - (50,10,2,'2006-02-15 05:09:17'), - (51,10,2,'2006-02-15 05:09:17'), - (52,10,2,'2006-02-15 05:09:17'), - (53,11,1,'2006-02-15 05:09:17'), - (54,11,1,'2006-02-15 05:09:17'), - (55,11,1,'2006-02-15 05:09:17'), - (56,11,1,'2006-02-15 05:09:17'), - (57,11,2,'2006-02-15 05:09:17'), - (58,11,2,'2006-02-15 05:09:17'), - (59,11,2,'2006-02-15 05:09:17'), - (60,12,1,'2006-02-15 05:09:17'), - (61,12,1,'2006-02-15 05:09:17'), - (62,12,1,'2006-02-15 05:09:17'), - (63,12,2,'2006-02-15 05:09:17'), - (64,12,2,'2006-02-15 05:09:17'), - (65,12,2,'2006-02-15 05:09:17'), - (66,12,2,'2006-02-15 05:09:17'), - (67,13,2,'2006-02-15 05:09:17'), - (68,13,2,'2006-02-15 05:09:17'), - (69,13,2,'2006-02-15 05:09:17'), - (70,13,2,'2006-02-15 05:09:17'), - (71,15,1,'2006-02-15 05:09:17'), - (72,15,1,'2006-02-15 05:09:17'), - (73,15,2,'2006-02-15 05:09:17'), - (74,15,2,'2006-02-15 05:09:17'), - (75,15,2,'2006-02-15 05:09:17'), - (76,15,2,'2006-02-15 05:09:17'), - (77,16,1,'2006-02-15 05:09:17'), - (78,16,1,'2006-02-15 05:09:17'), - (79,16,2,'2006-02-15 05:09:17'), - (80,16,2,'2006-02-15 05:09:17'), - (81,17,1,'2006-02-15 05:09:17'), - (82,17,1,'2006-02-15 05:09:17'), - (83,17,1,'2006-02-15 05:09:17'), - (84,17,2,'2006-02-15 05:09:17'), - (85,17,2,'2006-02-15 05:09:17'), - (86,17,2,'2006-02-15 05:09:17'), - (87,18,1,'2006-02-15 05:09:17'), - (88,18,1,'2006-02-15 05:09:17'), - (89,18,1,'2006-02-15 05:09:17'), - (90,18,2,'2006-02-15 05:09:17'), - (91,18,2,'2006-02-15 05:09:17'), - (92,18,2,'2006-02-15 05:09:17'), - (93,19,1,'2006-02-15 05:09:17'), - (94,19,1,'2006-02-15 05:09:17'), - (95,19,1,'2006-02-15 05:09:17'), - (96,19,1,'2006-02-15 05:09:17'), - (97,19,2,'2006-02-15 05:09:17'), - (98,19,2,'2006-02-15 05:09:17'), - (99,20,1,'2006-02-15 05:09:17'), - (100,20,1,'2006-02-15 05:09:17'), - (101,20,1,'2006-02-15 05:09:17'), - (102,21,1,'2006-02-15 05:09:17'), - (103,21,1,'2006-02-15 05:09:17'), - (104,21,2,'2006-02-15 05:09:17'), - (105,21,2,'2006-02-15 05:09:17'), - (106,21,2,'2006-02-15 05:09:17'), - (107,21,2,'2006-02-15 05:09:17'), - (108,22,1,'2006-02-15 05:09:17'), - (109,22,1,'2006-02-15 05:09:17'), - (110,22,1,'2006-02-15 05:09:17'), - (111,22,1,'2006-02-15 05:09:17'), - (112,22,2,'2006-02-15 05:09:17'), - (113,22,2,'2006-02-15 05:09:17'), - (114,22,2,'2006-02-15 05:09:17'), - (115,23,1,'2006-02-15 05:09:17'), - (116,23,1,'2006-02-15 05:09:17'), - (117,23,1,'2006-02-15 05:09:17'), - (118,23,2,'2006-02-15 05:09:17'), - (119,23,2,'2006-02-15 05:09:17'), - (120,24,1,'2006-02-15 05:09:17'), - (121,24,1,'2006-02-15 05:09:17'), - (122,24,1,'2006-02-15 05:09:17'), - (123,24,1,'2006-02-15 05:09:17'), - (124,25,1,'2006-02-15 05:09:17'), - (125,25,1,'2006-02-15 05:09:17'), - (126,25,1,'2006-02-15 05:09:17'), - (127,25,1,'2006-02-15 05:09:17'), - (128,25,2,'2006-02-15 05:09:17'), - (129,25,2,'2006-02-15 05:09:17'), - (130,26,1,'2006-02-15 05:09:17'), - (131,26,1,'2006-02-15 05:09:17'), - (132,26,2,'2006-02-15 05:09:17'), - (133,26,2,'2006-02-15 05:09:17'), - (134,26,2,'2006-02-15 05:09:17'), - (135,27,1,'2006-02-15 05:09:17'), - (136,27,1,'2006-02-15 05:09:17'), - (137,27,1,'2006-02-15 05:09:17'), - (138,27,1,'2006-02-15 05:09:17'), - (139,28,1,'2006-02-15 05:09:17'), - (140,28,1,'2006-02-15 05:09:17'), - (141,28,1,'2006-02-15 05:09:17'), - (142,29,1,'2006-02-15 05:09:17'), - (143,29,1,'2006-02-15 05:09:17'), - (144,30,1,'2006-02-15 05:09:17'), - (145,30,1,'2006-02-15 05:09:17'), - (146,31,1,'2006-02-15 05:09:17'), - (147,31,1,'2006-02-15 05:09:17'), - (148,31,1,'2006-02-15 05:09:17'), - (149,31,1,'2006-02-15 05:09:17'), - (150,31,2,'2006-02-15 05:09:17'), - (151,31,2,'2006-02-15 05:09:17'), - (152,31,2,'2006-02-15 05:09:17'), - (153,31,2,'2006-02-15 05:09:17'), - (154,32,2,'2006-02-15 05:09:17'), - (155,32,2,'2006-02-15 05:09:17'), - (156,34,2,'2006-02-15 05:09:17'), - (157,34,2,'2006-02-15 05:09:17'), - (158,34,2,'2006-02-15 05:09:17'), - (159,34,2,'2006-02-15 05:09:17'), - (160,35,1,'2006-02-15 05:09:17'), - (161,35,1,'2006-02-15 05:09:17'), - (162,35,1,'2006-02-15 05:09:17'), - (163,35,1,'2006-02-15 05:09:17'), - (164,35,2,'2006-02-15 05:09:17'), - (165,35,2,'2006-02-15 05:09:17'), - (166,35,2,'2006-02-15 05:09:17'), - (167,37,1,'2006-02-15 05:09:17'), - (168,37,1,'2006-02-15 05:09:17'), - (169,37,1,'2006-02-15 05:09:17'), - (170,37,1,'2006-02-15 05:09:17'), - (171,37,2,'2006-02-15 05:09:17'), - (172,37,2,'2006-02-15 05:09:17'), - (173,37,2,'2006-02-15 05:09:17'), - (174,39,1,'2006-02-15 05:09:17'), - (175,39,1,'2006-02-15 05:09:17'), - (176,39,1,'2006-02-15 05:09:17'), - (177,39,2,'2006-02-15 05:09:17'), - (178,39,2,'2006-02-15 05:09:17'), - (179,39,2,'2006-02-15 05:09:17'), - (180,39,2,'2006-02-15 05:09:17'), - (181,40,2,'2006-02-15 05:09:17'), - (182,40,2,'2006-02-15 05:09:17'), - (183,40,2,'2006-02-15 05:09:17'), - (184,40,2,'2006-02-15 05:09:17'), - (185,42,2,'2006-02-15 05:09:17'), - (186,42,2,'2006-02-15 05:09:17'), - (187,42,2,'2006-02-15 05:09:17'), - (188,42,2,'2006-02-15 05:09:17'), - (189,43,1,'2006-02-15 05:09:17'), - (190,43,1,'2006-02-15 05:09:17'), - (191,43,1,'2006-02-15 05:09:17'), - (192,43,2,'2006-02-15 05:09:17'), - (193,43,2,'2006-02-15 05:09:17'), - (194,43,2,'2006-02-15 05:09:17'), - (195,43,2,'2006-02-15 05:09:17'), - (196,44,1,'2006-02-15 05:09:17'), - (197,44,1,'2006-02-15 05:09:17'), - (198,44,2,'2006-02-15 05:09:17'), - (199,44,2,'2006-02-15 05:09:17'), - (200,44,2,'2006-02-15 05:09:17'), - (201,45,1,'2006-02-15 05:09:17'), - (202,45,1,'2006-02-15 05:09:17'), - (203,45,1,'2006-02-15 05:09:17'), - (204,45,1,'2006-02-15 05:09:17'), - (205,45,2,'2006-02-15 05:09:17'), - (206,45,2,'2006-02-15 05:09:17'), - (207,46,2,'2006-02-15 05:09:17'), - (208,46,2,'2006-02-15 05:09:17'), - (209,46,2,'2006-02-15 05:09:17'), - (210,47,2,'2006-02-15 05:09:17'), - (211,47,2,'2006-02-15 05:09:17'), - (212,48,1,'2006-02-15 05:09:17'), - (213,48,1,'2006-02-15 05:09:17'), - (214,48,2,'2006-02-15 05:09:17'), - (215,48,2,'2006-02-15 05:09:17'), - (216,49,1,'2006-02-15 05:09:17'), - (217,49,1,'2006-02-15 05:09:17'), - (218,49,1,'2006-02-15 05:09:17'), - (219,49,2,'2006-02-15 05:09:17'), - (220,49,2,'2006-02-15 05:09:17'), - (221,49,2,'2006-02-15 05:09:17'), - (222,50,1,'2006-02-15 05:09:17'), - (223,50,1,'2006-02-15 05:09:17'), - (224,50,1,'2006-02-15 05:09:17'), - (225,50,2,'2006-02-15 05:09:17'), - (226,50,2,'2006-02-15 05:09:17'), - (227,51,1,'2006-02-15 05:09:17'), - (228,51,1,'2006-02-15 05:09:17'), - (229,51,2,'2006-02-15 05:09:17'), - (230,51,2,'2006-02-15 05:09:17'), - (231,51,2,'2006-02-15 05:09:17'), - (232,51,2,'2006-02-15 05:09:17'), - (233,52,2,'2006-02-15 05:09:17'), - (234,52,2,'2006-02-15 05:09:17'), - (235,53,1,'2006-02-15 05:09:17'), - (236,53,1,'2006-02-15 05:09:17'), - (237,54,1,'2006-02-15 05:09:17'), - (238,54,1,'2006-02-15 05:09:17'), - (239,54,1,'2006-02-15 05:09:17'), - (240,54,2,'2006-02-15 05:09:17'), - (241,54,2,'2006-02-15 05:09:17'), - (242,55,1,'2006-02-15 05:09:17'), - (243,55,1,'2006-02-15 05:09:17'), - (244,55,1,'2006-02-15 05:09:17'), - (245,55,1,'2006-02-15 05:09:17'), - (246,55,2,'2006-02-15 05:09:17'), - (247,55,2,'2006-02-15 05:09:17'), - (248,56,1,'2006-02-15 05:09:17'), - (249,56,1,'2006-02-15 05:09:17'), - (250,56,1,'2006-02-15 05:09:17'), - (251,56,2,'2006-02-15 05:09:17'), - (252,56,2,'2006-02-15 05:09:17'), - (253,57,1,'2006-02-15 05:09:17'), - (254,57,1,'2006-02-15 05:09:17'), - (255,57,1,'2006-02-15 05:09:17'), - (256,57,1,'2006-02-15 05:09:17'), - (257,57,2,'2006-02-15 05:09:17'), - (258,57,2,'2006-02-15 05:09:17'), - (259,57,2,'2006-02-15 05:09:17'), - (260,58,2,'2006-02-15 05:09:17'), - (261,58,2,'2006-02-15 05:09:17'), - (262,58,2,'2006-02-15 05:09:17'), - (263,58,2,'2006-02-15 05:09:17'), - (264,59,1,'2006-02-15 05:09:17'), - (265,59,1,'2006-02-15 05:09:17'), - (266,59,1,'2006-02-15 05:09:17'), - (267,59,2,'2006-02-15 05:09:17'), - (268,59,2,'2006-02-15 05:09:17'), - (269,60,1,'2006-02-15 05:09:17'), - (270,60,1,'2006-02-15 05:09:17'), - (271,60,1,'2006-02-15 05:09:17'), - (272,61,1,'2006-02-15 05:09:17'), - (273,61,1,'2006-02-15 05:09:17'), - (274,61,1,'2006-02-15 05:09:17'), - (275,61,1,'2006-02-15 05:09:17'), - (276,61,2,'2006-02-15 05:09:17'), - (277,61,2,'2006-02-15 05:09:17'), - (278,62,2,'2006-02-15 05:09:17'), - (279,62,2,'2006-02-15 05:09:17'), - (280,63,1,'2006-02-15 05:09:17'), - (281,63,1,'2006-02-15 05:09:17'), - (282,63,2,'2006-02-15 05:09:17'), - (283,63,2,'2006-02-15 05:09:17'), - (284,64,2,'2006-02-15 05:09:17'), - (285,64,2,'2006-02-15 05:09:17'), - (286,64,2,'2006-02-15 05:09:17'), - (287,65,2,'2006-02-15 05:09:17'), - (288,65,2,'2006-02-15 05:09:17'), - (289,65,2,'2006-02-15 05:09:17'), - (290,65,2,'2006-02-15 05:09:17'), - (291,66,1,'2006-02-15 05:09:17'), - (292,66,1,'2006-02-15 05:09:17'), - (293,66,1,'2006-02-15 05:09:17'), - (294,67,1,'2006-02-15 05:09:17'), - (295,67,1,'2006-02-15 05:09:17'), - (296,67,2,'2006-02-15 05:09:17'), - (297,67,2,'2006-02-15 05:09:17'), - (298,67,2,'2006-02-15 05:09:17'), - (299,67,2,'2006-02-15 05:09:17'), - (300,68,1,'2006-02-15 05:09:17'), - (301,68,1,'2006-02-15 05:09:17'), - (302,68,2,'2006-02-15 05:09:17'), - (303,68,2,'2006-02-15 05:09:17'), - (304,69,1,'2006-02-15 05:09:17'), - (305,69,1,'2006-02-15 05:09:17'), - (306,69,1,'2006-02-15 05:09:17'), - (307,69,1,'2006-02-15 05:09:17'), - (308,69,2,'2006-02-15 05:09:17'), - (309,69,2,'2006-02-15 05:09:17'), - (310,69,2,'2006-02-15 05:09:17'), - (311,69,2,'2006-02-15 05:09:17'), - (312,70,1,'2006-02-15 05:09:17'), - (313,70,1,'2006-02-15 05:09:17'), - (314,70,2,'2006-02-15 05:09:17'), - (315,70,2,'2006-02-15 05:09:17'), - (316,71,2,'2006-02-15 05:09:17'), - (317,71,2,'2006-02-15 05:09:17'), - (318,71,2,'2006-02-15 05:09:17'), - (319,71,2,'2006-02-15 05:09:17'), - (320,72,1,'2006-02-15 05:09:17'), - (321,72,1,'2006-02-15 05:09:17'), - (322,72,1,'2006-02-15 05:09:17'), - (323,72,1,'2006-02-15 05:09:17'), - (324,72,2,'2006-02-15 05:09:17'), - (325,72,2,'2006-02-15 05:09:17'), - (326,73,1,'2006-02-15 05:09:17'), - (327,73,1,'2006-02-15 05:09:17'), - (328,73,1,'2006-02-15 05:09:17'), - (329,73,1,'2006-02-15 05:09:17'), - (330,73,2,'2006-02-15 05:09:17'), - (331,73,2,'2006-02-15 05:09:17'), - (332,73,2,'2006-02-15 05:09:17'), - (333,73,2,'2006-02-15 05:09:17'), - (334,74,1,'2006-02-15 05:09:17'), - (335,74,1,'2006-02-15 05:09:17'), - (336,74,1,'2006-02-15 05:09:17'), - (337,74,2,'2006-02-15 05:09:17'), - (338,74,2,'2006-02-15 05:09:17'), - (339,75,2,'2006-02-15 05:09:17'), - (340,75,2,'2006-02-15 05:09:17'), - (341,75,2,'2006-02-15 05:09:17'), - (342,76,1,'2006-02-15 05:09:17'), - (343,76,1,'2006-02-15 05:09:17'), - (344,76,1,'2006-02-15 05:09:17'), - (345,77,1,'2006-02-15 05:09:17'), - (346,77,1,'2006-02-15 05:09:17'), - (347,77,1,'2006-02-15 05:09:17'), - (348,77,1,'2006-02-15 05:09:17'), - (349,77,2,'2006-02-15 05:09:17'), - (350,77,2,'2006-02-15 05:09:17'), - (351,78,1,'2006-02-15 05:09:17'), - (352,78,1,'2006-02-15 05:09:17'), - (353,78,1,'2006-02-15 05:09:17'), - (354,78,2,'2006-02-15 05:09:17'), - (355,78,2,'2006-02-15 05:09:17'), - (356,78,2,'2006-02-15 05:09:17'), - (357,78,2,'2006-02-15 05:09:17'), - (358,79,1,'2006-02-15 05:09:17'), - (359,79,1,'2006-02-15 05:09:17'), - (360,79,1,'2006-02-15 05:09:17'), - (361,79,2,'2006-02-15 05:09:17'), - (362,79,2,'2006-02-15 05:09:17'), - (363,79,2,'2006-02-15 05:09:17'), - (364,80,1,'2006-02-15 05:09:17'), - (365,80,1,'2006-02-15 05:09:17'), - (366,80,1,'2006-02-15 05:09:17'), - (367,80,1,'2006-02-15 05:09:17'), - (368,81,1,'2006-02-15 05:09:17'), - (369,81,1,'2006-02-15 05:09:17'), - (370,81,1,'2006-02-15 05:09:17'), - (371,81,1,'2006-02-15 05:09:17'), - (372,82,1,'2006-02-15 05:09:17'), - (373,82,1,'2006-02-15 05:09:17'), - (374,83,1,'2006-02-15 05:09:17'), - (375,83,1,'2006-02-15 05:09:17'), - (376,83,1,'2006-02-15 05:09:17'), - (377,83,2,'2006-02-15 05:09:17'), - (378,83,2,'2006-02-15 05:09:17'), - (379,84,1,'2006-02-15 05:09:17'), - (380,84,1,'2006-02-15 05:09:17'), - (381,84,1,'2006-02-15 05:09:17'), - (382,84,1,'2006-02-15 05:09:17'), - (383,85,2,'2006-02-15 05:09:17'), - (384,85,2,'2006-02-15 05:09:17'), - (385,85,2,'2006-02-15 05:09:17'), - (386,85,2,'2006-02-15 05:09:17'), - (387,86,1,'2006-02-15 05:09:17'), - (388,86,1,'2006-02-15 05:09:17'), - (389,86,1,'2006-02-15 05:09:17'), - (390,86,1,'2006-02-15 05:09:17'), - (391,86,2,'2006-02-15 05:09:17'), - (392,86,2,'2006-02-15 05:09:17'), - (393,86,2,'2006-02-15 05:09:17'), - (394,86,2,'2006-02-15 05:09:17'), - (395,88,2,'2006-02-15 05:09:17'), - (396,88,2,'2006-02-15 05:09:17'), - (397,88,2,'2006-02-15 05:09:17'), - (398,88,2,'2006-02-15 05:09:17'), - (399,89,1,'2006-02-15 05:09:17'), - (400,89,1,'2006-02-15 05:09:17'), - (401,89,1,'2006-02-15 05:09:17'), - (402,89,2,'2006-02-15 05:09:17'), - (403,89,2,'2006-02-15 05:09:17'), - (404,89,2,'2006-02-15 05:09:17'), - (405,90,1,'2006-02-15 05:09:17'), - (406,90,1,'2006-02-15 05:09:17'), - (407,90,1,'2006-02-15 05:09:17'), - (408,90,2,'2006-02-15 05:09:17'), - (409,90,2,'2006-02-15 05:09:17'), - (410,90,2,'2006-02-15 05:09:17'), - (411,91,1,'2006-02-15 05:09:17'), - (412,91,1,'2006-02-15 05:09:17'), - (413,91,1,'2006-02-15 05:09:17'), - (414,91,1,'2006-02-15 05:09:17'), - (415,91,2,'2006-02-15 05:09:17'), - (416,91,2,'2006-02-15 05:09:17'), - (417,91,2,'2006-02-15 05:09:17'), - (418,91,2,'2006-02-15 05:09:17'), - (419,92,1,'2006-02-15 05:09:17'), - (420,92,1,'2006-02-15 05:09:17'), - (421,92,2,'2006-02-15 05:09:17'), - (422,92,2,'2006-02-15 05:09:17'), - (423,93,2,'2006-02-15 05:09:17'), - (424,93,2,'2006-02-15 05:09:17'), - (425,93,2,'2006-02-15 05:09:17'), - (426,94,1,'2006-02-15 05:09:17'), - (427,94,1,'2006-02-15 05:09:17'), - (428,95,1,'2006-02-15 05:09:17'), - (429,95,1,'2006-02-15 05:09:17'), - (430,95,2,'2006-02-15 05:09:17'), - (431,95,2,'2006-02-15 05:09:17'), - (432,95,2,'2006-02-15 05:09:17'), - (433,96,1,'2006-02-15 05:09:17'), - (434,96,1,'2006-02-15 05:09:17'), - (435,96,1,'2006-02-15 05:09:17'), - (436,97,1,'2006-02-15 05:09:17'), - (437,97,1,'2006-02-15 05:09:17'), - (438,97,1,'2006-02-15 05:09:17'), - (439,97,1,'2006-02-15 05:09:17'), - (440,97,2,'2006-02-15 05:09:17'), - (441,97,2,'2006-02-15 05:09:17'), - (442,98,1,'2006-02-15 05:09:17'), - (443,98,1,'2006-02-15 05:09:17'), - (444,98,1,'2006-02-15 05:09:17'), - (445,99,1,'2006-02-15 05:09:17'), - (446,99,1,'2006-02-15 05:09:17'), - (447,99,1,'2006-02-15 05:09:17'), - (448,99,2,'2006-02-15 05:09:17'), - (449,99,2,'2006-02-15 05:09:17'), - (450,99,2,'2006-02-15 05:09:17'), - (451,100,1,'2006-02-15 05:09:17'), - (452,100,1,'2006-02-15 05:09:17'), - (453,100,1,'2006-02-15 05:09:17'), - (454,100,1,'2006-02-15 05:09:17'), - (455,100,2,'2006-02-15 05:09:17'), - (456,100,2,'2006-02-15 05:09:17'), - (457,101,1,'2006-02-15 05:09:17'), - (458,101,1,'2006-02-15 05:09:17'), - (459,101,1,'2006-02-15 05:09:17'), - (460,101,1,'2006-02-15 05:09:17'), - (461,101,2,'2006-02-15 05:09:17'), - (462,101,2,'2006-02-15 05:09:17'), - (463,102,2,'2006-02-15 05:09:17'), - (464,102,2,'2006-02-15 05:09:17'), - (465,103,1,'2006-02-15 05:09:17'), - (466,103,1,'2006-02-15 05:09:17'), - (467,103,1,'2006-02-15 05:09:17'), - (468,103,1,'2006-02-15 05:09:17'), - (469,103,2,'2006-02-15 05:09:17'), - (470,103,2,'2006-02-15 05:09:17'), - (471,103,2,'2006-02-15 05:09:17'), - (472,103,2,'2006-02-15 05:09:17'), - (473,104,2,'2006-02-15 05:09:17'), - (474,104,2,'2006-02-15 05:09:17'), - (475,104,2,'2006-02-15 05:09:17'), - (476,105,1,'2006-02-15 05:09:17'), - (477,105,1,'2006-02-15 05:09:17'), - (478,105,2,'2006-02-15 05:09:17'), - (479,105,2,'2006-02-15 05:09:17'), - (480,105,2,'2006-02-15 05:09:17'), - (481,106,1,'2006-02-15 05:09:17'), - (482,106,1,'2006-02-15 05:09:17'), - (483,107,2,'2006-02-15 05:09:17'), - (484,107,2,'2006-02-15 05:09:17'), - (485,109,1,'2006-02-15 05:09:17'), - (486,109,1,'2006-02-15 05:09:17'), - (487,109,1,'2006-02-15 05:09:17'), - (488,109,1,'2006-02-15 05:09:17'), - (489,109,2,'2006-02-15 05:09:17'), - (490,109,2,'2006-02-15 05:09:17'), - (491,109,2,'2006-02-15 05:09:17'), - (492,109,2,'2006-02-15 05:09:17'), - (493,110,1,'2006-02-15 05:09:17'), - (494,110,1,'2006-02-15 05:09:17'), - (495,110,1,'2006-02-15 05:09:17'), - (496,110,1,'2006-02-15 05:09:17'), - (497,111,2,'2006-02-15 05:09:17'), - (498,111,2,'2006-02-15 05:09:17'), - (499,111,2,'2006-02-15 05:09:17'), - (500,111,2,'2006-02-15 05:09:17'), - (501,112,1,'2006-02-15 05:09:17'), - (502,112,1,'2006-02-15 05:09:17'), - (503,112,1,'2006-02-15 05:09:17'), - (504,112,1,'2006-02-15 05:09:17'), - (505,112,2,'2006-02-15 05:09:17'), - (506,112,2,'2006-02-15 05:09:17'), - (507,112,2,'2006-02-15 05:09:17'), - (508,113,2,'2006-02-15 05:09:17'), - (509,113,2,'2006-02-15 05:09:17'), - (510,113,2,'2006-02-15 05:09:17'), - (511,113,2,'2006-02-15 05:09:17'), - (512,114,1,'2006-02-15 05:09:17'), - (513,114,1,'2006-02-15 05:09:17'), - (514,114,1,'2006-02-15 05:09:17'), - (515,114,1,'2006-02-15 05:09:17'), - (516,114,2,'2006-02-15 05:09:17'), - (517,114,2,'2006-02-15 05:09:17'), - (518,114,2,'2006-02-15 05:09:17'), - (519,115,1,'2006-02-15 05:09:17'), - (520,115,1,'2006-02-15 05:09:17'), - (521,115,1,'2006-02-15 05:09:17'), - (522,115,2,'2006-02-15 05:09:17'), - (523,115,2,'2006-02-15 05:09:17'), - (524,115,2,'2006-02-15 05:09:17'), - (525,115,2,'2006-02-15 05:09:17'), - (526,116,1,'2006-02-15 05:09:17'), - (527,116,1,'2006-02-15 05:09:17'), - (528,116,2,'2006-02-15 05:09:17'), - (529,116,2,'2006-02-15 05:09:17'), - (530,116,2,'2006-02-15 05:09:17'), - (531,116,2,'2006-02-15 05:09:17'), - (532,117,1,'2006-02-15 05:09:17'), - (533,117,1,'2006-02-15 05:09:17'), - (534,117,1,'2006-02-15 05:09:17'), - (535,117,1,'2006-02-15 05:09:17'), - (536,117,2,'2006-02-15 05:09:17'), - (537,117,2,'2006-02-15 05:09:17'), - (538,118,1,'2006-02-15 05:09:17'), - (539,118,1,'2006-02-15 05:09:17'), - (540,118,1,'2006-02-15 05:09:17'), - (541,118,1,'2006-02-15 05:09:17'), - (542,118,2,'2006-02-15 05:09:17'), - (543,118,2,'2006-02-15 05:09:17'), - (544,119,1,'2006-02-15 05:09:17'), - (545,119,1,'2006-02-15 05:09:17'), - (546,119,1,'2006-02-15 05:09:17'), - (547,119,2,'2006-02-15 05:09:17'), - (548,119,2,'2006-02-15 05:09:17'), - (549,119,2,'2006-02-15 05:09:17'), - (550,119,2,'2006-02-15 05:09:17'), - (551,120,1,'2006-02-15 05:09:17'), - (552,120,1,'2006-02-15 05:09:17'), - (553,120,1,'2006-02-15 05:09:17'), - (554,121,1,'2006-02-15 05:09:17'), - (555,121,1,'2006-02-15 05:09:17'), - (556,121,1,'2006-02-15 05:09:17'), - (557,121,2,'2006-02-15 05:09:17'), - (558,121,2,'2006-02-15 05:09:17'), - (559,121,2,'2006-02-15 05:09:17'), - (560,122,1,'2006-02-15 05:09:17'), - (561,122,1,'2006-02-15 05:09:17'), - (562,122,1,'2006-02-15 05:09:17'), - (563,122,1,'2006-02-15 05:09:17'), - (564,122,2,'2006-02-15 05:09:17'), - (565,122,2,'2006-02-15 05:09:17'), - (566,122,2,'2006-02-15 05:09:17'), - (567,123,1,'2006-02-15 05:09:17'), - (568,123,1,'2006-02-15 05:09:17'), - (569,123,2,'2006-02-15 05:09:17'), - (570,123,2,'2006-02-15 05:09:17'), - (571,123,2,'2006-02-15 05:09:17'), - (572,124,2,'2006-02-15 05:09:17'), - (573,124,2,'2006-02-15 05:09:17'), - (574,124,2,'2006-02-15 05:09:17'), - (575,125,2,'2006-02-15 05:09:17'), - (576,125,2,'2006-02-15 05:09:17'), - (577,126,2,'2006-02-15 05:09:17'), - (578,126,2,'2006-02-15 05:09:17'), - (579,126,2,'2006-02-15 05:09:17'), - (580,127,1,'2006-02-15 05:09:17'), - (581,127,1,'2006-02-15 05:09:17'), - (582,127,1,'2006-02-15 05:09:17'), - (583,127,1,'2006-02-15 05:09:17'), - (584,127,2,'2006-02-15 05:09:17'), - (585,127,2,'2006-02-15 05:09:17'), - (586,127,2,'2006-02-15 05:09:17'), - (587,127,2,'2006-02-15 05:09:17'), - (588,129,1,'2006-02-15 05:09:17'), - (589,129,1,'2006-02-15 05:09:17'), - (590,129,1,'2006-02-15 05:09:17'), - (591,129,2,'2006-02-15 05:09:17'), - (592,129,2,'2006-02-15 05:09:17'), - (593,129,2,'2006-02-15 05:09:17'), - (594,130,1,'2006-02-15 05:09:17'), - (595,130,1,'2006-02-15 05:09:17'), - (596,130,2,'2006-02-15 05:09:17'), - (597,130,2,'2006-02-15 05:09:17'), - (598,130,2,'2006-02-15 05:09:17'), - (599,130,2,'2006-02-15 05:09:17'), - (600,131,1,'2006-02-15 05:09:17'), - (601,131,1,'2006-02-15 05:09:17'), - (602,131,1,'2006-02-15 05:09:17'), - (603,131,1,'2006-02-15 05:09:17'), - (604,131,2,'2006-02-15 05:09:17'), - (605,131,2,'2006-02-15 05:09:17'), - (606,132,1,'2006-02-15 05:09:17'), - (607,132,1,'2006-02-15 05:09:17'), - (608,132,1,'2006-02-15 05:09:17'), - (609,132,1,'2006-02-15 05:09:17'), - (610,132,2,'2006-02-15 05:09:17'), - (611,132,2,'2006-02-15 05:09:17'), - (612,133,1,'2006-02-15 05:09:17'), - (613,133,1,'2006-02-15 05:09:17'), - (614,133,2,'2006-02-15 05:09:17'), - (615,133,2,'2006-02-15 05:09:17'), - (616,134,2,'2006-02-15 05:09:17'), - (617,134,2,'2006-02-15 05:09:17'), - (618,134,2,'2006-02-15 05:09:17'), - (619,135,1,'2006-02-15 05:09:17'), - (620,135,1,'2006-02-15 05:09:17'), - (621,135,1,'2006-02-15 05:09:17'), - (622,135,2,'2006-02-15 05:09:17'), - (623,135,2,'2006-02-15 05:09:17'), - (624,135,2,'2006-02-15 05:09:17'), - (625,135,2,'2006-02-15 05:09:17'), - (626,136,1,'2006-02-15 05:09:17'), - (627,136,1,'2006-02-15 05:09:17'), - (628,136,1,'2006-02-15 05:09:17'), - (629,137,2,'2006-02-15 05:09:17'), - (630,137,2,'2006-02-15 05:09:17'), - (631,137,2,'2006-02-15 05:09:17'), - (632,137,2,'2006-02-15 05:09:17'), - (633,138,1,'2006-02-15 05:09:17'), - (634,138,1,'2006-02-15 05:09:17'), - (635,138,2,'2006-02-15 05:09:17'), - (636,138,2,'2006-02-15 05:09:17'), - (637,138,2,'2006-02-15 05:09:17'), - (638,139,1,'2006-02-15 05:09:17'), - (639,139,1,'2006-02-15 05:09:17'), - (640,139,1,'2006-02-15 05:09:17'), - (641,139,1,'2006-02-15 05:09:17'), - (642,139,2,'2006-02-15 05:09:17'), - (643,139,2,'2006-02-15 05:09:17'), - (644,140,1,'2006-02-15 05:09:17'), - (645,140,1,'2006-02-15 05:09:17'), - (646,140,2,'2006-02-15 05:09:17'), - (647,140,2,'2006-02-15 05:09:17'), - (648,140,2,'2006-02-15 05:09:17'), - (649,141,1,'2006-02-15 05:09:17'), - (650,141,1,'2006-02-15 05:09:17'), - (651,141,1,'2006-02-15 05:09:17'), - (652,141,2,'2006-02-15 05:09:17'), - (653,141,2,'2006-02-15 05:09:17'), - (654,142,1,'2006-02-15 05:09:17'), - (655,142,1,'2006-02-15 05:09:17'), - (656,142,1,'2006-02-15 05:09:17'), - (657,142,2,'2006-02-15 05:09:17'), - (658,142,2,'2006-02-15 05:09:17'), - (659,143,1,'2006-02-15 05:09:17'), - (660,143,1,'2006-02-15 05:09:17'), - (661,143,1,'2006-02-15 05:09:17'), - (662,143,1,'2006-02-15 05:09:17'), - (663,143,2,'2006-02-15 05:09:17'), - (664,143,2,'2006-02-15 05:09:17'), - (665,143,2,'2006-02-15 05:09:17'), - (666,145,2,'2006-02-15 05:09:17'), - (667,145,2,'2006-02-15 05:09:17'), - (668,145,2,'2006-02-15 05:09:17'), - (669,146,1,'2006-02-15 05:09:17'), - (670,146,1,'2006-02-15 05:09:17'), - (671,146,1,'2006-02-15 05:09:17'), - (672,147,1,'2006-02-15 05:09:17'), - (673,147,1,'2006-02-15 05:09:17'), - (674,147,1,'2006-02-15 05:09:17'), - (675,147,2,'2006-02-15 05:09:17'), - (676,147,2,'2006-02-15 05:09:17'), - (677,147,2,'2006-02-15 05:09:17'), - (678,149,1,'2006-02-15 05:09:17'), - (679,149,1,'2006-02-15 05:09:17'), - (680,149,1,'2006-02-15 05:09:17'), - (681,149,2,'2006-02-15 05:09:17'), - (682,149,2,'2006-02-15 05:09:17'), - (683,149,2,'2006-02-15 05:09:17'), - (684,150,1,'2006-02-15 05:09:17'), - (685,150,1,'2006-02-15 05:09:17'), - (686,150,2,'2006-02-15 05:09:17'), - (687,150,2,'2006-02-15 05:09:17'), - (688,150,2,'2006-02-15 05:09:17'), - (689,150,2,'2006-02-15 05:09:17'), - (690,151,1,'2006-02-15 05:09:17'), - (691,151,1,'2006-02-15 05:09:17'), - (692,151,2,'2006-02-15 05:09:17'), - (693,151,2,'2006-02-15 05:09:17'), - (694,152,1,'2006-02-15 05:09:17'), - (695,152,1,'2006-02-15 05:09:17'), - (696,152,1,'2006-02-15 05:09:17'), - (697,152,1,'2006-02-15 05:09:17'), - (698,153,1,'2006-02-15 05:09:17'), - (699,153,1,'2006-02-15 05:09:17'), - (700,153,1,'2006-02-15 05:09:17'), - (701,153,1,'2006-02-15 05:09:17'), - (702,154,1,'2006-02-15 05:09:17'), - (703,154,1,'2006-02-15 05:09:17'), - (704,154,1,'2006-02-15 05:09:17'), - (705,154,2,'2006-02-15 05:09:17'), - (706,154,2,'2006-02-15 05:09:17'), - (707,154,2,'2006-02-15 05:09:17'), - (708,154,2,'2006-02-15 05:09:17'), - (709,155,1,'2006-02-15 05:09:17'), - (710,155,1,'2006-02-15 05:09:17'), - (711,155,2,'2006-02-15 05:09:17'), - (712,155,2,'2006-02-15 05:09:17'), - (713,155,2,'2006-02-15 05:09:17'), - (714,156,2,'2006-02-15 05:09:17'), - (715,156,2,'2006-02-15 05:09:17'), - (716,157,2,'2006-02-15 05:09:17'), - (717,157,2,'2006-02-15 05:09:17'), - (718,157,2,'2006-02-15 05:09:17'), - (719,158,1,'2006-02-15 05:09:17'), - (720,158,1,'2006-02-15 05:09:17'), - (721,158,2,'2006-02-15 05:09:17'), - (722,158,2,'2006-02-15 05:09:17'), - (723,158,2,'2006-02-15 05:09:17'), - (724,159,1,'2006-02-15 05:09:17'), - (725,159,1,'2006-02-15 05:09:17'), - (726,159,1,'2006-02-15 05:09:17'), - (727,159,1,'2006-02-15 05:09:17'), - (728,159,2,'2006-02-15 05:09:17'), - (729,159,2,'2006-02-15 05:09:17'), - (730,159,2,'2006-02-15 05:09:17'), - (731,160,1,'2006-02-15 05:09:17'), - (732,160,1,'2006-02-15 05:09:17'), - (733,160,2,'2006-02-15 05:09:17'), - (734,160,2,'2006-02-15 05:09:17'), - (735,160,2,'2006-02-15 05:09:17'), - (736,161,1,'2006-02-15 05:09:17'), - (737,161,1,'2006-02-15 05:09:17'), - (738,162,1,'2006-02-15 05:09:17'), - (739,162,1,'2006-02-15 05:09:17'), - (740,162,1,'2006-02-15 05:09:17'), - (741,162,2,'2006-02-15 05:09:17'), - (742,162,2,'2006-02-15 05:09:17'), - (743,162,2,'2006-02-15 05:09:17'), - (744,162,2,'2006-02-15 05:09:17'), - (745,163,2,'2006-02-15 05:09:17'), - (746,163,2,'2006-02-15 05:09:17'), - (747,163,2,'2006-02-15 05:09:17'), - (748,164,1,'2006-02-15 05:09:17'), - (749,164,1,'2006-02-15 05:09:17'), - (750,164,2,'2006-02-15 05:09:17'), - (751,164,2,'2006-02-15 05:09:17'), - (752,164,2,'2006-02-15 05:09:17'), - (753,165,1,'2006-02-15 05:09:17'), - (754,165,1,'2006-02-15 05:09:17'), - (755,165,1,'2006-02-15 05:09:17'), - (756,165,2,'2006-02-15 05:09:17'), - (757,165,2,'2006-02-15 05:09:17'), - (758,166,1,'2006-02-15 05:09:17'), - (759,166,1,'2006-02-15 05:09:17'), - (760,166,1,'2006-02-15 05:09:17'), - (761,166,1,'2006-02-15 05:09:17'), - (762,166,2,'2006-02-15 05:09:17'), - (763,166,2,'2006-02-15 05:09:17'), - (764,167,1,'2006-02-15 05:09:17'), - (765,167,1,'2006-02-15 05:09:17'), - (766,167,1,'2006-02-15 05:09:17'), - (767,167,1,'2006-02-15 05:09:17'), - (768,167,2,'2006-02-15 05:09:17'), - (769,167,2,'2006-02-15 05:09:17'), - (770,167,2,'2006-02-15 05:09:17'), - (771,168,1,'2006-02-15 05:09:17'), - (772,168,1,'2006-02-15 05:09:17'), - (773,169,1,'2006-02-15 05:09:17'), - (774,169,1,'2006-02-15 05:09:17'), - (775,169,2,'2006-02-15 05:09:17'), - (776,169,2,'2006-02-15 05:09:17'), - (777,170,1,'2006-02-15 05:09:17'), - (778,170,1,'2006-02-15 05:09:17'), - (779,170,2,'2006-02-15 05:09:17'), - (780,170,2,'2006-02-15 05:09:17'), - (781,170,2,'2006-02-15 05:09:17'), - (782,170,2,'2006-02-15 05:09:17'), - (783,172,1,'2006-02-15 05:09:17'), - (784,172,1,'2006-02-15 05:09:17'), - (785,172,1,'2006-02-15 05:09:17'), - (786,172,1,'2006-02-15 05:09:17'), - (787,172,2,'2006-02-15 05:09:17'), - (788,172,2,'2006-02-15 05:09:17'), - (789,172,2,'2006-02-15 05:09:17'), - (790,173,1,'2006-02-15 05:09:17'), - (791,173,1,'2006-02-15 05:09:17'), - (792,173,1,'2006-02-15 05:09:17'), - (793,173,2,'2006-02-15 05:09:17'), - (794,173,2,'2006-02-15 05:09:17'), - (795,174,1,'2006-02-15 05:09:17'), - (796,174,1,'2006-02-15 05:09:17'), - (797,174,1,'2006-02-15 05:09:17'), - (798,174,1,'2006-02-15 05:09:17'), - (799,174,2,'2006-02-15 05:09:17'), - (800,174,2,'2006-02-15 05:09:17'), - (801,174,2,'2006-02-15 05:09:17'), - (802,174,2,'2006-02-15 05:09:17'), - (803,175,1,'2006-02-15 05:09:17'), - (804,175,1,'2006-02-15 05:09:17'), - (805,175,2,'2006-02-15 05:09:17'), - (806,175,2,'2006-02-15 05:09:17'), - (807,175,2,'2006-02-15 05:09:17'), - (808,176,1,'2006-02-15 05:09:17'), - (809,176,1,'2006-02-15 05:09:17'), - (810,176,2,'2006-02-15 05:09:17'), - (811,176,2,'2006-02-15 05:09:17'), - (812,176,2,'2006-02-15 05:09:17'), - (813,176,2,'2006-02-15 05:09:17'), - (814,177,2,'2006-02-15 05:09:17'), - (815,177,2,'2006-02-15 05:09:17'), - (816,177,2,'2006-02-15 05:09:17'), - (817,178,1,'2006-02-15 05:09:17'), - (818,178,1,'2006-02-15 05:09:17'), - (819,179,1,'2006-02-15 05:09:17'), - (820,179,1,'2006-02-15 05:09:17'), - (821,179,1,'2006-02-15 05:09:17'), - (822,179,1,'2006-02-15 05:09:17'), - (823,180,2,'2006-02-15 05:09:17'), - (824,180,2,'2006-02-15 05:09:17'), - (825,181,1,'2006-02-15 05:09:17'), - (826,181,1,'2006-02-15 05:09:17'), - (827,181,1,'2006-02-15 05:09:17'), - (828,181,2,'2006-02-15 05:09:17'), - (829,181,2,'2006-02-15 05:09:17'), - (830,181,2,'2006-02-15 05:09:17'), - (831,181,2,'2006-02-15 05:09:17'), - (832,182,1,'2006-02-15 05:09:17'), - (833,182,1,'2006-02-15 05:09:17'), - (834,183,1,'2006-02-15 05:09:17'), - (835,183,1,'2006-02-15 05:09:17'), - (836,183,1,'2006-02-15 05:09:17'), - (837,183,2,'2006-02-15 05:09:17'), - (838,183,2,'2006-02-15 05:09:17'), - (839,183,2,'2006-02-15 05:09:17'), - (840,184,1,'2006-02-15 05:09:17'), - (841,184,1,'2006-02-15 05:09:17'), - (842,184,2,'2006-02-15 05:09:17'), - (843,184,2,'2006-02-15 05:09:17'), - (844,184,2,'2006-02-15 05:09:17'), - (845,185,1,'2006-02-15 05:09:17'), - (846,185,1,'2006-02-15 05:09:17'), - (847,186,1,'2006-02-15 05:09:17'), - (848,186,1,'2006-02-15 05:09:17'), - (849,186,2,'2006-02-15 05:09:17'), - (850,186,2,'2006-02-15 05:09:17'), - (851,187,2,'2006-02-15 05:09:17'), - (852,187,2,'2006-02-15 05:09:17'), - (853,187,2,'2006-02-15 05:09:17'), - (854,188,1,'2006-02-15 05:09:17'), - (855,188,1,'2006-02-15 05:09:17'), - (856,188,1,'2006-02-15 05:09:17'), - (857,189,1,'2006-02-15 05:09:17'), - (858,189,1,'2006-02-15 05:09:17'), - (859,189,2,'2006-02-15 05:09:17'), - (860,189,2,'2006-02-15 05:09:17'), - (861,189,2,'2006-02-15 05:09:17'), - (862,189,2,'2006-02-15 05:09:17'), - (863,190,2,'2006-02-15 05:09:17'), - (864,190,2,'2006-02-15 05:09:17'), - (865,190,2,'2006-02-15 05:09:17'), - (866,190,2,'2006-02-15 05:09:17'), - (867,191,1,'2006-02-15 05:09:17'), - (868,191,1,'2006-02-15 05:09:17'), - (869,191,1,'2006-02-15 05:09:17'), - (870,191,2,'2006-02-15 05:09:17'), - (871,191,2,'2006-02-15 05:09:17'), - (872,191,2,'2006-02-15 05:09:17'), - (873,193,1,'2006-02-15 05:09:17'), - (874,193,1,'2006-02-15 05:09:17'), - (875,193,1,'2006-02-15 05:09:17'), - (876,193,1,'2006-02-15 05:09:17'), - (877,193,2,'2006-02-15 05:09:17'), - (878,193,2,'2006-02-15 05:09:17'), - (879,193,2,'2006-02-15 05:09:17'), - (880,193,2,'2006-02-15 05:09:17'), - (881,194,1,'2006-02-15 05:09:17'), - (882,194,1,'2006-02-15 05:09:17'), - (883,194,2,'2006-02-15 05:09:17'), - (884,194,2,'2006-02-15 05:09:17'), - (885,196,1,'2006-02-15 05:09:17'), - (886,196,1,'2006-02-15 05:09:17'), - (887,197,1,'2006-02-15 05:09:17'), - (888,197,1,'2006-02-15 05:09:17'), - (889,199,1,'2006-02-15 05:09:17'), - (890,199,1,'2006-02-15 05:09:17'), - (891,199,1,'2006-02-15 05:09:17'), - (892,199,1,'2006-02-15 05:09:17'), - (893,199,2,'2006-02-15 05:09:17'), - (894,199,2,'2006-02-15 05:09:17'), - (895,199,2,'2006-02-15 05:09:17'), - (896,199,2,'2006-02-15 05:09:17'), - (897,200,1,'2006-02-15 05:09:17'), - (898,200,1,'2006-02-15 05:09:17'), - (899,200,1,'2006-02-15 05:09:17'), - (900,200,1,'2006-02-15 05:09:17'), - (901,200,2,'2006-02-15 05:09:17'), - (902,200,2,'2006-02-15 05:09:17'), - (903,200,2,'2006-02-15 05:09:17'), - (904,200,2,'2006-02-15 05:09:17'), - (905,201,1,'2006-02-15 05:09:17'), - (906,201,1,'2006-02-15 05:09:17'), - (907,201,1,'2006-02-15 05:09:17'), - (908,201,1,'2006-02-15 05:09:17'), - (909,202,1,'2006-02-15 05:09:17'), - (910,202,1,'2006-02-15 05:09:17'), - (911,202,1,'2006-02-15 05:09:17'), - (912,203,2,'2006-02-15 05:09:17'), - (913,203,2,'2006-02-15 05:09:17'), - (914,203,2,'2006-02-15 05:09:17'), - (915,203,2,'2006-02-15 05:09:17'), - (916,204,1,'2006-02-15 05:09:17'), - (917,204,1,'2006-02-15 05:09:17'), - (918,204,1,'2006-02-15 05:09:17'), - (919,204,1,'2006-02-15 05:09:17'), - (920,204,2,'2006-02-15 05:09:17'), - (921,204,2,'2006-02-15 05:09:17'), - (922,205,1,'2006-02-15 05:09:17'), - (923,205,1,'2006-02-15 05:09:17'), - (924,205,1,'2006-02-15 05:09:17'), - (925,205,1,'2006-02-15 05:09:17'), - (926,206,1,'2006-02-15 05:09:17'), - (927,206,1,'2006-02-15 05:09:17'), - (928,206,1,'2006-02-15 05:09:17'), - (929,206,1,'2006-02-15 05:09:17'), - (930,206,2,'2006-02-15 05:09:17'), - (931,206,2,'2006-02-15 05:09:17'), - (932,206,2,'2006-02-15 05:09:17'), - (933,206,2,'2006-02-15 05:09:17'), - (934,207,1,'2006-02-15 05:09:17'), - (935,207,1,'2006-02-15 05:09:17'), - (936,207,1,'2006-02-15 05:09:17'), - (937,207,1,'2006-02-15 05:09:17'), - (938,208,1,'2006-02-15 05:09:17'), - (939,208,1,'2006-02-15 05:09:17'), - (940,208,1,'2006-02-15 05:09:17'), - (941,209,1,'2006-02-15 05:09:17'), - (942,209,1,'2006-02-15 05:09:17'), - (943,209,1,'2006-02-15 05:09:17'), - (944,209,1,'2006-02-15 05:09:17'), - (945,210,2,'2006-02-15 05:09:17'), - (946,210,2,'2006-02-15 05:09:17'), - (947,210,2,'2006-02-15 05:09:17'), - (948,211,1,'2006-02-15 05:09:17'), - (949,211,1,'2006-02-15 05:09:17'), - (950,212,1,'2006-02-15 05:09:17'), - (951,212,1,'2006-02-15 05:09:17'), - (952,212,1,'2006-02-15 05:09:17'), - (953,212,2,'2006-02-15 05:09:17'), - (954,212,2,'2006-02-15 05:09:17'), - (955,213,1,'2006-02-15 05:09:17'), - (956,213,1,'2006-02-15 05:09:17'), - (957,213,1,'2006-02-15 05:09:17'), - (958,213,1,'2006-02-15 05:09:17'), - (959,214,2,'2006-02-15 05:09:17'), - (960,214,2,'2006-02-15 05:09:17'), - (961,214,2,'2006-02-15 05:09:17'), - (962,214,2,'2006-02-15 05:09:17'), - (963,215,1,'2006-02-15 05:09:17'), - (964,215,1,'2006-02-15 05:09:17'), - (965,215,1,'2006-02-15 05:09:17'), - (966,215,2,'2006-02-15 05:09:17'), - (967,215,2,'2006-02-15 05:09:17'), - (968,215,2,'2006-02-15 05:09:17'), - (969,216,1,'2006-02-15 05:09:17'), - (970,216,1,'2006-02-15 05:09:17'), - (971,216,2,'2006-02-15 05:09:17'), - (972,216,2,'2006-02-15 05:09:17'), - (973,216,2,'2006-02-15 05:09:17'), - (974,218,1,'2006-02-15 05:09:17'), - (975,218,1,'2006-02-15 05:09:17'), - (976,218,1,'2006-02-15 05:09:17'), - (977,218,1,'2006-02-15 05:09:17'), - (978,218,2,'2006-02-15 05:09:17'), - (979,218,2,'2006-02-15 05:09:17'), - (980,218,2,'2006-02-15 05:09:17'), - (981,219,1,'2006-02-15 05:09:17'), - (982,219,1,'2006-02-15 05:09:17'), - (983,219,1,'2006-02-15 05:09:17'), - (984,219,1,'2006-02-15 05:09:17'), - (985,220,1,'2006-02-15 05:09:17'), - (986,220,1,'2006-02-15 05:09:17'), - (987,220,1,'2006-02-15 05:09:17'), - (988,220,1,'2006-02-15 05:09:17'), - (989,220,2,'2006-02-15 05:09:17'), - (990,220,2,'2006-02-15 05:09:17'), - (991,220,2,'2006-02-15 05:09:17'), - (992,220,2,'2006-02-15 05:09:17'), - (993,222,1,'2006-02-15 05:09:17'), - (994,222,1,'2006-02-15 05:09:17'), - (995,222,2,'2006-02-15 05:09:17'), - (996,222,2,'2006-02-15 05:09:17'), - (997,222,2,'2006-02-15 05:09:17'), - (998,222,2,'2006-02-15 05:09:17'), - (999,223,2,'2006-02-15 05:09:17'), - (1000,223,2,'2006-02-15 05:09:17'), - (1001,224,1,'2006-02-15 05:09:17'), - (1002,224,1,'2006-02-15 05:09:17'), - (1003,225,1,'2006-02-15 05:09:17'), - (1004,225,1,'2006-02-15 05:09:17'), - (1005,225,1,'2006-02-15 05:09:17'), - (1006,226,1,'2006-02-15 05:09:17'), - (1007,226,1,'2006-02-15 05:09:17'), - (1008,226,2,'2006-02-15 05:09:17'), - (1009,226,2,'2006-02-15 05:09:17'), - (1010,226,2,'2006-02-15 05:09:17'), - (1011,227,1,'2006-02-15 05:09:17'), - (1012,227,1,'2006-02-15 05:09:17'), - (1013,227,1,'2006-02-15 05:09:17'), - (1014,227,2,'2006-02-15 05:09:17'), - (1015,227,2,'2006-02-15 05:09:17'), - (1016,228,1,'2006-02-15 05:09:17'), - (1017,228,1,'2006-02-15 05:09:17'), - (1018,228,1,'2006-02-15 05:09:17'), - (1019,228,2,'2006-02-15 05:09:17'), - (1020,228,2,'2006-02-15 05:09:17'), - (1021,228,2,'2006-02-15 05:09:17'), - (1022,228,2,'2006-02-15 05:09:17'), - (1023,229,1,'2006-02-15 05:09:17'), - (1024,229,1,'2006-02-15 05:09:17'), - (1025,229,2,'2006-02-15 05:09:17'), - (1026,229,2,'2006-02-15 05:09:17'), - (1027,230,1,'2006-02-15 05:09:17'), - (1028,230,1,'2006-02-15 05:09:17'), - (1029,231,1,'2006-02-15 05:09:17'), - (1030,231,1,'2006-02-15 05:09:17'), - (1031,231,1,'2006-02-15 05:09:17'), - (1032,231,1,'2006-02-15 05:09:17'), - (1033,231,2,'2006-02-15 05:09:17'), - (1034,231,2,'2006-02-15 05:09:17'), - (1035,231,2,'2006-02-15 05:09:17'), - (1036,231,2,'2006-02-15 05:09:17'), - (1037,232,1,'2006-02-15 05:09:17'), - (1038,232,1,'2006-02-15 05:09:17'), - (1039,232,1,'2006-02-15 05:09:17'), - (1040,232,2,'2006-02-15 05:09:17'), - (1041,232,2,'2006-02-15 05:09:17'), - (1042,233,1,'2006-02-15 05:09:17'), - (1043,233,1,'2006-02-15 05:09:17'), - (1044,233,1,'2006-02-15 05:09:17'), - (1045,233,1,'2006-02-15 05:09:17'), - (1046,233,2,'2006-02-15 05:09:17'), - (1047,233,2,'2006-02-15 05:09:17'), - (1048,234,1,'2006-02-15 05:09:17'), - (1049,234,1,'2006-02-15 05:09:17'), - (1050,234,1,'2006-02-15 05:09:17'), - (1051,234,1,'2006-02-15 05:09:17'), - (1052,234,2,'2006-02-15 05:09:17'), - (1053,234,2,'2006-02-15 05:09:17'), - (1054,234,2,'2006-02-15 05:09:17'), - (1055,235,1,'2006-02-15 05:09:17'), - (1056,235,1,'2006-02-15 05:09:17'), - (1057,235,2,'2006-02-15 05:09:17'), - (1058,235,2,'2006-02-15 05:09:17'), - (1059,235,2,'2006-02-15 05:09:17'), - (1060,235,2,'2006-02-15 05:09:17'), - (1061,236,2,'2006-02-15 05:09:17'), - (1062,236,2,'2006-02-15 05:09:17'), - (1063,236,2,'2006-02-15 05:09:17'), - (1064,236,2,'2006-02-15 05:09:17'), - (1065,237,1,'2006-02-15 05:09:17'), - (1066,237,1,'2006-02-15 05:09:17'), - (1067,238,1,'2006-02-15 05:09:17'), - (1068,238,1,'2006-02-15 05:09:17'), - (1069,239,1,'2006-02-15 05:09:17'), - (1070,239,1,'2006-02-15 05:09:17'), - (1071,239,1,'2006-02-15 05:09:17'), - (1072,239,1,'2006-02-15 05:09:17'), - (1073,239,2,'2006-02-15 05:09:17'), - (1074,239,2,'2006-02-15 05:09:17'), - (1075,239,2,'2006-02-15 05:09:17'), - (1076,239,2,'2006-02-15 05:09:17'), - (1077,240,2,'2006-02-15 05:09:17'), - (1078,240,2,'2006-02-15 05:09:17'), - (1079,240,2,'2006-02-15 05:09:17'), - (1080,241,1,'2006-02-15 05:09:17'), - (1081,241,1,'2006-02-15 05:09:17'), - (1082,241,1,'2006-02-15 05:09:17'), - (1083,241,1,'2006-02-15 05:09:17'), - (1084,242,1,'2006-02-15 05:09:17'), - (1085,242,1,'2006-02-15 05:09:17'), - (1086,242,2,'2006-02-15 05:09:17'), - (1087,242,2,'2006-02-15 05:09:17'), - (1088,242,2,'2006-02-15 05:09:17'), - (1089,243,1,'2006-02-15 05:09:17'), - (1090,243,1,'2006-02-15 05:09:17'), - (1091,243,2,'2006-02-15 05:09:17'), - (1092,243,2,'2006-02-15 05:09:17'), - (1093,243,2,'2006-02-15 05:09:17'), - (1094,243,2,'2006-02-15 05:09:17'), - (1095,244,1,'2006-02-15 05:09:17'), - (1096,244,1,'2006-02-15 05:09:17'), - (1097,244,1,'2006-02-15 05:09:17'), - (1098,244,1,'2006-02-15 05:09:17'), - (1099,244,2,'2006-02-15 05:09:17'), - (1100,244,2,'2006-02-15 05:09:17'), - (1101,244,2,'2006-02-15 05:09:17'), - (1102,245,1,'2006-02-15 05:09:17'), - (1103,245,1,'2006-02-15 05:09:17'), - (1104,245,1,'2006-02-15 05:09:17'), - (1105,245,2,'2006-02-15 05:09:17'), - (1106,245,2,'2006-02-15 05:09:17'), - (1107,245,2,'2006-02-15 05:09:17'), - (1108,245,2,'2006-02-15 05:09:17'), - (1109,246,2,'2006-02-15 05:09:17'), - (1110,246,2,'2006-02-15 05:09:17'), - (1111,246,2,'2006-02-15 05:09:17'), - (1112,247,1,'2006-02-15 05:09:17'), - (1113,247,1,'2006-02-15 05:09:17'), - (1114,247,1,'2006-02-15 05:09:17'), - (1115,247,2,'2006-02-15 05:09:17'), - (1116,247,2,'2006-02-15 05:09:17'), - (1117,247,2,'2006-02-15 05:09:17'), - (1118,247,2,'2006-02-15 05:09:17'), - (1119,248,2,'2006-02-15 05:09:17'), - (1120,248,2,'2006-02-15 05:09:17'), - (1121,249,1,'2006-02-15 05:09:17'), - (1122,249,1,'2006-02-15 05:09:17'), - (1123,249,2,'2006-02-15 05:09:17'), - (1124,249,2,'2006-02-15 05:09:17'), - (1125,249,2,'2006-02-15 05:09:17'), - (1126,249,2,'2006-02-15 05:09:17'), - (1127,250,2,'2006-02-15 05:09:17'), - (1128,250,2,'2006-02-15 05:09:17'), - (1129,250,2,'2006-02-15 05:09:17'), - (1130,250,2,'2006-02-15 05:09:17'), - (1131,251,1,'2006-02-15 05:09:17'), - (1132,251,1,'2006-02-15 05:09:17'), - (1133,251,2,'2006-02-15 05:09:17'), - (1134,251,2,'2006-02-15 05:09:17'), - (1135,251,2,'2006-02-15 05:09:17'), - (1136,252,1,'2006-02-15 05:09:17'), - (1137,252,1,'2006-02-15 05:09:17'), - (1138,252,1,'2006-02-15 05:09:17'), - (1139,252,2,'2006-02-15 05:09:17'), - (1140,252,2,'2006-02-15 05:09:17'), - (1141,252,2,'2006-02-15 05:09:17'), - (1142,253,1,'2006-02-15 05:09:17'), - (1143,253,1,'2006-02-15 05:09:17'), - (1144,253,1,'2006-02-15 05:09:17'), - (1145,253,1,'2006-02-15 05:09:17'), - (1146,253,2,'2006-02-15 05:09:17'), - (1147,253,2,'2006-02-15 05:09:17'), - (1148,254,1,'2006-02-15 05:09:17'), - (1149,254,1,'2006-02-15 05:09:17'), - (1150,254,2,'2006-02-15 05:09:17'), - (1151,254,2,'2006-02-15 05:09:17'), - (1152,254,2,'2006-02-15 05:09:17'), - (1153,255,1,'2006-02-15 05:09:17'), - (1154,255,1,'2006-02-15 05:09:17'), - (1155,255,1,'2006-02-15 05:09:17'), - (1156,255,1,'2006-02-15 05:09:17'), - (1157,255,2,'2006-02-15 05:09:17'), - (1158,255,2,'2006-02-15 05:09:17'), - (1159,256,2,'2006-02-15 05:09:17'), - (1160,256,2,'2006-02-15 05:09:17'), - (1161,256,2,'2006-02-15 05:09:17'), - (1162,257,2,'2006-02-15 05:09:17'), - (1163,257,2,'2006-02-15 05:09:17'), - (1164,257,2,'2006-02-15 05:09:17'), - (1165,258,2,'2006-02-15 05:09:17'), - (1166,258,2,'2006-02-15 05:09:17'), - (1167,258,2,'2006-02-15 05:09:17'), - (1168,258,2,'2006-02-15 05:09:17'), - (1169,259,1,'2006-02-15 05:09:17'), - (1170,259,1,'2006-02-15 05:09:17'), - (1171,260,2,'2006-02-15 05:09:17'), - (1172,260,2,'2006-02-15 05:09:17'), - (1173,260,2,'2006-02-15 05:09:17'), - (1174,260,2,'2006-02-15 05:09:17'), - (1175,261,1,'2006-02-15 05:09:17'), - (1176,261,1,'2006-02-15 05:09:17'), - (1177,262,2,'2006-02-15 05:09:17'), - (1178,262,2,'2006-02-15 05:09:17'), - (1179,263,1,'2006-02-15 05:09:17'), - (1180,263,1,'2006-02-15 05:09:17'), - (1181,263,1,'2006-02-15 05:09:17'), - (1182,263,1,'2006-02-15 05:09:17'), - (1183,263,2,'2006-02-15 05:09:17'), - (1184,263,2,'2006-02-15 05:09:17'), - (1185,263,2,'2006-02-15 05:09:17'), - (1186,264,2,'2006-02-15 05:09:17'), - (1187,264,2,'2006-02-15 05:09:17'), - (1188,265,1,'2006-02-15 05:09:17'), - (1189,265,1,'2006-02-15 05:09:17'), - (1190,265,1,'2006-02-15 05:09:17'), - (1191,265,1,'2006-02-15 05:09:17'), - (1192,266,1,'2006-02-15 05:09:17'), - (1193,266,1,'2006-02-15 05:09:17'), - (1194,266,1,'2006-02-15 05:09:17'), - (1195,266,1,'2006-02-15 05:09:17'), - (1196,266,2,'2006-02-15 05:09:17'), - (1197,266,2,'2006-02-15 05:09:17'), - (1198,266,2,'2006-02-15 05:09:17'), - (1199,266,2,'2006-02-15 05:09:17'), - (1200,267,1,'2006-02-15 05:09:17'), - (1201,267,1,'2006-02-15 05:09:17'), - (1202,267,1,'2006-02-15 05:09:17'), - (1203,267,1,'2006-02-15 05:09:17'), - (1204,267,2,'2006-02-15 05:09:17'), - (1205,267,2,'2006-02-15 05:09:17'), - (1206,268,2,'2006-02-15 05:09:17'), - (1207,268,2,'2006-02-15 05:09:17'), - (1208,269,1,'2006-02-15 05:09:17'), - (1209,269,1,'2006-02-15 05:09:17'), - (1210,269,2,'2006-02-15 05:09:17'), - (1211,269,2,'2006-02-15 05:09:17'), - (1212,269,2,'2006-02-15 05:09:17'), - (1213,269,2,'2006-02-15 05:09:17'), - (1214,270,1,'2006-02-15 05:09:17'), - (1215,270,1,'2006-02-15 05:09:17'), - (1216,270,1,'2006-02-15 05:09:17'), - (1217,270,2,'2006-02-15 05:09:17'), - (1218,270,2,'2006-02-15 05:09:17'), - (1219,270,2,'2006-02-15 05:09:17'), - (1220,270,2,'2006-02-15 05:09:17'), - (1221,271,1,'2006-02-15 05:09:17'), - (1222,271,1,'2006-02-15 05:09:17'), - (1223,271,1,'2006-02-15 05:09:17'), - (1224,271,2,'2006-02-15 05:09:17'), - (1225,271,2,'2006-02-15 05:09:17'), - (1226,272,1,'2006-02-15 05:09:17'), - (1227,272,1,'2006-02-15 05:09:17'), - (1228,272,1,'2006-02-15 05:09:17'), - (1229,272,1,'2006-02-15 05:09:17'), - (1230,273,1,'2006-02-15 05:09:17'), - (1231,273,1,'2006-02-15 05:09:17'), - (1232,273,1,'2006-02-15 05:09:17'), - (1233,273,1,'2006-02-15 05:09:17'), - (1234,273,2,'2006-02-15 05:09:17'), - (1235,273,2,'2006-02-15 05:09:17'), - (1236,273,2,'2006-02-15 05:09:17'), - (1237,274,1,'2006-02-15 05:09:17'), - (1238,274,1,'2006-02-15 05:09:17'), - (1239,274,1,'2006-02-15 05:09:17'), - (1240,274,2,'2006-02-15 05:09:17'), - (1241,274,2,'2006-02-15 05:09:17'), - (1242,274,2,'2006-02-15 05:09:17'), - (1243,274,2,'2006-02-15 05:09:17'), - (1244,275,1,'2006-02-15 05:09:17'), - (1245,275,1,'2006-02-15 05:09:17'), - (1246,275,1,'2006-02-15 05:09:17'), - (1247,275,2,'2006-02-15 05:09:17'), - (1248,275,2,'2006-02-15 05:09:17'), - (1249,276,1,'2006-02-15 05:09:17'), - (1250,276,1,'2006-02-15 05:09:17'), - (1251,276,1,'2006-02-15 05:09:17'), - (1252,276,1,'2006-02-15 05:09:17'), - (1253,277,1,'2006-02-15 05:09:17'), - (1254,277,1,'2006-02-15 05:09:17'), - (1255,277,1,'2006-02-15 05:09:17'), - (1256,278,1,'2006-02-15 05:09:17'), - (1257,278,1,'2006-02-15 05:09:17'), - (1258,279,1,'2006-02-15 05:09:17'), - (1259,279,1,'2006-02-15 05:09:17'), - (1260,280,1,'2006-02-15 05:09:17'), - (1261,280,1,'2006-02-15 05:09:17'), - (1262,280,1,'2006-02-15 05:09:17'), - (1263,280,1,'2006-02-15 05:09:17'), - (1264,280,2,'2006-02-15 05:09:17'), - (1265,280,2,'2006-02-15 05:09:17'), - (1266,281,1,'2006-02-15 05:09:17'), - (1267,281,1,'2006-02-15 05:09:17'), - (1268,281,2,'2006-02-15 05:09:17'), - (1269,281,2,'2006-02-15 05:09:17'), - (1270,281,2,'2006-02-15 05:09:17'), - (1271,281,2,'2006-02-15 05:09:17'), - (1272,282,1,'2006-02-15 05:09:17'), - (1273,282,1,'2006-02-15 05:09:17'), - (1274,282,1,'2006-02-15 05:09:17'), - (1275,282,2,'2006-02-15 05:09:17'), - (1276,282,2,'2006-02-15 05:09:17'), - (1277,282,2,'2006-02-15 05:09:17'), - (1278,283,1,'2006-02-15 05:09:17'), - (1279,283,1,'2006-02-15 05:09:17'), - (1280,283,1,'2006-02-15 05:09:17'), - (1281,284,1,'2006-02-15 05:09:17'), - (1282,284,1,'2006-02-15 05:09:17'), - (1283,284,1,'2006-02-15 05:09:17'), - (1284,284,2,'2006-02-15 05:09:17'), - (1285,284,2,'2006-02-15 05:09:17'), - (1286,284,2,'2006-02-15 05:09:17'), - (1287,284,2,'2006-02-15 05:09:17'), - (1288,285,1,'2006-02-15 05:09:17'), - (1289,285,1,'2006-02-15 05:09:17'), - (1290,285,1,'2006-02-15 05:09:17'), - (1291,285,2,'2006-02-15 05:09:17'), - (1292,285,2,'2006-02-15 05:09:17'), - (1293,285,2,'2006-02-15 05:09:17'), - (1294,285,2,'2006-02-15 05:09:17'), - (1295,286,1,'2006-02-15 05:09:17'), - (1296,286,1,'2006-02-15 05:09:17'), - (1297,286,2,'2006-02-15 05:09:17'), - (1298,286,2,'2006-02-15 05:09:17'), - (1299,286,2,'2006-02-15 05:09:17'), - (1300,287,1,'2006-02-15 05:09:17'), - (1301,287,1,'2006-02-15 05:09:17'), - (1302,287,2,'2006-02-15 05:09:17'), - (1303,287,2,'2006-02-15 05:09:17'), - (1304,288,1,'2006-02-15 05:09:17'), - (1305,288,1,'2006-02-15 05:09:17'), - (1306,288,2,'2006-02-15 05:09:17'), - (1307,288,2,'2006-02-15 05:09:17'), - (1308,288,2,'2006-02-15 05:09:17'), - (1309,288,2,'2006-02-15 05:09:17'), - (1310,289,1,'2006-02-15 05:09:17'), - (1311,289,1,'2006-02-15 05:09:17'), - (1312,290,1,'2006-02-15 05:09:17'), - (1313,290,1,'2006-02-15 05:09:17'), - (1314,290,1,'2006-02-15 05:09:17'), - (1315,291,1,'2006-02-15 05:09:17'), - (1316,291,1,'2006-02-15 05:09:17'), - (1317,291,1,'2006-02-15 05:09:17'), - (1318,291,1,'2006-02-15 05:09:17'), - (1319,292,1,'2006-02-15 05:09:17'), - (1320,292,1,'2006-02-15 05:09:17'), - (1321,292,1,'2006-02-15 05:09:17'), - (1322,292,2,'2006-02-15 05:09:17'), - (1323,292,2,'2006-02-15 05:09:17'), - (1324,292,2,'2006-02-15 05:09:17'), - (1325,293,1,'2006-02-15 05:09:17'), - (1326,293,1,'2006-02-15 05:09:17'), - (1327,293,2,'2006-02-15 05:09:17'), - (1328,293,2,'2006-02-15 05:09:17'), - (1329,293,2,'2006-02-15 05:09:17'), - (1330,294,1,'2006-02-15 05:09:17'), - (1331,294,1,'2006-02-15 05:09:17'), - (1332,294,2,'2006-02-15 05:09:17'), - (1333,294,2,'2006-02-15 05:09:17'), - (1334,294,2,'2006-02-15 05:09:17'), - (1335,295,1,'2006-02-15 05:09:17'), - (1336,295,1,'2006-02-15 05:09:17'), - (1337,295,1,'2006-02-15 05:09:17'), - (1338,295,1,'2006-02-15 05:09:17'), - (1339,295,2,'2006-02-15 05:09:17'), - (1340,295,2,'2006-02-15 05:09:17'), - (1341,295,2,'2006-02-15 05:09:17'), - (1342,295,2,'2006-02-15 05:09:17'), - (1343,296,1,'2006-02-15 05:09:17'), - (1344,296,1,'2006-02-15 05:09:17'), - (1345,296,1,'2006-02-15 05:09:17'), - (1346,296,1,'2006-02-15 05:09:17'), - (1347,297,2,'2006-02-15 05:09:17'), - (1348,297,2,'2006-02-15 05:09:17'), - (1349,298,1,'2006-02-15 05:09:17'), - (1350,298,1,'2006-02-15 05:09:17'), - (1351,298,2,'2006-02-15 05:09:17'), - (1352,298,2,'2006-02-15 05:09:17'), - (1353,298,2,'2006-02-15 05:09:17'), - (1354,299,1,'2006-02-15 05:09:17'), - (1355,299,1,'2006-02-15 05:09:17'), - (1356,299,1,'2006-02-15 05:09:17'), - (1357,299,1,'2006-02-15 05:09:17'), - (1358,300,1,'2006-02-15 05:09:17'), - (1359,300,1,'2006-02-15 05:09:17'), - (1360,300,2,'2006-02-15 05:09:17'), - (1361,300,2,'2006-02-15 05:09:17'), - (1362,300,2,'2006-02-15 05:09:17'), - (1363,300,2,'2006-02-15 05:09:17'), - (1364,301,1,'2006-02-15 05:09:17'), - (1365,301,1,'2006-02-15 05:09:17'), - (1366,301,1,'2006-02-15 05:09:17'), - (1367,301,1,'2006-02-15 05:09:17'), - (1368,301,2,'2006-02-15 05:09:17'), - (1369,301,2,'2006-02-15 05:09:17'), - (1370,301,2,'2006-02-15 05:09:17'), - (1371,301,2,'2006-02-15 05:09:17'), - (1372,302,1,'2006-02-15 05:09:17'), - (1373,302,1,'2006-02-15 05:09:17'), - (1374,302,2,'2006-02-15 05:09:17'), - (1375,302,2,'2006-02-15 05:09:17'), - (1376,302,2,'2006-02-15 05:09:17'), - (1377,302,2,'2006-02-15 05:09:17'), - (1378,303,1,'2006-02-15 05:09:17'), - (1379,303,1,'2006-02-15 05:09:17'), - (1380,303,1,'2006-02-15 05:09:17'), - (1381,303,1,'2006-02-15 05:09:17'), - (1382,303,2,'2006-02-15 05:09:17'), - (1383,303,2,'2006-02-15 05:09:17'), - (1384,304,1,'2006-02-15 05:09:17'), - (1385,304,1,'2006-02-15 05:09:17'), - (1386,304,1,'2006-02-15 05:09:17'), - (1387,304,1,'2006-02-15 05:09:17'), - (1388,304,2,'2006-02-15 05:09:17'), - (1389,304,2,'2006-02-15 05:09:17'), - (1390,305,1,'2006-02-15 05:09:17'), - (1391,305,1,'2006-02-15 05:09:17'), - (1392,305,1,'2006-02-15 05:09:17'), - (1393,305,1,'2006-02-15 05:09:17'), - (1394,305,2,'2006-02-15 05:09:17'), - (1395,305,2,'2006-02-15 05:09:17'), - (1396,305,2,'2006-02-15 05:09:17'), - (1397,306,1,'2006-02-15 05:09:17'), - (1398,306,1,'2006-02-15 05:09:17'), - (1399,306,1,'2006-02-15 05:09:17'), - (1400,307,1,'2006-02-15 05:09:17'), - (1401,307,1,'2006-02-15 05:09:17'), - (1402,307,1,'2006-02-15 05:09:17'), - (1403,307,2,'2006-02-15 05:09:17'), - (1404,307,2,'2006-02-15 05:09:17'), - (1405,307,2,'2006-02-15 05:09:17'), - (1406,308,1,'2006-02-15 05:09:17'), - (1407,308,1,'2006-02-15 05:09:17'), - (1408,308,2,'2006-02-15 05:09:17'), - (1409,308,2,'2006-02-15 05:09:17'), - (1410,309,1,'2006-02-15 05:09:17'), - (1411,309,1,'2006-02-15 05:09:17'), - (1412,309,2,'2006-02-15 05:09:17'), - (1413,309,2,'2006-02-15 05:09:17'), - (1414,309,2,'2006-02-15 05:09:17'), - (1415,309,2,'2006-02-15 05:09:17'), - (1416,310,1,'2006-02-15 05:09:17'), - (1417,310,1,'2006-02-15 05:09:17'), - (1418,311,1,'2006-02-15 05:09:17'), - (1419,311,1,'2006-02-15 05:09:17'), - (1420,311,1,'2006-02-15 05:09:17'), - (1421,311,2,'2006-02-15 05:09:17'), - (1422,311,2,'2006-02-15 05:09:17'), - (1423,311,2,'2006-02-15 05:09:17'), - (1424,311,2,'2006-02-15 05:09:17'), - (1425,312,2,'2006-02-15 05:09:17'), - (1426,312,2,'2006-02-15 05:09:17'), - (1427,312,2,'2006-02-15 05:09:17'), - (1428,313,1,'2006-02-15 05:09:17'), - (1429,313,1,'2006-02-15 05:09:17'), - (1430,313,1,'2006-02-15 05:09:17'), - (1431,313,1,'2006-02-15 05:09:17'), - (1432,313,2,'2006-02-15 05:09:17'), - (1433,313,2,'2006-02-15 05:09:17'), - (1434,314,1,'2006-02-15 05:09:17'), - (1435,314,1,'2006-02-15 05:09:17'), - (1436,314,2,'2006-02-15 05:09:17'), - (1437,314,2,'2006-02-15 05:09:17'), - (1438,314,2,'2006-02-15 05:09:17'), - (1439,314,2,'2006-02-15 05:09:17'), - (1440,315,2,'2006-02-15 05:09:17'), - (1441,315,2,'2006-02-15 05:09:17'), - (1442,315,2,'2006-02-15 05:09:17'), - (1443,316,2,'2006-02-15 05:09:17'), - (1444,316,2,'2006-02-15 05:09:17'), - (1445,317,1,'2006-02-15 05:09:17'), - (1446,317,1,'2006-02-15 05:09:17'), - (1447,317,1,'2006-02-15 05:09:17'), - (1448,317,1,'2006-02-15 05:09:17'), - (1449,317,2,'2006-02-15 05:09:17'), - (1450,317,2,'2006-02-15 05:09:17'), - (1451,317,2,'2006-02-15 05:09:17'), - (1452,319,1,'2006-02-15 05:09:17'), - (1453,319,1,'2006-02-15 05:09:17'), - (1454,319,1,'2006-02-15 05:09:17'), - (1455,319,2,'2006-02-15 05:09:17'), - (1456,319,2,'2006-02-15 05:09:17'), - (1457,319,2,'2006-02-15 05:09:17'), - (1458,319,2,'2006-02-15 05:09:17'), - (1459,320,1,'2006-02-15 05:09:17'), - (1460,320,1,'2006-02-15 05:09:17'), - (1461,320,1,'2006-02-15 05:09:17'), - (1462,320,2,'2006-02-15 05:09:17'), - (1463,320,2,'2006-02-15 05:09:17'), - (1464,320,2,'2006-02-15 05:09:17'), - (1465,320,2,'2006-02-15 05:09:17'), - (1466,321,1,'2006-02-15 05:09:17'), - (1467,321,1,'2006-02-15 05:09:17'), - (1468,321,1,'2006-02-15 05:09:17'), - (1469,321,1,'2006-02-15 05:09:17'), - (1470,322,1,'2006-02-15 05:09:17'), - (1471,322,1,'2006-02-15 05:09:17'), - (1472,322,1,'2006-02-15 05:09:17'), - (1473,322,1,'2006-02-15 05:09:17'), - (1474,322,2,'2006-02-15 05:09:17'), - (1475,322,2,'2006-02-15 05:09:17'), - (1476,323,2,'2006-02-15 05:09:17'), - (1477,323,2,'2006-02-15 05:09:17'), - (1478,323,2,'2006-02-15 05:09:17'), - (1479,323,2,'2006-02-15 05:09:17'), - (1480,324,1,'2006-02-15 05:09:17'), - (1481,324,1,'2006-02-15 05:09:17'), - (1482,324,1,'2006-02-15 05:09:17'), - (1483,324,2,'2006-02-15 05:09:17'), - (1484,324,2,'2006-02-15 05:09:17'), - (1485,326,1,'2006-02-15 05:09:17'), - (1486,326,1,'2006-02-15 05:09:17'), - (1487,326,2,'2006-02-15 05:09:17'), - (1488,326,2,'2006-02-15 05:09:17'), - (1489,326,2,'2006-02-15 05:09:17'), - (1490,326,2,'2006-02-15 05:09:17'), - (1491,327,1,'2006-02-15 05:09:17'), - (1492,327,1,'2006-02-15 05:09:17'), - (1493,327,1,'2006-02-15 05:09:17'), - (1494,327,1,'2006-02-15 05:09:17'), - (1495,327,2,'2006-02-15 05:09:17'), - (1496,327,2,'2006-02-15 05:09:17'), - (1497,328,2,'2006-02-15 05:09:17'), - (1498,328,2,'2006-02-15 05:09:17'), - (1499,328,2,'2006-02-15 05:09:17'), - (1500,328,2,'2006-02-15 05:09:17'), - (1501,329,1,'2006-02-15 05:09:17'), - (1502,329,1,'2006-02-15 05:09:17'), - (1503,329,1,'2006-02-15 05:09:17'), - (1504,329,2,'2006-02-15 05:09:17'), - (1505,329,2,'2006-02-15 05:09:17'), - (1506,329,2,'2006-02-15 05:09:17'), - (1507,330,1,'2006-02-15 05:09:17'), - (1508,330,1,'2006-02-15 05:09:17'), - (1509,330,1,'2006-02-15 05:09:17'), - (1510,330,1,'2006-02-15 05:09:17'), - (1511,330,2,'2006-02-15 05:09:17'), - (1512,330,2,'2006-02-15 05:09:17'), - (1513,330,2,'2006-02-15 05:09:17'), - (1514,331,1,'2006-02-15 05:09:17'), - (1515,331,1,'2006-02-15 05:09:17'), - (1516,331,1,'2006-02-15 05:09:17'), - (1517,331,1,'2006-02-15 05:09:17'), - (1518,331,2,'2006-02-15 05:09:17'), - (1519,331,2,'2006-02-15 05:09:17'), - (1520,331,2,'2006-02-15 05:09:17'), - (1521,331,2,'2006-02-15 05:09:17'), - (1522,333,1,'2006-02-15 05:09:17'), - (1523,333,1,'2006-02-15 05:09:17'), - (1524,333,2,'2006-02-15 05:09:17'), - (1525,333,2,'2006-02-15 05:09:17'), - (1526,334,1,'2006-02-15 05:09:17'), - (1527,334,1,'2006-02-15 05:09:17'), - (1528,334,2,'2006-02-15 05:09:17'), - (1529,334,2,'2006-02-15 05:09:17'), - (1530,334,2,'2006-02-15 05:09:17'), - (1531,334,2,'2006-02-15 05:09:17'), - (1532,335,1,'2006-02-15 05:09:17'), - (1533,335,1,'2006-02-15 05:09:17'), - (1534,336,1,'2006-02-15 05:09:17'), - (1535,336,1,'2006-02-15 05:09:17'), - (1536,336,1,'2006-02-15 05:09:17'), - (1537,336,2,'2006-02-15 05:09:17'), - (1538,336,2,'2006-02-15 05:09:17'), - (1539,337,1,'2006-02-15 05:09:17'), - (1540,337,1,'2006-02-15 05:09:17'), - (1541,337,2,'2006-02-15 05:09:17'), - (1542,337,2,'2006-02-15 05:09:17'), - (1543,338,2,'2006-02-15 05:09:17'), - (1544,338,2,'2006-02-15 05:09:17'), - (1545,338,2,'2006-02-15 05:09:17'), - (1546,339,2,'2006-02-15 05:09:17'), - (1547,339,2,'2006-02-15 05:09:17'), - (1548,339,2,'2006-02-15 05:09:17'), - (1549,340,1,'2006-02-15 05:09:17'), - (1550,340,1,'2006-02-15 05:09:17'), - (1551,341,1,'2006-02-15 05:09:17'), - (1552,341,1,'2006-02-15 05:09:17'), - (1553,341,1,'2006-02-15 05:09:17'), - (1554,341,1,'2006-02-15 05:09:17'), - (1555,341,2,'2006-02-15 05:09:17'), - (1556,341,2,'2006-02-15 05:09:17'), - (1557,341,2,'2006-02-15 05:09:17'), - (1558,341,2,'2006-02-15 05:09:17'), - (1559,342,1,'2006-02-15 05:09:17'), - (1560,342,1,'2006-02-15 05:09:17'), - (1561,342,1,'2006-02-15 05:09:17'), - (1562,342,1,'2006-02-15 05:09:17'), - (1563,343,1,'2006-02-15 05:09:17'), - (1564,343,1,'2006-02-15 05:09:17'), - (1565,344,1,'2006-02-15 05:09:17'), - (1566,344,1,'2006-02-15 05:09:17'), - (1567,344,1,'2006-02-15 05:09:17'), - (1568,344,2,'2006-02-15 05:09:17'), - (1569,344,2,'2006-02-15 05:09:17'), - (1570,345,1,'2006-02-15 05:09:17'), - (1571,345,1,'2006-02-15 05:09:17'), - (1572,345,1,'2006-02-15 05:09:17'), - (1573,345,2,'2006-02-15 05:09:17'), - (1574,345,2,'2006-02-15 05:09:17'), - (1575,346,1,'2006-02-15 05:09:17'), - (1576,346,1,'2006-02-15 05:09:17'), - (1577,346,2,'2006-02-15 05:09:17'), - (1578,346,2,'2006-02-15 05:09:17'), - (1579,346,2,'2006-02-15 05:09:17'), - (1580,346,2,'2006-02-15 05:09:17'), - (1581,347,1,'2006-02-15 05:09:17'), - (1582,347,1,'2006-02-15 05:09:17'), - (1583,347,1,'2006-02-15 05:09:17'), - (1584,347,1,'2006-02-15 05:09:17'), - (1585,348,2,'2006-02-15 05:09:17'), - (1586,348,2,'2006-02-15 05:09:17'), - (1587,348,2,'2006-02-15 05:09:17'), - (1588,348,2,'2006-02-15 05:09:17'), - (1589,349,1,'2006-02-15 05:09:17'), - (1590,349,1,'2006-02-15 05:09:17'), - (1591,349,1,'2006-02-15 05:09:17'), - (1592,349,1,'2006-02-15 05:09:17'), - (1593,349,2,'2006-02-15 05:09:17'), - (1594,349,2,'2006-02-15 05:09:17'), - (1595,349,2,'2006-02-15 05:09:17'), - (1596,350,1,'2006-02-15 05:09:17'), - (1597,350,1,'2006-02-15 05:09:17'), - (1598,350,1,'2006-02-15 05:09:17'), - (1599,350,1,'2006-02-15 05:09:17'), - (1600,350,2,'2006-02-15 05:09:17'), - (1601,350,2,'2006-02-15 05:09:17'), - (1602,350,2,'2006-02-15 05:09:17'), - (1603,350,2,'2006-02-15 05:09:17'), - (1604,351,1,'2006-02-15 05:09:17'), - (1605,351,1,'2006-02-15 05:09:17'), - (1606,351,1,'2006-02-15 05:09:17'), - (1607,351,2,'2006-02-15 05:09:17'), - (1608,351,2,'2006-02-15 05:09:17'), - (1609,351,2,'2006-02-15 05:09:17'), - (1610,352,2,'2006-02-15 05:09:17'), - (1611,352,2,'2006-02-15 05:09:17'), - (1612,352,2,'2006-02-15 05:09:17'), - (1613,352,2,'2006-02-15 05:09:17'), - (1614,353,1,'2006-02-15 05:09:17'), - (1615,353,1,'2006-02-15 05:09:17'), - (1616,353,2,'2006-02-15 05:09:17'), - (1617,353,2,'2006-02-15 05:09:17'), - (1618,353,2,'2006-02-15 05:09:17'), - (1619,353,2,'2006-02-15 05:09:17'), - (1620,354,1,'2006-02-15 05:09:17'), - (1621,354,1,'2006-02-15 05:09:17'), - (1622,354,1,'2006-02-15 05:09:17'), - (1623,354,2,'2006-02-15 05:09:17'), - (1624,354,2,'2006-02-15 05:09:17'), - (1625,355,2,'2006-02-15 05:09:17'), - (1626,355,2,'2006-02-15 05:09:17'), - (1627,356,1,'2006-02-15 05:09:17'), - (1628,356,1,'2006-02-15 05:09:17'), - (1629,356,1,'2006-02-15 05:09:17'), - (1630,356,1,'2006-02-15 05:09:17'), - (1631,356,2,'2006-02-15 05:09:17'), - (1632,356,2,'2006-02-15 05:09:17'), - (1633,356,2,'2006-02-15 05:09:17'), - (1634,356,2,'2006-02-15 05:09:17'), - (1635,357,2,'2006-02-15 05:09:17'), - (1636,357,2,'2006-02-15 05:09:17'), - (1637,357,2,'2006-02-15 05:09:17'), - (1638,357,2,'2006-02-15 05:09:17'), - (1639,358,1,'2006-02-15 05:09:17'), - (1640,358,1,'2006-02-15 05:09:17'), - (1641,358,1,'2006-02-15 05:09:17'), - (1642,358,1,'2006-02-15 05:09:17'), - (1643,358,2,'2006-02-15 05:09:17'), - (1644,358,2,'2006-02-15 05:09:17'), - (1645,358,2,'2006-02-15 05:09:17'), - (1646,358,2,'2006-02-15 05:09:17'), - (1647,360,1,'2006-02-15 05:09:17'), - (1648,360,1,'2006-02-15 05:09:17'), - (1649,360,1,'2006-02-15 05:09:17'), - (1650,360,1,'2006-02-15 05:09:17'), - (1651,361,1,'2006-02-15 05:09:17'), - (1652,361,1,'2006-02-15 05:09:17'), - (1653,361,1,'2006-02-15 05:09:17'), - (1654,361,1,'2006-02-15 05:09:17'), - (1655,361,2,'2006-02-15 05:09:17'), - (1656,361,2,'2006-02-15 05:09:17'), - (1657,361,2,'2006-02-15 05:09:17'), - (1658,361,2,'2006-02-15 05:09:17'), - (1659,362,1,'2006-02-15 05:09:17'), - (1660,362,1,'2006-02-15 05:09:17'), - (1661,363,1,'2006-02-15 05:09:17'), - (1662,363,1,'2006-02-15 05:09:17'), - (1663,363,1,'2006-02-15 05:09:17'), - (1664,363,2,'2006-02-15 05:09:17'), - (1665,363,2,'2006-02-15 05:09:17'), - (1666,363,2,'2006-02-15 05:09:17'), - (1667,364,1,'2006-02-15 05:09:17'), - (1668,364,1,'2006-02-15 05:09:17'), - (1669,364,1,'2006-02-15 05:09:17'), - (1670,365,1,'2006-02-15 05:09:17'), - (1671,365,1,'2006-02-15 05:09:17'), - (1672,365,2,'2006-02-15 05:09:17'), - (1673,365,2,'2006-02-15 05:09:17'), - (1674,366,1,'2006-02-15 05:09:17'), - (1675,366,1,'2006-02-15 05:09:17'), - (1676,366,1,'2006-02-15 05:09:17'), - (1677,366,1,'2006-02-15 05:09:17'), - (1678,366,2,'2006-02-15 05:09:17'), - (1679,366,2,'2006-02-15 05:09:17'), - (1680,366,2,'2006-02-15 05:09:17'), - (1681,367,1,'2006-02-15 05:09:17'), - (1682,367,1,'2006-02-15 05:09:17'), - (1683,367,1,'2006-02-15 05:09:17'), - (1684,367,1,'2006-02-15 05:09:17'), - (1685,367,2,'2006-02-15 05:09:17'), - (1686,367,2,'2006-02-15 05:09:17'), - (1687,367,2,'2006-02-15 05:09:17'), - (1688,368,1,'2006-02-15 05:09:17'), - (1689,368,1,'2006-02-15 05:09:17'), - (1690,369,1,'2006-02-15 05:09:17'), - (1691,369,1,'2006-02-15 05:09:17'), - (1692,369,1,'2006-02-15 05:09:17'), - (1693,369,1,'2006-02-15 05:09:17'), - (1694,369,2,'2006-02-15 05:09:17'), - (1695,369,2,'2006-02-15 05:09:17'), - (1696,369,2,'2006-02-15 05:09:17'), - (1697,369,2,'2006-02-15 05:09:17'), - (1698,370,1,'2006-02-15 05:09:17'), - (1699,370,1,'2006-02-15 05:09:17'), - (1700,370,1,'2006-02-15 05:09:17'), - (1701,370,2,'2006-02-15 05:09:17'), - (1702,370,2,'2006-02-15 05:09:17'), - (1703,371,1,'2006-02-15 05:09:17'), - (1704,371,1,'2006-02-15 05:09:17'), - (1705,371,1,'2006-02-15 05:09:17'), - (1706,372,1,'2006-02-15 05:09:17'), - (1707,372,1,'2006-02-15 05:09:17'), - (1708,373,1,'2006-02-15 05:09:17'), - (1709,373,1,'2006-02-15 05:09:17'), - (1710,373,1,'2006-02-15 05:09:17'), - (1711,373,2,'2006-02-15 05:09:17'), - (1712,373,2,'2006-02-15 05:09:17'), - (1713,374,1,'2006-02-15 05:09:17'), - (1714,374,1,'2006-02-15 05:09:17'), - (1715,374,1,'2006-02-15 05:09:17'), - (1716,374,2,'2006-02-15 05:09:17'), - (1717,374,2,'2006-02-15 05:09:17'), - (1718,374,2,'2006-02-15 05:09:17'), - (1719,374,2,'2006-02-15 05:09:17'), - (1720,375,1,'2006-02-15 05:09:17'), - (1721,375,1,'2006-02-15 05:09:17'), - (1722,376,1,'2006-02-15 05:09:17'), - (1723,376,1,'2006-02-15 05:09:17'), - (1724,376,1,'2006-02-15 05:09:17'), - (1725,376,1,'2006-02-15 05:09:17'), - (1726,376,2,'2006-02-15 05:09:17'), - (1727,376,2,'2006-02-15 05:09:17'), - (1728,376,2,'2006-02-15 05:09:17'), - (1729,377,1,'2006-02-15 05:09:17'), - (1730,377,1,'2006-02-15 05:09:17'), - (1731,377,1,'2006-02-15 05:09:17'), - (1732,377,2,'2006-02-15 05:09:17'), - (1733,377,2,'2006-02-15 05:09:17'), - (1734,377,2,'2006-02-15 05:09:17'), - (1735,378,1,'2006-02-15 05:09:17'), - (1736,378,1,'2006-02-15 05:09:17'), - (1737,378,1,'2006-02-15 05:09:17'), - (1738,378,1,'2006-02-15 05:09:17'), - (1739,378,2,'2006-02-15 05:09:17'), - (1740,378,2,'2006-02-15 05:09:17'), - (1741,378,2,'2006-02-15 05:09:17'), - (1742,378,2,'2006-02-15 05:09:17'), - (1743,379,2,'2006-02-15 05:09:17'), - (1744,379,2,'2006-02-15 05:09:17'), - (1745,379,2,'2006-02-15 05:09:17'), - (1746,379,2,'2006-02-15 05:09:17'), - (1747,380,1,'2006-02-15 05:09:17'), - (1748,380,1,'2006-02-15 05:09:17'), - (1749,380,2,'2006-02-15 05:09:17'), - (1750,380,2,'2006-02-15 05:09:17'), - (1751,380,2,'2006-02-15 05:09:17'), - (1752,381,1,'2006-02-15 05:09:17'), - (1753,381,1,'2006-02-15 05:09:17'), - (1754,381,2,'2006-02-15 05:09:17'), - (1755,381,2,'2006-02-15 05:09:17'), - (1756,381,2,'2006-02-15 05:09:17'), - (1757,382,1,'2006-02-15 05:09:17'), - (1758,382,1,'2006-02-15 05:09:17'), - (1759,382,1,'2006-02-15 05:09:17'), - (1760,382,1,'2006-02-15 05:09:17'), - (1761,382,2,'2006-02-15 05:09:17'), - (1762,382,2,'2006-02-15 05:09:17'), - (1763,382,2,'2006-02-15 05:09:17'), - (1764,382,2,'2006-02-15 05:09:17'), - (1765,383,1,'2006-02-15 05:09:17'), - (1766,383,1,'2006-02-15 05:09:17'), - (1767,383,1,'2006-02-15 05:09:17'), - (1768,383,2,'2006-02-15 05:09:17'), - (1769,383,2,'2006-02-15 05:09:17'), - (1770,384,2,'2006-02-15 05:09:17'), - (1771,384,2,'2006-02-15 05:09:17'), - (1772,384,2,'2006-02-15 05:09:17'), - (1773,385,1,'2006-02-15 05:09:17'), - (1774,385,1,'2006-02-15 05:09:17'), - (1775,385,2,'2006-02-15 05:09:17'), - (1776,385,2,'2006-02-15 05:09:17'), - (1777,385,2,'2006-02-15 05:09:17'), - (1778,387,1,'2006-02-15 05:09:17'), - (1779,387,1,'2006-02-15 05:09:17'), - (1780,387,1,'2006-02-15 05:09:17'), - (1781,387,2,'2006-02-15 05:09:17'), - (1782,387,2,'2006-02-15 05:09:17'), - (1783,387,2,'2006-02-15 05:09:17'), - (1784,388,1,'2006-02-15 05:09:17'), - (1785,388,1,'2006-02-15 05:09:17'), - (1786,388,1,'2006-02-15 05:09:17'), - (1787,388,2,'2006-02-15 05:09:17'), - (1788,388,2,'2006-02-15 05:09:17'), - (1789,388,2,'2006-02-15 05:09:17'), - (1790,389,1,'2006-02-15 05:09:17'), - (1791,389,1,'2006-02-15 05:09:17'), - (1792,389,2,'2006-02-15 05:09:17'), - (1793,389,2,'2006-02-15 05:09:17'), - (1794,390,1,'2006-02-15 05:09:17'), - (1795,390,1,'2006-02-15 05:09:17'), - (1796,390,1,'2006-02-15 05:09:17'), - (1797,391,1,'2006-02-15 05:09:17'), - (1798,391,1,'2006-02-15 05:09:17'), - (1799,391,1,'2006-02-15 05:09:17'), - (1800,391,1,'2006-02-15 05:09:17'), - (1801,391,2,'2006-02-15 05:09:17'), - (1802,391,2,'2006-02-15 05:09:17'), - (1803,391,2,'2006-02-15 05:09:17'), - (1804,392,1,'2006-02-15 05:09:17'), - (1805,392,1,'2006-02-15 05:09:17'), - (1806,392,1,'2006-02-15 05:09:17'), - (1807,392,1,'2006-02-15 05:09:17'), - (1808,392,2,'2006-02-15 05:09:17'), - (1809,392,2,'2006-02-15 05:09:17'), - (1810,393,1,'2006-02-15 05:09:17'), - (1811,393,1,'2006-02-15 05:09:17'), - (1812,394,1,'2006-02-15 05:09:17'), - (1813,394,1,'2006-02-15 05:09:17'), - (1814,394,1,'2006-02-15 05:09:17'), - (1815,394,1,'2006-02-15 05:09:17'), - (1816,395,1,'2006-02-15 05:09:17'), - (1817,395,1,'2006-02-15 05:09:17'), - (1818,395,1,'2006-02-15 05:09:17'), - (1819,395,2,'2006-02-15 05:09:17'), - (1820,395,2,'2006-02-15 05:09:17'), - (1821,395,2,'2006-02-15 05:09:17'), - (1822,396,2,'2006-02-15 05:09:17'), - (1823,396,2,'2006-02-15 05:09:17'), - (1824,396,2,'2006-02-15 05:09:17'), - (1825,396,2,'2006-02-15 05:09:17'), - (1826,397,1,'2006-02-15 05:09:17'), - (1827,397,1,'2006-02-15 05:09:17'), - (1828,397,1,'2006-02-15 05:09:17'), - (1829,397,2,'2006-02-15 05:09:17'), - (1830,397,2,'2006-02-15 05:09:17'), - (1831,397,2,'2006-02-15 05:09:17'), - (1832,397,2,'2006-02-15 05:09:17'), - (1833,398,2,'2006-02-15 05:09:17'), - (1834,398,2,'2006-02-15 05:09:17'), - (1835,398,2,'2006-02-15 05:09:17'), - (1836,398,2,'2006-02-15 05:09:17'), - (1837,399,2,'2006-02-15 05:09:17'), - (1838,399,2,'2006-02-15 05:09:17'), - (1839,400,1,'2006-02-15 05:09:17'), - (1840,400,1,'2006-02-15 05:09:17'), - (1841,401,1,'2006-02-15 05:09:17'), - (1842,401,1,'2006-02-15 05:09:17'), - (1843,402,1,'2006-02-15 05:09:17'), - (1844,402,1,'2006-02-15 05:09:17'), - (1845,402,1,'2006-02-15 05:09:17'), - (1846,402,2,'2006-02-15 05:09:17'), - (1847,402,2,'2006-02-15 05:09:17'), - (1848,402,2,'2006-02-15 05:09:17'), - (1849,403,1,'2006-02-15 05:09:17'), - (1850,403,1,'2006-02-15 05:09:17'), - (1851,403,1,'2006-02-15 05:09:17'), - (1852,403,1,'2006-02-15 05:09:17'), - (1853,403,2,'2006-02-15 05:09:17'), - (1854,403,2,'2006-02-15 05:09:17'), - (1855,403,2,'2006-02-15 05:09:17'), - (1856,403,2,'2006-02-15 05:09:17'), - (1857,405,2,'2006-02-15 05:09:17'), - (1858,405,2,'2006-02-15 05:09:17'), - (1859,406,1,'2006-02-15 05:09:17'), - (1860,406,1,'2006-02-15 05:09:17'), - (1861,406,2,'2006-02-15 05:09:17'), - (1862,406,2,'2006-02-15 05:09:17'), - (1863,406,2,'2006-02-15 05:09:17'), - (1864,406,2,'2006-02-15 05:09:17'), - (1865,407,1,'2006-02-15 05:09:17'), - (1866,407,1,'2006-02-15 05:09:17'), - (1867,408,1,'2006-02-15 05:09:17'), - (1868,408,1,'2006-02-15 05:09:17'), - (1869,408,1,'2006-02-15 05:09:17'), - (1870,408,1,'2006-02-15 05:09:17'), - (1871,408,2,'2006-02-15 05:09:17'), - (1872,408,2,'2006-02-15 05:09:17'), - (1873,408,2,'2006-02-15 05:09:17'), - (1874,409,1,'2006-02-15 05:09:17'), - (1875,409,1,'2006-02-15 05:09:17'), - (1876,409,1,'2006-02-15 05:09:17'), - (1877,409,1,'2006-02-15 05:09:17'), - (1878,409,2,'2006-02-15 05:09:17'), - (1879,409,2,'2006-02-15 05:09:17'), - (1880,409,2,'2006-02-15 05:09:17'), - (1881,410,1,'2006-02-15 05:09:17'), - (1882,410,1,'2006-02-15 05:09:17'), - (1883,410,1,'2006-02-15 05:09:17'), - (1884,410,2,'2006-02-15 05:09:17'), - (1885,410,2,'2006-02-15 05:09:17'), - (1886,411,1,'2006-02-15 05:09:17'), - (1887,411,1,'2006-02-15 05:09:17'), - (1888,412,1,'2006-02-15 05:09:17'), - (1889,412,1,'2006-02-15 05:09:17'), - (1890,412,1,'2006-02-15 05:09:17'), - (1891,412,1,'2006-02-15 05:09:17'), - (1892,412,2,'2006-02-15 05:09:17'), - (1893,412,2,'2006-02-15 05:09:17'), - (1894,412,2,'2006-02-15 05:09:17'), - (1895,412,2,'2006-02-15 05:09:17'), - (1896,413,1,'2006-02-15 05:09:17'), - (1897,413,1,'2006-02-15 05:09:17'), - (1898,413,1,'2006-02-15 05:09:17'), - (1899,414,1,'2006-02-15 05:09:17'), - (1900,414,1,'2006-02-15 05:09:17'), - (1901,414,1,'2006-02-15 05:09:17'), - (1902,414,2,'2006-02-15 05:09:17'), - (1903,414,2,'2006-02-15 05:09:17'), - (1904,414,2,'2006-02-15 05:09:17'), - (1905,415,1,'2006-02-15 05:09:17'), - (1906,415,1,'2006-02-15 05:09:17'), - (1907,415,1,'2006-02-15 05:09:17'), - (1908,415,2,'2006-02-15 05:09:17'), - (1909,415,2,'2006-02-15 05:09:17'), - (1910,415,2,'2006-02-15 05:09:17'), - (1911,416,1,'2006-02-15 05:09:17'), - (1912,416,1,'2006-02-15 05:09:17'), - (1913,416,2,'2006-02-15 05:09:17'), - (1914,416,2,'2006-02-15 05:09:17'), - (1915,416,2,'2006-02-15 05:09:17'), - (1916,416,2,'2006-02-15 05:09:17'), - (1917,417,1,'2006-02-15 05:09:17'), - (1918,417,1,'2006-02-15 05:09:17'), - (1919,417,1,'2006-02-15 05:09:17'), - (1920,417,1,'2006-02-15 05:09:17'), - (1921,417,2,'2006-02-15 05:09:17'), - (1922,417,2,'2006-02-15 05:09:17'), - (1923,418,1,'2006-02-15 05:09:17'), - (1924,418,1,'2006-02-15 05:09:17'), - (1925,418,1,'2006-02-15 05:09:17'), - (1926,418,1,'2006-02-15 05:09:17'), - (1927,418,2,'2006-02-15 05:09:17'), - (1928,418,2,'2006-02-15 05:09:17'), - (1929,418,2,'2006-02-15 05:09:17'), - (1930,418,2,'2006-02-15 05:09:17'), - (1931,420,1,'2006-02-15 05:09:17'), - (1932,420,1,'2006-02-15 05:09:17'), - (1933,420,2,'2006-02-15 05:09:17'), - (1934,420,2,'2006-02-15 05:09:17'), - (1935,420,2,'2006-02-15 05:09:17'), - (1936,421,2,'2006-02-15 05:09:17'), - (1937,421,2,'2006-02-15 05:09:17'), - (1938,421,2,'2006-02-15 05:09:17'), - (1939,421,2,'2006-02-15 05:09:17'), - (1940,422,2,'2006-02-15 05:09:17'), - (1941,422,2,'2006-02-15 05:09:17'), - (1942,423,1,'2006-02-15 05:09:17'), - (1943,423,1,'2006-02-15 05:09:17'), - (1944,423,2,'2006-02-15 05:09:17'), - (1945,423,2,'2006-02-15 05:09:17'), - (1946,424,1,'2006-02-15 05:09:17'), - (1947,424,1,'2006-02-15 05:09:17'), - (1948,424,1,'2006-02-15 05:09:17'), - (1949,424,2,'2006-02-15 05:09:17'), - (1950,424,2,'2006-02-15 05:09:17'), - (1951,425,2,'2006-02-15 05:09:17'), - (1952,425,2,'2006-02-15 05:09:17'), - (1953,426,2,'2006-02-15 05:09:17'), - (1954,426,2,'2006-02-15 05:09:17'), - (1955,426,2,'2006-02-15 05:09:17'), - (1956,427,1,'2006-02-15 05:09:17'), - (1957,427,1,'2006-02-15 05:09:17'), - (1958,427,1,'2006-02-15 05:09:17'), - (1959,427,1,'2006-02-15 05:09:17'), - (1960,428,1,'2006-02-15 05:09:17'), - (1961,428,1,'2006-02-15 05:09:17'), - (1962,428,1,'2006-02-15 05:09:17'), - (1963,428,1,'2006-02-15 05:09:17'), - (1964,428,2,'2006-02-15 05:09:17'), - (1965,428,2,'2006-02-15 05:09:17'), - (1966,429,1,'2006-02-15 05:09:17'), - (1967,429,1,'2006-02-15 05:09:17'), - (1968,429,2,'2006-02-15 05:09:17'), - (1969,429,2,'2006-02-15 05:09:17'), - (1970,429,2,'2006-02-15 05:09:17'), - (1971,429,2,'2006-02-15 05:09:17'), - (1972,430,2,'2006-02-15 05:09:17'), - (1973,430,2,'2006-02-15 05:09:17'), - (1974,430,2,'2006-02-15 05:09:17'), - (1975,430,2,'2006-02-15 05:09:17'), - (1976,431,2,'2006-02-15 05:09:17'), - (1977,431,2,'2006-02-15 05:09:17'), - (1978,431,2,'2006-02-15 05:09:17'), - (1979,432,1,'2006-02-15 05:09:17'), - (1980,432,1,'2006-02-15 05:09:17'), - (1981,432,1,'2006-02-15 05:09:17'), - (1982,432,2,'2006-02-15 05:09:17'), - (1983,432,2,'2006-02-15 05:09:17'), - (1984,433,1,'2006-02-15 05:09:17'), - (1985,433,1,'2006-02-15 05:09:17'), - (1986,433,1,'2006-02-15 05:09:17'), - (1987,433,1,'2006-02-15 05:09:17'), - (1988,433,2,'2006-02-15 05:09:17'), - (1989,433,2,'2006-02-15 05:09:17'), - (1990,434,1,'2006-02-15 05:09:17'), - (1991,434,1,'2006-02-15 05:09:17'), - (1992,434,1,'2006-02-15 05:09:17'), - (1993,434,1,'2006-02-15 05:09:17'), - (1994,434,2,'2006-02-15 05:09:17'), - (1995,434,2,'2006-02-15 05:09:17'), - (1996,434,2,'2006-02-15 05:09:17'), - (1997,434,2,'2006-02-15 05:09:17'), - (1998,435,1,'2006-02-15 05:09:17'), - (1999,435,1,'2006-02-15 05:09:17'), - (2000,436,1,'2006-02-15 05:09:17'), - (2001,436,1,'2006-02-15 05:09:17'), - (2002,436,1,'2006-02-15 05:09:17'), - (2003,436,2,'2006-02-15 05:09:17'), - (2004,436,2,'2006-02-15 05:09:17'), - (2005,436,2,'2006-02-15 05:09:17'), - (2006,437,1,'2006-02-15 05:09:17'), - (2007,437,1,'2006-02-15 05:09:17'), - (2008,437,2,'2006-02-15 05:09:17'), - (2009,437,2,'2006-02-15 05:09:17'), - (2010,437,2,'2006-02-15 05:09:17'), - (2011,437,2,'2006-02-15 05:09:17'), - (2012,438,1,'2006-02-15 05:09:17'), - (2013,438,1,'2006-02-15 05:09:17'), - (2014,438,2,'2006-02-15 05:09:17'), - (2015,438,2,'2006-02-15 05:09:17'), - (2016,438,2,'2006-02-15 05:09:17'), - (2017,439,1,'2006-02-15 05:09:17'), - (2018,439,1,'2006-02-15 05:09:17'), - (2019,439,1,'2006-02-15 05:09:17'), - (2020,439,1,'2006-02-15 05:09:17'), - (2021,439,2,'2006-02-15 05:09:17'), - (2022,439,2,'2006-02-15 05:09:17'), - (2023,440,1,'2006-02-15 05:09:17'), - (2024,440,1,'2006-02-15 05:09:17'), - (2025,440,2,'2006-02-15 05:09:17'), - (2026,440,2,'2006-02-15 05:09:17'), - (2027,441,1,'2006-02-15 05:09:17'), - (2028,441,1,'2006-02-15 05:09:17'), - (2029,442,1,'2006-02-15 05:09:17'), - (2030,442,1,'2006-02-15 05:09:17'), - (2031,442,1,'2006-02-15 05:09:17'), - (2032,443,1,'2006-02-15 05:09:17'), - (2033,443,1,'2006-02-15 05:09:17'), - (2034,443,1,'2006-02-15 05:09:17'), - (2035,443,2,'2006-02-15 05:09:17'), - (2036,443,2,'2006-02-15 05:09:17'), - (2037,443,2,'2006-02-15 05:09:17'), - (2038,443,2,'2006-02-15 05:09:17'), - (2039,444,1,'2006-02-15 05:09:17'), - (2040,444,1,'2006-02-15 05:09:17'), - (2041,444,1,'2006-02-15 05:09:17'), - (2042,444,1,'2006-02-15 05:09:17'), - (2043,444,2,'2006-02-15 05:09:17'), - (2044,444,2,'2006-02-15 05:09:17'), - (2045,444,2,'2006-02-15 05:09:17'), - (2046,444,2,'2006-02-15 05:09:17'), - (2047,445,1,'2006-02-15 05:09:17'), - (2048,445,1,'2006-02-15 05:09:17'), - (2049,445,1,'2006-02-15 05:09:17'), - (2050,445,2,'2006-02-15 05:09:17'), - (2051,445,2,'2006-02-15 05:09:17'), - (2052,445,2,'2006-02-15 05:09:17'), - (2053,446,1,'2006-02-15 05:09:17'), - (2054,446,1,'2006-02-15 05:09:17'), - (2055,446,2,'2006-02-15 05:09:17'), - (2056,446,2,'2006-02-15 05:09:17'), - (2057,447,1,'2006-02-15 05:09:17'), - (2058,447,1,'2006-02-15 05:09:17'), - (2059,447,1,'2006-02-15 05:09:17'), - (2060,447,1,'2006-02-15 05:09:17'), - (2061,447,2,'2006-02-15 05:09:17'), - (2062,447,2,'2006-02-15 05:09:17'), - (2063,447,2,'2006-02-15 05:09:17'), - (2064,448,1,'2006-02-15 05:09:17'), - (2065,448,1,'2006-02-15 05:09:17'), - (2066,448,2,'2006-02-15 05:09:17'), - (2067,448,2,'2006-02-15 05:09:17'), - (2068,448,2,'2006-02-15 05:09:17'), - (2069,449,2,'2006-02-15 05:09:17'), - (2070,449,2,'2006-02-15 05:09:17'), - (2071,449,2,'2006-02-15 05:09:17'), - (2072,449,2,'2006-02-15 05:09:17'), - (2073,450,1,'2006-02-15 05:09:17'), - (2074,450,1,'2006-02-15 05:09:17'), - (2075,450,1,'2006-02-15 05:09:17'), - (2076,450,2,'2006-02-15 05:09:17'), - (2077,450,2,'2006-02-15 05:09:17'), - (2078,450,2,'2006-02-15 05:09:17'), - (2079,450,2,'2006-02-15 05:09:17'), - (2080,451,1,'2006-02-15 05:09:17'), - (2081,451,1,'2006-02-15 05:09:17'), - (2082,451,2,'2006-02-15 05:09:17'), - (2083,451,2,'2006-02-15 05:09:17'), - (2084,451,2,'2006-02-15 05:09:17'), - (2085,452,2,'2006-02-15 05:09:17'), - (2086,452,2,'2006-02-15 05:09:17'), - (2087,452,2,'2006-02-15 05:09:17'), - (2088,452,2,'2006-02-15 05:09:17'), - (2089,453,1,'2006-02-15 05:09:17'), - (2090,453,1,'2006-02-15 05:09:17'), - (2091,453,1,'2006-02-15 05:09:17'), - (2092,453,2,'2006-02-15 05:09:17'), - (2093,453,2,'2006-02-15 05:09:17'), - (2094,454,1,'2006-02-15 05:09:17'), - (2095,454,1,'2006-02-15 05:09:17'), - (2096,455,1,'2006-02-15 05:09:17'), - (2097,455,1,'2006-02-15 05:09:17'), - (2098,455,1,'2006-02-15 05:09:17'), - (2099,455,1,'2006-02-15 05:09:17'), - (2100,456,1,'2006-02-15 05:09:17'), - (2101,456,1,'2006-02-15 05:09:17'), - (2102,456,2,'2006-02-15 05:09:17'), - (2103,456,2,'2006-02-15 05:09:17'), - (2104,456,2,'2006-02-15 05:09:17'), - (2105,456,2,'2006-02-15 05:09:17'), - (2106,457,1,'2006-02-15 05:09:17'), - (2107,457,1,'2006-02-15 05:09:17'), - (2108,457,2,'2006-02-15 05:09:17'), - (2109,457,2,'2006-02-15 05:09:17'), - (2110,457,2,'2006-02-15 05:09:17'), - (2111,457,2,'2006-02-15 05:09:17'), - (2112,458,1,'2006-02-15 05:09:17'), - (2113,458,1,'2006-02-15 05:09:17'), - (2114,458,2,'2006-02-15 05:09:17'), - (2115,458,2,'2006-02-15 05:09:17'), - (2116,458,2,'2006-02-15 05:09:17'), - (2117,458,2,'2006-02-15 05:09:17'), - (2118,459,2,'2006-02-15 05:09:17'), - (2119,459,2,'2006-02-15 05:09:17'), - (2120,460,1,'2006-02-15 05:09:17'), - (2121,460,1,'2006-02-15 05:09:17'), - (2122,460,1,'2006-02-15 05:09:17'), - (2123,460,1,'2006-02-15 05:09:17'), - (2124,460,2,'2006-02-15 05:09:17'), - (2125,460,2,'2006-02-15 05:09:17'), - (2126,460,2,'2006-02-15 05:09:17'), - (2127,460,2,'2006-02-15 05:09:17'), - (2128,461,1,'2006-02-15 05:09:17'), - (2129,461,1,'2006-02-15 05:09:17'), - (2130,461,2,'2006-02-15 05:09:17'), - (2131,461,2,'2006-02-15 05:09:17'), - (2132,461,2,'2006-02-15 05:09:17'), - (2133,461,2,'2006-02-15 05:09:17'), - (2134,462,1,'2006-02-15 05:09:17'), - (2135,462,1,'2006-02-15 05:09:17'), - (2136,462,2,'2006-02-15 05:09:17'), - (2137,462,2,'2006-02-15 05:09:17'), - (2138,462,2,'2006-02-15 05:09:17'), - (2139,463,1,'2006-02-15 05:09:17'), - (2140,463,1,'2006-02-15 05:09:17'), - (2141,463,1,'2006-02-15 05:09:17'), - (2142,463,2,'2006-02-15 05:09:17'), - (2143,463,2,'2006-02-15 05:09:17'), - (2144,464,1,'2006-02-15 05:09:17'), - (2145,464,1,'2006-02-15 05:09:17'), - (2146,464,1,'2006-02-15 05:09:17'), - (2147,464,1,'2006-02-15 05:09:17'), - (2148,464,2,'2006-02-15 05:09:17'), - (2149,464,2,'2006-02-15 05:09:17'), - (2150,464,2,'2006-02-15 05:09:17'), - (2151,465,1,'2006-02-15 05:09:17'), - (2152,465,1,'2006-02-15 05:09:17'), - (2153,465,2,'2006-02-15 05:09:17'), - (2154,465,2,'2006-02-15 05:09:17'), - (2155,465,2,'2006-02-15 05:09:17'), - (2156,466,1,'2006-02-15 05:09:17'), - (2157,466,1,'2006-02-15 05:09:17'), - (2158,467,1,'2006-02-15 05:09:17'), - (2159,467,1,'2006-02-15 05:09:17'), - (2160,467,1,'2006-02-15 05:09:17'), - (2161,467,1,'2006-02-15 05:09:17'), - (2162,467,2,'2006-02-15 05:09:17'), - (2163,467,2,'2006-02-15 05:09:17'), - (2164,467,2,'2006-02-15 05:09:17'), - (2165,468,1,'2006-02-15 05:09:17'), - (2166,468,1,'2006-02-15 05:09:17'), - (2167,468,1,'2006-02-15 05:09:17'), - (2168,468,1,'2006-02-15 05:09:17'), - (2169,468,2,'2006-02-15 05:09:17'), - (2170,468,2,'2006-02-15 05:09:17'), - (2171,468,2,'2006-02-15 05:09:17'), - (2172,468,2,'2006-02-15 05:09:17'), - (2173,469,2,'2006-02-15 05:09:17'), - (2174,469,2,'2006-02-15 05:09:17'), - (2175,469,2,'2006-02-15 05:09:17'), - (2176,470,1,'2006-02-15 05:09:17'), - (2177,470,1,'2006-02-15 05:09:17'), - (2178,471,1,'2006-02-15 05:09:17'), - (2179,471,1,'2006-02-15 05:09:17'), - (2180,471,1,'2006-02-15 05:09:17'), - (2181,471,2,'2006-02-15 05:09:17'), - (2182,471,2,'2006-02-15 05:09:17'), - (2183,471,2,'2006-02-15 05:09:17'), - (2184,471,2,'2006-02-15 05:09:17'), - (2185,472,2,'2006-02-15 05:09:17'), - (2186,472,2,'2006-02-15 05:09:17'), - (2187,473,1,'2006-02-15 05:09:17'), - (2188,473,1,'2006-02-15 05:09:17'), - (2189,473,2,'2006-02-15 05:09:17'), - (2190,473,2,'2006-02-15 05:09:17'), - (2191,473,2,'2006-02-15 05:09:17'), - (2192,474,2,'2006-02-15 05:09:17'), - (2193,474,2,'2006-02-15 05:09:17'), - (2194,474,2,'2006-02-15 05:09:17'), - (2195,474,2,'2006-02-15 05:09:17'), - (2196,475,2,'2006-02-15 05:09:17'), - (2197,475,2,'2006-02-15 05:09:17'), - (2198,476,1,'2006-02-15 05:09:17'), - (2199,476,1,'2006-02-15 05:09:17'), - (2200,476,1,'2006-02-15 05:09:17'), - (2201,476,2,'2006-02-15 05:09:17'), - (2202,476,2,'2006-02-15 05:09:17'), - (2203,476,2,'2006-02-15 05:09:17'), - (2204,476,2,'2006-02-15 05:09:17'), - (2205,477,2,'2006-02-15 05:09:17'), - (2206,477,2,'2006-02-15 05:09:17'), - (2207,477,2,'2006-02-15 05:09:17'), - (2208,478,1,'2006-02-15 05:09:17'), - (2209,478,1,'2006-02-15 05:09:17'), - (2210,478,2,'2006-02-15 05:09:17'), - (2211,478,2,'2006-02-15 05:09:17'), - (2212,478,2,'2006-02-15 05:09:17'), - (2213,479,1,'2006-02-15 05:09:17'), - (2214,479,1,'2006-02-15 05:09:17'), - (2215,479,2,'2006-02-15 05:09:17'), - (2216,479,2,'2006-02-15 05:09:17'), - (2217,479,2,'2006-02-15 05:09:17'), - (2218,480,1,'2006-02-15 05:09:17'), - (2219,480,1,'2006-02-15 05:09:17'), - (2220,480,2,'2006-02-15 05:09:17'), - (2221,480,2,'2006-02-15 05:09:17'), - (2222,481,1,'2006-02-15 05:09:17'), - (2223,481,1,'2006-02-15 05:09:17'), - (2224,481,1,'2006-02-15 05:09:17'), - (2225,481,2,'2006-02-15 05:09:17'), - (2226,481,2,'2006-02-15 05:09:17'), - (2227,481,2,'2006-02-15 05:09:17'), - (2228,482,1,'2006-02-15 05:09:17'), - (2229,482,1,'2006-02-15 05:09:17'), - (2230,482,1,'2006-02-15 05:09:17'), - (2231,483,1,'2006-02-15 05:09:17'), - (2232,483,1,'2006-02-15 05:09:17'), - (2233,483,1,'2006-02-15 05:09:17'), - (2234,483,2,'2006-02-15 05:09:17'), - (2235,483,2,'2006-02-15 05:09:17'), - (2236,484,1,'2006-02-15 05:09:17'), - (2237,484,1,'2006-02-15 05:09:17'), - (2238,484,1,'2006-02-15 05:09:17'), - (2239,484,1,'2006-02-15 05:09:17'), - (2240,484,2,'2006-02-15 05:09:17'), - (2241,484,2,'2006-02-15 05:09:17'), - (2242,484,2,'2006-02-15 05:09:17'), - (2243,485,2,'2006-02-15 05:09:17'), - (2244,485,2,'2006-02-15 05:09:17'), - (2245,485,2,'2006-02-15 05:09:17'), - (2246,486,1,'2006-02-15 05:09:17'), - (2247,486,1,'2006-02-15 05:09:17'), - (2248,486,1,'2006-02-15 05:09:17'), - (2249,486,1,'2006-02-15 05:09:17'), - (2250,486,2,'2006-02-15 05:09:17'), - (2251,486,2,'2006-02-15 05:09:17'), - (2252,487,2,'2006-02-15 05:09:17'), - (2253,487,2,'2006-02-15 05:09:17'), - (2254,487,2,'2006-02-15 05:09:17'), - (2255,488,1,'2006-02-15 05:09:17'), - (2256,488,1,'2006-02-15 05:09:17'), - (2257,488,2,'2006-02-15 05:09:17'), - (2258,488,2,'2006-02-15 05:09:17'), - (2259,488,2,'2006-02-15 05:09:17'), - (2260,489,1,'2006-02-15 05:09:17'), - (2261,489,1,'2006-02-15 05:09:17'), - (2262,489,1,'2006-02-15 05:09:17'), - (2263,489,1,'2006-02-15 05:09:17'), - (2264,489,2,'2006-02-15 05:09:17'), - (2265,489,2,'2006-02-15 05:09:17'), - (2266,489,2,'2006-02-15 05:09:17'), - (2267,489,2,'2006-02-15 05:09:17'), - (2268,490,1,'2006-02-15 05:09:17'), - (2269,490,1,'2006-02-15 05:09:17'), - (2270,491,1,'2006-02-15 05:09:17'), - (2271,491,1,'2006-02-15 05:09:17'), - (2272,491,2,'2006-02-15 05:09:17'), - (2273,491,2,'2006-02-15 05:09:17'), - (2274,491,2,'2006-02-15 05:09:17'), - (2275,491,2,'2006-02-15 05:09:17'), - (2276,492,1,'2006-02-15 05:09:17'), - (2277,492,1,'2006-02-15 05:09:17'), - (2278,493,2,'2006-02-15 05:09:17'), - (2279,493,2,'2006-02-15 05:09:17'), - (2280,493,2,'2006-02-15 05:09:17'), - (2281,494,1,'2006-02-15 05:09:17'), - (2282,494,1,'2006-02-15 05:09:17'), - (2283,494,1,'2006-02-15 05:09:17'), - (2284,494,1,'2006-02-15 05:09:17'), - (2285,494,2,'2006-02-15 05:09:17'), - (2286,494,2,'2006-02-15 05:09:17'), - (2287,496,1,'2006-02-15 05:09:17'), - (2288,496,1,'2006-02-15 05:09:17'), - (2289,496,2,'2006-02-15 05:09:17'), - (2290,496,2,'2006-02-15 05:09:17'), - (2291,496,2,'2006-02-15 05:09:17'), - (2292,498,1,'2006-02-15 05:09:17'), - (2293,498,1,'2006-02-15 05:09:17'), - (2294,499,1,'2006-02-15 05:09:17'), - (2295,499,1,'2006-02-15 05:09:17'), - (2296,500,1,'2006-02-15 05:09:17'), - (2297,500,1,'2006-02-15 05:09:17'), - (2298,500,1,'2006-02-15 05:09:17'), - (2299,500,1,'2006-02-15 05:09:17'), - (2300,500,2,'2006-02-15 05:09:17'), - (2301,500,2,'2006-02-15 05:09:17'), - (2302,500,2,'2006-02-15 05:09:17'), - (2303,500,2,'2006-02-15 05:09:17'), - (2304,501,1,'2006-02-15 05:09:17'), - (2305,501,1,'2006-02-15 05:09:17'), - (2306,501,1,'2006-02-15 05:09:17'), - (2307,501,2,'2006-02-15 05:09:17'), - (2308,501,2,'2006-02-15 05:09:17'), - (2309,502,1,'2006-02-15 05:09:17'), - (2310,502,1,'2006-02-15 05:09:17'), - (2311,502,1,'2006-02-15 05:09:17'), - (2312,502,1,'2006-02-15 05:09:17'), - (2313,502,2,'2006-02-15 05:09:17'), - (2314,502,2,'2006-02-15 05:09:17'), - (2315,502,2,'2006-02-15 05:09:17'), - (2316,503,1,'2006-02-15 05:09:17'), - (2317,503,1,'2006-02-15 05:09:17'), - (2318,503,1,'2006-02-15 05:09:17'), - (2319,504,1,'2006-02-15 05:09:17'), - (2320,504,1,'2006-02-15 05:09:17'), - (2321,504,1,'2006-02-15 05:09:17'), - (2322,504,1,'2006-02-15 05:09:17'), - (2323,504,2,'2006-02-15 05:09:17'), - (2324,504,2,'2006-02-15 05:09:17'), - (2325,505,2,'2006-02-15 05:09:17'), - (2326,505,2,'2006-02-15 05:09:17'), - (2327,505,2,'2006-02-15 05:09:17'), - (2328,505,2,'2006-02-15 05:09:17'), - (2329,506,1,'2006-02-15 05:09:17'), - (2330,506,1,'2006-02-15 05:09:17'), - (2331,506,1,'2006-02-15 05:09:17'), - (2332,506,1,'2006-02-15 05:09:17'), - (2333,506,2,'2006-02-15 05:09:17'), - (2334,506,2,'2006-02-15 05:09:17'), - (2335,507,2,'2006-02-15 05:09:17'), - (2336,507,2,'2006-02-15 05:09:17'), - (2337,508,2,'2006-02-15 05:09:17'), - (2338,508,2,'2006-02-15 05:09:17'), - (2339,508,2,'2006-02-15 05:09:17'), - (2340,509,2,'2006-02-15 05:09:17'), - (2341,509,2,'2006-02-15 05:09:17'), - (2342,509,2,'2006-02-15 05:09:17'), - (2343,510,1,'2006-02-15 05:09:17'), - (2344,510,1,'2006-02-15 05:09:17'), - (2345,510,1,'2006-02-15 05:09:17'), - (2346,510,1,'2006-02-15 05:09:17'), - (2347,511,1,'2006-02-15 05:09:17'), - (2348,511,1,'2006-02-15 05:09:17'), - (2349,511,2,'2006-02-15 05:09:17'), - (2350,511,2,'2006-02-15 05:09:17'), - (2351,511,2,'2006-02-15 05:09:17'), - (2352,512,1,'2006-02-15 05:09:17'), - (2353,512,1,'2006-02-15 05:09:17'), - (2354,512,2,'2006-02-15 05:09:17'), - (2355,512,2,'2006-02-15 05:09:17'), - (2356,512,2,'2006-02-15 05:09:17'), - (2357,512,2,'2006-02-15 05:09:17'), - (2358,513,2,'2006-02-15 05:09:17'), - (2359,513,2,'2006-02-15 05:09:17'), - (2360,514,1,'2006-02-15 05:09:17'), - (2361,514,1,'2006-02-15 05:09:17'), - (2362,514,2,'2006-02-15 05:09:17'), - (2363,514,2,'2006-02-15 05:09:17'), - (2364,514,2,'2006-02-15 05:09:17'), - (2365,514,2,'2006-02-15 05:09:17'), - (2366,515,2,'2006-02-15 05:09:17'), - (2367,515,2,'2006-02-15 05:09:17'), - (2368,516,2,'2006-02-15 05:09:17'), - (2369,516,2,'2006-02-15 05:09:17'), - (2370,516,2,'2006-02-15 05:09:17'), - (2371,517,2,'2006-02-15 05:09:17'), - (2372,517,2,'2006-02-15 05:09:17'), - (2373,518,1,'2006-02-15 05:09:17'), - (2374,518,1,'2006-02-15 05:09:17'), - (2375,518,2,'2006-02-15 05:09:17'), - (2376,518,2,'2006-02-15 05:09:17'), - (2377,518,2,'2006-02-15 05:09:17'), - (2378,518,2,'2006-02-15 05:09:17'), - (2379,519,2,'2006-02-15 05:09:17'), - (2380,519,2,'2006-02-15 05:09:17'), - (2381,519,2,'2006-02-15 05:09:17'), - (2382,519,2,'2006-02-15 05:09:17'), - (2383,520,1,'2006-02-15 05:09:17'), - (2384,520,1,'2006-02-15 05:09:17'), - (2385,521,1,'2006-02-15 05:09:17'), - (2386,521,1,'2006-02-15 05:09:17'), - (2387,521,1,'2006-02-15 05:09:17'), - (2388,521,1,'2006-02-15 05:09:17'), - (2389,521,2,'2006-02-15 05:09:17'), - (2390,521,2,'2006-02-15 05:09:17'), - (2391,521,2,'2006-02-15 05:09:17'), - (2392,522,2,'2006-02-15 05:09:17'), - (2393,522,2,'2006-02-15 05:09:17'), - (2394,523,1,'2006-02-15 05:09:17'), - (2395,523,1,'2006-02-15 05:09:17'), - (2396,524,1,'2006-02-15 05:09:17'), - (2397,524,1,'2006-02-15 05:09:17'), - (2398,524,2,'2006-02-15 05:09:17'), - (2399,524,2,'2006-02-15 05:09:17'), - (2400,524,2,'2006-02-15 05:09:17'), - (2401,524,2,'2006-02-15 05:09:17'), - (2402,525,1,'2006-02-15 05:09:17'), - (2403,525,1,'2006-02-15 05:09:17'), - (2404,525,1,'2006-02-15 05:09:17'), - (2405,525,1,'2006-02-15 05:09:17'), - (2406,525,2,'2006-02-15 05:09:17'), - (2407,525,2,'2006-02-15 05:09:17'), - (2408,525,2,'2006-02-15 05:09:17'), - (2409,525,2,'2006-02-15 05:09:17'), - (2410,526,2,'2006-02-15 05:09:17'), - (2411,526,2,'2006-02-15 05:09:17'), - (2412,526,2,'2006-02-15 05:09:17'), - (2413,526,2,'2006-02-15 05:09:17'), - (2414,527,1,'2006-02-15 05:09:17'), - (2415,527,1,'2006-02-15 05:09:17'), - (2416,527,2,'2006-02-15 05:09:17'), - (2417,527,2,'2006-02-15 05:09:17'), - (2418,527,2,'2006-02-15 05:09:17'), - (2419,527,2,'2006-02-15 05:09:17'), - (2420,528,1,'2006-02-15 05:09:17'), - (2421,528,1,'2006-02-15 05:09:17'), - (2422,528,1,'2006-02-15 05:09:17'), - (2423,529,1,'2006-02-15 05:09:17'), - (2424,529,1,'2006-02-15 05:09:17'), - (2425,529,1,'2006-02-15 05:09:17'), - (2426,529,1,'2006-02-15 05:09:17'), - (2427,530,1,'2006-02-15 05:09:17'), - (2428,530,1,'2006-02-15 05:09:17'), - (2429,530,1,'2006-02-15 05:09:17'), - (2430,531,1,'2006-02-15 05:09:17'), - (2431,531,1,'2006-02-15 05:09:17'), - (2432,531,1,'2006-02-15 05:09:17'), - (2433,531,1,'2006-02-15 05:09:17'), - (2434,531,2,'2006-02-15 05:09:17'), - (2435,531,2,'2006-02-15 05:09:17'), - (2436,531,2,'2006-02-15 05:09:17'), - (2437,531,2,'2006-02-15 05:09:17'), - (2438,532,2,'2006-02-15 05:09:17'), - (2439,532,2,'2006-02-15 05:09:17'), - (2440,532,2,'2006-02-15 05:09:17'), - (2441,532,2,'2006-02-15 05:09:17'), - (2442,533,1,'2006-02-15 05:09:17'), - (2443,533,1,'2006-02-15 05:09:17'), - (2444,533,1,'2006-02-15 05:09:17'), - (2445,534,1,'2006-02-15 05:09:17'), - (2446,534,1,'2006-02-15 05:09:17'), - (2447,534,2,'2006-02-15 05:09:17'), - (2448,534,2,'2006-02-15 05:09:17'), - (2449,534,2,'2006-02-15 05:09:17'), - (2450,535,1,'2006-02-15 05:09:17'), - (2451,535,1,'2006-02-15 05:09:17'), - (2452,535,1,'2006-02-15 05:09:17'), - (2453,535,1,'2006-02-15 05:09:17'), - (2454,536,1,'2006-02-15 05:09:17'), - (2455,536,1,'2006-02-15 05:09:17'), - (2456,536,1,'2006-02-15 05:09:17'), - (2457,536,2,'2006-02-15 05:09:17'), - (2458,536,2,'2006-02-15 05:09:17'), - (2459,537,2,'2006-02-15 05:09:17'), - (2460,537,2,'2006-02-15 05:09:17'), - (2461,537,2,'2006-02-15 05:09:17'), - (2462,538,2,'2006-02-15 05:09:17'), - (2463,538,2,'2006-02-15 05:09:17'), - (2464,538,2,'2006-02-15 05:09:17'), - (2465,539,1,'2006-02-15 05:09:17'), - (2466,539,1,'2006-02-15 05:09:17'), - (2467,540,1,'2006-02-15 05:09:17'), - (2468,540,1,'2006-02-15 05:09:17'), - (2469,540,1,'2006-02-15 05:09:17'), - (2470,541,2,'2006-02-15 05:09:17'), - (2471,541,2,'2006-02-15 05:09:17'), - (2472,542,1,'2006-02-15 05:09:17'), - (2473,542,1,'2006-02-15 05:09:17'), - (2474,542,1,'2006-02-15 05:09:17'), - (2475,542,1,'2006-02-15 05:09:17'), - (2476,542,2,'2006-02-15 05:09:17'), - (2477,542,2,'2006-02-15 05:09:17'), - (2478,543,1,'2006-02-15 05:09:17'), - (2479,543,1,'2006-02-15 05:09:17'), - (2480,544,1,'2006-02-15 05:09:17'), - (2481,544,1,'2006-02-15 05:09:17'), - (2482,544,2,'2006-02-15 05:09:17'), - (2483,544,2,'2006-02-15 05:09:17'), - (2484,545,1,'2006-02-15 05:09:17'), - (2485,545,1,'2006-02-15 05:09:17'), - (2486,545,1,'2006-02-15 05:09:17'), - (2487,545,1,'2006-02-15 05:09:17'), - (2488,545,2,'2006-02-15 05:09:17'), - (2489,545,2,'2006-02-15 05:09:17'), - (2490,546,2,'2006-02-15 05:09:17'), - (2491,546,2,'2006-02-15 05:09:17'), - (2492,546,2,'2006-02-15 05:09:17'), - (2493,546,2,'2006-02-15 05:09:17'), - (2494,547,2,'2006-02-15 05:09:17'), - (2495,547,2,'2006-02-15 05:09:17'), - (2496,548,1,'2006-02-15 05:09:17'), - (2497,548,1,'2006-02-15 05:09:17'), - (2498,549,1,'2006-02-15 05:09:17'), - (2499,549,1,'2006-02-15 05:09:17'), - (2500,549,2,'2006-02-15 05:09:17'), - (2501,549,2,'2006-02-15 05:09:17'), - (2502,550,1,'2006-02-15 05:09:17'), - (2503,550,1,'2006-02-15 05:09:17'), - (2504,550,1,'2006-02-15 05:09:17'), - (2505,551,1,'2006-02-15 05:09:17'), - (2506,551,1,'2006-02-15 05:09:17'), - (2507,551,1,'2006-02-15 05:09:17'), - (2508,551,2,'2006-02-15 05:09:17'), - (2509,551,2,'2006-02-15 05:09:17'), - (2510,551,2,'2006-02-15 05:09:17'), - (2511,552,2,'2006-02-15 05:09:17'), - (2512,552,2,'2006-02-15 05:09:17'), - (2513,552,2,'2006-02-15 05:09:17'), - (2514,552,2,'2006-02-15 05:09:17'), - (2515,553,2,'2006-02-15 05:09:17'), - (2516,553,2,'2006-02-15 05:09:17'), - (2517,553,2,'2006-02-15 05:09:17'), - (2518,554,1,'2006-02-15 05:09:17'), - (2519,554,1,'2006-02-15 05:09:17'), - (2520,554,1,'2006-02-15 05:09:17'), - (2521,554,1,'2006-02-15 05:09:17'), - (2522,554,2,'2006-02-15 05:09:17'), - (2523,554,2,'2006-02-15 05:09:17'), - (2524,554,2,'2006-02-15 05:09:17'), - (2525,555,1,'2006-02-15 05:09:17'), - (2526,555,1,'2006-02-15 05:09:17'), - (2527,555,1,'2006-02-15 05:09:17'), - (2528,555,2,'2006-02-15 05:09:17'), - (2529,555,2,'2006-02-15 05:09:17'), - (2530,555,2,'2006-02-15 05:09:17'), - (2531,555,2,'2006-02-15 05:09:17'), - (2532,556,1,'2006-02-15 05:09:17'), - (2533,556,1,'2006-02-15 05:09:17'), - (2534,556,1,'2006-02-15 05:09:17'), - (2535,556,2,'2006-02-15 05:09:17'), - (2536,556,2,'2006-02-15 05:09:17'), - (2537,556,2,'2006-02-15 05:09:17'), - (2538,556,2,'2006-02-15 05:09:17'), - (2539,557,1,'2006-02-15 05:09:17'), - (2540,557,1,'2006-02-15 05:09:17'), - (2541,557,2,'2006-02-15 05:09:17'), - (2542,557,2,'2006-02-15 05:09:17'), - (2543,557,2,'2006-02-15 05:09:17'), - (2544,558,2,'2006-02-15 05:09:17'), - (2545,558,2,'2006-02-15 05:09:17'), - (2546,559,1,'2006-02-15 05:09:17'), - (2547,559,1,'2006-02-15 05:09:17'), - (2548,559,1,'2006-02-15 05:09:17'), - (2549,559,1,'2006-02-15 05:09:17'), - (2550,559,2,'2006-02-15 05:09:17'), - (2551,559,2,'2006-02-15 05:09:17'), - (2552,559,2,'2006-02-15 05:09:17'), - (2553,559,2,'2006-02-15 05:09:17'), - (2554,560,1,'2006-02-15 05:09:17'), - (2555,560,1,'2006-02-15 05:09:17'), - (2556,560,1,'2006-02-15 05:09:17'), - (2557,560,2,'2006-02-15 05:09:17'), - (2558,560,2,'2006-02-15 05:09:17'), - (2559,561,1,'2006-02-15 05:09:17'), - (2560,561,1,'2006-02-15 05:09:17'), - (2561,561,1,'2006-02-15 05:09:17'), - (2562,561,1,'2006-02-15 05:09:17'), - (2563,562,1,'2006-02-15 05:09:17'), - (2564,562,1,'2006-02-15 05:09:17'), - (2565,562,1,'2006-02-15 05:09:17'), - (2566,562,1,'2006-02-15 05:09:17'), - (2567,562,2,'2006-02-15 05:09:17'), - (2568,562,2,'2006-02-15 05:09:17'), - (2569,563,1,'2006-02-15 05:09:17'), - (2570,563,1,'2006-02-15 05:09:17'), - (2571,563,1,'2006-02-15 05:09:17'), - (2572,563,1,'2006-02-15 05:09:17'), - (2573,563,2,'2006-02-15 05:09:17'), - (2574,563,2,'2006-02-15 05:09:17'), - (2575,563,2,'2006-02-15 05:09:17'), - (2576,564,2,'2006-02-15 05:09:17'), - (2577,564,2,'2006-02-15 05:09:17'), - (2578,564,2,'2006-02-15 05:09:17'), - (2579,565,1,'2006-02-15 05:09:17'), - (2580,565,1,'2006-02-15 05:09:17'), - (2581,566,1,'2006-02-15 05:09:17'), - (2582,566,1,'2006-02-15 05:09:17'), - (2583,567,1,'2006-02-15 05:09:17'), - (2584,567,1,'2006-02-15 05:09:17'), - (2585,567,2,'2006-02-15 05:09:17'), - (2586,567,2,'2006-02-15 05:09:17'), - (2587,568,1,'2006-02-15 05:09:17'), - (2588,568,1,'2006-02-15 05:09:17'), - (2589,568,2,'2006-02-15 05:09:17'), - (2590,568,2,'2006-02-15 05:09:17'), - (2591,569,1,'2006-02-15 05:09:17'), - (2592,569,1,'2006-02-15 05:09:17'), - (2593,570,1,'2006-02-15 05:09:17'), - (2594,570,1,'2006-02-15 05:09:17'), - (2595,570,2,'2006-02-15 05:09:17'), - (2596,570,2,'2006-02-15 05:09:17'), - (2597,570,2,'2006-02-15 05:09:17'), - (2598,571,1,'2006-02-15 05:09:17'), - (2599,571,1,'2006-02-15 05:09:17'), - (2600,571,2,'2006-02-15 05:09:17'), - (2601,571,2,'2006-02-15 05:09:17'), - (2602,571,2,'2006-02-15 05:09:17'), - (2603,571,2,'2006-02-15 05:09:17'), - (2604,572,1,'2006-02-15 05:09:17'), - (2605,572,1,'2006-02-15 05:09:17'), - (2606,572,1,'2006-02-15 05:09:17'), - (2607,572,1,'2006-02-15 05:09:17'), - (2608,572,2,'2006-02-15 05:09:17'), - (2609,572,2,'2006-02-15 05:09:17'), - (2610,572,2,'2006-02-15 05:09:17'), - (2611,572,2,'2006-02-15 05:09:17'), - (2612,573,1,'2006-02-15 05:09:17'), - (2613,573,1,'2006-02-15 05:09:17'), - (2614,573,1,'2006-02-15 05:09:17'), - (2615,573,1,'2006-02-15 05:09:17'), - (2616,574,1,'2006-02-15 05:09:17'), - (2617,574,1,'2006-02-15 05:09:17'), - (2618,574,2,'2006-02-15 05:09:17'), - (2619,574,2,'2006-02-15 05:09:17'), - (2620,574,2,'2006-02-15 05:09:17'), - (2621,575,1,'2006-02-15 05:09:17'), - (2622,575,1,'2006-02-15 05:09:17'), - (2623,575,2,'2006-02-15 05:09:17'), - (2624,575,2,'2006-02-15 05:09:17'), - (2625,575,2,'2006-02-15 05:09:17'), - (2626,575,2,'2006-02-15 05:09:17'), - (2627,576,2,'2006-02-15 05:09:17'), - (2628,576,2,'2006-02-15 05:09:17'), - (2629,576,2,'2006-02-15 05:09:17'), - (2630,577,1,'2006-02-15 05:09:17'), - (2631,577,1,'2006-02-15 05:09:17'), - (2632,577,1,'2006-02-15 05:09:17'), - (2633,578,1,'2006-02-15 05:09:17'), - (2634,578,1,'2006-02-15 05:09:17'), - (2635,578,2,'2006-02-15 05:09:17'), - (2636,578,2,'2006-02-15 05:09:17'), - (2637,578,2,'2006-02-15 05:09:17'), - (2638,579,1,'2006-02-15 05:09:17'), - (2639,579,1,'2006-02-15 05:09:17'), - (2640,579,1,'2006-02-15 05:09:17'), - (2641,579,1,'2006-02-15 05:09:17'), - (2642,579,2,'2006-02-15 05:09:17'), - (2643,579,2,'2006-02-15 05:09:17'), - (2644,579,2,'2006-02-15 05:09:17'), - (2645,580,1,'2006-02-15 05:09:17'), - (2646,580,1,'2006-02-15 05:09:17'), - (2647,580,1,'2006-02-15 05:09:17'), - (2648,580,1,'2006-02-15 05:09:17'), - (2649,580,2,'2006-02-15 05:09:17'), - (2650,580,2,'2006-02-15 05:09:17'), - (2651,581,1,'2006-02-15 05:09:17'), - (2652,581,1,'2006-02-15 05:09:17'), - (2653,581,1,'2006-02-15 05:09:17'), - (2654,582,2,'2006-02-15 05:09:17'), - (2655,582,2,'2006-02-15 05:09:17'), - (2656,583,1,'2006-02-15 05:09:17'), - (2657,583,1,'2006-02-15 05:09:17'), - (2658,583,1,'2006-02-15 05:09:17'), - (2659,583,2,'2006-02-15 05:09:17'), - (2660,583,2,'2006-02-15 05:09:17'), - (2661,584,1,'2006-02-15 05:09:17'), - (2662,584,1,'2006-02-15 05:09:17'), - (2663,585,2,'2006-02-15 05:09:17'), - (2664,585,2,'2006-02-15 05:09:17'), - (2665,585,2,'2006-02-15 05:09:17'), - (2666,585,2,'2006-02-15 05:09:17'), - (2667,586,1,'2006-02-15 05:09:17'), - (2668,586,1,'2006-02-15 05:09:17'), - (2669,586,1,'2006-02-15 05:09:17'), - (2670,586,1,'2006-02-15 05:09:17'), - (2671,586,2,'2006-02-15 05:09:17'), - (2672,586,2,'2006-02-15 05:09:17'), - (2673,586,2,'2006-02-15 05:09:17'), - (2674,586,2,'2006-02-15 05:09:17'), - (2675,587,1,'2006-02-15 05:09:17'), - (2676,587,1,'2006-02-15 05:09:17'), - (2677,587,1,'2006-02-15 05:09:17'), - (2678,588,2,'2006-02-15 05:09:17'), - (2679,588,2,'2006-02-15 05:09:17'), - (2680,588,2,'2006-02-15 05:09:17'), - (2681,588,2,'2006-02-15 05:09:17'), - (2682,589,2,'2006-02-15 05:09:17'), - (2683,589,2,'2006-02-15 05:09:17'), - (2684,589,2,'2006-02-15 05:09:17'), - (2685,589,2,'2006-02-15 05:09:17'), - (2686,590,1,'2006-02-15 05:09:17'), - (2687,590,1,'2006-02-15 05:09:17'), - (2688,590,1,'2006-02-15 05:09:17'), - (2689,590,2,'2006-02-15 05:09:17'), - (2690,590,2,'2006-02-15 05:09:17'), - (2691,590,2,'2006-02-15 05:09:17'), - (2692,590,2,'2006-02-15 05:09:17'), - (2693,591,2,'2006-02-15 05:09:17'), - (2694,591,2,'2006-02-15 05:09:17'), - (2695,591,2,'2006-02-15 05:09:17'), - (2696,592,1,'2006-02-15 05:09:17'), - (2697,592,1,'2006-02-15 05:09:17'), - (2698,592,2,'2006-02-15 05:09:17'), - (2699,592,2,'2006-02-15 05:09:17'), - (2700,593,2,'2006-02-15 05:09:17'), - (2701,593,2,'2006-02-15 05:09:17'), - (2702,593,2,'2006-02-15 05:09:17'), - (2703,593,2,'2006-02-15 05:09:17'), - (2704,594,1,'2006-02-15 05:09:17'), - (2705,594,1,'2006-02-15 05:09:17'), - (2706,594,1,'2006-02-15 05:09:17'), - (2707,595,1,'2006-02-15 05:09:17'), - (2708,595,1,'2006-02-15 05:09:17'), - (2709,595,1,'2006-02-15 05:09:17'), - (2710,595,1,'2006-02-15 05:09:17'), - (2711,595,2,'2006-02-15 05:09:17'), - (2712,595,2,'2006-02-15 05:09:17'), - (2713,595,2,'2006-02-15 05:09:17'), - (2714,595,2,'2006-02-15 05:09:17'), - (2715,596,1,'2006-02-15 05:09:17'), - (2716,596,1,'2006-02-15 05:09:17'), - (2717,596,2,'2006-02-15 05:09:17'), - (2718,596,2,'2006-02-15 05:09:17'), - (2719,596,2,'2006-02-15 05:09:17'), - (2720,596,2,'2006-02-15 05:09:17'), - (2721,597,2,'2006-02-15 05:09:17'), - (2722,597,2,'2006-02-15 05:09:17'), - (2723,597,2,'2006-02-15 05:09:17'), - (2724,597,2,'2006-02-15 05:09:17'), - (2725,598,1,'2006-02-15 05:09:17'), - (2726,598,1,'2006-02-15 05:09:17'), - (2727,598,1,'2006-02-15 05:09:17'), - (2728,598,1,'2006-02-15 05:09:17'), - (2729,599,1,'2006-02-15 05:09:17'), - (2730,599,1,'2006-02-15 05:09:17'), - (2731,599,1,'2006-02-15 05:09:17'), - (2732,599,2,'2006-02-15 05:09:17'), - (2733,599,2,'2006-02-15 05:09:17'), - (2734,600,1,'2006-02-15 05:09:17'), - (2735,600,1,'2006-02-15 05:09:17'), - (2736,600,2,'2006-02-15 05:09:17'), - (2737,600,2,'2006-02-15 05:09:17'), - (2738,601,1,'2006-02-15 05:09:17'), - (2739,601,1,'2006-02-15 05:09:17'), - (2740,601,1,'2006-02-15 05:09:17'), - (2741,601,2,'2006-02-15 05:09:17'), - (2742,601,2,'2006-02-15 05:09:17'), - (2743,602,1,'2006-02-15 05:09:17'), - (2744,602,1,'2006-02-15 05:09:17'), - (2745,602,2,'2006-02-15 05:09:17'), - (2746,602,2,'2006-02-15 05:09:17'), - (2747,602,2,'2006-02-15 05:09:17'), - (2748,603,1,'2006-02-15 05:09:17'), - (2749,603,1,'2006-02-15 05:09:17'), - (2750,603,1,'2006-02-15 05:09:17'), - (2751,603,1,'2006-02-15 05:09:17'), - (2752,603,2,'2006-02-15 05:09:17'), - (2753,603,2,'2006-02-15 05:09:17'), - (2754,604,2,'2006-02-15 05:09:17'), - (2755,604,2,'2006-02-15 05:09:17'), - (2756,604,2,'2006-02-15 05:09:17'), - (2757,605,2,'2006-02-15 05:09:17'), - (2758,605,2,'2006-02-15 05:09:17'), - (2759,606,1,'2006-02-15 05:09:17'), - (2760,606,1,'2006-02-15 05:09:17'), - (2761,606,2,'2006-02-15 05:09:17'), - (2762,606,2,'2006-02-15 05:09:17'), - (2763,606,2,'2006-02-15 05:09:17'), - (2764,606,2,'2006-02-15 05:09:17'), - (2765,608,1,'2006-02-15 05:09:17'), - (2766,608,1,'2006-02-15 05:09:17'), - (2767,608,2,'2006-02-15 05:09:17'), - (2768,608,2,'2006-02-15 05:09:17'), - (2769,608,2,'2006-02-15 05:09:17'), - (2770,608,2,'2006-02-15 05:09:17'), - (2771,609,1,'2006-02-15 05:09:17'), - (2772,609,1,'2006-02-15 05:09:17'), - (2773,609,1,'2006-02-15 05:09:17'), - (2774,609,1,'2006-02-15 05:09:17'), - (2775,609,2,'2006-02-15 05:09:17'), - (2776,609,2,'2006-02-15 05:09:17'), - (2777,609,2,'2006-02-15 05:09:17'), - (2778,609,2,'2006-02-15 05:09:17'), - (2779,610,1,'2006-02-15 05:09:17'), - (2780,610,1,'2006-02-15 05:09:17'), - (2781,610,2,'2006-02-15 05:09:17'), - (2782,610,2,'2006-02-15 05:09:17'), - (2783,610,2,'2006-02-15 05:09:17'), - (2784,611,1,'2006-02-15 05:09:17'), - (2785,611,1,'2006-02-15 05:09:17'), - (2786,611,1,'2006-02-15 05:09:17'), - (2787,611,1,'2006-02-15 05:09:17'), - (2788,611,2,'2006-02-15 05:09:17'), - (2789,611,2,'2006-02-15 05:09:17'), - (2790,612,2,'2006-02-15 05:09:17'), - (2791,612,2,'2006-02-15 05:09:17'), - (2792,613,1,'2006-02-15 05:09:17'), - (2793,613,1,'2006-02-15 05:09:17'), - (2794,614,1,'2006-02-15 05:09:17'), - (2795,614,1,'2006-02-15 05:09:17'), - (2796,614,1,'2006-02-15 05:09:17'), - (2797,614,2,'2006-02-15 05:09:17'), - (2798,614,2,'2006-02-15 05:09:17'), - (2799,614,2,'2006-02-15 05:09:17'), - (2800,615,2,'2006-02-15 05:09:17'), - (2801,615,2,'2006-02-15 05:09:17'), - (2802,615,2,'2006-02-15 05:09:17'), - (2803,615,2,'2006-02-15 05:09:17'), - (2804,616,1,'2006-02-15 05:09:17'), - (2805,616,1,'2006-02-15 05:09:17'), - (2806,616,2,'2006-02-15 05:09:17'), - (2807,616,2,'2006-02-15 05:09:17'), - (2808,616,2,'2006-02-15 05:09:17'), - (2809,616,2,'2006-02-15 05:09:17'), - (2810,617,1,'2006-02-15 05:09:17'), - (2811,617,1,'2006-02-15 05:09:17'), - (2812,617,1,'2006-02-15 05:09:17'), - (2813,618,2,'2006-02-15 05:09:17'), - (2814,618,2,'2006-02-15 05:09:17'), - (2815,618,2,'2006-02-15 05:09:17'), - (2816,618,2,'2006-02-15 05:09:17'), - (2817,619,1,'2006-02-15 05:09:17'), - (2818,619,1,'2006-02-15 05:09:17'), - (2819,619,2,'2006-02-15 05:09:17'), - (2820,619,2,'2006-02-15 05:09:17'), - (2821,619,2,'2006-02-15 05:09:17'), - (2822,619,2,'2006-02-15 05:09:17'), - (2823,620,1,'2006-02-15 05:09:17'), - (2824,620,1,'2006-02-15 05:09:17'), - (2825,620,2,'2006-02-15 05:09:17'), - (2826,620,2,'2006-02-15 05:09:17'), - (2827,620,2,'2006-02-15 05:09:17'), - (2828,621,1,'2006-02-15 05:09:17'), - (2829,621,1,'2006-02-15 05:09:17'), - (2830,621,1,'2006-02-15 05:09:17'), - (2831,621,1,'2006-02-15 05:09:17'), - (2832,621,2,'2006-02-15 05:09:17'), - (2833,621,2,'2006-02-15 05:09:17'), - (2834,621,2,'2006-02-15 05:09:17'), - (2835,621,2,'2006-02-15 05:09:17'), - (2836,622,2,'2006-02-15 05:09:17'), - (2837,622,2,'2006-02-15 05:09:17'), - (2838,623,1,'2006-02-15 05:09:17'), - (2839,623,1,'2006-02-15 05:09:17'), - (2840,623,2,'2006-02-15 05:09:17'), - (2841,623,2,'2006-02-15 05:09:17'), - (2842,623,2,'2006-02-15 05:09:17'), - (2843,624,1,'2006-02-15 05:09:17'), - (2844,624,1,'2006-02-15 05:09:17'), - (2845,624,1,'2006-02-15 05:09:17'), - (2846,624,2,'2006-02-15 05:09:17'), - (2847,624,2,'2006-02-15 05:09:17'), - (2848,624,2,'2006-02-15 05:09:17'), - (2849,624,2,'2006-02-15 05:09:17'), - (2850,625,1,'2006-02-15 05:09:17'), - (2851,625,1,'2006-02-15 05:09:17'), - (2852,625,1,'2006-02-15 05:09:17'), - (2853,625,2,'2006-02-15 05:09:17'), - (2854,625,2,'2006-02-15 05:09:17'), - (2855,625,2,'2006-02-15 05:09:17'), - (2856,625,2,'2006-02-15 05:09:17'), - (2857,626,2,'2006-02-15 05:09:17'), - (2858,626,2,'2006-02-15 05:09:17'), - (2859,626,2,'2006-02-15 05:09:17'), - (2860,626,2,'2006-02-15 05:09:17'), - (2861,627,2,'2006-02-15 05:09:17'), - (2862,627,2,'2006-02-15 05:09:17'), - (2863,627,2,'2006-02-15 05:09:17'), - (2864,628,1,'2006-02-15 05:09:17'), - (2865,628,1,'2006-02-15 05:09:17'), - (2866,628,1,'2006-02-15 05:09:17'), - (2867,628,2,'2006-02-15 05:09:17'), - (2868,628,2,'2006-02-15 05:09:17'), - (2869,629,2,'2006-02-15 05:09:17'), - (2870,629,2,'2006-02-15 05:09:17'), - (2871,629,2,'2006-02-15 05:09:17'), - (2872,629,2,'2006-02-15 05:09:17'), - (2873,630,2,'2006-02-15 05:09:17'), - (2874,630,2,'2006-02-15 05:09:17'), - (2875,630,2,'2006-02-15 05:09:17'), - (2876,631,1,'2006-02-15 05:09:17'), - (2877,631,1,'2006-02-15 05:09:17'), - (2878,631,1,'2006-02-15 05:09:17'), - (2879,631,2,'2006-02-15 05:09:17'), - (2880,631,2,'2006-02-15 05:09:17'), - (2881,632,1,'2006-02-15 05:09:17'), - (2882,632,1,'2006-02-15 05:09:17'), - (2883,632,1,'2006-02-15 05:09:17'), - (2884,633,2,'2006-02-15 05:09:17'), - (2885,633,2,'2006-02-15 05:09:17'), - (2886,633,2,'2006-02-15 05:09:17'), - (2887,634,2,'2006-02-15 05:09:17'), - (2888,634,2,'2006-02-15 05:09:17'), - (2889,634,2,'2006-02-15 05:09:17'), - (2890,634,2,'2006-02-15 05:09:17'), - (2891,635,2,'2006-02-15 05:09:17'), - (2892,635,2,'2006-02-15 05:09:17'), - (2893,636,1,'2006-02-15 05:09:17'), - (2894,636,1,'2006-02-15 05:09:17'), - (2895,636,1,'2006-02-15 05:09:17'), - (2896,637,1,'2006-02-15 05:09:17'), - (2897,637,1,'2006-02-15 05:09:17'), - (2898,637,2,'2006-02-15 05:09:17'), - (2899,637,2,'2006-02-15 05:09:17'), - (2900,637,2,'2006-02-15 05:09:17'), - (2901,638,1,'2006-02-15 05:09:17'), - (2902,638,1,'2006-02-15 05:09:17'), - (2903,638,1,'2006-02-15 05:09:17'), - (2904,638,1,'2006-02-15 05:09:17'), - (2905,638,2,'2006-02-15 05:09:17'), - (2906,638,2,'2006-02-15 05:09:17'), - (2907,638,2,'2006-02-15 05:09:17'), - (2908,638,2,'2006-02-15 05:09:17'), - (2909,639,2,'2006-02-15 05:09:17'), - (2910,639,2,'2006-02-15 05:09:17'), - (2911,639,2,'2006-02-15 05:09:17'), - (2912,640,2,'2006-02-15 05:09:17'), - (2913,640,2,'2006-02-15 05:09:17'), - (2914,640,2,'2006-02-15 05:09:17'), - (2915,641,1,'2006-02-15 05:09:17'), - (2916,641,1,'2006-02-15 05:09:17'), - (2917,641,1,'2006-02-15 05:09:17'), - (2918,641,2,'2006-02-15 05:09:17'), - (2919,641,2,'2006-02-15 05:09:17'), - (2920,641,2,'2006-02-15 05:09:17'), - (2921,641,2,'2006-02-15 05:09:17'), - (2922,643,1,'2006-02-15 05:09:17'), - (2923,643,1,'2006-02-15 05:09:17'), - (2924,643,1,'2006-02-15 05:09:17'), - (2925,643,2,'2006-02-15 05:09:17'), - (2926,643,2,'2006-02-15 05:09:17'), - (2927,643,2,'2006-02-15 05:09:17'), - (2928,644,1,'2006-02-15 05:09:17'), - (2929,644,1,'2006-02-15 05:09:17'), - (2930,644,1,'2006-02-15 05:09:17'), - (2931,644,2,'2006-02-15 05:09:17'), - (2932,644,2,'2006-02-15 05:09:17'), - (2933,644,2,'2006-02-15 05:09:17'), - (2934,644,2,'2006-02-15 05:09:17'), - (2935,645,1,'2006-02-15 05:09:17'), - (2936,645,1,'2006-02-15 05:09:17'), - (2937,645,1,'2006-02-15 05:09:17'), - (2938,645,2,'2006-02-15 05:09:17'), - (2939,645,2,'2006-02-15 05:09:17'), - (2940,645,2,'2006-02-15 05:09:17'), - (2941,646,1,'2006-02-15 05:09:17'), - (2942,646,1,'2006-02-15 05:09:17'), - (2943,646,1,'2006-02-15 05:09:17'), - (2944,646,2,'2006-02-15 05:09:17'), - (2945,646,2,'2006-02-15 05:09:17'), - (2946,647,1,'2006-02-15 05:09:17'), - (2947,647,1,'2006-02-15 05:09:17'), - (2948,647,1,'2006-02-15 05:09:17'), - (2949,647,2,'2006-02-15 05:09:17'), - (2950,647,2,'2006-02-15 05:09:17'), - (2951,647,2,'2006-02-15 05:09:17'), - (2952,648,1,'2006-02-15 05:09:17'), - (2953,648,1,'2006-02-15 05:09:17'), - (2954,648,1,'2006-02-15 05:09:17'), - (2955,648,1,'2006-02-15 05:09:17'), - (2956,648,2,'2006-02-15 05:09:17'), - (2957,648,2,'2006-02-15 05:09:17'), - (2958,649,1,'2006-02-15 05:09:17'), - (2959,649,1,'2006-02-15 05:09:17'), - (2960,649,2,'2006-02-15 05:09:17'), - (2961,649,2,'2006-02-15 05:09:17'), - (2962,649,2,'2006-02-15 05:09:17'), - (2963,649,2,'2006-02-15 05:09:17'), - (2964,650,1,'2006-02-15 05:09:17'), - (2965,650,1,'2006-02-15 05:09:17'), - (2966,650,2,'2006-02-15 05:09:17'), - (2967,650,2,'2006-02-15 05:09:17'), - (2968,650,2,'2006-02-15 05:09:17'), - (2969,650,2,'2006-02-15 05:09:17'), - (2970,651,1,'2006-02-15 05:09:17'), - (2971,651,1,'2006-02-15 05:09:17'), - (2972,651,2,'2006-02-15 05:09:17'), - (2973,651,2,'2006-02-15 05:09:17'), - (2974,651,2,'2006-02-15 05:09:17'), - (2975,651,2,'2006-02-15 05:09:17'), - (2976,652,1,'2006-02-15 05:09:17'), - (2977,652,1,'2006-02-15 05:09:17'), - (2978,652,1,'2006-02-15 05:09:17'), - (2979,652,1,'2006-02-15 05:09:17'), - (2980,653,1,'2006-02-15 05:09:17'), - (2981,653,1,'2006-02-15 05:09:17'), - (2982,654,1,'2006-02-15 05:09:17'), - (2983,654,1,'2006-02-15 05:09:17'), - (2984,654,2,'2006-02-15 05:09:17'), - (2985,654,2,'2006-02-15 05:09:17'), - (2986,655,1,'2006-02-15 05:09:17'), - (2987,655,1,'2006-02-15 05:09:17'), - (2988,655,1,'2006-02-15 05:09:17'), - (2989,655,2,'2006-02-15 05:09:17'), - (2990,655,2,'2006-02-15 05:09:17'), - (2991,655,2,'2006-02-15 05:09:17'), - (2992,656,2,'2006-02-15 05:09:17'), - (2993,656,2,'2006-02-15 05:09:17'), - (2994,657,1,'2006-02-15 05:09:17'), - (2995,657,1,'2006-02-15 05:09:17'), - (2996,657,1,'2006-02-15 05:09:17'), - (2997,657,1,'2006-02-15 05:09:17'), - (2998,657,2,'2006-02-15 05:09:17'), - (2999,657,2,'2006-02-15 05:09:17'), - (3000,658,2,'2006-02-15 05:09:17'), - (3001,658,2,'2006-02-15 05:09:17'), - (3002,658,2,'2006-02-15 05:09:17'), - (3003,658,2,'2006-02-15 05:09:17'), - (3004,659,2,'2006-02-15 05:09:17'), - (3005,659,2,'2006-02-15 05:09:17'), - (3006,660,1,'2006-02-15 05:09:17'), - (3007,660,1,'2006-02-15 05:09:17'), - (3008,660,2,'2006-02-15 05:09:17'), - (3009,660,2,'2006-02-15 05:09:17'), - (3010,661,1,'2006-02-15 05:09:17'), - (3011,661,1,'2006-02-15 05:09:17'), - (3012,661,1,'2006-02-15 05:09:17'), - (3013,661,1,'2006-02-15 05:09:17'), - (3014,662,1,'2006-02-15 05:09:17'), - (3015,662,1,'2006-02-15 05:09:17'), - (3016,662,2,'2006-02-15 05:09:17'), - (3017,662,2,'2006-02-15 05:09:17'), - (3018,663,1,'2006-02-15 05:09:17'), - (3019,663,1,'2006-02-15 05:09:17'), - (3020,663,1,'2006-02-15 05:09:17'), - (3021,663,2,'2006-02-15 05:09:17'), - (3022,663,2,'2006-02-15 05:09:17'), - (3023,664,1,'2006-02-15 05:09:17'), - (3024,664,1,'2006-02-15 05:09:17'), - (3025,664,2,'2006-02-15 05:09:17'), - (3026,664,2,'2006-02-15 05:09:17'), - (3027,664,2,'2006-02-15 05:09:17'), - (3028,665,1,'2006-02-15 05:09:17'), - (3029,665,1,'2006-02-15 05:09:17'), - (3030,665,1,'2006-02-15 05:09:17'), - (3031,665,1,'2006-02-15 05:09:17'), - (3032,665,2,'2006-02-15 05:09:17'), - (3033,665,2,'2006-02-15 05:09:17'), - (3034,665,2,'2006-02-15 05:09:17'), - (3035,666,1,'2006-02-15 05:09:17'), - (3036,666,1,'2006-02-15 05:09:17'), - (3037,666,1,'2006-02-15 05:09:17'), - (3038,666,2,'2006-02-15 05:09:17'), - (3039,666,2,'2006-02-15 05:09:17'), - (3040,667,1,'2006-02-15 05:09:17'), - (3041,667,1,'2006-02-15 05:09:17'), - (3042,667,2,'2006-02-15 05:09:17'), - (3043,667,2,'2006-02-15 05:09:17'), - (3044,668,1,'2006-02-15 05:09:17'), - (3045,668,1,'2006-02-15 05:09:17'), - (3046,668,2,'2006-02-15 05:09:17'), - (3047,668,2,'2006-02-15 05:09:17'), - (3048,668,2,'2006-02-15 05:09:17'), - (3049,670,1,'2006-02-15 05:09:17'), - (3050,670,1,'2006-02-15 05:09:17'), - (3051,670,1,'2006-02-15 05:09:17'), - (3052,670,1,'2006-02-15 05:09:17'), - (3053,670,2,'2006-02-15 05:09:17'), - (3054,670,2,'2006-02-15 05:09:17'), - (3055,670,2,'2006-02-15 05:09:17'), - (3056,672,1,'2006-02-15 05:09:17'), - (3057,672,1,'2006-02-15 05:09:17'), - (3058,672,2,'2006-02-15 05:09:17'), - (3059,672,2,'2006-02-15 05:09:17'), - (3060,672,2,'2006-02-15 05:09:17'), - (3061,672,2,'2006-02-15 05:09:17'), - (3062,673,1,'2006-02-15 05:09:17'), - (3063,673,1,'2006-02-15 05:09:17'), - (3064,673,2,'2006-02-15 05:09:17'), - (3065,673,2,'2006-02-15 05:09:17'), - (3066,674,1,'2006-02-15 05:09:17'), - (3067,674,1,'2006-02-15 05:09:17'), - (3068,674,1,'2006-02-15 05:09:17'), - (3069,675,1,'2006-02-15 05:09:17'), - (3070,675,1,'2006-02-15 05:09:17'), - (3071,676,1,'2006-02-15 05:09:17'), - (3072,676,1,'2006-02-15 05:09:17'), - (3073,676,2,'2006-02-15 05:09:17'), - (3074,676,2,'2006-02-15 05:09:17'), - (3075,676,2,'2006-02-15 05:09:17'), - (3076,676,2,'2006-02-15 05:09:17'), - (3077,677,1,'2006-02-15 05:09:17'), - (3078,677,1,'2006-02-15 05:09:17'), - (3079,677,1,'2006-02-15 05:09:17'), - (3080,677,2,'2006-02-15 05:09:17'), - (3081,677,2,'2006-02-15 05:09:17'), - (3082,677,2,'2006-02-15 05:09:17'), - (3083,677,2,'2006-02-15 05:09:17'), - (3084,678,1,'2006-02-15 05:09:17'), - (3085,678,1,'2006-02-15 05:09:17'), - (3086,678,1,'2006-02-15 05:09:17'), - (3087,678,1,'2006-02-15 05:09:17'), - (3088,679,1,'2006-02-15 05:09:17'), - (3089,679,1,'2006-02-15 05:09:17'), - (3090,679,2,'2006-02-15 05:09:17'), - (3091,679,2,'2006-02-15 05:09:17'), - (3092,680,1,'2006-02-15 05:09:17'), - (3093,680,1,'2006-02-15 05:09:17'), - (3094,680,2,'2006-02-15 05:09:17'), - (3095,680,2,'2006-02-15 05:09:17'), - (3096,680,2,'2006-02-15 05:09:17'), - (3097,680,2,'2006-02-15 05:09:17'), - (3098,681,1,'2006-02-15 05:09:17'), - (3099,681,1,'2006-02-15 05:09:17'), - (3100,681,1,'2006-02-15 05:09:17'), - (3101,681,2,'2006-02-15 05:09:17'), - (3102,681,2,'2006-02-15 05:09:17'), - (3103,681,2,'2006-02-15 05:09:17'), - (3104,682,1,'2006-02-15 05:09:17'), - (3105,682,1,'2006-02-15 05:09:17'), - (3106,682,1,'2006-02-15 05:09:17'), - (3107,683,1,'2006-02-15 05:09:17'), - (3108,683,1,'2006-02-15 05:09:17'), - (3109,683,1,'2006-02-15 05:09:17'), - (3110,683,1,'2006-02-15 05:09:17'), - (3111,683,2,'2006-02-15 05:09:17'), - (3112,683,2,'2006-02-15 05:09:17'), - (3113,683,2,'2006-02-15 05:09:17'), - (3114,683,2,'2006-02-15 05:09:17'), - (3115,684,2,'2006-02-15 05:09:17'), - (3116,684,2,'2006-02-15 05:09:17'), - (3117,685,2,'2006-02-15 05:09:17'), - (3118,685,2,'2006-02-15 05:09:17'), - (3119,686,1,'2006-02-15 05:09:17'), - (3120,686,1,'2006-02-15 05:09:17'), - (3121,686,1,'2006-02-15 05:09:17'), - (3122,686,1,'2006-02-15 05:09:17'), - (3123,687,1,'2006-02-15 05:09:17'), - (3124,687,1,'2006-02-15 05:09:17'), - (3125,687,1,'2006-02-15 05:09:17'), - (3126,687,2,'2006-02-15 05:09:17'), - (3127,687,2,'2006-02-15 05:09:17'), - (3128,687,2,'2006-02-15 05:09:17'), - (3129,687,2,'2006-02-15 05:09:17'), - (3130,688,2,'2006-02-15 05:09:17'), - (3131,688,2,'2006-02-15 05:09:17'), - (3132,688,2,'2006-02-15 05:09:17'), - (3133,688,2,'2006-02-15 05:09:17'), - (3134,689,1,'2006-02-15 05:09:17'), - (3135,689,1,'2006-02-15 05:09:17'), - (3136,689,1,'2006-02-15 05:09:17'), - (3137,689,1,'2006-02-15 05:09:17'), - (3138,689,2,'2006-02-15 05:09:17'), - (3139,689,2,'2006-02-15 05:09:17'), - (3140,690,1,'2006-02-15 05:09:17'), - (3141,690,1,'2006-02-15 05:09:17'), - (3142,690,1,'2006-02-15 05:09:17'), - (3143,690,1,'2006-02-15 05:09:17'), - (3144,690,2,'2006-02-15 05:09:17'), - (3145,690,2,'2006-02-15 05:09:17'), - (3146,691,1,'2006-02-15 05:09:17'), - (3147,691,1,'2006-02-15 05:09:17'), - (3148,691,1,'2006-02-15 05:09:17'), - (3149,691,2,'2006-02-15 05:09:17'), - (3150,691,2,'2006-02-15 05:09:17'), - (3151,692,2,'2006-02-15 05:09:17'), - (3152,692,2,'2006-02-15 05:09:17'), - (3153,692,2,'2006-02-15 05:09:17'), - (3154,693,1,'2006-02-15 05:09:17'), - (3155,693,1,'2006-02-15 05:09:17'), - (3156,693,2,'2006-02-15 05:09:17'), - (3157,693,2,'2006-02-15 05:09:17'), - (3158,693,2,'2006-02-15 05:09:17'), - (3159,694,1,'2006-02-15 05:09:17'), - (3160,694,1,'2006-02-15 05:09:17'), - (3161,694,1,'2006-02-15 05:09:17'), - (3162,694,1,'2006-02-15 05:09:17'), - (3163,694,2,'2006-02-15 05:09:17'), - (3164,694,2,'2006-02-15 05:09:17'), - (3165,695,1,'2006-02-15 05:09:17'), - (3166,695,1,'2006-02-15 05:09:17'), - (3167,696,1,'2006-02-15 05:09:17'), - (3168,696,1,'2006-02-15 05:09:17'), - (3169,696,2,'2006-02-15 05:09:17'), - (3170,696,2,'2006-02-15 05:09:17'), - (3171,696,2,'2006-02-15 05:09:17'), - (3172,697,1,'2006-02-15 05:09:17'), - (3173,697,1,'2006-02-15 05:09:17'), - (3174,697,1,'2006-02-15 05:09:17'), - (3175,697,1,'2006-02-15 05:09:17'), - (3176,697,2,'2006-02-15 05:09:17'), - (3177,697,2,'2006-02-15 05:09:17'), - (3178,697,2,'2006-02-15 05:09:17'), - (3179,697,2,'2006-02-15 05:09:17'), - (3180,698,1,'2006-02-15 05:09:17'), - (3181,698,1,'2006-02-15 05:09:17'), - (3182,698,1,'2006-02-15 05:09:17'), - (3183,698,1,'2006-02-15 05:09:17'), - (3184,698,2,'2006-02-15 05:09:17'), - (3185,698,2,'2006-02-15 05:09:17'), - (3186,698,2,'2006-02-15 05:09:17'), - (3187,699,1,'2006-02-15 05:09:17'), - (3188,699,1,'2006-02-15 05:09:17'), - (3189,700,2,'2006-02-15 05:09:17'), - (3190,700,2,'2006-02-15 05:09:17'), - (3191,700,2,'2006-02-15 05:09:17'), - (3192,702,1,'2006-02-15 05:09:17'), - (3193,702,1,'2006-02-15 05:09:17'), - (3194,702,1,'2006-02-15 05:09:17'), - (3195,702,1,'2006-02-15 05:09:17'), - (3196,702,2,'2006-02-15 05:09:17'), - (3197,702,2,'2006-02-15 05:09:17'), - (3198,702,2,'2006-02-15 05:09:17'), - (3199,702,2,'2006-02-15 05:09:17'), - (3200,703,2,'2006-02-15 05:09:17'), - (3201,703,2,'2006-02-15 05:09:17'), - (3202,704,1,'2006-02-15 05:09:17'), - (3203,704,1,'2006-02-15 05:09:17'), - (3204,704,2,'2006-02-15 05:09:17'), - (3205,704,2,'2006-02-15 05:09:17'), - (3206,704,2,'2006-02-15 05:09:17'), - (3207,705,1,'2006-02-15 05:09:17'), - (3208,705,1,'2006-02-15 05:09:17'), - (3209,705,1,'2006-02-15 05:09:17'), - (3210,705,1,'2006-02-15 05:09:17'), - (3211,706,1,'2006-02-15 05:09:17'), - (3212,706,1,'2006-02-15 05:09:17'), - (3213,706,2,'2006-02-15 05:09:17'), - (3214,706,2,'2006-02-15 05:09:17'), - (3215,706,2,'2006-02-15 05:09:17'), - (3216,706,2,'2006-02-15 05:09:17'), - (3217,707,1,'2006-02-15 05:09:17'), - (3218,707,1,'2006-02-15 05:09:17'), - (3219,707,2,'2006-02-15 05:09:17'), - (3220,707,2,'2006-02-15 05:09:17'), - (3221,707,2,'2006-02-15 05:09:17'), - (3222,707,2,'2006-02-15 05:09:17'), - (3223,708,1,'2006-02-15 05:09:17'), - (3224,708,1,'2006-02-15 05:09:17'), - (3225,708,2,'2006-02-15 05:09:17'), - (3226,708,2,'2006-02-15 05:09:17'), - (3227,709,1,'2006-02-15 05:09:17'), - (3228,709,1,'2006-02-15 05:09:17'), - (3229,709,2,'2006-02-15 05:09:17'), - (3230,709,2,'2006-02-15 05:09:17'), - (3231,709,2,'2006-02-15 05:09:17'), - (3232,709,2,'2006-02-15 05:09:17'), - (3233,710,1,'2006-02-15 05:09:17'), - (3234,710,1,'2006-02-15 05:09:17'), - (3235,710,1,'2006-02-15 05:09:17'), - (3236,710,1,'2006-02-15 05:09:17'), - (3237,710,2,'2006-02-15 05:09:17'), - (3238,710,2,'2006-02-15 05:09:17'), - (3239,711,2,'2006-02-15 05:09:17'), - (3240,711,2,'2006-02-15 05:09:17'), - (3241,711,2,'2006-02-15 05:09:17'), - (3242,711,2,'2006-02-15 05:09:17'), - (3243,714,2,'2006-02-15 05:09:17'), - (3244,714,2,'2006-02-15 05:09:17'), - (3245,714,2,'2006-02-15 05:09:17'), - (3246,715,1,'2006-02-15 05:09:17'), - (3247,715,1,'2006-02-15 05:09:17'), - (3248,715,1,'2006-02-15 05:09:17'), - (3249,715,1,'2006-02-15 05:09:17'), - (3250,715,2,'2006-02-15 05:09:17'), - (3251,715,2,'2006-02-15 05:09:17'), - (3252,715,2,'2006-02-15 05:09:17'), - (3253,716,1,'2006-02-15 05:09:17'), - (3254,716,1,'2006-02-15 05:09:17'), - (3255,716,2,'2006-02-15 05:09:17'), - (3256,716,2,'2006-02-15 05:09:17'), - (3257,716,2,'2006-02-15 05:09:17'), - (3258,717,1,'2006-02-15 05:09:17'), - (3259,717,1,'2006-02-15 05:09:17'), - (3260,717,2,'2006-02-15 05:09:17'), - (3261,717,2,'2006-02-15 05:09:17'), - (3262,718,2,'2006-02-15 05:09:17'), - (3263,718,2,'2006-02-15 05:09:17'), - (3264,719,1,'2006-02-15 05:09:17'), - (3265,719,1,'2006-02-15 05:09:17'), - (3266,720,1,'2006-02-15 05:09:17'), - (3267,720,1,'2006-02-15 05:09:17'), - (3268,720,1,'2006-02-15 05:09:17'), - (3269,720,2,'2006-02-15 05:09:17'), - (3270,720,2,'2006-02-15 05:09:17'), - (3271,720,2,'2006-02-15 05:09:17'), - (3272,720,2,'2006-02-15 05:09:17'), - (3273,721,1,'2006-02-15 05:09:17'), - (3274,721,1,'2006-02-15 05:09:17'), - (3275,722,1,'2006-02-15 05:09:17'), - (3276,722,1,'2006-02-15 05:09:17'), - (3277,722,2,'2006-02-15 05:09:17'), - (3278,722,2,'2006-02-15 05:09:17'), - (3279,723,1,'2006-02-15 05:09:17'), - (3280,723,1,'2006-02-15 05:09:17'), - (3281,723,1,'2006-02-15 05:09:17'), - (3282,723,1,'2006-02-15 05:09:17'), - (3283,723,2,'2006-02-15 05:09:17'), - (3284,723,2,'2006-02-15 05:09:17'), - (3285,723,2,'2006-02-15 05:09:17'), - (3286,724,1,'2006-02-15 05:09:17'), - (3287,724,1,'2006-02-15 05:09:17'), - (3288,724,2,'2006-02-15 05:09:17'), - (3289,724,2,'2006-02-15 05:09:17'), - (3290,724,2,'2006-02-15 05:09:17'), - (3291,724,2,'2006-02-15 05:09:17'), - (3292,725,1,'2006-02-15 05:09:17'), - (3293,725,1,'2006-02-15 05:09:17'), - (3294,725,1,'2006-02-15 05:09:17'), - (3295,725,2,'2006-02-15 05:09:17'), - (3296,725,2,'2006-02-15 05:09:17'), - (3297,725,2,'2006-02-15 05:09:17'), - (3298,726,2,'2006-02-15 05:09:17'), - (3299,726,2,'2006-02-15 05:09:17'), - (3300,726,2,'2006-02-15 05:09:17'), - (3301,727,1,'2006-02-15 05:09:17'), - (3302,727,1,'2006-02-15 05:09:17'), - (3303,727,2,'2006-02-15 05:09:17'), - (3304,727,2,'2006-02-15 05:09:17'), - (3305,727,2,'2006-02-15 05:09:17'), - (3306,728,1,'2006-02-15 05:09:17'), - (3307,728,1,'2006-02-15 05:09:17'), - (3308,728,1,'2006-02-15 05:09:17'), - (3309,728,2,'2006-02-15 05:09:17'), - (3310,728,2,'2006-02-15 05:09:17'), - (3311,729,2,'2006-02-15 05:09:17'), - (3312,729,2,'2006-02-15 05:09:17'), - (3313,729,2,'2006-02-15 05:09:17'), - (3314,729,2,'2006-02-15 05:09:17'), - (3315,730,1,'2006-02-15 05:09:17'), - (3316,730,1,'2006-02-15 05:09:17'), - (3317,730,1,'2006-02-15 05:09:17'), - (3318,730,1,'2006-02-15 05:09:17'), - (3319,730,2,'2006-02-15 05:09:17'), - (3320,730,2,'2006-02-15 05:09:17'), - (3321,730,2,'2006-02-15 05:09:17'), - (3322,730,2,'2006-02-15 05:09:17'), - (3323,731,2,'2006-02-15 05:09:17'), - (3324,731,2,'2006-02-15 05:09:17'), - (3325,731,2,'2006-02-15 05:09:17'), - (3326,732,1,'2006-02-15 05:09:17'), - (3327,732,1,'2006-02-15 05:09:17'), - (3328,732,1,'2006-02-15 05:09:17'), - (3329,732,1,'2006-02-15 05:09:17'), - (3330,733,1,'2006-02-15 05:09:17'), - (3331,733,1,'2006-02-15 05:09:17'), - (3332,733,1,'2006-02-15 05:09:17'), - (3333,733,1,'2006-02-15 05:09:17'), - (3334,733,2,'2006-02-15 05:09:17'), - (3335,733,2,'2006-02-15 05:09:17'), - (3336,733,2,'2006-02-15 05:09:17'), - (3337,734,1,'2006-02-15 05:09:17'), - (3338,734,1,'2006-02-15 05:09:17'), - (3339,734,2,'2006-02-15 05:09:17'), - (3340,734,2,'2006-02-15 05:09:17'), - (3341,734,2,'2006-02-15 05:09:17'), - (3342,734,2,'2006-02-15 05:09:17'), - (3343,735,1,'2006-02-15 05:09:17'), - (3344,735,1,'2006-02-15 05:09:17'), - (3345,735,1,'2006-02-15 05:09:17'), - (3346,735,2,'2006-02-15 05:09:17'), - (3347,735,2,'2006-02-15 05:09:17'), - (3348,735,2,'2006-02-15 05:09:17'), - (3349,735,2,'2006-02-15 05:09:17'), - (3350,736,1,'2006-02-15 05:09:17'), - (3351,736,1,'2006-02-15 05:09:17'), - (3352,736,1,'2006-02-15 05:09:17'), - (3353,736,1,'2006-02-15 05:09:17'), - (3354,737,1,'2006-02-15 05:09:17'), - (3355,737,1,'2006-02-15 05:09:17'), - (3356,737,2,'2006-02-15 05:09:17'), - (3357,737,2,'2006-02-15 05:09:17'), - (3358,737,2,'2006-02-15 05:09:17'), - (3359,737,2,'2006-02-15 05:09:17'), - (3360,738,1,'2006-02-15 05:09:17'), - (3361,738,1,'2006-02-15 05:09:17'), - (3362,738,1,'2006-02-15 05:09:17'), - (3363,738,1,'2006-02-15 05:09:17'), - (3364,738,2,'2006-02-15 05:09:17'), - (3365,738,2,'2006-02-15 05:09:17'), - (3366,738,2,'2006-02-15 05:09:17'), - (3367,738,2,'2006-02-15 05:09:17'), - (3368,739,1,'2006-02-15 05:09:17'), - (3369,739,1,'2006-02-15 05:09:17'), - (3370,739,2,'2006-02-15 05:09:17'), - (3371,739,2,'2006-02-15 05:09:17'), - (3372,739,2,'2006-02-15 05:09:17'), - (3373,740,2,'2006-02-15 05:09:17'), - (3374,740,2,'2006-02-15 05:09:17'), - (3375,740,2,'2006-02-15 05:09:17'), - (3376,741,1,'2006-02-15 05:09:17'), - (3377,741,1,'2006-02-15 05:09:17'), - (3378,741,1,'2006-02-15 05:09:17'), - (3379,741,1,'2006-02-15 05:09:17'), - (3380,741,2,'2006-02-15 05:09:17'), - (3381,741,2,'2006-02-15 05:09:17'), - (3382,743,1,'2006-02-15 05:09:17'), - (3383,743,1,'2006-02-15 05:09:17'), - (3384,743,2,'2006-02-15 05:09:17'), - (3385,743,2,'2006-02-15 05:09:17'), - (3386,743,2,'2006-02-15 05:09:17'), - (3387,743,2,'2006-02-15 05:09:17'), - (3388,744,1,'2006-02-15 05:09:17'), - (3389,744,1,'2006-02-15 05:09:17'), - (3390,744,2,'2006-02-15 05:09:17'), - (3391,744,2,'2006-02-15 05:09:17'), - (3392,744,2,'2006-02-15 05:09:17'), - (3393,745,1,'2006-02-15 05:09:17'), - (3394,745,1,'2006-02-15 05:09:17'), - (3395,745,1,'2006-02-15 05:09:17'), - (3396,745,1,'2006-02-15 05:09:17'), - (3397,745,2,'2006-02-15 05:09:17'), - (3398,745,2,'2006-02-15 05:09:17'), - (3399,745,2,'2006-02-15 05:09:17'), - (3400,745,2,'2006-02-15 05:09:17'), - (3401,746,1,'2006-02-15 05:09:17'), - (3402,746,1,'2006-02-15 05:09:17'), - (3403,746,2,'2006-02-15 05:09:17'), - (3404,746,2,'2006-02-15 05:09:17'), - (3405,746,2,'2006-02-15 05:09:17'), - (3406,747,1,'2006-02-15 05:09:17'), - (3407,747,1,'2006-02-15 05:09:17'), - (3408,747,2,'2006-02-15 05:09:17'), - (3409,747,2,'2006-02-15 05:09:17'), - (3410,747,2,'2006-02-15 05:09:17'), - (3411,748,1,'2006-02-15 05:09:17'), - (3412,748,1,'2006-02-15 05:09:17'), - (3413,748,1,'2006-02-15 05:09:17'), - (3414,748,1,'2006-02-15 05:09:17'), - (3415,748,2,'2006-02-15 05:09:17'), - (3416,748,2,'2006-02-15 05:09:17'), - (3417,748,2,'2006-02-15 05:09:17'), - (3418,748,2,'2006-02-15 05:09:17'), - (3419,749,1,'2006-02-15 05:09:17'), - (3420,749,1,'2006-02-15 05:09:17'), - (3421,749,2,'2006-02-15 05:09:17'), - (3422,749,2,'2006-02-15 05:09:17'), - (3423,750,1,'2006-02-15 05:09:17'), - (3424,750,1,'2006-02-15 05:09:17'), - (3425,750,1,'2006-02-15 05:09:17'), - (3426,751,2,'2006-02-15 05:09:17'), - (3427,751,2,'2006-02-15 05:09:17'), - (3428,752,2,'2006-02-15 05:09:17'), - (3429,752,2,'2006-02-15 05:09:17'), - (3430,752,2,'2006-02-15 05:09:17'), - (3431,753,1,'2006-02-15 05:09:17'), - (3432,753,1,'2006-02-15 05:09:17'), - (3433,753,1,'2006-02-15 05:09:17'), - (3434,753,1,'2006-02-15 05:09:17'), - (3435,753,2,'2006-02-15 05:09:17'), - (3436,753,2,'2006-02-15 05:09:17'), - (3437,753,2,'2006-02-15 05:09:17'), - (3438,753,2,'2006-02-15 05:09:17'), - (3439,754,2,'2006-02-15 05:09:17'), - (3440,754,2,'2006-02-15 05:09:17'), - (3441,755,1,'2006-02-15 05:09:17'), - (3442,755,1,'2006-02-15 05:09:17'), - (3443,755,1,'2006-02-15 05:09:17'), - (3444,755,1,'2006-02-15 05:09:17'), - (3445,755,2,'2006-02-15 05:09:17'), - (3446,755,2,'2006-02-15 05:09:17'), - (3447,755,2,'2006-02-15 05:09:17'), - (3448,756,2,'2006-02-15 05:09:17'), - (3449,756,2,'2006-02-15 05:09:17'), - (3450,756,2,'2006-02-15 05:09:17'), - (3451,757,1,'2006-02-15 05:09:17'), - (3452,757,1,'2006-02-15 05:09:17'), - (3453,757,1,'2006-02-15 05:09:17'), - (3454,757,2,'2006-02-15 05:09:17'), - (3455,757,2,'2006-02-15 05:09:17'), - (3456,758,2,'2006-02-15 05:09:17'), - (3457,758,2,'2006-02-15 05:09:17'), - (3458,758,2,'2006-02-15 05:09:17'), - (3459,759,1,'2006-02-15 05:09:17'), - (3460,759,1,'2006-02-15 05:09:17'), - (3461,759,2,'2006-02-15 05:09:17'), - (3462,759,2,'2006-02-15 05:09:17'), - (3463,759,2,'2006-02-15 05:09:17'), - (3464,759,2,'2006-02-15 05:09:17'), - (3465,760,1,'2006-02-15 05:09:17'), - (3466,760,1,'2006-02-15 05:09:17'), - (3467,760,1,'2006-02-15 05:09:17'), - (3468,760,2,'2006-02-15 05:09:17'), - (3469,760,2,'2006-02-15 05:09:17'), - (3470,760,2,'2006-02-15 05:09:17'), - (3471,760,2,'2006-02-15 05:09:17'), - (3472,761,2,'2006-02-15 05:09:17'), - (3473,761,2,'2006-02-15 05:09:17'), - (3474,761,2,'2006-02-15 05:09:17'), - (3475,762,2,'2006-02-15 05:09:17'), - (3476,762,2,'2006-02-15 05:09:17'), - (3477,762,2,'2006-02-15 05:09:17'), - (3478,762,2,'2006-02-15 05:09:17'), - (3479,763,1,'2006-02-15 05:09:17'), - (3480,763,1,'2006-02-15 05:09:17'), - (3481,763,1,'2006-02-15 05:09:17'), - (3482,763,2,'2006-02-15 05:09:17'), - (3483,763,2,'2006-02-15 05:09:17'), - (3484,764,1,'2006-02-15 05:09:17'), - (3485,764,1,'2006-02-15 05:09:17'), - (3486,764,1,'2006-02-15 05:09:17'), - (3487,764,1,'2006-02-15 05:09:17'), - (3488,764,2,'2006-02-15 05:09:17'), - (3489,764,2,'2006-02-15 05:09:17'), - (3490,764,2,'2006-02-15 05:09:17'), - (3491,764,2,'2006-02-15 05:09:17'), - (3492,765,1,'2006-02-15 05:09:17'), - (3493,765,1,'2006-02-15 05:09:17'), - (3494,765,1,'2006-02-15 05:09:17'), - (3495,765,1,'2006-02-15 05:09:17'), - (3496,766,1,'2006-02-15 05:09:17'), - (3497,766,1,'2006-02-15 05:09:17'), - (3498,766,1,'2006-02-15 05:09:17'), - (3499,767,1,'2006-02-15 05:09:17'), - (3500,767,1,'2006-02-15 05:09:17'), - (3501,767,1,'2006-02-15 05:09:17'), - (3502,767,1,'2006-02-15 05:09:17'), - (3503,767,2,'2006-02-15 05:09:17'), - (3504,767,2,'2006-02-15 05:09:17'), - (3505,767,2,'2006-02-15 05:09:17'), - (3506,767,2,'2006-02-15 05:09:17'), - (3507,768,1,'2006-02-15 05:09:17'), - (3508,768,1,'2006-02-15 05:09:17'), - (3509,768,1,'2006-02-15 05:09:17'), - (3510,768,2,'2006-02-15 05:09:17'), - (3511,768,2,'2006-02-15 05:09:17'), - (3512,768,2,'2006-02-15 05:09:17'), - (3513,769,2,'2006-02-15 05:09:17'), - (3514,769,2,'2006-02-15 05:09:17'), - (3515,770,2,'2006-02-15 05:09:17'), - (3516,770,2,'2006-02-15 05:09:17'), - (3517,770,2,'2006-02-15 05:09:17'), - (3518,771,1,'2006-02-15 05:09:17'), - (3519,771,1,'2006-02-15 05:09:17'), - (3520,771,1,'2006-02-15 05:09:17'), - (3521,771,2,'2006-02-15 05:09:17'), - (3522,771,2,'2006-02-15 05:09:17'), - (3523,771,2,'2006-02-15 05:09:17'), - (3524,771,2,'2006-02-15 05:09:17'), - (3525,772,1,'2006-02-15 05:09:17'), - (3526,772,1,'2006-02-15 05:09:17'), - (3527,772,1,'2006-02-15 05:09:17'), - (3528,772,1,'2006-02-15 05:09:17'), - (3529,772,2,'2006-02-15 05:09:17'), - (3530,772,2,'2006-02-15 05:09:17'), - (3531,773,1,'2006-02-15 05:09:17'), - (3532,773,1,'2006-02-15 05:09:17'), - (3533,773,1,'2006-02-15 05:09:17'), - (3534,773,1,'2006-02-15 05:09:17'), - (3535,773,2,'2006-02-15 05:09:17'), - (3536,773,2,'2006-02-15 05:09:17'), - (3537,773,2,'2006-02-15 05:09:17'), - (3538,773,2,'2006-02-15 05:09:17'), - (3539,774,1,'2006-02-15 05:09:17'), - (3540,774,1,'2006-02-15 05:09:17'), - (3541,774,1,'2006-02-15 05:09:17'), - (3542,774,1,'2006-02-15 05:09:17'), - (3543,775,1,'2006-02-15 05:09:17'), - (3544,775,1,'2006-02-15 05:09:17'), - (3545,775,1,'2006-02-15 05:09:17'), - (3546,775,2,'2006-02-15 05:09:17'), - (3547,775,2,'2006-02-15 05:09:17'), - (3548,776,1,'2006-02-15 05:09:17'), - (3549,776,1,'2006-02-15 05:09:17'), - (3550,776,2,'2006-02-15 05:09:17'), - (3551,776,2,'2006-02-15 05:09:17'), - (3552,776,2,'2006-02-15 05:09:17'), - (3553,777,1,'2006-02-15 05:09:17'), - (3554,777,1,'2006-02-15 05:09:17'), - (3555,777,1,'2006-02-15 05:09:17'), - (3556,777,2,'2006-02-15 05:09:17'), - (3557,777,2,'2006-02-15 05:09:17'), - (3558,777,2,'2006-02-15 05:09:17'), - (3559,778,1,'2006-02-15 05:09:17'), - (3560,778,1,'2006-02-15 05:09:17'), - (3561,778,1,'2006-02-15 05:09:17'), - (3562,778,1,'2006-02-15 05:09:17'), - (3563,778,2,'2006-02-15 05:09:17'), - (3564,778,2,'2006-02-15 05:09:17'), - (3565,779,2,'2006-02-15 05:09:17'), - (3566,779,2,'2006-02-15 05:09:17'), - (3567,780,2,'2006-02-15 05:09:17'), - (3568,780,2,'2006-02-15 05:09:17'), - (3569,780,2,'2006-02-15 05:09:17'), - (3570,781,2,'2006-02-15 05:09:17'), - (3571,781,2,'2006-02-15 05:09:17'), - (3572,782,1,'2006-02-15 05:09:17'), - (3573,782,1,'2006-02-15 05:09:17'), - (3574,782,1,'2006-02-15 05:09:17'), - (3575,782,2,'2006-02-15 05:09:17'), - (3576,782,2,'2006-02-15 05:09:17'), - (3577,782,2,'2006-02-15 05:09:17'), - (3578,783,1,'2006-02-15 05:09:17'), - (3579,783,1,'2006-02-15 05:09:17'), - (3580,783,1,'2006-02-15 05:09:17'), - (3581,783,1,'2006-02-15 05:09:17'), - (3582,784,1,'2006-02-15 05:09:17'), - (3583,784,1,'2006-02-15 05:09:17'), - (3584,784,1,'2006-02-15 05:09:17'), - (3585,784,2,'2006-02-15 05:09:17'), - (3586,784,2,'2006-02-15 05:09:17'), - (3587,784,2,'2006-02-15 05:09:17'), - (3588,785,1,'2006-02-15 05:09:17'), - (3589,785,1,'2006-02-15 05:09:17'), - (3590,785,1,'2006-02-15 05:09:17'), - (3591,785,1,'2006-02-15 05:09:17'), - (3592,785,2,'2006-02-15 05:09:17'), - (3593,785,2,'2006-02-15 05:09:17'), - (3594,786,1,'2006-02-15 05:09:17'), - (3595,786,1,'2006-02-15 05:09:17'), - (3596,786,1,'2006-02-15 05:09:17'), - (3597,786,2,'2006-02-15 05:09:17'), - (3598,786,2,'2006-02-15 05:09:17'), - (3599,786,2,'2006-02-15 05:09:17'), - (3600,786,2,'2006-02-15 05:09:17'), - (3601,787,1,'2006-02-15 05:09:17'), - (3602,787,1,'2006-02-15 05:09:17'), - (3603,787,1,'2006-02-15 05:09:17'), - (3604,788,1,'2006-02-15 05:09:17'), - (3605,788,1,'2006-02-15 05:09:17'), - (3606,788,2,'2006-02-15 05:09:17'), - (3607,788,2,'2006-02-15 05:09:17'), - (3608,789,1,'2006-02-15 05:09:17'), - (3609,789,1,'2006-02-15 05:09:17'), - (3610,789,1,'2006-02-15 05:09:17'), - (3611,789,1,'2006-02-15 05:09:17'), - (3612,789,2,'2006-02-15 05:09:17'), - (3613,789,2,'2006-02-15 05:09:17'), - (3614,789,2,'2006-02-15 05:09:17'), - (3615,789,2,'2006-02-15 05:09:17'), - (3616,790,1,'2006-02-15 05:09:17'), - (3617,790,1,'2006-02-15 05:09:17'), - (3618,790,1,'2006-02-15 05:09:17'), - (3619,790,1,'2006-02-15 05:09:17'), - (3620,790,2,'2006-02-15 05:09:17'), - (3621,790,2,'2006-02-15 05:09:17'), - (3622,790,2,'2006-02-15 05:09:17'), - (3623,791,1,'2006-02-15 05:09:17'), - (3624,791,1,'2006-02-15 05:09:17'), - (3625,791,2,'2006-02-15 05:09:17'), - (3626,791,2,'2006-02-15 05:09:17'), - (3627,791,2,'2006-02-15 05:09:17'), - (3628,791,2,'2006-02-15 05:09:17'), - (3629,792,2,'2006-02-15 05:09:17'), - (3630,792,2,'2006-02-15 05:09:17'), - (3631,792,2,'2006-02-15 05:09:17'), - (3632,793,1,'2006-02-15 05:09:17'), - (3633,793,1,'2006-02-15 05:09:17'), - (3634,793,1,'2006-02-15 05:09:17'), - (3635,793,1,'2006-02-15 05:09:17'), - (3636,794,1,'2006-02-15 05:09:17'), - (3637,794,1,'2006-02-15 05:09:17'), - (3638,794,2,'2006-02-15 05:09:17'), - (3639,794,2,'2006-02-15 05:09:17'), - (3640,795,1,'2006-02-15 05:09:17'), - (3641,795,1,'2006-02-15 05:09:17'), - (3642,795,1,'2006-02-15 05:09:17'), - (3643,795,1,'2006-02-15 05:09:17'), - (3644,796,1,'2006-02-15 05:09:17'), - (3645,796,1,'2006-02-15 05:09:17'), - (3646,796,2,'2006-02-15 05:09:17'), - (3647,796,2,'2006-02-15 05:09:17'), - (3648,796,2,'2006-02-15 05:09:17'), - (3649,797,1,'2006-02-15 05:09:17'), - (3650,797,1,'2006-02-15 05:09:17'), - (3651,797,2,'2006-02-15 05:09:17'), - (3652,797,2,'2006-02-15 05:09:17'), - (3653,797,2,'2006-02-15 05:09:17'), - (3654,798,1,'2006-02-15 05:09:17'), - (3655,798,1,'2006-02-15 05:09:17'), - (3656,798,2,'2006-02-15 05:09:17'), - (3657,798,2,'2006-02-15 05:09:17'), - (3658,799,1,'2006-02-15 05:09:17'), - (3659,799,1,'2006-02-15 05:09:17'), - (3660,800,1,'2006-02-15 05:09:17'), - (3661,800,1,'2006-02-15 05:09:17'), - (3662,800,2,'2006-02-15 05:09:17'), - (3663,800,2,'2006-02-15 05:09:17'), - (3664,800,2,'2006-02-15 05:09:17'), - (3665,800,2,'2006-02-15 05:09:17'), - (3666,803,1,'2006-02-15 05:09:17'), - (3667,803,1,'2006-02-15 05:09:17'), - (3668,803,1,'2006-02-15 05:09:17'), - (3669,803,1,'2006-02-15 05:09:17'), - (3670,803,2,'2006-02-15 05:09:17'), - (3671,803,2,'2006-02-15 05:09:17'), - (3672,804,1,'2006-02-15 05:09:17'), - (3673,804,1,'2006-02-15 05:09:17'), - (3674,804,1,'2006-02-15 05:09:17'), - (3675,804,1,'2006-02-15 05:09:17'), - (3676,804,2,'2006-02-15 05:09:17'), - (3677,804,2,'2006-02-15 05:09:17'), - (3678,804,2,'2006-02-15 05:09:17'), - (3679,805,1,'2006-02-15 05:09:17'), - (3680,805,1,'2006-02-15 05:09:17'), - (3681,805,2,'2006-02-15 05:09:17'), - (3682,805,2,'2006-02-15 05:09:17'), - (3683,805,2,'2006-02-15 05:09:17'), - (3684,806,1,'2006-02-15 05:09:17'), - (3685,806,1,'2006-02-15 05:09:17'), - (3686,806,1,'2006-02-15 05:09:17'), - (3687,806,2,'2006-02-15 05:09:17'), - (3688,806,2,'2006-02-15 05:09:17'), - (3689,807,1,'2006-02-15 05:09:17'), - (3690,807,1,'2006-02-15 05:09:17'), - (3691,807,1,'2006-02-15 05:09:17'), - (3692,807,2,'2006-02-15 05:09:17'), - (3693,807,2,'2006-02-15 05:09:17'), - (3694,808,2,'2006-02-15 05:09:17'), - (3695,808,2,'2006-02-15 05:09:17'), - (3696,809,2,'2006-02-15 05:09:17'), - (3697,809,2,'2006-02-15 05:09:17'), - (3698,809,2,'2006-02-15 05:09:17'), - (3699,809,2,'2006-02-15 05:09:17'), - (3700,810,1,'2006-02-15 05:09:17'), - (3701,810,1,'2006-02-15 05:09:17'), - (3702,810,1,'2006-02-15 05:09:17'), - (3703,810,1,'2006-02-15 05:09:17'), - (3704,810,2,'2006-02-15 05:09:17'), - (3705,810,2,'2006-02-15 05:09:17'), - (3706,810,2,'2006-02-15 05:09:17'), - (3707,811,1,'2006-02-15 05:09:17'), - (3708,811,1,'2006-02-15 05:09:17'), - (3709,811,1,'2006-02-15 05:09:17'), - (3710,812,1,'2006-02-15 05:09:17'), - (3711,812,1,'2006-02-15 05:09:17'), - (3712,812,1,'2006-02-15 05:09:17'), - (3713,812,2,'2006-02-15 05:09:17'), - (3714,812,2,'2006-02-15 05:09:17'), - (3715,812,2,'2006-02-15 05:09:17'), - (3716,813,2,'2006-02-15 05:09:17'), - (3717,813,2,'2006-02-15 05:09:17'), - (3718,813,2,'2006-02-15 05:09:17'), - (3719,813,2,'2006-02-15 05:09:17'), - (3720,814,1,'2006-02-15 05:09:17'), - (3721,814,1,'2006-02-15 05:09:17'), - (3722,814,1,'2006-02-15 05:09:17'), - (3723,814,2,'2006-02-15 05:09:17'), - (3724,814,2,'2006-02-15 05:09:17'), - (3725,814,2,'2006-02-15 05:09:17'), - (3726,814,2,'2006-02-15 05:09:17'), - (3727,815,1,'2006-02-15 05:09:17'), - (3728,815,1,'2006-02-15 05:09:17'), - (3729,815,1,'2006-02-15 05:09:17'), - (3730,816,1,'2006-02-15 05:09:17'), - (3731,816,1,'2006-02-15 05:09:17'), - (3732,816,1,'2006-02-15 05:09:17'), - (3733,816,1,'2006-02-15 05:09:17'), - (3734,816,2,'2006-02-15 05:09:17'), - (3735,816,2,'2006-02-15 05:09:17'), - (3736,816,2,'2006-02-15 05:09:17'), - (3737,817,1,'2006-02-15 05:09:17'), - (3738,817,1,'2006-02-15 05:09:17'), - (3739,818,1,'2006-02-15 05:09:17'), - (3740,818,1,'2006-02-15 05:09:17'), - (3741,818,1,'2006-02-15 05:09:17'), - (3742,818,2,'2006-02-15 05:09:17'), - (3743,818,2,'2006-02-15 05:09:17'), - (3744,819,1,'2006-02-15 05:09:17'), - (3745,819,1,'2006-02-15 05:09:17'), - (3746,819,1,'2006-02-15 05:09:17'), - (3747,820,1,'2006-02-15 05:09:17'), - (3748,820,1,'2006-02-15 05:09:17'), - (3749,820,1,'2006-02-15 05:09:17'), - (3750,820,1,'2006-02-15 05:09:17'), - (3751,820,2,'2006-02-15 05:09:17'), - (3752,820,2,'2006-02-15 05:09:17'), - (3753,821,2,'2006-02-15 05:09:17'), - (3754,821,2,'2006-02-15 05:09:17'), - (3755,821,2,'2006-02-15 05:09:17'), - (3756,821,2,'2006-02-15 05:09:17'), - (3757,822,2,'2006-02-15 05:09:17'), - (3758,822,2,'2006-02-15 05:09:17'), - (3759,823,1,'2006-02-15 05:09:17'), - (3760,823,1,'2006-02-15 05:09:17'), - (3761,823,1,'2006-02-15 05:09:17'), - (3762,823,2,'2006-02-15 05:09:17'), - (3763,823,2,'2006-02-15 05:09:17'), - (3764,823,2,'2006-02-15 05:09:17'), - (3765,823,2,'2006-02-15 05:09:17'), - (3766,824,2,'2006-02-15 05:09:17'), - (3767,824,2,'2006-02-15 05:09:17'), - (3768,824,2,'2006-02-15 05:09:17'), - (3769,824,2,'2006-02-15 05:09:17'), - (3770,825,1,'2006-02-15 05:09:17'), - (3771,825,1,'2006-02-15 05:09:17'), - (3772,825,1,'2006-02-15 05:09:17'), - (3773,826,2,'2006-02-15 05:09:17'), - (3774,826,2,'2006-02-15 05:09:17'), - (3775,827,1,'2006-02-15 05:09:17'), - (3776,827,1,'2006-02-15 05:09:17'), - (3777,827,2,'2006-02-15 05:09:17'), - (3778,827,2,'2006-02-15 05:09:17'), - (3779,827,2,'2006-02-15 05:09:17'), - (3780,827,2,'2006-02-15 05:09:17'), - (3781,828,2,'2006-02-15 05:09:17'), - (3782,828,2,'2006-02-15 05:09:17'), - (3783,828,2,'2006-02-15 05:09:17'), - (3784,828,2,'2006-02-15 05:09:17'), - (3785,829,1,'2006-02-15 05:09:17'), - (3786,829,1,'2006-02-15 05:09:17'), - (3787,829,2,'2006-02-15 05:09:17'), - (3788,829,2,'2006-02-15 05:09:17'), - (3789,829,2,'2006-02-15 05:09:17'), - (3790,830,2,'2006-02-15 05:09:17'), - (3791,830,2,'2006-02-15 05:09:17'), - (3792,830,2,'2006-02-15 05:09:17'), - (3793,830,2,'2006-02-15 05:09:17'), - (3794,831,1,'2006-02-15 05:09:17'), - (3795,831,1,'2006-02-15 05:09:17'), - (3796,831,1,'2006-02-15 05:09:17'), - (3797,832,1,'2006-02-15 05:09:17'), - (3798,832,1,'2006-02-15 05:09:17'), - (3799,832,1,'2006-02-15 05:09:17'), - (3800,832,1,'2006-02-15 05:09:17'), - (3801,833,1,'2006-02-15 05:09:17'), - (3802,833,1,'2006-02-15 05:09:17'), - (3803,833,1,'2006-02-15 05:09:17'), - (3804,833,2,'2006-02-15 05:09:17'), - (3805,833,2,'2006-02-15 05:09:17'), - (3806,833,2,'2006-02-15 05:09:17'), - (3807,833,2,'2006-02-15 05:09:17'), - (3808,834,2,'2006-02-15 05:09:17'), - (3809,834,2,'2006-02-15 05:09:17'), - (3810,834,2,'2006-02-15 05:09:17'), - (3811,835,1,'2006-02-15 05:09:17'), - (3812,835,1,'2006-02-15 05:09:17'), - (3813,835,1,'2006-02-15 05:09:17'), - (3814,835,1,'2006-02-15 05:09:17'), - (3815,835,2,'2006-02-15 05:09:17'), - (3816,835,2,'2006-02-15 05:09:17'), - (3817,835,2,'2006-02-15 05:09:17'), - (3818,835,2,'2006-02-15 05:09:17'), - (3819,836,1,'2006-02-15 05:09:17'), - (3820,836,1,'2006-02-15 05:09:17'), - (3821,836,1,'2006-02-15 05:09:17'), - (3822,837,2,'2006-02-15 05:09:17'), - (3823,837,2,'2006-02-15 05:09:17'), - (3824,837,2,'2006-02-15 05:09:17'), - (3825,838,1,'2006-02-15 05:09:17'), - (3826,838,1,'2006-02-15 05:09:17'), - (3827,838,2,'2006-02-15 05:09:17'), - (3828,838,2,'2006-02-15 05:09:17'), - (3829,838,2,'2006-02-15 05:09:17'), - (3830,838,2,'2006-02-15 05:09:17'), - (3831,839,2,'2006-02-15 05:09:17'), - (3832,839,2,'2006-02-15 05:09:17'), - (3833,840,1,'2006-02-15 05:09:17'), - (3834,840,1,'2006-02-15 05:09:17'), - (3835,840,1,'2006-02-15 05:09:17'), - (3836,840,1,'2006-02-15 05:09:17'), - (3837,841,1,'2006-02-15 05:09:17'), - (3838,841,1,'2006-02-15 05:09:17'), - (3839,841,1,'2006-02-15 05:09:17'), - (3840,841,2,'2006-02-15 05:09:17'), - (3841,841,2,'2006-02-15 05:09:17'), - (3842,841,2,'2006-02-15 05:09:17'), - (3843,841,2,'2006-02-15 05:09:17'), - (3844,842,1,'2006-02-15 05:09:17'), - (3845,842,1,'2006-02-15 05:09:17'), - (3846,842,2,'2006-02-15 05:09:17'), - (3847,842,2,'2006-02-15 05:09:17'), - (3848,843,1,'2006-02-15 05:09:17'), - (3849,843,1,'2006-02-15 05:09:17'), - (3850,843,1,'2006-02-15 05:09:17'), - (3851,843,1,'2006-02-15 05:09:17'), - (3852,843,2,'2006-02-15 05:09:17'), - (3853,843,2,'2006-02-15 05:09:17'), - (3854,843,2,'2006-02-15 05:09:17'), - (3855,844,1,'2006-02-15 05:09:17'), - (3856,844,1,'2006-02-15 05:09:17'), - (3857,844,2,'2006-02-15 05:09:17'), - (3858,844,2,'2006-02-15 05:09:17'), - (3859,845,1,'2006-02-15 05:09:17'), - (3860,845,1,'2006-02-15 05:09:17'), - (3861,845,1,'2006-02-15 05:09:17'), - (3862,845,1,'2006-02-15 05:09:17'), - (3863,845,2,'2006-02-15 05:09:17'), - (3864,845,2,'2006-02-15 05:09:17'), - (3865,845,2,'2006-02-15 05:09:17'), - (3866,846,1,'2006-02-15 05:09:17'), - (3867,846,1,'2006-02-15 05:09:17'), - (3868,846,1,'2006-02-15 05:09:17'), - (3869,846,1,'2006-02-15 05:09:17'), - (3870,846,2,'2006-02-15 05:09:17'), - (3871,846,2,'2006-02-15 05:09:17'), - (3872,846,2,'2006-02-15 05:09:17'), - (3873,846,2,'2006-02-15 05:09:17'), - (3874,847,2,'2006-02-15 05:09:17'), - (3875,847,2,'2006-02-15 05:09:17'), - (3876,847,2,'2006-02-15 05:09:17'), - (3877,847,2,'2006-02-15 05:09:17'), - (3878,848,1,'2006-02-15 05:09:17'), - (3879,848,1,'2006-02-15 05:09:17'), - (3880,848,1,'2006-02-15 05:09:17'), - (3881,849,1,'2006-02-15 05:09:17'), - (3882,849,1,'2006-02-15 05:09:17'), - (3883,849,1,'2006-02-15 05:09:17'), - (3884,849,1,'2006-02-15 05:09:17'), - (3885,849,2,'2006-02-15 05:09:17'), - (3886,849,2,'2006-02-15 05:09:17'), - (3887,849,2,'2006-02-15 05:09:17'), - (3888,849,2,'2006-02-15 05:09:17'), - (3889,850,1,'2006-02-15 05:09:17'), - (3890,850,1,'2006-02-15 05:09:17'), - (3891,850,1,'2006-02-15 05:09:17'), - (3892,850,2,'2006-02-15 05:09:17'), - (3893,850,2,'2006-02-15 05:09:17'), - (3894,850,2,'2006-02-15 05:09:17'), - (3895,850,2,'2006-02-15 05:09:17'), - (3896,851,1,'2006-02-15 05:09:17'), - (3897,851,1,'2006-02-15 05:09:17'), - (3898,851,1,'2006-02-15 05:09:17'), - (3899,851,2,'2006-02-15 05:09:17'), - (3900,851,2,'2006-02-15 05:09:17'), - (3901,851,2,'2006-02-15 05:09:17'), - (3902,852,1,'2006-02-15 05:09:17'), - (3903,852,1,'2006-02-15 05:09:17'), - (3904,852,1,'2006-02-15 05:09:17'), - (3905,852,1,'2006-02-15 05:09:17'), - (3906,852,2,'2006-02-15 05:09:17'), - (3907,852,2,'2006-02-15 05:09:17'), - (3908,852,2,'2006-02-15 05:09:17'), - (3909,853,1,'2006-02-15 05:09:17'), - (3910,853,1,'2006-02-15 05:09:17'), - (3911,853,1,'2006-02-15 05:09:17'), - (3912,854,2,'2006-02-15 05:09:17'), - (3913,854,2,'2006-02-15 05:09:17'), - (3914,854,2,'2006-02-15 05:09:17'), - (3915,854,2,'2006-02-15 05:09:17'), - (3916,855,1,'2006-02-15 05:09:17'), - (3917,855,1,'2006-02-15 05:09:17'), - (3918,855,2,'2006-02-15 05:09:17'), - (3919,855,2,'2006-02-15 05:09:17'), - (3920,856,1,'2006-02-15 05:09:17'), - (3921,856,1,'2006-02-15 05:09:17'), - (3922,856,1,'2006-02-15 05:09:17'), - (3923,856,1,'2006-02-15 05:09:17'), - (3924,856,2,'2006-02-15 05:09:17'), - (3925,856,2,'2006-02-15 05:09:17'), - (3926,856,2,'2006-02-15 05:09:17'), - (3927,856,2,'2006-02-15 05:09:17'), - (3928,857,1,'2006-02-15 05:09:17'), - (3929,857,1,'2006-02-15 05:09:17'), - (3930,857,1,'2006-02-15 05:09:17'), - (3931,857,2,'2006-02-15 05:09:17'), - (3932,857,2,'2006-02-15 05:09:17'), - (3933,857,2,'2006-02-15 05:09:17'), - (3934,857,2,'2006-02-15 05:09:17'), - (3935,858,2,'2006-02-15 05:09:17'), - (3936,858,2,'2006-02-15 05:09:17'), - (3937,858,2,'2006-02-15 05:09:17'), - (3938,858,2,'2006-02-15 05:09:17'), - (3939,859,1,'2006-02-15 05:09:17'), - (3940,859,1,'2006-02-15 05:09:17'), - (3941,859,1,'2006-02-15 05:09:17'), - (3942,859,2,'2006-02-15 05:09:17'), - (3943,859,2,'2006-02-15 05:09:17'), - (3944,859,2,'2006-02-15 05:09:17'), - (3945,861,1,'2006-02-15 05:09:17'), - (3946,861,1,'2006-02-15 05:09:17'), - (3947,861,1,'2006-02-15 05:09:17'), - (3948,861,2,'2006-02-15 05:09:17'), - (3949,861,2,'2006-02-15 05:09:17'), - (3950,861,2,'2006-02-15 05:09:17'), - (3951,862,1,'2006-02-15 05:09:17'), - (3952,862,1,'2006-02-15 05:09:17'), - (3953,862,1,'2006-02-15 05:09:17'), - (3954,862,2,'2006-02-15 05:09:17'), - (3955,862,2,'2006-02-15 05:09:17'), - (3956,863,1,'2006-02-15 05:09:17'), - (3957,863,1,'2006-02-15 05:09:17'), - (3958,863,1,'2006-02-15 05:09:17'), - (3959,863,1,'2006-02-15 05:09:17'), - (3960,863,2,'2006-02-15 05:09:17'), - (3961,863,2,'2006-02-15 05:09:17'), - (3962,863,2,'2006-02-15 05:09:17'), - (3963,864,1,'2006-02-15 05:09:17'), - (3964,864,1,'2006-02-15 05:09:17'), - (3965,864,1,'2006-02-15 05:09:17'), - (3966,864,1,'2006-02-15 05:09:17'), - (3967,864,2,'2006-02-15 05:09:17'), - (3968,864,2,'2006-02-15 05:09:17'), - (3969,865,1,'2006-02-15 05:09:17'), - (3970,865,1,'2006-02-15 05:09:17'), - (3971,865,1,'2006-02-15 05:09:17'), - (3972,865,1,'2006-02-15 05:09:17'), - (3973,865,2,'2006-02-15 05:09:17'), - (3974,865,2,'2006-02-15 05:09:17'), - (3975,866,2,'2006-02-15 05:09:17'), - (3976,866,2,'2006-02-15 05:09:17'), - (3977,867,1,'2006-02-15 05:09:17'), - (3978,867,1,'2006-02-15 05:09:17'), - (3979,867,1,'2006-02-15 05:09:17'), - (3980,867,1,'2006-02-15 05:09:17'), - (3981,868,1,'2006-02-15 05:09:17'), - (3982,868,1,'2006-02-15 05:09:17'), - (3983,868,1,'2006-02-15 05:09:17'), - (3984,869,1,'2006-02-15 05:09:17'), - (3985,869,1,'2006-02-15 05:09:17'), - (3986,869,1,'2006-02-15 05:09:17'), - (3987,869,1,'2006-02-15 05:09:17'), - (3988,869,2,'2006-02-15 05:09:17'), - (3989,869,2,'2006-02-15 05:09:17'), - (3990,869,2,'2006-02-15 05:09:17'), - (3991,870,1,'2006-02-15 05:09:17'), - (3992,870,1,'2006-02-15 05:09:17'), - (3993,870,1,'2006-02-15 05:09:17'), - (3994,870,1,'2006-02-15 05:09:17'), - (3995,870,2,'2006-02-15 05:09:17'), - (3996,870,2,'2006-02-15 05:09:17'), - (3997,870,2,'2006-02-15 05:09:17'), - (3998,870,2,'2006-02-15 05:09:17'), - (3999,871,1,'2006-02-15 05:09:17'), - (4000,871,1,'2006-02-15 05:09:17'), - (4001,871,2,'2006-02-15 05:09:17'), - (4002,871,2,'2006-02-15 05:09:17'), - (4003,871,2,'2006-02-15 05:09:17'), - (4004,872,2,'2006-02-15 05:09:17'), - (4005,872,2,'2006-02-15 05:09:17'), - (4006,872,2,'2006-02-15 05:09:17'), - (4007,873,1,'2006-02-15 05:09:17'), - (4008,873,1,'2006-02-15 05:09:17'), - (4009,873,1,'2006-02-15 05:09:17'), - (4010,873,1,'2006-02-15 05:09:17'), - (4011,873,2,'2006-02-15 05:09:17'), - (4012,873,2,'2006-02-15 05:09:17'), - (4013,873,2,'2006-02-15 05:09:17'), - (4014,873,2,'2006-02-15 05:09:17'), - (4015,875,1,'2006-02-15 05:09:17'), - (4016,875,1,'2006-02-15 05:09:17'), - (4017,875,1,'2006-02-15 05:09:17'), - (4018,875,2,'2006-02-15 05:09:17'), - (4019,875,2,'2006-02-15 05:09:17'), - (4020,875,2,'2006-02-15 05:09:17'), - (4021,875,2,'2006-02-15 05:09:17'), - (4022,876,1,'2006-02-15 05:09:17'), - (4023,876,1,'2006-02-15 05:09:17'), - (4024,877,1,'2006-02-15 05:09:17'), - (4025,877,1,'2006-02-15 05:09:17'), - (4026,877,1,'2006-02-15 05:09:17'), - (4027,877,2,'2006-02-15 05:09:17'), - (4028,877,2,'2006-02-15 05:09:17'), - (4029,878,2,'2006-02-15 05:09:17'), - (4030,878,2,'2006-02-15 05:09:17'), - (4031,878,2,'2006-02-15 05:09:17'), - (4032,878,2,'2006-02-15 05:09:17'), - (4033,879,1,'2006-02-15 05:09:17'), - (4034,879,1,'2006-02-15 05:09:17'), - (4035,879,1,'2006-02-15 05:09:17'), - (4036,879,1,'2006-02-15 05:09:17'), - (4037,879,2,'2006-02-15 05:09:17'), - (4038,879,2,'2006-02-15 05:09:17'), - (4039,879,2,'2006-02-15 05:09:17'), - (4040,880,1,'2006-02-15 05:09:17'), - (4041,880,1,'2006-02-15 05:09:17'), - (4042,880,1,'2006-02-15 05:09:17'), - (4043,880,1,'2006-02-15 05:09:17'), - (4044,880,2,'2006-02-15 05:09:17'), - (4045,880,2,'2006-02-15 05:09:17'), - (4046,880,2,'2006-02-15 05:09:17'), - (4047,880,2,'2006-02-15 05:09:17'), - (4048,881,2,'2006-02-15 05:09:17'), - (4049,881,2,'2006-02-15 05:09:17'), - (4050,881,2,'2006-02-15 05:09:17'), - (4051,881,2,'2006-02-15 05:09:17'), - (4052,882,1,'2006-02-15 05:09:17'), - (4053,882,1,'2006-02-15 05:09:17'), - (4054,882,1,'2006-02-15 05:09:17'), - (4055,882,1,'2006-02-15 05:09:17'), - (4056,883,2,'2006-02-15 05:09:17'), - (4057,883,2,'2006-02-15 05:09:17'), - (4058,884,2,'2006-02-15 05:09:17'), - (4059,884,2,'2006-02-15 05:09:17'), - (4060,884,2,'2006-02-15 05:09:17'), - (4061,885,1,'2006-02-15 05:09:17'), - (4062,885,1,'2006-02-15 05:09:17'), - (4063,886,1,'2006-02-15 05:09:17'), - (4064,886,1,'2006-02-15 05:09:17'), - (4065,886,1,'2006-02-15 05:09:17'), - (4066,886,1,'2006-02-15 05:09:17'), - (4067,887,1,'2006-02-15 05:09:17'), - (4068,887,1,'2006-02-15 05:09:17'), - (4069,887,1,'2006-02-15 05:09:17'), - (4070,887,1,'2006-02-15 05:09:17'), - (4071,887,2,'2006-02-15 05:09:17'), - (4072,887,2,'2006-02-15 05:09:17'), - (4073,888,1,'2006-02-15 05:09:17'), - (4074,888,1,'2006-02-15 05:09:17'), - (4075,888,1,'2006-02-15 05:09:17'), - (4076,888,1,'2006-02-15 05:09:17'), - (4077,889,1,'2006-02-15 05:09:17'), - (4078,889,1,'2006-02-15 05:09:17'), - (4079,889,1,'2006-02-15 05:09:17'), - (4080,890,1,'2006-02-15 05:09:17'), - (4081,890,1,'2006-02-15 05:09:17'), - (4082,890,1,'2006-02-15 05:09:17'), - (4083,890,2,'2006-02-15 05:09:17'), - (4084,890,2,'2006-02-15 05:09:17'), - (4085,890,2,'2006-02-15 05:09:17'), - (4086,890,2,'2006-02-15 05:09:17'), - (4087,891,1,'2006-02-15 05:09:17'), - (4088,891,1,'2006-02-15 05:09:17'), - (4089,891,1,'2006-02-15 05:09:17'), - (4090,891,2,'2006-02-15 05:09:17'), - (4091,891,2,'2006-02-15 05:09:17'), - (4092,891,2,'2006-02-15 05:09:17'), - (4093,891,2,'2006-02-15 05:09:17'), - (4094,892,1,'2006-02-15 05:09:17'), - (4095,892,1,'2006-02-15 05:09:17'), - (4096,892,1,'2006-02-15 05:09:17'), - (4097,892,2,'2006-02-15 05:09:17'), - (4098,892,2,'2006-02-15 05:09:17'), - (4099,892,2,'2006-02-15 05:09:17'), - (4100,892,2,'2006-02-15 05:09:17'), - (4101,893,1,'2006-02-15 05:09:17'), - (4102,893,1,'2006-02-15 05:09:17'), - (4103,893,1,'2006-02-15 05:09:17'), - (4104,893,1,'2006-02-15 05:09:17'), - (4105,893,2,'2006-02-15 05:09:17'), - (4106,893,2,'2006-02-15 05:09:17'), - (4107,893,2,'2006-02-15 05:09:17'), - (4108,893,2,'2006-02-15 05:09:17'), - (4109,894,1,'2006-02-15 05:09:17'), - (4110,894,1,'2006-02-15 05:09:17'), - (4111,894,1,'2006-02-15 05:09:17'), - (4112,894,2,'2006-02-15 05:09:17'), - (4113,894,2,'2006-02-15 05:09:17'), - (4114,895,1,'2006-02-15 05:09:17'), - (4115,895,1,'2006-02-15 05:09:17'), - (4116,895,1,'2006-02-15 05:09:17'), - (4117,895,1,'2006-02-15 05:09:17'), - (4118,895,2,'2006-02-15 05:09:17'), - (4119,895,2,'2006-02-15 05:09:17'), - (4120,895,2,'2006-02-15 05:09:17'), - (4121,896,1,'2006-02-15 05:09:17'), - (4122,896,1,'2006-02-15 05:09:17'), - (4123,896,2,'2006-02-15 05:09:17'), - (4124,896,2,'2006-02-15 05:09:17'), - (4125,897,1,'2006-02-15 05:09:17'), - (4126,897,1,'2006-02-15 05:09:17'), - (4127,897,1,'2006-02-15 05:09:17'), - (4128,897,1,'2006-02-15 05:09:17'), - (4129,897,2,'2006-02-15 05:09:17'), - (4130,897,2,'2006-02-15 05:09:17'), - (4131,897,2,'2006-02-15 05:09:17'), - (4132,897,2,'2006-02-15 05:09:17'), - (4133,898,1,'2006-02-15 05:09:17'), - (4134,898,1,'2006-02-15 05:09:17'), - (4135,898,1,'2006-02-15 05:09:17'), - (4136,898,2,'2006-02-15 05:09:17'), - (4137,898,2,'2006-02-15 05:09:17'), - (4138,899,1,'2006-02-15 05:09:17'), - (4139,899,1,'2006-02-15 05:09:17'), - (4140,899,1,'2006-02-15 05:09:17'), - (4141,900,1,'2006-02-15 05:09:17'), - (4142,900,1,'2006-02-15 05:09:17'), - (4143,900,2,'2006-02-15 05:09:17'), - (4144,900,2,'2006-02-15 05:09:17'), - (4145,901,1,'2006-02-15 05:09:17'), - (4146,901,1,'2006-02-15 05:09:17'), - (4147,901,1,'2006-02-15 05:09:17'), - (4148,901,1,'2006-02-15 05:09:17'), - (4149,901,2,'2006-02-15 05:09:17'), - (4150,901,2,'2006-02-15 05:09:17'), - (4151,901,2,'2006-02-15 05:09:17'), - (4152,902,1,'2006-02-15 05:09:17'), - (4153,902,1,'2006-02-15 05:09:17'), - (4154,902,1,'2006-02-15 05:09:17'), - (4155,902,1,'2006-02-15 05:09:17'), - (4156,902,2,'2006-02-15 05:09:17'), - (4157,902,2,'2006-02-15 05:09:17'), - (4158,902,2,'2006-02-15 05:09:17'), - (4159,903,2,'2006-02-15 05:09:17'), - (4160,903,2,'2006-02-15 05:09:17'), - (4161,904,1,'2006-02-15 05:09:17'), - (4162,904,1,'2006-02-15 05:09:17'), - (4163,905,1,'2006-02-15 05:09:17'), - (4164,905,1,'2006-02-15 05:09:17'), - (4165,905,1,'2006-02-15 05:09:17'), - (4166,906,1,'2006-02-15 05:09:17'), - (4167,906,1,'2006-02-15 05:09:17'), - (4168,906,2,'2006-02-15 05:09:17'), - (4169,906,2,'2006-02-15 05:09:17'), - (4170,906,2,'2006-02-15 05:09:17'), - (4171,907,1,'2006-02-15 05:09:17'), - (4172,907,1,'2006-02-15 05:09:17'), - (4173,907,1,'2006-02-15 05:09:17'), - (4174,907,1,'2006-02-15 05:09:17'), - (4175,908,1,'2006-02-15 05:09:17'), - (4176,908,1,'2006-02-15 05:09:17'), - (4177,908,2,'2006-02-15 05:09:17'), - (4178,908,2,'2006-02-15 05:09:17'), - (4179,910,2,'2006-02-15 05:09:17'), - (4180,910,2,'2006-02-15 05:09:17'), - (4181,911,1,'2006-02-15 05:09:17'), - (4182,911,1,'2006-02-15 05:09:17'), - (4183,911,1,'2006-02-15 05:09:17'), - (4184,911,1,'2006-02-15 05:09:17'), - (4185,911,2,'2006-02-15 05:09:17'), - (4186,911,2,'2006-02-15 05:09:17'), - (4187,911,2,'2006-02-15 05:09:17'), - (4188,911,2,'2006-02-15 05:09:17'), - (4189,912,1,'2006-02-15 05:09:17'), - (4190,912,1,'2006-02-15 05:09:17'), - (4191,912,1,'2006-02-15 05:09:17'), - (4192,912,2,'2006-02-15 05:09:17'), - (4193,912,2,'2006-02-15 05:09:17'), - (4194,912,2,'2006-02-15 05:09:17'), - (4195,913,1,'2006-02-15 05:09:17'), - (4196,913,1,'2006-02-15 05:09:17'), - (4197,913,1,'2006-02-15 05:09:17'), - (4198,913,1,'2006-02-15 05:09:17'), - (4199,913,2,'2006-02-15 05:09:17'), - (4200,913,2,'2006-02-15 05:09:17'), - (4201,914,1,'2006-02-15 05:09:17'), - (4202,914,1,'2006-02-15 05:09:17'), - (4203,914,2,'2006-02-15 05:09:17'), - (4204,914,2,'2006-02-15 05:09:17'), - (4205,914,2,'2006-02-15 05:09:17'), - (4206,914,2,'2006-02-15 05:09:17'), - (4207,915,1,'2006-02-15 05:09:17'), - (4208,915,1,'2006-02-15 05:09:17'), - (4209,915,1,'2006-02-15 05:09:17'), - (4210,915,1,'2006-02-15 05:09:17'), - (4211,915,2,'2006-02-15 05:09:17'), - (4212,915,2,'2006-02-15 05:09:17'), - (4213,916,1,'2006-02-15 05:09:17'), - (4214,916,1,'2006-02-15 05:09:17'), - (4215,916,2,'2006-02-15 05:09:17'), - (4216,916,2,'2006-02-15 05:09:17'), - (4217,917,1,'2006-02-15 05:09:17'), - (4218,917,1,'2006-02-15 05:09:17'), - (4219,917,1,'2006-02-15 05:09:17'), - (4220,917,2,'2006-02-15 05:09:17'), - (4221,917,2,'2006-02-15 05:09:17'), - (4222,918,2,'2006-02-15 05:09:17'), - (4223,918,2,'2006-02-15 05:09:17'), - (4224,918,2,'2006-02-15 05:09:17'), - (4225,918,2,'2006-02-15 05:09:17'), - (4226,919,1,'2006-02-15 05:09:17'), - (4227,919,1,'2006-02-15 05:09:17'), - (4228,919,1,'2006-02-15 05:09:17'), - (4229,919,1,'2006-02-15 05:09:17'), - (4230,920,1,'2006-02-15 05:09:17'), - (4231,920,1,'2006-02-15 05:09:17'), - (4232,920,1,'2006-02-15 05:09:17'), - (4233,920,2,'2006-02-15 05:09:17'), - (4234,920,2,'2006-02-15 05:09:17'), - (4235,921,1,'2006-02-15 05:09:17'), - (4236,921,1,'2006-02-15 05:09:17'), - (4237,921,2,'2006-02-15 05:09:17'), - (4238,921,2,'2006-02-15 05:09:17'), - (4239,922,1,'2006-02-15 05:09:17'), - (4240,922,1,'2006-02-15 05:09:17'), - (4241,922,1,'2006-02-15 05:09:17'), - (4242,922,2,'2006-02-15 05:09:17'), - (4243,922,2,'2006-02-15 05:09:17'), - (4244,922,2,'2006-02-15 05:09:17'), - (4245,922,2,'2006-02-15 05:09:17'), - (4246,923,2,'2006-02-15 05:09:17'), - (4247,923,2,'2006-02-15 05:09:17'), - (4248,923,2,'2006-02-15 05:09:17'), - (4249,924,1,'2006-02-15 05:09:17'), - (4250,924,1,'2006-02-15 05:09:17'), - (4251,924,2,'2006-02-15 05:09:17'), - (4252,924,2,'2006-02-15 05:09:17'), - (4253,924,2,'2006-02-15 05:09:17'), - (4254,925,1,'2006-02-15 05:09:17'), - (4255,925,1,'2006-02-15 05:09:17'), - (4256,925,1,'2006-02-15 05:09:17'), - (4257,925,2,'2006-02-15 05:09:17'), - (4258,925,2,'2006-02-15 05:09:17'), - (4259,926,2,'2006-02-15 05:09:17'), - (4260,926,2,'2006-02-15 05:09:17'), - (4261,927,1,'2006-02-15 05:09:17'), - (4262,927,1,'2006-02-15 05:09:17'), - (4263,927,1,'2006-02-15 05:09:17'), - (4264,927,1,'2006-02-15 05:09:17'), - (4265,928,1,'2006-02-15 05:09:17'), - (4266,928,1,'2006-02-15 05:09:17'), - (4267,928,1,'2006-02-15 05:09:17'), - (4268,929,1,'2006-02-15 05:09:17'), - (4269,929,1,'2006-02-15 05:09:17'), - (4270,929,1,'2006-02-15 05:09:17'), - (4271,929,1,'2006-02-15 05:09:17'), - (4272,930,1,'2006-02-15 05:09:17'), - (4273,930,1,'2006-02-15 05:09:17'), - (4274,930,1,'2006-02-15 05:09:17'), - (4275,930,2,'2006-02-15 05:09:17'), - (4276,930,2,'2006-02-15 05:09:17'), - (4277,930,2,'2006-02-15 05:09:17'), - (4278,931,2,'2006-02-15 05:09:17'), - (4279,931,2,'2006-02-15 05:09:17'), - (4280,931,2,'2006-02-15 05:09:17'), - (4281,932,1,'2006-02-15 05:09:17'), - (4282,932,1,'2006-02-15 05:09:17'), - (4283,932,2,'2006-02-15 05:09:17'), - (4284,932,2,'2006-02-15 05:09:17'), - (4285,933,1,'2006-02-15 05:09:17'), - (4286,933,1,'2006-02-15 05:09:17'), - (4287,933,1,'2006-02-15 05:09:17'), - (4288,934,2,'2006-02-15 05:09:17'), - (4289,934,2,'2006-02-15 05:09:17'), - (4290,934,2,'2006-02-15 05:09:17'), - (4291,935,2,'2006-02-15 05:09:17'), - (4292,935,2,'2006-02-15 05:09:17'), - (4293,936,1,'2006-02-15 05:09:17'), - (4294,936,1,'2006-02-15 05:09:17'), - (4295,936,2,'2006-02-15 05:09:17'), - (4296,936,2,'2006-02-15 05:09:17'), - (4297,936,2,'2006-02-15 05:09:17'), - (4298,936,2,'2006-02-15 05:09:17'), - (4299,937,1,'2006-02-15 05:09:17'), - (4300,937,1,'2006-02-15 05:09:17'), - (4301,937,2,'2006-02-15 05:09:17'), - (4302,937,2,'2006-02-15 05:09:17'), - (4303,937,2,'2006-02-15 05:09:17'), - (4304,938,1,'2006-02-15 05:09:17'), - (4305,938,1,'2006-02-15 05:09:17'), - (4306,938,1,'2006-02-15 05:09:17'), - (4307,938,1,'2006-02-15 05:09:17'), - (4308,938,2,'2006-02-15 05:09:17'), - (4309,938,2,'2006-02-15 05:09:17'), - (4310,939,2,'2006-02-15 05:09:17'), - (4311,939,2,'2006-02-15 05:09:17'), - (4312,939,2,'2006-02-15 05:09:17'), - (4313,939,2,'2006-02-15 05:09:17'), - (4314,940,1,'2006-02-15 05:09:17'), - (4315,940,1,'2006-02-15 05:09:17'), - (4316,940,1,'2006-02-15 05:09:17'), - (4317,941,1,'2006-02-15 05:09:17'), - (4318,941,1,'2006-02-15 05:09:17'), - (4319,941,1,'2006-02-15 05:09:17'), - (4320,941,1,'2006-02-15 05:09:17'), - (4321,941,2,'2006-02-15 05:09:17'), - (4322,941,2,'2006-02-15 05:09:17'), - (4323,941,2,'2006-02-15 05:09:17'), - (4324,942,1,'2006-02-15 05:09:17'), - (4325,942,1,'2006-02-15 05:09:17'), - (4326,942,2,'2006-02-15 05:09:17'), - (4327,942,2,'2006-02-15 05:09:17'), - (4328,944,1,'2006-02-15 05:09:17'), - (4329,944,1,'2006-02-15 05:09:17'), - (4330,944,2,'2006-02-15 05:09:17'), - (4331,944,2,'2006-02-15 05:09:17'), - (4332,944,2,'2006-02-15 05:09:17'), - (4333,945,1,'2006-02-15 05:09:17'), - (4334,945,1,'2006-02-15 05:09:17'), - (4335,945,1,'2006-02-15 05:09:17'), - (4336,945,1,'2006-02-15 05:09:17'), - (4337,945,2,'2006-02-15 05:09:17'), - (4338,945,2,'2006-02-15 05:09:17'), - (4339,945,2,'2006-02-15 05:09:17'), - (4340,945,2,'2006-02-15 05:09:17'), - (4341,946,2,'2006-02-15 05:09:17'), - (4342,946,2,'2006-02-15 05:09:17'), - (4343,946,2,'2006-02-15 05:09:17'), - (4344,946,2,'2006-02-15 05:09:17'), - (4345,947,1,'2006-02-15 05:09:17'), - (4346,947,1,'2006-02-15 05:09:17'), - (4347,948,1,'2006-02-15 05:09:17'), - (4348,948,1,'2006-02-15 05:09:17'), - (4349,948,2,'2006-02-15 05:09:17'), - (4350,948,2,'2006-02-15 05:09:17'), - (4351,948,2,'2006-02-15 05:09:17'), - (4352,948,2,'2006-02-15 05:09:17'), - (4353,949,1,'2006-02-15 05:09:17'), - (4354,949,1,'2006-02-15 05:09:17'), - (4355,949,1,'2006-02-15 05:09:17'), - (4356,949,1,'2006-02-15 05:09:17'), - (4357,949,2,'2006-02-15 05:09:17'), - (4358,949,2,'2006-02-15 05:09:17'), - (4359,951,1,'2006-02-15 05:09:17'), - (4360,951,1,'2006-02-15 05:09:17'), - (4361,951,1,'2006-02-15 05:09:17'), - (4362,951,2,'2006-02-15 05:09:17'), - (4363,951,2,'2006-02-15 05:09:17'), - (4364,951,2,'2006-02-15 05:09:17'), - (4365,951,2,'2006-02-15 05:09:17'), - (4366,952,1,'2006-02-15 05:09:17'), - (4367,952,1,'2006-02-15 05:09:17'), - (4368,952,1,'2006-02-15 05:09:17'), - (4369,953,1,'2006-02-15 05:09:17'), - (4370,953,1,'2006-02-15 05:09:17'), - (4371,953,1,'2006-02-15 05:09:17'), - (4372,953,1,'2006-02-15 05:09:17'), - (4373,953,2,'2006-02-15 05:09:17'), - (4374,953,2,'2006-02-15 05:09:17'), - (4375,956,1,'2006-02-15 05:09:17'), - (4376,956,1,'2006-02-15 05:09:17'), - (4377,956,1,'2006-02-15 05:09:17'), - (4378,956,1,'2006-02-15 05:09:17'), - (4379,957,1,'2006-02-15 05:09:17'), - (4380,957,1,'2006-02-15 05:09:17'), - (4381,957,1,'2006-02-15 05:09:17'), - (4382,957,2,'2006-02-15 05:09:17'), - (4383,957,2,'2006-02-15 05:09:17'), - (4384,958,1,'2006-02-15 05:09:17'), - (4385,958,1,'2006-02-15 05:09:17'), - (4386,958,1,'2006-02-15 05:09:17'), - (4387,958,2,'2006-02-15 05:09:17'), - (4388,958,2,'2006-02-15 05:09:17'), - (4389,958,2,'2006-02-15 05:09:17'), - (4390,959,1,'2006-02-15 05:09:17'), - (4391,959,1,'2006-02-15 05:09:17'), - (4392,960,2,'2006-02-15 05:09:17'), - (4393,960,2,'2006-02-15 05:09:17'), - (4394,960,2,'2006-02-15 05:09:17'), - (4395,961,1,'2006-02-15 05:09:17'), - (4396,961,1,'2006-02-15 05:09:17'), - (4397,961,1,'2006-02-15 05:09:17'), - (4398,961,2,'2006-02-15 05:09:17'), - (4399,961,2,'2006-02-15 05:09:17'), - (4400,962,1,'2006-02-15 05:09:17'), - (4401,962,1,'2006-02-15 05:09:17'), - (4402,962,1,'2006-02-15 05:09:17'), - (4403,962,1,'2006-02-15 05:09:17'), - (4404,963,1,'2006-02-15 05:09:17'), - (4405,963,1,'2006-02-15 05:09:17'), - (4406,963,2,'2006-02-15 05:09:17'), - (4407,963,2,'2006-02-15 05:09:17'), - (4408,963,2,'2006-02-15 05:09:17'), - (4409,964,1,'2006-02-15 05:09:17'), - (4410,964,1,'2006-02-15 05:09:17'), - (4411,964,1,'2006-02-15 05:09:17'), - (4412,964,2,'2006-02-15 05:09:17'), - (4413,964,2,'2006-02-15 05:09:17'), - (4414,965,1,'2006-02-15 05:09:17'), - (4415,965,1,'2006-02-15 05:09:17'), - (4416,966,1,'2006-02-15 05:09:17'), - (4417,966,1,'2006-02-15 05:09:17'), - (4418,966,2,'2006-02-15 05:09:17'), - (4419,966,2,'2006-02-15 05:09:17'), - (4420,966,2,'2006-02-15 05:09:17'), - (4421,966,2,'2006-02-15 05:09:17'), - (4422,967,1,'2006-02-15 05:09:17'), - (4423,967,1,'2006-02-15 05:09:17'), - (4424,967,1,'2006-02-15 05:09:17'), - (4425,967,2,'2006-02-15 05:09:17'), - (4426,967,2,'2006-02-15 05:09:17'), - (4427,968,1,'2006-02-15 05:09:17'), - (4428,968,1,'2006-02-15 05:09:17'), - (4429,968,1,'2006-02-15 05:09:17'), - (4430,969,1,'2006-02-15 05:09:17'), - (4431,969,1,'2006-02-15 05:09:17'), - (4432,969,1,'2006-02-15 05:09:17'), - (4433,969,1,'2006-02-15 05:09:17'), - (4434,970,1,'2006-02-15 05:09:17'), - (4435,970,1,'2006-02-15 05:09:17'), - (4436,970,1,'2006-02-15 05:09:17'), - (4437,970,2,'2006-02-15 05:09:17'), - (4438,970,2,'2006-02-15 05:09:17'), - (4439,970,2,'2006-02-15 05:09:17'), - (4440,970,2,'2006-02-15 05:09:17'), - (4441,971,1,'2006-02-15 05:09:17'), - (4442,971,1,'2006-02-15 05:09:17'), - (4443,971,1,'2006-02-15 05:09:17'), - (4444,971,1,'2006-02-15 05:09:17'), - (4445,972,1,'2006-02-15 05:09:17'), - (4446,972,1,'2006-02-15 05:09:17'), - (4447,972,1,'2006-02-15 05:09:17'), - (4448,972,2,'2006-02-15 05:09:17'), - (4449,972,2,'2006-02-15 05:09:17'), - (4450,972,2,'2006-02-15 05:09:17'), - (4451,973,1,'2006-02-15 05:09:17'), - (4452,973,1,'2006-02-15 05:09:17'), - (4453,973,1,'2006-02-15 05:09:17'), - (4454,973,1,'2006-02-15 05:09:17'), - (4455,973,2,'2006-02-15 05:09:17'), - (4456,973,2,'2006-02-15 05:09:17'), - (4457,973,2,'2006-02-15 05:09:17'), - (4458,973,2,'2006-02-15 05:09:17'), - (4459,974,1,'2006-02-15 05:09:17'), - (4460,974,1,'2006-02-15 05:09:17'), - (4461,975,1,'2006-02-15 05:09:17'), - (4462,975,1,'2006-02-15 05:09:17'), - (4463,975,2,'2006-02-15 05:09:17'), - (4464,975,2,'2006-02-15 05:09:17'), - (4465,975,2,'2006-02-15 05:09:17'), - (4466,976,1,'2006-02-15 05:09:17'), - (4467,976,1,'2006-02-15 05:09:17'), - (4468,976,2,'2006-02-15 05:09:17'), - (4469,976,2,'2006-02-15 05:09:17'), - (4470,976,2,'2006-02-15 05:09:17'), - (4471,976,2,'2006-02-15 05:09:17'), - (4472,977,2,'2006-02-15 05:09:17'), - (4473,977,2,'2006-02-15 05:09:17'), - (4474,977,2,'2006-02-15 05:09:17'), - (4475,978,1,'2006-02-15 05:09:17'), - (4476,978,1,'2006-02-15 05:09:17'), - (4477,978,1,'2006-02-15 05:09:17'), - (4478,979,1,'2006-02-15 05:09:17'), - (4479,979,1,'2006-02-15 05:09:17'), - (4480,979,1,'2006-02-15 05:09:17'), - (4481,979,1,'2006-02-15 05:09:17'), - (4482,979,2,'2006-02-15 05:09:17'), - (4483,979,2,'2006-02-15 05:09:17'), - (4484,979,2,'2006-02-15 05:09:17'), - (4485,980,1,'2006-02-15 05:09:17'), - (4486,980,1,'2006-02-15 05:09:17'), - (4487,980,1,'2006-02-15 05:09:17'), - (4488,980,2,'2006-02-15 05:09:17'), - (4489,980,2,'2006-02-15 05:09:17'), - (4490,981,1,'2006-02-15 05:09:17'), - (4491,981,1,'2006-02-15 05:09:17'), - (4492,981,1,'2006-02-15 05:09:17'), - (4493,981,2,'2006-02-15 05:09:17'), - (4494,981,2,'2006-02-15 05:09:17'), - (4495,981,2,'2006-02-15 05:09:17'), - (4496,982,1,'2006-02-15 05:09:17'), - (4497,982,1,'2006-02-15 05:09:17'), - (4498,982,1,'2006-02-15 05:09:17'), - (4499,982,2,'2006-02-15 05:09:17'), - (4500,982,2,'2006-02-15 05:09:17'), - (4501,982,2,'2006-02-15 05:09:17'), - (4502,982,2,'2006-02-15 05:09:17'), - (4503,983,1,'2006-02-15 05:09:17'), - (4504,983,1,'2006-02-15 05:09:17'), - (4505,983,1,'2006-02-15 05:09:17'), - (4506,984,1,'2006-02-15 05:09:17'), - (4507,984,1,'2006-02-15 05:09:17'), - (4508,985,1,'2006-02-15 05:09:17'), - (4509,985,1,'2006-02-15 05:09:17'), - (4510,985,1,'2006-02-15 05:09:17'), - (4511,985,1,'2006-02-15 05:09:17'), - (4512,985,2,'2006-02-15 05:09:17'), - (4513,985,2,'2006-02-15 05:09:17'), - (4514,985,2,'2006-02-15 05:09:17'), - (4515,986,1,'2006-02-15 05:09:17'), - (4516,986,1,'2006-02-15 05:09:17'), - (4517,986,1,'2006-02-15 05:09:17'), - (4518,986,1,'2006-02-15 05:09:17'), - (4519,986,2,'2006-02-15 05:09:17'), - (4520,986,2,'2006-02-15 05:09:17'), - (4521,987,1,'2006-02-15 05:09:17'), - (4522,987,1,'2006-02-15 05:09:17'), - (4523,987,2,'2006-02-15 05:09:17'), - (4524,987,2,'2006-02-15 05:09:17'), - (4525,988,1,'2006-02-15 05:09:17'), - (4526,988,1,'2006-02-15 05:09:17'), - (4527,988,1,'2006-02-15 05:09:17'), - (4528,988,2,'2006-02-15 05:09:17'), - (4529,988,2,'2006-02-15 05:09:17'), - (4530,989,1,'2006-02-15 05:09:17'), - (4531,989,1,'2006-02-15 05:09:17'), - (4532,989,1,'2006-02-15 05:09:17'), - (4533,989,1,'2006-02-15 05:09:17'), - (4534,989,2,'2006-02-15 05:09:17'), - (4535,989,2,'2006-02-15 05:09:17'), - (4536,990,2,'2006-02-15 05:09:17'), - (4537,990,2,'2006-02-15 05:09:17'), - (4538,991,1,'2006-02-15 05:09:17'), - (4539,991,1,'2006-02-15 05:09:17'), - (4540,991,2,'2006-02-15 05:09:17'), - (4541,991,2,'2006-02-15 05:09:17'), - (4542,991,2,'2006-02-15 05:09:17'), - (4543,992,2,'2006-02-15 05:09:17'), - (4544,992,2,'2006-02-15 05:09:17'), - (4545,992,2,'2006-02-15 05:09:17'), - (4546,992,2,'2006-02-15 05:09:17'), - (4547,993,1,'2006-02-15 05:09:17'), - (4548,993,1,'2006-02-15 05:09:17'), - (4549,993,1,'2006-02-15 05:09:17'), - (4550,993,1,'2006-02-15 05:09:17'), - (4551,993,2,'2006-02-15 05:09:17'), - (4552,993,2,'2006-02-15 05:09:17'), - (4553,993,2,'2006-02-15 05:09:17'), - (4554,994,1,'2006-02-15 05:09:17'), - (4555,994,1,'2006-02-15 05:09:17'), - (4556,994,1,'2006-02-15 05:09:17'), - (4557,995,1,'2006-02-15 05:09:17'), - (4558,995,1,'2006-02-15 05:09:17'), - (4559,995,1,'2006-02-15 05:09:17'), - (4560,995,1,'2006-02-15 05:09:17'), - (4561,995,2,'2006-02-15 05:09:17'), - (4562,995,2,'2006-02-15 05:09:17'), - (4563,996,1,'2006-02-15 05:09:17'), - (4564,996,1,'2006-02-15 05:09:17'), - (4565,997,1,'2006-02-15 05:09:17'), - (4566,997,1,'2006-02-15 05:09:17'), - (4567,998,2,'2006-02-15 05:09:17'), - (4568,998,2,'2006-02-15 05:09:17'), - (4569,999,1,'2006-02-15 05:09:17'), - (4570,999,1,'2006-02-15 05:09:17'), - (4571,999,2,'2006-02-15 05:09:17'), - (4572,999,2,'2006-02-15 05:09:17'), - (4573,999,2,'2006-02-15 05:09:17'), - (4574,1000,1,'2006-02-15 05:09:17'), - (4575,1000,1,'2006-02-15 05:09:17'), - (4576,1000,1,'2006-02-15 05:09:17'), - (4577,1000,1,'2006-02-15 05:09:17'), - (4578,1000,2,'2006-02-15 05:09:17'), - (4579,1000,2,'2006-02-15 05:09:17'), - (4580,1000,2,'2006-02-15 05:09:17'), - (4581,1000,2,'2006-02-15 05:09:17'); -COMMIT; - --- --- Dumping data for table language --- - -SET AUTOCOMMIT=0; -INSERT INTO language VALUES (1,'English','2006-02-15 05:02:19'), - (2,'Italian','2006-02-15 05:02:19'), - (3,'Japanese','2006-02-15 05:02:19'), - (4,'Mandarin','2006-02-15 05:02:19'), - (5,'French','2006-02-15 05:02:19'), - (6,'German','2006-02-15 05:02:19'); -COMMIT; - --- --- Dumping data for table payment --- - -SET AUTOCOMMIT=0; -INSERT INTO payment VALUES (1,1,1,76,'2.99','2005-05-25 11:30:37','2006-02-15 22:12:30'), - (2,1,1,573,'0.99','2005-05-28 10:35:23','2006-02-15 22:12:30'), - (3,1,1,1185,'5.99','2005-06-15 00:54:12','2006-02-15 22:12:30'), - (4,1,2,1422,'0.99','2005-06-15 18:02:53','2006-02-15 22:12:30'), - (5,1,2,1476,'9.99','2005-06-15 21:08:46','2006-02-15 22:12:30'), - (6,1,1,1725,'4.99','2005-06-16 15:18:57','2006-02-15 22:12:30'), - (7,1,1,2308,'4.99','2005-06-18 08:41:48','2006-02-15 22:12:30'), - (8,1,2,2363,'0.99','2005-06-18 13:33:59','2006-02-15 22:12:30'), - (9,1,1,3284,'3.99','2005-06-21 06:24:45','2006-02-15 22:12:30'), - (10,1,2,4526,'5.99','2005-07-08 03:17:05','2006-02-15 22:12:30'), - (11,1,1,4611,'5.99','2005-07-08 07:33:56','2006-02-15 22:12:30'), - (12,1,1,5244,'4.99','2005-07-09 13:24:07','2006-02-15 22:12:30'), - (13,1,1,5326,'4.99','2005-07-09 16:38:01','2006-02-15 22:12:30'), - (14,1,1,6163,'7.99','2005-07-11 10:13:46','2006-02-15 22:12:30'), - (15,1,2,7273,'2.99','2005-07-27 11:31:22','2006-02-15 22:12:30'), - (16,1,1,7841,'4.99','2005-07-28 09:04:45','2006-02-15 22:12:30'), - (17,1,2,8033,'4.99','2005-07-28 16:18:23','2006-02-15 22:12:30'), - (18,1,1,8074,'0.99','2005-07-28 17:33:39','2006-02-15 22:12:30'), - (19,1,2,8116,'0.99','2005-07-28 19:20:07','2006-02-15 22:12:30'), - (20,1,2,8326,'2.99','2005-07-29 03:58:49','2006-02-15 22:12:30'), - (21,1,2,9571,'2.99','2005-07-31 02:42:18','2006-02-15 22:12:30'), - (22,1,2,10437,'4.99','2005-08-01 08:51:04','2006-02-15 22:12:30'), - (23,1,2,11299,'3.99','2005-08-02 15:36:52','2006-02-15 22:12:30'), - (24,1,1,11367,'0.99','2005-08-02 18:01:38','2006-02-15 22:12:30'), - (25,1,2,11824,'4.99','2005-08-17 12:37:54','2006-02-15 22:12:30'), - (26,1,1,12250,'0.99','2005-08-18 03:57:29','2006-02-15 22:12:30'), - (27,1,2,13068,'0.99','2005-08-19 09:55:16','2006-02-15 22:12:30'), - (28,1,2,13176,'2.99','2005-08-19 13:56:54','2006-02-15 22:12:30'), - (29,1,1,14762,'0.99','2005-08-21 23:33:57','2006-02-15 22:12:30'), - (30,1,1,14825,'1.99','2005-08-22 01:27:57','2006-02-15 22:12:30'), - (31,1,2,15298,'2.99','2005-08-22 19:41:37','2006-02-15 22:12:30'), - (32,1,1,15315,'5.99','2005-08-22 20:03:46','2006-02-15 22:12:30'), - (33,2,1,320,'4.99','2005-05-27 00:09:24','2006-02-15 22:12:30'), - (34,2,1,2128,'2.99','2005-06-17 20:54:58','2006-02-15 22:12:30'), - (35,2,1,5636,'2.99','2005-07-10 06:31:24','2006-02-15 22:12:30'), - (36,2,1,5755,'6.99','2005-07-10 12:38:56','2006-02-15 22:12:30'), - (37,2,2,7346,'4.99','2005-07-27 14:30:42','2006-02-15 22:12:30'), - (38,2,1,7376,'5.99','2005-07-27 15:23:02','2006-02-15 22:12:30'), - (39,2,2,7459,'5.99','2005-07-27 18:40:20','2006-02-15 22:12:30'), - (40,2,2,8230,'5.99','2005-07-29 00:12:59','2006-02-15 22:12:30'), - (41,2,1,8598,'2.99','2005-07-29 12:56:59','2006-02-15 22:12:30'), - (42,2,2,8705,'5.99','2005-07-29 17:14:29','2006-02-15 22:12:30'), - (43,2,1,9031,'4.99','2005-07-30 06:06:10','2006-02-15 22:12:30'), - (44,2,2,9236,'10.99','2005-07-30 13:47:43','2006-02-15 22:12:30'), - (45,2,2,9248,'0.99','2005-07-30 14:14:11','2006-02-15 22:12:30'), - (46,2,2,9296,'6.99','2005-07-30 16:21:13','2006-02-15 22:12:30'), - (47,2,2,9465,'6.99','2005-07-30 22:39:53','2006-02-15 22:12:30'), - (48,2,1,10136,'2.99','2005-07-31 21:58:56','2006-02-15 22:12:30'), - (49,2,1,10466,'0.99','2005-08-01 09:45:26','2006-02-15 22:12:30'), - (50,2,1,10918,'0.99','2005-08-02 02:10:56','2006-02-15 22:12:30'), - (51,2,1,11087,'5.99','2005-08-02 07:41:41','2006-02-15 22:12:30'), - (52,2,1,11177,'6.99','2005-08-02 10:43:48','2006-02-15 22:12:30'), - (53,2,2,11256,'2.99','2005-08-02 13:44:53','2006-02-15 22:12:30'), - (54,2,1,11614,'2.99','2005-08-17 03:52:18','2006-02-15 22:12:30'), - (55,2,1,12963,'2.99','2005-08-19 06:26:04','2006-02-15 22:12:30'), - (56,2,1,14475,'4.99','2005-08-21 13:24:32','2006-02-15 22:12:30'), - (57,2,2,14743,'5.99','2005-08-21 22:41:56','2006-02-15 22:12:30'), - (58,2,2,15145,'4.99','2005-08-22 13:53:04','2006-02-15 22:12:30'), - (59,2,2,15907,'4.99','2005-08-23 17:39:35','2006-02-15 22:12:30'), - (60,3,1,435,'1.99','2005-05-27 17:17:09','2006-02-15 22:12:30'), - (61,3,1,830,'2.99','2005-05-29 22:43:55','2006-02-15 22:12:30'), - (62,3,1,1546,'8.99','2005-06-16 01:34:05','2006-02-15 22:12:30'), - (63,3,1,1726,'6.99','2005-06-16 15:19:10','2006-02-15 22:12:30'), - (64,3,2,1911,'6.99','2005-06-17 05:15:15','2006-02-15 22:12:30'), - (65,3,1,2628,'2.99','2005-06-19 08:34:53','2006-02-15 22:12:30'), - (66,3,1,4180,'4.99','2005-07-07 10:23:25','2006-02-15 22:12:30'), - (67,3,1,4725,'4.99','2005-07-08 12:47:11','2006-02-15 22:12:30'), - (68,3,1,7096,'5.99','2005-07-27 04:54:42','2006-02-15 22:12:30'), - (69,3,2,7503,'10.99','2005-07-27 20:23:12','2006-02-15 22:12:30'), - (70,3,2,7703,'7.99','2005-07-28 03:59:21','2006-02-15 22:12:30'), - (71,3,2,7724,'6.99','2005-07-28 04:46:30','2006-02-15 22:12:30'), - (72,3,1,7911,'4.99','2005-07-28 11:46:45','2006-02-15 22:12:30'), - (73,3,2,8086,'4.99','2005-07-28 18:17:14','2006-02-15 22:12:30'), - (74,3,1,8545,'2.99','2005-07-29 11:07:04','2006-02-15 22:12:30'), - (75,3,1,9226,'1.99','2005-07-30 13:31:20','2006-02-15 22:12:30'), - (76,3,2,9443,'3.99','2005-07-30 21:45:46','2006-02-15 22:12:30'), - (77,3,1,9595,'2.99','2005-07-31 03:27:58','2006-02-15 22:12:30'), - (78,3,2,9816,'4.99','2005-07-31 11:32:58','2006-02-15 22:12:30'), - (79,3,2,10597,'5.99','2005-08-01 14:19:48','2006-02-15 22:12:30'), - (80,3,2,12556,'4.99','2005-08-18 14:49:55','2006-02-15 22:12:30'), - (81,3,1,13403,'8.99','2005-08-19 22:18:07','2006-02-15 22:12:30'), - (82,3,2,13610,'2.99','2005-08-20 06:14:12','2006-02-15 22:12:30'), - (83,3,2,14699,'8.99','2005-08-21 20:50:48','2006-02-15 22:12:30'), - (84,3,2,15038,'0.99','2005-08-22 09:37:27','2006-02-15 22:12:30'), - (85,3,1,15619,'2.99','2005-08-23 07:10:14','2006-02-15 22:12:30'), - (86,4,1,1297,'4.99','2005-06-15 09:31:28','2006-02-15 22:12:30'), - (87,4,1,1633,'0.99','2005-06-16 08:08:40','2006-02-15 22:12:30'), - (88,4,2,1707,'2.99','2005-06-16 14:01:27','2006-02-15 22:12:30'), - (89,4,2,1735,'0.99','2005-06-16 15:51:52','2006-02-15 22:12:30'), - (90,4,2,2043,'0.99','2005-06-17 14:31:12','2006-02-15 22:12:30'), - (91,4,1,2642,'5.99','2005-06-19 09:39:01','2006-02-15 22:12:30'), - (92,4,1,7660,'2.99','2005-07-28 02:10:10','2006-02-15 22:12:30'), - (93,4,2,7718,'2.99','2005-07-28 04:37:59','2006-02-15 22:12:30'), - (94,4,1,8741,'3.99','2005-07-29 18:44:57','2006-02-15 22:12:30'), - (95,4,1,9100,'5.99','2005-07-30 08:46:09','2006-02-15 22:12:30'), - (96,4,1,9371,'5.99','2005-07-30 18:58:00','2006-02-15 22:12:30'), - (97,4,2,11069,'0.99','2005-08-02 07:09:34','2006-02-15 22:12:30'), - (98,4,1,11110,'2.99','2005-08-02 08:20:31','2006-02-15 22:12:30'), - (99,4,2,11529,'4.99','2005-08-17 00:28:01','2006-02-15 22:12:30'), - (100,4,1,12151,'2.99','2005-08-18 00:14:03','2006-02-15 22:12:30'), - (101,4,2,12294,'8.99','2005-08-18 05:14:44','2006-02-15 22:12:30'), - (102,4,2,12856,'1.99','2005-08-19 02:19:13','2006-02-15 22:12:30'), - (103,4,1,13704,'2.99','2005-08-20 09:32:04','2006-02-15 22:12:30'), - (104,4,1,13807,'6.99','2005-08-20 12:55:40','2006-02-15 22:12:30'), - (105,4,2,14225,'4.99','2005-08-21 04:53:37','2006-02-15 22:12:30'), - (106,4,1,15147,'2.99','2005-08-22 13:58:23','2006-02-15 22:12:30'), - (107,4,2,15635,'1.99','2005-08-23 07:43:00','2006-02-15 22:12:30'), - (108,5,1,731,'0.99','2005-05-29 07:25:16','2006-02-15 22:12:30'), - (109,5,1,1085,'6.99','2005-05-31 11:15:43','2006-02-15 22:12:30'), - (110,5,1,1142,'1.99','2005-05-31 19:46:38','2006-02-15 22:12:30'), - (111,5,1,1502,'3.99','2005-06-15 22:03:14','2006-02-15 22:12:30'), - (112,5,2,1631,'2.99','2005-06-16 08:01:02','2006-02-15 22:12:30'), - (113,5,2,2063,'4.99','2005-06-17 15:56:53','2006-02-15 22:12:30'), - (114,5,2,2570,'2.99','2005-06-19 04:20:13','2006-02-15 22:12:30'), - (115,5,2,3126,'4.99','2005-06-20 18:38:22','2006-02-15 22:12:30'), - (116,5,2,3677,'4.99','2005-07-06 09:11:58','2006-02-15 22:12:30'), - (117,5,2,4889,'2.99','2005-07-08 20:04:43','2006-02-15 22:12:30'), - (118,5,1,5016,'4.99','2005-07-09 01:57:57','2006-02-15 22:12:30'), - (119,5,2,5118,'5.99','2005-07-09 07:13:52','2006-02-15 22:12:30'), - (120,5,2,5156,'1.99','2005-07-09 08:51:42','2006-02-15 22:12:30'), - (121,5,2,5721,'0.99','2005-07-10 11:09:35','2006-02-15 22:12:30'), - (122,5,1,6042,'8.99','2005-07-11 03:17:04','2006-02-15 22:12:30'), - (123,5,1,6663,'3.99','2005-07-12 11:27:35','2006-02-15 22:12:30'), - (124,5,2,6685,'4.99','2005-07-12 12:16:28','2006-02-15 22:12:30'), - (125,5,2,7293,'0.99','2005-07-27 12:37:28','2006-02-15 22:12:30'), - (126,5,2,7652,'0.99','2005-07-28 01:50:29','2006-02-15 22:12:30'), - (127,5,2,7829,'3.99','2005-07-28 08:43:39','2006-02-15 22:12:30'), - (128,5,1,8263,'2.99','2005-07-29 01:11:23','2006-02-15 22:12:30'), - (129,5,1,8978,'1.99','2005-07-30 04:14:28','2006-02-15 22:12:30'), - (130,5,1,9493,'4.99','2005-07-30 23:52:30','2006-02-15 22:12:30'), - (131,5,1,9888,'3.99','2005-07-31 14:00:53','2006-02-15 22:12:30'), - (132,5,2,10609,'4.99','2005-08-01 14:48:45','2006-02-15 22:12:30'), - (133,5,1,10625,'0.99','2005-08-01 15:27:10','2006-02-15 22:12:30'), - (134,5,2,11001,'4.99','2005-08-02 04:56:45','2006-02-15 22:12:30'), - (135,5,1,11179,'4.99','2005-08-02 10:50:06','2006-02-15 22:12:30'), - (136,5,2,11930,'3.99','2005-08-17 16:28:53','2006-02-15 22:12:30'), - (137,5,1,12145,'9.99','2005-08-18 00:10:04','2006-02-15 22:12:30'), - (138,5,1,12797,'2.99','2005-08-19 00:24:08','2006-02-15 22:12:30'), - (139,5,1,13063,'1.99','2005-08-19 09:45:41','2006-02-15 22:12:30'), - (140,5,2,13877,'0.99','2005-08-20 15:16:18','2006-02-15 22:12:30'), - (141,5,2,14053,'6.99','2005-08-20 22:13:59','2006-02-15 22:12:30'), - (142,5,1,14430,'6.99','2005-08-21 11:31:11','2006-02-15 22:12:30'), - (143,5,2,14494,'2.99','2005-08-21 14:02:50','2006-02-15 22:12:30'), - (144,5,2,15232,'0.99','2005-08-22 17:37:02','2006-02-15 22:12:30'), - (145,5,2,13209,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:30'), - (146,6,2,57,'4.99','2005-05-25 08:43:32','2006-02-15 22:12:30'), - (147,6,1,577,'2.99','2005-05-28 11:09:14','2006-02-15 22:12:30'), - (148,6,2,916,'0.99','2005-05-30 11:25:01','2006-02-15 22:12:30'), - (149,6,1,1575,'3.99','2005-06-16 03:41:38','2006-02-15 22:12:30'), - (150,6,2,1841,'2.99','2005-06-16 23:44:13','2006-02-15 22:12:30'), - (151,6,1,1966,'0.99','2005-06-17 09:19:45','2006-02-15 22:12:30'), - (152,6,1,2345,'0.99','2005-06-18 12:03:23','2006-02-15 22:12:30'), - (153,6,2,3983,'0.99','2005-07-06 23:14:21','2006-02-15 22:12:30'), - (154,6,2,4278,'2.99','2005-07-07 14:53:24','2006-02-15 22:12:30'), - (155,6,1,5553,'0.99','2005-07-10 03:03:35','2006-02-15 22:12:30'), - (156,6,2,6211,'5.99','2005-07-11 12:39:01','2006-02-15 22:12:30'), - (157,6,1,6248,'7.99','2005-07-11 15:01:54','2006-02-15 22:12:30'), - (158,6,2,6686,'0.99','2005-07-12 12:18:38','2006-02-15 22:12:30'), - (159,6,2,7099,'2.99','2005-07-27 05:03:44','2006-02-15 22:12:30'), - (160,6,2,7136,'2.99','2005-07-27 06:38:25','2006-02-15 22:12:30'), - (161,6,1,8101,'0.99','2005-07-28 18:47:23','2006-02-15 22:12:30'), - (162,6,1,10271,'2.99','2005-08-01 03:13:39','2006-02-15 22:12:30'), - (163,6,1,11023,'2.99','2005-08-02 05:36:38','2006-02-15 22:12:30'), - (164,6,1,11398,'3.99','2005-08-02 18:55:15','2006-02-15 22:12:30'), - (165,6,1,11591,'6.99','2005-08-17 02:29:41','2006-02-15 22:12:30'), - (166,6,1,11727,'0.99','2005-08-17 08:12:20','2006-02-15 22:12:30'), - (167,6,1,11853,'0.99','2005-08-17 13:39:32','2006-02-15 22:12:30'), - (168,6,2,12254,'2.99','2005-08-18 04:05:29','2006-02-15 22:12:30'), - (169,6,2,13451,'6.99','2005-08-20 00:18:25','2006-02-15 22:12:30'), - (170,6,1,14329,'7.99','2005-08-21 08:22:56','2006-02-15 22:12:30'), - (171,6,1,14377,'4.99','2005-08-21 09:49:28','2006-02-15 22:12:30'), - (172,6,1,15509,'5.99','2005-08-23 02:51:24','2006-02-15 22:12:30'), - (173,6,2,15603,'0.99','2005-08-23 06:41:32','2006-02-15 22:12:30'), - (174,7,2,46,'5.99','2005-05-25 06:04:08','2006-02-15 22:12:30'), - (175,7,2,117,'0.99','2005-05-25 19:30:46','2006-02-15 22:12:30'), - (176,7,2,748,'2.99','2005-05-29 09:27:00','2006-02-15 22:12:30'), - (177,7,1,975,'4.99','2005-05-30 21:07:15','2006-02-15 22:12:30'), - (178,7,1,1063,'5.99','2005-05-31 08:44:29','2006-02-15 22:12:30'), - (179,7,2,1810,'0.99','2005-06-16 21:06:00','2006-02-15 22:12:30'), - (180,7,1,2250,'2.99','2005-06-18 05:03:36','2006-02-15 22:12:31'), - (181,7,1,2709,'0.99','2005-06-19 14:00:26','2006-02-15 22:12:31'), - (182,7,1,2888,'4.99','2005-06-20 01:50:56','2006-02-15 22:12:31'), - (183,7,1,3007,'0.99','2005-06-20 10:11:53','2006-02-15 22:12:31'), - (184,7,2,3639,'5.99','2005-07-06 07:09:17','2006-02-15 22:12:31'), - (185,7,2,4238,'2.99','2005-07-07 13:22:20','2006-02-15 22:12:31'), - (186,7,2,4787,'5.99','2005-07-08 16:16:04','2006-02-15 22:12:31'), - (187,7,1,4856,'4.99','2005-07-08 18:47:38','2006-02-15 22:12:31'), - (188,7,1,5441,'8.99','2005-07-09 21:52:05','2006-02-15 22:12:31'), - (189,7,1,5921,'7.99','2005-07-10 21:35:12','2006-02-15 22:12:31'), - (190,7,1,6174,'1.99','2005-07-11 10:36:28','2006-02-15 22:12:31'), - (191,7,1,6295,'2.99','2005-07-11 17:30:58','2006-02-15 22:12:31'), - (192,7,2,6761,'3.99','2005-07-12 15:17:42','2006-02-15 22:12:31'), - (193,7,2,8422,'5.99','2005-07-29 07:02:55','2006-02-15 22:12:31'), - (194,7,2,9624,'7.99','2005-07-31 04:30:03','2006-02-15 22:12:31'), - (195,7,2,10330,'6.99','2005-08-01 04:57:04','2006-02-15 22:12:31'), - (196,7,1,10423,'5.99','2005-08-01 08:19:53','2006-02-15 22:12:31'), - (197,7,1,10514,'4.99','2005-08-01 11:39:26','2006-02-15 22:12:31'), - (198,7,2,10644,'4.99','2005-08-01 15:52:00','2006-02-15 22:12:31'), - (199,7,2,10989,'3.99','2005-08-02 04:40:54','2006-02-15 22:12:31'), - (200,7,2,11542,'7.99','2005-08-17 00:51:32','2006-02-15 22:12:31'), - (201,7,1,12367,'8.99','2005-08-18 07:57:14','2006-02-15 22:12:31'), - (202,7,1,12730,'2.99','2005-08-18 21:55:01','2006-02-15 22:12:31'), - (203,7,2,13373,'2.99','2005-08-19 21:23:31','2006-02-15 22:12:31'), - (204,7,1,13476,'2.99','2005-08-20 01:06:04','2006-02-15 22:12:31'), - (205,7,1,13594,'0.99','2005-08-20 05:53:31','2006-02-15 22:12:31'), - (206,7,1,14222,'5.99','2005-08-21 04:49:48','2006-02-15 22:12:31'), - (207,8,2,866,'6.99','2005-05-30 03:43:54','2006-02-15 22:12:31'), - (208,8,2,1305,'2.99','2005-06-15 09:59:16','2006-02-15 22:12:31'), - (209,8,1,2095,'5.99','2005-06-17 18:21:35','2006-02-15 22:12:31'), - (210,8,2,3114,'4.99','2005-06-20 17:57:47','2006-02-15 22:12:31'), - (211,8,1,3475,'5.99','2005-07-05 23:01:21','2006-02-15 22:12:31'), - (212,8,1,4003,'0.99','2005-07-07 00:09:02','2006-02-15 22:12:31'), - (213,8,2,4175,'2.99','2005-07-07 10:02:03','2006-02-15 22:12:31'), - (214,8,2,4409,'3.99','2005-07-07 21:47:29','2006-02-15 22:12:31'), - (215,8,1,4503,'3.99','2005-07-08 02:17:12','2006-02-15 22:12:31'), - (216,8,1,5300,'2.99','2005-07-09 15:40:46','2006-02-15 22:12:31'), - (217,8,2,5341,'2.99','2005-07-09 17:13:23','2006-02-15 22:12:31'), - (218,8,1,6375,'4.99','2005-07-11 21:39:46','2006-02-15 22:12:31'), - (219,8,1,6647,'0.99','2005-07-12 10:43:53','2006-02-15 22:12:31'), - (220,8,1,8809,'1.99','2005-07-29 21:42:49','2006-02-15 22:12:31'), - (221,8,2,9629,'2.99','2005-07-31 04:54:43','2006-02-15 22:12:31'), - (222,8,2,10141,'0.99','2005-07-31 22:08:29','2006-02-15 22:12:31'), - (223,8,2,10561,'2.99','2005-08-01 13:05:35','2006-02-15 22:12:31'), - (224,8,1,11232,'9.99','2005-08-02 13:04:12','2006-02-15 22:12:31'), - (225,8,2,11284,'2.99','2005-08-02 14:42:45','2006-02-15 22:12:31'), - (226,8,1,12613,'2.99','2005-08-18 17:16:01','2006-02-15 22:12:31'), - (227,8,1,14114,'0.99','2005-08-21 01:07:11','2006-02-15 22:12:31'), - (228,8,1,15374,'7.99','2005-08-22 22:09:09','2006-02-15 22:12:31'), - (229,8,1,15764,'2.99','2005-08-23 13:05:10','2006-02-15 22:12:31'), - (230,8,1,15805,'4.99','2005-08-23 14:31:19','2006-02-15 22:12:31'), - (231,9,2,350,'4.99','2005-05-27 05:01:28','2006-02-15 22:12:31'), - (232,9,2,877,'0.99','2005-05-30 05:48:59','2006-02-15 22:12:31'), - (233,9,2,1075,'4.99','2005-05-31 10:13:34','2006-02-15 22:12:31'), - (234,9,2,3142,'7.99','2005-06-20 19:59:28','2006-02-15 22:12:31'), - (235,9,2,3262,'4.99','2005-06-21 04:08:43','2006-02-15 22:12:31'), - (236,9,1,4454,'2.99','2005-07-07 23:37:00','2006-02-15 22:12:31'), - (237,9,2,4748,'0.99','2005-07-08 13:59:38','2006-02-15 22:12:31'), - (238,9,1,4796,'1.99','2005-07-08 16:35:44','2006-02-15 22:12:31'), - (239,9,1,5659,'2.99','2005-07-10 07:45:40','2006-02-15 22:12:31'), - (240,9,2,6019,'4.99','2005-07-11 02:08:29','2006-02-15 22:12:31'), - (241,9,1,6165,'5.99','2005-07-11 10:17:29','2006-02-15 22:12:31'), - (242,9,2,7616,'0.99','2005-07-28 00:15:26','2006-02-15 22:12:31'), - (243,9,1,7801,'2.99','2005-07-28 07:51:56','2006-02-15 22:12:31'), - (244,9,1,9043,'4.99','2005-07-30 06:34:07','2006-02-15 22:12:31'), - (245,9,1,10451,'0.99','2005-08-01 09:11:25','2006-02-15 22:12:31'), - (246,9,1,10454,'4.99','2005-08-01 09:14:00','2006-02-15 22:12:31'), - (247,9,2,11400,'5.99','2005-08-02 19:00:52','2006-02-15 22:12:31'), - (248,9,1,11556,'0.99','2005-08-17 01:11:53','2006-02-15 22:12:31'), - (249,9,1,12228,'2.99','2005-08-18 03:08:10','2006-02-15 22:12:31'), - (250,9,1,12309,'2.99','2005-08-18 05:58:40','2006-02-15 22:12:31'), - (251,9,2,12652,'4.99','2005-08-18 18:48:58','2006-02-15 22:12:31'), - (252,9,2,14489,'7.99','2005-08-21 13:53:59','2006-02-15 22:12:31'), - (253,9,1,15813,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:31'), - (254,10,2,1140,'4.99','2005-05-31 19:36:30','2006-02-15 22:12:31'), - (255,10,1,1801,'4.99','2005-06-16 20:21:53','2006-02-15 22:12:31'), - (256,10,1,1995,'4.99','2005-06-17 11:11:14','2006-02-15 22:12:31'), - (257,10,2,2222,'3.99','2005-06-18 03:26:23','2006-02-15 22:12:31'), - (258,10,1,2814,'0.99','2005-06-19 20:01:59','2006-02-15 22:12:31'), - (259,10,1,2865,'0.99','2005-06-20 00:00:55','2006-02-15 22:12:31'), - (260,10,2,3790,'3.99','2005-07-06 14:13:45','2006-02-15 22:12:31'), - (261,10,2,4042,'4.99','2005-07-07 03:06:40','2006-02-15 22:12:31'), - (262,10,1,4255,'1.99','2005-07-07 14:14:13','2006-02-15 22:12:31'), - (263,10,1,5038,'7.99','2005-07-09 03:12:52','2006-02-15 22:12:31'), - (264,10,2,5068,'2.99','2005-07-09 04:53:18','2006-02-15 22:12:31'), - (265,10,1,5444,'0.99','2005-07-09 21:58:57','2006-02-15 22:12:31'), - (266,10,1,5905,'2.99','2005-07-10 20:41:09','2006-02-15 22:12:31'), - (267,10,1,7738,'2.99','2005-07-28 05:21:42','2006-02-15 22:12:31'), - (268,10,2,8001,'6.99','2005-07-28 15:10:55','2006-02-15 22:12:31'), - (269,10,2,8188,'4.99','2005-07-28 22:34:12','2006-02-15 22:12:31'), - (270,10,1,9935,'4.99','2005-07-31 15:27:07','2006-02-15 22:12:31'), - (271,10,2,10671,'8.99','2005-08-01 17:09:59','2006-02-15 22:12:31'), - (272,10,2,11289,'2.99','2005-08-02 14:55:00','2006-02-15 22:12:31'), - (273,10,1,11405,'0.99','2005-08-02 19:13:39','2006-02-15 22:12:31'), - (274,10,2,12031,'2.99','2005-08-17 20:11:35','2006-02-15 22:12:31'), - (275,10,2,12400,'2.99','2005-08-18 09:19:12','2006-02-15 22:12:31'), - (276,10,2,13316,'4.99','2005-08-19 19:23:30','2006-02-15 22:12:31'), - (277,10,2,13917,'2.99','2005-08-20 16:43:28','2006-02-15 22:12:31'), - (278,10,1,15370,'5.99','2005-08-22 21:59:29','2006-02-15 22:12:31'), - (279,11,1,987,'6.99','2005-05-30 22:59:12','2006-02-15 22:12:31'), - (280,11,1,1470,'6.99','2005-06-15 20:53:07','2006-02-15 22:12:31'), - (281,11,1,1939,'7.99','2005-06-17 07:26:45','2006-02-15 22:12:31'), - (282,11,1,3192,'0.99','2005-06-20 23:49:12','2006-02-15 22:12:31'), - (283,11,2,4608,'2.99','2005-07-08 07:19:11','2006-02-15 22:12:31'), - (284,11,1,4943,'4.99','2005-07-08 22:43:05','2006-02-15 22:12:31'), - (285,11,2,5835,'5.99','2005-07-10 16:44:58','2006-02-15 22:12:31'), - (286,11,2,6146,'6.99','2005-07-11 09:09:59','2006-02-15 22:12:31'), - (287,11,1,7314,'4.99','2005-07-27 13:13:32','2006-02-15 22:12:31'), - (288,11,1,8014,'4.99','2005-07-28 15:32:07','2006-02-15 22:12:31'), - (289,11,2,8100,'2.99','2005-07-28 18:43:11','2006-02-15 22:12:31'), - (290,11,2,8447,'1.99','2005-07-29 07:38:14','2006-02-15 22:12:31'), - (291,11,1,8715,'0.99','2005-07-29 17:33:45','2006-02-15 22:12:31'), - (292,11,1,8950,'9.99','2005-07-30 03:17:13','2006-02-15 22:12:31'), - (293,11,2,9292,'6.99','2005-07-30 16:08:21','2006-02-15 22:12:31'), - (294,11,1,10812,'4.99','2005-08-01 22:41:16','2006-02-15 22:12:31'), - (295,11,2,11166,'6.99','2005-08-02 10:14:58','2006-02-15 22:12:31'), - (296,11,2,11502,'0.99','2005-08-16 23:06:30','2006-02-15 22:12:31'), - (297,11,2,12015,'5.99','2005-08-17 19:32:44','2006-02-15 22:12:31'), - (298,11,2,13572,'0.99','2005-08-20 05:07:27','2006-02-15 22:12:31'), - (299,11,1,13790,'4.99','2005-08-20 12:17:27','2006-02-15 22:12:31'), - (300,11,1,15120,'0.99','2005-08-22 12:42:47','2006-02-15 22:12:31'), - (301,11,2,15240,'2.99','2005-08-22 17:46:41','2006-02-15 22:12:31'), - (302,11,1,11646,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:31'), - (303,12,1,988,'4.99','2005-05-30 23:08:03','2006-02-15 22:12:31'), - (304,12,1,1084,'4.99','2005-05-31 11:10:17','2006-02-15 22:12:31'), - (305,12,2,1752,'5.99','2005-06-16 17:02:55','2006-02-15 22:12:31'), - (306,12,2,2434,'5.99','2005-06-18 18:11:51','2006-02-15 22:12:31'), - (307,12,2,2500,'5.99','2005-06-18 23:07:12','2006-02-15 22:12:31'), - (308,12,2,2623,'4.99','2005-06-19 08:11:51','2006-02-15 22:12:31'), - (309,12,2,3135,'2.99','2005-06-20 19:33:52','2006-02-15 22:12:31'), - (310,12,1,3411,'0.99','2005-06-21 16:31:27','2006-02-15 22:12:31'), - (311,12,1,3870,'3.99','2005-07-06 17:57:54','2006-02-15 22:12:31'), - (312,12,1,5071,'0.99','2005-07-09 05:00:39','2006-02-15 22:12:31'), - (313,12,1,5074,'0.99','2005-07-09 05:06:24','2006-02-15 22:12:31'), - (314,12,2,5111,'0.99','2005-07-09 07:02:19','2006-02-15 22:12:31'), - (315,12,2,5242,'3.99','2005-07-09 13:20:25','2006-02-15 22:12:31'), - (316,12,1,6773,'2.99','2005-07-12 15:55:39','2006-02-15 22:12:31'), - (317,12,2,7008,'0.99','2005-07-27 01:44:03','2006-02-15 22:12:31'), - (318,12,2,7279,'0.99','2005-07-27 11:50:47','2006-02-15 22:12:31'), - (319,12,2,8985,'0.99','2005-07-30 04:34:51','2006-02-15 22:12:31'), - (320,12,2,9166,'4.99','2005-07-30 11:26:28','2006-02-15 22:12:31'), - (321,12,2,9238,'5.99','2005-07-30 13:49:43','2006-02-15 22:12:31'), - (322,12,1,9627,'5.99','2005-07-31 04:42:46','2006-02-15 22:12:31'), - (323,12,2,9708,'5.99','2005-07-31 07:45:33','2006-02-15 22:12:31'), - (324,12,2,10392,'10.99','2005-08-01 06:50:26','2006-02-15 22:12:31'), - (325,12,2,11497,'0.99','2005-08-16 22:52:30','2006-02-15 22:12:31'), - (326,12,1,12604,'4.99','2005-08-18 16:58:48','2006-02-15 22:12:31'), - (327,12,2,13519,'0.99','2005-08-20 02:37:07','2006-02-15 22:12:31'), - (328,12,2,13895,'2.99','2005-08-20 15:58:28','2006-02-15 22:12:31'), - (329,12,2,14240,'4.99','2005-08-21 05:19:39','2006-02-15 22:12:31'), - (330,12,1,15993,'0.99','2005-08-23 20:28:44','2006-02-15 22:12:31'), - (331,13,1,1933,'2.99','2005-06-17 06:54:42','2006-02-15 22:12:31'), - (332,13,1,2209,'4.99','2005-06-18 02:24:01','2006-02-15 22:12:31'), - (333,13,1,2952,'2.99','2005-06-20 06:26:57','2006-02-15 22:12:31'), - (334,13,1,3047,'8.99','2005-06-20 12:45:33','2006-02-15 22:12:31'), - (335,13,2,3946,'2.99','2005-07-06 21:39:24','2006-02-15 22:12:31'), - (336,13,1,6118,'8.99','2005-07-11 07:43:08','2006-02-15 22:12:31'), - (337,13,1,6568,'2.99','2005-07-12 05:45:47','2006-02-15 22:12:31'), - (338,13,1,6870,'0.99','2005-07-12 20:13:45','2006-02-15 22:12:31'), - (339,13,1,6897,'2.99','2005-07-12 21:30:41','2006-02-15 22:12:31'), - (340,13,1,7916,'2.99','2005-07-28 11:49:53','2006-02-15 22:12:31'), - (341,13,1,8277,'2.99','2005-07-29 01:38:53','2006-02-15 22:12:31'), - (342,13,2,8831,'11.99','2005-07-29 22:37:41','2006-02-15 22:12:31'), - (343,13,2,9260,'9.99','2005-07-30 14:38:22','2006-02-15 22:12:31'), - (344,13,2,9434,'0.99','2005-07-30 21:29:41','2006-02-15 22:12:32'), - (345,13,1,9664,'0.99','2005-07-31 06:12:08','2006-02-15 22:12:32'), - (346,13,1,9736,'7.99','2005-07-31 08:58:40','2006-02-15 22:12:32'), - (347,13,1,10003,'4.99','2005-07-31 17:48:51','2006-02-15 22:12:32'), - (348,13,1,11292,'4.99','2005-08-02 14:58:41','2006-02-15 22:12:32'), - (349,13,2,11315,'0.99','2005-08-02 16:05:17','2006-02-15 22:12:32'), - (350,13,2,11761,'5.99','2005-08-17 09:44:59','2006-02-15 22:12:32'), - (351,13,2,12918,'7.99','2005-08-19 04:31:36','2006-02-15 22:12:32'), - (352,13,2,13096,'4.99','2005-08-19 10:49:03','2006-02-15 22:12:32'), - (353,13,2,13213,'0.99','2005-08-19 15:25:48','2006-02-15 22:12:32'), - (354,13,1,13456,'0.99','2005-08-20 00:33:19','2006-02-15 22:12:32'), - (355,13,1,14252,'9.99','2005-08-21 05:44:07','2006-02-15 22:12:32'), - (356,13,2,14545,'7.99','2005-08-21 15:44:23','2006-02-15 22:12:32'), - (357,13,1,15338,'4.99','2005-08-22 20:51:24','2006-02-15 22:12:32'), - (358,14,1,151,'0.99','2005-05-26 00:37:28','2006-02-15 22:12:32'), - (359,14,1,346,'9.99','2005-05-27 04:34:41','2006-02-15 22:12:32'), - (360,14,1,525,'5.99','2005-05-28 04:25:33','2006-02-15 22:12:32'), - (361,14,1,671,'2.99','2005-05-28 22:04:30','2006-02-15 22:12:32'), - (362,14,2,815,'0.99','2005-05-29 20:24:28','2006-02-15 22:12:32'), - (363,14,2,1360,'4.99','2005-06-15 13:32:15','2006-02-15 22:12:32'), - (364,14,1,3707,'2.99','2005-07-06 10:21:49','2006-02-15 22:12:32'), - (365,14,1,4952,'0.99','2005-07-08 23:00:07','2006-02-15 22:12:32'), - (366,14,1,5104,'0.99','2005-07-09 06:37:07','2006-02-15 22:12:32'), - (367,14,2,5317,'7.99','2005-07-09 16:10:25','2006-02-15 22:12:32'), - (368,14,1,5383,'4.99','2005-07-09 19:14:32','2006-02-15 22:12:32'), - (369,14,1,5565,'7.99','2005-07-10 03:29:48','2006-02-15 22:12:32'), - (370,14,1,8035,'6.99','2005-07-28 16:23:01','2006-02-15 22:12:32'), - (371,14,1,8042,'0.99','2005-07-28 16:45:11','2006-02-15 22:12:32'), - (372,14,1,8548,'3.99','2005-07-29 11:11:33','2006-02-15 22:12:32'), - (373,14,2,8836,'4.99','2005-07-29 22:46:08','2006-02-15 22:12:32'), - (374,14,2,9438,'4.99','2005-07-30 21:36:15','2006-02-15 22:12:32'), - (375,14,1,9592,'2.99','2005-07-31 03:21:16','2006-02-15 22:12:32'), - (376,14,1,10348,'2.99','2005-08-01 05:23:00','2006-02-15 22:12:32'), - (377,14,2,10526,'6.99','2005-08-01 11:55:33','2006-02-15 22:12:32'), - (378,14,1,11480,'4.99','2005-08-02 22:18:24','2006-02-15 22:12:32'), - (379,14,2,11528,'3.99','2005-08-17 00:27:23','2006-02-15 22:12:32'), - (380,14,1,12668,'2.99','2005-08-18 19:16:47','2006-02-15 22:12:32'), - (381,14,1,13757,'4.99','2005-08-20 11:20:12','2006-02-15 22:12:32'), - (382,14,2,15015,'6.99','2005-08-22 08:43:50','2006-02-15 22:12:32'), - (383,14,1,15373,'0.99','2005-08-22 22:08:11','2006-02-15 22:12:32'), - (384,14,1,16045,'0.99','2005-08-23 22:25:26','2006-02-15 22:12:32'), - (385,14,1,13780,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:32'), - (386,15,1,2486,'2.99','2005-06-18 21:26:56','2006-02-15 22:12:32'), - (387,15,1,2937,'5.99','2005-06-20 05:15:37','2006-02-15 22:12:32'), - (388,15,2,3182,'0.99','2005-06-20 22:52:18','2006-02-15 22:12:32'), - (389,15,1,3550,'7.99','2005-07-06 02:29:21','2006-02-15 22:12:32'), - (390,15,1,4127,'5.99','2005-07-07 07:26:19','2006-02-15 22:12:32'), - (391,15,1,5717,'2.99','2005-07-10 11:02:03','2006-02-15 22:12:32'), - (392,15,2,5975,'2.99','2005-07-11 00:14:19','2006-02-15 22:12:32'), - (393,15,1,7105,'4.99','2005-07-27 05:15:37','2006-02-15 22:12:32'), - (394,15,1,8193,'0.99','2005-07-28 22:50:50','2006-02-15 22:12:32'), - (395,15,2,8615,'6.99','2005-07-29 13:36:01','2006-02-15 22:12:32'), - (396,15,2,8927,'4.99','2005-07-30 02:13:31','2006-02-15 22:12:32'), - (397,15,1,9987,'2.99','2005-07-31 17:22:35','2006-02-15 22:12:32'), - (398,15,1,11118,'2.99','2005-08-02 08:44:18','2006-02-15 22:12:32'), - (399,15,1,11141,'2.99','2005-08-02 09:29:11','2006-02-15 22:12:32'), - (400,15,2,11307,'2.99','2005-08-02 15:48:08','2006-02-15 22:12:32'), - (401,15,2,11341,'2.99','2005-08-02 17:09:24','2006-02-15 22:12:32'), - (402,15,1,11922,'7.99','2005-08-17 16:20:37','2006-02-15 22:12:32'), - (403,15,2,12272,'2.99','2005-08-18 04:39:10','2006-02-15 22:12:32'), - (404,15,2,12551,'2.99','2005-08-18 14:46:26','2006-02-15 22:12:32'), - (405,15,1,12635,'2.99','2005-08-18 18:00:23','2006-02-15 22:12:32'), - (406,15,2,13339,'8.99','2005-08-19 20:18:36','2006-02-15 22:12:32'), - (407,15,1,13393,'5.99','2005-08-19 22:03:46','2006-02-15 22:12:32'), - (408,15,2,13503,'5.99','2005-08-20 02:00:33','2006-02-15 22:12:32'), - (409,15,1,13541,'4.99','2005-08-20 03:41:41','2006-02-15 22:12:32'), - (410,15,2,13677,'3.99','2005-08-20 08:34:41','2006-02-15 22:12:32'), - (411,15,2,14569,'0.99','2005-08-21 16:31:22','2006-02-15 22:12:32'), - (412,15,2,14776,'4.99','2005-08-21 23:53:35','2006-02-15 22:12:32'), - (413,15,2,14872,'8.99','2005-08-22 03:23:41','2006-02-15 22:12:32'), - (414,15,1,15178,'0.99','2005-08-22 15:36:04','2006-02-15 22:12:32'), - (415,15,1,15897,'4.99','2005-08-23 17:12:31','2006-02-15 22:12:32'), - (416,15,1,13798,'3.98','2006-02-14 15:16:03','2006-02-15 22:12:32'), - (417,15,2,13968,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:32'), - (418,16,1,335,'3.99','2005-05-27 03:07:10','2006-02-15 22:12:32'), - (419,16,1,593,'2.99','2005-05-28 13:33:23','2006-02-15 22:12:32'), - (420,16,2,887,'0.99','2005-05-30 07:10:00','2006-02-15 22:12:32'), - (421,16,1,1017,'2.99','2005-05-31 02:53:36','2006-02-15 22:12:32'), - (422,16,2,1934,'6.99','2005-06-17 07:04:57','2006-02-15 22:12:32'), - (423,16,1,1944,'7.99','2005-06-17 07:50:53','2006-02-15 22:12:32'), - (424,16,1,NULL,'1.99','2005-06-18 04:56:12','2006-02-15 22:12:32'), - (425,16,1,2960,'7.99','2005-06-20 07:10:09','2006-02-15 22:12:32'), - (426,16,2,3348,'0.99','2005-06-21 11:16:42','2006-02-15 22:12:32'), - (427,16,1,3548,'0.99','2005-07-06 02:23:39','2006-02-15 22:12:32'), - (428,16,2,4219,'2.99','2005-07-07 12:11:22','2006-02-15 22:12:32'), - (429,16,2,4263,'3.99','2005-07-07 14:24:44','2006-02-15 22:12:32'), - (430,16,2,4517,'4.99','2005-07-08 02:45:19','2006-02-15 22:12:32'), - (431,16,1,6100,'4.99','2005-07-11 06:40:31','2006-02-15 22:12:32'), - (432,16,2,7489,'0.99','2005-07-27 19:39:38','2006-02-15 22:12:32'), - (433,16,2,7552,'2.99','2005-07-27 22:03:41','2006-02-15 22:12:32'), - (434,16,2,8452,'5.99','2005-07-29 07:45:00','2006-02-15 22:12:32'), - (435,16,2,9158,'0.99','2005-07-30 11:12:03','2006-02-15 22:12:32'), - (436,16,2,9610,'5.99','2005-07-31 03:54:05','2006-02-15 22:12:32'), - (437,16,2,10687,'2.99','2005-08-01 17:53:02','2006-02-15 22:12:32'), - (438,16,2,10727,'2.99','2005-08-01 19:15:08','2006-02-15 22:12:32'), - (439,16,2,11308,'0.99','2005-08-02 15:50:44','2006-02-15 22:12:32'), - (440,16,2,12104,'2.99','2005-08-17 22:53:00','2006-02-15 22:12:32'), - (441,16,1,12358,'4.99','2005-08-18 07:41:43','2006-02-15 22:12:32'), - (442,16,1,12577,'7.99','2005-08-18 15:39:46','2006-02-15 22:12:32'), - (443,16,2,13151,'4.99','2005-08-19 13:08:23','2006-02-15 22:12:32'), - (444,16,1,13391,'4.99','2005-08-19 22:01:42','2006-02-15 22:12:32'), - (445,16,1,13480,'6.99','2005-08-20 01:10:27','2006-02-15 22:12:32'), - (446,16,1,14511,'8.99','2005-08-21 14:45:34','2006-02-15 22:12:32'), - (447,17,2,287,'2.99','2005-05-26 19:44:54','2006-02-15 22:12:32'), - (448,17,1,580,'2.99','2005-05-28 11:19:53','2006-02-15 22:12:32'), - (449,17,2,884,'4.99','2005-05-30 06:41:32','2006-02-15 22:12:32'), - (450,17,2,2175,'5.99','2005-06-18 00:17:58','2006-02-15 22:12:32'), - (451,17,1,2684,'8.99','2005-06-19 12:29:08','2006-02-15 22:12:32'), - (452,17,2,3269,'5.99','2005-06-21 05:06:30','2006-02-15 22:12:32'), - (453,17,1,5714,'3.99','2005-07-10 10:46:57','2006-02-15 22:12:32'), - (454,17,1,5883,'3.99','2005-07-10 19:25:21','2006-02-15 22:12:32'), - (455,17,2,6884,'1.99','2005-07-12 20:52:41','2006-02-15 22:12:32'), - (456,17,2,8076,'8.99','2005-07-28 17:45:58','2006-02-15 22:12:32'), - (457,17,1,8213,'2.99','2005-07-28 23:37:33','2006-02-15 22:12:32'), - (458,17,2,9092,'8.99','2005-07-30 08:30:56','2006-02-15 22:12:32'), - (459,17,1,9138,'2.99','2005-07-30 10:11:52','2006-02-15 22:12:32'), - (460,17,2,9382,'8.99','2005-07-30 19:23:44','2006-02-15 22:12:32'), - (461,17,1,9489,'0.99','2005-07-30 23:43:32','2006-02-15 22:12:32'), - (462,17,2,11990,'4.99','2005-08-17 18:26:22','2006-02-15 22:12:32'), - (463,17,1,13732,'2.99','2005-08-20 10:24:41','2006-02-15 22:12:32'), - (464,17,1,14040,'2.99','2005-08-20 21:43:44','2006-02-15 22:12:32'), - (465,17,2,14326,'2.99','2005-08-21 08:15:41','2006-02-15 22:12:32'), - (466,17,1,14346,'2.99','2005-08-21 08:42:26','2006-02-15 22:12:32'), - (467,17,2,15752,'5.99','2005-08-23 12:41:38','2006-02-15 22:12:32'), - (468,18,1,50,'2.99','2005-05-25 06:44:53','2006-02-15 22:12:32'), - (469,18,1,116,'4.99','2005-05-25 19:27:51','2006-02-15 22:12:32'), - (470,18,1,692,'4.99','2005-05-29 01:32:10','2006-02-15 22:12:32'), - (471,18,2,1451,'5.99','2005-06-15 19:30:18','2006-02-15 22:12:32'), - (472,18,2,1783,'4.99','2005-06-16 19:23:23','2006-02-15 22:12:32'), - (473,18,2,2112,'5.99','2005-06-17 19:52:42','2006-02-15 22:12:32'), - (474,18,1,2990,'8.99','2005-06-20 09:02:51','2006-02-15 22:12:32'), - (475,18,2,4672,'3.99','2005-07-08 10:15:38','2006-02-15 22:12:32'), - (476,18,2,4724,'3.99','2005-07-08 12:46:30','2006-02-15 22:12:32'), - (477,18,2,4923,'3.99','2005-07-08 21:44:39','2006-02-15 22:12:32'), - (478,18,2,6128,'2.99','2005-07-11 08:15:08','2006-02-15 22:12:32'), - (479,18,1,6846,'0.99','2005-07-12 19:20:45','2006-02-15 22:12:32'), - (480,18,2,8122,'2.99','2005-07-28 19:27:37','2006-02-15 22:12:32'), - (481,18,1,8555,'4.99','2005-07-29 11:18:01','2006-02-15 22:12:32'), - (482,18,1,9036,'4.99','2005-07-30 06:18:38','2006-02-15 22:12:32'), - (483,18,2,9114,'4.99','2005-07-30 09:13:21','2006-02-15 22:12:32'), - (484,18,1,10682,'4.99','2005-08-01 17:32:53','2006-02-15 22:12:32'), - (485,18,2,10721,'1.99','2005-08-01 19:05:18','2006-02-15 22:12:32'), - (486,18,2,11094,'4.99','2005-08-02 08:03:02','2006-02-15 22:12:33'), - (487,18,2,11439,'4.99','2005-08-02 20:22:45','2006-02-15 22:12:33'), - (488,18,2,12333,'0.99','2005-08-18 06:51:39','2006-02-15 22:12:33'), - (489,18,2,13490,'0.99','2005-08-20 01:29:29','2006-02-15 22:12:33'), - (490,19,2,18,'0.99','2005-05-25 01:10:47','2006-02-15 22:12:33'), - (491,19,2,110,'9.99','2005-05-25 18:43:49','2006-02-15 22:12:33'), - (492,19,1,179,'6.99','2005-05-26 04:26:06','2006-02-15 22:12:33'), - (493,19,1,337,'2.99','2005-05-27 03:22:30','2006-02-15 22:12:33'), - (494,19,2,591,'2.99','2005-05-28 13:11:04','2006-02-15 22:12:33'), - (495,19,2,696,'2.99','2005-05-29 01:59:10','2006-02-15 22:12:33'), - (496,19,1,2657,'2.99','2005-06-19 10:42:59','2006-02-15 22:12:33'), - (497,19,1,2848,'2.99','2005-06-19 22:55:37','2006-02-15 22:12:33'), - (498,19,2,3423,'2.99','2005-06-21 17:38:02','2006-02-15 22:12:33'), - (499,19,2,3549,'4.99','2005-07-06 02:24:55','2006-02-15 22:12:33'), - (500,19,2,6495,'4.99','2005-07-12 02:57:02','2006-02-15 22:12:33'), - (501,19,1,9157,'5.99','2005-07-30 11:06:23','2006-02-15 22:12:33'), - (502,19,1,9256,'0.99','2005-07-30 14:29:29','2006-02-15 22:12:33'), - (503,19,2,10077,'9.99','2005-07-31 20:01:06','2006-02-15 22:12:33'), - (504,19,1,10176,'7.99','2005-07-31 23:40:35','2006-02-15 22:12:33'), - (505,19,2,11508,'8.99','2005-08-16 23:27:36','2006-02-15 22:12:33'), - (506,19,1,11869,'5.99','2005-08-17 14:10:22','2006-02-15 22:12:33'), - (507,19,1,12211,'9.99','2005-08-18 02:31:18','2006-02-15 22:12:33'), - (508,19,2,12357,'2.99','2005-08-18 07:40:52','2006-02-15 22:12:33'), - (509,19,1,13718,'8.99','2005-08-20 09:53:44','2006-02-15 22:12:33'), - (510,19,2,13804,'8.99','2005-08-20 12:46:32','2006-02-15 22:12:33'), - (511,19,1,14101,'4.99','2005-08-21 00:33:03','2006-02-15 22:12:33'), - (512,19,1,15047,'2.99','2005-08-22 09:57:16','2006-02-15 22:12:33'), - (513,19,2,15529,'0.99','2005-08-23 03:46:47','2006-02-15 22:12:33'), - (514,20,2,202,'2.99','2005-05-26 07:27:36','2006-02-15 22:12:33'), - (515,20,2,497,'6.99','2005-05-28 00:54:39','2006-02-15 22:12:33'), - (516,20,2,546,'1.99','2005-05-28 07:16:25','2006-02-15 22:12:33'), - (517,20,2,1558,'0.99','2005-06-16 02:33:53','2006-02-15 22:12:33'), - (518,20,2,2136,'3.99','2005-06-17 21:16:41','2006-02-15 22:12:33'), - (519,20,2,2343,'4.99','2005-06-18 11:46:26','2006-02-15 22:12:33'), - (520,20,1,3350,'4.99','2005-06-21 11:21:38','2006-02-15 22:12:33'), - (521,20,2,4011,'3.99','2005-07-07 00:48:25','2006-02-15 22:12:33'), - (522,20,1,4407,'2.99','2005-07-07 21:39:45','2006-02-15 22:12:33'), - (523,20,1,5718,'2.99','2005-07-10 11:03:20','2006-02-15 22:12:33'), - (524,20,1,6254,'2.99','2005-07-11 15:10:18','2006-02-15 22:12:33'), - (525,20,2,6267,'6.99','2005-07-11 15:53:00','2006-02-15 22:12:33'), - (526,20,2,7217,'4.99','2005-07-27 09:31:44','2006-02-15 22:12:33'), - (527,20,2,7864,'5.99','2005-07-28 10:06:10','2006-02-15 22:12:33'), - (528,20,2,8127,'2.99','2005-07-28 19:45:19','2006-02-15 22:12:33'), - (529,20,2,9075,'4.99','2005-07-30 07:55:14','2006-02-15 22:12:33'), - (530,20,2,9468,'3.99','2005-07-30 22:53:52','2006-02-15 22:12:33'), - (531,20,2,10284,'4.99','2005-08-01 03:33:19','2006-02-15 22:12:33'), - (532,20,1,10616,'7.99','2005-08-01 14:59:50','2006-02-15 22:12:33'), - (533,20,1,10954,'1.99','2005-08-02 03:30:24','2006-02-15 22:12:33'), - (534,20,1,11821,'0.99','2005-08-17 12:27:55','2006-02-15 22:12:33'), - (535,20,1,12180,'0.99','2005-08-18 01:28:15','2006-02-15 22:12:33'), - (536,20,2,13036,'4.99','2005-08-19 08:48:37','2006-02-15 22:12:33'), - (537,20,1,13137,'4.99','2005-08-19 12:26:32','2006-02-15 22:12:33'), - (538,20,2,13317,'2.99','2005-08-19 19:25:42','2006-02-15 22:12:33'), - (539,20,2,14613,'2.99','2005-08-21 18:03:20','2006-02-15 22:12:33'), - (540,20,2,15057,'6.99','2005-08-22 10:19:58','2006-02-15 22:12:33'), - (541,20,1,15161,'1.99','2005-08-22 14:37:22','2006-02-15 22:12:33'), - (542,20,2,15248,'0.99','2005-08-22 17:53:06','2006-02-15 22:12:33'), - (543,20,1,15460,'2.99','2005-08-23 01:10:42','2006-02-15 22:12:33'), - (544,21,1,260,'3.99','2005-05-26 15:42:20','2006-02-15 22:12:33'), - (545,21,2,463,'3.99','2005-05-27 20:11:47','2006-02-15 22:12:33'), - (546,21,1,570,'0.99','2005-05-28 10:15:04','2006-02-15 22:12:33'), - (547,21,2,2235,'7.99','2005-06-18 04:08:50','2006-02-15 22:12:33'), - (548,21,1,2268,'4.99','2005-06-18 06:13:41','2006-02-15 22:12:33'), - (549,21,1,2393,'2.99','2005-06-18 15:37:55','2006-02-15 22:12:33'), - (550,21,2,2830,'4.99','2005-06-19 21:14:33','2006-02-15 22:12:33'), - (551,21,1,3212,'10.99','2005-06-21 01:04:35','2006-02-15 22:12:33'), - (552,21,2,5107,'4.99','2005-07-09 06:42:32','2006-02-15 22:12:33'), - (553,21,1,5772,'3.99','2005-07-10 13:27:40','2006-02-15 22:12:33'), - (554,21,1,5961,'2.99','2005-07-10 23:43:23','2006-02-15 22:12:33'), - (555,21,2,6943,'1.99','2005-07-26 23:28:13','2006-02-15 22:12:33'), - (556,21,1,7994,'0.99','2005-07-28 14:56:54','2006-02-15 22:12:33'), - (557,21,2,8196,'6.99','2005-07-28 22:56:11','2006-02-15 22:12:33'), - (558,21,2,8862,'2.99','2005-07-29 23:49:23','2006-02-15 22:12:33'), - (559,21,2,9149,'0.99','2005-07-30 10:45:12','2006-02-15 22:12:33'), - (560,21,1,9699,'5.99','2005-07-31 07:29:25','2006-02-15 22:12:33'), - (561,21,2,10570,'4.99','2005-08-01 13:23:06','2006-02-15 22:12:33'), - (562,21,1,10734,'0.99','2005-08-01 19:28:47','2006-02-15 22:12:33'), - (563,21,2,11072,'0.99','2005-08-02 07:10:57','2006-02-15 22:12:33'), - (564,21,2,11970,'0.99','2005-08-17 17:53:09','2006-02-15 22:12:33'), - (565,21,2,12131,'2.99','2005-08-17 23:34:16','2006-02-15 22:12:33'), - (566,21,2,12660,'4.99','2005-08-18 19:07:23','2006-02-15 22:12:33'), - (567,21,1,12774,'6.99','2005-08-18 23:34:22','2006-02-15 22:12:33'), - (568,21,1,13381,'2.99','2005-08-19 21:37:57','2006-02-15 22:12:33'), - (569,21,2,13399,'4.99','2005-08-19 22:09:28','2006-02-15 22:12:33'), - (570,21,1,13411,'4.99','2005-08-19 22:43:38','2006-02-15 22:12:33'), - (571,21,1,13463,'8.99','2005-08-20 00:50:54','2006-02-15 22:12:33'), - (572,21,1,13699,'9.99','2005-08-20 09:26:14','2006-02-15 22:12:33'), - (573,21,1,13740,'4.99','2005-08-20 10:48:43','2006-02-15 22:12:33'), - (574,21,2,14077,'8.99','2005-08-20 23:24:07','2006-02-15 22:12:33'), - (575,21,2,14161,'2.99','2005-08-21 02:51:59','2006-02-15 22:12:33'), - (576,21,2,14446,'2.99','2005-08-21 12:10:41','2006-02-15 22:12:33'), - (577,21,1,14869,'4.99','2005-08-22 03:20:26','2006-02-15 22:12:33'), - (578,21,1,14933,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:33'), - (579,22,1,370,'4.99','2005-05-27 07:49:43','2006-02-15 22:12:33'), - (580,22,1,556,'4.99','2005-05-28 08:31:36','2006-02-15 22:12:33'), - (581,22,2,820,'8.99','2005-05-29 21:07:22','2006-02-15 22:12:33'), - (582,22,1,3419,'2.99','2005-06-21 17:18:01','2006-02-15 22:12:33'), - (583,22,2,4215,'2.99','2005-07-07 12:00:52','2006-02-15 22:12:33'), - (584,22,1,5294,'6.99','2005-07-09 15:23:42','2006-02-15 22:12:33'), - (585,22,1,5815,'2.99','2005-07-10 15:48:19','2006-02-15 22:12:33'), - (586,22,1,7087,'4.99','2005-07-27 04:42:08','2006-02-15 22:12:33'), - (587,22,1,7705,'7.99','2005-07-28 04:02:58','2006-02-15 22:12:33'), - (588,22,2,9410,'0.99','2005-07-30 20:38:05','2006-02-15 22:12:33'), - (589,22,1,9580,'4.99','2005-07-31 03:01:11','2006-02-15 22:12:33'), - (590,22,1,12023,'5.99','2005-08-17 19:54:54','2006-02-15 22:12:33'), - (591,22,1,12124,'2.99','2005-08-17 23:22:46','2006-02-15 22:12:33'), - (592,22,2,12809,'0.99','2005-08-19 00:42:24','2006-02-15 22:12:33'), - (593,22,2,13060,'9.99','2005-08-19 09:43:25','2006-02-15 22:12:33'), - (594,22,1,14056,'2.99','2005-08-20 22:18:53','2006-02-15 22:12:33'), - (595,22,1,14564,'6.99','2005-08-21 16:24:43','2006-02-15 22:12:33'), - (596,22,1,15134,'7.99','2005-08-22 13:18:25','2006-02-15 22:12:33'), - (597,22,1,15589,'6.99','2005-08-23 06:03:31','2006-02-15 22:12:33'), - (598,22,1,15658,'4.99','2005-08-23 08:48:43','2006-02-15 22:12:33'), - (599,22,1,15793,'4.99','2005-08-23 14:06:19','2006-02-15 22:12:33'), - (600,22,1,12222,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:33'), - (601,23,1,129,'8.99','2005-05-25 21:20:03','2006-02-15 22:12:33'), - (602,23,1,654,'2.99','2005-05-28 20:15:30','2006-02-15 22:12:33'), - (603,23,2,1090,'0.99','2005-05-31 12:03:44','2006-02-15 22:12:33'), - (604,23,1,2753,'1.99','2005-06-19 16:44:35','2006-02-15 22:12:33'), - (605,23,1,2827,'0.99','2005-06-19 20:50:01','2006-02-15 22:12:33'), - (606,23,1,3015,'5.99','2005-06-20 10:48:56','2006-02-15 22:12:33'), - (607,23,1,3055,'4.99','2005-06-20 13:19:58','2006-02-15 22:12:33'), - (608,23,1,3461,'2.99','2005-06-21 21:49:18','2006-02-15 22:12:34'), - (609,23,2,3736,'3.99','2005-07-06 11:43:44','2006-02-15 22:12:34'), - (610,23,2,3781,'2.99','2005-07-06 13:53:41','2006-02-15 22:12:34'), - (611,23,2,4853,'2.99','2005-07-08 18:43:18','2006-02-15 22:12:34'), - (612,23,1,6213,'2.99','2005-07-11 12:43:07','2006-02-15 22:12:34'), - (613,23,1,6238,'2.99','2005-07-11 14:20:18','2006-02-15 22:12:34'), - (614,23,2,6917,'5.99','2005-07-12 22:30:15','2006-02-15 22:12:34'), - (615,23,1,7155,'7.99','2005-07-27 07:18:46','2006-02-15 22:12:34'), - (616,23,1,8015,'2.99','2005-07-28 15:33:03','2006-02-15 22:12:34'), - (617,23,2,8718,'0.99','2005-07-29 17:41:14','2006-02-15 22:12:34'), - (618,23,2,9209,'5.99','2005-07-30 12:55:36','2006-02-15 22:12:34'), - (619,23,2,9255,'9.99','2005-07-30 14:26:46','2006-02-15 22:12:34'), - (620,23,2,9718,'3.99','2005-07-31 08:25:03','2006-02-15 22:12:34'), - (621,23,1,10132,'6.99','2005-07-31 21:50:24','2006-02-15 22:12:34'), - (622,23,1,10898,'2.99','2005-08-02 01:29:57','2006-02-15 22:12:34'), - (623,23,2,11501,'2.99','2005-08-16 23:04:53','2006-02-15 22:12:34'), - (624,23,2,13290,'2.99','2005-08-19 18:31:50','2006-02-15 22:12:34'), - (625,23,2,13331,'4.99','2005-08-19 20:00:25','2006-02-15 22:12:34'), - (626,23,2,13429,'6.99','2005-08-19 23:25:37','2006-02-15 22:12:34'), - (627,23,2,13511,'0.99','2005-08-20 02:21:40','2006-02-15 22:12:34'), - (628,23,2,13557,'0.99','2005-08-20 04:12:41','2006-02-15 22:12:34'), - (629,23,2,14482,'2.99','2005-08-21 13:42:45','2006-02-15 22:12:34'), - (630,23,2,15532,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:34'), - (631,24,2,1007,'6.99','2005-05-31 01:02:28','2006-02-15 22:12:34'), - (632,24,2,1077,'2.99','2005-05-31 10:22:54','2006-02-15 22:12:34'), - (633,24,1,1716,'2.99','2005-06-16 14:39:31','2006-02-15 22:12:34'), - (634,24,1,2070,'2.99','2005-06-17 16:27:51','2006-02-15 22:12:34'), - (635,24,2,2116,'4.99','2005-06-17 20:16:12','2006-02-15 22:12:34'), - (636,24,1,2451,'5.99','2005-06-18 19:28:02','2006-02-15 22:12:34'), - (637,24,2,2963,'7.99','2005-06-20 07:33:09','2006-02-15 22:12:34'), - (638,24,2,3649,'7.99','2005-07-06 07:32:42','2006-02-15 22:12:34'), - (639,24,2,4378,'2.99','2005-07-07 20:29:08','2006-02-15 22:12:34'), - (640,24,1,5310,'0.99','2005-07-09 16:00:34','2006-02-15 22:12:34'), - (641,24,2,5648,'0.99','2005-07-10 07:09:21','2006-02-15 22:12:34'), - (642,24,1,6855,'4.99','2005-07-12 19:46:29','2006-02-15 22:12:34'), - (643,24,1,7266,'1.99','2005-07-27 11:22:17','2006-02-15 22:12:34'), - (644,24,1,8947,'4.99','2005-07-30 03:15:37','2006-02-15 22:12:34'), - (645,24,1,9723,'0.99','2005-07-31 08:31:18','2006-02-15 22:12:34'), - (646,24,2,9925,'0.99','2005-07-31 15:08:47','2006-02-15 22:12:34'), - (647,24,2,10491,'2.99','2005-08-01 10:38:27','2006-02-15 22:12:34'), - (648,24,1,11209,'2.99','2005-08-02 12:09:45','2006-02-15 22:12:34'), - (649,24,2,11546,'2.99','2005-08-17 00:57:36','2006-02-15 22:12:34'), - (650,24,2,12165,'8.99','2005-08-18 00:53:37','2006-02-15 22:12:34'), - (651,24,1,12745,'2.99','2005-08-18 22:22:45','2006-02-15 22:12:34'), - (652,24,1,12999,'1.99','2005-08-19 07:34:53','2006-02-15 22:12:34'), - (653,24,2,13058,'4.99','2005-08-19 09:40:53','2006-02-15 22:12:34'), - (654,24,1,13247,'0.99','2005-08-19 16:45:59','2006-02-15 22:12:34'), - (655,24,2,15357,'4.99','2005-08-22 21:28:59','2006-02-15 22:12:34'), - (656,25,1,90,'7.99','2005-05-25 14:31:25','2006-02-15 22:12:34'), - (657,25,2,1033,'2.99','2005-05-31 04:50:07','2006-02-15 22:12:34'), - (658,25,1,1338,'4.99','2005-06-15 12:17:34','2006-02-15 22:12:34'), - (659,25,1,1365,'2.99','2005-06-15 14:09:55','2006-02-15 22:12:34'), - (660,25,2,1754,'6.99','2005-06-16 17:13:23','2006-02-15 22:12:34'), - (661,25,2,2625,'8.99','2005-06-19 08:23:11','2006-02-15 22:12:34'), - (662,25,1,2901,'4.99','2005-06-20 02:41:28','2006-02-15 22:12:34'), - (663,25,1,3447,'4.99','2005-06-21 20:53:31','2006-02-15 22:12:34'), - (664,25,1,4282,'2.99','2005-07-07 15:26:31','2006-02-15 22:12:34'), - (665,25,1,4319,'0.99','2005-07-07 17:50:27','2006-02-15 22:12:34'), - (666,25,2,4404,'2.99','2005-07-07 21:31:53','2006-02-15 22:12:34'), - (667,25,1,5881,'2.99','2005-07-10 19:19:43','2006-02-15 22:12:34'), - (668,25,1,6653,'4.99','2005-07-12 11:06:17','2006-02-15 22:12:34'), - (669,25,2,6905,'2.99','2005-07-12 22:02:18','2006-02-15 22:12:34'), - (670,25,2,8667,'2.99','2005-07-29 15:40:57','2006-02-15 22:12:34'), - (671,25,2,8878,'0.99','2005-07-30 00:15:57','2006-02-15 22:12:34'), - (672,25,1,9140,'8.99','2005-07-30 10:12:01','2006-02-15 22:12:34'), - (673,25,2,9334,'2.99','2005-07-30 17:56:38','2006-02-15 22:12:34'), - (674,25,2,9922,'2.99','2005-07-31 14:59:37','2006-02-15 22:12:34'), - (675,25,2,10103,'2.99','2005-07-31 20:49:13','2006-02-15 22:12:34'), - (676,25,1,10324,'5.99','2005-08-01 04:49:06','2006-02-15 22:12:34'), - (677,25,2,10860,'2.99','2005-08-02 00:12:32','2006-02-15 22:12:34'), - (678,25,1,10916,'2.99','2005-08-02 02:05:59','2006-02-15 22:12:34'), - (679,25,1,11642,'0.99','2005-08-17 04:48:05','2006-02-15 22:12:34'), - (680,25,1,12922,'0.99','2005-08-19 04:48:48','2006-02-15 22:12:34'), - (681,25,1,14193,'4.99','2005-08-21 03:38:27','2006-02-15 22:12:34'), - (682,25,1,14236,'4.99','2005-08-21 05:13:16','2006-02-15 22:12:34'), - (683,25,1,15512,'0.99','2005-08-23 02:57:30','2006-02-15 22:12:34'), - (684,25,1,15972,'5.99','2005-08-23 20:00:30','2006-02-15 22:12:34'), - (685,26,1,796,'2.99','2005-05-29 16:59:44','2006-02-15 22:12:34'), - (686,26,2,1105,'2.99','2005-05-31 14:33:56','2006-02-15 22:12:34'), - (687,26,1,1440,'5.99','2005-06-15 18:53:14','2006-02-15 22:12:34'), - (688,26,2,1706,'4.99','2005-06-16 14:01:02','2006-02-15 22:12:34'), - (689,26,1,2093,'9.99','2005-06-17 18:14:08','2006-02-15 22:12:34'), - (690,26,2,2416,'3.99','2005-06-18 17:07:34','2006-02-15 22:12:34'), - (691,26,2,2421,'6.99','2005-06-18 17:25:05','2006-02-15 22:12:34'), - (692,26,1,2532,'4.99','2005-06-19 01:27:46','2006-02-15 22:12:34'), - (693,26,1,2745,'4.99','2005-06-19 16:21:19','2006-02-15 22:12:34'), - (694,26,1,4065,'2.99','2005-07-07 04:32:28','2006-02-15 22:12:34'), - (695,26,1,4274,'4.99','2005-07-07 14:42:04','2006-02-15 22:12:34'), - (696,26,1,4382,'4.99','2005-07-07 20:41:03','2006-02-15 22:12:34'), - (697,26,2,4402,'0.99','2005-07-07 21:28:46','2006-02-15 22:12:34'), - (698,26,1,4431,'6.99','2005-07-07 22:39:02','2006-02-15 22:12:34'), - (699,26,1,4536,'3.99','2005-07-08 03:43:22','2006-02-15 22:12:34'), - (700,26,1,4641,'6.99','2005-07-08 09:09:46','2006-02-15 22:12:34'), - (701,26,1,5437,'2.99','2005-07-09 21:32:29','2006-02-15 22:12:34'), - (702,26,1,6149,'1.99','2005-07-11 09:19:31','2006-02-15 22:12:34'), - (703,26,2,6243,'2.99','2005-07-11 14:53:25','2006-02-15 22:12:34'), - (704,26,2,7328,'0.99','2005-07-27 13:55:18','2006-02-15 22:12:34'), - (705,26,1,8241,'4.99','2005-07-29 00:33:36','2006-02-15 22:12:34'), - (706,26,1,9484,'0.99','2005-07-30 23:31:40','2006-02-15 22:12:34'), - (707,26,1,10386,'3.99','2005-08-01 06:42:20','2006-02-15 22:12:34'), - (708,26,1,10996,'3.99','2005-08-02 04:48:11','2006-02-15 22:12:34'), - (709,26,2,11314,'2.99','2005-08-02 16:04:08','2006-02-15 22:12:34'), - (710,26,1,11338,'0.99','2005-08-02 17:00:12','2006-02-15 22:12:34'), - (711,26,1,11744,'5.99','2005-08-17 08:54:30','2006-02-15 22:12:34'), - (712,26,2,13111,'4.99','2005-08-19 11:25:10','2006-02-15 22:12:34'), - (713,26,2,14183,'4.99','2005-08-21 03:24:29','2006-02-15 22:12:34'), - (714,26,2,14192,'8.99','2005-08-21 03:37:42','2006-02-15 22:12:34'), - (715,26,2,14603,'1.99','2005-08-21 17:51:06','2006-02-15 22:12:34'), - (716,26,1,14677,'7.99','2005-08-21 20:12:30','2006-02-15 22:12:34'), - (717,26,1,15384,'2.99','2005-08-22 22:34:44','2006-02-15 22:12:34'), - (718,26,1,15722,'7.99','2005-08-23 11:16:29','2006-02-15 22:12:34'), - (719,27,2,787,'2.99','2005-05-29 16:03:03','2006-02-15 22:12:34'), - (720,27,1,1310,'4.99','2005-06-15 10:11:42','2006-02-15 22:12:35'), - (721,27,2,1480,'4.99','2005-06-15 21:17:17','2006-02-15 22:12:35'), - (722,27,2,1699,'2.99','2005-06-16 13:05:09','2006-02-15 22:12:35'), - (723,27,2,1960,'3.99','2005-06-17 08:59:57','2006-02-15 22:12:35'), - (724,27,2,2512,'2.99','2005-06-18 23:48:47','2006-02-15 22:12:35'), - (725,27,1,2815,'4.99','2005-06-19 20:03:29','2006-02-15 22:12:35'), - (726,27,1,3038,'1.99','2005-06-20 12:28:59','2006-02-15 22:12:35'), - (727,27,2,3420,'3.99','2005-06-21 17:22:36','2006-02-15 22:12:35'), - (728,27,2,4038,'0.99','2005-07-07 02:52:53','2006-02-15 22:12:35'), - (729,27,1,4510,'5.99','2005-07-08 02:34:51','2006-02-15 22:12:35'), - (730,27,1,5552,'0.99','2005-07-10 03:01:19','2006-02-15 22:12:35'), - (731,27,1,5736,'4.99','2005-07-10 11:45:48','2006-02-15 22:12:35'), - (732,27,2,6115,'0.99','2005-07-11 07:36:50','2006-02-15 22:12:35'), - (733,27,2,6562,'5.99','2005-07-12 05:26:26','2006-02-15 22:12:35'), - (734,27,2,6658,'4.99','2005-07-12 11:13:21','2006-02-15 22:12:35'), - (735,27,1,7927,'1.99','2005-07-28 12:13:42','2006-02-15 22:12:35'), - (736,27,2,9244,'0.99','2005-07-30 14:06:53','2006-02-15 22:12:35'), - (737,27,2,9636,'5.99','2005-07-31 05:12:59','2006-02-15 22:12:35'), - (738,27,1,9673,'7.99','2005-07-31 06:34:55','2006-02-15 22:12:35'), - (739,27,1,9908,'4.99','2005-07-31 14:39:52','2006-02-15 22:12:35'), - (740,27,1,10794,'7.99','2005-08-01 21:51:15','2006-02-15 22:12:35'), - (741,27,1,10852,'4.99','2005-08-02 00:00:33','2006-02-15 22:12:35'), - (742,27,1,11234,'0.99','2005-08-02 13:12:17','2006-02-15 22:12:35'), - (743,27,1,11661,'8.99','2005-08-17 05:25:57','2006-02-15 22:12:35'), - (744,27,2,11740,'6.99','2005-08-17 08:48:31','2006-02-15 22:12:35'), - (745,27,2,12021,'5.99','2005-08-17 19:52:43','2006-02-15 22:12:35'), - (746,27,2,12461,'0.99','2005-08-18 11:28:14','2006-02-15 22:12:35'), - (747,27,1,12531,'2.99','2005-08-18 13:57:50','2006-02-15 22:12:35'), - (748,27,2,13816,'4.99','2005-08-20 13:13:56','2006-02-15 22:12:35'), - (749,27,1,15048,'0.99','2005-08-22 10:00:04','2006-02-15 22:12:35'), - (750,28,2,388,'2.99','2005-05-27 10:37:27','2006-02-15 22:12:35'), - (751,28,1,868,'2.99','2005-05-30 04:19:55','2006-02-15 22:12:35'), - (752,28,2,1240,'2.99','2005-06-15 04:58:07','2006-02-15 22:12:35'), - (753,28,1,1543,'4.99','2005-06-16 01:24:08','2006-02-15 22:12:35'), - (754,28,2,2299,'3.99','2005-06-18 08:18:52','2006-02-15 22:12:35'), - (755,28,2,2604,'0.99','2005-06-19 06:30:10','2006-02-15 22:12:35'), - (756,28,1,3231,'0.99','2005-06-21 02:25:00','2006-02-15 22:12:35'), - (757,28,1,3845,'0.99','2005-07-06 16:38:14','2006-02-15 22:12:35'), - (758,28,2,4704,'0.99','2005-07-08 11:45:35','2006-02-15 22:12:35'), - (759,28,2,4951,'4.99','2005-07-08 22:58:21','2006-02-15 22:12:35'), - (760,28,2,5653,'2.99','2005-07-10 07:21:27','2006-02-15 22:12:35'), - (761,28,1,5817,'5.99','2005-07-10 15:49:12','2006-02-15 22:12:35'), - (762,28,2,6032,'0.99','2005-07-11 02:49:01','2006-02-15 22:12:35'), - (763,28,2,6476,'0.99','2005-07-12 01:37:48','2006-02-15 22:12:35'), - (764,28,1,7580,'9.99','2005-07-27 23:07:40','2006-02-15 22:12:35'), - (765,28,1,8464,'4.99','2005-07-29 08:18:20','2006-02-15 22:12:35'), - (766,28,1,8901,'2.99','2005-07-30 01:07:12','2006-02-15 22:12:35'), - (767,28,2,9544,'2.99','2005-07-31 01:44:51','2006-02-15 22:12:35'), - (768,28,2,9593,'4.99','2005-07-31 03:22:30','2006-02-15 22:12:35'), - (769,28,2,9705,'4.99','2005-07-31 07:40:33','2006-02-15 22:12:35'), - (770,28,2,10116,'2.99','2005-07-31 21:14:02','2006-02-15 22:12:35'), - (771,28,2,10294,'6.99','2005-08-01 03:48:12','2006-02-15 22:12:35'), - (772,28,1,11444,'2.99','2005-08-02 20:32:55','2006-02-15 22:12:35'), - (773,28,1,11856,'3.99','2005-08-17 13:44:49','2006-02-15 22:12:35'), - (774,28,2,12190,'2.99','2005-08-18 01:54:44','2006-02-15 22:12:35'), - (775,28,1,12359,'0.99','2005-08-18 07:44:05','2006-02-15 22:12:35'), - (776,28,1,12708,'2.99','2005-08-18 20:59:17','2006-02-15 22:12:35'), - (777,28,2,13783,'4.99','2005-08-20 12:11:03','2006-02-15 22:12:35'), - (778,28,2,14540,'2.99','2005-08-21 15:34:23','2006-02-15 22:12:35'), - (779,28,1,15445,'4.99','2005-08-23 00:48:29','2006-02-15 22:12:35'), - (780,28,1,15491,'2.99','2005-08-23 02:08:40','2006-02-15 22:12:35'), - (781,28,2,12938,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:35'), - (782,29,2,194,'1.99','2005-05-26 06:52:33','2006-02-15 22:12:35'), - (783,29,1,2655,'0.99','2005-06-19 10:38:42','2006-02-15 22:12:35'), - (784,29,1,2673,'0.99','2005-06-19 11:42:20','2006-02-15 22:12:35'), - (785,29,1,2701,'7.99','2005-06-19 13:33:06','2006-02-15 22:12:35'), - (786,29,1,2735,'2.99','2005-06-19 15:42:07','2006-02-15 22:12:35'), - (787,29,2,2801,'2.99','2005-06-19 19:18:09','2006-02-15 22:12:35'), - (788,29,2,2923,'2.99','2005-06-20 04:16:07','2006-02-15 22:12:35'), - (789,29,1,3324,'2.99','2005-06-21 08:49:16','2006-02-15 22:12:35'), - (790,29,2,4262,'6.99','2005-07-07 14:24:30','2006-02-15 22:12:35'), - (791,29,1,4313,'0.99','2005-07-07 17:36:56','2006-02-15 22:12:35'), - (792,29,2,4535,'0.99','2005-07-08 03:40:46','2006-02-15 22:12:35'), - (793,29,2,5442,'10.99','2005-07-09 21:55:19','2006-02-15 22:12:35'), - (794,29,1,5857,'1.99','2005-07-10 17:59:29','2006-02-15 22:12:35'), - (795,29,2,7237,'3.99','2005-07-27 10:12:36','2006-02-15 22:12:35'), - (796,29,1,7451,'6.99','2005-07-27 18:18:41','2006-02-15 22:12:35'), - (797,29,1,7453,'0.99','2005-07-27 18:27:13','2006-02-15 22:12:35'), - (798,29,2,8673,'2.99','2005-07-29 15:50:14','2006-02-15 22:12:35'), - (799,29,2,9392,'4.99','2005-07-30 19:50:13','2006-02-15 22:12:35'), - (800,29,1,9946,'4.99','2005-07-31 15:48:54','2006-02-15 22:12:35'), - (801,29,1,10543,'5.99','2005-08-01 12:36:09','2006-02-15 22:12:35'), - (802,29,2,10899,'1.99','2005-08-02 01:30:21','2006-02-15 22:12:35'), - (803,29,1,11079,'4.99','2005-08-02 07:29:10','2006-02-15 22:12:35'), - (804,29,2,11962,'2.99','2005-08-17 17:34:38','2006-02-15 22:12:35'), - (805,29,1,12488,'4.99','2005-08-18 12:48:22','2006-02-15 22:12:35'), - (806,29,1,12508,'2.99','2005-08-18 13:20:13','2006-02-15 22:12:35'), - (807,29,2,12569,'6.99','2005-08-18 15:20:46','2006-02-15 22:12:35'), - (808,29,2,12615,'6.99','2005-08-18 17:16:07','2006-02-15 22:12:35'), - (809,29,2,13173,'2.99','2005-08-19 13:50:36','2006-02-15 22:12:35'), - (810,29,1,13436,'0.99','2005-08-19 23:36:25','2006-02-15 22:12:35'), - (811,29,2,13777,'2.99','2005-08-20 12:03:35','2006-02-15 22:12:35'), - (812,29,1,13832,'3.99','2005-08-20 14:00:25','2006-02-15 22:12:35'), - (813,29,1,14174,'0.99','2005-08-21 03:01:45','2006-02-15 22:12:35'), - (814,29,1,14703,'4.99','2005-08-21 21:01:19','2006-02-15 22:12:35'), - (815,29,1,14985,'7.99','2005-08-22 07:35:56','2006-02-15 22:12:35'), - (816,29,1,14997,'5.99','2005-08-22 07:53:00','2006-02-15 22:12:35'), - (817,29,2,15577,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:35'), - (818,30,2,1874,'1.99','2005-06-17 02:39:20','2006-02-15 22:12:35'), - (819,30,2,1895,'2.99','2005-06-17 04:25:12','2006-02-15 22:12:35'), - (820,30,2,2154,'4.99','2005-06-17 22:59:42','2006-02-15 22:12:35'), - (821,30,2,2730,'2.99','2005-06-19 15:10:09','2006-02-15 22:12:35'), - (822,30,1,3964,'4.99','2005-07-06 22:23:02','2006-02-15 22:12:35'), - (823,30,2,4471,'2.99','2005-07-08 00:21:29','2006-02-15 22:12:35'), - (824,30,2,4642,'2.99','2005-07-08 09:13:28','2006-02-15 22:12:35'), - (825,30,2,5028,'5.99','2005-07-09 02:34:45','2006-02-15 22:12:36'), - (826,30,1,5108,'9.99','2005-07-09 06:44:30','2006-02-15 22:12:36'), - (827,30,1,5289,'0.99','2005-07-09 15:14:08','2006-02-15 22:12:36'), - (828,30,2,5972,'7.99','2005-07-11 00:08:54','2006-02-15 22:12:36'), - (829,30,1,6249,'0.99','2005-07-11 15:02:02','2006-02-15 22:12:36'), - (830,30,2,6359,'2.99','2005-07-11 21:06:17','2006-02-15 22:12:36'), - (831,30,2,7394,'2.99','2005-07-27 16:03:08','2006-02-15 22:12:36'), - (832,30,2,7769,'4.99','2005-07-28 06:45:23','2006-02-15 22:12:36'), - (833,30,1,8030,'4.99','2005-07-28 16:12:53','2006-02-15 22:12:36'), - (834,30,2,8038,'4.99','2005-07-28 16:32:55','2006-02-15 22:12:36'), - (835,30,1,8083,'4.99','2005-07-28 18:09:48','2006-02-15 22:12:36'), - (836,30,1,8641,'2.99','2005-07-29 14:37:30','2006-02-15 22:12:36'), - (837,30,2,9309,'2.99','2005-07-30 16:55:53','2006-02-15 22:12:36'), - (838,30,2,9551,'0.99','2005-07-31 02:04:58','2006-02-15 22:12:36'), - (839,30,1,9641,'0.99','2005-07-31 05:33:48','2006-02-15 22:12:36'), - (840,30,1,9998,'2.99','2005-07-31 17:40:35','2006-02-15 22:12:36'), - (841,30,1,10235,'6.99','2005-08-01 01:57:48','2006-02-15 22:12:36'), - (842,30,1,12240,'2.99','2005-08-18 03:27:11','2006-02-15 22:12:36'), - (843,30,1,12546,'2.99','2005-08-18 14:29:37','2006-02-15 22:12:36'), - (844,30,2,12758,'0.99','2005-08-18 22:58:34','2006-02-15 22:12:36'), - (845,30,1,13435,'0.99','2005-08-19 23:35:44','2006-02-15 22:12:36'), - (846,30,1,13682,'4.99','2005-08-20 08:50:39','2006-02-15 22:12:36'), - (847,30,1,14339,'0.99','2005-08-21 08:37:15','2006-02-15 22:12:36'), - (848,30,1,14585,'2.99','2005-08-21 17:18:33','2006-02-15 22:12:36'), - (849,30,1,15063,'4.99','2005-08-22 10:39:51','2006-02-15 22:12:36'), - (850,30,1,15544,'4.99','2005-08-23 04:17:56','2006-02-15 22:12:36'), - (851,30,2,15829,'2.99','2005-08-23 15:17:14','2006-02-15 22:12:36'), - (852,31,2,1656,'4.99','2005-06-16 10:05:40','2006-02-15 22:12:36'), - (853,31,1,1838,'1.99','2005-06-16 23:20:16','2006-02-15 22:12:36'), - (854,31,1,2233,'0.99','2005-06-18 03:57:36','2006-02-15 22:12:36'), - (855,31,2,2341,'6.99','2005-06-18 11:35:30','2006-02-15 22:12:36'), - (856,31,1,2396,'7.99','2005-06-18 15:49:48','2006-02-15 22:12:36'), - (857,31,2,2438,'0.99','2005-06-18 18:34:21','2006-02-15 22:12:36'), - (858,31,1,2530,'0.99','2005-06-19 01:20:00','2006-02-15 22:12:36'), - (859,31,2,2648,'4.99','2005-06-19 10:06:20','2006-02-15 22:12:36'), - (860,31,2,3117,'2.99','2005-06-20 18:05:15','2006-02-15 22:12:36'), - (861,31,2,3172,'1.99','2005-06-20 22:19:25','2006-02-15 22:12:36'), - (862,31,1,3205,'0.99','2005-06-21 00:38:47','2006-02-15 22:12:36'), - (863,31,1,3701,'4.99','2005-07-06 10:12:45','2006-02-15 22:12:36'), - (864,31,2,3967,'4.99','2005-07-06 22:45:10','2006-02-15 22:12:36'), - (865,31,1,4122,'6.99','2005-07-07 07:15:35','2006-02-15 22:12:36'), - (866,31,2,4738,'9.99','2005-07-08 13:24:58','2006-02-15 22:12:36'), - (867,31,1,6208,'3.99','2005-07-11 12:34:56','2006-02-15 22:12:36'), - (868,31,2,6580,'4.99','2005-07-12 06:26:10','2006-02-15 22:12:36'), - (869,31,1,7000,'1.99','2005-07-27 01:23:24','2006-02-15 22:12:36'), - (870,31,2,7138,'3.99','2005-07-27 06:47:13','2006-02-15 22:12:36'), - (871,31,2,7178,'2.99','2005-07-27 08:09:25','2006-02-15 22:12:36'), - (872,31,2,7464,'2.99','2005-07-27 18:49:42','2006-02-15 22:12:36'), - (873,31,2,8997,'0.99','2005-07-30 04:53:56','2006-02-15 22:12:36'), - (874,31,2,12085,'4.99','2005-08-17 22:17:09','2006-02-15 22:12:36'), - (875,31,1,12377,'0.99','2005-08-18 08:26:05','2006-02-15 22:12:36'), - (876,31,2,15682,'6.99','2005-08-23 09:37:34','2006-02-15 22:12:36'), - (877,31,2,15816,'6.99','2005-08-23 14:58:06','2006-02-15 22:12:36'), - (878,32,2,483,'4.99','2005-05-27 23:00:25','2006-02-15 22:12:36'), - (879,32,2,803,'4.99','2005-05-29 17:52:30','2006-02-15 22:12:36'), - (880,32,2,1067,'4.99','2005-05-31 09:12:13','2006-02-15 22:12:36'), - (881,32,2,1887,'6.99','2005-06-17 03:53:18','2006-02-15 22:12:36'), - (882,32,2,2160,'0.99','2005-06-17 23:39:11','2006-02-15 22:12:36'), - (883,32,2,2624,'5.99','2005-06-19 08:22:09','2006-02-15 22:12:36'), - (884,32,2,2891,'1.99','2005-06-20 02:02:05','2006-02-15 22:12:36'), - (885,32,1,3500,'2.99','2005-07-06 00:11:13','2006-02-15 22:12:36'), - (886,32,1,4434,'2.99','2005-07-07 22:48:34','2006-02-15 22:12:36'), - (887,32,2,4771,'2.99','2005-07-08 15:33:32','2006-02-15 22:12:36'), - (888,32,2,4899,'0.99','2005-07-08 20:37:11','2006-02-15 22:12:36'), - (889,32,1,5307,'9.99','2005-07-09 15:57:15','2006-02-15 22:12:36'), - (890,32,1,5767,'0.99','2005-07-10 13:13:18','2006-02-15 22:12:36'), - (891,32,1,5954,'2.99','2005-07-10 23:22:01','2006-02-15 22:12:36'), - (892,32,1,6122,'3.99','2005-07-11 07:58:07','2006-02-15 22:12:36'), - (893,32,2,6450,'2.99','2005-07-12 00:49:05','2006-02-15 22:12:36'), - (894,32,1,7084,'6.99','2005-07-27 04:34:07','2006-02-15 22:12:36'), - (895,32,1,7589,'5.99','2005-07-27 23:23:36','2006-02-15 22:12:36'), - (896,32,1,7793,'2.99','2005-07-28 07:26:14','2006-02-15 22:12:36'), - (897,32,2,8390,'5.99','2005-07-29 05:52:26','2006-02-15 22:12:36'), - (898,32,2,8453,'2.99','2005-07-29 07:46:29','2006-02-15 22:12:36'), - (899,32,2,8914,'2.99','2005-07-30 01:42:03','2006-02-15 22:12:36'), - (900,32,1,11135,'4.99','2005-08-02 09:22:25','2006-02-15 22:12:36'), - (901,32,2,11831,'4.99','2005-08-17 12:54:47','2006-02-15 22:12:36'), - (902,32,2,12414,'9.99','2005-08-18 09:50:40','2006-02-15 22:12:36'), - (903,32,1,13736,'8.99','2005-08-20 10:31:23','2006-02-15 22:12:36'), - (904,32,1,13931,'1.99','2005-08-20 17:16:10','2006-02-15 22:12:36'), - (905,32,1,14075,'0.99','2005-08-20 23:18:54','2006-02-15 22:12:36'), - (906,32,2,14570,'5.99','2005-08-21 16:32:32','2006-02-15 22:12:36'), - (907,33,1,165,'2.99','2005-05-26 02:28:36','2006-02-15 22:12:36'), - (908,33,1,1301,'10.99','2005-06-15 09:46:33','2006-02-15 22:12:36'), - (909,33,2,3173,'8.99','2005-06-20 22:21:10','2006-02-15 22:12:36'), - (910,33,1,4095,'5.99','2005-07-07 06:01:48','2006-02-15 22:12:36'), - (911,33,1,5421,'0.99','2005-07-09 20:49:12','2006-02-15 22:12:36'), - (912,33,1,5723,'4.99','2005-07-10 11:14:48','2006-02-15 22:12:36'), - (913,33,2,6280,'0.99','2005-07-11 16:36:17','2006-02-15 22:12:36'), - (914,33,1,7992,'4.99','2005-07-28 14:53:06','2006-02-15 22:12:36'), - (915,33,1,9040,'4.99','2005-07-30 06:31:45','2006-02-15 22:12:36'), - (916,33,2,9085,'4.99','2005-07-30 08:17:24','2006-02-15 22:12:36'), - (917,33,1,9254,'1.99','2005-07-30 14:26:11','2006-02-15 22:12:36'), - (918,33,2,10335,'2.99','2005-08-01 04:59:30','2006-02-15 22:12:36'), - (919,33,1,10870,'4.99','2005-08-02 00:27:12','2006-02-15 22:12:36'), - (920,33,1,13241,'7.99','2005-08-19 16:25:00','2006-02-15 22:12:36'), - (921,33,1,13858,'2.99','2005-08-20 14:50:57','2006-02-15 22:12:36'), - (922,33,1,13958,'7.99','2005-08-20 18:11:44','2006-02-15 22:12:36'), - (923,33,1,14002,'0.99','2005-08-20 20:12:19','2006-02-15 22:12:36'), - (924,33,1,14623,'0.99','2005-08-21 18:29:13','2006-02-15 22:12:36'), - (925,33,1,15096,'5.99','2005-08-22 11:43:04','2006-02-15 22:12:36'), - (926,33,2,15115,'2.99','2005-08-22 12:28:01','2006-02-15 22:12:36'), - (927,33,1,12277,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:36'), - (928,34,1,1900,'4.99','2005-06-17 04:29:58','2006-02-15 22:12:36'), - (929,34,2,2257,'5.99','2005-06-18 05:29:52','2006-02-15 22:12:36'), - (930,34,1,3150,'0.99','2005-06-20 20:35:28','2006-02-15 22:12:36'), - (931,34,2,3508,'3.99','2005-07-06 00:24:25','2006-02-15 22:12:36'), - (932,34,1,3911,'2.99','2005-07-06 20:09:11','2006-02-15 22:12:36'), - (933,34,1,5188,'4.99','2005-07-09 10:22:31','2006-02-15 22:12:36'), - (934,34,2,5643,'4.99','2005-07-10 06:49:00','2006-02-15 22:12:36'), - (935,34,2,5918,'5.99','2005-07-10 21:32:06','2006-02-15 22:12:36'), - (936,34,2,7015,'2.99','2005-07-27 02:15:01','2006-02-15 22:12:36'), - (937,34,2,7124,'2.99','2005-07-27 06:09:30','2006-02-15 22:12:36'), - (938,34,1,7532,'0.99','2005-07-27 21:20:52','2006-02-15 22:12:36'), - (939,34,1,9160,'3.99','2005-07-30 11:17:33','2006-02-15 22:12:37'), - (940,34,1,10523,'0.99','2005-08-01 11:52:32','2006-02-15 22:12:37'), - (941,34,1,10615,'4.99','2005-08-01 14:58:14','2006-02-15 22:12:37'), - (942,34,2,11096,'0.99','2005-08-02 08:05:19','2006-02-15 22:12:37'), - (943,34,1,11505,'2.99','2005-08-16 23:18:47','2006-02-15 22:12:37'), - (944,34,2,11701,'4.99','2005-08-17 07:15:47','2006-02-15 22:12:37'), - (945,34,2,12286,'2.99','2005-08-18 04:57:59','2006-02-15 22:12:37'), - (946,34,1,12599,'2.99','2005-08-18 16:42:45','2006-02-15 22:12:37'), - (947,34,1,12651,'0.99','2005-08-18 18:36:16','2006-02-15 22:12:37'), - (948,34,1,13371,'4.99','2005-08-19 21:21:47','2006-02-15 22:12:37'), - (949,34,2,13949,'2.99','2005-08-20 17:55:13','2006-02-15 22:12:37'), - (950,34,1,14686,'5.99','2005-08-21 20:32:08','2006-02-15 22:12:37'), - (951,34,2,14701,'7.99','2005-08-21 20:54:32','2006-02-15 22:12:37'), - (952,35,2,47,'3.99','2005-05-25 06:05:20','2006-02-15 22:12:37'), - (953,35,1,424,'6.99','2005-05-27 15:34:01','2006-02-15 22:12:37'), - (954,35,1,1579,'0.99','2005-06-16 04:09:08','2006-02-15 22:12:37'), - (955,35,1,1989,'2.99','2005-06-17 10:47:24','2006-02-15 22:12:37'), - (956,35,1,2229,'4.99','2005-06-18 03:50:18','2006-02-15 22:12:37'), - (957,35,1,2231,'0.99','2005-06-18 03:52:14','2006-02-15 22:12:37'), - (958,35,1,2743,'2.99','2005-06-19 16:15:56','2006-02-15 22:12:37'), - (959,35,2,3112,'4.99','2005-06-20 17:53:30','2006-02-15 22:12:37'), - (960,35,2,3597,'2.99','2005-07-06 05:03:59','2006-02-15 22:12:37'), - (961,35,2,4098,'4.99','2005-07-07 06:14:51','2006-02-15 22:12:37'), - (962,35,2,4990,'0.99','2005-07-09 00:48:49','2006-02-15 22:12:37'), - (963,35,1,5013,'2.99','2005-07-09 01:46:45','2006-02-15 22:12:37'), - (964,35,2,5323,'0.99','2005-07-09 16:34:07','2006-02-15 22:12:37'), - (965,35,1,5916,'5.99','2005-07-10 21:26:31','2006-02-15 22:12:37'), - (966,35,1,5963,'0.99','2005-07-10 23:47:08','2006-02-15 22:12:37'), - (967,35,1,6147,'5.99','2005-07-11 09:13:08','2006-02-15 22:12:37'), - (968,35,1,6401,'4.99','2005-07-11 22:44:34','2006-02-15 22:12:37'), - (969,35,1,6565,'4.99','2005-07-12 05:39:50','2006-02-15 22:12:37'), - (970,35,1,6572,'4.99','2005-07-12 05:56:38','2006-02-15 22:12:37'), - (971,35,1,7140,'4.99','2005-07-27 06:54:12','2006-02-15 22:12:37'), - (972,35,1,8822,'6.99','2005-07-29 22:20:21','2006-02-15 22:12:37'), - (973,35,1,8971,'5.99','2005-07-30 04:03:58','2006-02-15 22:12:37'), - (974,35,2,9033,'2.99','2005-07-30 06:07:42','2006-02-15 22:12:37'), - (975,35,1,9579,'6.99','2005-07-31 02:59:20','2006-02-15 22:12:37'), - (976,35,1,11298,'1.99','2005-08-02 15:32:32','2006-02-15 22:12:37'), - (977,35,1,11452,'7.99','2005-08-02 20:59:52','2006-02-15 22:12:37'), - (978,35,1,11645,'4.99','2005-08-17 04:50:56','2006-02-15 22:12:37'), - (979,35,1,12055,'4.99','2005-08-17 21:02:19','2006-02-15 22:12:37'), - (980,35,1,13735,'2.99','2005-08-20 10:31:01','2006-02-15 22:12:37'), - (981,35,1,14110,'0.99','2005-08-21 00:53:09','2006-02-15 22:12:37'), - (982,35,2,14124,'2.99','2005-08-21 01:31:51','2006-02-15 22:12:37'), - (983,35,2,14735,'4.99','2005-08-21 22:25:09','2006-02-15 22:12:37'), - (984,36,1,349,'0.99','2005-05-27 04:53:11','2006-02-15 22:12:37'), - (985,36,1,716,'0.99','2005-05-29 04:35:29','2006-02-15 22:12:37'), - (986,36,2,2741,'0.99','2005-06-19 16:05:41','2006-02-15 22:12:37'), - (987,36,2,4135,'0.99','2005-07-07 08:15:03','2006-02-15 22:12:37'), - (988,36,2,4560,'4.99','2005-07-08 04:58:48','2006-02-15 22:12:37'), - (989,36,2,4762,'4.99','2005-07-08 14:54:42','2006-02-15 22:12:37'), - (990,36,1,5403,'0.99','2005-07-09 20:07:09','2006-02-15 22:12:37'), - (991,36,2,6030,'0.99','2005-07-11 02:37:51','2006-02-15 22:12:37'), - (992,36,1,7205,'6.99','2005-07-27 09:06:13','2006-02-15 22:12:37'), - (993,36,1,7647,'0.99','2005-07-28 01:35:17','2006-02-15 22:12:37'), - (994,36,2,7919,'6.99','2005-07-28 11:59:45','2006-02-15 22:12:37'), - (995,36,2,8099,'0.99','2005-07-28 18:35:12','2006-02-15 22:12:37'), - (996,36,1,8391,'2.99','2005-07-29 05:52:50','2006-02-15 22:12:37'), - (997,36,1,8952,'4.99','2005-07-30 03:20:38','2006-02-15 22:12:37'), - (998,36,1,9369,'2.99','2005-07-30 18:52:19','2006-02-15 22:12:37'), - (999,36,2,9805,'0.99','2005-07-31 11:11:10','2006-02-15 22:12:37'), - (1000,36,2,10525,'2.99','2005-08-01 11:53:17','2006-02-15 22:12:37'), - (1001,36,2,10761,'2.99','2005-08-01 20:25:35','2006-02-15 22:12:37'), - (1002,36,1,10963,'0.99','2005-08-02 03:48:17','2006-02-15 22:12:37'), - (1003,36,2,10964,'6.99','2005-08-02 03:56:23','2006-02-15 22:12:37'), - (1004,36,2,11616,'4.99','2005-08-17 04:00:01','2006-02-15 22:12:37'), - (1005,36,1,11813,'4.99','2005-08-17 12:06:54','2006-02-15 22:12:37'), - (1006,36,2,13562,'2.99','2005-08-20 04:31:45','2006-02-15 22:12:37'), - (1007,36,2,13564,'1.99','2005-08-20 04:34:46','2006-02-15 22:12:37'), - (1008,36,1,13674,'4.99','2005-08-20 08:30:54','2006-02-15 22:12:37'), - (1009,36,1,14647,'9.99','2005-08-21 19:15:33','2006-02-15 22:12:37'), - (1010,36,2,15657,'4.99','2005-08-23 08:42:40','2006-02-15 22:12:37'), - (1011,37,1,25,'0.99','2005-05-25 03:21:20','2006-02-15 22:12:37'), - (1012,37,1,923,'2.99','2005-05-30 11:58:50','2006-02-15 22:12:37'), - (1013,37,1,1583,'4.99','2005-06-16 04:44:23','2006-02-15 22:12:37'), - (1014,37,2,1812,'1.99','2005-06-16 21:08:46','2006-02-15 22:12:37'), - (1015,37,2,1854,'3.99','2005-06-17 00:43:57','2006-02-15 22:12:37'), - (1016,37,2,3472,'7.99','2005-07-05 22:56:33','2006-02-15 22:12:37'), - (1017,37,1,3734,'5.99','2005-07-06 11:40:27','2006-02-15 22:12:37'), - (1018,37,1,5425,'5.99','2005-07-09 21:02:26','2006-02-15 22:12:37'), - (1019,37,2,7939,'0.99','2005-07-28 12:45:47','2006-02-15 22:12:37'), - (1020,37,1,8419,'9.99','2005-07-29 06:54:48','2006-02-15 22:12:37'), - (1021,37,1,9567,'5.99','2005-07-31 02:36:11','2006-02-15 22:12:37'), - (1022,37,1,10538,'2.99','2005-08-01 12:22:41','2006-02-15 22:12:37'), - (1023,37,1,11176,'3.99','2005-08-02 10:39:43','2006-02-15 22:12:37'), - (1024,37,1,13046,'7.99','2005-08-19 09:21:10','2006-02-15 22:12:37'), - (1025,37,2,13147,'4.99','2005-08-19 12:55:09','2006-02-15 22:12:37'), - (1026,37,2,13444,'0.99','2005-08-20 00:00:24','2006-02-15 22:12:37'), - (1027,37,2,13493,'3.99','2005-08-20 01:33:36','2006-02-15 22:12:37'), - (1028,37,2,14025,'8.99','2005-08-20 21:19:36','2006-02-15 22:12:37'), - (1029,37,1,14084,'0.99','2005-08-20 23:42:46','2006-02-15 22:12:37'), - (1030,37,2,14532,'2.99','2005-08-21 15:15:03','2006-02-15 22:12:37'), - (1031,37,1,15028,'3.99','2005-08-22 09:03:44','2006-02-15 22:12:37'), - (1032,37,1,15904,'0.99','2005-08-23 17:32:19','2006-02-15 22:12:37'), - (1033,37,2,16035,'0.99','2005-08-23 22:08:04','2006-02-15 22:12:37'), - (1034,38,2,1250,'2.99','2005-06-15 05:55:40','2006-02-15 22:12:37'), - (1035,38,1,2550,'1.99','2005-06-19 02:49:55','2006-02-15 22:12:37'), - (1036,38,2,2605,'1.99','2005-06-19 06:48:01','2006-02-15 22:12:37'), - (1037,38,2,3003,'4.99','2005-06-20 10:00:51','2006-02-15 22:12:37'), - (1038,38,2,3392,'3.99','2005-06-21 15:12:44','2006-02-15 22:12:37'), - (1039,38,1,4202,'5.99','2005-07-07 11:23:48','2006-02-15 22:12:37'), - (1040,38,2,4228,'1.99','2005-07-07 12:42:02','2006-02-15 22:12:37'), - (1041,38,1,4300,'4.99','2005-07-07 16:36:16','2006-02-15 22:12:37'), - (1042,38,2,4644,'4.99','2005-07-08 09:14:29','2006-02-15 22:12:37'), - (1043,38,1,5273,'2.99','2005-07-09 14:31:24','2006-02-15 22:12:37'), - (1044,38,2,5460,'2.99','2005-07-09 22:46:14','2006-02-15 22:12:37'), - (1045,38,1,5822,'2.99','2005-07-10 16:10:39','2006-02-15 22:12:37'), - (1046,38,1,6864,'5.99','2005-07-12 19:59:25','2006-02-15 22:12:38'), - (1047,38,1,6961,'0.99','2005-07-27 00:10:49','2006-02-15 22:12:38'), - (1048,38,2,7158,'4.99','2005-07-27 07:23:58','2006-02-15 22:12:38'), - (1049,38,2,7163,'5.99','2005-07-27 07:36:11','2006-02-15 22:12:38'), - (1050,38,2,7321,'5.99','2005-07-27 13:33:38','2006-02-15 22:12:38'), - (1051,38,1,7795,'0.99','2005-07-28 07:28:16','2006-02-15 22:12:38'), - (1052,38,2,8924,'3.99','2005-07-30 02:08:58','2006-02-15 22:12:38'), - (1053,38,2,9216,'0.99','2005-07-30 13:11:19','2006-02-15 22:12:38'), - (1054,38,1,9284,'0.99','2005-07-30 15:25:19','2006-02-15 22:12:38'), - (1055,38,1,9621,'4.99','2005-07-31 04:21:08','2006-02-15 22:12:38'), - (1056,38,2,10111,'2.99','2005-07-31 21:08:33','2006-02-15 22:12:38'), - (1057,38,2,10524,'6.99','2005-08-01 11:53:12','2006-02-15 22:12:38'), - (1058,38,2,11049,'3.99','2005-08-02 06:15:40','2006-02-15 22:12:38'), - (1059,38,1,11344,'2.99','2005-08-02 17:13:26','2006-02-15 22:12:38'), - (1060,38,1,11817,'4.99','2005-08-17 12:20:01','2006-02-15 22:12:38'), - (1061,38,2,12092,'0.99','2005-08-17 22:28:15','2006-02-15 22:12:38'), - (1062,38,2,12187,'1.99','2005-08-18 01:45:50','2006-02-15 22:12:38'), - (1063,38,1,14554,'4.99','2005-08-21 16:03:01','2006-02-15 22:12:38'), - (1064,38,2,14632,'2.99','2005-08-21 18:48:06','2006-02-15 22:12:38'), - (1065,38,1,14787,'6.99','2005-08-22 00:25:59','2006-02-15 22:12:38'), - (1066,38,1,15668,'2.99','2005-08-23 09:02:04','2006-02-15 22:12:38'), - (1067,38,1,15738,'5.99','2005-08-23 11:55:50','2006-02-15 22:12:38'), - (1068,39,1,1625,'5.99','2005-06-16 07:49:08','2006-02-15 22:12:38'), - (1069,39,1,1905,'4.99','2005-06-17 04:51:43','2006-02-15 22:12:38'), - (1070,39,2,2135,'0.99','2005-06-17 21:14:02','2006-02-15 22:12:38'), - (1071,39,2,2439,'4.99','2005-06-18 18:35:04','2006-02-15 22:12:38'), - (1072,39,1,2631,'4.99','2005-06-19 08:49:53','2006-02-15 22:12:38'), - (1073,39,1,2876,'4.99','2005-06-20 01:06:34','2006-02-15 22:12:38'), - (1074,39,1,4419,'5.99','2005-07-07 22:06:24','2006-02-15 22:12:38'), - (1075,39,2,4695,'8.99','2005-07-08 11:07:59','2006-02-15 22:12:38'), - (1076,39,2,4712,'6.99','2005-07-08 12:10:50','2006-02-15 22:12:38'), - (1077,39,2,4727,'7.99','2005-07-08 12:54:15','2006-02-15 22:12:38'), - (1078,39,1,5451,'4.99','2005-07-09 22:22:10','2006-02-15 22:12:38'), - (1079,39,2,5515,'2.99','2005-07-10 01:12:44','2006-02-15 22:12:38'), - (1080,39,1,6045,'2.99','2005-07-11 03:21:05','2006-02-15 22:12:38'), - (1081,39,2,8307,'6.99','2005-07-29 03:18:34','2006-02-15 22:12:38'), - (1082,39,2,8366,'1.99','2005-07-29 05:11:14','2006-02-15 22:12:38'), - (1083,39,2,8723,'7.99','2005-07-29 18:03:47','2006-02-15 22:12:38'), - (1084,39,1,8805,'2.99','2005-07-29 21:29:58','2006-02-15 22:12:38'), - (1085,39,1,9431,'1.99','2005-07-30 21:24:22','2006-02-15 22:12:38'), - (1086,39,1,9656,'4.99','2005-07-31 06:00:21','2006-02-15 22:12:38'), - (1087,39,2,10052,'4.99','2005-07-31 19:15:13','2006-02-15 22:12:38'), - (1088,39,1,10126,'0.99','2005-07-31 21:36:07','2006-02-15 22:12:38'), - (1089,39,1,10251,'4.99','2005-08-01 02:39:12','2006-02-15 22:12:38'), - (1090,39,2,10269,'4.99','2005-08-01 03:09:26','2006-02-15 22:12:38'), - (1091,39,2,10630,'0.99','2005-08-01 15:34:46','2006-02-15 22:12:38'), - (1092,39,1,10639,'9.99','2005-08-01 15:44:43','2006-02-15 22:12:38'), - (1093,39,2,12268,'0.99','2005-08-18 04:26:54','2006-02-15 22:12:38'), - (1094,39,2,12459,'4.99','2005-08-18 11:25:11','2006-02-15 22:12:38'), - (1095,39,2,13101,'7.99','2005-08-19 11:01:54','2006-02-15 22:12:38'), - (1096,39,2,15124,'5.99','2005-08-22 12:51:38','2006-02-15 22:12:38'), - (1097,40,1,128,'4.99','2005-05-25 21:19:53','2006-02-15 22:12:38'), - (1098,40,2,2470,'7.99','2005-06-18 20:28:31','2006-02-15 22:12:38'), - (1099,40,2,2896,'2.99','2005-06-20 02:33:42','2006-02-15 22:12:38'), - (1100,40,1,2993,'4.99','2005-06-20 09:12:12','2006-02-15 22:12:38'), - (1101,40,1,3428,'0.99','2005-06-21 18:39:34','2006-02-15 22:12:38'), - (1102,40,2,5001,'1.99','2005-07-09 01:17:04','2006-02-15 22:12:38'), - (1103,40,2,5777,'2.99','2005-07-10 13:38:41','2006-02-15 22:12:38'), - (1104,40,1,5869,'5.99','2005-07-10 18:40:09','2006-02-15 22:12:38'), - (1105,40,1,6502,'0.99','2005-07-12 03:15:45','2006-02-15 22:12:38'), - (1106,40,2,7684,'0.99','2005-07-28 03:11:54','2006-02-15 22:12:38'), - (1107,40,2,8031,'0.99','2005-07-28 16:15:49','2006-02-15 22:12:38'), - (1108,40,2,8170,'3.99','2005-07-28 21:32:29','2006-02-15 22:12:38'), - (1109,40,1,9050,'8.99','2005-07-30 06:59:55','2006-02-15 22:12:38'), - (1110,40,2,9700,'4.99','2005-07-31 07:29:59','2006-02-15 22:12:38'), - (1111,40,2,9961,'6.99','2005-07-31 16:07:50','2006-02-15 22:12:38'), - (1112,40,1,9975,'1.99','2005-07-31 16:53:43','2006-02-15 22:12:38'), - (1113,40,1,10442,'2.99','2005-08-01 08:58:08','2006-02-15 22:12:38'), - (1114,40,2,11919,'0.99','2005-08-17 16:08:49','2006-02-15 22:12:38'), - (1115,40,2,11948,'3.99','2005-08-17 17:11:05','2006-02-15 22:12:38'), - (1116,40,2,12396,'9.99','2005-08-18 09:11:23','2006-02-15 22:12:38'), - (1117,40,2,12877,'2.99','2005-08-19 03:16:58','2006-02-15 22:12:38'), - (1118,40,1,13149,'6.99','2005-08-19 13:07:12','2006-02-15 22:12:38'), - (1119,40,1,13376,'0.99','2005-08-19 21:31:45','2006-02-15 22:12:38'), - (1120,40,1,13840,'5.99','2005-08-20 14:23:20','2006-02-15 22:12:38'), - (1121,40,1,13951,'2.99','2005-08-20 17:58:11','2006-02-15 22:12:38'), - (1122,40,1,14260,'6.99','2005-08-21 06:01:08','2006-02-15 22:12:38'), - (1123,40,1,15193,'2.99','2005-08-22 16:06:49','2006-02-15 22:12:38'), - (1124,41,1,2563,'4.99','2005-06-19 03:24:17','2006-02-15 22:12:38'), - (1125,41,2,3246,'7.99','2005-06-21 03:10:01','2006-02-15 22:12:38'), - (1126,41,2,3827,'2.99','2005-07-06 15:52:03','2006-02-15 22:12:38'), - (1127,41,2,4294,'9.99','2005-07-07 15:56:23','2006-02-15 22:12:38'), - (1128,41,1,4543,'4.99','2005-07-08 04:06:55','2006-02-15 22:12:38'), - (1129,41,1,4575,'2.99','2005-07-08 05:49:14','2006-02-15 22:12:38'), - (1130,41,1,6976,'4.99','2005-07-27 00:40:01','2006-02-15 22:12:38'), - (1131,41,2,7153,'4.99','2005-07-27 07:15:38','2006-02-15 22:12:38'), - (1132,41,1,7517,'1.99','2005-07-27 20:57:07','2006-02-15 22:12:38'), - (1133,41,2,8008,'6.99','2005-07-28 15:25:55','2006-02-15 22:12:38'), - (1134,41,1,8098,'0.99','2005-07-28 18:34:20','2006-02-15 22:12:38'), - (1135,41,1,8134,'6.99','2005-07-28 20:01:23','2006-02-15 22:12:38'), - (1136,41,2,8225,'2.99','2005-07-28 23:59:29','2006-02-15 22:12:38'), - (1137,41,1,8712,'2.99','2005-07-29 17:30:06','2006-02-15 22:12:38'), - (1138,41,2,9313,'5.99','2005-07-30 16:59:43','2006-02-15 22:12:38'), - (1139,41,1,10064,'2.99','2005-07-31 19:27:02','2006-02-15 22:12:38'), - (1140,41,1,10170,'7.99','2005-07-31 23:27:31','2006-02-15 22:12:38'), - (1141,41,2,10495,'4.99','2005-08-01 10:45:51','2006-02-15 22:12:38'), - (1142,41,1,10853,'5.99','2005-08-02 00:00:54','2006-02-15 22:12:38'), - (1143,41,2,12147,'2.99','2005-08-18 00:10:20','2006-02-15 22:12:38'), - (1144,41,2,12173,'3.99','2005-08-18 01:08:34','2006-02-15 22:12:38'), - (1145,41,2,12821,'0.99','2005-08-19 01:07:02','2006-02-15 22:12:38'), - (1146,41,2,14539,'7.99','2005-08-21 15:29:47','2006-02-15 22:12:38'), - (1147,41,2,15860,'4.99','2005-08-23 16:08:40','2006-02-15 22:12:38'), - (1148,41,1,15875,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:39'), - (1149,42,1,635,'5.99','2005-05-28 17:46:57','2006-02-15 22:12:39'), - (1150,42,2,1534,'0.99','2005-06-16 00:49:32','2006-02-15 22:12:39'), - (1151,42,2,2056,'2.99','2005-06-17 15:27:33','2006-02-15 22:12:39'), - (1152,42,1,2170,'3.99','2005-06-17 23:57:34','2006-02-15 22:12:39'), - (1153,42,1,2302,'4.99','2005-06-18 08:27:33','2006-02-15 22:12:39'), - (1154,42,2,4391,'2.99','2005-07-07 21:09:38','2006-02-15 22:12:39'), - (1155,42,2,5199,'4.99','2005-07-09 10:50:56','2006-02-15 22:12:39'), - (1156,42,2,5517,'5.99','2005-07-10 01:15:00','2006-02-15 22:12:39'), - (1157,42,2,5652,'3.99','2005-07-10 07:18:58','2006-02-15 22:12:39'), - (1158,42,1,6179,'2.99','2005-07-11 10:59:59','2006-02-15 22:12:39'), - (1159,42,1,6799,'2.99','2005-07-12 16:52:13','2006-02-15 22:12:39'), - (1160,42,1,6925,'0.99','2005-07-26 22:52:32','2006-02-15 22:12:39'), - (1161,42,1,7405,'3.99','2005-07-27 16:25:11','2006-02-15 22:12:39'), - (1162,42,1,8049,'0.99','2005-07-28 16:51:58','2006-02-15 22:12:39'), - (1163,42,1,8095,'6.99','2005-07-28 18:32:40','2006-02-15 22:12:39'), - (1164,42,1,8166,'2.99','2005-07-28 21:23:33','2006-02-15 22:12:39'), - (1165,42,1,8499,'3.99','2005-07-29 09:10:41','2006-02-15 22:12:39'), - (1166,42,2,8785,'2.99','2005-07-29 20:36:26','2006-02-15 22:12:39'), - (1167,42,2,8852,'3.99','2005-07-29 23:30:03','2006-02-15 22:12:39'), - (1168,42,2,8915,'3.99','2005-07-30 01:42:09','2006-02-15 22:12:39'), - (1169,42,2,10060,'6.99','2005-07-31 19:23:00','2006-02-15 22:12:39'), - (1170,42,2,10345,'2.99','2005-08-01 05:18:56','2006-02-15 22:12:39'), - (1171,42,2,10845,'2.99','2005-08-01 23:47:03','2006-02-15 22:12:39'), - (1172,42,1,10935,'5.99','2005-08-02 02:54:53','2006-02-15 22:12:39'), - (1173,42,1,12478,'4.99','2005-08-18 12:25:16','2006-02-15 22:12:39'), - (1174,42,2,12499,'2.99','2005-08-18 13:05:37','2006-02-15 22:12:39'), - (1175,42,1,14461,'7.99','2005-08-21 12:50:33','2006-02-15 22:12:39'), - (1176,42,1,15442,'2.99','2005-08-23 00:42:49','2006-02-15 22:12:39'), - (1177,42,1,13351,'5.98','2006-02-14 15:16:03','2006-02-15 22:12:39'), - (1178,42,1,15407,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:39'), - (1179,43,2,123,'4.99','2005-05-25 20:26:42','2006-02-15 22:12:39'), - (1180,43,1,652,'4.99','2005-05-28 20:08:47','2006-02-15 22:12:39'), - (1181,43,2,1544,'4.99','2005-06-16 01:28:22','2006-02-15 22:12:39'), - (1182,43,2,3683,'1.99','2005-07-06 09:25:56','2006-02-15 22:12:39'), - (1183,43,1,4498,'2.99','2005-07-08 02:07:50','2006-02-15 22:12:39'), - (1184,43,1,5162,'4.99','2005-07-09 09:00:11','2006-02-15 22:12:39'), - (1185,43,1,5401,'4.99','2005-07-09 19:59:10','2006-02-15 22:12:39'), - (1186,43,1,5831,'2.99','2005-07-10 16:34:02','2006-02-15 22:12:39'), - (1187,43,2,5941,'4.99','2005-07-10 22:40:47','2006-02-15 22:12:39'), - (1188,43,1,6474,'3.99','2005-07-12 01:36:46','2006-02-15 22:12:39'), - (1189,43,2,6680,'0.99','2005-07-12 12:01:56','2006-02-15 22:12:39'), - (1190,43,1,7348,'4.99','2005-07-27 14:32:32','2006-02-15 22:12:39'), - (1191,43,2,7868,'4.99','2005-07-28 10:08:55','2006-02-15 22:12:39'), - (1192,43,2,8376,'4.99','2005-07-29 05:25:32','2006-02-15 22:12:39'), - (1193,43,1,9204,'4.99','2005-07-30 12:43:58','2006-02-15 22:12:39'), - (1194,43,1,11753,'4.99','2005-08-17 09:11:52','2006-02-15 22:12:39'), - (1195,43,1,14244,'2.99','2005-08-21 05:29:55','2006-02-15 22:12:39'), - (1196,43,1,14649,'4.99','2005-08-21 19:19:21','2006-02-15 22:12:39'), - (1197,43,2,14837,'4.99','2005-08-22 01:54:52','2006-02-15 22:12:39'), - (1198,43,2,15155,'4.99','2005-08-22 14:27:46','2006-02-15 22:12:39'), - (1199,43,2,15800,'6.99','2005-08-23 14:23:44','2006-02-15 22:12:39'), - (1200,43,2,15945,'2.99','2005-08-23 18:51:41','2006-02-15 22:12:39'), - (1201,43,2,15644,'3.98','2006-02-14 15:16:03','2006-02-15 22:12:39'), - (1202,43,1,15745,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:39'), - (1203,44,1,29,'0.99','2005-05-25 03:47:12','2006-02-15 22:12:39'), - (1204,44,1,99,'4.99','2005-05-25 16:50:20','2006-02-15 22:12:39'), - (1205,44,1,407,'2.99','2005-05-27 13:57:38','2006-02-15 22:12:39'), - (1206,44,2,721,'0.99','2005-05-29 05:28:47','2006-02-15 22:12:39'), - (1207,44,1,904,'2.99','2005-05-30 10:19:42','2006-02-15 22:12:39'), - (1208,44,1,1497,'3.99','2005-06-15 21:56:39','2006-02-15 22:12:39'), - (1209,44,1,2369,'2.99','2005-06-18 14:25:29','2006-02-15 22:12:39'), - (1210,44,1,2809,'3.99','2005-06-19 19:40:27','2006-02-15 22:12:39'), - (1211,44,2,2866,'4.99','2005-06-20 00:01:36','2006-02-15 22:12:39'), - (1212,44,2,4390,'0.99','2005-07-07 20:59:06','2006-02-15 22:12:39'), - (1213,44,2,4723,'9.99','2005-07-08 12:44:59','2006-02-15 22:12:39'), - (1214,44,1,5551,'3.99','2005-07-10 03:01:09','2006-02-15 22:12:39'), - (1215,44,1,5787,'8.99','2005-07-10 14:08:49','2006-02-15 22:12:39'), - (1216,44,2,5849,'6.99','2005-07-10 17:32:33','2006-02-15 22:12:39'), - (1217,44,2,5909,'4.99','2005-07-10 20:46:13','2006-02-15 22:12:39'), - (1218,44,1,7514,'0.99','2005-07-27 20:51:49','2006-02-15 22:12:39'), - (1219,44,2,7526,'6.99','2005-07-27 21:13:47','2006-02-15 22:12:39'), - (1220,44,2,8775,'4.99','2005-07-29 20:05:38','2006-02-15 22:12:39'), - (1221,44,1,8866,'4.99','2005-07-29 23:58:19','2006-02-15 22:12:39'), - (1222,44,1,11364,'2.99','2005-08-02 17:53:36','2006-02-15 22:12:39'), - (1223,44,2,12345,'3.99','2005-08-18 07:16:58','2006-02-15 22:12:39'), - (1224,44,1,12504,'4.99','2005-08-18 13:17:07','2006-02-15 22:12:39'), - (1225,44,1,12790,'6.99','2005-08-19 00:16:54','2006-02-15 22:12:39'), - (1226,44,2,12982,'4.99','2005-08-19 07:06:34','2006-02-15 22:12:39'), - (1227,44,2,15054,'2.99','2005-08-22 10:14:33','2006-02-15 22:12:39'), - (1228,44,2,13428,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:39'), - (1229,45,2,277,'2.99','2005-05-26 17:32:11','2006-02-15 22:12:39'), - (1230,45,1,1806,'4.99','2005-06-16 20:41:57','2006-02-15 22:12:39'), - (1231,45,2,1979,'2.99','2005-06-17 09:45:30','2006-02-15 22:12:39'), - (1232,45,2,2722,'4.99','2005-06-19 14:55:17','2006-02-15 22:12:39'), - (1233,45,1,3391,'3.99','2005-06-21 15:11:02','2006-02-15 22:12:39'), - (1234,45,2,3444,'0.99','2005-06-21 20:39:39','2006-02-15 22:12:39'), - (1235,45,1,4843,'0.99','2005-07-08 18:27:28','2006-02-15 22:12:39'), - (1236,45,1,5181,'6.99','2005-07-09 10:07:27','2006-02-15 22:12:39'), - (1237,45,1,5405,'7.99','2005-07-09 20:11:49','2006-02-15 22:12:39'), - (1238,45,1,5637,'0.99','2005-07-10 06:31:37','2006-02-15 22:12:39'), - (1239,45,2,6001,'0.99','2005-07-11 01:24:44','2006-02-15 22:12:39'), - (1240,45,2,6002,'2.99','2005-07-11 01:27:49','2006-02-15 22:12:39'), - (1241,45,1,6966,'9.99','2005-07-27 00:15:35','2006-02-15 22:12:39'), - (1242,45,1,7436,'2.99','2005-07-27 17:39:12','2006-02-15 22:12:39'), - (1243,45,1,7961,'3.99','2005-07-28 13:47:21','2006-02-15 22:12:39'), - (1244,45,1,10507,'2.99','2005-08-01 11:22:20','2006-02-15 22:12:39'), - (1245,45,2,10878,'6.99','2005-08-02 00:33:12','2006-02-15 22:12:39'), - (1246,45,1,11004,'8.99','2005-08-02 05:04:18','2006-02-15 22:12:39'), - (1247,45,1,11029,'4.99','2005-08-02 05:51:10','2006-02-15 22:12:40'), - (1248,45,2,11483,'2.99','2005-08-02 22:28:22','2006-02-15 22:12:40'), - (1249,45,2,11488,'3.99','2005-08-02 22:35:15','2006-02-15 22:12:40'), - (1250,45,1,11725,'2.99','2005-08-17 08:09:00','2006-02-15 22:12:40'), - (1251,45,1,13340,'3.99','2005-08-19 20:18:39','2006-02-15 22:12:40'), - (1252,45,2,13394,'4.99','2005-08-19 22:05:19','2006-02-15 22:12:40'), - (1253,45,1,14576,'6.99','2005-08-21 16:52:03','2006-02-15 22:12:40'), - (1254,45,1,15812,'10.99','2005-08-23 14:47:26','2006-02-15 22:12:40'), - (1255,45,2,16037,'7.99','2005-08-23 22:13:04','2006-02-15 22:12:40'), - (1256,46,2,401,'2.99','2005-05-27 12:57:55','2006-02-15 22:12:40'), - (1257,46,2,432,'4.99','2005-05-27 16:40:29','2006-02-15 22:12:40'), - (1258,46,1,938,'2.99','2005-05-30 14:47:31','2006-02-15 22:12:40'), - (1259,46,1,1166,'4.99','2005-06-14 23:17:03','2006-02-15 22:12:40'), - (1260,46,2,1214,'4.99','2005-06-15 03:18:40','2006-02-15 22:12:40'), - (1261,46,2,2144,'0.99','2005-06-17 22:05:40','2006-02-15 22:12:40'), - (1262,46,1,2203,'2.99','2005-06-18 02:10:42','2006-02-15 22:12:40'), - (1263,46,2,2965,'8.99','2005-06-20 07:33:38','2006-02-15 22:12:40'), - (1264,46,2,2975,'4.99','2005-06-20 08:06:18','2006-02-15 22:12:40'), - (1265,46,2,3439,'4.99','2005-06-21 19:36:15','2006-02-15 22:12:40'), - (1266,46,2,3855,'2.99','2005-07-06 17:03:48','2006-02-15 22:12:40'), - (1267,46,1,3916,'4.99','2005-07-06 20:18:50','2006-02-15 22:12:40'), - (1268,46,2,5698,'4.99','2005-07-10 09:47:00','2006-02-15 22:12:40'), - (1269,46,1,7336,'0.99','2005-07-27 14:11:45','2006-02-15 22:12:40'), - (1270,46,2,8152,'3.99','2005-07-28 20:53:05','2006-02-15 22:12:40'), - (1271,46,2,9045,'8.99','2005-07-30 06:36:57','2006-02-15 22:12:40'), - (1272,46,2,9806,'2.99','2005-07-31 11:13:49','2006-02-15 22:12:40'), - (1273,46,1,10088,'2.99','2005-07-31 20:16:21','2006-02-15 22:12:40'), - (1274,46,2,10428,'4.99','2005-08-01 08:30:11','2006-02-15 22:12:40'), - (1275,46,1,10803,'4.99','2005-08-01 22:22:07','2006-02-15 22:12:40'), - (1276,46,1,10827,'5.99','2005-08-01 23:13:00','2006-02-15 22:12:40'), - (1277,46,1,11721,'0.99','2005-08-17 07:49:17','2006-02-15 22:12:40'), - (1278,46,2,12095,'4.99','2005-08-17 22:32:37','2006-02-15 22:12:40'), - (1279,46,2,12238,'2.99','2005-08-18 03:25:08','2006-02-15 22:12:40'), - (1280,46,2,12280,'4.99','2005-08-18 04:49:27','2006-02-15 22:12:40'), - (1281,46,1,12298,'2.99','2005-08-18 05:30:31','2006-02-15 22:12:40'), - (1282,46,2,12455,'4.99','2005-08-18 11:19:47','2006-02-15 22:12:40'), - (1283,46,1,13226,'0.99','2005-08-19 16:05:36','2006-02-15 22:12:40'), - (1284,46,2,14144,'4.99','2005-08-21 02:10:57','2006-02-15 22:12:40'), - (1285,46,2,14528,'6.99','2005-08-21 15:08:05','2006-02-15 22:12:40'), - (1286,46,1,14940,'4.99','2005-08-22 05:54:03','2006-02-15 22:12:40'), - (1287,46,1,15438,'2.99','2005-08-23 00:31:57','2006-02-15 22:12:40'), - (1288,46,1,15708,'0.99','2005-08-23 10:35:51','2006-02-15 22:12:40'), - (1289,46,1,15758,'5.99','2005-08-23 12:47:26','2006-02-15 22:12:40'), - (1290,47,2,175,'3.99','2005-05-26 03:46:26','2006-02-15 22:12:40'), - (1291,47,2,207,'4.99','2005-05-26 08:04:38','2006-02-15 22:12:40'), - (1292,47,1,300,'6.99','2005-05-26 20:57:00','2006-02-15 22:12:40'), - (1293,47,1,1882,'4.99','2005-06-17 03:17:21','2006-02-15 22:12:40'), - (1294,47,1,2307,'6.99','2005-06-18 08:34:59','2006-02-15 22:12:40'), - (1295,47,2,3320,'5.99','2005-06-21 08:29:41','2006-02-15 22:12:40'), - (1296,47,1,3631,'4.99','2005-07-06 06:36:53','2006-02-15 22:12:40'), - (1297,47,2,4064,'5.99','2005-07-07 04:29:20','2006-02-15 22:12:40'), - (1298,47,1,5174,'0.99','2005-07-09 09:31:59','2006-02-15 22:12:40'), - (1299,47,2,6153,'9.99','2005-07-11 09:31:04','2006-02-15 22:12:40'), - (1300,47,2,6164,'0.99','2005-07-11 10:16:23','2006-02-15 22:12:40'), - (1301,47,1,6337,'3.99','2005-07-11 19:30:47','2006-02-15 22:12:40'), - (1302,47,2,8159,'4.99','2005-07-28 21:09:28','2006-02-15 22:12:40'), - (1303,47,2,8402,'6.99','2005-07-29 06:25:45','2006-02-15 22:12:40'), - (1304,47,1,8863,'3.99','2005-07-29 23:52:01','2006-02-15 22:12:40'), - (1305,47,2,9274,'4.99','2005-07-30 15:07:04','2006-02-15 22:12:40'), - (1306,47,1,11126,'0.99','2005-08-02 08:59:04','2006-02-15 22:12:40'), - (1307,47,2,11477,'5.99','2005-08-02 22:09:01','2006-02-15 22:12:40'), - (1308,47,1,12215,'7.99','2005-08-18 02:35:39','2006-02-15 22:12:40'), - (1309,47,2,12274,'7.99','2005-08-18 04:41:47','2006-02-15 22:12:40'), - (1310,47,1,14397,'0.99','2005-08-21 10:25:56','2006-02-15 22:12:40'), - (1311,47,2,15846,'2.99','2005-08-23 15:39:18','2006-02-15 22:12:40'), - (1312,48,2,72,'0.99','2005-05-25 10:52:13','2006-02-15 22:12:40'), - (1313,48,1,297,'2.99','2005-05-26 20:48:48','2006-02-15 22:12:40'), - (1314,48,1,390,'4.99','2005-05-27 11:02:26','2006-02-15 22:12:40'), - (1315,48,2,1689,'9.99','2005-06-16 12:18:41','2006-02-15 22:12:40'), - (1316,48,2,2822,'0.99','2005-06-19 20:29:24','2006-02-15 22:12:40'), - (1317,48,2,3758,'4.99','2005-07-06 12:43:11','2006-02-15 22:12:40'), - (1318,48,1,4367,'2.99','2005-07-07 19:52:01','2006-02-15 22:12:40'), - (1319,48,2,5148,'6.99','2005-07-09 08:22:46','2006-02-15 22:12:40'), - (1320,48,2,6498,'3.99','2005-07-12 03:05:38','2006-02-15 22:12:40'), - (1321,48,1,7920,'2.99','2005-07-28 12:01:19','2006-02-15 22:12:40'), - (1322,48,1,8716,'6.99','2005-07-29 17:39:09','2006-02-15 22:12:40'), - (1323,48,1,9402,'7.99','2005-07-30 20:18:27','2006-02-15 22:12:40'), - (1324,48,2,9742,'7.99','2005-07-31 09:10:20','2006-02-15 22:12:40'), - (1325,48,2,10276,'2.99','2005-08-01 03:22:23','2006-02-15 22:12:40'), - (1326,48,2,14450,'1.99','2005-08-21 12:21:25','2006-02-15 22:12:40'), - (1327,48,2,14536,'2.99','2005-08-21 15:22:50','2006-02-15 22:12:40'), - (1328,48,1,15228,'3.99','2005-08-22 17:27:23','2006-02-15 22:12:40'), - (1329,49,2,96,'1.99','2005-05-25 16:32:19','2006-02-15 22:12:40'), - (1330,49,1,239,'3.99','2005-05-26 12:30:26','2006-02-15 22:12:40'), - (1331,49,2,846,'2.99','2005-05-30 01:17:45','2006-02-15 22:12:40'), - (1332,49,2,1010,'4.99','2005-05-31 01:57:32','2006-02-15 22:12:40'), - (1333,49,1,1164,'0.99','2005-06-14 23:16:26','2006-02-15 22:12:40'), - (1334,49,2,1237,'9.99','2005-06-15 04:44:10','2006-02-15 22:12:40'), - (1335,49,2,1688,'0.99','2005-06-16 12:11:20','2006-02-15 22:12:40'), - (1336,49,2,1777,'6.99','2005-06-16 18:52:12','2006-02-15 22:12:40'), - (1337,49,2,3235,'4.99','2005-06-21 02:46:17','2006-02-15 22:12:40'), - (1338,49,2,3575,'4.99','2005-07-06 03:36:19','2006-02-15 22:12:40'), - (1339,49,2,3615,'0.99','2005-07-06 05:47:47','2006-02-15 22:12:40'), - (1340,49,1,5491,'2.99','2005-07-10 00:09:45','2006-02-15 22:12:41'), - (1341,49,1,6214,'4.99','2005-07-11 12:49:48','2006-02-15 22:12:41'), - (1342,49,1,6279,'6.99','2005-07-11 16:26:07','2006-02-15 22:12:41'), - (1343,49,1,6521,'7.99','2005-07-12 04:06:11','2006-02-15 22:12:41'), - (1344,49,2,6759,'4.99','2005-07-12 15:14:48','2006-02-15 22:12:41'), - (1345,49,2,7209,'4.99','2005-07-27 09:16:53','2006-02-15 22:12:41'), - (1346,49,2,7742,'8.99','2005-07-28 05:33:16','2006-02-15 22:12:41'), - (1347,49,2,8553,'10.99','2005-07-29 11:15:36','2006-02-15 22:12:41'), - (1348,49,2,9006,'0.99','2005-07-30 05:06:32','2006-02-15 22:12:41'), - (1349,49,1,9851,'4.99','2005-07-31 12:50:24','2006-02-15 22:12:41'), - (1350,49,1,10144,'4.99','2005-07-31 22:13:52','2006-02-15 22:12:41'), - (1351,49,1,10266,'0.99','2005-08-01 03:05:59','2006-02-15 22:12:41'), - (1352,49,1,10588,'2.99','2005-08-01 14:10:21','2006-02-15 22:12:41'), - (1353,49,1,10814,'2.99','2005-08-01 22:43:12','2006-02-15 22:12:41'), - (1354,49,2,14168,'5.99','2005-08-21 03:00:03','2006-02-15 22:12:41'), - (1355,49,1,14627,'6.99','2005-08-21 18:35:54','2006-02-15 22:12:41'), - (1356,49,1,14676,'2.99','2005-08-21 20:02:18','2006-02-15 22:12:41'), - (1357,50,1,763,'4.99','2005-05-29 11:32:15','2006-02-15 22:12:41'), - (1358,50,1,794,'4.99','2005-05-29 16:44:11','2006-02-15 22:12:41'), - (1359,50,1,905,'4.99','2005-05-30 10:25:00','2006-02-15 22:12:41'), - (1360,50,1,1029,'4.99','2005-05-31 03:52:02','2006-02-15 22:12:41'), - (1361,50,2,1136,'4.99','2005-05-31 19:19:36','2006-02-15 22:12:41'), - (1362,50,1,1223,'2.99','2005-06-15 03:38:53','2006-02-15 22:12:41'), - (1363,50,1,1785,'4.99','2005-06-16 19:27:12','2006-02-15 22:12:41'), - (1364,50,2,3000,'0.99','2005-06-20 09:32:33','2006-02-15 22:12:41'), - (1365,50,2,3169,'2.99','2005-06-20 21:55:54','2006-02-15 22:12:41'), - (1366,50,2,4149,'2.99','2005-07-07 08:40:17','2006-02-15 22:12:41'), - (1367,50,2,5290,'4.99','2005-07-09 15:14:47','2006-02-15 22:12:41'), - (1368,50,2,5641,'4.99','2005-07-10 06:43:43','2006-02-15 22:12:41'), - (1369,50,2,5681,'9.99','2005-07-10 08:48:39','2006-02-15 22:12:41'), - (1370,50,1,5928,'6.99','2005-07-10 21:58:30','2006-02-15 22:12:41'), - (1371,50,2,6634,'0.99','2005-07-12 09:37:18','2006-02-15 22:12:41'), - (1372,50,1,6667,'8.99','2005-07-12 11:36:22','2006-02-15 22:12:41'), - (1373,50,1,7383,'4.99','2005-07-27 15:46:53','2006-02-15 22:12:41'), - (1374,50,1,8089,'0.99','2005-07-28 18:26:47','2006-02-15 22:12:41'), - (1375,50,1,8261,'0.99','2005-07-29 01:11:05','2006-02-15 22:12:41'), - (1376,50,1,8619,'5.99','2005-07-29 13:50:08','2006-02-15 22:12:41'), - (1377,50,2,9179,'0.99','2005-07-30 12:02:41','2006-02-15 22:12:41'), - (1378,50,1,9615,'4.99','2005-07-31 03:59:56','2006-02-15 22:12:41'), - (1379,50,2,9691,'10.99','2005-07-31 07:09:55','2006-02-15 22:12:41'), - (1380,50,2,10046,'2.99','2005-07-31 19:07:11','2006-02-15 22:12:41'), - (1381,50,2,10165,'0.99','2005-07-31 23:21:23','2006-02-15 22:12:41'), - (1382,50,2,10180,'6.99','2005-07-31 23:57:43','2006-02-15 22:12:41'), - (1383,50,2,10261,'4.99','2005-08-01 02:58:27','2006-02-15 22:12:41'), - (1384,50,2,10485,'7.99','2005-08-01 10:20:34','2006-02-15 22:12:41'), - (1385,50,2,11053,'3.99','2005-08-02 06:27:13','2006-02-15 22:12:41'), - (1386,50,1,12766,'6.99','2005-08-18 23:25:20','2006-02-15 22:12:41'), - (1387,50,2,13136,'7.99','2005-08-19 12:24:23','2006-02-15 22:12:41'), - (1388,50,1,14054,'4.99','2005-08-20 22:17:01','2006-02-15 22:12:41'), - (1389,50,2,15138,'2.99','2005-08-22 13:36:30','2006-02-15 22:12:41'), - (1390,50,2,15388,'6.99','2005-08-22 22:49:23','2006-02-15 22:12:41'), - (1391,50,1,16015,'4.99','2005-08-23 21:25:03','2006-02-15 22:12:41'), - (1392,51,2,119,'4.99','2005-05-25 19:37:02','2006-02-15 22:12:41'), - (1393,51,1,661,'4.99','2005-05-28 21:01:25','2006-02-15 22:12:41'), - (1394,51,2,1028,'4.99','2005-05-31 03:48:05','2006-02-15 22:12:41'), - (1395,51,2,1373,'1.99','2005-06-15 14:48:04','2006-02-15 22:12:41'), - (1396,51,1,1477,'0.99','2005-06-15 21:11:18','2006-02-15 22:12:41'), - (1397,51,1,3525,'9.99','2005-07-06 01:02:39','2006-02-15 22:12:41'), - (1398,51,1,5230,'2.99','2005-07-09 12:30:23','2006-02-15 22:12:41'), - (1399,51,2,5304,'5.99','2005-07-09 15:48:06','2006-02-15 22:12:41'), - (1400,51,1,5473,'7.99','2005-07-09 23:19:11','2006-02-15 22:12:41'), - (1401,51,1,5606,'4.99','2005-07-10 05:07:55','2006-02-15 22:12:41'), - (1402,51,1,7207,'5.99','2005-07-27 09:13:26','2006-02-15 22:12:41'), - (1403,51,1,7398,'6.99','2005-07-27 16:07:22','2006-02-15 22:12:41'), - (1404,51,1,7636,'5.99','2005-07-28 01:08:36','2006-02-15 22:12:41'), - (1405,51,1,8495,'4.99','2005-07-29 09:05:06','2006-02-15 22:12:41'), - (1406,51,1,8693,'0.99','2005-07-29 16:44:13','2006-02-15 22:12:41'), - (1407,51,1,8880,'0.99','2005-07-30 00:16:55','2006-02-15 22:12:41'), - (1408,51,2,9649,'0.99','2005-07-31 05:46:54','2006-02-15 22:12:41'), - (1409,51,2,10244,'4.99','2005-08-01 02:20:01','2006-02-15 22:12:41'), - (1410,51,1,10780,'2.99','2005-08-01 21:14:24','2006-02-15 22:12:41'), - (1411,51,1,10894,'0.99','2005-08-02 01:12:35','2006-02-15 22:12:41'), - (1412,51,1,11302,'2.99','2005-08-02 15:38:03','2006-02-15 22:12:41'), - (1413,51,2,11685,'4.99','2005-08-17 06:39:16','2006-02-15 22:12:41'), - (1414,51,2,11751,'6.99','2005-08-17 09:07:56','2006-02-15 22:12:41'), - (1415,51,1,12184,'0.99','2005-08-18 01:36:00','2006-02-15 22:12:41'), - (1416,51,1,12725,'4.99','2005-08-18 21:43:09','2006-02-15 22:12:41'), - (1417,51,2,13098,'2.99','2005-08-19 10:51:59','2006-02-15 22:12:41'), - (1418,51,1,13302,'2.99','2005-08-19 18:54:26','2006-02-15 22:12:41'), - (1419,51,1,13868,'0.99','2005-08-20 15:06:26','2006-02-15 22:12:41'), - (1420,51,2,13882,'2.99','2005-08-20 15:23:26','2006-02-15 22:12:41'), - (1421,51,2,14221,'6.99','2005-08-21 04:49:41','2006-02-15 22:12:41'), - (1422,51,2,14512,'4.99','2005-08-21 14:47:09','2006-02-15 22:12:41'), - (1423,51,1,14617,'4.99','2005-08-21 18:07:40','2006-02-15 22:12:41'), - (1424,51,1,14903,'4.99','2005-08-22 04:31:50','2006-02-15 22:12:41'), - (1425,52,1,874,'0.99','2005-05-30 05:36:21','2006-02-15 22:12:41'), - (1426,52,1,1196,'4.99','2005-06-15 01:38:31','2006-02-15 22:12:41'), - (1427,52,2,2232,'0.99','2005-06-18 03:54:31','2006-02-15 22:12:41'), - (1428,52,1,2862,'2.99','2005-06-19 23:47:24','2006-02-15 22:12:41'), - (1429,52,2,3196,'4.99','2005-06-21 00:02:28','2006-02-15 22:12:42'), - (1430,52,1,3997,'1.99','2005-07-06 23:46:52','2006-02-15 22:12:42'), - (1431,52,1,5308,'0.99','2005-07-09 15:58:38','2006-02-15 22:12:42'), - (1432,52,2,5313,'3.99','2005-07-09 16:04:45','2006-02-15 22:12:42'), - (1433,52,1,5607,'2.99','2005-07-10 05:08:10','2006-02-15 22:12:42'), - (1434,52,1,6394,'7.99','2005-07-11 22:29:15','2006-02-15 22:12:42'), - (1435,52,2,7284,'0.99','2005-07-27 12:12:04','2006-02-15 22:12:42'), - (1436,52,2,7438,'5.99','2005-07-27 17:40:40','2006-02-15 22:12:42'), - (1437,52,2,7627,'4.99','2005-07-28 00:56:47','2006-02-15 22:12:42'), - (1438,52,1,8686,'4.99','2005-07-29 16:17:49','2006-02-15 22:12:42'), - (1439,52,1,9029,'4.99','2005-07-30 06:03:11','2006-02-15 22:12:42'), - (1440,52,2,9749,'3.99','2005-07-31 09:18:33','2006-02-15 22:12:42'), - (1441,52,2,9797,'4.99','2005-07-31 10:53:44','2006-02-15 22:12:42'), - (1442,52,2,10591,'0.99','2005-08-01 14:12:29','2006-02-15 22:12:42'), - (1443,52,1,10635,'0.99','2005-08-01 15:37:58','2006-02-15 22:12:42'), - (1444,52,1,11068,'0.99','2005-08-02 07:08:07','2006-02-15 22:12:42'), - (1445,52,1,11731,'3.99','2005-08-17 08:24:35','2006-02-15 22:12:42'), - (1446,52,2,12200,'2.99','2005-08-18 02:12:33','2006-02-15 22:12:42'), - (1447,52,2,12520,'0.99','2005-08-18 13:42:45','2006-02-15 22:12:42'), - (1448,52,2,13090,'5.99','2005-08-19 10:39:54','2006-02-15 22:12:42'), - (1449,52,2,14820,'2.99','2005-08-22 01:18:37','2006-02-15 22:12:42'), - (1450,52,1,14822,'5.99','2005-08-22 01:21:14','2006-02-15 22:12:42'), - (1451,52,2,14961,'6.99','2005-08-22 06:35:50','2006-02-15 22:12:42'), - (1452,52,2,15891,'5.99','2005-08-23 17:00:12','2006-02-15 22:12:42'), - (1453,52,1,12001,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:42'), - (1454,53,1,88,'3.99','2005-05-25 14:13:54','2006-02-15 22:12:42'), - (1455,53,1,378,'2.99','2005-05-27 09:23:22','2006-02-15 22:12:42'), - (1456,53,1,751,'0.99','2005-05-29 09:55:43','2006-02-15 22:12:42'), - (1457,53,2,783,'5.99','2005-05-29 14:41:18','2006-02-15 22:12:42'), - (1458,53,2,856,'9.99','2005-05-30 02:01:21','2006-02-15 22:12:42'), - (1459,53,1,1107,'2.99','2005-05-31 15:04:05','2006-02-15 22:12:42'), - (1460,53,1,1964,'0.99','2005-06-17 09:10:09','2006-02-15 22:12:42'), - (1461,53,1,2388,'2.99','2005-06-18 15:26:30','2006-02-15 22:12:42'), - (1462,53,1,2903,'2.99','2005-06-20 02:49:01','2006-02-15 22:12:42'), - (1463,53,2,3140,'2.99','2005-06-20 19:47:12','2006-02-15 22:12:42'), - (1464,53,2,3244,'0.99','2005-06-21 03:01:10','2006-02-15 22:12:42'), - (1465,53,2,3591,'2.99','2005-07-06 04:37:10','2006-02-15 22:12:42'), - (1466,53,2,3898,'4.99','2005-07-06 19:12:37','2006-02-15 22:12:42'), - (1467,53,2,5185,'2.99','2005-07-09 10:14:39','2006-02-15 22:12:42'), - (1468,53,2,7466,'2.99','2005-07-27 18:51:17','2006-02-15 22:12:42'), - (1469,53,1,7699,'4.99','2005-07-28 03:52:21','2006-02-15 22:12:42'), - (1470,53,1,9343,'4.99','2005-07-30 18:13:13','2006-02-15 22:12:42'), - (1471,53,1,9928,'7.99','2005-07-31 15:13:57','2006-02-15 22:12:42'), - (1472,53,1,10594,'3.99','2005-08-01 14:14:59','2006-02-15 22:12:42'), - (1473,53,1,12054,'5.99','2005-08-17 20:59:56','2006-02-15 22:12:42'), - (1474,53,1,12580,'2.99','2005-08-18 15:49:08','2006-02-15 22:12:42'), - (1475,53,1,13049,'5.99','2005-08-19 09:25:40','2006-02-15 22:12:42'), - (1476,53,2,13789,'2.99','2005-08-20 12:16:38','2006-02-15 22:12:42'), - (1477,53,1,14061,'2.99','2005-08-20 22:32:11','2006-02-15 22:12:42'), - (1478,53,2,14091,'0.99','2005-08-21 00:11:17','2006-02-15 22:12:42'), - (1479,53,2,14119,'5.99','2005-08-21 01:15:59','2006-02-15 22:12:42'), - (1480,53,1,14671,'4.99','2005-08-21 19:59:30','2006-02-15 22:12:42'), - (1481,53,2,14811,'0.99','2005-08-22 01:09:04','2006-02-15 22:12:42'), - (1482,53,2,11657,'7.98','2006-02-14 15:16:03','2006-02-15 22:12:42'), - (1483,53,1,14137,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:42'), - (1484,54,2,198,'4.99','2005-05-26 07:03:49','2006-02-15 22:12:42'), - (1485,54,2,441,'4.99','2005-05-27 18:11:05','2006-02-15 22:12:42'), - (1486,54,2,545,'3.99','2005-05-28 07:10:20','2006-02-15 22:12:42'), - (1487,54,1,1556,'4.99','2005-06-16 02:19:02','2006-02-15 22:12:42'), - (1488,54,1,1571,'2.99','2005-06-16 03:22:00','2006-02-15 22:12:42'), - (1489,54,2,2323,'6.99','2005-06-18 09:55:02','2006-02-15 22:12:42'), - (1490,54,1,2647,'4.99','2005-06-19 09:57:56','2006-02-15 22:12:42'), - (1491,54,2,4657,'4.99','2005-07-08 09:51:02','2006-02-15 22:12:42'), - (1492,54,2,5055,'1.99','2005-07-09 04:05:28','2006-02-15 22:12:42'), - (1493,54,1,5929,'2.99','2005-07-10 21:59:29','2006-02-15 22:12:42'), - (1494,54,1,5992,'2.99','2005-07-11 01:06:21','2006-02-15 22:12:42'), - (1495,54,1,6338,'7.99','2005-07-11 19:39:41','2006-02-15 22:12:42'), - (1496,54,2,6560,'2.99','2005-07-12 05:22:06','2006-02-15 22:12:42'), - (1497,54,1,6813,'0.99','2005-07-12 18:03:50','2006-02-15 22:12:42'), - (1498,54,2,8992,'4.99','2005-07-30 04:44:18','2006-02-15 22:12:42'), - (1499,54,2,10489,'5.99','2005-08-01 10:27:42','2006-02-15 22:12:42'), - (1500,54,2,10882,'5.99','2005-08-02 00:47:16','2006-02-15 22:12:42'), - (1501,54,1,10956,'4.99','2005-08-02 03:33:14','2006-02-15 22:12:42'), - (1502,54,1,11182,'4.99','2005-08-02 10:55:14','2006-02-15 22:12:42'), - (1503,54,2,11887,'2.99','2005-08-17 15:03:13','2006-02-15 22:12:42'), - (1504,54,1,12526,'2.99','2005-08-18 13:48:43','2006-02-15 22:12:42'), - (1505,54,2,12775,'5.99','2005-08-18 23:35:56','2006-02-15 22:12:43'), - (1506,54,1,12811,'4.99','2005-08-19 00:51:28','2006-02-15 22:12:43'), - (1507,54,2,12872,'0.99','2005-08-19 02:57:37','2006-02-15 22:12:43'), - (1508,54,2,13315,'2.99','2005-08-19 19:16:18','2006-02-15 22:12:43'), - (1509,54,1,13890,'0.99','2005-08-20 15:41:00','2006-02-15 22:12:43'), - (1510,54,1,14215,'4.99','2005-08-21 04:34:11','2006-02-15 22:12:43'), - (1511,54,1,15226,'10.99','2005-08-22 17:20:17','2006-02-15 22:12:43'), - (1512,54,1,15567,'4.99','2005-08-23 05:20:36','2006-02-15 22:12:43'), - (1513,55,1,555,'4.99','2005-05-28 08:31:14','2006-02-15 22:12:43'), - (1514,55,1,1027,'9.99','2005-05-31 03:46:19','2006-02-15 22:12:43'), - (1515,55,1,1048,'0.99','2005-05-31 06:49:53','2006-02-15 22:12:43'), - (1516,55,2,1825,'2.99','2005-06-16 21:53:05','2006-02-15 22:12:43'), - (1517,55,2,2062,'2.99','2005-06-17 15:56:43','2006-02-15 22:12:43'), - (1518,55,1,2904,'2.99','2005-06-20 02:54:06','2006-02-15 22:12:43'), - (1519,55,1,2976,'4.99','2005-06-20 08:09:11','2006-02-15 22:12:43'), - (1520,55,1,3149,'4.99','2005-06-20 20:34:55','2006-02-15 22:12:43'), - (1521,55,1,4671,'4.99','2005-07-08 10:15:32','2006-02-15 22:12:43'), - (1522,55,2,6314,'7.99','2005-07-11 18:32:44','2006-02-15 22:12:43'), - (1523,55,2,7050,'4.99','2005-07-27 03:33:17','2006-02-15 22:12:43'), - (1524,55,2,8288,'6.99','2005-07-29 02:04:22','2006-02-15 22:12:43'), - (1525,55,1,9302,'2.99','2005-07-30 16:34:57','2006-02-15 22:12:43'), - (1526,55,2,9596,'5.99','2005-07-31 03:28:47','2006-02-15 22:12:43'), - (1527,55,2,9798,'2.99','2005-07-31 10:55:18','2006-02-15 22:12:43'), - (1528,55,2,11287,'1.99','2005-08-02 14:49:51','2006-02-15 22:12:43'), - (1529,55,1,12776,'4.99','2005-08-18 23:37:33','2006-02-15 22:12:43'), - (1530,55,1,12808,'4.99','2005-08-19 00:40:41','2006-02-15 22:12:43'), - (1531,55,2,12972,'1.99','2005-08-19 06:43:28','2006-02-15 22:12:43'), - (1532,55,1,13345,'6.99','2005-08-19 20:25:24','2006-02-15 22:12:43'), - (1533,55,1,14667,'2.99','2005-08-21 19:51:11','2006-02-15 22:12:43'), - (1534,55,1,15296,'4.99','2005-08-22 19:37:20','2006-02-15 22:12:43'), - (1535,56,1,130,'3.99','2005-05-25 21:21:56','2006-02-15 22:12:43'), - (1536,56,1,341,'5.99','2005-05-27 04:01:42','2006-02-15 22:12:43'), - (1537,56,1,496,'2.99','2005-05-28 00:43:41','2006-02-15 22:12:43'), - (1538,56,1,569,'6.99','2005-05-28 10:12:41','2006-02-15 22:12:43'), - (1539,56,2,1795,'6.99','2005-06-16 20:09:01','2006-02-15 22:12:43'), - (1540,56,1,2140,'0.99','2005-06-17 21:40:29','2006-02-15 22:12:43'), - (1541,56,1,2485,'4.99','2005-06-18 21:26:03','2006-02-15 22:12:43'), - (1542,56,1,2989,'0.99','2005-06-20 08:59:37','2006-02-15 22:12:43'), - (1543,56,1,3718,'7.99','2005-07-06 10:57:56','2006-02-15 22:12:43'), - (1544,56,2,3771,'2.99','2005-07-06 13:19:34','2006-02-15 22:12:43'), - (1545,56,1,4097,'3.99','2005-07-07 06:10:55','2006-02-15 22:12:43'), - (1546,56,2,4702,'4.99','2005-07-08 11:41:36','2006-02-15 22:12:43'), - (1547,56,1,5142,'4.99','2005-07-09 08:05:23','2006-02-15 22:12:43'), - (1548,56,1,7385,'2.99','2005-07-27 15:49:46','2006-02-15 22:12:43'), - (1549,56,1,7696,'7.99','2005-07-28 03:41:35','2006-02-15 22:12:43'), - (1550,56,2,7942,'0.99','2005-07-28 12:49:44','2006-02-15 22:12:43'), - (1551,56,1,8285,'0.99','2005-07-29 02:00:18','2006-02-15 22:12:43'), - (1552,56,2,10356,'6.99','2005-08-01 05:49:17','2006-02-15 22:12:43'), - (1553,56,2,10678,'0.99','2005-08-01 17:26:24','2006-02-15 22:12:43'), - (1554,56,1,10946,'4.99','2005-08-02 03:20:39','2006-02-15 22:12:43'), - (1555,56,1,11358,'5.99','2005-08-02 17:45:02','2006-02-15 22:12:43'), - (1556,56,1,11656,'4.99','2005-08-17 05:11:09','2006-02-15 22:12:43'), - (1557,56,2,12537,'1.99','2005-08-18 14:06:39','2006-02-15 22:12:43'), - (1558,56,2,12713,'4.99','2005-08-18 21:07:28','2006-02-15 22:12:43'), - (1559,56,2,13560,'8.99','2005-08-20 04:17:16','2006-02-15 22:12:43'), - (1560,56,1,13769,'5.99','2005-08-20 11:43:52','2006-02-15 22:12:43'), - (1561,56,2,14291,'3.99','2005-08-21 07:03:05','2006-02-15 22:12:43'), - (1562,56,2,14534,'0.99','2005-08-21 15:16:29','2006-02-15 22:12:43'), - (1563,56,2,15702,'7.99','2005-08-23 10:23:28','2006-02-15 22:12:43'), - (1564,56,2,15714,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:43'), - (1565,57,2,152,'9.99','2005-05-26 00:41:10','2006-02-15 22:12:43'), - (1566,57,2,943,'4.99','2005-05-30 15:20:19','2006-02-15 22:12:43'), - (1567,57,1,2058,'5.99','2005-06-17 15:34:41','2006-02-15 22:12:43'), - (1568,57,1,2105,'0.99','2005-06-17 19:15:45','2006-02-15 22:12:43'), - (1569,57,1,2360,'4.99','2005-06-18 13:11:13','2006-02-15 22:12:43'), - (1570,57,2,2910,'7.99','2005-06-20 03:31:18','2006-02-15 22:12:43'), - (1571,57,1,3357,'0.99','2005-06-21 11:55:42','2006-02-15 22:12:43'), - (1572,57,1,3727,'4.99','2005-07-06 11:16:43','2006-02-15 22:12:43'), - (1573,57,2,4226,'4.99','2005-07-07 12:37:56','2006-02-15 22:12:43'), - (1574,57,1,5060,'4.99','2005-07-09 04:28:03','2006-02-15 22:12:43'), - (1575,57,1,5694,'0.99','2005-07-10 09:40:38','2006-02-15 22:12:43'), - (1576,57,2,5948,'2.99','2005-07-10 23:12:08','2006-02-15 22:12:43'), - (1577,57,2,6482,'4.99','2005-07-12 01:50:21','2006-02-15 22:12:43'), - (1578,57,1,6494,'1.99','2005-07-12 02:42:51','2006-02-15 22:12:43'), - (1579,57,2,6649,'4.99','2005-07-12 10:51:09','2006-02-15 22:12:43'), - (1580,57,2,8249,'5.99','2005-07-29 00:48:44','2006-02-15 22:12:43'), - (1581,57,1,9086,'0.99','2005-07-30 08:18:46','2006-02-15 22:12:43'), - (1582,57,2,9136,'0.99','2005-07-30 10:07:20','2006-02-15 22:12:43'), - (1583,57,1,9211,'1.99','2005-07-30 12:59:45','2006-02-15 22:12:43'), - (1584,57,1,9703,'0.99','2005-07-31 07:34:52','2006-02-15 22:12:43'), - (1585,57,2,9812,'2.99','2005-07-31 11:28:07','2006-02-15 22:12:43'), - (1586,57,2,10169,'4.99','2005-07-31 23:27:13','2006-02-15 22:12:43'), - (1587,57,2,12925,'5.99','2005-08-19 04:59:01','2006-02-15 22:12:43'), - (1588,57,2,13163,'0.99','2005-08-19 13:29:46','2006-02-15 22:12:43'), - (1589,57,2,13743,'0.99','2005-08-20 10:51:27','2006-02-15 22:12:44'), - (1590,57,2,13929,'9.99','2005-08-20 17:13:48','2006-02-15 22:12:44'), - (1591,57,2,15571,'0.99','2005-08-23 05:26:30','2006-02-15 22:12:44'), - (1592,57,2,15871,'9.99','2005-08-23 16:24:24','2006-02-15 22:12:44'), - (1593,58,1,230,'0.99','2005-05-26 11:31:50','2006-02-15 22:12:44'), - (1594,58,2,276,'7.99','2005-05-26 17:16:07','2006-02-15 22:12:44'), - (1595,58,2,761,'0.99','2005-05-29 11:09:01','2006-02-15 22:12:44'), - (1596,58,1,2191,'4.99','2005-06-18 01:33:09','2006-02-15 22:12:44'), - (1597,58,2,2543,'0.99','2005-06-19 02:14:11','2006-02-15 22:12:44'), - (1598,58,1,2906,'0.99','2005-06-20 03:04:56','2006-02-15 22:12:44'), - (1599,58,1,3685,'4.99','2005-07-06 09:30:45','2006-02-15 22:12:44'), - (1600,58,2,4131,'4.99','2005-07-07 07:53:18','2006-02-15 22:12:44'), - (1601,58,2,5439,'1.99','2005-07-09 21:39:35','2006-02-15 22:12:44'), - (1602,58,1,7063,'9.99','2005-07-27 03:52:27','2006-02-15 22:12:44'), - (1603,58,2,7487,'4.99','2005-07-27 19:32:45','2006-02-15 22:12:44'), - (1604,58,1,8853,'0.99','2005-07-29 23:34:21','2006-02-15 22:12:44'), - (1605,58,2,9561,'2.99','2005-07-31 02:22:13','2006-02-15 22:12:44'), - (1606,58,2,10037,'2.99','2005-07-31 18:48:08','2006-02-15 22:12:44'), - (1607,58,1,10068,'4.99','2005-07-31 19:39:38','2006-02-15 22:12:44'), - (1608,58,2,10256,'4.99','2005-08-01 02:47:11','2006-02-15 22:12:44'), - (1609,58,1,10668,'0.99','2005-08-01 17:00:27','2006-02-15 22:12:44'), - (1610,58,1,11416,'6.99','2005-08-02 19:44:04','2006-02-15 22:12:44'), - (1611,58,2,12292,'8.99','2005-08-18 05:08:54','2006-02-15 22:12:44'), - (1612,58,1,13194,'6.99','2005-08-19 14:34:12','2006-02-15 22:12:44'), - (1613,58,1,13207,'3.99','2005-08-19 15:14:38','2006-02-15 22:12:44'), - (1614,58,1,13930,'2.99','2005-08-20 17:15:06','2006-02-15 22:12:44'), - (1615,58,2,13973,'4.99','2005-08-20 18:52:43','2006-02-15 22:12:44'), - (1616,58,2,14305,'5.99','2005-08-21 07:29:05','2006-02-15 22:12:44'), - (1617,58,1,14665,'6.99','2005-08-21 19:49:46','2006-02-15 22:12:44'), - (1618,58,1,14989,'4.99','2005-08-22 07:47:07','2006-02-15 22:12:44'), - (1619,58,2,15326,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:44'), - (1620,59,2,212,'4.99','2005-05-26 08:34:41','2006-02-15 22:12:44'), - (1621,59,2,951,'2.99','2005-05-30 16:10:35','2006-02-15 22:12:44'), - (1622,59,1,1154,'5.99','2005-05-31 21:42:09','2006-02-15 22:12:44'), - (1623,59,1,1269,'2.99','2005-06-15 07:29:59','2006-02-15 22:12:44'), - (1624,59,1,1728,'3.99','2005-06-16 15:29:29','2006-02-15 22:12:44'), - (1625,59,1,2921,'3.99','2005-06-20 04:13:04','2006-02-15 22:12:44'), - (1626,59,2,4148,'2.99','2005-07-07 08:36:58','2006-02-15 22:12:44'), - (1627,59,1,4384,'4.99','2005-07-07 20:46:45','2006-02-15 22:12:44'), - (1628,59,1,4631,'4.99','2005-07-08 08:38:22','2006-02-15 22:12:44'), - (1629,59,1,4891,'3.99','2005-07-08 20:06:19','2006-02-15 22:12:44'), - (1630,59,2,5195,'8.99','2005-07-09 10:39:31','2006-02-15 22:12:44'), - (1631,59,1,5207,'3.99','2005-07-09 11:15:44','2006-02-15 22:12:44'), - (1632,59,1,5830,'4.99','2005-07-10 16:34:00','2006-02-15 22:12:44'), - (1633,59,1,7991,'4.99','2005-07-28 14:45:45','2006-02-15 22:12:44'), - (1634,59,2,8643,'4.99','2005-07-29 14:45:23','2006-02-15 22:12:44'), - (1635,59,1,9469,'8.99','2005-07-30 22:56:34','2006-02-15 22:12:44'), - (1636,59,2,9573,'6.99','2005-07-31 02:45:38','2006-02-15 22:12:44'), - (1637,59,2,11396,'4.99','2005-08-02 18:48:29','2006-02-15 22:12:44'), - (1638,59,1,12833,'5.99','2005-08-19 01:42:28','2006-02-15 22:12:44'), - (1639,59,2,13282,'2.99','2005-08-19 18:08:18','2006-02-15 22:12:44'), - (1640,59,1,13573,'2.99','2005-08-20 05:10:14','2006-02-15 22:12:44'), - (1641,59,2,13921,'4.99','2005-08-20 16:57:11','2006-02-15 22:12:44'), - (1642,59,1,14135,'5.99','2005-08-21 01:53:54','2006-02-15 22:12:44'), - (1643,59,1,14977,'5.99','2005-08-22 07:12:53','2006-02-15 22:12:44'), - (1644,59,2,15271,'5.99','2005-08-22 18:48:48','2006-02-15 22:12:44'), - (1645,59,2,15744,'4.99','2005-08-23 12:15:51','2006-02-15 22:12:44'), - (1646,59,2,15905,'2.99','2005-08-23 17:33:04','2006-02-15 22:12:44'), - (1647,60,1,318,'4.99','2005-05-26 23:37:39','2006-02-15 22:12:44'), - (1648,60,2,706,'1.99','2005-05-29 03:05:49','2006-02-15 22:12:44'), - (1649,60,2,934,'2.99','2005-05-30 13:24:46','2006-02-15 22:12:44'), - (1650,60,2,1482,'4.99','2005-06-15 21:18:16','2006-02-15 22:12:44'), - (1651,60,2,2394,'4.99','2005-06-18 15:42:30','2006-02-15 22:12:44'), - (1652,60,2,3473,'2.99','2005-07-05 22:57:34','2006-02-15 22:12:44'), - (1653,60,1,3849,'2.99','2005-07-06 16:49:43','2006-02-15 22:12:44'), - (1654,60,1,6282,'5.99','2005-07-11 16:46:22','2006-02-15 22:12:44'), - (1655,60,2,7067,'0.99','2005-07-27 03:55:10','2006-02-15 22:12:44'), - (1656,60,1,7331,'3.99','2005-07-27 13:57:50','2006-02-15 22:12:44'), - (1657,60,1,7494,'0.99','2005-07-27 19:56:31','2006-02-15 22:12:44'), - (1658,60,1,9356,'4.99','2005-07-30 18:36:24','2006-02-15 22:12:44'), - (1659,60,1,9761,'4.99','2005-07-31 09:31:54','2006-02-15 22:12:44'), - (1660,60,2,10680,'0.99','2005-08-01 17:28:05','2006-02-15 22:12:44'), - (1661,60,1,11092,'4.99','2005-08-02 07:58:50','2006-02-15 22:12:44'), - (1662,60,1,11404,'8.99','2005-08-02 19:12:40','2006-02-15 22:12:44'), - (1663,60,1,12084,'1.99','2005-08-17 22:16:49','2006-02-15 22:12:44'), - (1664,60,2,12614,'7.99','2005-08-18 17:16:03','2006-02-15 22:12:45'), - (1665,60,1,15093,'2.99','2005-08-22 11:39:03','2006-02-15 22:12:45'), - (1666,60,1,15318,'2.99','2005-08-22 20:15:16','2006-02-15 22:12:45'), - (1667,60,1,15618,'5.99','2005-08-23 07:07:58','2006-02-15 22:12:45'), - (1668,60,1,15632,'0.99','2005-08-23 07:30:26','2006-02-15 22:12:45'), - (1669,60,1,15649,'2.99','2005-08-23 08:28:03','2006-02-15 22:12:45'), - (1670,60,2,12489,'9.98','2006-02-14 15:16:03','2006-02-15 22:12:45'), - (1671,60,2,14741,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:45'), - (1672,61,1,1157,'0.99','2005-05-31 22:47:45','2006-02-15 22:12:45'), - (1673,61,1,7027,'7.99','2005-07-27 02:50:15','2006-02-15 22:12:45'), - (1674,61,2,7071,'1.99','2005-07-27 04:01:15','2006-02-15 22:12:45'), - (1675,61,2,8029,'6.99','2005-07-28 16:11:21','2006-02-15 22:12:45'), - (1676,61,2,8075,'4.99','2005-07-28 17:37:28','2006-02-15 22:12:45'), - (1677,61,1,8651,'3.99','2005-07-29 15:02:18','2006-02-15 22:12:45'), - (1678,61,2,9597,'6.99','2005-07-31 03:29:07','2006-02-15 22:12:45'), - (1679,61,2,10549,'0.99','2005-08-01 12:46:39','2006-02-15 22:12:45'), - (1680,61,2,11379,'2.99','2005-08-02 18:16:55','2006-02-15 22:12:45'), - (1681,61,1,12072,'9.99','2005-08-17 21:50:25','2006-02-15 22:12:45'), - (1682,61,1,13450,'0.99','2005-08-20 00:18:15','2006-02-15 22:12:45'), - (1683,61,1,13830,'0.99','2005-08-20 13:57:59','2006-02-15 22:12:45'), - (1684,61,2,15089,'6.99','2005-08-22 11:34:06','2006-02-15 22:12:45'), - (1685,61,1,15681,'1.99','2005-08-23 09:35:34','2006-02-15 22:12:45'), - (1686,62,2,885,'0.99','2005-05-30 06:54:28','2006-02-15 22:12:45'), - (1687,62,1,947,'4.99','2005-05-30 15:36:57','2006-02-15 22:12:45'), - (1688,62,2,1241,'6.99','2005-06-15 04:59:43','2006-02-15 22:12:45'), - (1689,62,1,1486,'0.99','2005-06-15 21:25:30','2006-02-15 22:12:45'), - (1690,62,1,1587,'0.99','2005-06-16 04:52:28','2006-02-15 22:12:45'), - (1691,62,2,3021,'4.99','2005-06-20 11:13:01','2006-02-15 22:12:45'), - (1692,62,1,3035,'5.99','2005-06-20 12:17:03','2006-02-15 22:12:45'), - (1693,62,1,3287,'0.99','2005-06-21 06:32:39','2006-02-15 22:12:45'), - (1694,62,1,3327,'3.99','2005-06-21 09:04:50','2006-02-15 22:12:45'), - (1695,62,2,3843,'2.99','2005-07-06 16:35:40','2006-02-15 22:12:45'), - (1696,62,2,4159,'4.99','2005-07-07 09:10:57','2006-02-15 22:12:45'), - (1697,62,2,5292,'2.99','2005-07-09 15:16:54','2006-02-15 22:12:45'), - (1698,62,2,8360,'4.99','2005-07-29 05:08:00','2006-02-15 22:12:45'), - (1699,62,2,10080,'0.99','2005-07-31 20:07:10','2006-02-15 22:12:45'), - (1700,62,1,10815,'2.99','2005-08-01 22:46:21','2006-02-15 22:12:45'), - (1701,62,1,11297,'5.99','2005-08-02 15:22:47','2006-02-15 22:12:45'), - (1702,62,1,11988,'0.99','2005-08-17 18:23:50','2006-02-15 22:12:45'), - (1703,62,2,13512,'8.99','2005-08-20 02:27:13','2006-02-15 22:12:45'), - (1704,62,2,14574,'1.99','2005-08-21 16:50:34','2006-02-15 22:12:45'), - (1705,62,2,14594,'2.99','2005-08-21 17:34:24','2006-02-15 22:12:45'), - (1706,62,2,14821,'4.99','2005-08-22 01:20:19','2006-02-15 22:12:45'), - (1707,62,1,15464,'6.99','2005-08-23 01:15:18','2006-02-15 22:12:45'), - (1708,62,1,15591,'0.99','2005-08-23 06:11:52','2006-02-15 22:12:45'), - (1709,63,2,1818,'0.99','2005-06-16 21:30:34','2006-02-15 22:12:45'), - (1710,63,2,3923,'8.99','2005-07-06 20:34:10','2006-02-15 22:12:45'), - (1711,63,1,4587,'4.99','2005-07-08 06:16:26','2006-02-15 22:12:45'), - (1712,63,1,5585,'6.99','2005-07-10 04:15:43','2006-02-15 22:12:45'), - (1713,63,2,5788,'4.99','2005-07-10 14:10:22','2006-02-15 22:12:45'), - (1714,63,2,5832,'4.99','2005-07-10 16:34:48','2006-02-15 22:12:45'), - (1715,63,2,6769,'3.99','2005-07-12 15:48:54','2006-02-15 22:12:45'), - (1716,63,2,6847,'8.99','2005-07-12 19:22:37','2006-02-15 22:12:45'), - (1717,63,2,8311,'5.99','2005-07-29 03:26:07','2006-02-15 22:12:45'), - (1718,63,2,9007,'0.99','2005-07-30 05:09:32','2006-02-15 22:12:45'), - (1719,63,1,9546,'4.99','2005-07-31 01:47:40','2006-02-15 22:12:45'), - (1720,63,2,9549,'3.99','2005-07-31 01:57:04','2006-02-15 22:12:45'), - (1721,63,1,9795,'0.99','2005-07-31 10:47:19','2006-02-15 22:12:45'), - (1722,63,2,9938,'2.99','2005-07-31 15:28:47','2006-02-15 22:12:45'), - (1723,63,2,10148,'0.99','2005-07-31 22:19:16','2006-02-15 22:12:45'), - (1724,63,1,10288,'6.99','2005-08-01 03:38:42','2006-02-15 22:12:45'), - (1725,63,1,11902,'4.99','2005-08-17 15:37:34','2006-02-15 22:12:45'), - (1726,63,2,12342,'2.99','2005-08-18 07:12:46','2006-02-15 22:12:45'), - (1727,63,2,12515,'0.99','2005-08-18 13:39:26','2006-02-15 22:12:45'), - (1728,63,1,12954,'7.99','2005-08-19 06:04:34','2006-02-15 22:12:45'), - (1729,63,1,13089,'0.99','2005-08-19 10:38:56','2006-02-15 22:12:45'), - (1730,63,1,13624,'8.99','2005-08-20 06:51:02','2006-02-15 22:12:45'), - (1731,63,1,14931,'3.99','2005-08-22 05:38:55','2006-02-15 22:12:45'), - (1732,63,1,15060,'5.99','2005-08-22 10:24:32','2006-02-15 22:12:45'), - (1733,63,1,15229,'2.99','2005-08-22 17:30:25','2006-02-15 22:12:45'), - (1734,64,1,494,'4.99','2005-05-28 00:39:31','2006-02-15 22:12:45'), - (1735,64,1,587,'0.99','2005-05-28 12:05:33','2006-02-15 22:12:45'), - (1736,64,1,1001,'2.99','2005-05-31 00:46:31','2006-02-15 22:12:45'), - (1737,64,2,1335,'0.99','2005-06-15 11:51:30','2006-02-15 22:12:45'), - (1738,64,1,2060,'2.99','2005-06-17 15:42:42','2006-02-15 22:12:45'), - (1739,64,2,3982,'0.99','2005-07-06 23:14:16','2006-02-15 22:12:45'), - (1740,64,1,4288,'4.99','2005-07-07 15:38:25','2006-02-15 22:12:45'), - (1741,64,1,4690,'1.99','2005-07-08 11:04:02','2006-02-15 22:12:45'), - (1742,64,2,4819,'5.99','2005-07-08 17:19:15','2006-02-15 22:12:45'), - (1743,64,2,4971,'5.99','2005-07-08 23:54:49','2006-02-15 22:12:45'), - (1744,64,1,5114,'3.99','2005-07-09 07:07:05','2006-02-15 22:12:46'), - (1745,64,2,5279,'2.99','2005-07-09 14:46:36','2006-02-15 22:12:46'), - (1746,64,1,5432,'0.99','2005-07-09 21:21:25','2006-02-15 22:12:46'), - (1747,64,2,6372,'2.99','2005-07-11 21:35:06','2006-02-15 22:12:46'), - (1748,64,2,6457,'0.99','2005-07-12 01:06:35','2006-02-15 22:12:46'), - (1749,64,2,6698,'1.99','2005-07-12 12:45:00','2006-02-15 22:12:46'), - (1750,64,2,6744,'0.99','2005-07-12 14:30:28','2006-02-15 22:12:46'), - (1751,64,2,7045,'0.99','2005-07-27 03:27:35','2006-02-15 22:12:46'), - (1752,64,1,7082,'2.99','2005-07-27 04:27:32','2006-02-15 22:12:46'), - (1753,64,1,7476,'1.99','2005-07-27 19:08:56','2006-02-15 22:12:46'), - (1754,64,2,8602,'4.99','2005-07-29 13:04:27','2006-02-15 22:12:46'), - (1755,64,1,9832,'2.99','2005-07-31 12:01:49','2006-02-15 22:12:46'), - (1756,64,1,9880,'6.99','2005-07-31 13:49:02','2006-02-15 22:12:46'), - (1757,64,1,9924,'3.99','2005-07-31 15:04:57','2006-02-15 22:12:46'), - (1758,64,2,10185,'0.99','2005-08-01 00:12:11','2006-02-15 22:12:46'), - (1759,64,2,10714,'4.99','2005-08-01 18:51:29','2006-02-15 22:12:46'), - (1760,64,1,10889,'4.99','2005-08-02 00:54:33','2006-02-15 22:12:46'), - (1761,64,1,12409,'0.99','2005-08-18 09:43:58','2006-02-15 22:12:46'), - (1762,64,1,13773,'2.99','2005-08-20 11:50:14','2006-02-15 22:12:46'), - (1763,64,1,13971,'0.99','2005-08-20 18:44:53','2006-02-15 22:12:46'), - (1764,64,1,14167,'5.99','2005-08-21 02:59:48','2006-02-15 22:12:46'), - (1765,64,2,14316,'0.99','2005-08-21 07:59:47','2006-02-15 22:12:46'), - (1766,64,2,13333,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:46'), - (1767,65,1,295,'4.99','2005-05-26 20:33:20','2006-02-15 22:12:46'), - (1768,65,2,657,'0.99','2005-05-28 20:23:09','2006-02-15 22:12:46'), - (1769,65,1,2173,'7.99','2005-06-18 00:08:20','2006-02-15 22:12:46'), - (1770,65,1,3051,'4.99','2005-06-20 13:06:52','2006-02-15 22:12:46'), - (1771,65,1,3535,'4.99','2005-07-06 01:32:46','2006-02-15 22:12:46'), - (1772,65,1,4240,'4.99','2005-07-07 13:33:12','2006-02-15 22:12:46'), - (1773,65,2,4635,'3.99','2005-07-08 08:42:40','2006-02-15 22:12:46'), - (1774,65,1,5735,'3.99','2005-07-10 11:39:15','2006-02-15 22:12:46'), - (1775,65,2,6527,'0.99','2005-07-12 04:23:06','2006-02-15 22:12:46'), - (1776,65,1,7877,'6.99','2005-07-28 10:25:36','2006-02-15 22:12:46'), - (1777,65,2,8392,'1.99','2005-07-29 06:00:27','2006-02-15 22:12:46'), - (1778,65,2,8404,'5.99','2005-07-29 06:27:01','2006-02-15 22:12:46'), - (1779,65,1,9293,'3.99','2005-07-30 16:12:28','2006-02-15 22:12:46'), - (1780,65,2,11100,'5.99','2005-08-02 08:08:00','2006-02-15 22:12:46'), - (1781,65,1,11227,'8.99','2005-08-02 12:48:05','2006-02-15 22:12:46'), - (1782,65,2,11461,'4.99','2005-08-02 21:35:00','2006-02-15 22:12:46'), - (1783,65,2,11845,'2.99','2005-08-17 13:16:38','2006-02-15 22:12:46'), - (1784,65,1,12114,'7.99','2005-08-17 23:02:00','2006-02-15 22:12:46'), - (1785,65,1,12688,'6.99','2005-08-18 19:59:54','2006-02-15 22:12:46'), - (1786,65,2,13692,'0.99','2005-08-20 09:07:52','2006-02-15 22:12:46'), - (1787,65,2,14140,'6.99','2005-08-21 02:04:57','2006-02-15 22:12:46'), - (1788,65,1,14356,'0.99','2005-08-21 09:08:51','2006-02-15 22:12:46'), - (1789,66,2,933,'4.99','2005-05-30 13:08:45','2006-02-15 22:12:46'), - (1790,66,1,1236,'2.99','2005-06-15 04:34:27','2006-02-15 22:12:46'), - (1791,66,1,1907,'2.99','2005-06-17 05:08:27','2006-02-15 22:12:46'), - (1792,66,1,2106,'4.99','2005-06-17 19:29:03','2006-02-15 22:12:46'), - (1793,66,2,2571,'2.99','2005-06-19 04:20:14','2006-02-15 22:12:46'), - (1794,66,1,2577,'4.99','2005-06-19 04:36:03','2006-02-15 22:12:46'), - (1795,66,1,3334,'3.99','2005-06-21 10:04:33','2006-02-15 22:12:46'), - (1796,66,2,3395,'6.99','2005-06-21 15:19:19','2006-02-15 22:12:46'), - (1797,66,1,3573,'4.99','2005-07-06 03:33:48','2006-02-15 22:12:46'), - (1798,66,2,3757,'2.99','2005-07-06 12:42:26','2006-02-15 22:12:46'), - (1799,66,2,4088,'2.99','2005-07-07 05:31:55','2006-02-15 22:12:46'), - (1800,66,1,4108,'4.99','2005-07-07 06:38:31','2006-02-15 22:12:46'), - (1801,66,2,4165,'6.99','2005-07-07 09:23:27','2006-02-15 22:12:46'), - (1802,66,2,4911,'5.99','2005-07-08 21:20:26','2006-02-15 22:12:46'), - (1803,66,2,5915,'0.99','2005-07-10 21:12:16','2006-02-15 22:12:46'), - (1804,66,1,6290,'8.99','2005-07-11 17:12:42','2006-02-15 22:12:46'), - (1805,66,2,6348,'5.99','2005-07-11 20:21:18','2006-02-15 22:12:46'), - (1806,66,1,6402,'3.99','2005-07-11 22:46:10','2006-02-15 22:12:46'), - (1807,66,1,6995,'2.99','2005-07-27 01:12:13','2006-02-15 22:12:46'), - (1808,66,1,7872,'2.99','2005-07-28 10:18:16','2006-02-15 22:12:46'), - (1809,66,1,9091,'5.99','2005-07-30 08:30:45','2006-02-15 22:12:46'), - (1810,66,1,10419,'0.99','2005-08-01 08:13:22','2006-02-15 22:12:46'), - (1811,66,2,11028,'5.99','2005-08-02 05:48:20','2006-02-15 22:12:46'), - (1812,66,2,11360,'2.99','2005-08-02 17:46:04','2006-02-15 22:12:46'), - (1813,66,1,11683,'5.99','2005-08-17 06:15:17','2006-02-15 22:12:46'), - (1814,66,1,11935,'0.99','2005-08-17 16:42:13','2006-02-15 22:12:46'), - (1815,66,1,12699,'0.99','2005-08-18 20:20:59','2006-02-15 22:12:46'), - (1816,66,1,13900,'2.99','2005-08-20 16:05:41','2006-02-15 22:12:46'), - (1817,66,2,14123,'2.99','2005-08-21 01:31:25','2006-02-15 22:12:46'), - (1818,66,1,14217,'6.99','2005-08-21 04:37:56','2006-02-15 22:12:46'), - (1819,66,2,14351,'2.99','2005-08-21 09:04:20','2006-02-15 22:12:46'), - (1820,66,2,14429,'0.99','2005-08-21 11:29:43','2006-02-15 22:12:46'), - (1821,66,2,15026,'4.99','2005-08-22 09:01:52','2006-02-15 22:12:47'), - (1822,66,1,15598,'8.99','2005-08-23 06:23:26','2006-02-15 22:12:47'), - (1823,67,2,331,'9.99','2005-05-27 02:22:26','2006-02-15 22:12:47'), - (1824,67,1,767,'2.99','2005-05-29 12:20:19','2006-02-15 22:12:47'), - (1825,67,1,2064,'3.99','2005-06-17 15:57:56','2006-02-15 22:12:47'), - (1826,67,1,2542,'3.99','2005-06-19 02:08:39','2006-02-15 22:12:47'), - (1827,67,2,2810,'0.99','2005-06-19 19:44:12','2006-02-15 22:12:47'), - (1828,67,1,3359,'4.99','2005-06-21 12:08:18','2006-02-15 22:12:47'), - (1829,67,2,4090,'4.99','2005-07-07 05:47:33','2006-02-15 22:12:47'), - (1830,67,2,5399,'2.99','2005-07-09 19:52:44','2006-02-15 22:12:47'), - (1831,67,2,5510,'2.99','2005-07-10 00:58:37','2006-02-15 22:12:47'), - (1832,67,1,6137,'2.99','2005-07-11 08:34:20','2006-02-15 22:12:47'), - (1833,67,2,7277,'5.99','2005-07-27 11:48:37','2006-02-15 22:12:47'), - (1834,67,2,7895,'0.99','2005-07-28 10:57:15','2006-02-15 22:12:47'), - (1835,67,2,8563,'1.99','2005-07-29 11:32:58','2006-02-15 22:12:47'), - (1836,67,1,9640,'7.99','2005-07-31 05:33:25','2006-02-15 22:12:47'), - (1837,67,1,11295,'8.99','2005-08-02 15:10:06','2006-02-15 22:12:47'), - (1838,67,1,11894,'8.99','2005-08-17 15:15:01','2006-02-15 22:12:47'), - (1839,67,2,13437,'4.99','2005-08-19 23:37:52','2006-02-15 22:12:47'), - (1840,67,1,13652,'2.99','2005-08-20 07:52:34','2006-02-15 22:12:47'), - (1841,67,2,13791,'4.99','2005-08-20 12:21:05','2006-02-15 22:12:47'), - (1842,67,2,13837,'2.99','2005-08-20 14:19:03','2006-02-15 22:12:47'), - (1843,67,2,14967,'4.99','2005-08-22 06:46:03','2006-02-15 22:12:47'), - (1844,67,2,15085,'2.99','2005-08-22 11:19:22','2006-02-15 22:12:47'), - (1845,68,2,1828,'5.99','2005-06-16 22:04:34','2006-02-15 22:12:47'), - (1846,68,2,1957,'8.99','2005-06-17 08:50:58','2006-02-15 22:12:47'), - (1847,68,2,2633,'2.99','2005-06-19 08:53:10','2006-02-15 22:12:47'), - (1848,68,2,2662,'4.99','2005-06-19 10:53:42','2006-02-15 22:12:47'), - (1849,68,1,2686,'2.99','2005-06-19 12:44:20','2006-02-15 22:12:47'), - (1850,68,1,3598,'0.99','2005-07-06 05:11:04','2006-02-15 22:12:47'), - (1851,68,2,3801,'4.99','2005-07-06 15:05:50','2006-02-15 22:12:47'), - (1852,68,1,3864,'0.99','2005-07-06 17:41:42','2006-02-15 22:12:47'), - (1853,68,2,4555,'6.99','2005-07-08 04:48:36','2006-02-15 22:12:47'), - (1854,68,1,4925,'3.99','2005-07-08 21:56:00','2006-02-15 22:12:47'), - (1855,68,1,6512,'4.99','2005-07-12 03:42:49','2006-02-15 22:12:47'), - (1856,68,2,9339,'3.99','2005-07-30 18:03:28','2006-02-15 22:12:47'), - (1857,68,1,9538,'3.99','2005-07-31 01:25:22','2006-02-15 22:12:47'), - (1858,68,2,9642,'4.99','2005-07-31 05:33:57','2006-02-15 22:12:47'), - (1859,68,1,10115,'7.99','2005-07-31 21:13:47','2006-02-15 22:12:47'), - (1860,68,1,11277,'2.99','2005-08-02 14:28:50','2006-02-15 22:12:47'), - (1861,68,2,12742,'2.99','2005-08-18 22:22:03','2006-02-15 22:12:47'), - (1862,68,2,13475,'4.99','2005-08-20 01:05:05','2006-02-15 22:12:47'), - (1863,68,2,14242,'0.99','2005-08-21 05:25:59','2006-02-15 22:12:47'), - (1864,68,2,14455,'5.99','2005-08-21 12:36:11','2006-02-15 22:12:47'), - (1865,68,1,14947,'1.99','2005-08-22 06:07:52','2006-02-15 22:12:47'), - (1866,68,1,15524,'4.99','2005-08-23 03:36:26','2006-02-15 22:12:47'), - (1867,69,2,584,'4.99','2005-05-28 11:49:00','2006-02-15 22:12:47'), - (1868,69,2,765,'1.99','2005-05-29 11:38:34','2006-02-15 22:12:47'), - (1869,69,1,1549,'2.99','2005-06-16 01:57:15','2006-02-15 22:12:47'), - (1870,69,1,3358,'4.99','2005-06-21 11:56:40','2006-02-15 22:12:47'), - (1871,69,1,3883,'8.99','2005-07-06 18:39:38','2006-02-15 22:12:47'), - (1872,69,1,4265,'0.99','2005-07-07 14:27:51','2006-02-15 22:12:47'), - (1873,69,1,4427,'0.99','2005-07-07 22:28:51','2006-02-15 22:12:47'), - (1874,69,2,5569,'3.99','2005-07-10 03:38:32','2006-02-15 22:12:47'), - (1875,69,2,6297,'4.99','2005-07-11 17:37:22','2006-02-15 22:12:47'), - (1876,69,1,6385,'6.99','2005-07-11 22:07:32','2006-02-15 22:12:47'), - (1877,69,2,6785,'6.99','2005-07-12 16:30:57','2006-02-15 22:12:47'), - (1878,69,2,8649,'6.99','2005-07-29 14:57:33','2006-02-15 22:12:47'), - (1879,69,2,9193,'2.99','2005-07-30 12:28:42','2006-02-15 22:12:47'), - (1880,69,1,9612,'2.99','2005-07-31 03:58:31','2006-02-15 22:12:47'), - (1881,69,2,10074,'0.99','2005-07-31 19:57:16','2006-02-15 22:12:47'), - (1882,69,1,11943,'3.99','2005-08-17 17:00:42','2006-02-15 22:12:47'), - (1883,69,1,12012,'2.99','2005-08-17 19:20:48','2006-02-15 22:12:47'), - (1884,69,1,12121,'2.99','2005-08-17 23:20:40','2006-02-15 22:12:47'), - (1885,69,1,12966,'5.99','2005-08-19 06:37:48','2006-02-15 22:12:47'), - (1886,69,1,13023,'5.99','2005-08-19 08:13:54','2006-02-15 22:12:47'), - (1887,69,2,14311,'3.99','2005-08-21 07:45:47','2006-02-15 22:12:47'), - (1888,69,2,14685,'0.99','2005-08-21 20:31:25','2006-02-15 22:12:47'), - (1889,69,2,14767,'2.99','2005-08-21 23:43:00','2006-02-15 22:12:47'), - (1890,69,1,15547,'2.99','2005-08-23 04:25:50','2006-02-15 22:12:47'), - (1891,69,2,11995,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:47'), - (1892,70,2,1044,'4.99','2005-05-31 06:24:44','2006-02-15 22:12:47'), - (1893,70,1,2472,'4.99','2005-06-18 20:32:40','2006-02-15 22:12:47'), - (1894,70,1,4061,'0.99','2005-07-07 04:13:35','2006-02-15 22:12:47'), - (1895,70,1,5927,'5.99','2005-07-10 21:57:14','2006-02-15 22:12:47'), - (1896,70,2,7036,'4.99','2005-07-27 03:06:12','2006-02-15 22:12:47'), - (1897,70,2,7421,'7.99','2005-07-27 17:10:05','2006-02-15 22:12:47'), - (1898,70,1,7714,'2.99','2005-07-28 04:32:30','2006-02-15 22:12:47'), - (1899,70,2,8550,'0.99','2005-07-29 11:12:37','2006-02-15 22:12:48'), - (1900,70,1,8747,'2.99','2005-07-29 19:07:57','2006-02-15 22:12:48'), - (1901,70,1,11274,'9.99','2005-08-02 14:24:08','2006-02-15 22:12:48'), - (1902,70,1,11901,'2.99','2005-08-17 15:35:47','2006-02-15 22:12:48'), - (1903,70,1,12003,'4.99','2005-08-17 18:56:05','2006-02-15 22:12:48'), - (1904,70,2,12218,'4.99','2005-08-18 02:48:14','2006-02-15 22:12:48'), - (1905,70,1,12581,'6.99','2005-08-18 15:49:15','2006-02-15 22:12:48'), - (1906,70,1,12951,'3.99','2005-08-19 05:56:44','2006-02-15 22:12:48'), - (1907,70,2,13680,'4.99','2005-08-20 08:44:06','2006-02-15 22:12:48'), - (1908,70,2,15238,'0.99','2005-08-22 17:46:12','2006-02-15 22:12:48'), - (1909,70,1,15616,'3.99','2005-08-23 07:06:38','2006-02-15 22:12:48'), - (1910,71,1,199,'2.99','2005-05-26 07:11:58','2006-02-15 22:12:48'), - (1911,71,1,272,'9.99','2005-05-26 16:27:11','2006-02-15 22:12:48'), - (1912,71,2,1873,'2.99','2005-06-17 02:38:28','2006-02-15 22:12:48'), - (1913,71,1,2374,'4.99','2005-06-18 14:44:06','2006-02-15 22:12:48'), - (1914,71,2,3345,'5.99','2005-06-21 11:05:07','2006-02-15 22:12:48'), - (1915,71,2,4614,'4.99','2005-07-08 07:45:17','2006-02-15 22:12:48'), - (1916,71,2,5281,'1.99','2005-07-09 14:55:07','2006-02-15 22:12:48'), - (1917,71,2,5358,'3.99','2005-07-09 18:09:21','2006-02-15 22:12:48'), - (1918,71,1,5543,'8.99','2005-07-10 02:48:03','2006-02-15 22:12:48'), - (1919,71,1,5770,'4.99','2005-07-10 13:21:28','2006-02-15 22:12:48'), - (1920,71,2,5814,'4.99','2005-07-10 15:46:50','2006-02-15 22:12:48'), - (1921,71,2,6020,'0.99','2005-07-11 02:08:55','2006-02-15 22:12:48'), - (1922,71,1,6739,'5.99','2005-07-12 14:22:08','2006-02-15 22:12:48'), - (1923,71,2,7160,'0.99','2005-07-27 07:26:06','2006-02-15 22:12:48'), - (1924,71,1,7550,'4.99','2005-07-27 21:55:07','2006-02-15 22:12:48'), - (1925,71,2,7982,'4.99','2005-07-28 14:19:59','2006-02-15 22:12:48'), - (1926,71,2,8128,'2.99','2005-07-28 19:46:06','2006-02-15 22:12:48'), - (1927,71,1,8293,'2.99','2005-07-29 02:30:50','2006-02-15 22:12:48'), - (1928,71,1,8574,'1.99','2005-07-29 11:51:53','2006-02-15 22:12:48'), - (1929,71,1,8668,'4.99','2005-07-29 15:41:31','2006-02-15 22:12:48'), - (1930,71,1,8783,'3.99','2005-07-29 20:31:28','2006-02-15 22:12:48'), - (1931,71,1,8789,'4.99','2005-07-29 20:47:27','2006-02-15 22:12:48'), - (1932,71,1,8956,'0.99','2005-07-30 03:32:29','2006-02-15 22:12:48'), - (1933,71,1,12417,'4.99','2005-08-18 09:57:00','2006-02-15 22:12:48'), - (1934,71,1,14105,'7.99','2005-08-21 00:44:34','2006-02-15 22:12:48'), - (1935,71,1,14228,'3.99','2005-08-21 04:57:08','2006-02-15 22:12:48'), - (1936,71,2,14781,'4.99','2005-08-22 00:15:12','2006-02-15 22:12:48'), - (1937,71,2,14904,'3.99','2005-08-22 04:32:01','2006-02-15 22:12:48'), - (1938,71,1,15704,'4.99','2005-08-23 10:25:45','2006-02-15 22:12:48'), - (1939,71,1,16000,'0.99','2005-08-23 20:44:36','2006-02-15 22:12:48'), - (1940,72,2,785,'4.99','2005-05-29 15:08:41','2006-02-15 22:12:48'), - (1941,72,2,845,'4.99','2005-05-30 01:17:25','2006-02-15 22:12:48'), - (1942,72,2,1047,'0.99','2005-05-31 06:45:57','2006-02-15 22:12:48'), - (1943,72,2,2294,'4.99','2005-06-18 07:46:34','2006-02-15 22:12:48'), - (1944,72,1,3700,'0.99','2005-07-06 10:12:19','2006-02-15 22:12:48'), - (1945,72,2,5223,'4.99','2005-07-09 12:06:03','2006-02-15 22:12:48'), - (1946,72,1,5302,'4.99','2005-07-09 15:42:36','2006-02-15 22:12:48'), - (1947,72,1,5424,'0.99','2005-07-09 20:59:09','2006-02-15 22:12:48'), - (1948,72,1,5840,'4.99','2005-07-10 17:09:09','2006-02-15 22:12:48'), - (1949,72,2,6081,'0.99','2005-07-11 05:11:09','2006-02-15 22:12:48'), - (1950,72,2,8228,'4.99','2005-07-29 00:08:58','2006-02-15 22:12:48'), - (1951,72,1,9027,'2.99','2005-07-30 05:58:27','2006-02-15 22:12:48'), - (1952,72,2,9420,'5.99','2005-07-30 21:05:18','2006-02-15 22:12:48'), - (1953,72,2,9648,'4.99','2005-07-31 05:46:03','2006-02-15 22:12:48'), - (1954,72,2,10267,'0.99','2005-08-01 03:07:26','2006-02-15 22:12:48'), - (1955,72,2,11206,'6.99','2005-08-02 11:58:03','2006-02-15 22:12:48'), - (1956,72,2,11422,'5.99','2005-08-02 19:52:08','2006-02-15 22:12:48'), - (1957,72,1,11630,'2.99','2005-08-17 04:27:46','2006-02-15 22:12:48'), - (1958,72,1,11679,'4.99','2005-08-17 06:08:54','2006-02-15 22:12:48'), - (1959,72,1,11923,'2.99','2005-08-17 16:21:47','2006-02-15 22:12:48'), - (1960,72,2,12020,'2.99','2005-08-17 19:50:33','2006-02-15 22:12:48'), - (1961,72,1,12448,'0.99','2005-08-18 10:59:04','2006-02-15 22:12:48'), - (1962,72,2,12593,'0.99','2005-08-18 16:17:54','2006-02-15 22:12:48'), - (1963,72,1,13145,'0.99','2005-08-19 12:53:53','2006-02-15 22:12:48'), - (1964,72,2,13327,'4.99','2005-08-19 19:55:45','2006-02-15 22:12:48'), - (1965,72,2,13597,'0.99','2005-08-20 05:59:05','2006-02-15 22:12:48'), - (1966,72,2,13660,'4.99','2005-08-20 08:05:56','2006-02-15 22:12:48'), - (1967,72,1,14020,'0.99','2005-08-20 20:59:43','2006-02-15 22:12:48'), - (1968,72,2,15110,'0.99','2005-08-22 12:16:46','2006-02-15 22:12:48'), - (1969,72,2,15146,'2.99','2005-08-22 13:57:55','2006-02-15 22:12:48'), - (1970,73,1,70,'2.99','2005-05-25 10:15:23','2006-02-15 22:12:48'), - (1971,73,2,1133,'4.99','2005-05-31 19:12:21','2006-02-15 22:12:48'), - (1972,73,1,1669,'0.99','2005-06-16 10:20:20','2006-02-15 22:12:48'), - (1973,73,2,2940,'4.99','2005-06-20 05:20:01','2006-02-15 22:12:48'), - (1974,73,2,4327,'2.99','2005-07-07 18:01:39','2006-02-15 22:12:48'), - (1975,73,1,4789,'4.99','2005-07-08 16:22:01','2006-02-15 22:12:49'), - (1976,73,2,5021,'4.99','2005-07-09 02:09:41','2006-02-15 22:12:49'), - (1977,73,1,6514,'9.99','2005-07-12 03:47:44','2006-02-15 22:12:49'), - (1978,73,1,6645,'2.99','2005-07-12 10:39:55','2006-02-15 22:12:49'), - (1979,73,1,7590,'4.99','2005-07-27 23:24:24','2006-02-15 22:12:49'), - (1980,73,1,7683,'4.99','2005-07-28 03:11:29','2006-02-15 22:12:49'), - (1981,73,1,8377,'4.99','2005-07-29 05:27:40','2006-02-15 22:12:49'), - (1982,73,1,9212,'2.99','2005-07-30 13:03:13','2006-02-15 22:12:49'), - (1983,73,1,9776,'2.99','2005-07-31 10:01:03','2006-02-15 22:12:49'), - (1984,73,2,10434,'4.99','2005-08-01 08:47:00','2006-02-15 22:12:49'), - (1985,73,1,11102,'4.99','2005-08-02 08:08:30','2006-02-15 22:12:49'), - (1986,73,2,11155,'0.99','2005-08-02 09:55:28','2006-02-15 22:12:49'), - (1987,73,2,11349,'4.99','2005-08-02 17:21:49','2006-02-15 22:12:49'), - (1988,73,2,11609,'3.99','2005-08-17 03:41:11','2006-02-15 22:12:49'), - (1989,73,2,12291,'4.99','2005-08-18 05:08:37','2006-02-15 22:12:49'), - (1990,73,1,13886,'4.99','2005-08-20 15:34:43','2006-02-15 22:12:49'), - (1991,73,1,15667,'0.99','2005-08-23 09:02:03','2006-02-15 22:12:49'), - (1992,73,2,16002,'2.99','2005-08-23 20:47:12','2006-02-15 22:12:49'), - (1993,73,2,13108,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:49'), - (1994,74,2,1121,'6.99','2005-05-31 16:37:36','2006-02-15 22:12:49'), - (1995,74,1,2498,'1.99','2005-06-18 22:56:26','2006-02-15 22:12:49'), - (1996,74,2,2517,'0.99','2005-06-19 00:11:26','2006-02-15 22:12:49'), - (1997,74,1,3020,'1.99','2005-06-20 11:12:04','2006-02-15 22:12:49'), - (1998,74,2,3445,'7.99','2005-06-21 20:40:28','2006-02-15 22:12:49'), - (1999,74,2,3819,'3.99','2005-07-06 15:35:06','2006-02-15 22:12:49'), - (2000,74,1,5530,'2.99','2005-07-10 02:13:49','2006-02-15 22:12:49'), - (2001,74,2,5603,'2.99','2005-07-10 05:04:54','2006-02-15 22:12:49'), - (2002,74,2,5917,'4.99','2005-07-10 21:30:22','2006-02-15 22:12:49'), - (2003,74,1,6241,'7.99','2005-07-11 14:40:48','2006-02-15 22:12:49'), - (2004,74,1,6475,'2.99','2005-07-12 01:36:57','2006-02-15 22:12:49'), - (2005,74,1,7304,'6.99','2005-07-27 12:56:56','2006-02-15 22:12:49'), - (2006,74,2,8796,'5.99','2005-07-29 21:09:11','2006-02-15 22:12:49'), - (2007,74,2,9112,'4.99','2005-07-30 09:06:31','2006-02-15 22:12:49'), - (2008,74,2,10051,'3.99','2005-07-31 19:14:20','2006-02-15 22:12:49'), - (2009,74,1,10624,'0.99','2005-08-01 15:27:05','2006-02-15 22:12:49'), - (2010,74,2,12374,'3.99','2005-08-18 08:07:45','2006-02-15 22:12:49'), - (2011,74,2,12477,'3.99','2005-08-18 12:25:01','2006-02-15 22:12:49'), - (2012,74,2,13335,'0.99','2005-08-19 20:03:18','2006-02-15 22:12:49'), - (2013,74,2,13520,'0.99','2005-08-20 02:41:46','2006-02-15 22:12:49'), - (2014,74,1,13583,'1.99','2005-08-20 05:29:45','2006-02-15 22:12:49'), - (2015,74,2,13747,'5.99','2005-08-20 10:56:06','2006-02-15 22:12:49'), - (2016,74,1,15286,'4.99','2005-08-22 19:17:56','2006-02-15 22:12:49'), - (2017,74,2,15325,'4.99','2005-08-22 20:27:38','2006-02-15 22:12:49'), - (2018,74,2,15500,'0.99','2005-08-23 02:39:37','2006-02-15 22:12:49'), - (2019,74,2,15739,'4.99','2005-08-23 11:56:22','2006-02-15 22:12:49'), - (2020,74,1,16046,'0.99','2005-08-23 22:26:47','2006-02-15 22:12:49'), - (2021,75,1,180,'4.99','2005-05-26 04:46:23','2006-02-15 22:12:49'), - (2022,75,2,268,'0.99','2005-05-26 16:19:08','2006-02-15 22:12:49'), - (2023,75,1,1920,'4.99','2005-06-17 06:00:23','2006-02-15 22:12:49'), - (2024,75,1,2161,'7.99','2005-06-17 23:39:50','2006-02-15 22:12:49'), - (2025,75,2,2738,'4.99','2005-06-19 15:56:30','2006-02-15 22:12:49'), - (2026,75,2,3062,'6.99','2005-06-20 13:50:00','2006-02-15 22:12:49'), - (2027,75,1,3210,'4.99','2005-06-21 01:00:25','2006-02-15 22:12:49'), - (2028,75,1,3711,'0.99','2005-07-06 10:46:15','2006-02-15 22:12:49'), - (2029,75,2,4179,'2.99','2005-07-07 10:17:15','2006-02-15 22:12:49'), - (2030,75,2,4511,'0.99','2005-07-08 02:36:21','2006-02-15 22:12:49'), - (2031,75,1,4639,'5.99','2005-07-08 08:57:21','2006-02-15 22:12:49'), - (2032,75,2,5260,'2.99','2005-07-09 14:05:45','2006-02-15 22:12:49'), - (2033,75,2,6052,'0.99','2005-07-11 03:51:27','2006-02-15 22:12:49'), - (2034,75,1,6092,'3.99','2005-07-11 05:51:31','2006-02-15 22:12:49'), - (2035,75,1,6486,'0.99','2005-07-12 02:09:36','2006-02-15 22:12:49'), - (2036,75,2,6530,'0.99','2005-07-12 04:33:19','2006-02-15 22:12:49'), - (2037,75,2,6852,'2.99','2005-07-12 19:33:49','2006-02-15 22:12:49'), - (2038,75,1,7052,'2.99','2005-07-27 03:36:38','2006-02-15 22:12:49'), - (2039,75,1,7454,'4.99','2005-07-27 18:27:26','2006-02-15 22:12:49'), - (2040,75,1,7843,'0.99','2005-07-28 09:10:22','2006-02-15 22:12:49'), - (2041,75,2,7897,'2.99','2005-07-28 11:01:51','2006-02-15 22:12:49'), - (2042,75,2,8202,'1.99','2005-07-28 23:11:45','2006-02-15 22:12:49'), - (2043,75,1,8823,'6.99','2005-07-29 22:22:12','2006-02-15 22:12:49'), - (2044,75,2,9168,'5.99','2005-07-30 11:31:17','2006-02-15 22:12:49'), - (2045,75,2,9442,'4.99','2005-07-30 21:44:31','2006-02-15 22:12:49'), - (2046,75,2,9501,'4.99','2005-07-30 23:59:21','2006-02-15 22:12:49'), - (2047,75,1,9783,'9.99','2005-07-31 10:15:46','2006-02-15 22:12:49'), - (2048,75,2,10653,'5.99','2005-08-01 16:28:07','2006-02-15 22:12:49'), - (2049,75,1,10726,'3.99','2005-08-01 19:14:53','2006-02-15 22:12:50'), - (2050,75,1,10871,'4.99','2005-08-02 00:27:24','2006-02-15 22:12:50'), - (2051,75,1,11330,'0.99','2005-08-02 16:45:33','2006-02-15 22:12:50'), - (2052,75,1,12002,'2.99','2005-08-17 18:56:02','2006-02-15 22:12:50'), - (2053,75,2,12239,'0.99','2005-08-18 03:26:42','2006-02-15 22:12:50'), - (2054,75,1,12336,'1.99','2005-08-18 06:59:41','2006-02-15 22:12:50'), - (2055,75,1,12412,'5.99','2005-08-18 09:49:52','2006-02-15 22:12:50'), - (2056,75,1,12426,'4.99','2005-08-18 10:24:11','2006-02-15 22:12:50'), - (2057,75,1,12662,'0.99','2005-08-18 19:10:41','2006-02-15 22:12:50'), - (2058,75,2,15928,'5.99','2005-08-23 18:23:24','2006-02-15 22:12:50'), - (2059,75,2,13534,'8.97','2006-02-14 15:16:03','2006-02-15 22:12:50'), - (2060,75,1,14488,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:50'), - (2061,75,2,15191,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:50'), - (2062,76,2,574,'1.99','2005-05-28 10:44:28','2006-02-15 22:12:50'), - (2063,76,1,926,'0.99','2005-05-30 12:15:54','2006-02-15 22:12:50'), - (2064,76,2,1487,'0.99','2005-06-15 21:27:42','2006-02-15 22:12:50'), - (2065,76,1,1791,'6.99','2005-06-16 20:04:28','2006-02-15 22:12:50'), - (2066,76,2,2111,'0.99','2005-06-17 19:47:21','2006-02-15 22:12:50'), - (2067,76,2,2397,'1.99','2005-06-18 15:51:25','2006-02-15 22:12:50'), - (2068,76,1,2894,'0.99','2005-06-20 02:22:42','2006-02-15 22:12:50'), - (2069,76,2,3416,'0.99','2005-06-21 17:05:29','2006-02-15 22:12:50'), - (2070,76,2,4099,'4.99','2005-07-07 06:20:33','2006-02-15 22:12:50'), - (2071,76,2,5571,'0.99','2005-07-10 03:48:20','2006-02-15 22:12:50'), - (2072,76,2,6789,'0.99','2005-07-12 16:34:40','2006-02-15 22:12:50'), - (2073,76,2,8253,'6.99','2005-07-29 00:57:06','2006-02-15 22:12:50'), - (2074,76,2,8357,'2.99','2005-07-29 04:59:44','2006-02-15 22:12:50'), - (2075,76,2,8405,'3.99','2005-07-29 06:28:19','2006-02-15 22:12:50'), - (2076,76,1,8935,'0.99','2005-07-30 02:38:45','2006-02-15 22:12:50'), - (2077,76,2,9312,'2.99','2005-07-30 16:59:17','2006-02-15 22:12:50'), - (2078,76,2,10082,'0.99','2005-07-31 20:09:32','2006-02-15 22:12:50'), - (2079,76,2,10795,'4.99','2005-08-01 21:56:37','2006-02-15 22:12:50'), - (2080,76,2,11172,'7.99','2005-08-02 10:27:52','2006-02-15 22:12:50'), - (2081,76,2,13697,'3.99','2005-08-20 09:21:08','2006-02-15 22:12:50'), - (2082,76,1,14637,'2.99','2005-08-21 19:01:00','2006-02-15 22:12:50'), - (2083,76,2,15169,'4.99','2005-08-22 15:21:56','2006-02-15 22:12:50'), - (2084,76,1,15566,'10.99','2005-08-23 05:17:23','2006-02-15 22:12:50'), - (2085,77,2,319,'2.99','2005-05-26 23:52:13','2006-02-15 22:12:50'), - (2086,77,1,419,'1.99','2005-05-27 15:15:11','2006-02-15 22:12:50'), - (2087,77,2,561,'2.99','2005-05-28 08:54:06','2006-02-15 22:12:50'), - (2088,77,1,586,'0.99','2005-05-28 12:03:00','2006-02-15 22:12:50'), - (2089,77,1,760,'5.99','2005-05-29 11:07:25','2006-02-15 22:12:50'), - (2090,77,1,1710,'4.99','2005-06-16 14:11:24','2006-02-15 22:12:50'), - (2091,77,1,2354,'3.99','2005-06-18 12:54:18','2006-02-15 22:12:50'), - (2092,77,2,2452,'8.99','2005-06-18 19:29:21','2006-02-15 22:12:50'), - (2093,77,1,3151,'2.99','2005-06-20 20:36:53','2006-02-15 22:12:50'), - (2094,77,2,3238,'0.99','2005-06-21 02:48:21','2006-02-15 22:12:50'), - (2095,77,2,4928,'0.99','2005-07-08 22:05:41','2006-02-15 22:12:50'), - (2096,77,2,6168,'0.99','2005-07-11 10:21:38','2006-02-15 22:12:50'), - (2097,77,2,6390,'2.99','2005-07-11 22:19:23','2006-02-15 22:12:50'), - (2098,77,1,7406,'3.99','2005-07-27 16:25:45','2006-02-15 22:12:50'), - (2099,77,1,7710,'0.99','2005-07-28 04:24:07','2006-02-15 22:12:50'), - (2100,77,2,8942,'4.99','2005-07-30 03:01:07','2006-02-15 22:12:50'), - (2101,77,1,9811,'0.99','2005-07-31 11:23:45','2006-02-15 22:12:50'), - (2102,77,2,10184,'4.99','2005-08-01 00:09:33','2006-02-15 22:12:50'), - (2103,77,1,10886,'2.99','2005-08-02 00:52:34','2006-02-15 22:12:50'), - (2104,77,1,10895,'0.99','2005-08-02 01:16:59','2006-02-15 22:12:50'), - (2105,77,2,10991,'0.99','2005-08-02 04:41:12','2006-02-15 22:12:50'), - (2106,77,1,11469,'2.99','2005-08-02 21:48:09','2006-02-15 22:12:50'), - (2107,77,2,11767,'7.99','2005-08-17 10:00:40','2006-02-15 22:12:50'), - (2108,77,1,12065,'6.99','2005-08-17 21:31:46','2006-02-15 22:12:50'), - (2109,77,2,12328,'1.99','2005-08-18 06:43:56','2006-02-15 22:12:50'), - (2110,77,2,13752,'9.99','2005-08-20 11:17:45','2006-02-15 22:12:50'), - (2111,77,2,14530,'4.99','2005-08-21 15:10:50','2006-02-15 22:12:50'), - (2112,77,2,15359,'2.99','2005-08-22 21:34:00','2006-02-15 22:12:50'), - (2113,78,1,2207,'2.99','2005-06-18 02:19:21','2006-02-15 22:12:50'), - (2114,78,2,2949,'6.99','2005-06-20 06:05:53','2006-02-15 22:12:50'), - (2115,78,2,3248,'7.99','2005-06-21 03:12:21','2006-02-15 22:12:50'), - (2116,78,1,3593,'4.99','2005-07-06 04:39:52','2006-02-15 22:12:50'), - (2117,78,2,4227,'5.99','2005-07-07 12:41:36','2006-02-15 22:12:50'), - (2118,78,2,4627,'2.99','2005-07-08 08:24:39','2006-02-15 22:12:50'), - (2119,78,2,4778,'0.99','2005-07-08 15:51:51','2006-02-15 22:12:50'), - (2120,78,1,5078,'1.99','2005-07-09 05:20:24','2006-02-15 22:12:50'), - (2121,78,2,5604,'0.99','2005-07-10 05:05:00','2006-02-15 22:12:51'), - (2122,78,1,6005,'0.99','2005-07-11 01:36:42','2006-02-15 22:12:51'), - (2123,78,1,6344,'4.99','2005-07-11 20:04:43','2006-02-15 22:12:51'), - (2124,78,2,7200,'1.99','2005-07-27 08:57:38','2006-02-15 22:12:51'), - (2125,78,2,7747,'4.99','2005-07-28 05:50:11','2006-02-15 22:12:51'), - (2126,78,2,7926,'3.99','2005-07-28 12:13:02','2006-02-15 22:12:51'), - (2127,78,1,7957,'6.99','2005-07-28 13:34:08','2006-02-15 22:12:51'), - (2128,78,2,8920,'4.99','2005-07-30 01:59:24','2006-02-15 22:12:51'), - (2129,78,1,9068,'5.99','2005-07-30 07:31:45','2006-02-15 22:12:51'), - (2130,78,2,10350,'3.99','2005-08-01 05:30:05','2006-02-15 22:12:51'), - (2131,78,1,10590,'2.99','2005-08-01 14:11:53','2006-02-15 22:12:51'), - (2132,78,1,10831,'7.99','2005-08-01 23:22:45','2006-02-15 22:12:51'), - (2133,78,1,10942,'10.99','2005-08-02 03:16:31','2006-02-15 22:12:51'), - (2134,78,2,12474,'8.99','2005-08-18 12:10:03','2006-02-15 22:12:51'), - (2135,78,2,12653,'4.99','2005-08-18 18:53:17','2006-02-15 22:12:51'), - (2136,78,2,13124,'5.99','2005-08-19 11:55:59','2006-02-15 22:12:51'), - (2137,78,1,13432,'0.99','2005-08-19 23:29:06','2006-02-15 22:12:51'), - (2138,78,2,13792,'5.99','2005-08-20 12:21:37','2006-02-15 22:12:51'), - (2139,78,2,14620,'2.99','2005-08-21 18:10:43','2006-02-15 22:12:51'), - (2140,78,1,14716,'0.99','2005-08-21 21:29:55','2006-02-15 22:12:51'), - (2141,78,1,14810,'2.99','2005-08-22 01:08:34','2006-02-15 22:12:51'), - (2142,78,2,14862,'7.99','2005-08-22 02:51:41','2006-02-15 22:12:51'), - (2143,78,2,16039,'2.99','2005-08-23 22:18:51','2006-02-15 22:12:51'), - (2144,79,1,840,'4.99','2005-05-30 00:28:41','2006-02-15 22:12:51'), - (2145,79,1,859,'2.99','2005-05-30 02:36:20','2006-02-15 22:12:51'), - (2146,79,1,928,'2.99','2005-05-30 12:27:14','2006-02-15 22:12:51'), - (2147,79,2,3096,'4.99','2005-06-20 16:17:56','2006-02-15 22:12:51'), - (2148,79,2,3178,'2.99','2005-06-20 22:35:12','2006-02-15 22:12:51'), - (2149,79,1,3641,'0.99','2005-07-06 07:17:09','2006-02-15 22:12:51'), - (2150,79,1,3748,'2.99','2005-07-06 12:11:22','2006-02-15 22:12:51'), - (2151,79,2,4049,'4.99','2005-07-07 03:34:53','2006-02-15 22:12:51'), - (2152,79,1,4530,'4.99','2005-07-08 03:27:05','2006-02-15 22:12:51'), - (2153,79,2,4736,'4.99','2005-07-08 13:22:55','2006-02-15 22:12:51'), - (2154,79,2,5205,'2.99','2005-07-09 10:56:37','2006-02-15 22:12:51'), - (2155,79,1,5555,'2.99','2005-07-10 03:08:55','2006-02-15 22:12:51'), - (2156,79,2,6162,'5.99','2005-07-11 10:12:30','2006-02-15 22:12:51'), - (2157,79,1,7220,'9.99','2005-07-27 09:35:54','2006-02-15 22:12:51'), - (2158,79,1,8849,'2.99','2005-07-29 23:21:01','2006-02-15 22:12:51'), - (2159,79,1,9814,'1.99','2005-07-31 11:29:46','2006-02-15 22:12:51'), - (2160,79,2,9845,'6.99','2005-07-31 12:28:05','2006-02-15 22:12:51'), - (2161,79,1,9989,'0.99','2005-07-31 17:22:39','2006-02-15 22:12:51'), - (2162,79,1,10676,'2.99','2005-08-01 17:14:15','2006-02-15 22:12:51'), - (2163,79,2,11641,'4.99','2005-08-17 04:45:39','2006-02-15 22:12:51'), - (2164,79,2,13026,'2.99','2005-08-19 08:22:45','2006-02-15 22:12:51'), - (2165,79,1,14179,'0.99','2005-08-21 03:14:27','2006-02-15 22:12:51'), - (2166,80,1,2596,'2.99','2005-06-19 05:48:26','2006-02-15 22:12:51'), - (2167,80,2,2805,'8.99','2005-06-19 19:29:17','2006-02-15 22:12:51'), - (2168,80,1,3367,'3.99','2005-06-21 13:08:21','2006-02-15 22:12:51'), - (2169,80,2,3623,'4.99','2005-07-06 06:05:23','2006-02-15 22:12:51'), - (2170,80,2,4268,'8.99','2005-07-07 14:36:05','2006-02-15 22:12:51'), - (2171,80,2,4299,'3.99','2005-07-07 16:33:48','2006-02-15 22:12:51'), - (2172,80,1,4688,'5.99','2005-07-08 11:03:29','2006-02-15 22:12:51'), - (2173,80,2,5420,'3.99','2005-07-09 20:48:42','2006-02-15 22:12:51'), - (2174,80,2,5452,'4.99','2005-07-09 22:23:21','2006-02-15 22:12:51'), - (2175,80,1,6199,'5.99','2005-07-11 12:16:03','2006-02-15 22:12:51'), - (2176,80,2,6417,'6.99','2005-07-11 23:35:11','2006-02-15 22:12:51'), - (2177,80,2,6707,'1.99','2005-07-12 13:07:55','2006-02-15 22:12:51'), - (2178,80,2,7558,'0.99','2005-07-27 22:19:08','2006-02-15 22:12:51'), - (2179,80,1,8509,'5.99','2005-07-29 09:38:19','2006-02-15 22:12:51'), - (2180,80,1,8884,'6.99','2005-07-30 00:26:22','2006-02-15 22:12:51'), - (2181,80,1,10313,'0.99','2005-08-01 04:29:29','2006-02-15 22:12:51'), - (2182,80,1,10656,'6.99','2005-08-01 16:38:04','2006-02-15 22:12:51'), - (2183,80,1,10690,'8.99','2005-08-01 18:05:54','2006-02-15 22:12:51'), - (2184,80,2,11101,'5.99','2005-08-02 08:08:24','2006-02-15 22:12:51'), - (2185,80,2,11839,'0.99','2005-08-17 13:08:45','2006-02-15 22:12:51'), - (2186,80,1,11850,'1.99','2005-08-17 13:30:15','2006-02-15 22:12:51'), - (2187,80,2,12468,'2.99','2005-08-18 11:41:47','2006-02-15 22:12:51'), - (2188,80,1,13352,'4.99','2005-08-19 20:51:40','2006-02-15 22:12:51'), - (2189,80,2,13395,'0.99','2005-08-19 22:05:40','2006-02-15 22:12:51'), - (2190,80,1,13724,'4.99','2005-08-20 10:07:28','2006-02-15 22:12:51'), - (2191,80,2,13851,'0.99','2005-08-20 14:44:22','2006-02-15 22:12:51'), - (2192,80,1,14916,'0.99','2005-08-22 04:56:57','2006-02-15 22:12:52'), - (2193,80,1,15648,'8.99','2005-08-23 08:27:57','2006-02-15 22:12:52'), - (2194,80,1,16012,'5.99','2005-08-23 21:13:39','2006-02-15 22:12:52'), - (2195,80,2,12457,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:52'), - (2196,81,1,289,'0.99','2005-05-26 20:01:09','2006-02-15 22:12:52'), - (2197,81,1,2714,'1.99','2005-06-19 14:26:09','2006-02-15 22:12:52'), - (2198,81,1,2854,'5.99','2005-06-19 23:11:48','2006-02-15 22:12:52'), - (2199,81,1,3229,'4.99','2005-06-21 02:20:41','2006-02-15 22:12:52'), - (2200,81,1,3879,'2.99','2005-07-06 18:31:20','2006-02-15 22:12:52'), - (2201,81,2,4983,'9.99','2005-07-09 00:34:16','2006-02-15 22:12:52'), - (2202,81,1,5468,'0.99','2005-07-09 23:06:09','2006-02-15 22:12:52'), - (2203,81,2,7130,'4.99','2005-07-27 06:23:36','2006-02-15 22:12:52'), - (2204,81,1,7709,'0.99','2005-07-28 04:22:14','2006-02-15 22:12:52'), - (2205,81,2,9454,'3.99','2005-07-30 22:20:09','2006-02-15 22:12:52'), - (2206,81,2,10456,'0.99','2005-08-01 09:17:21','2006-02-15 22:12:52'), - (2207,81,1,11837,'5.99','2005-08-17 13:04:41','2006-02-15 22:12:52'), - (2208,81,2,12181,'4.99','2005-08-18 01:28:18','2006-02-15 22:12:52'), - (2209,81,2,13820,'5.99','2005-08-20 13:26:37','2006-02-15 22:12:52'), - (2210,81,1,14128,'4.99','2005-08-21 01:35:58','2006-02-15 22:12:52'), - (2211,81,1,14642,'3.99','2005-08-21 19:09:40','2006-02-15 22:12:52'), - (2212,81,2,14748,'7.99','2005-08-21 23:02:02','2006-02-15 22:12:52'), - (2213,81,1,15224,'5.99','2005-08-22 17:18:05','2006-02-15 22:12:52'), - (2214,81,1,15602,'4.99','2005-08-23 06:41:07','2006-02-15 22:12:52'), - (2215,81,1,15823,'4.99','2005-08-23 15:08:00','2006-02-15 22:12:52'), - (2216,81,1,15858,'2.99','2005-08-23 16:07:15','2006-02-15 22:12:52'), - (2217,81,2,15884,'1.99','2005-08-23 16:45:28','2006-02-15 22:12:52'), - (2218,82,2,145,'2.99','2005-05-25 23:59:03','2006-02-15 22:12:52'), - (2219,82,2,288,'8.99','2005-05-26 19:47:49','2006-02-15 22:12:52'), - (2220,82,1,1438,'0.99','2005-06-15 18:38:51','2006-02-15 22:12:52'), - (2221,82,2,1570,'0.99','2005-06-16 03:21:33','2006-02-15 22:12:52'), - (2222,82,1,2506,'8.99','2005-06-18 23:29:53','2006-02-15 22:12:52'), - (2223,82,1,2819,'8.99','2005-06-19 20:13:33','2006-02-15 22:12:52'), - (2224,82,2,3332,'0.99','2005-06-21 09:55:12','2006-02-15 22:12:52'), - (2225,82,1,3680,'2.99','2005-07-06 09:16:10','2006-02-15 22:12:52'), - (2226,82,1,4598,'6.99','2005-07-08 06:46:26','2006-02-15 22:12:52'), - (2227,82,2,5746,'4.99','2005-07-10 12:15:12','2006-02-15 22:12:52'), - (2228,82,2,6082,'6.99','2005-07-11 05:12:41','2006-02-15 22:12:52'), - (2229,82,2,6708,'6.99','2005-07-12 13:10:55','2006-02-15 22:12:52'), - (2230,82,2,7733,'9.99','2005-07-28 05:04:47','2006-02-15 22:12:52'), - (2231,82,2,7873,'0.99','2005-07-28 10:19:46','2006-02-15 22:12:52'), - (2232,82,1,8487,'4.99','2005-07-29 08:53:49','2006-02-15 22:12:52'), - (2233,82,2,9277,'3.99','2005-07-30 15:13:45','2006-02-15 22:12:52'), - (2234,82,1,9305,'8.99','2005-07-30 16:45:56','2006-02-15 22:12:52'), - (2235,82,1,9447,'6.99','2005-07-30 21:54:22','2006-02-15 22:12:52'), - (2236,82,1,11093,'4.99','2005-08-02 07:59:49','2006-02-15 22:12:52'), - (2237,82,2,11688,'5.99','2005-08-17 06:41:58','2006-02-15 22:12:52'), - (2238,82,1,12470,'3.99','2005-08-18 11:55:42','2006-02-15 22:12:52'), - (2239,82,1,13032,'0.99','2005-08-19 08:31:50','2006-02-15 22:12:52'), - (2240,82,2,13847,'6.99','2005-08-20 14:33:59','2006-02-15 22:12:52'), - (2241,82,2,14518,'0.99','2005-08-21 14:58:58','2006-02-15 22:12:52'), - (2242,82,2,14892,'4.99','2005-08-22 04:15:05','2006-02-15 22:12:52'), - (2243,82,2,15516,'3.99','2005-08-23 03:12:54','2006-02-15 22:12:52'), - (2244,83,2,222,'0.99','2005-05-26 10:14:38','2006-02-15 22:12:52'), - (2245,83,2,950,'0.99','2005-05-30 16:06:08','2006-02-15 22:12:52'), - (2246,83,2,989,'2.99','2005-05-30 23:11:51','2006-02-15 22:12:52'), - (2247,83,1,1354,'5.99','2005-06-15 13:13:49','2006-02-15 22:12:52'), - (2248,83,1,1591,'5.99','2005-06-16 05:12:37','2006-02-15 22:12:52'), - (2249,83,2,1617,'3.99','2005-06-16 07:06:06','2006-02-15 22:12:52'), - (2250,83,2,3230,'4.99','2005-06-21 02:23:16','2006-02-15 22:12:52'), - (2251,83,2,3722,'6.99','2005-07-06 11:10:27','2006-02-15 22:12:52'), - (2252,83,1,3754,'2.99','2005-07-06 12:35:44','2006-02-15 22:12:52'), - (2253,83,1,5218,'0.99','2005-07-09 11:57:12','2006-02-15 22:12:52'), - (2254,83,2,5394,'6.99','2005-07-09 19:36:15','2006-02-15 22:12:52'), - (2255,83,2,6194,'2.99','2005-07-11 11:51:00','2006-02-15 22:12:52'), - (2256,83,2,6861,'2.99','2005-07-12 19:56:52','2006-02-15 22:12:52'), - (2257,83,2,7721,'0.99','2005-07-28 04:42:58','2006-02-15 22:12:52'), - (2258,83,2,8729,'4.99','2005-07-29 18:23:02','2006-02-15 22:12:52'), - (2259,83,1,9867,'1.99','2005-07-31 13:17:04','2006-02-15 22:12:53'), - (2260,83,1,11408,'0.99','2005-08-02 19:25:13','2006-02-15 22:12:53'), - (2261,83,1,11565,'5.99','2005-08-17 01:28:05','2006-02-15 22:12:53'), - (2262,83,2,11777,'4.99','2005-08-17 10:27:19','2006-02-15 22:12:53'), - (2263,83,1,12258,'4.99','2005-08-18 04:11:13','2006-02-15 22:12:53'), - (2264,83,2,12985,'5.99','2005-08-19 07:08:05','2006-02-15 22:12:53'), - (2265,83,1,13875,'4.99','2005-08-20 15:13:11','2006-02-15 22:12:53'), - (2266,83,2,15498,'4.99','2005-08-23 02:33:27','2006-02-15 22:12:53'), - (2267,83,2,15737,'5.99','2005-08-23 11:52:18','2006-02-15 22:12:53'), - (2268,83,2,11563,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:53'), - (2269,84,2,408,'0.99','2005-05-27 13:57:39','2006-02-15 22:12:53'), - (2270,84,1,739,'6.99','2005-05-29 08:28:18','2006-02-15 22:12:53'), - (2271,84,1,834,'4.99','2005-05-29 23:24:30','2006-02-15 22:12:53'), - (2272,84,2,1195,'0.99','2005-06-15 01:37:38','2006-02-15 22:12:53'), - (2273,84,2,1320,'4.99','2005-06-15 10:42:13','2006-02-15 22:12:53'), - (2274,84,2,1815,'0.99','2005-06-16 21:16:07','2006-02-15 22:12:53'), - (2275,84,1,2012,'5.99','2005-06-17 11:57:15','2006-02-15 22:12:53'), - (2276,84,2,2042,'0.99','2005-06-17 14:31:02','2006-02-15 22:12:53'), - (2277,84,2,2409,'0.99','2005-06-18 16:53:33','2006-02-15 22:12:53'), - (2278,84,2,4079,'6.99','2005-07-07 05:06:27','2006-02-15 22:12:53'), - (2279,84,2,4838,'6.99','2005-07-08 18:11:00','2006-02-15 22:12:53'), - (2280,84,1,5221,'5.99','2005-07-09 12:02:23','2006-02-15 22:12:53'), - (2281,84,1,5237,'0.99','2005-07-09 12:56:58','2006-02-15 22:12:53'), - (2282,84,1,5971,'5.99','2005-07-11 00:05:58','2006-02-15 22:12:53'), - (2283,84,2,6259,'2.99','2005-07-11 15:25:52','2006-02-15 22:12:53'), - (2284,84,2,6415,'9.99','2005-07-11 23:27:52','2006-02-15 22:12:53'), - (2285,84,1,7854,'2.99','2005-07-28 09:42:31','2006-02-15 22:12:53'), - (2286,84,2,8019,'4.99','2005-07-28 15:37:43','2006-02-15 22:12:53'), - (2287,84,1,8654,'8.99','2005-07-29 15:04:27','2006-02-15 22:12:53'), - (2288,84,2,9074,'2.99','2005-07-30 07:50:10','2006-02-15 22:12:53'), - (2289,84,2,9680,'4.99','2005-07-31 06:41:46','2006-02-15 22:12:53'), - (2290,84,2,10540,'0.99','2005-08-01 12:24:42','2006-02-15 22:12:53'), - (2291,84,1,10872,'2.99','2005-08-02 00:27:50','2006-02-15 22:12:53'), - (2292,84,2,11220,'4.99','2005-08-02 12:31:41','2006-02-15 22:12:53'), - (2293,84,2,11424,'3.99','2005-08-02 19:57:42','2006-02-15 22:12:53'), - (2294,84,2,11453,'7.99','2005-08-02 21:00:05','2006-02-15 22:12:53'), - (2295,84,2,11899,'0.99','2005-08-17 15:29:12','2006-02-15 22:12:53'), - (2296,84,2,11960,'4.99','2005-08-17 17:24:30','2006-02-15 22:12:53'), - (2297,84,2,12364,'4.99','2005-08-18 07:55:09','2006-02-15 22:12:53'), - (2298,84,2,13115,'2.99','2005-08-19 11:27:43','2006-02-15 22:12:53'), - (2299,84,1,14330,'5.99','2005-08-21 08:29:20','2006-02-15 22:12:53'), - (2300,84,1,15190,'4.99','2005-08-22 15:57:38','2006-02-15 22:12:53'), - (2301,84,1,15255,'2.99','2005-08-22 18:16:50','2006-02-15 22:12:53'), - (2302,85,1,690,'9.99','2005-05-29 00:54:53','2006-02-15 22:12:53'), - (2303,85,2,908,'4.99','2005-05-30 10:38:37','2006-02-15 22:12:53'), - (2304,85,1,1685,'1.99','2005-06-16 12:06:57','2006-02-15 22:12:53'), - (2305,85,1,2131,'5.99','2005-06-17 21:02:25','2006-02-15 22:12:53'), - (2306,85,2,2794,'0.99','2005-06-19 18:53:05','2006-02-15 22:12:53'), - (2307,85,1,3165,'4.99','2005-06-20 21:29:17','2006-02-15 22:12:53'), - (2308,85,1,3307,'1.99','2005-06-21 07:52:30','2006-02-15 22:12:53'), - (2309,85,2,3418,'3.99','2005-06-21 17:06:38','2006-02-15 22:12:53'), - (2310,85,2,4451,'0.99','2005-07-07 23:29:54','2006-02-15 22:12:53'), - (2311,85,1,4705,'2.99','2005-07-08 11:50:38','2006-02-15 22:12:53'), - (2312,85,1,5051,'4.99','2005-07-09 03:57:53','2006-02-15 22:12:53'), - (2313,85,1,5519,'0.99','2005-07-10 01:18:32','2006-02-15 22:12:53'), - (2314,85,2,7906,'0.99','2005-07-28 11:31:42','2006-02-15 22:12:53'), - (2315,85,2,9427,'7.99','2005-07-30 21:16:33','2006-02-15 22:12:53'), - (2316,85,2,9957,'4.99','2005-07-31 16:03:55','2006-02-15 22:12:53'), - (2317,85,1,9985,'2.99','2005-07-31 17:14:47','2006-02-15 22:12:53'), - (2318,85,1,10328,'4.99','2005-08-01 04:56:10','2006-02-15 22:12:53'), - (2319,85,1,10548,'0.99','2005-08-01 12:44:32','2006-02-15 22:12:53'), - (2320,85,2,11067,'8.99','2005-08-02 07:03:24','2006-02-15 22:12:53'), - (2321,85,2,12036,'0.99','2005-08-17 20:19:06','2006-02-15 22:12:53'), - (2322,85,1,12456,'4.99','2005-08-18 11:21:51','2006-02-15 22:12:53'), - (2323,85,1,13727,'3.99','2005-08-20 10:08:53','2006-02-15 22:12:53'), - (2324,85,2,13733,'0.99','2005-08-20 10:25:12','2006-02-15 22:12:53'), - (2325,86,1,66,'1.99','2005-05-25 09:35:12','2006-02-15 22:12:53'), - (2326,86,2,1640,'4.99','2005-06-16 08:35:39','2006-02-15 22:12:54'), - (2327,86,2,1822,'0.99','2005-06-16 21:43:45','2006-02-15 22:12:54'), - (2328,86,2,1924,'2.99','2005-06-17 06:13:34','2006-02-15 22:12:54'), - (2329,86,1,2141,'4.99','2005-06-17 21:41:34','2006-02-15 22:12:54'), - (2330,86,1,2518,'4.99','2005-06-19 00:16:23','2006-02-15 22:12:54'), - (2331,86,1,3207,'0.99','2005-06-21 00:43:16','2006-02-15 22:12:54'), - (2332,86,2,3270,'4.99','2005-06-21 05:07:31','2006-02-15 22:12:54'), - (2333,86,1,3611,'0.99','2005-07-06 05:37:18','2006-02-15 22:12:54'), - (2334,86,2,3945,'4.99','2005-07-06 21:35:00','2006-02-15 22:12:54'), - (2335,86,1,4235,'2.99','2005-07-07 13:05:52','2006-02-15 22:12:54'), - (2336,86,1,4571,'9.99','2005-07-08 05:34:41','2006-02-15 22:12:54'), - (2337,86,2,5295,'0.99','2005-07-09 15:25:06','2006-02-15 22:12:54'), - (2338,86,1,5752,'8.99','2005-07-10 12:27:38','2006-02-15 22:12:54'), - (2339,86,2,6872,'7.99','2005-07-12 20:15:04','2006-02-15 22:12:54'), - (2340,86,1,7231,'2.99','2005-07-27 10:01:51','2006-02-15 22:12:54'), - (2341,86,1,7874,'10.99','2005-07-28 10:21:52','2006-02-15 22:12:54'), - (2342,86,2,8803,'5.99','2005-07-29 21:26:24','2006-02-15 22:12:54'), - (2343,86,1,8850,'2.99','2005-07-29 23:24:20','2006-02-15 22:12:54'), - (2344,86,2,9376,'4.99','2005-07-30 19:11:49','2006-02-15 22:12:54'), - (2345,86,2,10252,'8.99','2005-08-01 02:39:39','2006-02-15 22:12:54'), - (2346,86,2,10536,'4.99','2005-08-01 12:21:53','2006-02-15 22:12:54'), - (2347,86,2,10584,'6.99','2005-08-01 13:58:47','2006-02-15 22:12:54'), - (2348,86,2,11916,'0.99','2005-08-17 16:05:51','2006-02-15 22:12:54'), - (2349,86,1,12198,'2.99','2005-08-18 02:09:20','2006-02-15 22:12:54'), - (2350,86,2,12870,'3.99','2005-08-19 02:54:38','2006-02-15 22:12:54'), - (2351,86,2,13338,'4.99','2005-08-19 20:09:59','2006-02-15 22:12:54'), - (2352,86,1,13535,'4.99','2005-08-20 03:30:25','2006-02-15 22:12:54'), - (2353,86,1,13874,'2.99','2005-08-20 15:11:48','2006-02-15 22:12:54'), - (2354,86,2,14122,'1.99','2005-08-21 01:29:01','2006-02-15 22:12:54'), - (2355,86,2,15099,'4.99','2005-08-22 11:49:16','2006-02-15 22:12:54'), - (2356,86,1,15715,'1.99','2005-08-23 10:57:40','2006-02-15 22:12:54'), - (2357,86,2,15940,'5.99','2005-08-23 18:45:06','2006-02-15 22:12:54'), - (2358,87,2,451,'4.99','2005-05-27 19:27:54','2006-02-15 22:12:54'), - (2359,87,1,674,'2.99','2005-05-28 22:11:35','2006-02-15 22:12:54'), - (2360,87,2,1580,'4.99','2005-06-16 04:12:25','2006-02-15 22:12:54'), - (2361,87,1,1904,'2.99','2005-06-17 04:45:41','2006-02-15 22:12:54'), - (2362,87,2,2408,'2.99','2005-06-18 16:50:44','2006-02-15 22:12:54'), - (2363,87,1,2516,'4.99','2005-06-19 00:03:28','2006-02-15 22:12:54'), - (2364,87,2,3122,'9.99','2005-06-20 18:25:57','2006-02-15 22:12:54'), - (2365,87,1,5084,'7.99','2005-07-09 05:33:27','2006-02-15 22:12:54'), - (2366,87,1,5628,'3.99','2005-07-10 05:56:40','2006-02-15 22:12:54'), - (2367,87,2,5700,'4.99','2005-07-10 09:49:42','2006-02-15 22:12:54'), - (2368,87,1,6638,'4.99','2005-07-12 09:58:02','2006-02-15 22:12:54'), - (2369,87,2,7599,'2.99','2005-07-27 23:38:46','2006-02-15 22:12:54'), - (2370,87,2,8187,'7.99','2005-07-28 22:33:53','2006-02-15 22:12:54'), - (2371,87,1,8286,'5.99','2005-07-29 02:02:46','2006-02-15 22:12:54'), - (2372,87,2,8323,'4.99','2005-07-29 03:52:59','2006-02-15 22:12:54'), - (2373,87,2,9060,'0.99','2005-07-30 07:20:36','2006-02-15 22:12:54'), - (2374,87,1,9348,'2.99','2005-07-30 18:17:09','2006-02-15 22:12:54'), - (2375,87,2,9364,'8.99','2005-07-30 18:44:44','2006-02-15 22:12:54'), - (2376,87,2,10205,'4.99','2005-08-01 00:48:24','2006-02-15 22:12:54'), - (2377,87,1,10387,'4.99','2005-08-01 06:42:31','2006-02-15 22:12:54'), - (2378,87,1,12232,'0.99','2005-08-18 03:14:14','2006-02-15 22:12:54'), - (2379,87,1,12257,'8.99','2005-08-18 04:11:03','2006-02-15 22:12:54'), - (2380,87,1,12264,'5.99','2005-08-18 04:17:33','2006-02-15 22:12:54'), - (2381,87,1,13479,'0.99','2005-08-20 01:09:11','2006-02-15 22:12:54'), - (2382,87,1,13906,'0.99','2005-08-20 16:16:03','2006-02-15 22:12:54'), - (2383,87,2,14024,'10.99','2005-08-20 21:13:58','2006-02-15 22:12:54'), - (2384,87,1,14566,'2.99','2005-08-21 16:25:05','2006-02-15 22:12:54'), - (2385,87,1,15876,'2.99','2005-08-23 16:32:10','2006-02-15 22:12:54'), - (2386,87,2,15890,'4.99','2005-08-23 16:58:12','2006-02-15 22:12:54'), - (2387,87,2,12719,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:54'), - (2388,88,2,36,'2.99','2005-05-25 04:36:26','2006-02-15 22:12:54'), - (2389,88,1,1433,'2.99','2005-06-15 18:30:00','2006-02-15 22:12:54'), - (2390,88,1,2483,'7.99','2005-06-18 21:22:23','2006-02-15 22:12:54'), - (2391,88,1,2878,'2.99','2005-06-20 01:09:14','2006-02-15 22:12:55'), - (2392,88,2,3524,'0.99','2005-07-06 01:01:51','2006-02-15 22:12:55'), - (2393,88,2,3620,'0.99','2005-07-06 06:01:50','2006-02-15 22:12:55'), - (2394,88,2,3673,'5.99','2005-07-06 09:02:09','2006-02-15 22:12:55'), - (2395,88,1,3846,'5.99','2005-07-06 16:43:10','2006-02-15 22:12:55'), - (2396,88,1,6643,'1.99','2005-07-12 10:39:22','2006-02-15 22:12:55'), - (2397,88,1,6916,'4.99','2005-07-12 22:29:18','2006-02-15 22:12:55'), - (2398,88,1,7088,'5.99','2005-07-27 04:42:28','2006-02-15 22:12:55'), - (2399,88,1,7621,'8.99','2005-07-28 00:34:06','2006-02-15 22:12:55'), - (2400,88,1,8296,'2.99','2005-07-29 02:43:25','2006-02-15 22:12:55'), - (2401,88,2,8526,'2.99','2005-07-29 10:20:48','2006-02-15 22:12:55'), - (2402,88,1,8692,'2.99','2005-07-29 16:43:39','2006-02-15 22:12:55'), - (2403,88,1,10424,'0.99','2005-08-01 08:22:54','2006-02-15 22:12:55'), - (2404,88,1,11056,'6.99','2005-08-02 06:36:27','2006-02-15 22:12:55'), - (2405,88,2,14097,'2.99','2005-08-21 00:28:48','2006-02-15 22:12:55'), - (2406,88,2,14827,'5.99','2005-08-22 01:32:32','2006-02-15 22:12:55'), - (2407,88,2,15098,'3.99','2005-08-22 11:48:19','2006-02-15 22:12:55'), - (2408,88,1,15898,'4.99','2005-08-23 17:13:01','2006-02-15 22:12:55'), - (2409,89,2,141,'2.99','2005-05-25 23:34:53','2006-02-15 22:12:55'), - (2410,89,2,588,'0.99','2005-05-28 12:08:37','2006-02-15 22:12:55'), - (2411,89,1,740,'5.99','2005-05-29 08:30:36','2006-02-15 22:12:55'), - (2412,89,1,1252,'8.99','2005-06-15 06:05:18','2006-02-15 22:12:55'), - (2413,89,2,1407,'7.99','2005-06-15 16:45:07','2006-02-15 22:12:55'), - (2414,89,1,1948,'4.99','2005-06-17 08:06:53','2006-02-15 22:12:55'), - (2415,89,1,2523,'0.99','2005-06-19 00:45:56','2006-02-15 22:12:55'), - (2416,89,1,2835,'7.99','2005-06-19 21:44:11','2006-02-15 22:12:55'), - (2417,89,2,4152,'4.99','2005-07-07 08:50:33','2006-02-15 22:12:55'), - (2418,89,1,4488,'0.99','2005-07-08 01:22:23','2006-02-15 22:12:55'), - (2419,89,1,4764,'8.99','2005-07-08 15:01:25','2006-02-15 22:12:55'), - (2420,89,2,5144,'7.99','2005-07-09 08:09:53','2006-02-15 22:12:55'), - (2421,89,2,5436,'2.99','2005-07-09 21:31:11','2006-02-15 22:12:55'), - (2422,89,1,5483,'2.99','2005-07-09 23:54:09','2006-02-15 22:12:55'), - (2423,89,1,6772,'2.99','2005-07-12 15:55:35','2006-02-15 22:12:55'), - (2424,89,2,7370,'7.99','2005-07-27 15:15:53','2006-02-15 22:12:55'), - (2425,89,2,7729,'4.99','2005-07-28 04:57:57','2006-02-15 22:12:55'), - (2426,89,2,7995,'4.99','2005-07-28 15:00:09','2006-02-15 22:12:55'), - (2427,89,1,8003,'2.99','2005-07-28 15:11:27','2006-02-15 22:12:55'), - (2428,89,2,8070,'2.99','2005-07-28 17:26:56','2006-02-15 22:12:55'), - (2429,89,2,8972,'0.99','2005-07-30 04:06:25','2006-02-15 22:12:55'), - (2430,89,1,9328,'2.99','2005-07-30 17:32:11','2006-02-15 22:12:55'), - (2431,89,2,9646,'2.99','2005-07-31 05:43:28','2006-02-15 22:12:55'), - (2432,89,2,9767,'0.99','2005-07-31 09:46:49','2006-02-15 22:12:55'), - (2433,89,2,10164,'4.99','2005-07-31 23:17:57','2006-02-15 22:12:55'), - (2434,89,2,10806,'4.99','2005-08-01 22:25:29','2006-02-15 22:12:55'), - (2435,89,1,11090,'3.99','2005-08-02 07:56:40','2006-02-15 22:12:55'), - (2436,89,1,12118,'3.99','2005-08-17 23:14:25','2006-02-15 22:12:55'), - (2437,89,2,12431,'2.99','2005-08-18 10:34:59','2006-02-15 22:12:55'), - (2438,89,1,12756,'2.99','2005-08-18 22:52:13','2006-02-15 22:12:55'), - (2439,89,1,13823,'2.99','2005-08-20 13:42:10','2006-02-15 22:12:55'), - (2440,89,1,15845,'2.99','2005-08-23 15:38:34','2006-02-15 22:12:55'), - (2441,90,2,2033,'0.99','2005-06-17 13:24:43','2006-02-15 22:12:55'), - (2442,90,2,2584,'6.99','2005-06-19 05:02:36','2006-02-15 22:12:55'), - (2443,90,2,3132,'0.99','2005-06-20 19:09:46','2006-02-15 22:12:55'), - (2444,90,2,3729,'3.99','2005-07-06 11:30:29','2006-02-15 22:12:55'), - (2445,90,2,4371,'4.99','2005-07-07 20:06:45','2006-02-15 22:12:55'), - (2446,90,2,5272,'0.99','2005-07-09 14:26:01','2006-02-15 22:12:55'), - (2447,90,2,5539,'3.99','2005-07-10 02:42:58','2006-02-15 22:12:55'), - (2448,90,2,7035,'5.99','2005-07-27 03:06:09','2006-02-15 22:12:55'), - (2449,90,2,7058,'1.99','2005-07-27 03:50:46','2006-02-15 22:12:55'), - (2450,90,1,7428,'5.99','2005-07-27 17:21:52','2006-02-15 22:12:55'), - (2451,90,1,7946,'6.99','2005-07-28 13:01:22','2006-02-15 22:12:55'), - (2452,90,1,8024,'2.99','2005-07-28 15:55:40','2006-02-15 22:12:55'), - (2453,90,1,8408,'0.99','2005-07-29 06:40:40','2006-02-15 22:12:56'), - (2454,90,2,8870,'9.99','2005-07-30 00:08:08','2006-02-15 22:12:56'), - (2455,90,2,9337,'2.99','2005-07-30 18:02:25','2006-02-15 22:12:56'), - (2456,90,2,10206,'7.99','2005-08-01 00:52:40','2006-02-15 22:12:56'), - (2457,90,1,10722,'4.99','2005-08-01 19:07:08','2006-02-15 22:12:56'), - (2458,90,1,10835,'4.99','2005-08-01 23:28:49','2006-02-15 22:12:56'), - (2459,90,2,11231,'4.99','2005-08-02 13:02:11','2006-02-15 22:12:56'), - (2460,90,1,11516,'0.99','2005-08-16 23:54:47','2006-02-15 22:12:56'), - (2461,90,2,12019,'0.99','2005-08-17 19:48:55','2006-02-15 22:12:56'), - (2462,90,1,12788,'2.99','2005-08-19 00:15:09','2006-02-15 22:12:56'), - (2463,90,1,13051,'4.99','2005-08-19 09:31:33','2006-02-15 22:12:56'), - (2464,90,1,14608,'1.99','2005-08-21 17:57:22','2006-02-15 22:12:56'), - (2465,90,1,14807,'4.99','2005-08-22 00:57:43','2006-02-15 22:12:56'), - (2466,90,2,15061,'0.99','2005-08-22 10:29:44','2006-02-15 22:12:56'), - (2467,90,2,15217,'0.99','2005-08-22 16:58:31','2006-02-15 22:12:56'), - (2468,90,1,15674,'7.99','2005-08-23 09:16:39','2006-02-15 22:12:56'), - (2469,91,2,216,'5.99','2005-05-26 09:17:43','2006-02-15 22:12:56'), - (2470,91,1,1299,'4.99','2005-06-15 09:34:50','2006-02-15 22:12:56'), - (2471,91,1,2457,'3.99','2005-06-18 19:38:20','2006-02-15 22:12:56'), - (2472,91,1,2908,'0.99','2005-06-20 03:16:52','2006-02-15 22:12:56'), - (2473,91,2,3384,'2.99','2005-06-21 14:07:35','2006-02-15 22:12:56'), - (2474,91,2,3802,'0.99','2005-07-06 15:06:09','2006-02-15 22:12:56'), - (2475,91,2,4103,'2.99','2005-07-07 06:25:28','2006-02-15 22:12:56'), - (2476,91,1,4245,'4.99','2005-07-07 13:48:33','2006-02-15 22:12:56'), - (2477,91,1,4321,'4.99','2005-07-07 17:52:38','2006-02-15 22:12:56'), - (2478,91,1,4673,'4.99','2005-07-08 10:16:00','2006-02-15 22:12:56'), - (2479,91,2,5025,'4.99','2005-07-09 02:28:24','2006-02-15 22:12:56'), - (2480,91,2,5187,'1.99','2005-07-09 10:19:51','2006-02-15 22:12:56'), - (2481,91,2,5701,'0.99','2005-07-10 09:56:24','2006-02-15 22:12:56'), - (2482,91,1,6078,'4.99','2005-07-11 05:06:52','2006-02-15 22:12:56'), - (2483,91,1,6178,'2.99','2005-07-11 10:59:09','2006-02-15 22:12:56'), - (2484,91,2,6860,'2.99','2005-07-12 19:54:17','2006-02-15 22:12:56'), - (2485,91,2,7143,'0.99','2005-07-27 06:56:31','2006-02-15 22:12:56'), - (2486,91,2,7637,'0.99','2005-07-28 01:12:25','2006-02-15 22:12:56'), - (2487,91,1,7966,'4.99','2005-07-28 13:53:54','2006-02-15 22:12:56'), - (2488,91,1,8313,'0.99','2005-07-29 03:34:21','2006-02-15 22:12:56'), - (2489,91,2,8873,'0.99','2005-07-30 00:14:32','2006-02-15 22:12:56'), - (2490,91,2,9228,'2.99','2005-07-30 13:36:57','2006-02-15 22:12:56'), - (2491,91,2,9396,'4.99','2005-07-30 20:07:24','2006-02-15 22:12:56'), - (2492,91,2,10008,'4.99','2005-07-31 17:59:36','2006-02-15 22:12:56'), - (2493,91,2,11418,'0.99','2005-08-02 19:45:33','2006-02-15 22:12:56'), - (2494,91,1,12847,'0.99','2005-08-19 02:04:07','2006-02-15 22:12:56'), - (2495,91,2,13222,'4.99','2005-08-19 15:47:58','2006-02-15 22:12:56'), - (2496,91,2,13309,'4.99','2005-08-19 19:04:00','2006-02-15 22:12:56'), - (2497,91,1,14132,'0.99','2005-08-21 01:43:58','2006-02-15 22:12:56'), - (2498,91,2,14888,'2.99','2005-08-22 04:09:18','2006-02-15 22:12:56'), - (2499,91,1,15122,'1.99','2005-08-22 12:47:45','2006-02-15 22:12:56'), - (2500,91,1,15341,'4.99','2005-08-22 20:56:31','2006-02-15 22:12:56'), - (2501,91,1,15707,'1.99','2005-08-23 10:35:45','2006-02-15 22:12:56'), - (2502,91,2,15886,'4.99','2005-08-23 16:50:53','2006-02-15 22:12:56'), - (2503,91,1,12902,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:56'), - (2504,92,1,271,'5.99','2005-05-26 16:22:01','2006-02-15 22:12:56'), - (2505,92,1,456,'4.99','2005-05-27 19:50:06','2006-02-15 22:12:56'), - (2506,92,2,2084,'4.99','2005-06-17 17:17:19','2006-02-15 22:12:56'), - (2507,92,1,2521,'0.99','2005-06-19 00:41:08','2006-02-15 22:12:56'), - (2508,92,1,2740,'8.99','2005-06-19 15:59:04','2006-02-15 22:12:56'), - (2509,92,2,3595,'8.99','2005-07-06 04:59:49','2006-02-15 22:12:56'), - (2510,92,2,3716,'7.99','2005-07-06 10:52:32','2006-02-15 22:12:56'), - (2511,92,1,4360,'2.99','2005-07-07 19:31:12','2006-02-15 22:12:56'), - (2512,92,2,4828,'4.99','2005-07-08 17:52:29','2006-02-15 22:12:56'), - (2513,92,2,5497,'5.99','2005-07-10 00:23:23','2006-02-15 22:12:56'), - (2514,92,2,5620,'7.99','2005-07-10 05:30:52','2006-02-15 22:12:56'), - (2515,92,1,5792,'6.99','2005-07-10 14:22:19','2006-02-15 22:12:57'), - (2516,92,2,5919,'2.99','2005-07-10 21:32:14','2006-02-15 22:12:57'), - (2517,92,1,6158,'0.99','2005-07-11 09:50:24','2006-02-15 22:12:57'), - (2518,92,2,6277,'6.99','2005-07-11 16:19:01','2006-02-15 22:12:57'), - (2519,92,1,7073,'4.99','2005-07-27 04:03:26','2006-02-15 22:12:57'), - (2520,92,1,7832,'1.99','2005-07-28 08:46:11','2006-02-15 22:12:57'), - (2521,92,1,8494,'4.99','2005-07-29 09:04:32','2006-02-15 22:12:57'), - (2522,92,1,8938,'4.99','2005-07-30 02:56:08','2006-02-15 22:12:57'), - (2523,92,1,9240,'4.99','2005-07-30 13:57:54','2006-02-15 22:12:57'), - (2524,92,2,11203,'4.99','2005-08-02 11:52:41','2006-02-15 22:12:57'), - (2525,92,2,11245,'2.99','2005-08-02 13:33:50','2006-02-15 22:12:57'), - (2526,92,1,11849,'4.99','2005-08-17 13:24:55','2006-02-15 22:12:57'), - (2527,92,2,13020,'5.99','2005-08-19 08:07:50','2006-02-15 22:12:57'), - (2528,92,1,13495,'0.99','2005-08-20 01:40:25','2006-02-15 22:12:57'), - (2529,92,1,13620,'2.99','2005-08-20 06:41:27','2006-02-15 22:12:57'), - (2530,92,1,14798,'0.99','2005-08-22 00:44:08','2006-02-15 22:12:57'), - (2531,92,2,14998,'4.99','2005-08-22 07:53:14','2006-02-15 22:12:57'), - (2532,93,2,113,'2.99','2005-05-25 19:07:40','2006-02-15 22:12:57'), - (2533,93,2,420,'6.99','2005-05-27 15:19:38','2006-02-15 22:12:57'), - (2534,93,1,1025,'4.99','2005-05-31 03:41:37','2006-02-15 22:12:57'), - (2535,93,2,2256,'4.99','2005-06-18 05:21:56','2006-02-15 22:12:57'), - (2536,93,1,3109,'0.99','2005-06-20 17:33:55','2006-02-15 22:12:57'), - (2537,93,1,4733,'2.99','2005-07-08 13:12:07','2006-02-15 22:12:57'), - (2538,93,2,5130,'4.99','2005-07-09 07:29:45','2006-02-15 22:12:57'), - (2539,93,2,6287,'4.99','2005-07-11 17:00:04','2006-02-15 22:12:57'), - (2540,93,1,6586,'4.99','2005-07-12 06:56:24','2006-02-15 22:12:57'), - (2541,93,1,7301,'2.99','2005-07-27 12:50:23','2006-02-15 22:12:57'), - (2542,93,1,8233,'0.99','2005-07-29 00:16:23','2006-02-15 22:12:57'), - (2543,93,2,11271,'5.99','2005-08-02 14:18:22','2006-02-15 22:12:57'), - (2544,93,1,12704,'4.99','2005-08-18 20:43:00','2006-02-15 22:12:57'), - (2545,93,1,13555,'2.99','2005-08-20 04:09:50','2006-02-15 22:12:57'), - (2546,93,2,13904,'2.99','2005-08-20 16:11:34','2006-02-15 22:12:57'), - (2547,93,1,13950,'8.99','2005-08-20 17:58:00','2006-02-15 22:12:57'), - (2548,93,1,13993,'4.99','2005-08-20 19:32:29','2006-02-15 22:12:57'), - (2549,93,1,14195,'0.99','2005-08-21 03:40:35','2006-02-15 22:12:57'), - (2550,93,2,14333,'4.99','2005-08-21 08:31:03','2006-02-15 22:12:57'), - (2551,93,2,15324,'5.99','2005-08-22 20:23:13','2006-02-15 22:12:57'), - (2552,93,2,15631,'2.99','2005-08-23 07:30:23','2006-02-15 22:12:57'), - (2553,93,1,15696,'0.99','2005-08-23 10:04:17','2006-02-15 22:12:57'), - (2554,93,2,15913,'1.99','2005-08-23 17:48:30','2006-02-15 22:12:57'), - (2555,94,1,127,'2.99','2005-05-25 21:10:40','2006-02-15 22:12:57'), - (2556,94,2,629,'4.99','2005-05-28 17:19:15','2006-02-15 22:12:57'), - (2557,94,2,1213,'2.99','2005-06-15 03:14:05','2006-02-15 22:12:57'), - (2558,94,1,1367,'4.99','2005-06-15 14:25:17','2006-02-15 22:12:57'), - (2559,94,2,1734,'3.99','2005-06-16 15:49:30','2006-02-15 22:12:57'), - (2560,94,2,2620,'4.99','2005-06-19 08:06:29','2006-02-15 22:12:57'), - (2561,94,1,2816,'2.99','2005-06-19 20:04:23','2006-02-15 22:12:57'), - (2562,94,2,4044,'0.99','2005-07-07 03:22:23','2006-02-15 22:12:57'), - (2563,94,1,4287,'8.99','2005-07-07 15:37:31','2006-02-15 22:12:57'), - (2564,94,2,5719,'4.99','2005-07-10 11:07:40','2006-02-15 22:12:57'), - (2565,94,2,5970,'4.99','2005-07-11 00:04:50','2006-02-15 22:12:57'), - (2566,94,2,7809,'2.99','2005-07-28 07:59:46','2006-02-15 22:12:57'), - (2567,94,2,7979,'0.99','2005-07-28 14:16:30','2006-02-15 22:12:57'), - (2568,94,1,9605,'4.99','2005-07-31 03:50:07','2006-02-15 22:12:57'), - (2569,94,1,12316,'2.99','2005-08-18 06:16:09','2006-02-15 22:12:57'), - (2570,94,1,13786,'5.99','2005-08-20 12:13:24','2006-02-15 22:12:57'), - (2571,94,2,14804,'1.99','2005-08-22 00:51:25','2006-02-15 22:12:57'), - (2572,94,1,14865,'4.99','2005-08-22 03:06:38','2006-02-15 22:12:57'), - (2573,94,1,14978,'0.99','2005-08-22 07:13:15','2006-02-15 22:12:57'), - (2574,94,1,15693,'0.99','2005-08-23 10:00:24','2006-02-15 22:12:58'), - (2575,94,1,15371,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:58'), - (2576,95,1,490,'4.99','2005-05-28 00:09:56','2006-02-15 22:12:58'), - (2577,95,2,1174,'2.99','2005-06-15 00:12:51','2006-02-15 22:12:58'), - (2578,95,2,1261,'1.99','2005-06-15 06:52:57','2006-02-15 22:12:58'), - (2579,95,2,3056,'2.99','2005-06-20 13:20:58','2006-02-15 22:12:58'), - (2580,95,2,3426,'0.99','2005-06-21 18:12:10','2006-02-15 22:12:58'), - (2581,95,1,3633,'1.99','2005-07-06 06:43:26','2006-02-15 22:12:58'), - (2582,95,2,4000,'4.99','2005-07-06 23:58:37','2006-02-15 22:12:58'), - (2583,95,1,4835,'5.99','2005-07-08 18:08:13','2006-02-15 22:12:58'), - (2584,95,2,7245,'5.99','2005-07-27 10:29:06','2006-02-15 22:12:58'), - (2585,95,1,7471,'4.99','2005-07-27 19:02:19','2006-02-15 22:12:58'), - (2586,95,1,9222,'6.99','2005-07-30 13:21:08','2006-02-15 22:12:58'), - (2587,95,1,9695,'6.99','2005-07-31 07:13:30','2006-02-15 22:12:58'), - (2588,95,1,9951,'4.99','2005-07-31 15:51:16','2006-02-15 22:12:58'), - (2589,95,1,10130,'0.99','2005-07-31 21:44:30','2006-02-15 22:12:58'), - (2590,95,2,10446,'0.99','2005-08-01 09:02:17','2006-02-15 22:12:58'), - (2591,95,2,12351,'5.99','2005-08-18 07:32:12','2006-02-15 22:12:58'), - (2592,95,2,13516,'7.99','2005-08-20 02:32:45','2006-02-15 22:12:58'), - (2593,95,2,14203,'4.99','2005-08-21 03:51:52','2006-02-15 22:12:58'), - (2594,96,1,1266,'3.99','2005-06-15 07:11:39','2006-02-15 22:12:58'), - (2595,96,2,1413,'7.99','2005-06-15 17:25:07','2006-02-15 22:12:58'), - (2596,96,2,1437,'0.99','2005-06-15 18:37:04','2006-02-15 22:12:58'), - (2597,96,1,2372,'0.99','2005-06-18 14:37:37','2006-02-15 22:12:58'), - (2598,96,2,2973,'5.99','2005-06-20 07:59:27','2006-02-15 22:12:58'), - (2599,96,1,3308,'0.99','2005-06-21 07:58:36','2006-02-15 22:12:58'), - (2600,96,2,3463,'0.99','2005-06-21 22:00:00','2006-02-15 22:12:58'), - (2601,96,1,3720,'2.99','2005-07-06 11:06:57','2006-02-15 22:12:58'), - (2602,96,2,3742,'2.99','2005-07-06 12:01:38','2006-02-15 22:12:58'), - (2603,96,1,4961,'4.99','2005-07-08 23:35:53','2006-02-15 22:12:58'), - (2604,96,1,5558,'0.99','2005-07-10 03:12:08','2006-02-15 22:12:58'), - (2605,96,1,5678,'4.99','2005-07-10 08:42:42','2006-02-15 22:12:58'), - (2606,96,1,5696,'2.99','2005-07-10 09:44:32','2006-02-15 22:12:58'), - (2607,96,2,8125,'4.99','2005-07-28 19:31:48','2006-02-15 22:12:58'), - (2608,96,1,8437,'6.99','2005-07-29 07:23:43','2006-02-15 22:12:58'), - (2609,96,2,9093,'3.99','2005-07-30 08:33:24','2006-02-15 22:12:58'), - (2610,96,1,9315,'4.99','2005-07-30 17:05:29','2006-02-15 22:12:58'), - (2611,96,1,9662,'3.99','2005-07-31 06:09:53','2006-02-15 22:12:58'), - (2612,96,2,10031,'4.99','2005-07-31 18:40:15','2006-02-15 22:12:58'), - (2613,96,2,11864,'4.99','2005-08-17 14:02:01','2006-02-15 22:12:58'), - (2614,96,1,11984,'3.99','2005-08-17 18:16:30','2006-02-15 22:12:58'), - (2615,96,1,12199,'4.99','2005-08-18 02:09:23','2006-02-15 22:12:58'), - (2616,96,2,12525,'4.99','2005-08-18 13:48:31','2006-02-15 22:12:58'), - (2617,96,1,13514,'0.99','2005-08-20 02:28:09','2006-02-15 22:12:58'), - (2618,96,1,13855,'4.99','2005-08-20 14:48:55','2006-02-15 22:12:58'), - (2619,96,1,14462,'3.99','2005-08-21 12:50:57','2006-02-15 22:12:58'), - (2620,96,2,15989,'4.99','2005-08-23 20:24:36','2006-02-15 22:12:58'), - (2621,97,2,2083,'2.99','2005-06-17 17:14:00','2006-02-15 22:12:58'), - (2622,97,2,2790,'4.99','2005-06-19 18:49:45','2006-02-15 22:12:58'), - (2623,97,1,3459,'0.99','2005-06-21 21:45:47','2006-02-15 22:12:59'), - (2624,97,1,3540,'2.99','2005-07-06 01:47:20','2006-02-15 22:12:59'), - (2625,97,2,3565,'0.99','2005-07-06 03:02:58','2006-02-15 22:12:59'), - (2626,97,2,3818,'4.99','2005-07-06 15:33:31','2006-02-15 22:12:59'), - (2627,97,2,4312,'4.99','2005-07-07 17:34:59','2006-02-15 22:12:59'), - (2628,97,1,4508,'4.99','2005-07-08 02:28:41','2006-02-15 22:12:59'), - (2629,97,2,5454,'4.99','2005-07-09 22:24:25','2006-02-15 22:12:59'), - (2630,97,1,6544,'0.99','2005-07-12 04:56:15','2006-02-15 22:12:59'), - (2631,97,1,6726,'0.99','2005-07-12 13:48:14','2006-02-15 22:12:59'), - (2632,97,2,7182,'5.99','2005-07-27 08:15:38','2006-02-15 22:12:59'), - (2633,97,2,7924,'0.99','2005-07-28 12:08:53','2006-02-15 22:12:59'), - (2634,97,2,8438,'2.99','2005-07-29 07:25:42','2006-02-15 22:12:59'), - (2635,97,1,9591,'4.99','2005-07-31 03:19:28','2006-02-15 22:12:59'), - (2636,97,1,10820,'2.99','2005-08-01 22:53:40','2006-02-15 22:12:59'), - (2637,97,2,14323,'4.99','2005-08-21 08:08:43','2006-02-15 22:12:59'), - (2638,97,1,15006,'0.99','2005-08-22 08:20:15','2006-02-15 22:12:59'), - (2639,98,2,214,'3.99','2005-05-26 08:48:49','2006-02-15 22:12:59'), - (2640,98,1,1362,'3.99','2005-06-15 13:53:32','2006-02-15 22:12:59'), - (2641,98,2,1590,'5.99','2005-06-16 05:11:41','2006-02-15 22:12:59'), - (2642,98,1,2213,'4.99','2005-06-18 02:36:47','2006-02-15 22:12:59'), - (2643,98,1,2445,'0.99','2005-06-18 19:02:11','2006-02-15 22:12:59'), - (2644,98,2,2601,'4.99','2005-06-19 06:09:44','2006-02-15 22:12:59'), - (2645,98,2,3399,'4.99','2005-06-21 15:47:48','2006-02-15 22:12:59'), - (2646,98,2,3682,'7.99','2005-07-06 09:22:48','2006-02-15 22:12:59'), - (2647,98,1,4549,'4.99','2005-07-08 04:25:03','2006-02-15 22:12:59'), - (2648,98,2,6951,'2.99','2005-07-26 23:47:31','2006-02-15 22:12:59'), - (2649,98,2,7120,'3.99','2005-07-27 05:56:39','2006-02-15 22:12:59'), - (2650,98,1,7530,'0.99','2005-07-27 21:18:58','2006-02-15 22:12:59'), - (2651,98,1,8324,'5.99','2005-07-29 03:56:05','2006-02-15 22:12:59'), - (2652,98,2,8622,'4.99','2005-07-29 13:53:28','2006-02-15 22:12:59'), - (2653,98,2,8818,'5.99','2005-07-29 22:14:04','2006-02-15 22:12:59'), - (2654,98,1,9753,'2.99','2005-07-31 09:22:38','2006-02-15 22:12:59'), - (2655,98,2,10694,'3.99','2005-08-01 18:15:07','2006-02-15 22:12:59'), - (2656,98,1,10925,'2.99','2005-08-02 02:24:38','2006-02-15 22:12:59'), - (2657,98,2,11007,'0.99','2005-08-02 05:05:53','2006-02-15 22:12:59'), - (2658,98,2,11200,'2.99','2005-08-02 11:48:36','2006-02-15 22:12:59'), - (2659,98,1,11635,'5.99','2005-08-17 04:33:17','2006-02-15 22:12:59'), - (2660,98,1,11730,'2.99','2005-08-17 08:22:00','2006-02-15 22:12:59'), - (2661,98,2,12221,'5.99','2005-08-18 02:50:51','2006-02-15 22:12:59'), - (2662,98,2,14459,'1.99','2005-08-21 12:48:08','2006-02-15 22:12:59'), - (2663,98,1,15536,'7.99','2005-08-23 03:58:28','2006-02-15 22:12:59'), - (2664,99,2,867,'0.99','2005-05-30 03:54:43','2006-02-15 22:12:59'), - (2665,99,1,1858,'4.99','2005-06-17 01:13:11','2006-02-15 22:12:59'), - (2666,99,1,2368,'2.99','2005-06-18 14:10:27','2006-02-15 22:12:59'), - (2667,99,2,3780,'6.99','2005-07-06 13:52:02','2006-02-15 22:12:59'), - (2668,99,2,4170,'2.99','2005-07-07 09:44:36','2006-02-15 22:12:59'), - (2669,99,2,4344,'4.99','2005-07-07 18:50:47','2006-02-15 22:12:59'), - (2670,99,1,4589,'0.99','2005-07-08 06:26:04','2006-02-15 22:12:59'), - (2671,99,2,4800,'4.99','2005-07-08 16:51:08','2006-02-15 22:12:59'), - (2672,99,2,4954,'2.99','2005-07-08 23:14:16','2006-02-15 22:12:59'), - (2673,99,2,5035,'2.99','2005-07-09 02:51:34','2006-02-15 22:12:59'), - (2674,99,1,5748,'2.99','2005-07-10 12:19:59','2006-02-15 22:12:59'), - (2675,99,1,6289,'2.99','2005-07-11 17:06:39','2006-02-15 22:12:59'), - (2676,99,1,6370,'3.99','2005-07-11 21:28:32','2006-02-15 22:12:59'), - (2677,99,2,6662,'4.99','2005-07-12 11:21:06','2006-02-15 22:12:59'), - (2678,99,1,7039,'4.99','2005-07-27 03:11:48','2006-02-15 22:12:59'), - (2679,99,1,8072,'0.99','2005-07-28 17:27:59','2006-02-15 22:12:59'), - (2680,99,2,8242,'7.99','2005-07-29 00:34:27','2006-02-15 22:12:59'), - (2681,99,2,8514,'0.99','2005-07-29 09:53:33','2006-02-15 22:12:59'), - (2682,99,2,10388,'7.99','2005-08-01 06:42:44','2006-02-15 22:12:59'), - (2683,99,1,10455,'1.99','2005-08-01 09:15:00','2006-02-15 22:13:00'), - (2684,99,2,11266,'4.99','2005-08-02 14:07:35','2006-02-15 22:13:00'), - (2685,99,2,12379,'0.99','2005-08-18 08:26:48','2006-02-15 22:13:00'), - (2686,99,2,12869,'8.99','2005-08-19 02:50:36','2006-02-15 22:13:00'), - (2687,99,1,11593,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'), - (2688,100,1,71,'0.99','2005-05-25 10:26:39','2006-02-15 22:13:00'), - (2689,100,2,1216,'4.99','2005-06-15 03:23:48','2006-02-15 22:13:00'), - (2690,100,1,1340,'3.99','2005-06-15 12:24:15','2006-02-15 22:13:00'), - (2691,100,1,1427,'2.99','2005-06-15 18:17:28','2006-02-15 22:13:00'), - (2692,100,2,3468,'6.99','2005-06-21 22:43:45','2006-02-15 22:13:00'), - (2693,100,2,3602,'5.99','2005-07-06 05:23:10','2006-02-15 22:13:00'), - (2694,100,1,3800,'8.99','2005-07-06 15:01:27','2006-02-15 22:13:00'), - (2695,100,1,4209,'2.99','2005-07-07 11:35:08','2006-02-15 22:13:00'), - (2696,100,1,4970,'8.99','2005-07-08 23:54:29','2006-02-15 22:13:00'), - (2697,100,2,4980,'6.99','2005-07-09 00:26:59','2006-02-15 22:13:00'), - (2698,100,2,5238,'4.99','2005-07-09 13:11:14','2006-02-15 22:13:00'), - (2699,100,2,5355,'6.99','2005-07-09 18:07:17','2006-02-15 22:13:00'), - (2700,100,1,6655,'4.99','2005-07-12 11:08:32','2006-02-15 22:13:00'), - (2701,100,2,7819,'4.99','2005-07-28 08:27:14','2006-02-15 22:13:00'), - (2702,100,1,7921,'1.99','2005-07-28 12:02:46','2006-02-15 22:13:00'), - (2703,100,2,8203,'0.99','2005-07-28 23:14:56','2006-02-15 22:13:00'), - (2704,100,2,9048,'5.99','2005-07-30 06:57:07','2006-02-15 22:13:00'), - (2705,100,1,9271,'4.99','2005-07-30 15:04:31','2006-02-15 22:13:00'), - (2706,100,1,11143,'0.99','2005-08-02 09:32:54','2006-02-15 22:13:00'), - (2707,100,2,11346,'4.99','2005-08-02 17:15:38','2006-02-15 22:13:00'), - (2708,100,1,12657,'0.99','2005-08-18 19:02:16','2006-02-15 22:13:00'), - (2709,100,1,15163,'0.99','2005-08-22 14:43:13','2006-02-15 22:13:00'), - (2710,100,2,15246,'3.99','2005-08-22 17:50:49','2006-02-15 22:13:00'), - (2711,100,2,15021,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'), - (2712,101,1,468,'9.99','2005-05-27 21:13:10','2006-02-15 22:13:00'), - (2713,101,1,4975,'2.99','2005-07-09 00:02:46','2006-02-15 22:13:00'), - (2714,101,2,5100,'2.99','2005-07-09 06:16:03','2006-02-15 22:13:00'), - (2715,101,1,5132,'5.99','2005-07-09 07:40:32','2006-02-15 22:13:00'), - (2716,101,2,5198,'2.99','2005-07-09 10:49:10','2006-02-15 22:13:00'), - (2717,101,1,5757,'2.99','2005-07-10 12:40:17','2006-02-15 22:13:00'), - (2718,101,2,6433,'5.99','2005-07-12 00:12:02','2006-02-15 22:13:00'), - (2719,101,2,7112,'5.99','2005-07-27 05:38:42','2006-02-15 22:13:00'), - (2720,101,2,7866,'8.99','2005-07-28 10:08:01','2006-02-15 22:13:00'), - (2721,101,1,8301,'0.99','2005-07-29 03:00:08','2006-02-15 22:13:00'), - (2722,101,2,8825,'1.99','2005-07-29 22:24:16','2006-02-15 22:13:00'), - (2723,101,2,8833,'4.99','2005-07-29 22:39:36','2006-02-15 22:13:00'), - (2724,101,2,9965,'6.99','2005-07-31 16:19:32','2006-02-15 22:13:00'), - (2725,101,2,10218,'0.99','2005-08-01 01:09:44','2006-02-15 22:13:00'), - (2726,101,1,10253,'6.99','2005-08-01 02:39:49','2006-02-15 22:13:00'), - (2727,101,1,10407,'0.99','2005-08-01 07:38:07','2006-02-15 22:13:00'), - (2728,101,2,11959,'4.99','2005-08-17 17:23:35','2006-02-15 22:13:00'), - (2729,101,2,12174,'2.99','2005-08-18 01:08:53','2006-02-15 22:13:00'), - (2730,101,1,12471,'4.99','2005-08-18 11:57:00','2006-02-15 22:13:00'), - (2731,101,2,13370,'1.99','2005-08-19 21:20:11','2006-02-15 22:13:00'), - (2732,101,1,14476,'0.99','2005-08-21 13:31:07','2006-02-15 22:13:00'), - (2733,101,2,14542,'3.99','2005-08-21 15:36:34','2006-02-15 22:13:00'), - (2734,101,2,15103,'2.99','2005-08-22 12:01:06','2006-02-15 22:13:00'), - (2735,101,2,12141,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'), - (2736,102,1,247,'4.99','2005-05-26 14:01:05','2006-02-15 22:13:00'), - (2737,102,1,358,'0.99','2005-05-27 06:43:59','2006-02-15 22:13:00'), - (2738,102,2,562,'1.99','2005-05-28 09:01:21','2006-02-15 22:13:00'), - (2739,102,2,1215,'2.99','2005-06-15 03:21:00','2006-02-15 22:13:00'), - (2740,102,2,2419,'8.99','2005-06-18 17:21:24','2006-02-15 22:13:00'), - (2741,102,2,3520,'1.99','2005-07-06 00:58:27','2006-02-15 22:13:00'), - (2742,102,2,3630,'1.99','2005-07-06 06:27:15','2006-02-15 22:13:01'), - (2743,102,2,3665,'4.99','2005-07-06 08:23:08','2006-02-15 22:13:01'), - (2744,102,1,4089,'6.99','2005-07-07 05:45:59','2006-02-15 22:13:01'), - (2745,102,2,4777,'3.99','2005-07-08 15:48:34','2006-02-15 22:13:01'), - (2746,102,1,4997,'6.99','2005-07-09 01:06:03','2006-02-15 22:13:01'), - (2747,102,1,5009,'5.99','2005-07-09 01:32:17','2006-02-15 22:13:01'), - (2748,102,1,5109,'4.99','2005-07-09 06:48:49','2006-02-15 22:13:01'), - (2749,102,2,5509,'5.99','2005-07-10 00:54:46','2006-02-15 22:13:01'), - (2750,102,1,5716,'2.99','2005-07-10 10:59:23','2006-02-15 22:13:01'), - (2751,102,2,6434,'5.99','2005-07-12 00:14:25','2006-02-15 22:13:01'), - (2752,102,2,7119,'0.99','2005-07-27 05:55:32','2006-02-15 22:13:01'), - (2753,102,2,7247,'0.99','2005-07-27 10:32:58','2006-02-15 22:13:01'), - (2754,102,2,7439,'6.99','2005-07-27 17:42:31','2006-02-15 22:13:01'), - (2755,102,1,8186,'0.99','2005-07-28 22:30:27','2006-02-15 22:13:01'), - (2756,102,1,8664,'5.99','2005-07-29 15:36:27','2006-02-15 22:13:01'), - (2757,102,2,9151,'3.99','2005-07-30 10:50:53','2006-02-15 22:13:01'), - (2758,102,1,9192,'2.99','2005-07-30 12:26:26','2006-02-15 22:13:01'), - (2759,102,2,9295,'0.99','2005-07-30 16:18:39','2006-02-15 22:13:01'), - (2760,102,2,9617,'2.99','2005-07-31 04:15:38','2006-02-15 22:13:01'), - (2761,102,1,9780,'4.99','2005-07-31 10:10:22','2006-02-15 22:13:01'), - (2762,102,2,10841,'1.99','2005-08-01 23:39:21','2006-02-15 22:13:01'), - (2763,102,2,11099,'4.99','2005-08-02 08:07:12','2006-02-15 22:13:01'), - (2764,102,1,11183,'4.99','2005-08-02 11:00:32','2006-02-15 22:13:01'), - (2765,102,2,12495,'4.99','2005-08-18 12:56:37','2006-02-15 22:13:01'), - (2766,102,1,13420,'9.99','2005-08-19 22:57:25','2006-02-15 22:13:01'), - (2767,102,1,15049,'1.99','2005-08-22 10:06:28','2006-02-15 22:13:01'), - (2768,102,2,16031,'3.99','2005-08-23 21:59:26','2006-02-15 22:13:01'), - (2769,103,1,240,'7.99','2005-05-26 12:40:23','2006-02-15 22:13:01'), - (2770,103,1,658,'9.99','2005-05-28 20:23:23','2006-02-15 22:13:01'), - (2771,103,2,1396,'4.99','2005-06-15 16:22:38','2006-02-15 22:13:01'), - (2772,103,1,2118,'0.99','2005-06-17 20:28:29','2006-02-15 22:13:01'), - (2773,103,1,2197,'0.99','2005-06-18 01:50:27','2006-02-15 22:13:01'), - (2774,103,1,2724,'0.99','2005-06-19 14:57:54','2006-02-15 22:13:01'), - (2775,103,2,3750,'6.99','2005-07-06 12:19:28','2006-02-15 22:13:01'), - (2776,103,1,3850,'4.99','2005-07-06 16:51:21','2006-02-15 22:13:01'), - (2777,103,2,4040,'6.99','2005-07-07 03:02:40','2006-02-15 22:13:01'), - (2778,103,1,4213,'2.99','2005-07-07 11:53:49','2006-02-15 22:13:01'), - (2779,103,1,4357,'1.99','2005-07-07 19:24:39','2006-02-15 22:13:01'), - (2780,103,2,4872,'4.99','2005-07-08 19:23:16','2006-02-15 22:13:01'), - (2781,103,2,5163,'4.99','2005-07-09 09:00:28','2006-02-15 22:13:01'), - (2782,103,1,6525,'5.99','2005-07-12 04:17:15','2006-02-15 22:13:01'), - (2783,103,2,6697,'6.99','2005-07-12 12:44:57','2006-02-15 22:13:01'), - (2784,103,2,6949,'2.99','2005-07-26 23:44:12','2006-02-15 22:13:01'), - (2785,103,1,7310,'0.99','2005-07-27 13:00:55','2006-02-15 22:13:01'), - (2786,103,2,7472,'6.99','2005-07-27 19:04:19','2006-02-15 22:13:01'), - (2787,103,1,8302,'0.99','2005-07-29 03:01:24','2006-02-15 22:13:01'), - (2788,103,1,8520,'4.99','2005-07-29 10:10:02','2006-02-15 22:13:01'), - (2789,103,2,9390,'4.99','2005-07-30 19:42:07','2006-02-15 22:13:01'), - (2790,103,2,12942,'7.99','2005-08-19 05:40:36','2006-02-15 22:13:01'), - (2791,103,1,13676,'0.99','2005-08-20 08:33:21','2006-02-15 22:13:01'), - (2792,103,2,14064,'2.99','2005-08-20 22:39:16','2006-02-15 22:13:01'), - (2793,103,2,14289,'4.99','2005-08-21 06:58:49','2006-02-15 22:13:01'), - (2794,103,2,15401,'8.99','2005-08-22 23:13:10','2006-02-15 22:13:01'), - (2795,103,1,15461,'5.99','2005-08-23 01:13:52','2006-02-15 22:13:01'), - (2796,103,1,15467,'3.99','2005-08-23 01:22:12','2006-02-15 22:13:01'), - (2797,103,1,15599,'5.99','2005-08-23 06:25:07','2006-02-15 22:13:01'), - (2798,103,2,15679,'0.99','2005-08-23 09:27:29','2006-02-15 22:13:02'), - (2799,103,2,16048,'8.99','2005-08-23 22:43:07','2006-02-15 22:13:02'), - (2800,104,1,163,'10.99','2005-05-26 02:26:23','2006-02-15 22:13:02'), - (2801,104,2,808,'3.99','2005-05-29 19:08:20','2006-02-15 22:13:02'), - (2802,104,2,1287,'3.99','2005-06-15 08:41:38','2006-02-15 22:13:02'), - (2803,104,1,2107,'0.99','2005-06-17 19:31:16','2006-02-15 22:13:02'), - (2804,104,2,2928,'0.99','2005-06-20 04:43:45','2006-02-15 22:13:02'), - (2805,104,2,3273,'2.99','2005-06-21 05:24:17','2006-02-15 22:13:02'), - (2806,104,2,4012,'4.99','2005-07-07 00:56:09','2006-02-15 22:13:02'), - (2807,104,2,4438,'6.99','2005-07-07 22:56:17','2006-02-15 22:13:02'), - (2808,104,2,4520,'4.99','2005-07-08 02:53:46','2006-02-15 22:13:02'), - (2809,104,1,4529,'7.99','2005-07-08 03:26:20','2006-02-15 22:13:02'), - (2810,104,1,4917,'2.99','2005-07-08 21:32:30','2006-02-15 22:13:02'), - (2811,104,1,5376,'1.99','2005-07-09 18:54:08','2006-02-15 22:13:02'), - (2812,104,2,7107,'2.99','2005-07-27 05:22:04','2006-02-15 22:13:02'), - (2813,104,1,8413,'1.99','2005-07-29 06:47:39','2006-02-15 22:13:02'), - (2814,104,1,9090,'3.99','2005-07-30 08:24:42','2006-02-15 22:13:02'), - (2815,104,2,9996,'5.99','2005-07-31 17:32:03','2006-02-15 22:13:02'), - (2816,104,1,11700,'2.99','2005-08-17 07:12:31','2006-02-15 22:13:02'), - (2817,104,1,12453,'3.99','2005-08-18 11:17:07','2006-02-15 22:13:02'), - (2818,104,1,13005,'0.99','2005-08-19 07:45:42','2006-02-15 22:13:02'), - (2819,104,1,13017,'1.99','2005-08-19 08:02:24','2006-02-15 22:13:02'), - (2820,104,1,13179,'4.99','2005-08-19 13:59:53','2006-02-15 22:13:02'), - (2821,104,1,13410,'3.99','2005-08-19 22:41:44','2006-02-15 22:13:02'), - (2822,104,1,14218,'3.99','2005-08-21 04:43:59','2006-02-15 22:13:02'), - (2823,104,2,15186,'0.99','2005-08-22 15:52:57','2006-02-15 22:13:02'), - (2824,105,1,327,'8.99','2005-05-27 01:18:57','2006-02-15 22:13:02'), - (2825,105,2,473,'7.99','2005-05-27 21:36:34','2006-02-15 22:13:02'), - (2826,105,1,485,'2.99','2005-05-27 23:40:52','2006-02-15 22:13:02'), - (2827,105,1,779,'6.99','2005-05-29 14:17:17','2006-02-15 22:13:02'), - (2828,105,2,1789,'3.99','2005-06-16 19:49:18','2006-02-15 22:13:02'), - (2829,105,2,1991,'3.99','2005-06-17 10:49:23','2006-02-15 22:13:02'), - (2830,105,2,2635,'3.99','2005-06-19 09:08:45','2006-02-15 22:13:02'), - (2831,105,2,5261,'4.99','2005-07-09 14:06:56','2006-02-15 22:13:02'), - (2832,105,1,5429,'4.99','2005-07-09 21:14:03','2006-02-15 22:13:02'), - (2833,105,2,5542,'2.99','2005-07-10 02:45:53','2006-02-15 22:13:02'), - (2834,105,2,5677,'4.99','2005-07-10 08:41:28','2006-02-15 22:13:02'), - (2835,105,2,6546,'4.99','2005-07-12 04:57:17','2006-02-15 22:13:02'), - (2836,105,1,7442,'2.99','2005-07-27 17:47:00','2006-02-15 22:13:02'), - (2837,105,2,8980,'2.99','2005-07-30 04:22:15','2006-02-15 22:13:02'), - (2838,105,2,9124,'3.99','2005-07-30 09:43:12','2006-02-15 22:13:02'), - (2839,105,2,9198,'5.99','2005-07-30 12:37:08','2006-02-15 22:13:02'), - (2840,105,2,9210,'9.99','2005-07-30 12:56:44','2006-02-15 22:13:02'), - (2841,105,1,10513,'4.99','2005-08-01 11:37:34','2006-02-15 22:13:02'), - (2842,105,1,12217,'0.99','2005-08-18 02:44:44','2006-02-15 22:13:02'), - (2843,105,2,12899,'2.99','2005-08-19 04:03:34','2006-02-15 22:13:02'), - (2844,105,1,13057,'6.99','2005-08-19 09:40:05','2006-02-15 22:13:02'), - (2845,105,1,13751,'2.99','2005-08-20 11:17:03','2006-02-15 22:13:02'), - (2846,105,2,14048,'0.99','2005-08-20 22:03:18','2006-02-15 22:13:02'), - (2847,105,2,15624,'4.99','2005-08-23 07:24:27','2006-02-15 22:13:02'), - (2848,105,2,15688,'4.99','2005-08-23 09:48:45','2006-02-15 22:13:02'), - (2849,105,2,15803,'2.99','2005-08-23 14:27:07','2006-02-15 22:13:02'), - (2850,106,2,552,'3.99','2005-05-28 07:53:38','2006-02-15 22:13:03'), - (2851,106,2,1156,'0.99','2005-05-31 22:37:34','2006-02-15 22:13:03'), - (2852,106,1,2295,'4.99','2005-06-18 07:56:18','2006-02-15 22:13:03'), - (2853,106,1,3023,'4.99','2005-06-20 11:18:11','2006-02-15 22:13:03'), - (2854,106,1,4229,'4.99','2005-07-07 12:43:23','2006-02-15 22:13:03'), - (2855,106,2,4277,'2.99','2005-07-07 14:52:12','2006-02-15 22:13:03'), - (2856,106,1,4665,'3.99','2005-07-08 10:04:24','2006-02-15 22:13:03'), - (2857,106,2,5453,'3.99','2005-07-09 22:24:11','2006-02-15 22:13:03'), - (2858,106,2,6992,'0.99','2005-07-27 01:04:45','2006-02-15 22:13:03'), - (2859,106,1,7224,'3.99','2005-07-27 09:44:26','2006-02-15 22:13:03'), - (2860,106,1,7483,'4.99','2005-07-27 19:25:00','2006-02-15 22:13:03'), - (2861,106,1,8115,'4.99','2005-07-28 19:14:17','2006-02-15 22:13:03'), - (2862,106,2,9072,'2.99','2005-07-30 07:45:49','2006-02-15 22:13:03'), - (2863,106,2,9747,'7.99','2005-07-31 09:16:57','2006-02-15 22:13:03'), - (2864,106,2,10213,'8.99','2005-08-01 01:03:18','2006-02-15 22:13:03'), - (2865,106,1,10228,'2.99','2005-08-01 01:43:18','2006-02-15 22:13:03'), - (2866,106,1,10444,'8.99','2005-08-01 09:01:40','2006-02-15 22:13:03'), - (2867,106,2,11436,'0.99','2005-08-02 20:16:06','2006-02-15 22:13:03'), - (2868,106,1,12159,'7.99','2005-08-18 00:36:09','2006-02-15 22:13:03'), - (2869,106,1,12845,'2.99','2005-08-19 02:02:37','2006-02-15 22:13:03'), - (2870,106,2,14431,'2.99','2005-08-21 11:31:15','2006-02-15 22:13:03'), - (2871,106,1,14920,'0.99','2005-08-22 05:08:58','2006-02-15 22:13:03'), - (2872,106,1,15154,'6.99','2005-08-22 14:27:37','2006-02-15 22:13:03'), - (2873,107,1,170,'5.99','2005-05-26 03:11:12','2006-02-15 22:13:03'), - (2874,107,1,1026,'5.99','2005-05-31 03:45:26','2006-02-15 22:13:03'), - (2875,107,2,1243,'2.99','2005-06-15 05:07:32','2006-02-15 22:13:03'), - (2876,107,2,2693,'6.99','2005-06-19 13:11:47','2006-02-15 22:13:03'), - (2877,107,2,2860,'4.99','2005-06-19 23:20:40','2006-02-15 22:13:03'), - (2878,107,2,2897,'3.99','2005-06-20 02:34:23','2006-02-15 22:13:03'), - (2879,107,1,3033,'3.99','2005-06-20 12:02:05','2006-02-15 22:13:03'), - (2880,107,2,3120,'0.99','2005-06-20 18:19:29','2006-02-15 22:13:03'), - (2881,107,2,3174,'0.99','2005-06-20 22:24:00','2006-02-15 22:13:03'), - (2882,107,2,3824,'6.99','2005-07-06 15:43:15','2006-02-15 22:13:03'), - (2883,107,2,5311,'4.99','2005-07-09 16:02:54','2006-02-15 22:13:03'), - (2884,107,2,5575,'2.99','2005-07-10 03:55:50','2006-02-15 22:13:03'), - (2885,107,2,5798,'3.99','2005-07-10 14:45:09','2006-02-15 22:13:03'), - (2886,107,2,6131,'2.99','2005-07-11 08:22:05','2006-02-15 22:13:03'), - (2887,107,2,6133,'0.99','2005-07-11 08:25:22','2006-02-15 22:13:03'), - (2888,107,1,6811,'5.99','2005-07-12 17:54:33','2006-02-15 22:13:03'), - (2889,107,2,6934,'6.99','2005-07-26 23:11:03','2006-02-15 22:13:03'), - (2890,107,2,7447,'4.99','2005-07-27 18:02:08','2006-02-15 22:13:03'), - (2891,107,1,7600,'7.99','2005-07-27 23:41:18','2006-02-15 22:13:03'), - (2892,107,1,8162,'4.99','2005-07-28 21:11:46','2006-02-15 22:13:03'), - (2893,107,2,8704,'1.99','2005-07-29 17:13:45','2006-02-15 22:13:03'), - (2894,107,1,9155,'2.99','2005-07-30 11:00:00','2006-02-15 22:13:03'), - (2895,107,2,9351,'2.99','2005-07-30 18:28:30','2006-02-15 22:13:03'), - (2896,107,1,10226,'4.99','2005-08-01 01:40:04','2006-02-15 22:13:03'), - (2897,107,2,13361,'4.99','2005-08-19 21:07:22','2006-02-15 22:13:03'), - (2898,107,1,13510,'6.99','2005-08-20 02:18:30','2006-02-15 22:13:03'), - (2899,107,1,14562,'4.99','2005-08-21 16:22:59','2006-02-15 22:13:03'), - (2900,107,1,15560,'3.99','2005-08-23 05:01:13','2006-02-15 22:13:03'), - (2901,107,1,13079,'1.98','2006-02-14 15:16:03','2006-02-15 22:13:03'), - (2902,107,1,15497,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:03'), - (2903,108,1,105,'4.99','2005-05-25 17:54:12','2006-02-15 22:13:03'), - (2904,108,2,1055,'0.99','2005-05-31 07:47:18','2006-02-15 22:13:03'), - (2905,108,2,1372,'4.99','2005-06-15 14:45:48','2006-02-15 22:13:03'), - (2906,108,1,1425,'2.99','2005-06-15 18:13:46','2006-02-15 22:13:03'), - (2907,108,1,2061,'8.99','2005-06-17 15:47:00','2006-02-15 22:13:03'), - (2908,108,1,2210,'2.99','2005-06-18 02:27:01','2006-02-15 22:13:04'), - (2909,108,2,3116,'4.99','2005-06-20 18:04:55','2006-02-15 22:13:04'), - (2910,108,1,3875,'0.99','2005-07-06 18:15:39','2006-02-15 22:13:04'), - (2911,108,2,4082,'2.99','2005-07-07 05:11:53','2006-02-15 22:13:04'), - (2912,108,1,4303,'1.99','2005-07-07 16:57:32','2006-02-15 22:13:04'), - (2913,108,1,4650,'4.99','2005-07-08 09:32:08','2006-02-15 22:13:04'), - (2914,108,1,4754,'0.99','2005-07-08 14:20:01','2006-02-15 22:13:04'), - (2915,108,2,5274,'6.99','2005-07-09 14:34:09','2006-02-15 22:13:04'), - (2916,108,1,5661,'5.99','2005-07-10 07:53:51','2006-02-15 22:13:04'), - (2917,108,2,5806,'4.99','2005-07-10 15:11:54','2006-02-15 22:13:04'), - (2918,108,1,6841,'0.99','2005-07-12 19:04:24','2006-02-15 22:13:04'), - (2919,108,2,8329,'5.99','2005-07-29 04:06:33','2006-02-15 22:13:04'), - (2920,108,2,8587,'4.99','2005-07-29 12:18:40','2006-02-15 22:13:04'), - (2921,108,1,8846,'4.99','2005-07-29 23:10:28','2006-02-15 22:13:04'), - (2922,108,2,9755,'4.99','2005-07-31 09:24:55','2006-02-15 22:13:04'), - (2923,108,1,11316,'5.99','2005-08-02 16:07:49','2006-02-15 22:13:04'), - (2924,108,2,11445,'6.99','2005-08-02 20:33:35','2006-02-15 22:13:04'), - (2925,108,2,11759,'2.99','2005-08-17 09:41:23','2006-02-15 22:13:04'), - (2926,108,1,12583,'2.99','2005-08-18 15:51:36','2006-02-15 22:13:04'), - (2927,108,2,12625,'6.99','2005-08-18 17:36:19','2006-02-15 22:13:04'), - (2928,108,2,13754,'2.99','2005-08-20 11:18:08','2006-02-15 22:13:04'), - (2929,108,2,14635,'3.99','2005-08-21 18:51:43','2006-02-15 22:13:04'), - (2930,108,2,15556,'8.99','2005-08-23 04:52:16','2006-02-15 22:13:04'), - (2931,108,1,16001,'2.99','2005-08-23 20:45:53','2006-02-15 22:13:04'), - (2932,108,1,15294,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:04'), - (2933,109,1,203,'5.99','2005-05-26 07:27:57','2006-02-15 22:13:04'), - (2934,109,1,386,'0.99','2005-05-27 10:26:31','2006-02-15 22:13:04'), - (2935,109,2,622,'3.99','2005-05-28 15:58:22','2006-02-15 22:13:04'), - (2936,109,1,698,'0.99','2005-05-29 02:10:52','2006-02-15 22:13:04'), - (2937,109,1,1061,'7.99','2005-05-31 08:27:58','2006-02-15 22:13:04'), - (2938,109,1,1106,'4.99','2005-05-31 14:36:52','2006-02-15 22:13:04'), - (2939,109,1,1115,'2.99','2005-05-31 16:07:09','2006-02-15 22:13:04'), - (2940,109,2,1581,'2.99','2005-06-16 04:28:45','2006-02-15 22:13:04'), - (2941,109,2,1891,'3.99','2005-06-17 04:16:44','2006-02-15 22:13:04'), - (2942,109,2,2198,'6.99','2005-06-18 01:51:22','2006-02-15 22:13:04'), - (2943,109,2,2679,'5.99','2005-06-19 12:12:30','2006-02-15 22:13:04'), - (2944,109,2,3076,'5.99','2005-06-20 15:01:19','2006-02-15 22:13:04'), - (2945,109,1,4921,'4.99','2005-07-08 21:43:21','2006-02-15 22:13:04'), - (2946,109,1,5027,'2.99','2005-07-09 02:32:37','2006-02-15 22:13:04'), - (2947,109,2,5296,'2.99','2005-07-09 15:26:27','2006-02-15 22:13:04'), - (2948,109,2,6920,'6.99','2005-07-12 22:32:58','2006-02-15 22:13:04'), - (2949,109,2,7145,'0.99','2005-07-27 07:01:00','2006-02-15 22:13:04'), - (2950,109,1,8006,'3.99','2005-07-28 15:15:41','2006-02-15 22:13:04'), - (2951,109,1,9230,'0.99','2005-07-30 13:39:42','2006-02-15 22:13:04'), - (2952,109,1,9871,'2.99','2005-07-31 13:25:46','2006-02-15 22:13:04'), - (2953,109,2,10240,'0.99','2005-08-01 02:09:33','2006-02-15 22:13:04'), - (2954,109,2,10892,'3.99','2005-08-02 01:12:06','2006-02-15 22:13:04'), - (2955,109,2,12137,'6.99','2005-08-17 23:52:26','2006-02-15 22:13:04'), - (2956,109,1,13264,'3.99','2005-08-19 17:27:10','2006-02-15 22:13:04'), - (2957,109,2,15398,'7.99','2005-08-22 23:10:49','2006-02-15 22:13:04'), - (2958,109,2,15677,'2.99','2005-08-23 09:23:36','2006-02-15 22:13:04'), - (2959,110,1,515,'7.99','2005-05-28 03:10:10','2006-02-15 22:13:04'), - (2960,110,2,538,'1.99','2005-05-28 06:21:05','2006-02-15 22:13:04'), - (2961,110,2,1528,'8.99','2005-06-16 00:32:52','2006-02-15 22:13:04'), - (2962,110,1,3587,'4.99','2005-07-06 04:27:52','2006-02-15 22:13:04'), - (2963,110,1,4317,'2.99','2005-07-07 17:44:49','2006-02-15 22:13:05'), - (2964,110,2,4827,'4.99','2005-07-08 17:46:30','2006-02-15 22:13:05'), - (2965,110,1,6160,'4.99','2005-07-11 10:08:13','2006-02-15 22:13:05'), - (2966,110,1,7474,'0.99','2005-07-27 19:07:17','2006-02-15 22:13:05'), - (2967,110,2,7542,'0.99','2005-07-27 21:43:04','2006-02-15 22:13:05'), - (2968,110,1,7570,'2.99','2005-07-27 22:40:06','2006-02-15 22:13:05'), - (2969,110,1,11647,'7.99','2005-08-17 04:54:14','2006-02-15 22:13:05'), - (2970,110,2,12585,'3.99','2005-08-18 15:52:12','2006-02-15 22:13:05'), - (2971,110,1,13723,'2.99','2005-08-20 10:05:30','2006-02-15 22:13:05'), - (2972,110,2,15381,'2.99','2005-08-22 22:28:36','2006-02-15 22:13:05'), - (2973,111,2,505,'2.99','2005-05-28 02:06:37','2006-02-15 22:13:05'), - (2974,111,1,1593,'6.99','2005-06-16 05:14:52','2006-02-15 22:13:05'), - (2975,111,2,1974,'2.99','2005-06-17 09:30:05','2006-02-15 22:13:05'), - (2976,111,2,1999,'1.99','2005-06-17 11:30:08','2006-02-15 22:13:05'), - (2977,111,2,2297,'4.99','2005-06-18 08:17:41','2006-02-15 22:13:05'), - (2978,111,2,3087,'2.99','2005-06-20 15:53:59','2006-02-15 22:13:05'), - (2979,111,2,3333,'2.99','2005-06-21 10:01:36','2006-02-15 22:13:05'), - (2980,111,2,3485,'1.99','2005-07-05 23:25:54','2006-02-15 22:13:05'), - (2981,111,1,3551,'3.99','2005-07-06 02:33:48','2006-02-15 22:13:05'), - (2982,111,2,3963,'9.99','2005-07-06 22:19:17','2006-02-15 22:13:05'), - (2983,111,1,4249,'4.99','2005-07-07 14:05:17','2006-02-15 22:13:05'), - (2984,111,2,4286,'0.99','2005-07-07 15:36:44','2006-02-15 22:13:05'), - (2985,111,1,6896,'2.99','2005-07-12 21:25:37','2006-02-15 22:13:05'), - (2986,111,2,8525,'0.99','2005-07-29 10:20:19','2006-02-15 22:13:05'), - (2987,111,2,9933,'0.99','2005-07-31 15:24:46','2006-02-15 22:13:05'), - (2988,111,2,10039,'2.99','2005-07-31 18:50:40','2006-02-15 22:13:05'), - (2989,111,2,10602,'4.99','2005-08-01 14:30:23','2006-02-15 22:13:05'), - (2990,111,1,10952,'4.99','2005-08-02 03:28:21','2006-02-15 22:13:05'), - (2991,111,2,10990,'4.99','2005-08-02 04:41:06','2006-02-15 22:13:05'), - (2992,111,2,11239,'2.99','2005-08-02 13:27:11','2006-02-15 22:13:05'), - (2993,111,2,12196,'3.99','2005-08-18 02:08:48','2006-02-15 22:13:05'), - (2994,111,2,13251,'2.99','2005-08-19 16:48:37','2006-02-15 22:13:05'), - (2995,111,2,13525,'5.99','2005-08-20 02:50:44','2006-02-15 22:13:05'), - (2996,111,1,14949,'0.99','2005-08-22 06:12:16','2006-02-15 22:13:05'), - (2997,111,2,15174,'6.99','2005-08-22 15:26:36','2006-02-15 22:13:05'), - (2998,111,2,15542,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:05'), - (2999,112,1,396,'0.99','2005-05-27 11:47:04','2006-02-15 22:13:05'), - (3000,112,2,701,'2.99','2005-05-29 02:26:27','2006-02-15 22:13:05'), - (3001,112,1,1835,'4.99','2005-06-16 23:05:36','2006-02-15 22:13:05'), - (3002,112,2,1930,'2.99','2005-06-17 06:50:46','2006-02-15 22:13:05'), - (3003,112,1,2193,'4.99','2005-06-18 01:38:45','2006-02-15 22:13:05'), - (3004,112,2,3018,'2.99','2005-06-20 11:10:35','2006-02-15 22:13:05'), - (3005,112,1,5351,'4.99','2005-07-09 17:40:52','2006-02-15 22:13:05'), - (3006,112,1,5385,'2.99','2005-07-09 19:18:11','2006-02-15 22:13:05'), - (3007,112,2,6550,'2.99','2005-07-12 05:03:14','2006-02-15 22:13:05'), - (3008,112,2,7691,'4.99','2005-07-28 03:30:09','2006-02-15 22:13:05'), - (3009,112,2,7761,'4.99','2005-07-28 06:31:45','2006-02-15 22:13:05'), - (3010,112,1,9217,'4.99','2005-07-30 13:13:55','2006-02-15 22:13:05'), - (3011,112,2,9321,'6.99','2005-07-30 17:19:44','2006-02-15 22:13:05'), - (3012,112,2,9609,'4.99','2005-07-31 03:53:24','2006-02-15 22:13:05'), - (3013,112,1,9830,'5.99','2005-07-31 11:59:05','2006-02-15 22:13:05'), - (3014,112,2,9911,'3.99','2005-07-31 14:48:01','2006-02-15 22:13:05'), - (3015,112,1,10038,'2.99','2005-07-31 18:49:12','2006-02-15 22:13:05'), - (3016,112,2,10596,'5.99','2005-08-01 14:18:57','2006-02-15 22:13:06'), - (3017,112,1,11019,'2.99','2005-08-02 05:29:31','2006-02-15 22:13:06'), - (3018,112,1,11599,'7.99','2005-08-17 03:08:10','2006-02-15 22:13:06'), - (3019,112,2,11659,'4.99','2005-08-17 05:20:45','2006-02-15 22:13:06'), - (3020,112,2,11863,'3.99','2005-08-17 13:56:01','2006-02-15 22:13:06'), - (3021,112,2,13611,'8.99','2005-08-20 06:20:42','2006-02-15 22:13:06'), - (3022,112,2,13879,'2.99','2005-08-20 15:18:10','2006-02-15 22:13:06'), - (3023,112,2,14049,'5.99','2005-08-20 22:08:55','2006-02-15 22:13:06'), - (3024,112,1,14358,'0.99','2005-08-21 09:14:28','2006-02-15 22:13:06'), - (3025,112,2,15304,'4.99','2005-08-22 19:45:57','2006-02-15 22:13:06'), - (3026,112,1,15671,'0.99','2005-08-23 09:08:16','2006-02-15 22:13:06'), - (3027,112,1,15687,'8.99','2005-08-23 09:46:33','2006-02-15 22:13:06'), - (3028,112,1,15756,'2.99','2005-08-23 12:47:05','2006-02-15 22:13:06'), - (3029,113,1,510,'0.99','2005-05-28 02:52:14','2006-02-15 22:13:06'), - (3030,113,2,776,'0.99','2005-05-29 13:35:35','2006-02-15 22:13:06'), - (3031,113,2,2077,'4.99','2005-06-17 16:46:11','2006-02-15 22:13:06'), - (3032,113,1,2282,'2.99','2005-06-18 06:48:23','2006-02-15 22:13:06'), - (3033,113,1,2783,'2.99','2005-06-19 18:29:10','2006-02-15 22:13:06'), - (3034,113,2,3004,'0.99','2005-06-20 10:04:36','2006-02-15 22:13:06'), - (3035,113,1,3124,'8.99','2005-06-20 18:28:19','2006-02-15 22:13:06'), - (3036,113,1,3162,'6.99','2005-06-20 21:21:15','2006-02-15 22:13:06'), - (3037,113,2,3657,'5.99','2005-07-06 07:55:30','2006-02-15 22:13:06'), - (3038,113,1,4333,'2.99','2005-07-07 18:31:50','2006-02-15 22:13:06'), - (3039,113,2,5189,'2.99','2005-07-09 10:23:21','2006-02-15 22:13:06'), - (3040,113,2,5324,'2.99','2005-07-09 16:34:18','2006-02-15 22:13:06'), - (3041,113,2,5655,'4.99','2005-07-10 07:31:06','2006-02-15 22:13:06'), - (3042,113,1,5774,'5.99','2005-07-10 13:31:56','2006-02-15 22:13:06'), - (3043,113,1,6025,'0.99','2005-07-11 02:18:13','2006-02-15 22:13:06'), - (3044,113,1,6836,'0.99','2005-07-12 18:58:05','2006-02-15 22:13:06'), - (3045,113,2,7468,'5.99','2005-07-27 18:52:27','2006-02-15 22:13:06'), - (3046,113,2,7587,'2.99','2005-07-27 23:23:03','2006-02-15 22:13:06'), - (3047,113,2,9221,'6.99','2005-07-30 13:20:06','2006-02-15 22:13:06'), - (3048,113,2,10181,'4.99','2005-08-01 00:00:44','2006-02-15 22:13:06'), - (3049,113,1,10378,'0.99','2005-08-01 06:30:04','2006-02-15 22:13:06'), - (3050,113,2,10578,'1.99','2005-08-01 13:48:02','2006-02-15 22:13:06'), - (3051,113,2,11655,'7.99','2005-08-17 05:11:07','2006-02-15 22:13:06'), - (3052,113,1,11872,'5.99','2005-08-17 14:11:45','2006-02-15 22:13:06'), - (3053,113,1,12392,'5.99','2005-08-18 08:57:58','2006-02-15 22:13:06'), - (3054,113,2,12817,'3.99','2005-08-19 01:04:35','2006-02-15 22:13:06'), - (3055,113,2,13406,'2.99','2005-08-19 22:22:01','2006-02-15 22:13:06'), - (3056,113,1,15600,'1.99','2005-08-23 06:31:24','2006-02-15 22:13:06'), - (3057,113,1,15770,'2.99','2005-08-23 13:18:16','2006-02-15 22:13:06'), - (3058,114,1,205,'4.99','2005-05-26 07:59:37','2006-02-15 22:13:06'), - (3059,114,1,255,'4.99','2005-05-26 14:52:15','2006-02-15 22:13:06'), - (3060,114,2,889,'2.99','2005-05-30 07:14:53','2006-02-15 22:13:06'), - (3061,114,1,2059,'2.99','2005-06-17 15:36:12','2006-02-15 22:13:06'), - (3062,114,2,2680,'7.99','2005-06-19 12:13:37','2006-02-15 22:13:07'), - (3063,114,1,3094,'2.99','2005-06-20 16:06:51','2006-02-15 22:13:07'), - (3064,114,2,3144,'5.99','2005-06-20 20:14:20','2006-02-15 22:13:07'), - (3065,114,1,3484,'4.99','2005-07-05 23:23:11','2006-02-15 22:13:07'), - (3066,114,1,3924,'2.99','2005-07-06 20:38:02','2006-02-15 22:13:07'), - (3067,114,1,4025,'0.99','2005-07-07 02:13:24','2006-02-15 22:13:07'), - (3068,114,1,5418,'0.99','2005-07-09 20:41:35','2006-02-15 22:13:07'), - (3069,114,2,5624,'4.99','2005-07-10 05:43:16','2006-02-15 22:13:07'), - (3070,114,1,5625,'2.99','2005-07-10 05:44:02','2006-02-15 22:13:07'), - (3071,114,1,6188,'2.99','2005-07-11 11:31:47','2006-02-15 22:13:07'), - (3072,114,1,6754,'4.99','2005-07-12 14:59:24','2006-02-15 22:13:07'), - (3073,114,2,7316,'2.99','2005-07-27 13:19:03','2006-02-15 22:13:07'), - (3074,114,2,7462,'2.99','2005-07-27 18:47:47','2006-02-15 22:13:07'), - (3075,114,2,7565,'2.99','2005-07-27 22:33:59','2006-02-15 22:13:07'), - (3076,114,2,7938,'5.99','2005-07-28 12:39:11','2006-02-15 22:13:07'), - (3077,114,2,8496,'4.99','2005-07-29 09:05:33','2006-02-15 22:13:07'), - (3078,114,1,8590,'10.99','2005-07-29 12:32:20','2006-02-15 22:13:07'), - (3079,114,1,9717,'4.99','2005-07-31 08:24:41','2006-02-15 22:13:07'), - (3080,114,1,11547,'4.99','2005-08-17 00:59:24','2006-02-15 22:13:07'), - (3081,114,2,12326,'0.99','2005-08-18 06:41:59','2006-02-15 22:13:07'), - (3082,114,1,12685,'6.99','2005-08-18 19:51:29','2006-02-15 22:13:07'), - (3083,114,2,13459,'6.99','2005-08-20 00:45:40','2006-02-15 22:13:07'), - (3084,114,2,14158,'5.99','2005-08-21 02:43:20','2006-02-15 22:13:07'), - (3085,114,1,14867,'4.99','2005-08-22 03:14:46','2006-02-15 22:13:07'), - (3086,114,1,15485,'0.99','2005-08-23 02:04:57','2006-02-15 22:13:07'), - (3087,114,1,15528,'2.99','2005-08-23 03:45:40','2006-02-15 22:13:07'), - (3088,114,2,15646,'3.99','2005-08-23 08:19:55','2006-02-15 22:13:07'), - (3089,114,1,16047,'0.99','2005-08-23 22:42:48','2006-02-15 22:13:07'), - (3090,114,2,12506,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:07'), - (3091,115,1,915,'0.99','2005-05-30 11:20:27','2006-02-15 22:13:07'), - (3092,115,1,983,'0.99','2005-05-30 22:15:51','2006-02-15 22:13:07'), - (3093,115,1,1102,'2.99','2005-05-31 14:20:29','2006-02-15 22:13:07'), - (3094,115,2,1361,'0.99','2005-06-15 13:37:38','2006-02-15 22:13:07'), - (3095,115,2,1515,'2.99','2005-06-15 23:07:50','2006-02-15 22:13:07'), - (3096,115,1,3289,'6.99','2005-06-21 06:41:48','2006-02-15 22:13:07'), - (3097,115,2,3544,'0.99','2005-07-06 02:06:32','2006-02-15 22:13:07'), - (3098,115,1,3624,'0.99','2005-07-06 06:06:27','2006-02-15 22:13:07'), - (3099,115,1,4780,'1.99','2005-07-08 16:06:51','2006-02-15 22:13:07'), - (3100,115,1,5245,'4.99','2005-07-09 13:24:14','2006-02-15 22:13:07'), - (3101,115,1,6080,'2.99','2005-07-11 05:08:11','2006-02-15 22:13:07'), - (3102,115,2,6113,'2.99','2005-07-11 07:31:08','2006-02-15 22:13:07'), - (3103,115,1,6373,'0.99','2005-07-11 21:35:20','2006-02-15 22:13:07'), - (3104,115,1,6574,'5.99','2005-07-12 06:04:22','2006-02-15 22:13:07'), - (3105,115,1,6798,'6.99','2005-07-12 16:49:11','2006-02-15 22:13:07'), - (3106,115,2,7355,'1.99','2005-07-27 14:45:59','2006-02-15 22:13:07'), - (3107,115,2,7465,'4.99','2005-07-27 18:50:30','2006-02-15 22:13:07'), - (3108,115,1,7983,'4.99','2005-07-28 14:23:01','2006-02-15 22:13:07'), - (3109,115,1,8594,'4.99','2005-07-29 12:42:13','2006-02-15 22:13:07'), - (3110,115,2,9578,'0.99','2005-07-31 02:54:31','2006-02-15 22:13:07'), - (3111,115,2,10022,'3.99','2005-07-31 18:25:30','2006-02-15 22:13:07'), - (3112,115,2,10475,'4.99','2005-08-01 10:03:17','2006-02-15 22:13:07'), - (3113,115,2,10647,'2.99','2005-08-01 16:08:46','2006-02-15 22:13:07'), - (3114,115,2,10919,'0.99','2005-08-02 02:11:03','2006-02-15 22:13:07'), - (3115,115,1,11891,'2.99','2005-08-17 15:11:55','2006-02-15 22:13:07'), - (3116,115,2,12366,'0.99','2005-08-18 07:55:14','2006-02-15 22:13:07'), - (3117,115,2,13977,'0.99','2005-08-20 19:02:34','2006-02-15 22:13:08'), - (3118,115,1,15176,'6.99','2005-08-22 15:30:25','2006-02-15 22:13:08'), - (3119,115,2,15452,'0.99','2005-08-23 00:57:12','2006-02-15 22:13:08'), - (3120,115,2,13056,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:08'), - (3121,116,1,1058,'4.99','2005-05-31 08:04:17','2006-02-15 22:13:08'), - (3122,116,2,1332,'0.99','2005-06-15 11:36:01','2006-02-15 22:13:08'), - (3123,116,2,1533,'0.99','2005-06-16 00:46:02','2006-02-15 22:13:08'), - (3124,116,2,1762,'4.99','2005-06-16 17:50:19','2006-02-15 22:13:08'), - (3125,116,2,1913,'4.99','2005-06-17 05:19:47','2006-02-15 22:13:08'), - (3126,116,1,2639,'4.99','2005-06-19 09:24:02','2006-02-15 22:13:08'), - (3127,116,1,2861,'3.99','2005-06-19 23:21:34','2006-02-15 22:13:08'), - (3128,116,2,3908,'6.99','2005-07-06 19:47:26','2006-02-15 22:13:08'), - (3129,116,2,3940,'2.99','2005-07-06 21:16:59','2006-02-15 22:13:08'), - (3130,116,1,4027,'0.99','2005-07-07 02:19:01','2006-02-15 22:13:08'), - (3131,116,2,4737,'4.99','2005-07-08 13:23:53','2006-02-15 22:13:08'), - (3132,116,2,5169,'2.99','2005-07-09 09:22:25','2006-02-15 22:13:08'), - (3133,116,1,6557,'4.99','2005-07-12 05:12:03','2006-02-15 22:13:08'), - (3134,116,1,7238,'0.99','2005-07-27 10:13:41','2006-02-15 22:13:08'), - (3135,116,2,7763,'5.99','2005-07-28 06:35:16','2006-02-15 22:13:08'), - (3136,116,2,9245,'6.99','2005-07-30 14:07:50','2006-02-15 22:13:08'), - (3137,116,1,9562,'3.99','2005-07-31 02:23:20','2006-02-15 22:13:08'), - (3138,116,2,10250,'1.99','2005-08-01 02:38:42','2006-02-15 22:13:08'), - (3139,116,1,10801,'1.99','2005-08-01 22:09:35','2006-02-15 22:13:08'), - (3140,116,2,11016,'4.99','2005-08-02 05:19:13','2006-02-15 22:13:08'), - (3141,116,2,12376,'2.99','2005-08-18 08:20:29','2006-02-15 22:13:08'), - (3142,116,2,13146,'7.99','2005-08-19 12:54:42','2006-02-15 22:13:08'), - (3143,116,1,13369,'0.99','2005-08-19 21:19:47','2006-02-15 22:13:08'), - (3144,116,1,13474,'0.99','2005-08-20 01:04:32','2006-02-15 22:13:08'), - (3145,116,1,13775,'6.99','2005-08-20 11:56:30','2006-02-15 22:13:08'), - (3146,116,2,14763,'11.99','2005-08-21 23:34:00','2006-02-15 22:13:08'), - (3147,116,1,14907,'2.99','2005-08-22 04:44:09','2006-02-15 22:13:08'), - (3148,117,1,700,'0.99','2005-05-29 02:18:54','2006-02-15 22:13:08'), - (3149,117,2,1114,'0.99','2005-05-31 16:00:33','2006-02-15 22:13:08'), - (3150,117,1,1755,'2.99','2005-06-16 17:18:44','2006-02-15 22:13:08'), - (3151,117,2,3218,'2.99','2005-06-21 01:38:09','2006-02-15 22:13:08'), - (3152,117,2,5506,'5.99','2005-07-10 00:45:48','2006-02-15 22:13:08'), - (3153,117,1,5673,'0.99','2005-07-10 08:21:54','2006-02-15 22:13:08'), - (3154,117,1,6093,'9.99','2005-07-11 05:52:50','2006-02-15 22:13:08'), - (3155,117,1,6449,'6.99','2005-07-12 00:48:58','2006-02-15 22:13:08'), - (3156,117,1,8687,'2.99','2005-07-29 16:19:17','2006-02-15 22:13:08'), - (3157,117,2,10556,'2.99','2005-08-01 12:58:42','2006-02-15 22:13:08'), - (3158,117,1,10558,'4.99','2005-08-01 13:00:20','2006-02-15 22:13:08'), - (3159,117,2,11467,'3.99','2005-08-02 21:47:07','2006-02-15 22:13:08'), - (3160,117,1,12143,'2.99','2005-08-18 00:06:26','2006-02-15 22:13:08'), - (3161,117,1,12337,'2.99','2005-08-18 07:02:24','2006-02-15 22:13:08'), - (3162,117,1,12575,'6.99','2005-08-18 15:37:42','2006-02-15 22:13:08'), - (3163,117,1,12618,'4.99','2005-08-18 17:24:02','2006-02-15 22:13:08'), - (3164,117,1,14784,'0.99','2005-08-22 00:23:13','2006-02-15 22:13:08'), - (3165,117,2,14854,'2.99','2005-08-22 02:26:47','2006-02-15 22:13:08'), - (3166,117,1,15432,'2.99','2005-08-23 00:26:52','2006-02-15 22:13:09'), - (3167,118,2,351,'5.99','2005-05-27 05:39:03','2006-02-15 22:13:09'), - (3168,118,2,1766,'4.99','2005-06-16 17:59:37','2006-02-15 22:13:09'), - (3169,118,2,2217,'0.99','2005-06-18 03:12:29','2006-02-15 22:13:09'), - (3170,118,1,3263,'4.99','2005-06-21 04:15:52','2006-02-15 22:13:09'), - (3171,118,1,4966,'0.99','2005-07-08 23:47:25','2006-02-15 22:13:09'), - (3172,118,1,5829,'1.99','2005-07-10 16:29:41','2006-02-15 22:13:09'), - (3173,118,1,6377,'0.99','2005-07-11 21:41:16','2006-02-15 22:13:09'), - (3174,118,1,6507,'1.99','2005-07-12 03:33:12','2006-02-15 22:13:09'), - (3175,118,1,7196,'2.99','2005-07-27 08:49:08','2006-02-15 22:13:09'), - (3176,118,1,7850,'4.99','2005-07-28 09:31:13','2006-02-15 22:13:09'), - (3177,118,2,7956,'4.99','2005-07-28 13:32:17','2006-02-15 22:13:09'), - (3178,118,1,8314,'3.99','2005-07-29 03:35:04','2006-02-15 22:13:09'), - (3179,118,2,8760,'7.99','2005-07-29 19:22:40','2006-02-15 22:13:09'), - (3180,118,1,8881,'4.99','2005-07-30 00:22:31','2006-02-15 22:13:09'), - (3181,118,2,10045,'1.99','2005-07-31 19:04:35','2006-02-15 22:13:09'), - (3182,118,2,12538,'2.99','2005-08-18 14:09:09','2006-02-15 22:13:09'), - (3183,118,2,13193,'6.99','2005-08-19 14:33:45','2006-02-15 22:13:09'), - (3184,118,2,14394,'5.99','2005-08-21 10:23:10','2006-02-15 22:13:09'), - (3185,118,2,14595,'7.99','2005-08-21 17:35:17','2006-02-15 22:13:09'), - (3186,118,1,14924,'2.99','2005-08-22 05:15:17','2006-02-15 22:13:09'), - (3187,118,1,15731,'0.99','2005-08-23 11:33:25','2006-02-15 22:13:09'), - (3188,119,2,67,'0.99','2005-05-25 09:41:01','2006-02-15 22:13:09'), - (3189,119,1,235,'5.99','2005-05-26 11:51:09','2006-02-15 22:13:09'), - (3190,119,2,540,'6.99','2005-05-28 06:40:25','2006-02-15 22:13:09'), - (3191,119,1,1179,'7.99','2005-06-15 00:36:50','2006-02-15 22:13:09'), - (3192,119,2,2009,'2.99','2005-06-17 11:48:31','2006-02-15 22:13:09'), - (3193,119,2,3388,'5.99','2005-06-21 14:34:51','2006-02-15 22:13:09'), - (3194,119,2,4840,'8.99','2005-07-08 18:18:16','2006-02-15 22:13:09'), - (3195,119,1,5176,'5.99','2005-07-09 09:39:31','2006-02-15 22:13:09'), - (3196,119,1,5268,'0.99','2005-07-09 14:22:43','2006-02-15 22:13:09'), - (3197,119,1,6079,'7.99','2005-07-11 05:07:14','2006-02-15 22:13:09'), - (3198,119,2,6330,'0.99','2005-07-11 19:15:42','2006-02-15 22:13:09'), - (3199,119,2,8140,'4.99','2005-07-28 20:17:50','2006-02-15 22:13:09'), - (3200,119,1,8183,'5.99','2005-07-28 22:21:07','2006-02-15 22:13:09'), - (3201,119,1,8304,'4.99','2005-07-29 03:08:30','2006-02-15 22:13:09'), - (3202,119,2,9028,'2.99','2005-07-30 06:00:35','2006-02-15 22:13:09'), - (3203,119,1,10101,'0.99','2005-07-31 20:47:29','2006-02-15 22:13:09'), - (3204,119,1,10366,'3.99','2005-08-01 06:09:37','2006-02-15 22:13:09'), - (3205,119,2,10552,'2.99','2005-08-01 12:49:44','2006-02-15 22:13:09'), - (3206,119,1,10681,'4.99','2005-08-01 17:30:35','2006-02-15 22:13:09'), - (3207,119,2,11377,'2.99','2005-08-02 18:16:47','2006-02-15 22:13:09'), - (3208,119,1,11520,'5.99','2005-08-17 00:04:28','2006-02-15 22:13:09'), - (3209,119,2,12576,'2.99','2005-08-18 15:38:31','2006-02-15 22:13:10'), - (3210,119,2,12603,'3.99','2005-08-18 16:56:20','2006-02-15 22:13:10'), - (3211,119,2,12842,'6.99','2005-08-19 01:57:21','2006-02-15 22:13:10'), - (3212,119,1,13581,'4.99','2005-08-20 05:26:15','2006-02-15 22:13:10'), - (3213,119,2,14349,'3.99','2005-08-21 08:54:53','2006-02-15 22:13:10'), - (3214,119,2,14382,'2.99','2005-08-21 10:01:03','2006-02-15 22:13:10'), - (3215,119,2,14643,'6.99','2005-08-21 19:11:58','2006-02-15 22:13:10'), - (3216,119,2,14659,'0.99','2005-08-21 19:42:36','2006-02-15 22:13:10'), - (3217,119,1,15111,'4.99','2005-08-22 12:21:43','2006-02-15 22:13:10'), - (3218,119,2,15131,'3.99','2005-08-22 13:06:26','2006-02-15 22:13:10'), - (3219,119,2,15171,'6.99','2005-08-22 15:23:59','2006-02-15 22:13:10'), - (3220,119,1,15844,'2.99','2005-08-23 15:38:12','2006-02-15 22:13:10'), - (3221,119,2,16028,'3.99','2005-08-23 21:52:56','2006-02-15 22:13:10'), - (3222,120,2,68,'7.99','2005-05-25 09:47:31','2006-02-15 22:13:10'), - (3223,120,2,532,'0.99','2005-05-28 05:36:58','2006-02-15 22:13:10'), - (3224,120,1,1374,'3.99','2005-06-15 14:49:54','2006-02-15 22:13:10'), - (3225,120,1,1820,'4.99','2005-06-16 21:34:50','2006-02-15 22:13:10'), - (3226,120,2,1932,'2.99','2005-06-17 06:54:41','2006-02-15 22:13:10'), - (3227,120,1,2169,'4.99','2005-06-17 23:57:23','2006-02-15 22:13:10'), - (3228,120,1,2803,'9.99','2005-06-19 19:18:27','2006-02-15 22:13:10'), - (3229,120,1,3133,'2.99','2005-06-20 19:18:32','2006-02-15 22:13:10'), - (3230,120,1,4001,'5.99','2005-07-07 00:07:00','2006-02-15 22:13:10'), - (3231,120,2,4272,'3.99','2005-07-07 14:39:20','2006-02-15 22:13:10'), - (3232,120,2,4342,'0.99','2005-07-07 18:47:03','2006-02-15 22:13:10'), - (3233,120,2,4666,'9.99','2005-07-08 10:05:02','2006-02-15 22:13:10'), - (3234,120,1,4942,'1.99','2005-07-08 22:42:47','2006-02-15 22:13:10'), - (3235,120,2,5288,'1.99','2005-07-09 15:13:07','2006-02-15 22:13:10'), - (3236,120,2,6503,'0.99','2005-07-12 03:18:07','2006-02-15 22:13:10'), - (3237,120,1,6989,'4.99','2005-07-27 01:00:34','2006-02-15 22:13:10'), - (3238,120,2,8046,'0.99','2005-07-28 16:49:41','2006-02-15 22:13:10'), - (3239,120,2,8756,'1.99','2005-07-29 19:18:57','2006-02-15 22:13:10'), - (3240,120,1,8998,'6.99','2005-07-30 04:54:14','2006-02-15 22:13:10'), - (3241,120,2,9907,'6.99','2005-07-31 14:39:50','2006-02-15 22:13:10'), - (3242,120,2,10161,'0.99','2005-07-31 23:09:41','2006-02-15 22:13:10'), - (3243,120,2,10696,'4.99','2005-08-01 18:18:13','2006-02-15 22:13:10'), - (3244,120,1,10940,'3.99','2005-08-02 03:08:29','2006-02-15 22:13:10'), - (3245,120,2,11133,'0.99','2005-08-02 09:15:45','2006-02-15 22:13:10'), - (3246,120,2,13167,'2.99','2005-08-19 13:36:41','2006-02-15 22:13:10'), - (3247,120,2,13375,'7.99','2005-08-19 21:31:31','2006-02-15 22:13:10'), - (3248,120,1,14001,'2.99','2005-08-20 20:07:15','2006-02-15 22:13:10'), - (3249,120,1,14153,'4.99','2005-08-21 02:24:33','2006-02-15 22:13:10'), - (3250,120,1,14246,'4.99','2005-08-21 05:34:09','2006-02-15 22:13:10'), - (3251,120,2,14460,'9.99','2005-08-21 12:48:48','2006-02-15 22:13:10'), - (3252,120,2,14969,'6.99','2005-08-22 06:49:15','2006-02-15 22:13:10'), - (3253,120,1,15780,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:10'), - (3254,121,1,217,'4.99','2005-05-26 09:24:26','2006-02-15 22:13:10'), - (3255,121,1,1634,'2.99','2005-06-16 08:16:05','2006-02-15 22:13:10'), - (3256,121,1,1833,'1.99','2005-06-16 22:45:03','2006-02-15 22:13:10'), - (3257,121,2,5670,'0.99','2005-07-10 08:14:52','2006-02-15 22:13:10'), - (3258,121,2,6780,'4.99','2005-07-12 16:18:12','2006-02-15 22:13:11'), - (3259,121,2,7114,'0.99','2005-07-27 05:42:13','2006-02-15 22:13:11'), - (3260,121,1,7185,'0.99','2005-07-27 08:23:54','2006-02-15 22:13:11'), - (3261,121,2,7298,'2.99','2005-07-27 12:45:14','2006-02-15 22:13:11'), - (3262,121,1,8370,'6.99','2005-07-29 05:16:21','2006-02-15 22:13:11'), - (3263,121,2,8788,'1.99','2005-07-29 20:46:44','2006-02-15 22:13:11'), - (3264,121,2,8875,'2.99','2005-07-30 00:15:09','2006-02-15 22:13:11'), - (3265,121,2,8969,'8.99','2005-07-30 04:00:19','2006-02-15 22:13:11'), - (3266,121,2,10457,'5.99','2005-08-01 09:17:34','2006-02-15 22:13:11'), - (3267,121,2,11720,'8.99','2005-08-17 07:46:54','2006-02-15 22:13:11'), - (3268,121,2,12242,'1.99','2005-08-18 03:37:31','2006-02-15 22:13:11'), - (3269,121,2,12428,'3.99','2005-08-18 10:24:21','2006-02-15 22:13:11'), - (3270,121,2,12734,'1.99','2005-08-18 22:04:52','2006-02-15 22:13:11'), - (3271,121,1,12881,'5.99','2005-08-19 03:28:13','2006-02-15 22:13:11'), - (3272,121,2,12892,'0.99','2005-08-19 03:46:34','2006-02-15 22:13:11'), - (3273,121,1,14138,'7.99','2005-08-21 01:59:37','2006-02-15 22:13:11'), - (3274,121,1,14177,'4.99','2005-08-21 03:11:33','2006-02-15 22:13:11'), - (3275,121,2,14412,'9.99','2005-08-21 11:02:09','2006-02-15 22:13:11'), - (3276,121,1,14464,'2.99','2005-08-21 12:52:54','2006-02-15 22:13:11'), - (3277,121,2,15114,'7.99','2005-08-22 12:24:55','2006-02-15 22:13:11'), - (3278,121,1,15369,'0.99','2005-08-22 21:58:06','2006-02-15 22:13:11'), - (3279,121,1,16041,'2.99','2005-08-23 22:20:26','2006-02-15 22:13:11'), - (3280,122,2,853,'0.99','2005-05-30 01:43:31','2006-02-15 22:13:11'), - (3281,122,2,1135,'4.99','2005-05-31 19:15:11','2006-02-15 22:13:11'), - (3282,122,1,1211,'0.99','2005-06-15 03:01:20','2006-02-15 22:13:11'), - (3283,122,2,1442,'7.99','2005-06-15 18:55:34','2006-02-15 22:13:11'), - (3284,122,2,2240,'3.99','2005-06-18 04:28:27','2006-02-15 22:13:11'), - (3285,122,1,2253,'0.99','2005-06-18 05:11:43','2006-02-15 22:13:11'), - (3286,122,1,2482,'4.99','2005-06-18 21:10:44','2006-02-15 22:13:11'), - (3287,122,2,2595,'4.99','2005-06-19 05:43:55','2006-02-15 22:13:11'), - (3288,122,2,2834,'1.99','2005-06-19 21:41:46','2006-02-15 22:13:11'), - (3289,122,1,3778,'2.99','2005-07-06 13:44:48','2006-02-15 22:13:11'), - (3290,122,2,3986,'4.99','2005-07-06 23:25:13','2006-02-15 22:13:11'), - (3291,122,1,4239,'7.99','2005-07-07 13:23:17','2006-02-15 22:13:11'), - (3292,122,1,4568,'4.99','2005-07-08 05:23:59','2006-02-15 22:13:11'), - (3293,122,2,5235,'6.99','2005-07-09 12:54:25','2006-02-15 22:13:11'), - (3294,122,2,6231,'0.99','2005-07-11 14:02:36','2006-02-15 22:13:11'), - (3295,122,1,6427,'0.99','2005-07-11 23:57:34','2006-02-15 22:13:11'), - (3296,122,1,6436,'0.99','2005-07-12 00:18:42','2006-02-15 22:13:11'), - (3297,122,2,6974,'7.99','2005-07-27 00:39:16','2006-02-15 22:13:11'), - (3298,122,1,7267,'2.99','2005-07-27 11:22:55','2006-02-15 22:13:11'), - (3299,122,2,7950,'4.99','2005-07-28 13:21:00','2006-02-15 22:13:11'), - (3300,122,1,8077,'2.99','2005-07-28 17:54:35','2006-02-15 22:13:11'), - (3301,122,2,8177,'0.99','2005-07-28 21:43:54','2006-02-15 22:13:11'), - (3302,122,1,8772,'5.99','2005-07-29 19:55:25','2006-02-15 22:13:11'), - (3303,122,2,9910,'4.99','2005-07-31 14:47:57','2006-02-15 22:13:11'), - (3304,122,1,10626,'1.99','2005-08-01 15:32:41','2006-02-15 22:13:11'), - (3305,122,2,11044,'3.99','2005-08-02 06:05:27','2006-02-15 22:13:12'), - (3306,122,2,11197,'2.99','2005-08-02 11:45:07','2006-02-15 22:13:12'), - (3307,122,2,12476,'4.99','2005-08-18 12:22:40','2006-02-15 22:13:12'), - (3308,122,2,12711,'4.99','2005-08-18 21:03:32','2006-02-15 22:13:12'), - (3309,122,1,13171,'2.99','2005-08-19 13:48:54','2006-02-15 22:13:12'), - (3310,122,1,13812,'4.99','2005-08-20 13:01:43','2006-02-15 22:13:12'), - (3311,122,2,14666,'5.99','2005-08-21 19:51:09','2006-02-15 22:13:12'), - (3312,123,1,992,'2.99','2005-05-30 23:47:56','2006-02-15 22:13:12'), - (3313,123,2,1490,'4.99','2005-06-15 21:42:17','2006-02-15 22:13:12'), - (3314,123,1,1751,'0.99','2005-06-16 17:00:14','2006-02-15 22:13:12'), - (3315,123,2,1775,'4.99','2005-06-16 18:28:19','2006-02-15 22:13:12'), - (3316,123,2,1951,'0.99','2005-06-17 08:30:35','2006-02-15 22:13:12'), - (3317,123,1,2594,'2.99','2005-06-19 05:43:43','2006-02-15 22:13:12'), - (3318,123,1,4442,'3.99','2005-07-07 23:05:30','2006-02-15 22:13:12'), - (3319,123,1,4860,'8.99','2005-07-08 18:54:07','2006-02-15 22:13:12'), - (3320,123,2,7535,'4.99','2005-07-27 21:32:39','2006-02-15 22:13:12'), - (3321,123,1,7727,'2.99','2005-07-28 04:52:43','2006-02-15 22:13:12'), - (3322,123,2,7768,'0.99','2005-07-28 06:44:03','2006-02-15 22:13:12'), - (3323,123,1,7852,'2.99','2005-07-28 09:34:29','2006-02-15 22:13:12'), - (3324,123,1,7969,'5.99','2005-07-28 13:57:37','2006-02-15 22:13:12'), - (3325,123,2,8699,'4.99','2005-07-29 16:53:00','2006-02-15 22:13:12'), - (3326,123,2,9529,'4.99','2005-07-31 01:05:26','2006-02-15 22:13:12'), - (3327,123,1,10066,'4.99','2005-07-31 19:30:01','2006-02-15 22:13:12'), - (3328,123,2,10295,'8.99','2005-08-01 03:53:49','2006-02-15 22:13:12'), - (3329,123,1,12360,'2.99','2005-08-18 07:46:35','2006-02-15 22:13:12'), - (3330,123,1,12402,'3.99','2005-08-18 09:27:34','2006-02-15 22:13:12'), - (3331,123,1,13668,'2.99','2005-08-20 08:26:06','2006-02-15 22:13:12'), - (3332,123,2,15152,'7.99','2005-08-22 14:25:21','2006-02-15 22:13:12'), - (3333,123,2,15525,'4.99','2005-08-23 03:43:32','2006-02-15 22:13:12'), - (3334,123,1,15621,'1.99','2005-08-23 07:13:43','2006-02-15 22:13:12'), - (3335,123,2,15787,'2.99','2005-08-23 13:51:57','2006-02-15 22:13:12'), - (3336,124,1,775,'0.99','2005-05-29 13:23:26','2006-02-15 22:13:12'), - (3337,124,2,1039,'4.99','2005-05-31 05:32:29','2006-02-15 22:13:12'), - (3338,124,2,1057,'3.99','2005-05-31 07:58:06','2006-02-15 22:13:12'), - (3339,124,2,1130,'5.99','2005-05-31 18:13:57','2006-02-15 22:13:12'), - (3340,124,2,2336,'1.99','2005-06-18 11:00:05','2006-02-15 22:13:12'), - (3341,124,1,4341,'7.99','2005-07-07 18:44:23','2006-02-15 22:13:12'), - (3342,124,2,4709,'2.99','2005-07-08 12:04:34','2006-02-15 22:13:12'), - (3343,124,1,5566,'2.99','2005-07-10 03:30:17','2006-02-15 22:13:12'), - (3344,124,1,6411,'2.99','2005-07-11 23:10:50','2006-02-15 22:13:12'), - (3345,124,1,7519,'6.99','2005-07-27 21:01:41','2006-02-15 22:13:12'), - (3346,124,2,7700,'8.99','2005-07-28 03:54:14','2006-02-15 22:13:12'), - (3347,124,2,8524,'0.99','2005-07-29 10:20:07','2006-02-15 22:13:12'), - (3348,124,1,9986,'3.99','2005-07-31 17:16:50','2006-02-15 22:13:12'), - (3349,124,2,11493,'5.99','2005-08-02 22:47:00','2006-02-15 22:13:12'), - (3350,124,1,12835,'4.99','2005-08-19 01:47:45','2006-02-15 22:13:12'), - (3351,124,2,14737,'0.99','2005-08-21 22:27:11','2006-02-15 22:13:13'), - (3352,124,2,15266,'4.99','2005-08-22 18:37:24','2006-02-15 22:13:13'), - (3353,124,2,16023,'0.99','2005-08-23 21:45:02','2006-02-15 22:13:13'), - (3354,125,2,185,'3.99','2005-05-26 05:30:03','2006-02-15 22:13:13'), - (3355,125,1,1481,'2.99','2005-06-15 21:17:58','2006-02-15 22:13:13'), - (3356,125,1,2355,'3.99','2005-06-18 12:57:06','2006-02-15 22:13:13'), - (3357,125,1,2826,'7.99','2005-06-19 20:41:35','2006-02-15 22:13:13'), - (3358,125,1,3118,'4.99','2005-06-20 18:05:57','2006-02-15 22:13:13'), - (3359,125,1,3617,'4.99','2005-07-06 05:58:06','2006-02-15 22:13:13'), - (3360,125,1,5200,'2.99','2005-07-09 10:52:09','2006-02-15 22:13:13'), - (3361,125,2,5523,'7.99','2005-07-10 01:47:55','2006-02-15 22:13:13'), - (3362,125,1,6055,'0.99','2005-07-11 03:59:08','2006-02-15 22:13:13'), - (3363,125,2,6268,'6.99','2005-07-11 15:55:34','2006-02-15 22:13:13'), - (3364,125,1,7323,'4.99','2005-07-27 13:39:40','2006-02-15 22:13:13'), - (3365,125,2,7879,'0.99','2005-07-28 10:27:46','2006-02-15 22:13:13'), - (3366,125,2,7922,'0.99','2005-07-28 12:05:25','2006-02-15 22:13:13'), - (3367,125,2,8375,'2.99','2005-07-29 05:25:30','2006-02-15 22:13:13'), - (3368,125,1,8433,'2.99','2005-07-29 07:19:16','2006-02-15 22:13:13'), - (3369,125,1,8832,'4.99','2005-07-29 22:37:49','2006-02-15 22:13:13'), - (3370,125,1,9129,'9.99','2005-07-30 09:51:21','2006-02-15 22:13:13'), - (3371,125,1,9496,'4.99','2005-07-30 23:55:20','2006-02-15 22:13:13'), - (3372,125,2,9504,'0.99','2005-07-31 00:09:07','2006-02-15 22:13:13'), - (3373,125,1,9722,'4.99','2005-07-31 08:29:48','2006-02-15 22:13:13'), - (3374,125,2,9734,'2.99','2005-07-31 08:57:45','2006-02-15 22:13:13'), - (3375,125,1,10583,'2.99','2005-08-01 13:54:35','2006-02-15 22:13:13'), - (3376,125,1,10699,'2.99','2005-08-01 18:24:51','2006-02-15 22:13:13'), - (3377,125,2,11279,'7.99','2005-08-02 14:30:03','2006-02-15 22:13:13'), - (3378,125,1,11806,'4.99','2005-08-17 11:49:28','2006-02-15 22:13:13'), - (3379,125,1,11832,'4.99','2005-08-17 12:55:31','2006-02-15 22:13:13'), - (3380,125,1,11999,'0.99','2005-08-17 18:47:07','2006-02-15 22:13:13'), - (3381,125,1,12075,'4.99','2005-08-17 21:54:55','2006-02-15 22:13:13'), - (3382,125,2,12262,'2.99','2005-08-18 04:16:15','2006-02-15 22:13:13'), - (3383,125,2,13441,'6.99','2005-08-19 23:48:23','2006-02-15 22:13:13'), - (3384,125,2,14456,'2.99','2005-08-21 12:38:09','2006-02-15 22:13:13'), - (3385,125,1,15055,'2.99','2005-08-22 10:14:39','2006-02-15 22:13:13'), - (3386,126,1,9,'4.99','2005-05-25 00:00:40','2006-02-15 22:13:13'), - (3387,126,1,752,'4.99','2005-05-29 10:14:15','2006-02-15 22:13:13'), - (3388,126,2,1054,'4.99','2005-05-31 07:33:25','2006-02-15 22:13:13'), - (3389,126,1,3450,'2.99','2005-06-21 21:01:57','2006-02-15 22:13:13'), - (3390,126,2,3502,'5.99','2005-07-06 00:15:06','2006-02-15 22:13:13'), - (3391,126,1,3725,'4.99','2005-07-06 11:15:04','2006-02-15 22:13:13'), - (3392,126,1,3804,'7.99','2005-07-06 15:08:08','2006-02-15 22:13:13'), - (3393,126,1,4691,'0.99','2005-07-08 11:04:53','2006-02-15 22:13:13'), - (3394,126,2,4730,'2.99','2005-07-08 12:59:49','2006-02-15 22:13:13'), - (3395,126,2,5137,'0.99','2005-07-09 08:00:34','2006-02-15 22:13:13'), - (3396,126,1,5865,'0.99','2005-07-10 18:31:05','2006-02-15 22:13:13'), - (3397,126,1,6747,'0.99','2005-07-12 14:33:21','2006-02-15 22:13:14'), - (3398,126,2,6755,'6.99','2005-07-12 15:07:49','2006-02-15 22:13:14'), - (3399,126,1,7962,'0.99','2005-07-28 13:48:09','2006-02-15 22:13:14'), - (3400,126,1,8091,'2.99','2005-07-28 18:27:29','2006-02-15 22:13:14'), - (3401,126,1,9492,'6.99','2005-07-30 23:52:21','2006-02-15 22:13:14'), - (3402,126,2,10032,'4.99','2005-07-31 18:41:55','2006-02-15 22:13:14'), - (3403,126,1,11196,'9.99','2005-08-02 11:42:40','2006-02-15 22:13:14'), - (3404,126,2,11613,'4.99','2005-08-17 03:50:33','2006-02-15 22:13:14'), - (3405,126,1,11779,'3.99','2005-08-17 10:31:58','2006-02-15 22:13:14'), - (3406,126,1,11801,'0.99','2005-08-17 11:30:11','2006-02-15 22:13:14'), - (3407,126,2,12991,'2.99','2005-08-19 07:21:24','2006-02-15 22:13:14'), - (3408,126,2,13015,'7.99','2005-08-19 07:56:51','2006-02-15 22:13:14'), - (3409,126,2,13177,'0.99','2005-08-19 13:56:58','2006-02-15 22:13:14'), - (3410,126,2,14477,'2.99','2005-08-21 13:32:38','2006-02-15 22:13:14'), - (3411,126,2,14577,'2.99','2005-08-21 16:52:29','2006-02-15 22:13:14'), - (3412,126,2,15741,'4.99','2005-08-23 12:10:54','2006-02-15 22:13:14'), - (3413,126,1,16007,'7.99','2005-08-23 21:02:43','2006-02-15 22:13:14'), - (3414,127,1,452,'0.99','2005-05-27 19:30:33','2006-02-15 22:13:14'), - (3415,127,1,708,'0.99','2005-05-29 03:23:47','2006-02-15 22:13:14'), - (3416,127,1,1293,'4.99','2005-06-15 09:06:24','2006-02-15 22:13:14'), - (3417,127,2,1803,'2.99','2005-06-16 20:32:47','2006-02-15 22:13:14'), - (3418,127,2,2412,'3.99','2005-06-18 16:58:58','2006-02-15 22:13:14'), - (3419,127,1,4652,'5.99','2005-07-08 09:47:51','2006-02-15 22:13:14'), - (3420,127,2,4811,'5.99','2005-07-08 17:04:24','2006-02-15 22:13:14'), - (3421,127,2,5499,'2.99','2005-07-10 00:27:45','2006-02-15 22:13:14'), - (3422,127,2,5983,'2.99','2005-07-11 00:34:11','2006-02-15 22:13:14'), - (3423,127,1,7912,'4.99','2005-07-28 11:46:58','2006-02-15 22:13:14'), - (3424,127,2,8209,'6.99','2005-07-28 23:29:28','2006-02-15 22:13:14'), - (3425,127,1,9859,'6.99','2005-07-31 13:02:55','2006-02-15 22:13:14'), - (3426,127,1,10197,'2.99','2005-08-01 00:35:25','2006-02-15 22:13:14'), - (3427,127,1,10787,'10.99','2005-08-01 21:35:01','2006-02-15 22:13:14'), - (3428,127,1,10973,'7.99','2005-08-02 04:09:42','2006-02-15 22:13:14'), - (3429,127,1,11235,'0.99','2005-08-02 13:13:21','2006-02-15 22:13:14'), - (3430,127,2,12060,'4.99','2005-08-17 21:11:57','2006-02-15 22:13:14'), - (3431,127,2,12820,'2.99','2005-08-19 01:05:08','2006-02-15 22:13:14'), - (3432,127,2,13043,'4.99','2005-08-19 09:07:13','2006-02-15 22:13:14'), - (3433,127,1,13091,'2.99','2005-08-19 10:40:10','2006-02-15 22:13:14'), - (3434,127,2,14030,'2.99','2005-08-20 21:23:54','2006-02-15 22:13:14'), - (3435,127,1,14189,'2.99','2005-08-21 03:32:17','2006-02-15 22:13:14'), - (3436,127,1,15463,'5.99','2005-08-23 01:15:07','2006-02-15 22:13:14'), - (3437,127,2,15736,'5.99','2005-08-23 11:40:30','2006-02-15 22:13:14'), - (3438,128,2,888,'5.99','2005-05-30 07:13:14','2006-02-15 22:13:14'), - (3439,128,2,1131,'2.99','2005-05-31 18:44:19','2006-02-15 22:13:14'), - (3440,128,2,2519,'7.99','2005-06-19 00:19:21','2006-02-15 22:13:14'), - (3441,128,1,2565,'0.99','2005-06-19 03:44:03','2006-02-15 22:13:14'), - (3442,128,1,3751,'0.99','2005-07-06 12:23:41','2006-02-15 22:13:14'), - (3443,128,2,3995,'5.99','2005-07-06 23:43:03','2006-02-15 22:13:14'), - (3444,128,1,5270,'2.99','2005-07-09 14:23:46','2006-02-15 22:13:14'), - (3445,128,1,5647,'4.99','2005-07-10 07:08:40','2006-02-15 22:13:15'), - (3446,128,2,5997,'4.99','2005-07-11 01:19:50','2006-02-15 22:13:15'), - (3447,128,2,6186,'2.99','2005-07-11 11:26:41','2006-02-15 22:13:15'), - (3448,128,2,6481,'6.99','2005-07-12 01:50:15','2006-02-15 22:13:15'), - (3449,128,2,6687,'2.99','2005-07-12 12:19:23','2006-02-15 22:13:15'), - (3450,128,2,7582,'4.99','2005-07-27 23:15:14','2006-02-15 22:13:15'), - (3451,128,2,8415,'2.99','2005-07-29 06:52:27','2006-02-15 22:13:15'), - (3452,128,2,9215,'5.99','2005-07-30 13:11:11','2006-02-15 22:13:15'), - (3453,128,2,9234,'2.99','2005-07-30 13:45:54','2006-02-15 22:13:15'), - (3454,128,1,9433,'5.99','2005-07-30 21:28:17','2006-02-15 22:13:15'), - (3455,128,2,9858,'2.99','2005-07-31 13:02:07','2006-02-15 22:13:15'), - (3456,128,1,9952,'3.99','2005-07-31 15:52:37','2006-02-15 22:13:15'), - (3457,128,1,10011,'2.99','2005-07-31 18:02:41','2006-02-15 22:13:15'), - (3458,128,1,10394,'2.99','2005-08-01 06:58:17','2006-02-15 22:13:15'), - (3459,128,2,12731,'2.99','2005-08-18 21:55:38','2006-02-15 22:13:15'), - (3460,128,2,12843,'2.99','2005-08-19 01:58:54','2006-02-15 22:13:15'), - (3461,128,2,12910,'0.99','2005-08-19 04:23:13','2006-02-15 22:13:15'), - (3462,128,2,13027,'0.99','2005-08-19 08:25:16','2006-02-15 22:13:15'), - (3463,128,2,13181,'5.99','2005-08-19 14:00:56','2006-02-15 22:13:15'), - (3464,128,1,13509,'0.99','2005-08-20 02:14:16','2006-02-15 22:13:15'), - (3465,128,2,13964,'2.99','2005-08-20 18:24:26','2006-02-15 22:13:15'), - (3466,128,2,14157,'0.99','2005-08-21 02:43:15','2006-02-15 22:13:15'), - (3467,128,1,14925,'8.99','2005-08-22 05:16:16','2006-02-15 22:13:15'), - (3468,128,1,15220,'3.99','2005-08-22 17:02:23','2006-02-15 22:13:15'), - (3469,128,1,15835,'8.99','2005-08-23 15:25:27','2006-02-15 22:13:15'), - (3470,129,2,1732,'0.99','2005-06-16 15:34:41','2006-02-15 22:13:15'), - (3471,129,1,2727,'3.99','2005-06-19 15:02:39','2006-02-15 22:13:15'), - (3472,129,2,2768,'0.99','2005-06-19 17:46:52','2006-02-15 22:13:15'), - (3473,129,2,2795,'4.99','2005-06-19 18:58:53','2006-02-15 22:13:15'), - (3474,129,1,3183,'4.99','2005-06-20 22:55:55','2006-02-15 22:13:15'), - (3475,129,1,3219,'3.99','2005-06-21 01:43:26','2006-02-15 22:13:15'), - (3476,129,1,3689,'0.99','2005-07-06 09:43:01','2006-02-15 22:13:15'), - (3477,129,2,3900,'4.99','2005-07-06 19:21:28','2006-02-15 22:13:15'), - (3478,129,2,3936,'0.99','2005-07-06 21:15:03','2006-02-15 22:13:15'), - (3479,129,2,4256,'2.99','2005-07-07 14:14:36','2006-02-15 22:13:15'), - (3480,129,1,4602,'0.99','2005-07-08 06:52:40','2006-02-15 22:13:15'), - (3481,129,1,4896,'2.99','2005-07-08 20:23:15','2006-02-15 22:13:15'), - (3482,129,1,4996,'0.99','2005-07-09 00:59:46','2006-02-15 22:13:15'), - (3483,129,1,5127,'0.99','2005-07-09 07:25:47','2006-02-15 22:13:15'), - (3484,129,2,5350,'4.99','2005-07-09 17:39:30','2006-02-15 22:13:15'), - (3485,129,1,8339,'4.99','2005-07-29 04:41:13','2006-02-15 22:13:15'), - (3486,129,1,8345,'2.99','2005-07-29 04:47:37','2006-02-15 22:13:15'), - (3487,129,2,9823,'4.99','2005-07-31 11:49:00','2006-02-15 22:13:15'), - (3488,129,1,9983,'7.99','2005-07-31 17:09:36','2006-02-15 22:13:15'), - (3489,129,1,10024,'7.99','2005-07-31 18:26:36','2006-02-15 22:13:15'), - (3490,129,2,10167,'5.99','2005-07-31 23:24:31','2006-02-15 22:13:15'), - (3491,129,2,10395,'2.99','2005-08-01 07:08:22','2006-02-15 22:13:15'), - (3492,129,1,10468,'0.99','2005-08-01 09:48:29','2006-02-15 22:13:15'), - (3493,129,1,10483,'2.99','2005-08-01 10:19:45','2006-02-15 22:13:16'), - (3494,129,2,10550,'2.99','2005-08-01 12:46:52','2006-02-15 22:13:16'), - (3495,129,2,10816,'4.99','2005-08-01 22:48:57','2006-02-15 22:13:16'), - (3496,129,2,12612,'3.99','2005-08-18 17:10:05','2006-02-15 22:13:16'), - (3497,129,2,12728,'4.99','2005-08-18 21:47:48','2006-02-15 22:13:16'), - (3498,129,2,13653,'10.99','2005-08-20 07:54:54','2006-02-15 22:13:16'), - (3499,129,1,13915,'4.99','2005-08-20 16:42:53','2006-02-15 22:13:16'), - (3500,129,1,13919,'4.99','2005-08-20 16:47:34','2006-02-15 22:13:16'), - (3501,129,1,13961,'0.99','2005-08-20 18:16:34','2006-02-15 22:13:16'), - (3502,129,1,14353,'0.99','2005-08-21 09:07:50','2006-02-15 22:13:16'), - (3503,129,2,14968,'1.99','2005-08-22 06:46:59','2006-02-15 22:13:16'), - (3504,130,1,1,'2.99','2005-05-24 22:53:30','2006-02-15 22:13:16'), - (3505,130,1,746,'2.99','2005-05-29 09:25:10','2006-02-15 22:13:16'), - (3506,130,1,1630,'2.99','2005-06-16 07:55:01','2006-02-15 22:13:16'), - (3507,130,2,1864,'2.99','2005-06-17 01:39:47','2006-02-15 22:13:16'), - (3508,130,2,2163,'2.99','2005-06-17 23:46:16','2006-02-15 22:13:16'), - (3509,130,2,2292,'2.99','2005-06-18 07:37:48','2006-02-15 22:13:16'), - (3510,130,1,2535,'2.99','2005-06-19 01:39:04','2006-02-15 22:13:16'), - (3511,130,1,2982,'6.99','2005-06-20 08:38:29','2006-02-15 22:13:16'), - (3512,130,2,4339,'4.99','2005-07-07 18:41:42','2006-02-15 22:13:16'), - (3513,130,2,4485,'4.99','2005-07-08 01:07:54','2006-02-15 22:13:16'), - (3514,130,1,6353,'3.99','2005-07-11 20:48:56','2006-02-15 22:13:16'), - (3515,130,1,7181,'4.99','2005-07-27 08:14:34','2006-02-15 22:13:16'), - (3516,130,1,7728,'0.99','2005-07-28 04:56:33','2006-02-15 22:13:16'), - (3517,130,1,9452,'0.99','2005-07-30 22:19:16','2006-02-15 22:13:16'), - (3518,130,2,9637,'4.99','2005-07-31 05:18:54','2006-02-15 22:13:16'), - (3519,130,2,9724,'5.99','2005-07-31 08:33:08','2006-02-15 22:13:16'), - (3520,130,2,10568,'2.99','2005-08-01 13:17:28','2006-02-15 22:13:16'), - (3521,130,2,10645,'5.99','2005-08-01 15:52:01','2006-02-15 22:13:16'), - (3522,130,1,11811,'2.99','2005-08-17 11:59:18','2006-02-15 22:13:16'), - (3523,130,1,12094,'2.99','2005-08-17 22:31:04','2006-02-15 22:13:16'), - (3524,130,1,12777,'6.99','2005-08-18 23:39:22','2006-02-15 22:13:16'), - (3525,130,2,14111,'0.99','2005-08-21 00:59:01','2006-02-15 22:13:16'), - (3526,130,2,15574,'5.99','2005-08-23 05:29:32','2006-02-15 22:13:16'), - (3527,130,1,15777,'4.99','2005-08-23 13:29:08','2006-02-15 22:13:16'), - (3528,131,2,55,'2.99','2005-05-25 08:26:13','2006-02-15 22:13:16'), - (3529,131,1,83,'4.99','2005-05-25 12:30:15','2006-02-15 22:13:16'), - (3530,131,2,944,'7.99','2005-05-30 15:26:24','2006-02-15 22:13:16'), - (3531,131,1,1646,'9.99','2005-06-16 09:12:53','2006-02-15 22:13:16'), - (3532,131,2,1768,'4.99','2005-06-16 18:02:06','2006-02-15 22:13:16'), - (3533,131,1,3515,'2.99','2005-07-06 00:48:55','2006-02-15 22:13:16'), - (3534,131,1,5233,'4.99','2005-07-09 12:44:26','2006-02-15 22:13:16'), - (3535,131,1,5395,'4.99','2005-07-09 19:42:37','2006-02-15 22:13:16'), - (3536,131,1,5610,'2.99','2005-07-10 05:09:52','2006-02-15 22:13:16'), - (3537,131,2,5726,'2.99','2005-07-10 11:22:08','2006-02-15 22:13:16'), - (3538,131,1,5874,'3.99','2005-07-10 19:02:51','2006-02-15 22:13:16'), - (3539,131,1,7557,'2.99','2005-07-27 22:18:19','2006-02-15 22:13:16'), - (3540,131,2,8071,'0.99','2005-07-28 17:27:48','2006-02-15 22:13:16'), - (3541,131,1,8267,'6.99','2005-07-29 01:21:02','2006-02-15 22:13:17'), - (3542,131,1,8570,'8.99','2005-07-29 11:40:08','2006-02-15 22:13:17'), - (3543,131,1,9323,'3.99','2005-07-30 17:21:44','2006-02-15 22:13:17'), - (3544,131,1,10179,'2.99','2005-07-31 23:49:54','2006-02-15 22:13:17'), - (3545,131,1,10459,'4.99','2005-08-01 09:20:09','2006-02-15 22:13:17'), - (3546,131,1,10861,'1.99','2005-08-02 00:12:46','2006-02-15 22:13:17'), - (3547,131,2,11971,'0.99','2005-08-17 17:53:42','2006-02-15 22:13:17'), - (3548,131,1,11973,'2.99','2005-08-17 17:55:58','2006-02-15 22:13:17'), - (3549,131,1,12216,'0.99','2005-08-18 02:37:07','2006-02-15 22:13:17'), - (3550,131,2,12263,'0.99','2005-08-18 04:16:18','2006-02-15 22:13:17'), - (3551,131,1,12372,'9.99','2005-08-18 08:04:35','2006-02-15 22:13:17'), - (3552,131,2,13050,'6.99','2005-08-19 09:31:23','2006-02-15 22:13:17'), - (3553,131,2,13346,'7.99','2005-08-19 20:28:21','2006-02-15 22:13:17'), - (3554,131,2,13353,'2.99','2005-08-19 20:53:43','2006-02-15 22:13:17'), - (3555,131,1,13407,'0.99','2005-08-19 22:26:26','2006-02-15 22:13:17'), - (3556,131,2,15659,'2.99','2005-08-23 08:48:43','2006-02-15 22:13:17'), - (3557,131,1,16042,'2.99','2005-08-23 22:20:40','2006-02-15 22:13:17'), - (3558,132,1,1843,'0.99','2005-06-16 23:53:42','2006-02-15 22:13:17'), - (3559,132,1,2208,'4.99','2005-06-18 02:22:07','2006-02-15 22:13:17'), - (3560,132,1,2384,'0.99','2005-06-18 15:18:49','2006-02-15 22:13:17'), - (3561,132,2,2608,'2.99','2005-06-19 07:10:36','2006-02-15 22:13:17'), - (3562,132,2,2924,'4.99','2005-06-20 04:20:14','2006-02-15 22:13:17'), - (3563,132,1,3121,'4.99','2005-06-20 18:23:30','2006-02-15 22:13:17'), - (3564,132,1,3706,'0.99','2005-07-06 10:18:01','2006-02-15 22:13:17'), - (3565,132,2,3825,'2.99','2005-07-06 15:50:03','2006-02-15 22:13:17'), - (3566,132,1,4168,'4.99','2005-07-07 09:37:24','2006-02-15 22:13:17'), - (3567,132,1,4534,'4.99','2005-07-08 03:36:55','2006-02-15 22:13:17'), - (3568,132,1,4557,'5.99','2005-07-08 04:49:15','2006-02-15 22:13:17'), - (3569,132,2,4903,'0.99','2005-07-08 20:50:05','2006-02-15 22:13:17'), - (3570,132,1,5391,'2.99','2005-07-09 19:28:34','2006-02-15 22:13:17'), - (3571,132,2,5684,'5.99','2005-07-10 08:59:03','2006-02-15 22:13:17'), - (3572,132,1,5703,'0.99','2005-07-10 10:04:15','2006-02-15 22:13:17'), - (3573,132,2,5715,'1.99','2005-07-10 10:48:03','2006-02-15 22:13:17'), - (3574,132,1,6239,'6.99','2005-07-11 14:20:48','2006-02-15 22:13:17'), - (3575,132,1,6978,'1.99','2005-07-27 00:47:40','2006-02-15 22:13:17'), - (3576,132,2,7432,'0.99','2005-07-27 17:31:40','2006-02-15 22:13:17'), - (3577,132,1,7631,'1.99','2005-07-28 01:01:15','2006-02-15 22:13:17'), - (3578,132,2,10243,'4.99','2005-08-01 02:18:46','2006-02-15 22:13:17'), - (3579,132,1,10400,'6.99','2005-08-01 07:18:24','2006-02-15 22:13:17'), - (3580,132,2,10619,'3.99','2005-08-01 15:07:04','2006-02-15 22:13:17'), - (3581,132,1,10638,'6.99','2005-08-01 15:44:20','2006-02-15 22:13:17'), - (3582,132,2,11140,'0.99','2005-08-02 09:27:45','2006-02-15 22:13:17'), - (3583,132,2,11812,'0.99','2005-08-17 12:00:54','2006-02-15 22:13:17'), - (3584,132,2,12133,'0.99','2005-08-17 23:47:16','2006-02-15 22:13:17'), - (3585,132,1,15874,'4.99','2005-08-23 16:30:55','2006-02-15 22:13:17'), - (3586,133,1,275,'6.99','2005-05-26 17:09:53','2006-02-15 22:13:17'), - (3587,133,2,447,'2.99','2005-05-27 18:57:02','2006-02-15 22:13:17'), - (3588,133,2,1522,'3.99','2005-06-16 00:17:39','2006-02-15 22:13:17'), - (3589,133,2,2665,'7.99','2005-06-19 11:12:35','2006-02-15 22:13:18'), - (3590,133,1,3006,'0.99','2005-06-20 10:10:29','2006-02-15 22:13:18'), - (3591,133,2,3365,'0.99','2005-06-21 12:55:48','2006-02-15 22:13:18'), - (3592,133,2,4506,'6.99','2005-07-08 02:22:18','2006-02-15 22:13:18'), - (3593,133,2,4566,'2.99','2005-07-08 05:18:50','2006-02-15 22:13:18'), - (3594,133,1,4681,'6.99','2005-07-08 10:36:03','2006-02-15 22:13:18'), - (3595,133,2,4829,'2.99','2005-07-08 17:54:18','2006-02-15 22:13:18'), - (3596,133,2,5063,'2.99','2005-07-09 04:37:31','2006-02-15 22:13:18'), - (3597,133,1,6157,'4.99','2005-07-11 09:48:16','2006-02-15 22:13:18'), - (3598,133,1,6609,'3.99','2005-07-12 08:19:41','2006-02-15 22:13:18'), - (3599,133,1,7177,'2.99','2005-07-27 08:07:39','2006-02-15 22:13:18'), - (3600,133,1,7400,'0.99','2005-07-27 16:16:37','2006-02-15 22:13:18'), - (3601,133,2,8389,'6.99','2005-07-29 05:50:09','2006-02-15 22:13:18'), - (3602,133,2,9139,'2.99','2005-07-30 10:11:52','2006-02-15 22:13:18'), - (3603,133,1,9175,'0.99','2005-07-30 11:47:48','2006-02-15 22:13:18'), - (3604,133,2,9671,'0.99','2005-07-31 06:33:41','2006-02-15 22:13:18'), - (3605,133,1,10665,'0.99','2005-08-01 16:56:17','2006-02-15 22:13:18'), - (3606,133,1,12419,'4.99','2005-08-18 10:01:48','2006-02-15 22:13:18'), - (3607,133,1,12834,'4.99','2005-08-19 01:47:30','2006-02-15 22:13:18'), - (3608,133,2,13323,'2.99','2005-08-19 19:48:07','2006-02-15 22:13:18'), - (3609,133,1,13455,'1.99','2005-08-20 00:32:17','2006-02-15 22:13:18'), - (3610,133,2,13910,'2.99','2005-08-20 16:30:49','2006-02-15 22:13:18'), - (3611,133,2,15080,'0.99','2005-08-22 11:11:51','2006-02-15 22:13:18'), - (3612,133,1,16009,'6.99','2005-08-23 21:07:59','2006-02-15 22:13:18'), - (3613,134,1,366,'3.99','2005-05-27 07:33:54','2006-02-15 22:13:18'), - (3614,134,2,798,'0.99','2005-05-29 17:23:43','2006-02-15 22:13:18'), - (3615,134,1,814,'6.99','2005-05-29 20:16:12','2006-02-15 22:13:18'), - (3616,134,2,1124,'4.99','2005-05-31 16:49:34','2006-02-15 22:13:18'), - (3617,134,1,1618,'9.99','2005-06-16 07:08:38','2006-02-15 22:13:18'), - (3618,134,2,1784,'0.99','2005-06-16 19:25:32','2006-02-15 22:13:18'), - (3619,134,2,1881,'0.99','2005-06-17 03:09:56','2006-02-15 22:13:18'), - (3620,134,1,3267,'5.99','2005-06-21 04:55:21','2006-02-15 22:13:18'), - (3621,134,1,5315,'4.99','2005-07-09 16:09:19','2006-02-15 22:13:18'), - (3622,134,2,6226,'2.99','2005-07-11 13:48:11','2006-02-15 22:13:18'), - (3623,134,1,6659,'0.99','2005-07-12 11:18:05','2006-02-15 22:13:18'), - (3624,134,2,7516,'2.99','2005-07-27 20:55:28','2006-02-15 22:13:18'), - (3625,134,2,7965,'4.99','2005-07-28 13:52:57','2006-02-15 22:13:18'), - (3626,134,2,8650,'1.99','2005-07-29 14:59:04','2006-02-15 22:13:18'), - (3627,134,1,10864,'6.99','2005-08-02 00:18:59','2006-02-15 22:13:18'), - (3628,134,1,11280,'3.99','2005-08-02 14:34:33','2006-02-15 22:13:18'), - (3629,134,1,11283,'4.99','2005-08-02 14:39:46','2006-02-15 22:13:18'), - (3630,134,2,11482,'4.99','2005-08-02 22:24:31','2006-02-15 22:13:18'), - (3631,134,1,12754,'7.99','2005-08-18 22:37:41','2006-02-15 22:13:18'), - (3632,134,2,12987,'2.99','2005-08-19 07:11:44','2006-02-15 22:13:19'), - (3633,134,2,13006,'2.99','2005-08-19 07:47:16','2006-02-15 22:13:19'), - (3634,134,2,14265,'2.99','2005-08-21 06:20:14','2006-02-15 22:13:19'), - (3635,134,2,15963,'2.99','2005-08-23 19:42:46','2006-02-15 22:13:19'), - (3636,135,1,78,'5.99','2005-05-25 11:35:18','2006-02-15 22:13:19'), - (3637,135,2,753,'3.99','2005-05-29 10:16:42','2006-02-15 22:13:19'), - (3638,135,2,1272,'0.99','2005-06-15 07:42:58','2006-02-15 22:13:19'), - (3639,135,2,1671,'1.99','2005-06-16 10:30:22','2006-02-15 22:13:19'), - (3640,135,2,2941,'2.99','2005-06-20 05:22:18','2006-02-15 22:13:19'), - (3641,135,1,4102,'0.99','2005-07-07 06:25:19','2006-02-15 22:13:19'), - (3642,135,2,5054,'7.99','2005-07-09 04:01:02','2006-02-15 22:13:19'), - (3643,135,1,5541,'0.99','2005-07-10 02:44:27','2006-02-15 22:13:19'), - (3644,135,1,6117,'3.99','2005-07-11 07:39:38','2006-02-15 22:13:19'), - (3645,135,1,6461,'3.99','2005-07-12 01:14:03','2006-02-15 22:13:19'), - (3646,135,1,6817,'3.99','2005-07-12 18:19:57','2006-02-15 22:13:19'), - (3647,135,2,7297,'4.99','2005-07-27 12:39:48','2006-02-15 22:13:19'), - (3648,135,1,7437,'0.99','2005-07-27 17:39:18','2006-02-15 22:13:19'), - (3649,135,1,7554,'7.99','2005-07-27 22:12:41','2006-02-15 22:13:19'), - (3650,135,1,7734,'0.99','2005-07-28 05:08:44','2006-02-15 22:13:19'), - (3651,135,1,8315,'0.99','2005-07-29 03:37:07','2006-02-15 22:13:19'), - (3652,135,2,8885,'7.99','2005-07-30 00:36:26','2006-02-15 22:13:19'), - (3653,135,1,8987,'6.99','2005-07-30 04:37:36','2006-02-15 22:13:19'), - (3654,135,2,10091,'4.99','2005-07-31 20:23:13','2006-02-15 22:13:19'), - (3655,135,2,10471,'0.99','2005-08-01 09:52:37','2006-02-15 22:13:19'), - (3656,135,1,10611,'2.99','2005-08-01 14:53:52','2006-02-15 22:13:19'), - (3657,135,1,10698,'3.99','2005-08-01 18:24:41','2006-02-15 22:13:19'), - (3658,135,2,11194,'5.99','2005-08-02 11:35:53','2006-02-15 22:13:19'), - (3659,135,1,11704,'7.99','2005-08-17 07:21:22','2006-02-15 22:13:19'), - (3660,135,1,12249,'2.99','2005-08-18 03:53:34','2006-02-15 22:13:19'), - (3661,135,1,13035,'0.99','2005-08-19 08:46:45','2006-02-15 22:13:19'), - (3662,135,1,14005,'0.99','2005-08-20 20:19:05','2006-02-15 22:13:19'), - (3663,135,2,14136,'5.99','2005-08-21 01:57:26','2006-02-15 22:13:19'), - (3664,135,2,15908,'2.99','2005-08-23 17:42:00','2006-02-15 22:13:19'), - (3665,135,1,13390,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:19'), - (3666,136,2,1150,'2.99','2005-05-31 21:20:09','2006-02-15 22:13:19'), - (3667,136,2,2104,'2.99','2005-06-17 19:14:30','2006-02-15 22:13:19'), - (3668,136,1,4927,'0.99','2005-07-08 22:05:35','2006-02-15 22:13:19'), - (3669,136,1,5627,'3.99','2005-07-10 05:51:12','2006-02-15 22:13:19'), - (3670,136,2,6142,'3.99','2005-07-11 08:54:09','2006-02-15 22:13:19'), - (3671,136,1,6585,'8.99','2005-07-12 06:50:52','2006-02-15 22:13:19'), - (3672,136,2,9319,'0.99','2005-07-30 17:15:27','2006-02-15 22:13:19'), - (3673,136,2,9764,'5.99','2005-07-31 09:42:58','2006-02-15 22:13:19'), - (3674,136,2,11992,'10.99','2005-08-17 18:27:22','2006-02-15 22:13:19'), - (3675,136,1,12287,'5.99','2005-08-18 04:58:06','2006-02-15 22:13:19'), - (3676,136,2,12539,'0.99','2005-08-18 14:10:09','2006-02-15 22:13:19'), - (3677,136,2,13992,'4.99','2005-08-20 19:30:35','2006-02-15 22:13:19'), - (3678,136,2,14379,'0.99','2005-08-21 09:53:03','2006-02-15 22:13:19'), - (3679,136,1,14437,'2.99','2005-08-21 11:48:32','2006-02-15 22:13:19'), - (3680,136,1,15439,'4.99','2005-08-23 00:34:28','2006-02-15 22:13:20'), - (3681,137,1,925,'2.99','2005-05-30 12:13:52','2006-02-15 22:13:20'), - (3682,137,1,2469,'6.99','2005-06-18 20:24:23','2006-02-15 22:13:20'), - (3683,137,1,2785,'2.99','2005-06-19 18:43:57','2006-02-15 22:13:20'), - (3684,137,2,3058,'3.99','2005-06-20 13:28:35','2006-02-15 22:13:20'), - (3685,137,1,3436,'5.99','2005-06-21 19:16:09','2006-02-15 22:13:20'), - (3686,137,2,3589,'4.99','2005-07-06 04:30:18','2006-02-15 22:13:20'), - (3687,137,2,3676,'5.99','2005-07-06 09:10:37','2006-02-15 22:13:20'), - (3688,137,2,3874,'6.99','2005-07-06 18:06:12','2006-02-15 22:13:20'), - (3689,137,1,4332,'6.99','2005-07-07 18:25:26','2006-02-15 22:13:20'), - (3690,137,2,4474,'3.99','2005-07-08 00:26:56','2006-02-15 22:13:20'), - (3691,137,1,5106,'2.99','2005-07-09 06:40:24','2006-02-15 22:13:20'), - (3692,137,1,5443,'3.99','2005-07-09 21:56:09','2006-02-15 22:13:20'), - (3693,137,1,5804,'2.99','2005-07-10 15:06:31','2006-02-15 22:13:20'), - (3694,137,1,6039,'6.99','2005-07-11 03:12:19','2006-02-15 22:13:20'), - (3695,137,2,6200,'0.99','2005-07-11 12:16:42','2006-02-15 22:13:20'), - (3696,137,1,8028,'8.99','2005-07-28 16:11:15','2006-02-15 22:13:20'), - (3697,137,1,8106,'4.99','2005-07-28 19:02:46','2006-02-15 22:13:20'), - (3698,137,2,8954,'2.99','2005-07-30 03:25:51','2006-02-15 22:13:20'), - (3699,137,1,9002,'4.99','2005-07-30 05:02:21','2006-02-15 22:13:20'), - (3700,137,2,9200,'4.99','2005-07-30 12:39:52','2006-02-15 22:13:20'), - (3701,137,2,9466,'7.99','2005-07-30 22:44:36','2006-02-15 22:13:20'), - (3702,137,1,9709,'4.99','2005-07-31 08:04:55','2006-02-15 22:13:20'), - (3703,137,1,9789,'2.99','2005-07-31 10:30:25','2006-02-15 22:13:20'), - (3704,137,1,10175,'6.99','2005-07-31 23:40:11','2006-02-15 22:13:20'), - (3705,137,2,10595,'4.99','2005-08-01 14:16:28','2006-02-15 22:13:20'), - (3706,137,2,10842,'5.99','2005-08-01 23:41:24','2006-02-15 22:13:20'), - (3707,137,2,11057,'4.99','2005-08-02 06:38:19','2006-02-15 22:13:20'), - (3708,137,1,11281,'3.99','2005-08-02 14:35:01','2006-02-15 22:13:20'), - (3709,137,2,11732,'3.99','2005-08-17 08:29:46','2006-02-15 22:13:20'), - (3710,137,1,12078,'2.99','2005-08-17 22:00:22','2006-02-15 22:13:20'), - (3711,137,1,13148,'0.99','2005-08-19 12:55:30','2006-02-15 22:13:20'), - (3712,137,1,13472,'5.99','2005-08-20 01:03:31','2006-02-15 22:13:20'), - (3713,137,1,13776,'5.99','2005-08-20 11:57:06','2006-02-15 22:13:20'), - (3714,137,1,14754,'7.99','2005-08-21 23:17:26','2006-02-15 22:13:20'), - (3715,137,2,15082,'7.99','2005-08-22 11:17:06','2006-02-15 22:13:20'), - (3716,137,1,15133,'0.99','2005-08-22 13:17:43','2006-02-15 22:13:20'), - (3717,137,2,15537,'2.99','2005-08-23 04:00:30','2006-02-15 22:13:20'), - (3718,137,2,15889,'4.99','2005-08-23 16:57:43','2006-02-15 22:13:20'), - (3719,137,1,16030,'9.99','2005-08-23 21:56:04','2006-02-15 22:13:20'), - (3720,138,1,523,'2.99','2005-05-28 03:53:26','2006-02-15 22:13:20'), - (3721,138,1,1020,'0.99','2005-05-31 03:06:08','2006-02-15 22:13:20'), - (3722,138,2,1316,'0.99','2005-06-15 10:26:23','2006-02-15 22:13:20'), - (3723,138,2,2038,'0.99','2005-06-17 14:00:51','2006-02-15 22:13:20'), - (3724,138,1,2731,'7.99','2005-06-19 15:14:55','2006-02-15 22:13:20'), - (3725,138,2,3481,'2.99','2005-07-05 23:13:07','2006-02-15 22:13:20'), - (3726,138,1,5378,'0.99','2005-07-09 19:05:56','2006-02-15 22:13:20'), - (3727,138,1,5600,'1.99','2005-07-10 04:55:45','2006-02-15 22:13:20'), - (3728,138,1,5679,'4.99','2005-07-10 08:44:02','2006-02-15 22:13:21'), - (3729,138,1,6458,'2.99','2005-07-12 01:08:52','2006-02-15 22:13:21'), - (3730,138,1,6892,'0.99','2005-07-12 21:10:04','2006-02-15 22:13:21'), - (3731,138,1,7208,'2.99','2005-07-27 09:16:28','2006-02-15 22:13:21'), - (3732,138,1,7754,'2.99','2005-07-28 06:10:55','2006-02-15 22:13:21'), - (3733,138,2,8123,'4.99','2005-07-28 19:28:23','2006-02-15 22:13:21'), - (3734,138,2,8160,'3.99','2005-07-28 21:10:30','2006-02-15 22:13:21'), - (3735,138,1,8424,'3.99','2005-07-29 07:06:03','2006-02-15 22:13:21'), - (3736,138,2,9259,'1.99','2005-07-30 14:37:44','2006-02-15 22:13:21'), - (3737,138,1,9619,'0.99','2005-07-31 04:17:02','2006-02-15 22:13:21'), - (3738,138,1,9947,'9.99','2005-07-31 15:49:40','2006-02-15 22:13:21'), - (3739,138,1,10110,'0.99','2005-07-31 21:06:12','2006-02-15 22:13:21'), - (3740,138,2,10190,'4.99','2005-08-01 00:27:53','2006-02-15 22:13:21'), - (3741,138,1,10268,'3.99','2005-08-01 03:08:56','2006-02-15 22:13:21'), - (3742,138,1,10431,'5.99','2005-08-01 08:41:54','2006-02-15 22:13:21'), - (3743,138,1,11015,'4.99','2005-08-02 05:13:00','2006-02-15 22:13:21'), - (3744,138,1,11088,'0.99','2005-08-02 07:48:31','2006-02-15 22:13:21'), - (3745,138,1,11463,'0.99','2005-08-02 21:37:36','2006-02-15 22:13:21'), - (3746,138,2,12550,'2.99','2005-08-18 14:40:38','2006-02-15 22:13:21'), - (3747,138,2,12873,'2.99','2005-08-19 03:05:41','2006-02-15 22:13:21'), - (3748,138,1,14194,'1.99','2005-08-21 03:40:11','2006-02-15 22:13:21'), - (3749,138,2,14432,'4.99','2005-08-21 11:36:15','2006-02-15 22:13:21'), - (3750,138,2,14486,'4.99','2005-08-21 13:52:54','2006-02-15 22:13:21'), - (3751,138,1,14987,'4.99','2005-08-22 07:41:08','2006-02-15 22:13:21'), - (3752,138,1,15424,'2.99','2005-08-23 00:03:01','2006-02-15 22:13:21'), - (3753,138,1,15501,'0.99','2005-08-23 02:39:56','2006-02-15 22:13:21'), - (3754,139,2,1169,'2.99','2005-06-14 23:42:56','2006-02-15 22:13:21'), - (3755,139,1,1736,'2.99','2005-06-16 15:52:32','2006-02-15 22:13:21'), - (3756,139,1,2659,'0.99','2005-06-19 10:47:42','2006-02-15 22:13:21'), - (3757,139,2,2718,'7.99','2005-06-19 14:49:42','2006-02-15 22:13:21'), - (3758,139,2,4660,'0.99','2005-07-08 09:54:47','2006-02-15 22:13:21'), - (3759,139,2,4663,'2.99','2005-07-08 09:59:18','2006-02-15 22:13:21'), - (3760,139,2,5092,'2.99','2005-07-09 05:57:39','2006-02-15 22:13:21'), - (3761,139,2,5265,'7.99','2005-07-09 14:15:01','2006-02-15 22:13:21'), - (3762,139,1,5390,'6.99','2005-07-09 19:26:22','2006-02-15 22:13:21'), - (3763,139,1,5494,'6.99','2005-07-10 00:15:00','2006-02-15 22:13:21'), - (3764,139,1,6496,'6.99','2005-07-12 02:57:39','2006-02-15 22:13:21'), - (3765,139,2,6740,'0.99','2005-07-12 14:22:08','2006-02-15 22:13:21'), - (3766,139,1,7369,'0.99','2005-07-27 15:07:58','2006-02-15 22:13:21'), - (3767,139,2,7767,'5.99','2005-07-28 06:42:02','2006-02-15 22:13:21'), - (3768,139,2,9415,'2.99','2005-07-30 20:48:31','2006-02-15 22:13:21'), - (3769,139,2,9920,'4.99','2005-07-31 14:57:13','2006-02-15 22:13:21'), - (3770,139,1,10900,'2.99','2005-08-02 01:34:26','2006-02-15 22:13:21'), - (3771,139,1,12859,'6.99','2005-08-19 02:23:23','2006-02-15 22:13:21'), - (3772,139,2,13401,'3.99','2005-08-19 22:16:16','2006-02-15 22:13:21'), - (3773,139,2,14736,'5.99','2005-08-21 22:25:53','2006-02-15 22:13:21'), - (3774,139,1,14788,'2.99','2005-08-22 00:27:59','2006-02-15 22:13:21'), - (3775,139,1,15024,'2.99','2005-08-22 08:57:10','2006-02-15 22:13:22'), - (3776,139,2,15029,'2.99','2005-08-22 09:04:53','2006-02-15 22:13:22'), - (3777,139,1,15062,'2.99','2005-08-22 10:34:39','2006-02-15 22:13:22'), - (3778,139,1,15218,'9.99','2005-08-22 16:59:05','2006-02-15 22:13:22'), - (3779,139,1,15471,'3.99','2005-08-23 01:38:48','2006-02-15 22:13:22'), - (3780,139,1,15743,'0.99','2005-08-23 12:12:05','2006-02-15 22:13:22'), - (3781,140,1,1586,'4.99','2005-06-16 04:51:18','2006-02-15 22:13:22'), - (3782,140,1,1687,'2.99','2005-06-16 12:09:20','2006-02-15 22:13:22'), - (3783,140,2,2332,'6.99','2005-06-18 10:53:51','2006-02-15 22:13:22'), - (3784,140,2,3171,'0.99','2005-06-20 22:15:47','2006-02-15 22:13:22'), - (3785,140,1,6286,'4.99','2005-07-11 16:55:35','2006-02-15 22:13:22'), - (3786,140,1,6407,'9.99','2005-07-11 23:02:19','2006-02-15 22:13:22'), - (3787,140,2,6571,'0.99','2005-07-12 05:51:47','2006-02-15 22:13:22'), - (3788,140,1,6918,'2.99','2005-07-12 22:30:29','2006-02-15 22:13:22'), - (3789,140,1,7170,'4.99','2005-07-27 07:58:26','2006-02-15 22:13:22'), - (3790,140,1,9094,'4.99','2005-07-30 08:35:10','2006-02-15 22:13:22'), - (3791,140,1,9404,'0.99','2005-07-30 20:21:35','2006-02-15 22:13:22'), - (3792,140,1,10342,'6.99','2005-08-01 05:11:11','2006-02-15 22:13:22'), - (3793,140,2,11430,'3.99','2005-08-02 20:04:36','2006-02-15 22:13:22'), - (3794,140,1,12086,'4.99','2005-08-17 22:20:01','2006-02-15 22:13:22'), - (3795,140,1,12675,'4.99','2005-08-18 19:34:02','2006-02-15 22:13:22'), - (3796,140,2,13053,'10.99','2005-08-19 09:31:48','2006-02-15 22:13:22'), - (3797,140,1,15261,'2.99','2005-08-22 18:24:34','2006-02-15 22:13:22'), - (3798,140,1,15852,'2.99','2005-08-23 15:47:02','2006-02-15 22:13:22'), - (3799,141,2,930,'2.99','2005-05-30 12:44:57','2006-02-15 22:13:22'), - (3800,141,2,1242,'7.99','2005-06-15 05:05:07','2006-02-15 22:13:22'), - (3801,141,2,2895,'7.99','2005-06-20 02:26:31','2006-02-15 22:13:22'), - (3802,141,1,3434,'4.99','2005-06-21 19:08:28','2006-02-15 22:13:22'), - (3803,141,1,4057,'1.99','2005-07-07 04:00:20','2006-02-15 22:13:22'), - (3804,141,2,4297,'0.99','2005-07-07 16:24:09','2006-02-15 22:13:22'), - (3805,141,1,4656,'5.99','2005-07-08 09:50:10','2006-02-15 22:13:22'), - (3806,141,2,5062,'2.99','2005-07-09 04:36:49','2006-02-15 22:13:22'), - (3807,141,1,5769,'0.99','2005-07-10 13:17:58','2006-02-15 22:13:22'), - (3808,141,2,6979,'4.99','2005-07-27 00:49:53','2006-02-15 22:13:22'), - (3809,141,2,7878,'2.99','2005-07-28 10:27:10','2006-02-15 22:13:22'), - (3810,141,1,8434,'4.99','2005-07-29 07:20:14','2006-02-15 22:13:22'), - (3811,141,2,9073,'7.99','2005-07-30 07:49:56','2006-02-15 22:13:22'), - (3812,141,1,9584,'4.99','2005-07-31 03:05:48','2006-02-15 22:13:22'), - (3813,141,2,9683,'2.99','2005-07-31 06:47:13','2006-02-15 22:13:22'), - (3814,141,1,10287,'3.99','2005-08-01 03:37:01','2006-02-15 22:13:22'), - (3815,141,1,10379,'1.99','2005-08-01 06:34:29','2006-02-15 22:13:22'), - (3816,141,1,10798,'4.99','2005-08-01 22:03:10','2006-02-15 22:13:22'), - (3817,141,1,11411,'2.99','2005-08-02 19:29:47','2006-02-15 22:13:22'), - (3818,141,1,11412,'5.99','2005-08-02 19:32:51','2006-02-15 22:13:22'), - (3819,141,1,12032,'5.99','2005-08-17 20:14:26','2006-02-15 22:13:23'), - (3820,141,1,12093,'2.99','2005-08-17 22:28:40','2006-02-15 22:13:23'), - (3821,141,2,12107,'3.99','2005-08-17 22:56:24','2006-02-15 22:13:23'), - (3822,141,2,12353,'2.99','2005-08-18 07:33:08','2006-02-15 22:13:23'), - (3823,141,1,13000,'0.99','2005-08-19 07:36:42','2006-02-15 22:13:23'), - (3824,141,2,13169,'2.99','2005-08-19 13:43:35','2006-02-15 22:13:23'), - (3825,141,2,13470,'4.99','2005-08-20 01:01:16','2006-02-15 22:13:23'), - (3826,141,2,14059,'7.99','2005-08-20 22:24:44','2006-02-15 22:13:23'), - (3827,141,1,14112,'2.99','2005-08-21 01:00:46','2006-02-15 22:13:23'), - (3828,141,1,15013,'4.99','2005-08-22 08:42:45','2006-02-15 22:13:23'), - (3829,141,1,15309,'0.99','2005-08-22 19:54:52','2006-02-15 22:13:23'), - (3830,141,1,15964,'2.99','2005-08-23 19:45:25','2006-02-15 22:13:23'), - (3831,142,2,11,'8.99','2005-05-25 00:09:02','2006-02-15 22:13:23'), - (3832,142,1,148,'0.99','2005-05-26 00:25:23','2006-02-15 22:13:23'), - (3833,142,1,575,'9.99','2005-05-28 10:56:09','2006-02-15 22:13:23'), - (3834,142,1,1268,'1.99','2005-06-15 07:29:30','2006-02-15 22:13:23'), - (3835,142,1,3214,'2.99','2005-06-21 01:08:26','2006-02-15 22:13:23'), - (3836,142,2,3492,'2.99','2005-07-05 23:44:37','2006-02-15 22:13:23'), - (3837,142,2,4497,'4.99','2005-07-08 01:51:32','2006-02-15 22:13:23'), - (3838,142,1,4531,'4.99','2005-07-08 03:27:59','2006-02-15 22:13:23'), - (3839,142,1,6522,'0.99','2005-07-12 04:11:58','2006-02-15 22:13:23'), - (3840,142,1,7764,'2.99','2005-07-28 06:40:05','2006-02-15 22:13:23'), - (3841,142,2,8513,'2.99','2005-07-29 09:52:59','2006-02-15 22:13:23'), - (3842,142,2,8623,'4.99','2005-07-29 13:55:11','2006-02-15 22:13:23'), - (3843,142,1,9020,'7.99','2005-07-30 05:31:27','2006-02-15 22:13:23'), - (3844,142,1,9131,'2.99','2005-07-30 09:55:57','2006-02-15 22:13:23'), - (3845,142,1,9419,'5.99','2005-07-30 21:04:59','2006-02-15 22:13:23'), - (3846,142,2,10934,'5.99','2005-08-02 02:52:18','2006-02-15 22:13:23'), - (3847,142,2,11244,'5.99','2005-08-02 13:33:24','2006-02-15 22:13:23'), - (3848,142,1,12964,'0.99','2005-08-19 06:29:13','2006-02-15 22:13:23'), - (3849,142,1,13044,'0.99','2005-08-19 09:14:31','2006-02-15 22:13:23'), - (3850,142,2,13745,'0.99','2005-08-20 10:53:49','2006-02-15 22:13:23'), - (3851,142,1,13959,'0.99','2005-08-20 18:16:21','2006-02-15 22:13:23'), - (3852,142,2,14116,'4.99','2005-08-21 01:11:17','2006-02-15 22:13:23'), - (3853,142,2,14813,'0.99','2005-08-22 01:11:37','2006-02-15 22:13:23'), - (3854,142,2,15333,'2.99','2005-08-22 20:44:06','2006-02-15 22:13:23'), - (3855,142,1,15477,'1.99','2005-08-23 01:46:35','2006-02-15 22:13:23'), - (3856,142,1,15454,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:23'), - (3857,143,1,221,'2.99','2005-05-26 10:14:09','2006-02-15 22:13:23'), - (3858,143,1,312,'2.99','2005-05-26 22:52:19','2006-02-15 22:13:23'), - (3859,143,2,1898,'1.99','2005-06-17 04:28:11','2006-02-15 22:13:23'), - (3860,143,1,1942,'4.99','2005-06-17 07:43:39','2006-02-15 22:13:23'), - (3861,143,2,2251,'3.99','2005-06-18 05:05:08','2006-02-15 22:13:24'), - (3862,143,1,2574,'0.99','2005-06-19 04:23:52','2006-02-15 22:13:24'), - (3863,143,1,2588,'4.99','2005-06-19 05:20:31','2006-02-15 22:13:24'), - (3864,143,1,4031,'7.99','2005-07-07 02:32:07','2006-02-15 22:13:24'), - (3865,143,2,4221,'0.99','2005-07-07 12:18:57','2006-02-15 22:13:24'), - (3866,143,1,4585,'7.99','2005-07-08 06:11:58','2006-02-15 22:13:24'), - (3867,143,2,6076,'6.99','2005-07-11 05:05:30','2006-02-15 22:13:24'), - (3868,143,2,6207,'4.99','2005-07-11 12:34:24','2006-02-15 22:13:24'), - (3869,143,1,8312,'0.99','2005-07-29 03:32:38','2006-02-15 22:13:24'), - (3870,143,1,8335,'0.99','2005-07-29 04:18:25','2006-02-15 22:13:24'), - (3871,143,2,9889,'1.99','2005-07-31 14:02:50','2006-02-15 22:13:24'), - (3872,143,1,10118,'0.99','2005-07-31 21:16:31','2006-02-15 22:13:24'), - (3873,143,1,11278,'6.99','2005-08-02 14:29:43','2006-02-15 22:13:24'), - (3874,143,2,11651,'6.99','2005-08-17 05:02:25','2006-02-15 22:13:24'), - (3875,143,1,12408,'2.99','2005-08-18 09:40:38','2006-02-15 22:13:24'), - (3876,143,2,13835,'4.99','2005-08-20 14:06:33','2006-02-15 22:13:24'), - (3877,143,1,15250,'5.99','2005-08-22 18:03:11','2006-02-15 22:13:24'), - (3878,143,1,16029,'4.99','2005-08-23 21:54:02','2006-02-15 22:13:24'), - (3879,144,1,323,'2.99','2005-05-27 00:49:27','2006-02-15 22:13:24'), - (3880,144,2,345,'2.99','2005-05-27 04:32:25','2006-02-15 22:13:24'), - (3881,144,1,1814,'5.99','2005-06-16 21:15:22','2006-02-15 22:13:24'), - (3882,144,1,1943,'0.99','2005-06-17 07:49:17','2006-02-15 22:13:24'), - (3883,144,1,2756,'4.99','2005-06-19 16:57:42','2006-02-15 22:13:24'), - (3884,144,2,3019,'4.99','2005-06-20 11:11:52','2006-02-15 22:13:24'), - (3885,144,1,3145,'2.99','2005-06-20 20:21:17','2006-02-15 22:13:24'), - (3886,144,1,3321,'2.99','2005-06-21 08:33:26','2006-02-15 22:13:24'), - (3887,144,1,4726,'6.99','2005-07-08 12:50:54','2006-02-15 22:13:24'), - (3888,144,2,4818,'3.99','2005-07-08 17:18:22','2006-02-15 22:13:24'), - (3889,144,2,5049,'0.99','2005-07-09 03:54:12','2006-02-15 22:13:24'), - (3890,144,2,5374,'8.99','2005-07-09 18:52:08','2006-02-15 22:13:24'), - (3891,144,2,5408,'7.99','2005-07-09 20:16:51','2006-02-15 22:13:24'), - (3892,144,2,5526,'7.99','2005-07-10 02:04:03','2006-02-15 22:13:24'), - (3893,144,2,6614,'7.99','2005-07-12 08:33:49','2006-02-15 22:13:24'), - (3894,144,2,6791,'9.99','2005-07-12 16:35:07','2006-02-15 22:13:24'), - (3895,144,2,7378,'5.99','2005-07-27 15:31:33','2006-02-15 22:13:24'), - (3896,144,2,7566,'2.99','2005-07-27 22:34:45','2006-02-15 22:13:24'), - (3897,144,1,7830,'0.99','2005-07-28 08:43:49','2006-02-15 22:13:24'), - (3898,144,1,7858,'3.99','2005-07-28 09:50:18','2006-02-15 22:13:24'), - (3899,144,2,8459,'5.99','2005-07-29 08:05:40','2006-02-15 22:13:24'), - (3900,144,1,8983,'0.99','2005-07-30 04:31:08','2006-02-15 22:13:24'), - (3901,144,1,9034,'7.99','2005-07-30 06:10:58','2006-02-15 22:13:24'), - (3902,144,1,9098,'3.99','2005-07-30 08:44:21','2006-02-15 22:13:25'), - (3903,144,2,9174,'4.99','2005-07-30 11:42:10','2006-02-15 22:13:25'), - (3904,144,2,9714,'0.99','2005-07-31 08:15:32','2006-02-15 22:13:25'), - (3905,144,1,10302,'0.99','2005-08-01 04:12:08','2006-02-15 22:13:25'), - (3906,144,1,10593,'4.99','2005-08-01 14:13:19','2006-02-15 22:13:25'), - (3907,144,1,10740,'5.99','2005-08-01 19:50:32','2006-02-15 22:13:25'), - (3908,144,1,10951,'4.99','2005-08-02 03:26:35','2006-02-15 22:13:25'), - (3909,144,1,11228,'2.99','2005-08-02 12:55:23','2006-02-15 22:13:25'), - (3910,144,2,11476,'6.99','2005-08-02 22:03:47','2006-02-15 22:13:25'), - (3911,144,1,11534,'7.99','2005-08-17 00:35:27','2006-02-15 22:13:25'), - (3912,144,1,11859,'4.99','2005-08-17 13:51:20','2006-02-15 22:13:25'), - (3913,144,2,12087,'2.99','2005-08-17 22:20:12','2006-02-15 22:13:25'), - (3914,144,2,12733,'2.99','2005-08-18 21:59:00','2006-02-15 22:13:25'), - (3915,144,1,12858,'3.99','2005-08-19 02:22:16','2006-02-15 22:13:25'), - (3916,144,2,12980,'6.99','2005-08-19 07:03:14','2006-02-15 22:13:25'), - (3917,144,2,13881,'2.99','2005-08-20 15:18:55','2006-02-15 22:13:25'), - (3918,144,2,14159,'2.99','2005-08-21 02:45:58','2006-02-15 22:13:25'), - (3919,144,1,15017,'1.99','2005-08-22 08:47:44','2006-02-15 22:13:25'), - (3920,144,1,15753,'7.99','2005-08-23 12:43:30','2006-02-15 22:13:25'), - (3921,145,1,500,'0.99','2005-05-28 01:05:25','2006-02-15 22:13:25'), - (3922,145,2,2271,'4.99','2005-06-18 06:29:52','2006-02-15 22:13:25'), - (3923,145,2,2614,'0.99','2005-06-19 07:28:11','2006-02-15 22:13:25'), - (3924,145,1,3647,'5.99','2005-07-06 07:29:17','2006-02-15 22:13:25'), - (3925,145,2,4201,'8.99','2005-07-07 11:19:51','2006-02-15 22:13:25'), - (3926,145,1,4364,'4.99','2005-07-07 19:46:51','2006-02-15 22:13:25'), - (3927,145,2,4405,'6.99','2005-07-07 21:33:16','2006-02-15 22:13:26'), - (3928,145,1,4470,'2.99','2005-07-08 00:20:57','2006-02-15 22:13:26'), - (3929,145,2,4817,'2.99','2005-07-08 17:17:31','2006-02-15 22:13:26'), - (3930,145,2,6056,'2.99','2005-07-11 04:01:27','2006-02-15 22:13:26'), - (3931,145,1,6339,'1.99','2005-07-11 19:45:32','2006-02-15 22:13:26'), - (3932,145,2,6378,'0.99','2005-07-11 21:45:23','2006-02-15 22:13:26'), - (3933,145,2,7061,'2.99','2005-07-27 03:51:10','2006-02-15 22:13:26'), - (3934,145,1,7529,'7.99','2005-07-27 21:18:08','2006-02-15 22:13:26'), - (3935,145,2,7954,'0.99','2005-07-28 13:25:05','2006-02-15 22:13:26'), - (3936,145,1,8380,'0.99','2005-07-29 05:31:29','2006-02-15 22:13:26'), - (3937,145,1,9156,'2.99','2005-07-30 11:04:55','2006-02-15 22:13:26'), - (3938,145,2,9576,'0.99','2005-07-31 02:52:59','2006-02-15 22:13:26'), - (3939,145,2,10799,'4.99','2005-08-01 22:03:31','2006-02-15 22:13:26'), - (3940,145,2,11904,'5.99','2005-08-17 15:39:26','2006-02-15 22:13:26'), - (3941,145,2,11954,'2.99','2005-08-17 17:18:36','2006-02-15 22:13:26'), - (3942,145,1,12637,'2.99','2005-08-18 18:06:53','2006-02-15 22:13:26'), - (3943,145,2,12785,'2.99','2005-08-19 00:05:49','2006-02-15 22:13:26'), - (3944,145,2,13012,'7.99','2005-08-19 07:54:59','2006-02-15 22:13:26'), - (3945,145,1,13164,'3.99','2005-08-19 13:30:55','2006-02-15 22:13:26'), - (3946,145,2,13272,'0.99','2005-08-19 17:49:13','2006-02-15 22:13:26'), - (3947,145,2,14044,'5.99','2005-08-20 21:48:38','2006-02-15 22:13:26'), - (3948,145,2,14389,'6.99','2005-08-21 10:15:20','2006-02-15 22:13:26'), - (3949,146,2,762,'7.99','2005-05-29 11:15:51','2006-02-15 22:13:26'), - (3950,146,1,1073,'4.99','2005-05-31 09:55:04','2006-02-15 22:13:26'), - (3951,146,2,1209,'7.99','2005-06-15 02:31:12','2006-02-15 22:13:26'), - (3952,146,2,1724,'1.99','2005-06-16 15:15:43','2006-02-15 22:13:26'), - (3953,146,2,2099,'2.99','2005-06-17 18:47:26','2006-02-15 22:13:26'), - (3954,146,1,2242,'3.99','2005-06-18 04:32:28','2006-02-15 22:13:26'), - (3955,146,1,2342,'2.99','2005-06-18 11:42:40','2006-02-15 22:13:26'), - (3956,146,1,2800,'0.99','2005-06-19 19:15:56','2006-02-15 22:13:26'), - (3957,146,1,3131,'4.99','2005-06-20 19:08:00','2006-02-15 22:13:26'), - (3958,146,1,4849,'6.99','2005-07-08 18:34:34','2006-02-15 22:13:26'), - (3959,146,2,5000,'4.99','2005-07-09 01:16:13','2006-02-15 22:13:26'), - (3960,146,1,6102,'7.99','2005-07-11 06:53:09','2006-02-15 22:13:26'), - (3961,146,2,6184,'6.99','2005-07-11 11:19:21','2006-02-15 22:13:26'), - (3962,146,1,6327,'4.99','2005-07-11 19:07:29','2006-02-15 22:13:26'), - (3963,146,1,6990,'0.99','2005-07-27 01:02:46','2006-02-15 22:13:26'), - (3964,146,2,8246,'3.99','2005-07-29 00:38:41','2006-02-15 22:13:26'), - (3965,146,2,11173,'7.99','2005-08-02 10:28:00','2006-02-15 22:13:26'), - (3966,146,1,11221,'2.99','2005-08-02 12:32:12','2006-02-15 22:13:26'), - (3967,146,2,11370,'0.99','2005-08-02 18:06:01','2006-02-15 22:13:26'), - (3968,146,2,11392,'5.99','2005-08-02 18:41:11','2006-02-15 22:13:26'), - (3969,146,1,11573,'4.99','2005-08-17 01:38:18','2006-02-15 22:13:27'), - (3970,146,1,11857,'4.99','2005-08-17 13:48:30','2006-02-15 22:13:27'), - (3971,146,1,12129,'7.99','2005-08-17 23:31:25','2006-02-15 22:13:27'), - (3972,146,1,12385,'2.99','2005-08-18 08:39:33','2006-02-15 22:13:27'), - (3973,146,1,12888,'4.99','2005-08-19 03:41:09','2006-02-15 22:13:27'), - (3974,146,1,13606,'4.99','2005-08-20 06:07:01','2006-02-15 22:13:27'), - (3975,146,2,13829,'4.99','2005-08-20 13:50:17','2006-02-15 22:13:27'), - (3976,146,2,14143,'2.99','2005-08-21 02:10:32','2006-02-15 22:13:27'), - (3977,146,1,15842,'6.99','2005-08-23 15:36:05','2006-02-15 22:13:27'), - (3978,147,1,362,'0.99','2005-05-27 07:10:25','2006-02-15 22:13:27'), - (3979,147,1,509,'0.99','2005-05-28 02:51:12','2006-02-15 22:13:27'), - (3980,147,1,2171,'0.99','2005-06-18 00:06:04','2006-02-15 22:13:27'), - (3981,147,1,2456,'6.99','2005-06-18 19:36:50','2006-02-15 22:13:27'), - (3982,147,2,2859,'2.99','2005-06-19 23:18:42','2006-02-15 22:13:27'), - (3983,147,2,3011,'5.99','2005-06-20 10:39:10','2006-02-15 22:13:27'), - (3984,147,2,3919,'7.99','2005-07-06 20:26:21','2006-02-15 22:13:27'), - (3985,147,2,3956,'2.99','2005-07-06 22:01:51','2006-02-15 22:13:27'), - (3986,147,2,4792,'0.99','2005-07-08 16:29:38','2006-02-15 22:13:27'), - (3987,147,2,5044,'0.99','2005-07-09 03:30:25','2006-02-15 22:13:27'), - (3988,147,1,5567,'2.99','2005-07-10 03:36:46','2006-02-15 22:13:27'), - (3989,147,1,5844,'0.99','2005-07-10 17:14:43','2006-02-15 22:13:27'), - (3990,147,2,6343,'0.99','2005-07-11 19:51:35','2006-02-15 22:13:27'), - (3991,147,2,6469,'4.99','2005-07-12 01:29:27','2006-02-15 22:13:27'), - (3992,147,2,6753,'2.99','2005-07-12 14:55:42','2006-02-15 22:13:27'), - (3993,147,2,7044,'0.99','2005-07-27 03:27:29','2006-02-15 22:13:27'), - (3994,147,1,7723,'0.99','2005-07-28 04:45:37','2006-02-15 22:13:27'), - (3995,147,1,8893,'2.99','2005-07-30 00:48:19','2006-02-15 22:13:27'), - (3996,147,2,9772,'0.99','2005-07-31 09:56:07','2006-02-15 22:13:27'), - (3997,147,1,10706,'7.99','2005-08-01 18:41:28','2006-02-15 22:13:27'), - (3998,147,2,10752,'8.99','2005-08-01 20:08:49','2006-02-15 22:13:27'), - (3999,147,1,12284,'4.99','2005-08-18 04:55:49','2006-02-15 22:13:27'), - (4000,147,1,12757,'4.99','2005-08-18 22:57:45','2006-02-15 22:13:27'), - (4001,147,2,13542,'4.99','2005-08-20 03:41:57','2006-02-15 22:13:27'), - (4002,147,2,13670,'3.99','2005-08-20 08:27:01','2006-02-15 22:13:27'), - (4003,147,2,14021,'4.99','2005-08-20 21:02:12','2006-02-15 22:13:27'), - (4004,147,1,14156,'0.99','2005-08-21 02:35:16','2006-02-15 22:13:27'), - (4005,147,2,14641,'0.99','2005-08-21 19:05:23','2006-02-15 22:13:27'), - (4006,147,2,14960,'4.99','2005-08-22 06:31:36','2006-02-15 22:13:27'), - (4007,147,1,15052,'2.99','2005-08-22 10:09:19','2006-02-15 22:13:27'), - (4008,147,2,15331,'4.99','2005-08-22 20:37:57','2006-02-15 22:13:28'), - (4009,147,2,15513,'4.99','2005-08-23 03:01:56','2006-02-15 22:13:28'), - (4010,147,1,15730,'8.99','2005-08-23 11:32:35','2006-02-15 22:13:28'), - (4011,147,2,16004,'6.99','2005-08-23 20:53:20','2006-02-15 22:13:28'), - (4012,148,1,682,'4.99','2005-05-28 23:53:18','2006-02-15 22:13:28'), - (4013,148,1,1501,'1.99','2005-06-15 22:02:35','2006-02-15 22:13:28'), - (4014,148,2,1517,'6.99','2005-06-15 23:20:26','2006-02-15 22:13:28'), - (4015,148,2,2751,'3.99','2005-06-19 16:39:23','2006-02-15 22:13:28'), - (4016,148,2,2843,'3.99','2005-06-19 22:36:39','2006-02-15 22:13:28'), - (4017,148,2,2847,'5.99','2005-06-19 22:54:01','2006-02-15 22:13:28'), - (4018,148,1,3653,'0.99','2005-07-06 07:45:13','2006-02-15 22:13:28'), - (4019,148,1,4080,'0.99','2005-07-07 05:09:54','2006-02-15 22:13:28'), - (4020,148,1,4746,'2.99','2005-07-08 13:47:55','2006-02-15 22:13:28'), - (4021,148,1,4950,'2.99','2005-07-08 22:58:07','2006-02-15 22:13:28'), - (4022,148,1,5034,'4.99','2005-07-09 02:48:15','2006-02-15 22:13:28'), - (4023,148,1,5372,'4.99','2005-07-09 18:48:39','2006-02-15 22:13:28'), - (4024,148,1,6169,'1.99','2005-07-11 10:25:56','2006-02-15 22:13:28'), - (4025,148,1,6640,'8.99','2005-07-12 10:27:19','2006-02-15 22:13:28'), - (4026,148,2,6793,'10.99','2005-07-12 16:37:55','2006-02-15 22:13:28'), - (4027,148,1,7656,'0.99','2005-07-28 02:07:19','2006-02-15 22:13:28'), - (4028,148,2,7693,'4.99','2005-07-28 03:31:22','2006-02-15 22:13:28'), - (4029,148,1,7865,'9.99','2005-07-28 10:07:04','2006-02-15 22:13:28'), - (4030,148,2,8111,'4.99','2005-07-28 19:10:03','2006-02-15 22:13:28'), - (4031,148,2,8331,'3.99','2005-07-29 04:13:29','2006-02-15 22:13:28'), - (4032,148,1,8394,'4.99','2005-07-29 06:02:14','2006-02-15 22:13:28'), - (4033,148,2,8578,'4.99','2005-07-29 11:58:14','2006-02-15 22:13:28'), - (4034,148,2,8626,'4.99','2005-07-29 14:03:20','2006-02-15 22:13:28'), - (4035,148,1,9023,'5.99','2005-07-30 05:36:40','2006-02-15 22:13:28'), - (4036,148,1,9106,'2.99','2005-07-30 08:52:34','2006-02-15 22:13:28'), - (4037,148,1,9530,'1.99','2005-07-31 01:09:06','2006-02-15 22:13:28'), - (4038,148,1,9594,'4.99','2005-07-31 03:23:52','2006-02-15 22:13:28'), - (4039,148,2,10067,'4.99','2005-07-31 19:37:58','2006-02-15 22:13:28'), - (4040,148,2,10830,'6.99','2005-08-01 23:18:06','2006-02-15 22:13:28'), - (4041,148,1,11357,'10.99','2005-08-02 17:42:49','2006-02-15 22:13:28'), - (4042,148,1,12029,'2.99','2005-08-17 20:07:01','2006-02-15 22:13:28'), - (4043,148,2,12038,'0.99','2005-08-17 20:28:26','2006-02-15 22:13:28'), - (4044,148,2,12512,'3.99','2005-08-18 13:28:27','2006-02-15 22:13:28'), - (4045,148,1,12944,'6.99','2005-08-19 05:48:12','2006-02-15 22:13:28'), - (4046,148,1,12983,'6.99','2005-08-19 07:06:51','2006-02-15 22:13:29'), - (4047,148,1,14055,'0.99','2005-08-20 22:18:00','2006-02-15 22:13:29'), - (4048,148,1,14155,'4.99','2005-08-21 02:31:35','2006-02-15 22:13:29'), - (4049,148,2,14184,'6.99','2005-08-21 03:24:50','2006-02-15 22:13:29'), - (4050,148,2,14629,'2.99','2005-08-21 18:39:52','2006-02-15 22:13:29'), - (4051,148,2,14713,'0.99','2005-08-21 21:27:24','2006-02-15 22:13:29'), - (4052,148,2,14879,'5.99','2005-08-22 03:42:12','2006-02-15 22:13:29'), - (4053,148,2,14965,'2.99','2005-08-22 06:45:53','2006-02-15 22:13:29'), - (4054,148,2,15237,'4.99','2005-08-22 17:44:30','2006-02-15 22:13:29'), - (4055,148,2,15379,'8.99','2005-08-22 22:26:13','2006-02-15 22:13:29'), - (4056,148,1,15541,'3.99','2005-08-23 04:13:53','2006-02-15 22:13:29'), - (4057,148,2,15586,'3.99','2005-08-23 05:57:04','2006-02-15 22:13:29'), - (4058,149,1,764,'4.99','2005-05-29 11:37:35','2006-02-15 22:13:29'), - (4059,149,2,1521,'2.99','2005-06-15 23:58:53','2006-02-15 22:13:29'), - (4060,149,1,1800,'2.99','2005-06-16 20:18:46','2006-02-15 22:13:29'), - (4061,149,2,1996,'6.99','2005-06-17 11:17:45','2006-02-15 22:13:29'), - (4062,149,2,2194,'4.99','2005-06-18 01:41:37','2006-02-15 22:13:29'), - (4063,149,1,2305,'5.99','2005-06-18 08:31:18','2006-02-15 22:13:29'), - (4064,149,2,2383,'7.99','2005-06-18 15:17:59','2006-02-15 22:13:29'), - (4065,149,1,2752,'0.99','2005-06-19 16:44:18','2006-02-15 22:13:29'), - (4066,149,1,3894,'2.99','2005-07-06 19:01:39','2006-02-15 22:13:29'), - (4067,149,1,3939,'6.99','2005-07-06 21:16:32','2006-02-15 22:13:29'), - (4068,149,1,4766,'3.99','2005-07-08 15:16:04','2006-02-15 22:13:29'), - (4069,149,1,4837,'0.99','2005-07-08 18:09:12','2006-02-15 22:13:29'), - (4070,149,1,5091,'2.99','2005-07-09 05:52:54','2006-02-15 22:13:29'), - (4071,149,1,5298,'10.99','2005-07-09 15:36:17','2006-02-15 22:13:29'), - (4072,149,1,6356,'4.99','2005-07-11 20:57:48','2006-02-15 22:13:29'), - (4073,149,2,6940,'5.99','2005-07-26 23:18:35','2006-02-15 22:13:29'), - (4074,149,2,7559,'4.99','2005-07-27 22:20:03','2006-02-15 22:13:29'), - (4075,149,1,7989,'6.99','2005-07-28 14:39:05','2006-02-15 22:13:29'), - (4076,149,2,10154,'2.99','2005-07-31 22:30:49','2006-02-15 22:13:29'), - (4077,149,2,10737,'7.99','2005-08-01 19:31:24','2006-02-15 22:13:29'), - (4078,149,2,10967,'0.99','2005-08-02 04:02:16','2006-02-15 22:13:29'), - (4079,149,1,11561,'2.99','2005-08-17 01:23:09','2006-02-15 22:13:29'), - (4080,149,1,12000,'4.99','2005-08-17 18:49:44','2006-02-15 22:13:29'), - (4081,149,1,14771,'3.99','2005-08-21 23:50:15','2006-02-15 22:13:29'), - (4082,149,2,15479,'4.99','2005-08-23 01:50:53','2006-02-15 22:13:29'), - (4083,149,2,15562,'2.99','2005-08-23 05:04:33','2006-02-15 22:13:29'), - (4084,150,1,422,'3.99','2005-05-27 15:31:55','2006-02-15 22:13:29'), - (4085,150,1,609,'2.99','2005-05-28 15:04:02','2006-02-15 22:13:29'), - (4086,150,1,995,'3.99','2005-05-31 00:06:02','2006-02-15 22:13:29'), - (4087,150,2,3187,'1.99','2005-06-20 23:06:07','2006-02-15 22:13:29'), - (4088,150,1,3456,'5.99','2005-06-21 21:19:47','2006-02-15 22:13:29'), - (4089,150,1,4271,'6.99','2005-07-07 14:38:52','2006-02-15 22:13:29'), - (4090,150,1,6633,'2.99','2005-07-12 09:35:42','2006-02-15 22:13:29'), - (4091,150,2,7690,'4.99','2005-07-28 03:26:21','2006-02-15 22:13:30'), - (4092,150,1,9121,'2.99','2005-07-30 09:36:26','2006-02-15 22:13:30'), - (4093,150,1,10686,'2.99','2005-08-01 17:51:21','2006-02-15 22:13:30'), - (4094,150,2,11123,'2.99','2005-08-02 08:54:17','2006-02-15 22:13:30'), - (4095,150,2,11789,'6.99','2005-08-17 10:59:24','2006-02-15 22:13:30'), - (4096,150,2,12260,'6.99','2005-08-18 04:15:43','2006-02-15 22:13:30'), - (4097,150,2,12335,'2.99','2005-08-18 06:59:15','2006-02-15 22:13:30'), - (4098,150,2,12627,'2.99','2005-08-18 17:37:11','2006-02-15 22:13:30'), - (4099,150,1,12887,'1.99','2005-08-19 03:38:54','2006-02-15 22:13:30'), - (4100,150,2,12890,'0.99','2005-08-19 03:42:08','2006-02-15 22:13:30'), - (4101,150,1,13116,'6.99','2005-08-19 11:31:41','2006-02-15 22:13:30'), - (4102,150,2,13255,'8.99','2005-08-19 16:54:12','2006-02-15 22:13:30'), - (4103,150,1,13372,'2.99','2005-08-19 21:23:19','2006-02-15 22:13:30'), - (4104,150,2,13599,'5.99','2005-08-20 06:00:03','2006-02-15 22:13:30'), - (4105,150,2,14165,'0.99','2005-08-21 02:59:17','2006-02-15 22:13:30'), - (4106,150,2,14454,'2.99','2005-08-21 12:35:49','2006-02-15 22:13:30'), - (4107,150,2,14520,'9.99','2005-08-21 15:00:49','2006-02-15 22:13:30'), - (4108,150,1,14663,'0.99','2005-08-21 19:47:55','2006-02-15 22:13:30'), - (4109,151,2,164,'4.99','2005-05-26 02:26:49','2006-02-15 22:13:30'), - (4110,151,2,418,'5.99','2005-05-27 15:13:17','2006-02-15 22:13:30'), - (4111,151,2,2474,'2.99','2005-06-18 20:51:34','2006-02-15 22:13:30'), - (4112,151,2,2947,'2.99','2005-06-20 06:00:21','2006-02-15 22:13:30'), - (4113,151,1,3017,'3.99','2005-06-20 11:08:56','2006-02-15 22:13:30'), - (4114,151,2,3089,'0.99','2005-06-20 15:57:01','2006-02-15 22:13:30'), - (4115,151,2,3390,'2.99','2005-06-21 15:10:50','2006-02-15 22:13:30'), - (4116,151,1,4376,'2.99','2005-07-07 20:24:33','2006-02-15 22:13:30'), - (4117,151,2,6720,'0.99','2005-07-12 13:41:16','2006-02-15 22:13:30'), - (4118,151,2,6768,'3.99','2005-07-12 15:47:51','2006-02-15 22:13:30'), - (4119,151,2,6854,'0.99','2005-07-12 19:38:57','2006-02-15 22:13:30'), - (4120,151,1,7189,'0.99','2005-07-27 08:35:02','2006-02-15 22:13:30'), - (4121,151,2,7332,'3.99','2005-07-27 13:58:57','2006-02-15 22:13:30'), - (4122,151,1,9253,'4.99','2005-07-30 14:20:12','2006-02-15 22:13:30'), - (4123,151,1,9890,'4.99','2005-07-31 14:04:44','2006-02-15 22:13:30'), - (4124,151,1,9969,'2.99','2005-07-31 16:38:12','2006-02-15 22:13:30'), - (4125,151,1,10078,'2.99','2005-07-31 20:02:02','2006-02-15 22:13:30'), - (4126,151,1,10311,'4.99','2005-08-01 04:27:59','2006-02-15 22:13:30'), - (4127,151,1,10662,'2.99','2005-08-01 16:50:57','2006-02-15 22:13:30'), - (4128,151,2,11714,'2.99','2005-08-17 07:34:55','2006-02-15 22:13:30'), - (4129,151,2,13230,'0.99','2005-08-19 16:12:07','2006-02-15 22:13:30'), - (4130,151,1,13568,'5.99','2005-08-20 05:02:46','2006-02-15 22:13:30'), - (4131,151,1,14856,'4.99','2005-08-22 02:31:51','2006-02-15 22:13:30'), - (4132,151,2,14922,'3.99','2005-08-22 05:13:05','2006-02-15 22:13:30'), - (4133,151,1,15227,'4.99','2005-08-22 17:22:41','2006-02-15 22:13:30'), - (4134,151,1,15926,'2.99','2005-08-23 18:20:56','2006-02-15 22:13:31'), - (4135,151,2,15996,'2.99','2005-08-23 20:31:38','2006-02-15 22:13:31'), - (4136,152,2,359,'4.99','2005-05-27 06:48:33','2006-02-15 22:13:31'), - (4137,152,1,745,'4.99','2005-05-29 09:22:57','2006-02-15 22:13:31'), - (4138,152,1,2882,'4.99','2005-06-20 01:26:26','2006-02-15 22:13:31'), - (4139,152,2,3577,'2.99','2005-07-06 03:40:36','2006-02-15 22:13:31'), - (4140,152,1,3786,'7.99','2005-07-06 14:00:41','2006-02-15 22:13:31'), - (4141,152,1,4974,'4.99','2005-07-09 00:00:36','2006-02-15 22:13:31'), - (4142,152,1,6273,'0.99','2005-07-11 16:08:41','2006-02-15 22:13:31'), - (4143,152,1,6612,'2.99','2005-07-12 08:28:33','2006-02-15 22:13:31'), - (4144,152,1,9010,'5.99','2005-07-30 05:12:04','2006-02-15 22:13:31'), - (4145,152,1,10320,'6.99','2005-08-01 04:39:26','2006-02-15 22:13:31'), - (4146,152,2,11638,'6.99','2005-08-17 04:39:09','2006-02-15 22:13:31'), - (4147,152,2,11783,'0.99','2005-08-17 10:39:24','2006-02-15 22:13:31'), - (4148,152,1,12697,'2.99','2005-08-18 20:14:56','2006-02-15 22:13:31'), - (4149,152,1,12917,'4.99','2005-08-19 04:27:11','2006-02-15 22:13:31'), - (4150,152,2,12960,'1.99','2005-08-19 06:21:52','2006-02-15 22:13:31'), - (4151,152,1,13204,'4.99','2005-08-19 15:02:48','2006-02-15 22:13:31'), - (4152,152,2,13484,'0.99','2005-08-20 01:16:52','2006-02-15 22:13:31'), - (4153,152,1,13986,'0.99','2005-08-20 19:13:23','2006-02-15 22:13:31'), - (4154,152,1,14173,'0.99','2005-08-21 03:01:01','2006-02-15 22:13:31'), - (4155,152,2,14668,'4.99','2005-08-21 19:51:30','2006-02-15 22:13:31'), - (4156,152,2,11848,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:31'), - (4157,153,1,2224,'0.99','2005-06-18 03:33:58','2006-02-15 22:13:31'), - (4158,153,1,2649,'0.99','2005-06-19 10:20:09','2006-02-15 22:13:31'), - (4159,153,1,2893,'4.99','2005-06-20 02:22:08','2006-02-15 22:13:31'), - (4160,153,1,2945,'5.99','2005-06-20 05:49:27','2006-02-15 22:13:31'), - (4161,153,1,3795,'0.99','2005-07-06 14:37:41','2006-02-15 22:13:31'), - (4162,153,1,3949,'0.99','2005-07-06 21:46:36','2006-02-15 22:13:31'), - (4163,153,1,4194,'5.99','2005-07-07 10:59:39','2006-02-15 22:13:31'), - (4164,153,2,4670,'5.99','2005-07-08 10:14:18','2006-02-15 22:13:31'), - (4165,153,2,5676,'0.99','2005-07-10 08:38:32','2006-02-15 22:13:31'), - (4166,153,2,5771,'0.99','2005-07-10 13:26:45','2006-02-15 22:13:31'), - (4167,153,2,6818,'9.99','2005-07-12 18:20:54','2006-02-15 22:13:31'), - (4168,153,2,7824,'7.99','2005-07-28 08:34:47','2006-02-15 22:13:31'), - (4169,153,2,9936,'0.99','2005-07-31 15:27:41','2006-02-15 22:13:31'), - (4170,153,2,10015,'4.99','2005-07-31 18:11:17','2006-02-15 22:13:31'), - (4171,153,2,11368,'4.99','2005-08-02 18:03:05','2006-02-15 22:13:31'), - (4172,153,1,12103,'1.99','2005-08-17 22:49:09','2006-02-15 22:13:31'), - (4173,153,1,12439,'3.99','2005-08-18 10:44:57','2006-02-15 22:13:31'), - (4174,153,1,12882,'4.99','2005-08-19 03:33:46','2006-02-15 22:13:31'), - (4175,153,1,14664,'4.99','2005-08-21 19:48:47','2006-02-15 22:13:31'), - (4176,153,1,14747,'4.99','2005-08-21 23:00:02','2006-02-15 22:13:31'), - (4177,153,1,14944,'4.99','2005-08-22 06:01:26','2006-02-15 22:13:31'), - (4178,153,2,15267,'0.99','2005-08-22 18:37:48','2006-02-15 22:13:31'), - (4179,153,2,15444,'7.99','2005-08-23 00:46:52','2006-02-15 22:13:32'), - (4180,153,1,15593,'1.99','2005-08-23 06:15:09','2006-02-15 22:13:32'), - (4181,154,1,469,'5.99','2005-05-27 21:14:26','2006-02-15 22:13:32'), - (4182,154,2,865,'7.99','2005-05-30 03:39:44','2006-02-15 22:13:32'), - (4183,154,2,978,'5.99','2005-05-30 21:30:52','2006-02-15 22:13:32'), - (4184,154,1,1963,'0.99','2005-06-17 09:09:31','2006-02-15 22:13:32'), - (4185,154,1,2886,'4.99','2005-06-20 01:38:39','2006-02-15 22:13:32'), - (4186,154,1,2985,'2.99','2005-06-20 08:45:08','2006-02-15 22:13:32'), - (4187,154,2,3806,'7.99','2005-07-06 15:09:41','2006-02-15 22:13:32'), - (4188,154,2,3912,'0.99','2005-07-06 20:10:03','2006-02-15 22:13:32'), - (4189,154,2,4132,'4.99','2005-07-07 08:06:07','2006-02-15 22:13:32'), - (4190,154,1,4252,'2.99','2005-07-07 14:13:05','2006-02-15 22:13:32'), - (4191,154,1,4850,'5.99','2005-07-08 18:39:31','2006-02-15 22:13:32'), - (4192,154,1,5101,'0.99','2005-07-09 06:21:29','2006-02-15 22:13:32'), - (4193,154,2,5760,'2.99','2005-07-10 12:44:48','2006-02-15 22:13:32'), - (4194,154,1,6048,'0.99','2005-07-11 03:32:23','2006-02-15 22:13:32'), - (4195,154,2,6993,'4.99','2005-07-27 01:05:24','2006-02-15 22:13:32'), - (4196,154,1,7055,'4.99','2005-07-27 03:45:42','2006-02-15 22:13:32'), - (4197,154,1,7156,'4.99','2005-07-27 07:19:34','2006-02-15 22:13:32'), - (4198,154,2,7900,'1.99','2005-07-28 11:11:33','2006-02-15 22:13:32'), - (4199,154,2,8334,'7.99','2005-07-29 04:18:25','2006-02-15 22:13:32'), - (4200,154,2,9286,'2.99','2005-07-30 15:32:28','2006-02-15 22:13:32'), - (4201,154,1,10278,'6.99','2005-08-01 03:25:27','2006-02-15 22:13:32'), - (4202,154,1,10851,'4.99','2005-08-01 23:58:45','2006-02-15 22:13:32'), - (4203,154,1,11296,'5.99','2005-08-02 15:15:27','2006-02-15 22:13:32'), - (4204,154,1,12341,'0.99','2005-08-18 07:09:27','2006-02-15 22:13:32'), - (4205,154,2,13861,'4.99','2005-08-20 14:56:53','2006-02-15 22:13:32'), - (4206,154,2,14731,'2.99','2005-08-21 22:21:49','2006-02-15 22:13:32'), - (4207,154,2,14793,'7.99','2005-08-22 00:37:57','2006-02-15 22:13:32'), - (4208,154,1,14918,'6.99','2005-08-22 05:06:38','2006-02-15 22:13:32'), - (4209,154,1,15351,'0.99','2005-08-22 21:15:46','2006-02-15 22:13:32'), - (4210,154,1,15721,'2.99','2005-08-23 11:16:16','2006-02-15 22:13:32'), - (4211,155,1,568,'2.99','2005-05-28 09:57:36','2006-02-15 22:13:32'), - (4212,155,2,1519,'1.99','2005-06-15 23:55:27','2006-02-15 22:13:32'), - (4213,155,1,1554,'7.99','2005-06-16 02:16:47','2006-02-15 22:13:32'), - (4214,155,1,2028,'7.99','2005-06-17 13:08:08','2006-02-15 22:13:32'), - (4215,155,1,2869,'4.99','2005-06-20 00:09:25','2006-02-15 22:13:32'), - (4216,155,2,3405,'4.99','2005-06-21 15:58:25','2006-02-15 22:13:32'), - (4217,155,1,5128,'1.99','2005-07-09 07:25:54','2006-02-15 22:13:32'), - (4218,155,1,6066,'5.99','2005-07-11 04:32:42','2006-02-15 22:13:32'), - (4219,155,1,6085,'4.99','2005-07-11 05:24:36','2006-02-15 22:13:32'), - (4220,155,2,6087,'4.99','2005-07-11 05:29:22','2006-02-15 22:13:32'), - (4221,155,1,6443,'2.99','2005-07-12 00:35:51','2006-02-15 22:13:32'), - (4222,155,1,7077,'3.99','2005-07-27 04:13:02','2006-02-15 22:13:33'), - (4223,155,1,7492,'2.99','2005-07-27 19:54:18','2006-02-15 22:13:33'), - (4224,155,2,7730,'5.99','2005-07-28 04:59:48','2006-02-15 22:13:33'), - (4225,155,2,9781,'7.99','2005-07-31 10:13:02','2006-02-15 22:13:33'), - (4226,155,1,10098,'0.99','2005-07-31 20:41:17','2006-02-15 22:13:33'), - (4227,155,1,11033,'4.99','2005-08-02 05:54:17','2006-02-15 22:13:33'), - (4228,155,2,11951,'5.99','2005-08-17 17:14:02','2006-02-15 22:13:33'), - (4229,155,1,14324,'8.99','2005-08-21 08:10:56','2006-02-15 22:13:33'), - (4230,155,2,14549,'2.99','2005-08-21 15:54:21','2006-02-15 22:13:33'), - (4231,155,1,14753,'2.99','2005-08-21 23:11:43','2006-02-15 22:13:33'), - (4232,155,2,14909,'0.99','2005-08-22 04:48:44','2006-02-15 22:13:33'), - (4233,155,1,15106,'0.99','2005-08-22 12:01:48','2006-02-15 22:13:33'), - (4234,155,2,11496,'7.98','2006-02-14 15:16:03','2006-02-15 22:13:33'), - (4235,155,1,12352,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:33'), - (4236,156,2,899,'6.99','2005-05-30 09:29:30','2006-02-15 22:13:33'), - (4237,156,1,1052,'4.99','2005-05-31 07:07:03','2006-02-15 22:13:33'), - (4238,156,2,2089,'9.99','2005-06-17 17:45:09','2006-02-15 22:13:33'), - (4239,156,2,2221,'0.99','2005-06-18 03:24:56','2006-02-15 22:13:33'), - (4240,156,1,2658,'4.99','2005-06-19 10:43:42','2006-02-15 22:13:33'), - (4241,156,1,2782,'0.99','2005-06-19 18:25:07','2006-02-15 22:13:33'), - (4242,156,2,4394,'2.99','2005-07-07 21:12:45','2006-02-15 22:13:33'), - (4243,156,2,5534,'4.99','2005-07-10 02:26:49','2006-02-15 22:13:33'), - (4244,156,1,5828,'2.99','2005-07-10 16:27:25','2006-02-15 22:13:33'), - (4245,156,2,5908,'0.99','2005-07-10 20:44:14','2006-02-15 22:13:33'), - (4246,156,2,6540,'6.99','2005-07-12 04:51:13','2006-02-15 22:13:33'), - (4247,156,2,7389,'2.99','2005-07-27 15:56:15','2006-02-15 22:13:33'), - (4248,156,2,7822,'4.99','2005-07-28 08:31:45','2006-02-15 22:13:33'), - (4249,156,1,9409,'6.99','2005-07-30 20:33:53','2006-02-15 22:13:33'), - (4250,156,1,9696,'0.99','2005-07-31 07:13:46','2006-02-15 22:13:33'), - (4251,156,2,10309,'6.99','2005-08-01 04:24:18','2006-02-15 22:13:33'), - (4252,156,2,11490,'2.99','2005-08-02 22:36:00','2006-02-15 22:13:33'), - (4253,156,1,11587,'5.99','2005-08-17 02:21:03','2006-02-15 22:13:33'), - (4254,156,2,13530,'0.99','2005-08-20 03:12:43','2006-02-15 22:13:33'), - (4255,156,2,13531,'2.99','2005-08-20 03:26:10','2006-02-15 22:13:33'), - (4256,156,2,13802,'2.99','2005-08-20 12:44:53','2006-02-15 22:13:33'), - (4257,156,1,14794,'1.99','2005-08-22 00:39:31','2006-02-15 22:13:33'), - (4258,156,2,14831,'4.99','2005-08-22 01:40:49','2006-02-15 22:13:33'), - (4259,156,1,14914,'0.99','2005-08-22 04:53:35','2006-02-15 22:13:33'), - (4260,156,1,15408,'6.99','2005-08-22 23:26:32','2006-02-15 22:13:33'), - (4261,157,2,352,'0.99','2005-05-27 05:48:19','2006-02-15 22:13:33'), - (4262,157,1,642,'4.99','2005-05-28 18:49:12','2006-02-15 22:13:33'), - (4263,157,2,2340,'0.99','2005-06-18 11:30:56','2006-02-15 22:13:33'), - (4264,157,1,3739,'0.99','2005-07-06 11:54:18','2006-02-15 22:13:33'), - (4265,157,1,4253,'5.99','2005-07-07 14:13:13','2006-02-15 22:13:33'), - (4266,157,2,4435,'3.99','2005-07-07 22:51:04','2006-02-15 22:13:34'), - (4267,157,1,4919,'0.99','2005-07-08 21:41:54','2006-02-15 22:13:34'), - (4268,157,1,5862,'4.99','2005-07-10 18:20:48','2006-02-15 22:13:34'), - (4269,157,1,7110,'2.99','2005-07-27 05:30:48','2006-02-15 22:13:34'), - (4270,157,2,7195,'2.99','2005-07-27 08:47:01','2006-02-15 22:13:34'), - (4271,157,2,7499,'4.99','2005-07-27 20:10:28','2006-02-15 22:13:34'), - (4272,157,2,8163,'0.99','2005-07-28 21:11:48','2006-02-15 22:13:34'), - (4273,157,2,8337,'0.99','2005-07-29 04:31:55','2006-02-15 22:13:34'), - (4274,157,2,8347,'0.99','2005-07-29 04:49:25','2006-02-15 22:13:34'), - (4275,157,2,8576,'4.99','2005-07-29 11:55:01','2006-02-15 22:13:34'), - (4276,157,1,8707,'0.99','2005-07-29 17:21:58','2006-02-15 22:13:34'), - (4277,157,1,8827,'4.99','2005-07-29 22:31:24','2006-02-15 22:13:34'), - (4278,157,2,9237,'2.99','2005-07-30 13:48:17','2006-02-15 22:13:34'), - (4279,157,2,9264,'4.99','2005-07-30 14:51:36','2006-02-15 22:13:34'), - (4280,157,1,9958,'2.99','2005-07-31 16:03:56','2006-02-15 22:13:34'), - (4281,157,1,10203,'4.99','2005-08-01 00:45:27','2006-02-15 22:13:34'), - (4282,157,2,11249,'4.99','2005-08-02 13:35:40','2006-02-15 22:13:34'), - (4283,157,2,11335,'4.99','2005-08-02 16:57:37','2006-02-15 22:13:34'), - (4284,157,1,12213,'5.99','2005-08-18 02:33:55','2006-02-15 22:13:34'), - (4285,157,1,12464,'6.99','2005-08-18 11:33:34','2006-02-15 22:13:34'), - (4286,157,1,12916,'0.99','2005-08-19 04:27:05','2006-02-15 22:13:34'), - (4287,157,1,13097,'4.99','2005-08-19 10:50:43','2006-02-15 22:13:34'), - (4288,157,1,13214,'4.99','2005-08-19 15:31:06','2006-02-15 22:13:34'), - (4289,157,1,13481,'6.99','2005-08-20 01:11:12','2006-02-15 22:13:34'), - (4290,157,1,13728,'2.99','2005-08-20 10:11:07','2006-02-15 22:13:34'), - (4291,157,2,14974,'4.99','2005-08-22 07:04:25','2006-02-15 22:13:34'), - (4292,158,2,245,'4.99','2005-05-26 13:46:59','2006-02-15 22:13:34'), - (4293,158,1,293,'5.99','2005-05-26 20:27:02','2006-02-15 22:13:34'), - (4294,158,1,1380,'0.99','2005-06-15 15:13:10','2006-02-15 22:13:34'), - (4295,158,2,1790,'4.99','2005-06-16 19:58:40','2006-02-15 22:13:34'), - (4296,158,2,2035,'6.99','2005-06-17 13:45:09','2006-02-15 22:13:34'), - (4297,158,2,3203,'8.99','2005-06-21 00:34:56','2006-02-15 22:13:34'), - (4298,158,1,4117,'8.99','2005-07-07 06:58:14','2006-02-15 22:13:34'), - (4299,158,1,5672,'2.99','2005-07-10 08:19:38','2006-02-15 22:13:34'), - (4300,158,1,5988,'4.99','2005-07-11 00:55:38','2006-02-15 22:13:34'), - (4301,158,1,6416,'2.99','2005-07-11 23:29:14','2006-02-15 22:13:34'), - (4302,158,2,6901,'5.99','2005-07-12 21:46:33','2006-02-15 22:13:34'), - (4303,158,2,7159,'2.99','2005-07-27 07:24:00','2006-02-15 22:13:34'), - (4304,158,1,7732,'0.99','2005-07-28 05:03:32','2006-02-15 22:13:34'), - (4305,158,2,7952,'2.99','2005-07-28 13:23:49','2006-02-15 22:13:34'), - (4306,158,1,8750,'2.99','2005-07-29 19:14:21','2006-02-15 22:13:34'), - (4307,158,1,8957,'1.99','2005-07-30 03:34:10','2006-02-15 22:13:34'), - (4308,158,1,9393,'2.99','2005-07-30 20:04:48','2006-02-15 22:13:34'), - (4309,158,1,9713,'1.99','2005-07-31 08:13:28','2006-02-15 22:13:35'), - (4310,158,1,9801,'2.99','2005-07-31 11:03:13','2006-02-15 22:13:35'), - (4311,158,2,11077,'4.99','2005-08-02 07:26:43','2006-02-15 22:13:35'), - (4312,158,1,11103,'6.99','2005-08-02 08:09:54','2006-02-15 22:13:35'), - (4313,158,1,11272,'0.99','2005-08-02 14:20:27','2006-02-15 22:13:35'), - (4314,158,1,11420,'2.99','2005-08-02 19:47:56','2006-02-15 22:13:35'), - (4315,158,2,12070,'1.99','2005-08-17 21:46:47','2006-02-15 22:13:35'), - (4316,158,2,12421,'5.99','2005-08-18 10:04:06','2006-02-15 22:13:35'), - (4317,158,2,13212,'1.99','2005-08-19 15:24:07','2006-02-15 22:13:35'), - (4318,158,2,13854,'2.99','2005-08-20 14:48:42','2006-02-15 22:13:35'), - (4319,158,1,13926,'2.99','2005-08-20 17:09:27','2006-02-15 22:13:35'), - (4320,158,2,14028,'0.99','2005-08-20 21:23:03','2006-02-15 22:13:35'), - (4321,158,1,15763,'2.99','2005-08-23 13:02:59','2006-02-15 22:13:35'), - (4322,158,1,15796,'5.99','2005-08-23 14:12:22','2006-02-15 22:13:35'), - (4323,158,1,15802,'5.99','2005-08-23 14:26:51','2006-02-15 22:13:35'), - (4324,159,2,475,'2.99','2005-05-27 22:16:26','2006-02-15 22:13:35'), - (4325,159,2,549,'1.99','2005-05-28 07:35:37','2006-02-15 22:13:35'), - (4326,159,1,598,'0.99','2005-05-28 14:04:50','2006-02-15 22:13:35'), - (4327,159,1,832,'3.99','2005-05-29 22:51:20','2006-02-15 22:13:35'), - (4328,159,1,1695,'0.99','2005-06-16 12:40:28','2006-02-15 22:13:35'), - (4329,159,1,2572,'0.99','2005-06-19 04:21:26','2006-02-15 22:13:35'), - (4330,159,2,3914,'5.99','2005-07-06 20:11:10','2006-02-15 22:13:35'), - (4331,159,2,4273,'4.99','2005-07-07 14:40:22','2006-02-15 22:13:35'), - (4332,159,2,5656,'0.99','2005-07-10 07:31:07','2006-02-15 22:13:35'), - (4333,159,2,6885,'4.99','2005-07-12 20:56:04','2006-02-15 22:13:35'), - (4334,159,2,8212,'2.99','2005-07-28 23:37:23','2006-02-15 22:13:35'), - (4335,159,1,8470,'0.99','2005-07-29 08:28:50','2006-02-15 22:13:35'), - (4336,159,2,9022,'3.99','2005-07-30 05:34:45','2006-02-15 22:13:35'), - (4337,159,2,9132,'0.99','2005-07-30 09:56:00','2006-02-15 22:13:35'), - (4338,159,1,9559,'7.99','2005-07-31 02:15:53','2006-02-15 22:13:35'), - (4339,159,1,9917,'4.99','2005-07-31 14:55:11','2006-02-15 22:13:35'), - (4340,159,2,11225,'4.99','2005-08-02 12:43:27','2006-02-15 22:13:35'), - (4341,159,2,13270,'1.99','2005-08-19 17:41:16','2006-02-15 22:13:35'), - (4342,159,1,13933,'0.99','2005-08-20 17:17:07','2006-02-15 22:13:35'), - (4343,159,2,14575,'8.99','2005-08-21 16:51:34','2006-02-15 22:13:35'), - (4344,159,1,15197,'0.99','2005-08-22 16:14:25','2006-02-15 22:13:35'), - (4345,160,2,2314,'4.99','2005-06-18 09:03:19','2006-02-15 22:13:35'), - (4346,160,1,2465,'2.99','2005-06-18 20:07:02','2006-02-15 22:13:35'), - (4347,160,2,2873,'2.99','2005-06-20 00:41:25','2006-02-15 22:13:35'), - (4348,160,1,4842,'0.99','2005-07-08 18:21:30','2006-02-15 22:13:35'), - (4349,160,1,4908,'5.99','2005-07-08 21:05:44','2006-02-15 22:13:35'), - (4350,160,2,6364,'6.99','2005-07-11 21:14:48','2006-02-15 22:13:35'), - (4351,160,2,6448,'1.99','2005-07-12 00:45:59','2006-02-15 22:13:36'), - (4352,160,2,7500,'0.99','2005-07-27 20:16:03','2006-02-15 22:13:36'), - (4353,160,1,8184,'4.99','2005-07-28 22:22:35','2006-02-15 22:13:36'), - (4354,160,1,9681,'0.99','2005-07-31 06:42:09','2006-02-15 22:13:36'), - (4355,160,2,9758,'2.99','2005-07-31 09:25:38','2006-02-15 22:13:36'), - (4356,160,2,10089,'2.99','2005-07-31 20:17:09','2006-02-15 22:13:36'), - (4357,160,1,10305,'2.99','2005-08-01 04:16:16','2006-02-15 22:13:36'), - (4358,160,2,10788,'0.99','2005-08-01 21:37:10','2006-02-15 22:13:36'), - (4359,160,2,10958,'4.99','2005-08-02 03:37:13','2006-02-15 22:13:36'), - (4360,160,2,10979,'5.99','2005-08-02 04:16:37','2006-02-15 22:13:36'), - (4361,160,2,11154,'2.99','2005-08-02 09:54:50','2006-02-15 22:13:36'), - (4362,160,1,11803,'2.99','2005-08-17 11:42:08','2006-02-15 22:13:36'), - (4363,160,1,11888,'7.99','2005-08-17 15:04:05','2006-02-15 22:13:36'), - (4364,160,2,12334,'2.99','2005-08-18 06:52:36','2006-02-15 22:13:36'), - (4365,160,1,12435,'7.99','2005-08-18 10:38:31','2006-02-15 22:13:36'), - (4366,160,2,13093,'6.99','2005-08-19 10:46:16','2006-02-15 22:13:36'), - (4367,160,1,14868,'4.99','2005-08-22 03:15:01','2006-02-15 22:13:36'), - (4368,160,1,15112,'2.99','2005-08-22 12:21:49','2006-02-15 22:13:36'), - (4369,160,2,15642,'2.99','2005-08-23 08:09:11','2006-02-15 22:13:36'), - (4370,160,1,15962,'4.99','2005-08-23 19:42:04','2006-02-15 22:13:36'), - (4371,160,1,16027,'3.99','2005-08-23 21:49:33','2006-02-15 22:13:36'), - (4372,161,2,428,'2.99','2005-05-27 16:10:58','2006-02-15 22:13:36'), - (4373,161,2,477,'3.99','2005-05-27 22:33:33','2006-02-15 22:13:36'), - (4374,161,1,520,'5.99','2005-05-28 03:27:37','2006-02-15 22:13:36'), - (4375,161,2,539,'0.99','2005-05-28 06:26:16','2006-02-15 22:13:36'), - (4376,161,1,612,'2.99','2005-05-28 15:24:54','2006-02-15 22:13:36'), - (4377,161,1,1003,'0.99','2005-05-31 00:48:20','2006-02-15 22:13:36'), - (4378,161,1,1856,'2.99','2005-06-17 01:02:00','2006-02-15 22:13:36'), - (4379,161,1,3075,'3.99','2005-06-20 14:52:19','2006-02-15 22:13:36'), - (4380,161,1,3948,'4.99','2005-07-06 21:45:53','2006-02-15 22:13:36'), - (4381,161,2,4187,'0.99','2005-07-07 10:41:31','2006-02-15 22:13:36'), - (4382,161,2,4248,'6.99','2005-07-07 13:59:20','2006-02-15 22:13:36'), - (4383,161,1,4490,'2.99','2005-07-08 01:26:32','2006-02-15 22:13:36'), - (4384,161,2,5349,'6.99','2005-07-09 17:35:35','2006-02-15 22:13:36'), - (4385,161,2,6873,'4.99','2005-07-12 20:20:50','2006-02-15 22:13:36'), - (4386,161,1,7003,'2.99','2005-07-27 01:32:06','2006-02-15 22:13:36'), - (4387,161,2,8774,'4.99','2005-07-29 20:05:04','2006-02-15 22:13:36'), - (4388,161,1,9135,'4.99','2005-07-30 10:06:53','2006-02-15 22:13:36'), - (4389,161,2,9421,'0.99','2005-07-30 21:08:32','2006-02-15 22:13:36'), - (4390,161,1,10241,'5.99','2005-08-01 02:12:25','2006-02-15 22:13:36'), - (4391,161,1,10355,'0.99','2005-08-01 05:47:37','2006-02-15 22:13:37'), - (4392,161,1,10637,'2.99','2005-08-01 15:44:09','2006-02-15 22:13:37'), - (4393,161,1,10863,'6.99','2005-08-02 00:18:07','2006-02-15 22:13:37'), - (4394,161,2,10939,'0.99','2005-08-02 03:06:20','2006-02-15 22:13:37'), - (4395,161,1,11838,'2.99','2005-08-17 13:06:00','2006-02-15 22:13:37'), - (4396,161,2,14150,'0.99','2005-08-21 02:23:03','2006-02-15 22:13:37'), - (4397,161,1,14370,'7.99','2005-08-21 09:35:14','2006-02-15 22:13:37'), - (4398,161,1,15000,'0.99','2005-08-22 07:54:58','2006-02-15 22:13:37'), - (4399,161,2,15045,'5.99','2005-08-22 09:53:23','2006-02-15 22:13:37'), - (4400,161,2,15150,'2.99','2005-08-22 14:12:05','2006-02-15 22:13:37'), - (4401,161,1,15420,'5.99','2005-08-22 23:55:51','2006-02-15 22:13:37'), - (4402,162,1,285,'1.99','2005-05-26 19:41:40','2006-02-15 22:13:37'), - (4403,162,1,501,'4.99','2005-05-28 01:09:36','2006-02-15 22:13:37'), - (4404,162,1,688,'4.99','2005-05-29 00:45:24','2006-02-15 22:13:37'), - (4405,162,2,1339,'4.99','2005-06-15 12:21:56','2006-02-15 22:13:37'), - (4406,162,1,2366,'0.99','2005-06-18 13:46:39','2006-02-15 22:13:37'), - (4407,162,1,2547,'4.99','2005-06-19 02:44:17','2006-02-15 22:13:37'), - (4408,162,1,3040,'0.99','2005-06-20 12:34:13','2006-02-15 22:13:37'), - (4409,162,2,3180,'0.99','2005-06-20 22:48:44','2006-02-15 22:13:37'), - (4410,162,2,4982,'2.99','2005-07-09 00:30:52','2006-02-15 22:13:37'), - (4411,162,2,8478,'4.99','2005-07-29 08:40:36','2006-02-15 22:13:37'), - (4412,162,1,8582,'4.99','2005-07-29 12:03:27','2006-02-15 22:13:37'), - (4413,162,2,9167,'4.99','2005-07-30 11:30:37','2006-02-15 22:13:37'), - (4414,162,1,9726,'7.99','2005-07-31 08:37:07','2006-02-15 22:13:37'), - (4415,162,1,9775,'0.99','2005-07-31 10:00:00','2006-02-15 22:13:37'), - (4416,162,2,10093,'5.99','2005-07-31 20:30:32','2006-02-15 22:13:37'), - (4417,162,2,11012,'0.99','2005-08-02 05:09:42','2006-02-15 22:13:37'), - (4418,162,1,13288,'4.99','2005-08-19 18:30:10','2006-02-15 22:13:37'), - (4419,162,2,14301,'1.99','2005-08-21 07:19:48','2006-02-15 22:13:37'), - (4420,162,1,15332,'4.99','2005-08-22 20:41:53','2006-02-15 22:13:37'), - (4421,162,1,14220,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:37'), - (4422,163,2,1265,'4.99','2005-06-15 07:00:50','2006-02-15 22:13:37'), - (4423,163,2,2000,'2.99','2005-06-17 11:32:30','2006-02-15 22:13:37'), - (4424,163,2,2110,'7.99','2005-06-17 19:45:49','2006-02-15 22:13:37'), - (4425,163,2,2536,'5.99','2005-06-19 01:41:34','2006-02-15 22:13:37'), - (4426,163,1,2994,'6.99','2005-06-20 09:17:05','2006-02-15 22:13:37'), - (4427,163,1,3179,'0.99','2005-06-20 22:37:59','2006-02-15 22:13:37'), - (4428,163,2,3915,'3.99','2005-07-06 20:16:46','2006-02-15 22:13:37'), - (4429,163,1,4126,'1.99','2005-07-07 07:24:11','2006-02-15 22:13:37'), - (4430,163,2,5549,'4.99','2005-07-10 02:58:29','2006-02-15 22:13:37'), - (4431,163,1,5574,'10.99','2005-07-10 03:54:38','2006-02-15 22:13:37'), - (4432,163,1,6109,'0.99','2005-07-11 07:20:57','2006-02-15 22:13:37'), - (4433,163,1,6831,'1.99','2005-07-12 18:44:04','2006-02-15 22:13:38'), - (4434,163,1,7303,'1.99','2005-07-27 12:54:39','2006-02-15 22:13:38'), - (4435,163,1,7403,'2.99','2005-07-27 16:22:09','2006-02-15 22:13:38'), - (4436,163,2,8040,'0.99','2005-07-28 16:39:43','2006-02-15 22:13:38'), - (4437,163,2,8063,'4.99','2005-07-28 17:15:11','2006-02-15 22:13:38'), - (4438,163,2,8403,'4.99','2005-07-29 06:26:39','2006-02-15 22:13:38'), - (4439,163,2,10245,'0.99','2005-08-01 02:24:09','2006-02-15 22:13:38'), - (4440,163,2,11623,'2.99','2005-08-17 04:15:47','2006-02-15 22:13:38'), - (4441,163,2,11940,'4.99','2005-08-17 16:56:28','2006-02-15 22:13:38'), - (4442,163,1,12154,'2.99','2005-08-18 00:23:56','2006-02-15 22:13:38'), - (4443,163,2,12973,'2.99','2005-08-19 06:48:11','2006-02-15 22:13:38'), - (4444,163,2,13543,'7.99','2005-08-20 03:43:13','2006-02-15 22:13:38'), - (4445,163,2,14275,'4.99','2005-08-21 06:30:30','2006-02-15 22:13:38'), - (4446,163,2,14427,'5.99','2005-08-21 11:26:06','2006-02-15 22:13:38'), - (4447,163,1,15520,'8.99','2005-08-23 03:30:45','2006-02-15 22:13:38'), - (4448,163,1,15847,'0.99','2005-08-23 15:39:38','2006-02-15 22:13:38'), - (4449,163,2,11754,'7.98','2006-02-14 15:16:03','2006-02-15 22:13:38'), - (4450,163,1,15282,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:38'), - (4451,164,2,1011,'1.99','2005-05-31 02:05:39','2006-02-15 22:13:38'), - (4452,164,2,1713,'4.99','2005-06-16 14:28:33','2006-02-15 22:13:38'), - (4453,164,2,2589,'2.99','2005-06-19 05:21:27','2006-02-15 22:13:38'), - (4454,164,1,3082,'8.99','2005-06-20 15:32:11','2006-02-15 22:13:38'), - (4455,164,2,4548,'4.99','2005-07-08 04:21:54','2006-02-15 22:13:38'), - (4456,164,1,5895,'3.99','2005-07-10 20:13:19','2006-02-15 22:13:38'), - (4457,164,1,6393,'0.99','2005-07-11 22:28:12','2006-02-15 22:13:38'), - (4458,164,2,6558,'2.99','2005-07-12 05:16:07','2006-02-15 22:13:38'), - (4459,164,1,6637,'4.99','2005-07-12 09:57:39','2006-02-15 22:13:38'), - (4460,164,2,6702,'0.99','2005-07-12 12:48:03','2006-02-15 22:13:38'), - (4461,164,1,6980,'3.99','2005-07-27 00:50:30','2006-02-15 22:13:38'), - (4462,164,1,7227,'6.99','2005-07-27 09:53:43','2006-02-15 22:13:38'), - (4463,164,2,8135,'3.99','2005-07-28 20:03:25','2006-02-15 22:13:38'), - (4464,164,2,8824,'4.99','2005-07-29 22:22:58','2006-02-15 22:13:38'), - (4465,164,2,11175,'2.99','2005-08-02 10:38:47','2006-02-15 22:13:38'), - (4466,164,2,13453,'5.99','2005-08-20 00:30:51','2006-02-15 22:13:38'), - (4467,165,2,338,'4.99','2005-05-27 03:42:52','2006-02-15 22:13:38'), - (4468,165,1,2013,'3.99','2005-06-17 12:03:01','2006-02-15 22:13:38'), - (4469,165,2,3195,'2.99','2005-06-21 00:02:10','2006-02-15 22:13:38'), - (4470,165,2,3531,'4.99','2005-07-06 01:24:08','2006-02-15 22:13:38'), - (4471,165,1,3784,'5.99','2005-07-06 13:57:56','2006-02-15 22:13:38'), - (4472,165,2,4304,'0.99','2005-07-07 17:01:19','2006-02-15 22:13:38'), - (4473,165,2,4945,'2.99','2005-07-08 22:45:02','2006-02-15 22:13:38'), - (4474,165,1,5472,'4.99','2005-07-09 23:16:40','2006-02-15 22:13:38'), - (4475,165,2,5658,'4.99','2005-07-10 07:34:08','2006-02-15 22:13:38'), - (4476,165,2,5901,'6.99','2005-07-10 20:22:12','2006-02-15 22:13:39'), - (4477,165,1,5973,'0.99','2005-07-11 00:09:17','2006-02-15 22:13:39'), - (4478,165,1,7074,'2.99','2005-07-27 04:06:24','2006-02-15 22:13:39'), - (4479,165,1,8608,'0.99','2005-07-29 13:18:52','2006-02-15 22:13:39'), - (4480,165,2,9182,'7.99','2005-07-30 12:06:58','2006-02-15 22:13:39'), - (4481,165,2,9685,'4.99','2005-07-31 06:49:18','2006-02-15 22:13:39'), - (4482,165,1,10565,'4.99','2005-08-01 13:08:27','2006-02-15 22:13:39'), - (4483,165,1,11484,'2.99','2005-08-02 22:28:23','2006-02-15 22:13:39'), - (4484,165,2,12643,'4.99','2005-08-18 18:21:06','2006-02-15 22:13:39'), - (4485,165,2,15007,'1.99','2005-08-22 08:21:21','2006-02-15 22:13:39'), - (4486,165,1,15801,'3.99','2005-08-23 14:26:04','2006-02-15 22:13:39'), - (4487,165,2,15834,'5.99','2005-08-23 15:23:50','2006-02-15 22:13:39'), - (4488,166,1,662,'1.99','2005-05-28 21:09:31','2006-02-15 22:13:39'), - (4489,166,2,1412,'2.99','2005-06-15 17:09:48','2006-02-15 22:13:39'), - (4490,166,1,2211,'3.99','2005-06-18 02:29:10','2006-02-15 22:13:39'), - (4491,166,1,2874,'5.99','2005-06-20 00:42:26','2006-02-15 22:13:39'), - (4492,166,1,3085,'0.99','2005-06-20 15:42:33','2006-02-15 22:13:39'), - (4493,166,2,3606,'2.99','2005-07-06 05:28:02','2006-02-15 22:13:39'), - (4494,166,1,3642,'2.99','2005-07-06 07:18:20','2006-02-15 22:13:39'), - (4495,166,2,4389,'6.99','2005-07-07 20:58:58','2006-02-15 22:13:39'), - (4496,166,1,4658,'0.99','2005-07-08 09:51:11','2006-02-15 22:13:39'), - (4497,166,1,5184,'4.99','2005-07-09 10:14:34','2006-02-15 22:13:39'), - (4498,166,2,5380,'4.99','2005-07-09 19:08:44','2006-02-15 22:13:39'), - (4499,166,1,5646,'2.99','2005-07-10 07:08:09','2006-02-15 22:13:39'), - (4500,166,1,5855,'7.99','2005-07-10 17:54:06','2006-02-15 22:13:39'), - (4501,166,2,6237,'0.99','2005-07-11 14:19:12','2006-02-15 22:13:39'), - (4502,166,2,6882,'2.99','2005-07-12 20:50:39','2006-02-15 22:13:39'), - (4503,166,1,7581,'2.99','2005-07-27 23:14:35','2006-02-15 22:13:39'), - (4504,166,1,8052,'5.99','2005-07-28 16:57:31','2006-02-15 22:13:39'), - (4505,166,1,9009,'8.99','2005-07-30 05:12:01','2006-02-15 22:13:39'), - (4506,166,2,10422,'7.99','2005-08-01 08:17:11','2006-02-15 22:13:39'), - (4507,166,2,12683,'4.99','2005-08-18 19:50:43','2006-02-15 22:13:39'), - (4508,166,1,12968,'4.99','2005-08-19 06:38:18','2006-02-15 22:13:39'), - (4509,166,2,13582,'4.99','2005-08-20 05:28:11','2006-02-15 22:13:39'), - (4510,166,2,13901,'7.99','2005-08-20 16:06:53','2006-02-15 22:13:39'), - (4511,166,2,14261,'5.99','2005-08-21 06:07:24','2006-02-15 22:13:39'), - (4512,166,2,14281,'2.99','2005-08-21 06:40:48','2006-02-15 22:13:39'), - (4513,166,1,15213,'5.99','2005-08-22 16:49:02','2006-02-15 22:13:39'), - (4514,166,2,15216,'2.99','2005-08-22 16:57:02','2006-02-15 22:13:39'), - (4515,166,2,15806,'1.99','2005-08-23 14:31:50','2006-02-15 22:13:39'), - (4516,167,1,280,'2.99','2005-05-26 18:36:58','2006-02-15 22:13:39'), - (4517,167,1,365,'2.99','2005-05-27 07:31:20','2006-02-15 22:13:39'), - (4518,167,1,927,'4.99','2005-05-30 12:16:40','2006-02-15 22:13:40'), - (4519,167,1,1416,'3.99','2005-06-15 17:44:57','2006-02-15 22:13:40'), - (4520,167,1,1509,'5.99','2005-06-15 22:35:53','2006-02-15 22:13:40'), - (4521,167,2,2381,'5.99','2005-06-18 15:00:30','2006-02-15 22:13:40'), - (4522,167,2,3518,'4.99','2005-07-06 00:56:03','2006-02-15 22:13:40'), - (4523,167,2,4493,'0.99','2005-07-08 01:40:24','2006-02-15 22:13:40'), - (4524,167,2,5131,'0.99','2005-07-09 07:35:03','2006-02-15 22:13:40'), - (4525,167,1,5178,'4.99','2005-07-09 09:59:52','2006-02-15 22:13:40'), - (4526,167,1,5191,'0.99','2005-07-09 10:26:48','2006-02-15 22:13:40'), - (4527,167,1,5413,'4.99','2005-07-09 20:28:42','2006-02-15 22:13:40'), - (4528,167,1,5781,'2.99','2005-07-10 13:49:30','2006-02-15 22:13:40'), - (4529,167,2,6269,'4.99','2005-07-11 15:58:43','2006-02-15 22:13:40'), - (4530,167,1,7608,'4.99','2005-07-28 00:08:36','2006-02-15 22:13:40'), - (4531,167,1,8092,'2.99','2005-07-28 18:28:07','2006-02-15 22:13:40'), - (4532,167,2,8227,'4.99','2005-07-29 00:02:22','2006-02-15 22:13:40'), - (4533,167,1,8318,'2.99','2005-07-29 03:44:30','2006-02-15 22:13:40'), - (4534,167,1,8793,'0.99','2005-07-29 20:57:22','2006-02-15 22:13:40'), - (4535,167,2,8864,'0.99','2005-07-29 23:52:12','2006-02-15 22:13:40'), - (4536,167,2,9563,'4.99','2005-07-31 02:28:39','2006-02-15 22:13:40'), - (4537,167,2,10285,'3.99','2005-08-01 03:35:11','2006-02-15 22:13:40'), - (4538,167,1,12642,'4.99','2005-08-18 18:19:16','2006-02-15 22:13:40'), - (4539,167,2,12717,'4.99','2005-08-18 21:15:40','2006-02-15 22:13:40'), - (4540,167,1,12978,'4.99','2005-08-19 06:57:27','2006-02-15 22:13:40'), - (4541,167,1,13825,'6.99','2005-08-20 13:43:22','2006-02-15 22:13:40'), - (4542,167,1,13870,'1.99','2005-08-20 15:09:16','2006-02-15 22:13:40'), - (4543,167,1,15003,'3.99','2005-08-22 08:11:24','2006-02-15 22:13:40'), - (4544,167,1,15050,'0.99','2005-08-22 10:07:52','2006-02-15 22:13:40'), - (4545,167,2,15478,'0.99','2005-08-23 01:50:31','2006-02-15 22:13:40'), - (4546,167,2,15530,'4.99','2005-08-23 03:50:48','2006-02-15 22:13:40'), - (4547,167,2,15915,'4.99','2005-08-23 17:52:01','2006-02-15 22:13:40'), - (4548,168,2,404,'0.99','2005-05-27 13:31:51','2006-02-15 22:13:40'), - (4549,168,1,488,'4.99','2005-05-28 00:07:50','2006-02-15 22:13:40'), - (4550,168,2,1222,'4.99','2005-06-15 03:38:49','2006-02-15 22:13:40'), - (4551,168,1,3530,'2.99','2005-07-06 01:22:45','2006-02-15 22:13:40'), - (4552,168,1,4308,'5.99','2005-07-07 17:29:16','2006-02-15 22:13:40'), - (4553,168,2,4363,'5.99','2005-07-07 19:43:28','2006-02-15 22:13:40'), - (4554,168,2,4953,'2.99','2005-07-08 23:09:48','2006-02-15 22:13:40'), - (4555,168,1,5459,'0.99','2005-07-09 22:43:56','2006-02-15 22:13:40'), - (4556,168,1,5907,'5.99','2005-07-10 20:41:41','2006-02-15 22:13:40'), - (4557,168,1,6334,'5.99','2005-07-11 19:20:44','2006-02-15 22:13:40'), - (4558,168,2,6444,'0.99','2005-07-12 00:36:02','2006-02-15 22:13:40'), - (4559,168,2,6809,'3.99','2005-07-12 17:51:54','2006-02-15 22:13:41'), - (4560,168,2,8352,'1.99','2005-07-29 04:52:01','2006-02-15 22:13:41'), - (4561,168,1,8527,'1.99','2005-07-29 10:21:00','2006-02-15 22:13:41'), - (4562,168,2,8659,'6.99','2005-07-29 15:26:31','2006-02-15 22:13:41'), - (4563,168,2,8883,'1.99','2005-07-30 00:24:48','2006-02-15 22:13:41'), - (4564,168,2,9197,'4.99','2005-07-30 12:31:36','2006-02-15 22:13:41'), - (4565,168,1,9418,'4.99','2005-07-30 21:00:52','2006-02-15 22:13:41'), - (4566,168,2,9857,'6.99','2005-07-31 13:00:53','2006-02-15 22:13:41'), - (4567,168,2,9899,'4.99','2005-07-31 14:12:36','2006-02-15 22:13:41'), - (4568,168,2,10270,'0.99','2005-08-01 03:10:24','2006-02-15 22:13:41'), - (4569,168,1,11551,'0.99','2005-08-17 01:03:49','2006-02-15 22:13:41'), - (4570,168,1,11627,'10.99','2005-08-17 04:25:47','2006-02-15 22:13:41'), - (4571,168,1,11631,'1.99','2005-08-17 04:28:56','2006-02-15 22:13:41'), - (4572,168,1,12545,'6.99','2005-08-18 14:28:00','2006-02-15 22:13:41'), - (4573,168,1,12781,'2.99','2005-08-18 23:50:24','2006-02-15 22:13:41'), - (4574,168,1,13018,'8.99','2005-08-19 08:04:50','2006-02-15 22:13:41'), - (4575,168,2,13532,'4.99','2005-08-20 03:29:28','2006-02-15 22:13:41'), - (4576,168,2,13811,'0.99','2005-08-20 13:00:30','2006-02-15 22:13:41'), - (4577,168,1,14090,'2.99','2005-08-21 00:11:16','2006-02-15 22:13:41'), - (4578,168,1,15033,'3.99','2005-08-22 09:25:24','2006-02-15 22:13:41'), - (4579,168,1,15165,'2.99','2005-08-22 14:59:30','2006-02-15 22:13:41'), - (4580,168,2,15683,'2.99','2005-08-23 09:38:17','2006-02-15 22:13:41'), - (4581,168,1,15894,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:41'), - (4582,169,2,527,'3.99','2005-05-28 04:28:38','2006-02-15 22:13:41'), - (4583,169,1,1087,'4.99','2005-05-31 11:18:08','2006-02-15 22:13:41'), - (4584,169,1,2023,'4.99','2005-06-17 12:52:58','2006-02-15 22:13:41'), - (4585,169,1,3261,'2.99','2005-06-21 04:07:41','2006-02-15 22:13:41'), - (4586,169,1,3493,'8.99','2005-07-05 23:46:19','2006-02-15 22:13:41'), - (4587,169,1,4687,'4.99','2005-07-08 10:54:19','2006-02-15 22:13:41'), - (4588,169,1,5066,'2.99','2005-07-09 04:48:50','2006-02-15 22:13:41'), - (4589,169,1,6143,'3.99','2005-07-11 09:02:37','2006-02-15 22:13:41'), - (4590,169,2,6453,'4.99','2005-07-12 00:59:53','2006-02-15 22:13:41'), - (4591,169,2,6488,'9.99','2005-07-12 02:20:09','2006-02-15 22:13:41'), - (4592,169,2,7187,'6.99','2005-07-27 08:27:58','2006-02-15 22:13:41'), - (4593,169,1,7597,'0.99','2005-07-27 23:35:49','2006-02-15 22:13:41'), - (4594,169,2,8558,'4.99','2005-07-29 11:24:49','2006-02-15 22:13:41'), - (4595,169,2,9203,'0.99','2005-07-30 12:43:40','2006-02-15 22:13:41'), - (4596,169,2,11687,'5.99','2005-08-17 06:39:59','2006-02-15 22:13:41'), - (4597,169,1,11898,'5.99','2005-08-17 15:24:12','2006-02-15 22:13:41'), - (4598,169,2,13198,'2.99','2005-08-19 14:47:18','2006-02-15 22:13:41'), - (4599,169,2,13237,'1.99','2005-08-19 16:18:36','2006-02-15 22:13:41'), - (4600,169,2,14435,'0.99','2005-08-21 11:44:37','2006-02-15 22:13:42'), - (4601,169,2,14805,'4.99','2005-08-22 00:52:01','2006-02-15 22:13:42'), - (4602,169,2,15534,'0.99','2005-08-23 03:55:54','2006-02-15 22:13:42'), - (4603,169,2,15680,'4.99','2005-08-23 09:33:22','2006-02-15 22:13:42'), - (4604,170,1,211,'2.99','2005-05-26 08:33:10','2006-02-15 22:13:42'), - (4605,170,1,377,'5.99','2005-05-27 09:04:05','2006-02-15 22:13:42'), - (4606,170,2,504,'0.99','2005-05-28 02:05:34','2006-02-15 22:13:42'), - (4607,170,2,2117,'0.99','2005-06-17 20:24:00','2006-02-15 22:13:42'), - (4608,170,2,2413,'8.99','2005-06-18 16:59:34','2006-02-15 22:13:42'), - (4609,170,2,3651,'4.99','2005-07-06 07:40:31','2006-02-15 22:13:42'), - (4610,170,1,3749,'4.99','2005-07-06 12:18:03','2006-02-15 22:13:42'), - (4611,170,2,4113,'4.99','2005-07-07 06:49:52','2006-02-15 22:13:42'), - (4612,170,2,4468,'0.99','2005-07-08 00:17:59','2006-02-15 22:13:42'), - (4613,170,2,5075,'0.99','2005-07-09 05:12:07','2006-02-15 22:13:42'), - (4614,170,1,5573,'4.99','2005-07-10 03:50:47','2006-02-15 22:13:42'), - (4615,170,2,5685,'7.99','2005-07-10 09:01:38','2006-02-15 22:13:42'), - (4616,170,2,5808,'2.99','2005-07-10 15:17:33','2006-02-15 22:13:42'), - (4617,170,1,7999,'7.99','2005-07-28 15:10:14','2006-02-15 22:13:42'), - (4618,170,2,9517,'2.99','2005-07-31 00:41:23','2006-02-15 22:13:42'), - (4619,170,1,9817,'2.99','2005-07-31 11:33:31','2006-02-15 22:13:42'), - (4620,170,1,10102,'9.99','2005-07-31 20:49:10','2006-02-15 22:13:42'), - (4621,170,2,10481,'5.99','2005-08-01 10:17:26','2006-02-15 22:13:42'), - (4622,170,1,11039,'0.99','2005-08-02 06:00:53','2006-02-15 22:13:42'), - (4623,170,2,12706,'3.99','2005-08-18 20:44:34','2006-02-15 22:13:42'), - (4624,170,1,12967,'3.99','2005-08-19 06:37:51','2006-02-15 22:13:42'), - (4625,170,1,13081,'0.99','2005-08-19 10:19:06','2006-02-15 22:13:42'), - (4626,170,2,13862,'6.99','2005-08-20 14:57:01','2006-02-15 22:13:42'), - (4627,170,2,14022,'8.99','2005-08-20 21:08:49','2006-02-15 22:13:42'), - (4628,170,2,14675,'2.99','2005-08-21 20:01:51','2006-02-15 22:13:42'), - (4629,170,1,15549,'7.99','2005-08-23 04:27:06','2006-02-15 22:13:42'), - (4630,171,2,804,'9.99','2005-05-29 18:10:24','2006-02-15 22:13:42'), - (4631,171,2,1676,'0.99','2005-06-16 11:06:09','2006-02-15 22:13:42'), - (4632,171,2,2004,'4.99','2005-06-17 11:43:38','2006-02-15 22:13:42'), - (4633,171,2,2199,'5.99','2005-06-18 01:57:56','2006-02-15 22:13:42'), - (4634,171,1,2497,'4.99','2005-06-18 22:50:40','2006-02-15 22:13:42'), - (4635,171,2,2599,'5.99','2005-06-19 06:06:07','2006-02-15 22:13:42'), - (4636,171,2,2788,'2.99','2005-06-19 18:48:11','2006-02-15 22:13:42'), - (4637,171,2,3338,'6.99','2005-06-21 10:27:31','2006-02-15 22:13:42'), - (4638,171,1,3621,'0.99','2005-07-06 06:03:55','2006-02-15 22:13:42'), - (4639,171,2,3745,'2.99','2005-07-06 12:10:32','2006-02-15 22:13:42'), - (4640,171,1,5660,'5.99','2005-07-10 07:46:12','2006-02-15 22:13:42'), - (4641,171,1,5986,'4.99','2005-07-11 00:54:56','2006-02-15 22:13:43'), - (4642,171,1,6766,'2.99','2005-07-12 15:32:01','2006-02-15 22:13:43'), - (4643,171,2,6774,'0.99','2005-07-12 15:56:08','2006-02-15 22:13:43'), - (4644,171,1,7037,'3.99','2005-07-27 03:06:44','2006-02-15 22:13:43'), - (4645,171,2,9066,'4.99','2005-07-30 07:28:54','2006-02-15 22:13:43'), - (4646,171,2,9084,'5.99','2005-07-30 08:14:29','2006-02-15 22:13:43'), - (4647,171,2,10622,'4.99','2005-08-01 15:12:00','2006-02-15 22:13:43'), - (4648,171,1,12600,'4.99','2005-08-18 16:44:24','2006-02-15 22:13:43'), - (4649,171,1,12962,'5.99','2005-08-19 06:22:48','2006-02-15 22:13:43'), - (4650,171,2,13087,'6.99','2005-08-19 10:33:52','2006-02-15 22:13:43'), - (4651,171,2,13292,'0.99','2005-08-19 18:35:32','2006-02-15 22:13:43'), - (4652,171,2,13433,'0.99','2005-08-19 23:30:53','2006-02-15 22:13:43'), - (4653,171,1,14270,'1.99','2005-08-21 06:22:18','2006-02-15 22:13:43'), - (4654,171,2,14615,'9.99','2005-08-21 18:06:32','2006-02-15 22:13:43'), - (4655,171,2,15810,'0.99','2005-08-23 14:43:15','2006-02-15 22:13:43'), - (4656,172,2,449,'3.99','2005-05-27 19:13:15','2006-02-15 22:13:43'), - (4657,172,1,685,'6.99','2005-05-29 00:17:51','2006-02-15 22:13:43'), - (4658,172,1,837,'0.99','2005-05-30 00:02:08','2006-02-15 22:13:43'), - (4659,172,2,1507,'0.99','2005-06-15 22:25:26','2006-02-15 22:13:43'), - (4660,172,1,2052,'0.99','2005-06-17 15:14:43','2006-02-15 22:13:43'), - (4661,172,2,3032,'1.99','2005-06-20 11:58:30','2006-02-15 22:13:43'), - (4662,172,1,4820,'5.99','2005-07-08 17:25:23','2006-02-15 22:13:43'), - (4663,172,1,4821,'4.99','2005-07-08 17:28:08','2006-02-15 22:13:43'), - (4664,172,2,4878,'6.99','2005-07-08 19:33:49','2006-02-15 22:13:43'), - (4665,172,2,6246,'7.99','2005-07-11 14:57:51','2006-02-15 22:13:43'), - (4666,172,1,6380,'0.99','2005-07-11 21:55:40','2006-02-15 22:13:43'), - (4667,172,1,6875,'5.99','2005-07-12 20:23:05','2006-02-15 22:13:43'), - (4668,172,1,7122,'6.99','2005-07-27 06:03:18','2006-02-15 22:13:43'), - (4669,172,1,7135,'2.99','2005-07-27 06:34:32','2006-02-15 22:13:43'), - (4670,172,1,7194,'3.99','2005-07-27 08:39:58','2006-02-15 22:13:43'), - (4671,172,2,7261,'2.99','2005-07-27 11:15:01','2006-02-15 22:13:43'), - (4672,172,1,7638,'4.99','2005-07-28 01:13:26','2006-02-15 22:13:43'), - (4673,172,2,8944,'6.99','2005-07-30 03:11:44','2006-02-15 22:13:43'), - (4674,172,1,9118,'2.99','2005-07-30 09:24:18','2006-02-15 22:13:43'), - (4675,172,2,9218,'5.99','2005-07-30 13:14:35','2006-02-15 22:13:43'), - (4676,172,1,10312,'3.99','2005-08-01 04:29:06','2006-02-15 22:13:43'), - (4677,172,2,10621,'0.99','2005-08-01 15:10:26','2006-02-15 22:13:43'), - (4678,172,2,11499,'6.99','2005-08-16 22:54:12','2006-02-15 22:13:43'), - (4679,172,2,12350,'4.99','2005-08-18 07:29:46','2006-02-15 22:13:43'), - (4680,172,2,12638,'8.99','2005-08-18 18:11:39','2006-02-15 22:13:43'), - (4681,172,2,13067,'5.99','2005-08-19 09:51:17','2006-02-15 22:13:43'), - (4682,172,2,13320,'4.99','2005-08-19 19:35:33','2006-02-15 22:13:44'), - (4683,172,1,13342,'0.99','2005-08-19 20:21:36','2006-02-15 22:13:44'), - (4684,172,2,13937,'4.99','2005-08-20 17:22:51','2006-02-15 22:13:44'), - (4685,172,1,14991,'4.99','2005-08-22 07:50:44','2006-02-15 22:13:44'), - (4686,172,2,15637,'2.99','2005-08-23 07:53:38','2006-02-15 22:13:44'), - (4687,172,1,15902,'3.99','2005-08-23 17:28:03','2006-02-15 22:13:44'), - (4688,172,2,16038,'3.99','2005-08-23 22:14:31','2006-02-15 22:13:44'), - (4689,173,2,578,'2.99','2005-05-28 11:15:48','2006-02-15 22:13:44'), - (4690,173,1,628,'4.99','2005-05-28 17:05:46','2006-02-15 22:13:44'), - (4691,173,2,1188,'2.99','2005-06-15 01:04:07','2006-02-15 22:13:44'), - (4692,173,2,2435,'4.99','2005-06-18 18:12:26','2006-02-15 22:13:44'), - (4693,173,1,2602,'2.99','2005-06-19 06:10:08','2006-02-15 22:13:44'), - (4694,173,2,3224,'0.99','2005-06-21 02:11:36','2006-02-15 22:13:44'), - (4695,173,1,3336,'4.99','2005-06-21 10:14:27','2006-02-15 22:13:44'), - (4696,173,2,3717,'0.99','2005-07-06 10:53:34','2006-02-15 22:13:44'), - (4697,173,1,4904,'7.99','2005-07-08 20:53:27','2006-02-15 22:13:44'), - (4698,173,2,5430,'2.99','2005-07-09 21:19:54','2006-02-15 22:13:44'), - (4699,173,2,5485,'4.99','2005-07-09 23:55:25','2006-02-15 22:13:44'), - (4700,173,1,5488,'2.99','2005-07-10 00:02:06','2006-02-15 22:13:44'), - (4701,173,2,5531,'2.99','2005-07-10 02:13:59','2006-02-15 22:13:44'), - (4702,173,1,5615,'3.99','2005-07-10 05:18:51','2006-02-15 22:13:44'), - (4703,173,2,6021,'4.99','2005-07-11 02:10:18','2006-02-15 22:13:44'), - (4704,173,1,7644,'0.99','2005-07-28 01:27:33','2006-02-15 22:13:44'), - (4705,173,2,8299,'2.99','2005-07-29 02:56:00','2006-02-15 22:13:44'), - (4706,173,2,8808,'4.99','2005-07-29 21:39:07','2006-02-15 22:13:44'), - (4707,173,2,8829,'8.99','2005-07-29 22:33:34','2006-02-15 22:13:44'), - (4708,173,1,9097,'4.99','2005-07-30 08:40:35','2006-02-15 22:13:44'), - (4709,173,2,9512,'2.99','2005-07-31 00:26:30','2006-02-15 22:13:44'), - (4710,173,1,10351,'5.99','2005-08-01 05:32:13','2006-02-15 22:13:44'), - (4711,173,2,12073,'2.99','2005-08-17 21:50:39','2006-02-15 22:13:44'), - (4712,173,1,12282,'6.99','2005-08-18 04:54:20','2006-02-15 22:13:44'), - (4713,173,2,12501,'4.99','2005-08-18 13:13:13','2006-02-15 22:13:44'), - (4714,173,1,14654,'2.99','2005-08-21 19:36:59','2006-02-15 22:13:44'), - (4715,173,2,15483,'0.99','2005-08-23 02:02:53','2006-02-15 22:13:44'), - (4716,173,1,15775,'8.99','2005-08-23 13:25:44','2006-02-15 22:13:44'), - (4717,173,1,16010,'2.99','2005-08-23 21:10:24','2006-02-15 22:13:44'), - (4718,174,1,41,'5.99','2005-05-25 05:12:29','2006-02-15 22:13:44'), - (4719,174,2,1071,'4.99','2005-05-31 09:48:56','2006-02-15 22:13:44'), - (4720,174,2,1566,'7.99','2005-06-16 03:13:20','2006-02-15 22:13:44'), - (4721,174,1,1609,'0.99','2005-06-16 06:34:59','2006-02-15 22:13:44'), - (4722,174,1,2326,'5.99','2005-06-18 10:14:22','2006-02-15 22:13:44'), - (4723,174,2,3446,'1.99','2005-06-21 20:45:51','2006-02-15 22:13:45'), - (4724,174,2,4803,'1.99','2005-07-08 16:56:34','2006-02-15 22:13:45'), - (4725,174,2,5414,'4.99','2005-07-09 20:29:36','2006-02-15 22:13:45'), - (4726,174,1,6909,'4.99','2005-07-12 22:09:30','2006-02-15 22:13:45'), - (4727,174,2,8348,'7.99','2005-07-29 04:49:26','2006-02-15 22:13:45'), - (4728,174,1,8754,'4.99','2005-07-29 19:18:30','2006-02-15 22:13:45'), - (4729,174,1,9301,'4.99','2005-07-30 16:34:29','2006-02-15 22:13:45'), - (4730,174,1,9847,'2.99','2005-07-31 12:33:43','2006-02-15 22:13:45'), - (4731,174,1,10363,'2.99','2005-08-01 06:01:52','2006-02-15 22:13:45'), - (4732,174,2,10398,'4.99','2005-08-01 07:11:49','2006-02-15 22:13:45'), - (4733,174,1,10559,'8.99','2005-08-01 13:02:58','2006-02-15 22:13:45'), - (4734,174,1,11525,'0.99','2005-08-17 00:15:31','2006-02-15 22:13:45'), - (4735,174,2,12886,'5.99','2005-08-19 03:38:32','2006-02-15 22:13:45'), - (4736,174,1,13185,'0.99','2005-08-19 14:22:30','2006-02-15 22:13:45'), - (4737,174,1,15892,'1.99','2005-08-23 17:01:00','2006-02-15 22:13:45'), - (4738,174,1,15975,'4.99','2005-08-23 20:06:23','2006-02-15 22:13:45'), - (4739,175,2,1495,'0.99','2005-06-15 21:54:31','2006-02-15 22:13:45'), - (4740,175,2,3266,'4.99','2005-06-21 04:49:07','2006-02-15 22:13:45'), - (4741,175,1,3625,'4.99','2005-07-06 06:12:52','2006-02-15 22:13:45'), - (4742,175,2,4167,'5.99','2005-07-07 09:37:08','2006-02-15 22:13:45'), - (4743,175,1,5232,'1.99','2005-07-09 12:35:08','2006-02-15 22:13:45'), - (4744,175,2,6865,'7.99','2005-07-12 20:02:40','2006-02-15 22:13:45'), - (4745,175,1,7448,'2.99','2005-07-27 18:06:30','2006-02-15 22:13:45'), - (4746,175,1,7771,'0.99','2005-07-28 06:52:12','2006-02-15 22:13:45'), - (4747,175,1,8244,'2.99','2005-07-29 00:35:34','2006-02-15 22:13:45'), - (4748,175,1,8264,'4.99','2005-07-29 01:18:50','2006-02-15 22:13:45'), - (4749,175,1,8440,'3.99','2005-07-29 07:31:26','2006-02-15 22:13:45'), - (4750,175,1,8817,'4.99','2005-07-29 22:09:08','2006-02-15 22:13:45'), - (4751,175,2,9941,'4.99','2005-07-31 15:31:25','2006-02-15 22:13:45'), - (4752,175,2,10229,'7.99','2005-08-01 01:45:26','2006-02-15 22:13:45'), - (4753,175,1,10875,'0.99','2005-08-02 00:31:44','2006-02-15 22:13:45'), - (4754,175,2,11618,'4.99','2005-08-17 04:01:36','2006-02-15 22:13:45'), - (4755,175,1,12509,'0.99','2005-08-18 13:21:52','2006-02-15 22:13:45'), - (4756,175,1,13016,'4.99','2005-08-19 07:57:14','2006-02-15 22:13:45'), - (4757,175,2,13833,'6.99','2005-08-20 14:00:29','2006-02-15 22:13:45'), - (4758,175,2,13997,'6.99','2005-08-20 19:51:28','2006-02-15 22:13:45'), - (4759,175,2,14507,'4.99','2005-08-21 14:32:45','2006-02-15 22:13:45'), - (4760,175,2,14897,'2.99','2005-08-22 04:22:31','2006-02-15 22:13:45'), - (4761,175,2,14060,'3.98','2006-02-14 15:16:03','2006-02-15 22:13:45'), - (4762,175,2,13161,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:46'), - (4763,176,1,172,'0.99','2005-05-26 03:17:42','2006-02-15 22:13:46'), - (4764,176,2,380,'6.99','2005-05-27 09:34:39','2006-02-15 22:13:46'), - (4765,176,1,553,'3.99','2005-05-28 08:14:44','2006-02-15 22:13:46'), - (4766,176,1,663,'1.99','2005-05-28 21:23:02','2006-02-15 22:13:46'), - (4767,176,1,1062,'7.99','2005-05-31 08:38:20','2006-02-15 22:13:46'), - (4768,176,1,1291,'5.99','2005-06-15 08:55:01','2006-02-15 22:13:46'), - (4769,176,1,1741,'7.99','2005-06-16 16:31:37','2006-02-15 22:13:46'), - (4770,176,1,1836,'6.99','2005-06-16 23:13:05','2006-02-15 22:13:46'), - (4771,176,1,2181,'8.99','2005-06-18 00:48:31','2006-02-15 22:13:46'), - (4772,176,1,2218,'2.99','2005-06-18 03:13:13','2006-02-15 22:13:46'), - (4773,176,2,2427,'2.99','2005-06-18 17:45:00','2006-02-15 22:13:46'), - (4774,176,2,2503,'1.99','2005-06-18 23:17:19','2006-02-15 22:13:46'), - (4775,176,1,2922,'4.99','2005-06-20 04:13:47','2006-02-15 22:13:46'), - (4776,176,1,3643,'4.99','2005-07-06 07:20:08','2006-02-15 22:13:46'), - (4777,176,2,3931,'6.99','2005-07-06 21:03:46','2006-02-15 22:13:46'), - (4778,176,2,4121,'3.99','2005-07-07 07:13:50','2006-02-15 22:13:46'), - (4779,176,1,6035,'2.99','2005-07-11 03:01:45','2006-02-15 22:13:46'), - (4780,176,1,6354,'6.99','2005-07-11 20:54:27','2006-02-15 22:13:46'), - (4781,176,1,7017,'4.99','2005-07-27 02:16:03','2006-02-15 22:13:46'), - (4782,176,1,7025,'2.99','2005-07-27 02:40:29','2006-02-15 22:13:46'), - (4783,176,1,7210,'2.99','2005-07-27 09:19:05','2006-02-15 22:13:46'), - (4784,176,2,7521,'2.99','2005-07-27 21:04:42','2006-02-15 22:13:46'), - (4785,176,1,7751,'5.99','2005-07-28 05:56:13','2006-02-15 22:13:46'), - (4786,176,1,8279,'2.99','2005-07-29 01:43:37','2006-02-15 22:13:46'), - (4787,176,2,9145,'6.99','2005-07-30 10:27:55','2006-02-15 22:13:46'), - (4788,176,1,10277,'2.99','2005-08-01 03:22:41','2006-02-15 22:13:46'), - (4789,176,2,10441,'0.99','2005-08-01 08:55:56','2006-02-15 22:13:46'), - (4790,176,1,10862,'2.99','2005-08-02 00:17:34','2006-02-15 22:13:46'), - (4791,176,1,11678,'5.99','2005-08-17 06:07:39','2006-02-15 22:13:46'), - (4792,176,1,12299,'2.99','2005-08-18 05:32:32','2006-02-15 22:13:46'), - (4793,176,1,12718,'2.99','2005-08-18 21:21:44','2006-02-15 22:13:46'), - (4794,176,1,13170,'7.99','2005-08-19 13:45:48','2006-02-15 22:13:46'), - (4795,176,2,13186,'5.99','2005-08-19 14:23:19','2006-02-15 22:13:46'), - (4796,176,1,14083,'7.99','2005-08-20 23:42:31','2006-02-15 22:13:46'), - (4797,176,2,14232,'1.99','2005-08-21 05:07:02','2006-02-15 22:13:46'), - (4798,176,2,15311,'4.99','2005-08-22 19:56:52','2006-02-15 22:13:46'), - (4799,176,1,15933,'4.99','2005-08-23 18:36:44','2006-02-15 22:13:46'), - (4800,177,1,1393,'2.99','2005-06-15 16:12:50','2006-02-15 22:13:46'), - (4801,177,1,1524,'2.99','2005-06-16 00:25:52','2006-02-15 22:13:46'), - (4802,177,2,1621,'4.99','2005-06-16 07:24:12','2006-02-15 22:13:47'), - (4803,177,1,1738,'0.99','2005-06-16 16:07:27','2006-02-15 22:13:47'), - (4804,177,2,2467,'2.99','2005-06-18 20:20:05','2006-02-15 22:13:47'), - (4805,177,1,4760,'0.99','2005-07-08 14:48:07','2006-02-15 22:13:47'), - (4806,177,2,6217,'9.99','2005-07-11 13:13:45','2006-02-15 22:13:47'), - (4807,177,1,6284,'2.99','2005-07-11 16:51:39','2006-02-15 22:13:47'), - (4808,177,1,7493,'3.99','2005-07-27 19:55:46','2006-02-15 22:13:47'), - (4809,177,2,7674,'1.99','2005-07-28 02:54:30','2006-02-15 22:13:47'), - (4810,177,1,8139,'0.99','2005-07-28 20:16:30','2006-02-15 22:13:47'), - (4811,177,2,9190,'1.99','2005-07-30 12:24:17','2006-02-15 22:13:47'), - (4812,177,2,10321,'4.99','2005-08-01 04:40:02','2006-02-15 22:13:47'), - (4813,177,1,10661,'2.99','2005-08-01 16:48:31','2006-02-15 22:13:47'), - (4814,177,1,10710,'0.99','2005-08-01 18:44:36','2006-02-15 22:13:47'), - (4815,177,1,11195,'0.99','2005-08-02 11:42:23','2006-02-15 22:13:47'), - (4816,177,1,11376,'5.99','2005-08-02 18:16:00','2006-02-15 22:13:47'), - (4817,177,2,11662,'6.99','2005-08-17 05:27:37','2006-02-15 22:13:47'), - (4818,177,1,12623,'4.99','2005-08-18 17:34:19','2006-02-15 22:13:47'), - (4819,177,2,14093,'0.99','2005-08-21 00:21:29','2006-02-15 22:13:47'), - (4820,177,2,14310,'0.99','2005-08-21 07:44:32','2006-02-15 22:13:47'), - (4821,177,2,14849,'2.99','2005-08-22 02:15:26','2006-02-15 22:13:47'), - (4822,177,2,14883,'0.99','2005-08-22 03:55:02','2006-02-15 22:13:47'), - (4823,178,1,1292,'6.99','2005-06-15 09:03:52','2006-02-15 22:13:47'), - (4824,178,2,1458,'6.99','2005-06-15 20:24:05','2006-02-15 22:13:47'), - (4825,178,2,1568,'2.99','2005-06-16 03:14:01','2006-02-15 22:13:47'), - (4826,178,2,1745,'3.99','2005-06-16 16:41:16','2006-02-15 22:13:47'), - (4827,178,2,2124,'1.99','2005-06-17 20:49:14','2006-02-15 22:13:47'), - (4828,178,1,2293,'4.99','2005-06-18 07:45:03','2006-02-15 22:13:47'), - (4829,178,2,2844,'6.99','2005-06-19 22:40:12','2006-02-15 22:13:47'), - (4830,178,1,2898,'9.99','2005-06-20 02:38:06','2006-02-15 22:13:47'), - (4831,178,1,4915,'2.99','2005-07-08 21:31:22','2006-02-15 22:13:47'), - (4832,178,1,5015,'2.99','2005-07-09 01:54:24','2006-02-15 22:13:47'), - (4833,178,1,5057,'4.99','2005-07-09 04:20:29','2006-02-15 22:13:47'), - (4834,178,1,5094,'10.99','2005-07-09 05:59:47','2006-02-15 22:13:47'), - (4835,178,1,5984,'2.99','2005-07-11 00:44:36','2006-02-15 22:13:47'), - (4836,178,2,6347,'4.99','2005-07-11 20:18:53','2006-02-15 22:13:48'), - (4837,178,1,6554,'5.99','2005-07-12 05:07:26','2006-02-15 22:13:48'), - (4838,178,1,6566,'6.99','2005-07-12 05:42:53','2006-02-15 22:13:48'), - (4839,178,2,6606,'2.99','2005-07-12 08:03:40','2006-02-15 22:13:48'), - (4840,178,1,7959,'4.99','2005-07-28 13:43:20','2006-02-15 22:13:48'), - (4841,178,2,8069,'0.99','2005-07-28 17:23:46','2006-02-15 22:13:48'), - (4842,178,1,8287,'3.99','2005-07-29 02:03:58','2006-02-15 22:13:48'), - (4843,178,2,8388,'5.99','2005-07-29 05:48:15','2006-02-15 22:13:48'), - (4844,178,2,8696,'4.99','2005-07-29 16:45:18','2006-02-15 22:13:48'), - (4845,178,2,9004,'4.99','2005-07-30 05:04:27','2006-02-15 22:13:48'), - (4846,178,1,9311,'7.99','2005-07-30 16:58:31','2006-02-15 22:13:48'), - (4847,178,2,9879,'4.99','2005-07-31 13:45:32','2006-02-15 22:13:48'), - (4848,178,2,10125,'0.99','2005-07-31 21:33:03','2006-02-15 22:13:48'), - (4849,178,2,10562,'0.99','2005-08-01 13:05:52','2006-02-15 22:13:48'), - (4850,178,1,10802,'5.99','2005-08-01 22:18:32','2006-02-15 22:13:48'), - (4851,178,2,11319,'6.99','2005-08-02 16:10:09','2006-02-15 22:13:48'), - (4852,178,2,11884,'6.99','2005-08-17 14:43:23','2006-02-15 22:13:48'), - (4853,178,2,11927,'3.99','2005-08-17 16:25:03','2006-02-15 22:13:48'), - (4854,178,2,12049,'6.99','2005-08-17 20:53:27','2006-02-15 22:13:48'), - (4855,178,2,12727,'2.99','2005-08-18 21:45:15','2006-02-15 22:13:48'), - (4856,178,1,13127,'2.99','2005-08-19 12:04:03','2006-02-15 22:13:48'), - (4857,178,1,14104,'4.99','2005-08-21 00:37:44','2006-02-15 22:13:48'), - (4858,178,1,14257,'7.99','2005-08-21 05:52:57','2006-02-15 22:13:48'), - (4859,178,2,14314,'2.99','2005-08-21 07:50:14','2006-02-15 22:13:48'), - (4860,178,1,15323,'4.99','2005-08-22 20:22:40','2006-02-15 22:13:48'), - (4861,178,1,12897,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:48'), - (4862,179,1,502,'0.99','2005-05-28 01:34:43','2006-02-15 22:13:48'), - (4863,179,1,759,'6.99','2005-05-29 10:57:57','2006-02-15 22:13:48'), - (4864,179,1,1046,'4.99','2005-05-31 06:42:30','2006-02-15 22:13:48'), - (4865,179,2,1286,'7.99','2005-06-15 08:41:13','2006-02-15 22:13:48'), - (4866,179,1,2613,'4.99','2005-06-19 07:25:50','2006-02-15 22:13:48'), - (4867,179,1,3671,'6.99','2005-07-06 09:01:29','2006-02-15 22:13:48'), - (4868,179,1,3844,'0.99','2005-07-06 16:37:58','2006-02-15 22:13:48'), - (4869,179,1,4618,'2.99','2005-07-08 08:00:20','2006-02-15 22:13:48'), - (4870,179,2,6071,'6.99','2005-07-11 04:50:03','2006-02-15 22:13:48'), - (4871,179,1,6616,'7.99','2005-07-12 08:37:30','2006-02-15 22:13:48'), - (4872,179,1,6806,'2.99','2005-07-12 17:31:43','2006-02-15 22:13:48'), - (4873,179,1,7028,'6.99','2005-07-27 02:54:25','2006-02-15 22:13:48'), - (4874,179,1,7054,'4.99','2005-07-27 03:43:28','2006-02-15 22:13:48'), - (4875,179,1,7609,'4.99','2005-07-28 00:11:00','2006-02-15 22:13:48'), - (4876,179,1,8573,'2.99','2005-07-29 11:51:25','2006-02-15 22:13:49'), - (4877,179,1,8731,'8.99','2005-07-29 18:23:57','2006-02-15 22:13:49'), - (4878,179,2,9491,'4.99','2005-07-30 23:45:23','2006-02-15 22:13:49'), - (4879,179,2,9893,'0.99','2005-07-31 14:07:21','2006-02-15 22:13:49'), - (4880,179,1,10156,'4.99','2005-07-31 22:36:00','2006-02-15 22:13:49'), - (4881,179,1,10385,'4.99','2005-08-01 06:39:55','2006-02-15 22:13:49'), - (4882,179,2,10569,'3.99','2005-08-01 13:18:23','2006-02-15 22:13:49'), - (4883,179,1,11342,'0.99','2005-08-02 17:11:35','2006-02-15 22:13:49'), - (4884,179,2,13240,'0.99','2005-08-19 16:22:14','2006-02-15 22:13:49'), - (4885,179,1,13400,'4.99','2005-08-19 22:11:44','2006-02-15 22:13:49'), - (4886,179,2,13844,'7.99','2005-08-20 14:30:26','2006-02-15 22:13:49'), - (4887,179,2,13957,'0.99','2005-08-20 18:09:04','2006-02-15 22:13:49'), - (4888,179,2,14082,'7.99','2005-08-20 23:42:00','2006-02-15 22:13:49'), - (4889,179,1,14589,'0.99','2005-08-21 17:28:55','2006-02-15 22:13:49'), - (4890,179,1,15985,'4.99','2005-08-23 20:20:23','2006-02-15 22:13:49'), - (4891,180,1,1122,'2.99','2005-05-31 16:39:33','2006-02-15 22:13:49'), - (4892,180,2,2700,'2.99','2005-06-19 13:31:52','2006-02-15 22:13:49'), - (4893,180,1,2798,'2.99','2005-06-19 19:07:48','2006-02-15 22:13:49'), - (4894,180,2,4826,'7.99','2005-07-08 17:44:25','2006-02-15 22:13:49'), - (4895,180,1,4924,'9.99','2005-07-08 21:55:25','2006-02-15 22:13:49'), - (4896,180,2,5384,'0.99','2005-07-09 19:17:46','2006-02-15 22:13:49'), - (4897,180,2,5773,'0.99','2005-07-10 13:31:09','2006-02-15 22:13:49'), - (4898,180,1,5860,'3.99','2005-07-10 18:08:49','2006-02-15 22:13:49'), - (4899,180,1,7274,'2.99','2005-07-27 11:35:34','2006-02-15 22:13:49'), - (4900,180,2,8540,'2.99','2005-07-29 10:52:51','2006-02-15 22:13:49'), - (4901,180,2,8720,'5.99','2005-07-29 17:48:32','2006-02-15 22:13:49'), - (4902,180,1,9373,'0.99','2005-07-30 19:05:36','2006-02-15 22:13:49'), - (4903,180,2,9995,'3.99','2005-07-31 17:30:47','2006-02-15 22:13:49'), - (4904,180,1,10576,'5.99','2005-08-01 13:46:02','2006-02-15 22:13:49'), - (4905,180,1,10992,'8.99','2005-08-02 04:41:17','2006-02-15 22:13:49'), - (4906,180,1,12313,'8.99','2005-08-18 06:07:31','2006-02-15 22:13:49'), - (4907,180,1,13283,'2.99','2005-08-19 18:10:19','2006-02-15 22:13:49'), - (4908,180,2,13842,'4.99','2005-08-20 14:29:37','2006-02-15 22:13:49'), - (4909,180,1,13994,'2.99','2005-08-20 19:33:21','2006-02-15 22:13:49'), - (4910,180,1,14109,'0.99','2005-08-21 00:52:58','2006-02-15 22:13:49'), - (4911,180,1,14851,'2.99','2005-08-22 02:20:44','2006-02-15 22:13:49'), - (4912,180,1,15039,'4.99','2005-08-22 09:37:54','2006-02-15 22:13:49'), - (4913,180,1,12901,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:49'), - (4914,181,2,579,'6.99','2005-05-28 11:19:23','2006-02-15 22:13:49'), - (4915,181,1,1638,'2.99','2005-06-16 08:32:36','2006-02-15 22:13:50'), - (4916,181,1,2645,'5.99','2005-06-19 09:50:35','2006-02-15 22:13:50'), - (4917,181,2,3449,'5.99','2005-06-21 21:01:27','2006-02-15 22:13:50'), - (4918,181,2,3469,'4.99','2005-06-21 22:48:59','2006-02-15 22:13:50'), - (4919,181,1,3862,'6.99','2005-07-06 17:35:22','2006-02-15 22:13:50'), - (4920,181,2,4428,'4.99','2005-07-07 22:29:40','2006-02-15 22:13:50'), - (4921,181,2,6477,'4.99','2005-07-12 01:38:42','2006-02-15 22:13:50'), - (4922,181,1,6946,'8.99','2005-07-26 23:40:07','2006-02-15 22:13:50'), - (4923,181,1,7393,'0.99','2005-07-27 16:02:52','2006-02-15 22:13:50'), - (4924,181,1,7632,'4.99','2005-07-28 01:02:40','2006-02-15 22:13:50'), - (4925,181,1,8593,'5.99','2005-07-29 12:38:14','2006-02-15 22:13:50'), - (4926,181,1,8601,'9.99','2005-07-29 13:03:31','2006-02-15 22:13:50'), - (4927,181,2,9214,'4.99','2005-07-30 13:10:14','2006-02-15 22:13:50'), - (4928,181,2,9235,'5.99','2005-07-30 13:47:17','2006-02-15 22:13:50'), - (4929,181,1,9357,'8.99','2005-07-30 18:37:00','2006-02-15 22:13:50'), - (4930,181,1,9844,'4.99','2005-07-31 12:26:31','2006-02-15 22:13:50'), - (4931,181,2,10262,'4.99','2005-08-01 03:01:26','2006-02-15 22:13:50'), - (4932,181,2,10362,'6.99','2005-08-01 05:55:13','2006-02-15 22:13:50'), - (4933,181,2,10703,'2.99','2005-08-01 18:37:39','2006-02-15 22:13:50'), - (4934,181,1,10748,'4.99','2005-08-01 20:01:24','2006-02-15 22:13:50'), - (4935,181,1,10773,'6.99','2005-08-01 20:53:45','2006-02-15 22:13:50'), - (4936,181,2,11224,'4.99','2005-08-02 12:40:38','2006-02-15 22:13:50'), - (4937,181,1,12363,'7.99','2005-08-18 07:52:49','2006-02-15 22:13:50'), - (4938,181,1,12411,'0.99','2005-08-18 09:47:57','2006-02-15 22:13:50'), - (4939,181,1,12678,'2.99','2005-08-18 19:41:27','2006-02-15 22:13:50'), - (4940,181,2,12939,'2.99','2005-08-19 05:38:25','2006-02-15 22:13:50'), - (4941,181,2,13118,'4.99','2005-08-19 11:39:58','2006-02-15 22:13:50'), - (4942,181,2,13405,'4.99','2005-08-19 22:20:49','2006-02-15 22:13:50'), - (4943,181,2,13415,'2.99','2005-08-19 22:48:09','2006-02-15 22:13:50'), - (4944,181,2,14406,'3.99','2005-08-21 10:46:35','2006-02-15 22:13:50'), - (4945,181,2,15196,'2.99','2005-08-22 16:11:32','2006-02-15 22:13:50'), - (4946,181,2,15482,'4.99','2005-08-23 02:01:20','2006-02-15 22:13:50'), - (4947,181,2,13008,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:50'), - (4948,182,2,161,'0.99','2005-05-26 01:51:48','2006-02-15 22:13:50'), - (4949,182,2,425,'3.99','2005-05-27 15:51:30','2006-02-15 22:13:50'), - (4950,182,2,1542,'3.99','2005-06-16 01:20:05','2006-02-15 22:13:50'), - (4951,182,1,2049,'2.99','2005-06-17 14:58:36','2006-02-15 22:13:50'), - (4952,182,2,2120,'5.99','2005-06-17 20:36:50','2006-02-15 22:13:51'), - (4953,182,1,2234,'0.99','2005-06-18 04:01:28','2006-02-15 22:13:51'), - (4954,182,1,3509,'2.99','2005-07-06 00:24:57','2006-02-15 22:13:51'), - (4955,182,1,3697,'6.99','2005-07-06 10:07:22','2006-02-15 22:13:51'), - (4956,182,1,4174,'2.99','2005-07-07 09:59:49','2006-02-15 22:13:51'), - (4957,182,1,4349,'0.99','2005-07-07 19:02:37','2006-02-15 22:13:51'), - (4958,182,2,4513,'1.99','2005-07-08 02:39:59','2006-02-15 22:13:51'), - (4959,182,2,4591,'3.99','2005-07-08 06:29:43','2006-02-15 22:13:51'), - (4960,182,2,4784,'0.99','2005-07-08 16:09:56','2006-02-15 22:13:51'), - (4961,182,1,5521,'2.99','2005-07-10 01:31:22','2006-02-15 22:13:51'), - (4962,182,2,7229,'0.99','2005-07-27 10:00:54','2006-02-15 22:13:51'), - (4963,182,2,7863,'0.99','2005-07-28 10:05:46','2006-02-15 22:13:51'), - (4964,182,2,7880,'4.99','2005-07-28 10:30:37','2006-02-15 22:13:51'), - (4965,182,2,8048,'8.99','2005-07-28 16:50:26','2006-02-15 22:13:51'), - (4966,182,1,11055,'4.99','2005-08-02 06:36:05','2006-02-15 22:13:51'), - (4967,182,2,11785,'3.99','2005-08-17 10:54:46','2006-02-15 22:13:51'), - (4968,182,1,12573,'4.99','2005-08-18 15:32:57','2006-02-15 22:13:51'), - (4969,182,1,12840,'6.99','2005-08-19 01:54:11','2006-02-15 22:13:51'), - (4970,182,1,13285,'2.99','2005-08-19 18:18:44','2006-02-15 22:13:51'), - (4971,182,1,14586,'5.99','2005-08-21 17:19:09','2006-02-15 22:13:51'), - (4972,182,1,14953,'6.99','2005-08-22 06:23:54','2006-02-15 22:13:51'), - (4973,182,1,15043,'1.99','2005-08-22 09:49:32','2006-02-15 22:13:51'), - (4974,183,1,382,'0.99','2005-05-27 10:12:00','2006-02-15 22:13:51'), - (4975,183,1,1279,'0.99','2005-06-15 08:13:57','2006-02-15 22:13:51'), - (4976,183,2,2188,'1.99','2005-06-18 01:19:04','2006-02-15 22:13:51'), - (4977,183,2,2471,'5.99','2005-06-18 20:31:00','2006-02-15 22:13:51'), - (4978,183,1,3381,'5.99','2005-06-21 14:02:59','2006-02-15 22:13:51'), - (4979,183,1,3869,'2.99','2005-07-06 17:56:46','2006-02-15 22:13:51'), - (4980,183,2,4134,'0.99','2005-07-07 08:14:24','2006-02-15 22:13:51'), - (4981,183,2,4157,'2.99','2005-07-07 09:04:26','2006-02-15 22:13:51'), - (4982,183,1,5069,'1.99','2005-07-09 04:56:30','2006-02-15 22:13:51'), - (4983,183,2,5756,'0.99','2005-07-10 12:39:28','2006-02-15 22:13:51'), - (4984,183,1,6472,'4.99','2005-07-12 01:33:25','2006-02-15 22:13:51'), - (4985,183,1,6569,'4.99','2005-07-12 05:47:40','2006-02-15 22:13:51'), - (4986,183,2,7359,'0.99','2005-07-27 14:51:04','2006-02-15 22:13:51'), - (4987,183,2,9672,'5.99','2005-07-31 06:34:06','2006-02-15 22:13:51'), - (4988,183,1,9818,'4.99','2005-07-31 11:34:32','2006-02-15 22:13:51'), - (4989,183,2,9931,'2.99','2005-07-31 15:18:19','2006-02-15 22:13:52'), - (4990,183,2,10620,'5.99','2005-08-01 15:09:17','2006-02-15 22:13:52'), - (4991,183,2,11386,'2.99','2005-08-02 18:24:03','2006-02-15 22:13:52'), - (4992,183,2,12451,'0.99','2005-08-18 11:04:42','2006-02-15 22:13:52'), - (4993,183,2,12764,'3.99','2005-08-18 23:14:15','2006-02-15 22:13:52'), - (4994,183,2,12831,'3.99','2005-08-19 01:40:43','2006-02-15 22:13:52'), - (4995,183,1,13482,'2.99','2005-08-20 01:14:30','2006-02-15 22:13:52'), - (4996,183,1,13536,'4.99','2005-08-20 03:35:16','2006-02-15 22:13:52'), - (4997,184,1,196,'2.99','2005-05-26 06:55:58','2006-02-15 22:13:52'), - (4998,184,2,534,'4.99','2005-05-28 06:15:25','2006-02-15 22:13:52'), - (4999,184,1,567,'1.99','2005-05-28 09:56:20','2006-02-15 22:13:52'), - (5000,184,2,1976,'2.99','2005-06-17 09:38:08','2006-02-15 22:13:52'), - (5001,184,1,2312,'0.99','2005-06-18 08:55:46','2006-02-15 22:13:52'), - (5002,184,1,4314,'0.99','2005-07-07 17:38:31','2006-02-15 22:13:52'), - (5003,184,2,4882,'6.99','2005-07-08 19:42:03','2006-02-15 22:13:52'), - (5004,184,1,5891,'0.99','2005-07-10 20:01:17','2006-02-15 22:13:52'), - (5005,184,2,6493,'2.99','2005-07-12 02:40:41','2006-02-15 22:13:52'), - (5006,184,2,6700,'6.99','2005-07-12 12:47:22','2006-02-15 22:13:52'), - (5007,184,2,7051,'4.99','2005-07-27 03:34:37','2006-02-15 22:13:52'), - (5008,184,2,7686,'6.99','2005-07-28 03:19:23','2006-02-15 22:13:52'), - (5009,184,1,8892,'4.99','2005-07-30 00:47:03','2006-02-15 22:13:52'), - (5010,184,1,9162,'0.99','2005-07-30 11:21:56','2006-02-15 22:13:52'), - (5011,184,2,12166,'9.99','2005-08-18 00:57:06','2006-02-15 22:13:52'), - (5012,184,2,12454,'2.99','2005-08-18 11:19:02','2006-02-15 22:13:52'), - (5013,184,1,12532,'2.99','2005-08-18 13:57:58','2006-02-15 22:13:52'), - (5014,184,1,13134,'0.99','2005-08-19 12:14:14','2006-02-15 22:13:52'), - (5015,184,1,13262,'5.99','2005-08-19 17:20:15','2006-02-15 22:13:52'), - (5016,184,1,13303,'4.99','2005-08-19 18:55:21','2006-02-15 22:13:52'), - (5017,184,2,14472,'4.99','2005-08-21 13:13:57','2006-02-15 22:13:52'), - (5018,184,1,14801,'5.99','2005-08-22 00:46:54','2006-02-15 22:13:53'), - (5019,184,2,15611,'0.99','2005-08-23 06:56:18','2006-02-15 22:13:53'), - (5020,185,2,20,'2.99','2005-05-25 01:48:41','2006-02-15 22:13:53'), - (5021,185,2,154,'0.99','2005-05-26 00:55:56','2006-02-15 22:13:53'), - (5022,185,1,646,'0.99','2005-05-28 19:16:14','2006-02-15 22:13:53'), - (5023,185,1,2459,'4.99','2005-06-18 19:44:08','2006-02-15 22:13:53'), - (5024,185,1,3314,'4.99','2005-06-21 08:17:00','2006-02-15 22:13:53'), - (5025,185,1,3325,'4.99','2005-06-21 08:51:44','2006-02-15 22:13:53'), - (5026,185,1,4186,'9.99','2005-07-07 10:32:25','2006-02-15 22:13:53'), - (5027,185,1,4524,'2.99','2005-07-08 03:10:48','2006-02-15 22:13:53'), - (5028,185,2,4822,'7.99','2005-07-08 17:28:47','2006-02-15 22:13:53'), - (5029,185,2,6106,'2.99','2005-07-11 07:05:06','2006-02-15 22:13:53'), - (5030,185,1,6418,'1.99','2005-07-11 23:36:27','2006-02-15 22:13:53'), - (5031,185,1,6965,'2.99','2005-07-27 00:15:18','2006-02-15 22:13:53'), - (5032,185,1,7066,'4.99','2005-07-27 03:53:52','2006-02-15 22:13:53'), - (5033,185,1,8200,'2.99','2005-07-28 23:10:46','2006-02-15 22:13:53'), - (5034,185,2,8442,'0.99','2005-07-29 07:33:07','2006-02-15 22:13:53'), - (5035,185,1,8684,'8.99','2005-07-29 16:16:33','2006-02-15 22:13:53'), - (5036,185,2,9246,'0.99','2005-07-30 14:12:31','2006-02-15 22:13:53'), - (5037,185,2,9473,'2.99','2005-07-30 23:04:13','2006-02-15 22:13:53'), - (5038,185,2,11355,'0.99','2005-08-02 17:37:43','2006-02-15 22:13:53'), - (5039,185,1,12312,'2.99','2005-08-18 06:07:26','2006-02-15 22:13:53'), - (5040,185,1,12674,'5.99','2005-08-18 19:24:56','2006-02-15 22:13:53'), - (5041,185,1,12885,'0.99','2005-08-19 03:37:25','2006-02-15 22:13:53'), - (5042,185,2,14513,'2.99','2005-08-21 14:51:35','2006-02-15 22:13:53'), - (5043,186,1,581,'1.99','2005-05-28 11:20:29','2006-02-15 22:13:53'), - (5044,186,2,958,'0.99','2005-05-30 17:58:03','2006-02-15 22:13:53'), - (5045,186,1,1192,'4.99','2005-06-15 01:18:39','2006-02-15 22:13:53'), - (5046,186,1,1300,'2.99','2005-06-15 09:36:19','2006-02-15 22:13:53'), - (5047,186,1,1663,'2.99','2005-06-16 10:14:15','2006-02-15 22:13:53'), - (5048,186,2,2132,'4.99','2005-06-17 21:05:06','2006-02-15 22:13:53'), - (5049,186,2,2875,'4.99','2005-06-20 00:47:18','2006-02-15 22:13:53'), - (5050,186,1,3039,'4.99','2005-06-20 12:32:30','2006-02-15 22:13:53'), - (5051,186,2,6067,'4.99','2005-07-11 04:34:49','2006-02-15 22:13:53'), - (5052,186,2,7739,'0.99','2005-07-28 05:21:51','2006-02-15 22:13:54'), - (5053,186,1,7915,'3.99','2005-07-28 11:49:46','2006-02-15 22:13:54'), - (5054,186,1,8483,'4.99','2005-07-29 08:50:18','2006-02-15 22:13:54'), - (5055,186,2,8872,'0.99','2005-07-30 00:13:54','2006-02-15 22:13:54'), - (5056,186,2,9303,'2.99','2005-07-30 16:35:59','2006-02-15 22:13:54'), - (5057,186,2,9360,'5.99','2005-07-30 18:39:43','2006-02-15 22:13:54'), - (5058,186,1,10104,'1.99','2005-07-31 20:49:14','2006-02-15 22:13:54'), - (5059,186,1,10985,'0.99','2005-08-02 04:30:19','2006-02-15 22:13:54'), - (5060,186,1,11982,'0.99','2005-08-17 18:13:07','2006-02-15 22:13:54'), - (5061,186,1,12348,'5.99','2005-08-18 07:21:47','2006-02-15 22:13:54'), - (5062,186,1,12438,'8.99','2005-08-18 10:42:52','2006-02-15 22:13:54'), - (5063,186,1,13168,'6.99','2005-08-19 13:37:28','2006-02-15 22:13:54'), - (5064,186,2,13517,'4.99','2005-08-20 02:33:17','2006-02-15 22:13:54'), - (5065,186,1,13853,'3.99','2005-08-20 14:47:02','2006-02-15 22:13:54'), - (5066,186,1,14006,'2.99','2005-08-20 20:21:36','2006-02-15 22:13:54'), - (5067,186,2,14229,'4.99','2005-08-21 04:57:15','2006-02-15 22:13:54'), - (5068,186,2,14646,'4.99','2005-08-21 19:14:48','2006-02-15 22:13:54'), - (5069,186,2,14988,'3.99','2005-08-22 07:46:05','2006-02-15 22:13:54'), - (5070,186,2,15001,'0.99','2005-08-22 08:00:49','2006-02-15 22:13:54'), - (5071,186,2,15295,'3.99','2005-08-22 19:36:21','2006-02-15 22:13:54'), - (5072,186,1,15596,'0.99','2005-08-23 06:19:51','2006-02-15 22:13:54'), - (5073,186,1,14216,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:54'), - (5074,187,1,252,'7.99','2005-05-26 14:39:53','2006-02-15 22:13:54'), - (5075,187,2,1323,'6.99','2005-06-15 10:55:17','2006-02-15 22:13:54'), - (5076,187,2,1462,'4.99','2005-06-15 20:37:40','2006-02-15 22:13:54'), - (5077,187,2,1592,'0.99','2005-06-16 05:14:37','2006-02-15 22:13:54'), - (5078,187,2,2127,'0.99','2005-06-17 20:54:48','2006-02-15 22:13:54'), - (5079,187,2,2533,'0.99','2005-06-19 01:34:26','2006-02-15 22:13:54'), - (5080,187,1,2742,'5.99','2005-06-19 16:05:47','2006-02-15 22:13:54'), - (5081,187,1,3402,'2.99','2005-06-21 15:54:37','2006-02-15 22:13:54'), - (5082,187,2,3709,'10.99','2005-07-06 10:26:56','2006-02-15 22:13:54'), - (5083,187,1,4429,'4.99','2005-07-07 22:32:47','2006-02-15 22:13:54'), - (5084,187,2,5366,'0.99','2005-07-09 18:28:37','2006-02-15 22:13:54'), - (5085,187,1,5738,'8.99','2005-07-10 11:50:51','2006-02-15 22:13:54'), - (5086,187,2,5833,'6.99','2005-07-10 16:39:24','2006-02-15 22:13:54'), - (5087,187,1,6057,'3.99','2005-07-11 04:03:40','2006-02-15 22:13:54'), - (5088,187,2,6428,'2.99','2005-07-12 00:01:51','2006-02-15 22:13:54'), - (5089,187,2,7289,'4.99','2005-07-27 12:26:51','2006-02-15 22:13:55'), - (5090,187,2,7844,'7.99','2005-07-28 09:16:19','2006-02-15 22:13:55'), - (5091,187,2,7967,'7.99','2005-07-28 13:56:51','2006-02-15 22:13:55'), - (5092,187,1,9241,'2.99','2005-07-30 13:58:41','2006-02-15 22:13:55'), - (5093,187,1,11843,'2.99','2005-08-17 13:14:50','2006-02-15 22:13:55'), - (5094,187,2,12307,'8.99','2005-08-18 05:48:23','2006-02-15 22:13:55'), - (5095,187,2,12490,'9.99','2005-08-18 12:48:45','2006-02-15 22:13:55'), - (5096,187,1,12534,'7.99','2005-08-18 14:04:41','2006-02-15 22:13:55'), - (5097,187,2,13940,'8.99','2005-08-20 17:28:57','2006-02-15 22:13:55'), - (5098,187,2,14855,'8.99','2005-08-22 02:27:32','2006-02-15 22:13:55'), - (5099,187,2,15231,'4.99','2005-08-22 17:32:57','2006-02-15 22:13:55'), - (5100,187,2,15517,'2.99','2005-08-23 03:13:01','2006-02-15 22:13:55'), - (5101,187,2,15971,'7.99','2005-08-23 19:59:33','2006-02-15 22:13:55'), - (5102,188,2,1527,'2.99','2005-06-16 00:31:40','2006-02-15 22:13:55'), - (5103,188,2,1927,'0.99','2005-06-17 06:48:19','2006-02-15 22:13:55'), - (5104,188,1,2515,'4.99','2005-06-18 23:57:31','2006-02-15 22:13:55'), - (5105,188,2,2733,'4.99','2005-06-19 15:21:53','2006-02-15 22:13:55'), - (5106,188,2,3848,'3.99','2005-07-06 16:47:32','2006-02-15 22:13:55'), - (5107,188,2,4150,'2.99','2005-07-07 08:43:22','2006-02-15 22:13:55'), - (5108,188,2,5356,'2.99','2005-07-09 18:08:28','2006-02-15 22:13:55'), - (5109,188,2,5729,'5.99','2005-07-10 11:27:25','2006-02-15 22:13:55'), - (5110,188,2,6555,'4.99','2005-07-12 05:08:16','2006-02-15 22:13:55'), - (5111,188,2,7042,'0.99','2005-07-27 03:20:18','2006-02-15 22:13:55'), - (5112,188,1,7556,'4.99','2005-07-27 22:17:17','2006-02-15 22:13:55'), - (5113,188,2,9613,'4.99','2005-07-31 03:58:53','2006-02-15 22:13:55'), - (5114,188,2,10453,'5.99','2005-08-01 09:13:27','2006-02-15 22:13:55'), - (5115,188,1,10494,'0.99','2005-08-01 10:45:21','2006-02-15 22:13:55'), - (5116,188,2,10719,'4.99','2005-08-01 19:00:28','2006-02-15 22:13:55'), - (5117,188,2,10757,'4.99','2005-08-01 20:22:44','2006-02-15 22:13:55'), - (5118,188,2,11378,'2.99','2005-08-02 18:16:52','2006-02-15 22:13:55'), - (5119,188,1,13570,'2.99','2005-08-20 05:04:57','2006-02-15 22:13:55'), - (5120,188,1,13787,'5.99','2005-08-20 12:15:23','2006-02-15 22:13:55'), - (5121,188,1,14399,'2.99','2005-08-21 10:33:23','2006-02-15 22:13:55'), - (5122,188,2,14809,'2.99','2005-08-22 01:00:42','2006-02-15 22:13:55'), - (5123,188,2,15319,'2.99','2005-08-22 20:17:17','2006-02-15 22:13:55'), - (5124,188,2,15409,'0.99','2005-08-22 23:26:32','2006-02-15 22:13:55'), - (5125,188,2,15474,'4.99','2005-08-23 01:39:10','2006-02-15 22:13:55'), - (5126,188,1,14503,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:56'), - (5127,189,2,1117,'5.99','2005-05-31 16:15:31','2006-02-15 22:13:56'), - (5128,189,1,1541,'0.99','2005-06-16 01:15:59','2006-02-15 22:13:56'), - (5129,189,1,1834,'0.99','2005-06-16 22:49:08','2006-02-15 22:13:56'), - (5130,189,2,2905,'1.99','2005-06-20 02:56:16','2006-02-15 22:13:56'), - (5131,189,1,3108,'6.99','2005-06-20 17:28:43','2006-02-15 22:13:56'), - (5132,189,1,3346,'2.99','2005-06-21 11:06:53','2006-02-15 22:13:56'), - (5133,189,1,3763,'0.99','2005-07-06 12:56:31','2006-02-15 22:13:56'), - (5134,189,2,3813,'4.99','2005-07-06 15:23:34','2006-02-15 22:13:56'), - (5135,189,2,4203,'0.99','2005-07-07 11:24:14','2006-02-15 22:13:56'), - (5136,189,1,6193,'5.99','2005-07-11 11:46:57','2006-02-15 22:13:56'), - (5137,189,1,7469,'4.99','2005-07-27 18:57:40','2006-02-15 22:13:56'), - (5138,189,1,7675,'4.99','2005-07-28 02:55:20','2006-02-15 22:13:56'), - (5139,189,2,7790,'2.99','2005-07-28 07:22:35','2006-02-15 22:13:56'), - (5140,189,2,9171,'5.99','2005-07-30 11:36:24','2006-02-15 22:13:56'), - (5141,189,2,9386,'0.99','2005-07-30 19:26:21','2006-02-15 22:13:56'), - (5142,189,1,9506,'4.99','2005-07-31 00:19:01','2006-02-15 22:13:56'), - (5143,189,1,10247,'9.99','2005-08-01 02:34:06','2006-02-15 22:13:56'), - (5144,189,2,11059,'6.99','2005-08-02 06:41:38','2006-02-15 22:13:56'), - (5145,189,2,13601,'6.99','2005-08-20 06:01:15','2006-02-15 22:13:56'), - (5146,189,1,13766,'3.99','2005-08-20 11:42:01','2006-02-15 22:13:56'), - (5147,189,1,15773,'1.99','2005-08-23 13:24:57','2006-02-15 22:13:56'), - (5148,189,1,16008,'5.99','2005-08-23 21:04:51','2006-02-15 22:13:56'), - (5149,190,2,430,'4.99','2005-05-27 16:22:10','2006-02-15 22:13:56'), - (5150,190,1,693,'2.99','2005-05-29 01:42:31','2006-02-15 22:13:56'), - (5151,190,1,1319,'2.99','2005-06-15 10:39:05','2006-02-15 22:13:56'), - (5152,190,1,1347,'2.99','2005-06-15 12:43:43','2006-02-15 22:13:56'), - (5153,190,1,2057,'4.99','2005-06-17 15:31:58','2006-02-15 22:13:56'), - (5154,190,1,2568,'3.99','2005-06-19 04:09:03','2006-02-15 22:13:56'), - (5155,190,1,3386,'4.99','2005-06-21 14:21:06','2006-02-15 22:13:56'), - (5156,190,2,4005,'5.99','2005-07-07 00:22:26','2006-02-15 22:13:56'), - (5157,190,1,4140,'2.99','2005-07-07 08:19:10','2006-02-15 22:13:56'), - (5158,190,2,6867,'3.99','2005-07-12 20:06:47','2006-02-15 22:13:56'), - (5159,190,1,7175,'4.99','2005-07-27 08:03:22','2006-02-15 22:13:56'), - (5160,190,1,7386,'5.99','2005-07-27 15:52:10','2006-02-15 22:13:56'), - (5161,190,2,7404,'2.99','2005-07-27 16:24:43','2006-02-15 22:13:56'), - (5162,190,1,8498,'0.99','2005-07-29 09:07:38','2006-02-15 22:13:57'), - (5163,190,1,11082,'5.99','2005-08-02 07:30:19','2006-02-15 22:13:57'), - (5164,190,2,11158,'6.99','2005-08-02 09:58:28','2006-02-15 22:13:57'), - (5165,190,2,11276,'4.99','2005-08-02 14:28:46','2006-02-15 22:13:57'), - (5166,190,2,11312,'6.99','2005-08-02 15:56:51','2006-02-15 22:13:57'), - (5167,190,2,11750,'0.99','2005-08-17 09:07:00','2006-02-15 22:13:57'), - (5168,190,2,11950,'9.99','2005-08-17 17:13:16','2006-02-15 22:13:57'), - (5169,190,1,12270,'2.99','2005-08-18 04:32:05','2006-02-15 22:13:57'), - (5170,190,2,12381,'0.99','2005-08-18 08:31:43','2006-02-15 22:13:57'), - (5171,190,2,14065,'0.99','2005-08-20 22:40:47','2006-02-15 22:13:57'), - (5172,190,2,14141,'4.99','2005-08-21 02:07:22','2006-02-15 22:13:57'), - (5173,190,2,14166,'2.99','2005-08-21 02:59:31','2006-02-15 22:13:57'), - (5174,190,2,14650,'0.99','2005-08-21 19:24:51','2006-02-15 22:13:57'), - (5175,190,2,15167,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:57'), - (5176,191,1,1134,'2.99','2005-05-31 19:14:15','2006-02-15 22:13:57'), - (5177,191,2,1152,'4.99','2005-05-31 21:32:17','2006-02-15 22:13:57'), - (5178,191,2,1173,'2.99','2005-06-14 23:54:46','2006-02-15 22:13:57'), - (5179,191,1,1278,'0.99','2005-06-15 08:09:12','2006-02-15 22:13:57'), - (5180,191,1,1677,'2.99','2005-06-16 11:07:11','2006-02-15 22:13:57'), - (5181,191,2,1870,'2.99','2005-06-17 02:24:36','2006-02-15 22:13:57'), - (5182,191,1,2051,'4.99','2005-06-17 15:10:16','2006-02-15 22:13:57'), - (5183,191,2,2555,'2.99','2005-06-19 03:07:02','2006-02-15 22:13:57'), - (5184,191,1,5338,'2.99','2005-07-09 17:07:07','2006-02-15 22:13:57'), - (5185,191,2,5397,'5.99','2005-07-09 19:43:51','2006-02-15 22:13:57'), - (5186,191,1,5924,'5.99','2005-07-10 21:41:23','2006-02-15 22:13:57'), - (5187,191,1,7150,'6.99','2005-07-27 07:11:14','2006-02-15 22:13:57'), - (5188,191,1,7450,'3.99','2005-07-27 18:18:35','2006-02-15 22:13:57'), - (5189,191,1,7520,'2.99','2005-07-27 21:02:02','2006-02-15 22:13:57'), - (5190,191,2,8583,'0.99','2005-07-29 12:04:50','2006-02-15 22:13:57'), - (5191,191,1,9297,'4.99','2005-07-30 16:26:29','2006-02-15 22:13:57'), - (5192,191,1,9964,'4.99','2005-07-31 16:17:39','2006-02-15 22:13:57'), - (5193,191,2,10532,'2.99','2005-08-01 12:06:35','2006-02-15 22:13:57'), - (5194,191,2,15375,'4.99','2005-08-22 22:12:02','2006-02-15 22:13:57'), - (5195,191,1,14361,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:57'), - (5196,192,1,895,'1.99','2005-05-30 08:50:43','2006-02-15 22:13:57'), - (5197,192,1,2760,'3.99','2005-06-19 17:16:33','2006-02-15 22:13:57'), - (5198,192,1,3902,'2.99','2005-07-06 19:25:18','2006-02-15 22:13:57'), - (5199,192,1,4469,'4.99','2005-07-08 00:18:32','2006-02-15 22:13:57'), - (5200,192,1,5400,'2.99','2005-07-09 19:56:40','2006-02-15 22:13:58'), - (5201,192,2,6223,'0.99','2005-07-11 13:27:09','2006-02-15 22:13:58'), - (5202,192,2,6691,'0.99','2005-07-12 12:26:38','2006-02-15 22:13:58'), - (5203,192,2,7147,'2.99','2005-07-27 07:02:34','2006-02-15 22:13:58'), - (5204,192,2,8051,'0.99','2005-07-28 16:56:16','2006-02-15 22:13:58'), - (5205,192,2,8292,'7.99','2005-07-29 02:29:36','2006-02-15 22:13:58'), - (5206,192,1,9462,'7.99','2005-07-30 22:30:44','2006-02-15 22:13:58'), - (5207,192,1,9831,'2.99','2005-07-31 11:59:32','2006-02-15 22:13:58'), - (5208,192,2,10238,'0.99','2005-08-01 02:08:05','2006-02-15 22:13:58'), - (5209,192,1,10843,'7.99','2005-08-01 23:43:03','2006-02-15 22:13:58'), - (5210,192,1,11385,'4.99','2005-08-02 18:23:11','2006-02-15 22:13:58'), - (5211,192,1,11815,'4.99','2005-08-17 12:13:26','2006-02-15 22:13:58'), - (5212,192,1,13125,'5.99','2005-08-19 11:57:49','2006-02-15 22:13:58'), - (5213,192,2,14146,'4.99','2005-08-21 02:13:31','2006-02-15 22:13:58'), - (5214,192,2,14238,'7.99','2005-08-21 05:16:40','2006-02-15 22:13:58'), - (5215,192,1,14404,'4.99','2005-08-21 10:43:04','2006-02-15 22:13:58'), - (5216,192,2,14692,'6.99','2005-08-21 20:43:21','2006-02-15 22:13:58'), - (5217,192,2,15855,'2.99','2005-08-23 15:59:01','2006-02-15 22:13:58'), - (5218,192,1,11611,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:58'), - (5219,193,2,273,'2.99','2005-05-26 16:29:36','2006-02-15 22:13:58'), - (5220,193,2,464,'0.99','2005-05-27 20:42:44','2006-02-15 22:13:58'), - (5221,193,1,1325,'4.99','2005-06-15 11:03:24','2006-02-15 22:13:58'), - (5222,193,2,2377,'6.99','2005-06-18 14:56:23','2006-02-15 22:13:58'), - (5223,193,2,2841,'6.99','2005-06-19 22:21:06','2006-02-15 22:13:58'), - (5224,193,2,2846,'4.99','2005-06-19 22:52:14','2006-02-15 22:13:58'), - (5225,193,2,2880,'2.99','2005-06-20 01:24:54','2006-02-15 22:13:58'), - (5226,193,1,3297,'8.99','2005-06-21 07:08:19','2006-02-15 22:13:58'), - (5227,193,1,4892,'6.99','2005-07-08 20:06:25','2006-02-15 22:13:58'), - (5228,193,1,8211,'2.99','2005-07-28 23:34:22','2006-02-15 22:13:58'), - (5229,193,1,8379,'4.99','2005-07-29 05:29:40','2006-02-15 22:13:58'), - (5230,193,1,8431,'4.99','2005-07-29 07:12:48','2006-02-15 22:13:58'), - (5231,193,1,9079,'2.99','2005-07-30 08:02:00','2006-02-15 22:13:58'), - (5232,193,1,9575,'4.99','2005-07-31 02:51:53','2006-02-15 22:13:58'), - (5233,193,2,10462,'2.99','2005-08-01 09:38:28','2006-02-15 22:13:58'), - (5234,193,2,12384,'0.99','2005-08-18 08:36:58','2006-02-15 22:13:58'), - (5235,193,2,12658,'4.99','2005-08-18 19:05:42','2006-02-15 22:13:58'), - (5236,193,1,13529,'2.99','2005-08-20 03:07:47','2006-02-15 22:13:58'), - (5237,193,1,13608,'0.99','2005-08-20 06:10:44','2006-02-15 22:13:59'), - (5238,193,1,14679,'2.99','2005-08-21 20:14:58','2006-02-15 22:13:59'), - (5239,193,1,14927,'4.99','2005-08-22 05:31:53','2006-02-15 22:13:59'), - (5240,193,2,15164,'4.99','2005-08-22 14:47:53','2006-02-15 22:13:59'), - (5241,193,2,15344,'6.99','2005-08-22 21:01:48','2006-02-15 22:13:59'), - (5242,193,2,15495,'5.99','2005-08-23 02:26:10','2006-02-15 22:13:59'), - (5243,193,2,15729,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:59'), - (5244,194,2,334,'4.99','2005-05-27 03:03:07','2006-02-15 22:13:59'), - (5245,194,2,677,'7.99','2005-05-28 23:00:08','2006-02-15 22:13:59'), - (5246,194,1,1430,'0.99','2005-06-15 18:24:55','2006-02-15 22:13:59'), - (5247,194,1,2245,'7.99','2005-06-18 04:52:59','2006-02-15 22:13:59'), - (5248,194,1,2347,'2.99','2005-06-18 12:12:29','2006-02-15 22:13:59'), - (5249,194,1,2463,'3.99','2005-06-18 20:01:43','2006-02-15 22:13:59'), - (5250,194,1,2807,'3.99','2005-06-19 19:32:53','2006-02-15 22:13:59'), - (5251,194,2,4231,'7.99','2005-07-07 12:48:19','2006-02-15 22:13:59'), - (5252,194,2,5146,'2.99','2005-07-09 08:14:58','2006-02-15 22:13:59'), - (5253,194,1,5291,'2.99','2005-07-09 15:15:02','2006-02-15 22:13:59'), - (5254,194,2,5894,'3.99','2005-07-10 20:09:34','2006-02-15 22:13:59'), - (5255,194,1,9064,'7.99','2005-07-30 07:24:55','2006-02-15 22:13:59'), - (5256,194,2,11475,'5.99','2005-08-02 21:55:09','2006-02-15 22:13:59'), - (5257,194,2,12851,'3.99','2005-08-19 02:12:12','2006-02-15 22:13:59'), - (5258,194,1,13515,'0.99','2005-08-20 02:29:47','2006-02-15 22:13:59'), - (5259,194,2,13616,'7.99','2005-08-20 06:30:33','2006-02-15 22:13:59'), - (5260,194,1,14440,'4.99','2005-08-21 11:59:04','2006-02-15 22:13:59'), - (5261,194,2,15937,'4.99','2005-08-23 18:43:22','2006-02-15 22:13:59'), - (5262,195,1,4234,'6.99','2005-07-07 13:01:35','2006-02-15 22:13:59'), - (5263,195,1,4315,'2.99','2005-07-07 17:40:26','2006-02-15 22:13:59'), - (5264,195,1,5228,'4.99','2005-07-09 12:26:01','2006-02-15 22:13:59'), - (5265,195,1,5536,'0.99','2005-07-10 02:29:42','2006-02-15 22:13:59'), - (5266,195,2,6175,'4.99','2005-07-11 10:44:37','2006-02-15 22:13:59'), - (5267,195,1,7349,'2.99','2005-07-27 14:33:00','2006-02-15 22:13:59'), - (5268,195,2,8280,'4.99','2005-07-29 01:45:51','2006-02-15 22:13:59'), - (5269,195,2,8479,'0.99','2005-07-29 08:42:04','2006-02-15 22:13:59'), - (5270,195,2,9188,'6.99','2005-07-30 12:19:54','2006-02-15 22:13:59'), - (5271,195,1,9870,'5.99','2005-07-31 13:22:51','2006-02-15 22:13:59'), - (5272,195,1,9994,'4.99','2005-07-31 17:30:31','2006-02-15 22:13:59'), - (5273,195,2,10911,'4.99','2005-08-02 01:58:36','2006-02-15 22:14:00'), - (5274,195,1,11201,'7.99','2005-08-02 11:49:16','2006-02-15 22:14:00'), - (5275,195,2,11787,'2.99','2005-08-17 10:59:00','2006-02-15 22:14:00'), - (5276,195,2,12099,'0.99','2005-08-17 22:38:54','2006-02-15 22:14:00'), - (5277,195,2,12941,'0.99','2005-08-19 05:39:26','2006-02-15 22:14:00'), - (5278,195,2,13741,'0.99','2005-08-20 10:48:47','2006-02-15 22:14:00'), - (5279,195,2,14751,'7.99','2005-08-21 23:11:23','2006-02-15 22:14:00'), - (5280,195,2,16040,'11.99','2005-08-23 22:19:33','2006-02-15 22:14:00'), - (5281,196,2,106,'11.99','2005-05-25 18:18:19','2006-02-15 22:14:00'), - (5282,196,2,178,'5.99','2005-05-26 04:21:46','2006-02-15 22:14:00'), - (5283,196,2,491,'2.99','2005-05-28 00:13:35','2006-02-15 22:14:00'), - (5284,196,1,1053,'1.99','2005-05-31 07:12:44','2006-02-15 22:14:00'), - (5285,196,1,1182,'5.99','2005-06-15 00:45:21','2006-02-15 22:14:00'), - (5286,196,1,1348,'2.99','2005-06-15 12:45:30','2006-02-15 22:14:00'), - (5287,196,2,1600,'0.99','2005-06-16 06:04:12','2006-02-15 22:14:00'), - (5288,196,1,2681,'0.99','2005-06-19 12:15:27','2006-02-15 22:14:00'), - (5289,196,2,2912,'4.99','2005-06-20 03:32:45','2006-02-15 22:14:00'), - (5290,196,1,3104,'4.99','2005-06-20 17:06:46','2006-02-15 22:14:00'), - (5291,196,2,3271,'5.99','2005-06-21 05:16:10','2006-02-15 22:14:00'), - (5292,196,2,3342,'4.99','2005-06-21 10:46:36','2006-02-15 22:14:00'), - (5293,196,1,4879,'2.99','2005-07-08 19:34:55','2006-02-15 22:14:00'), - (5294,196,2,4999,'4.99','2005-07-09 01:12:57','2006-02-15 22:14:00'), - (5295,196,2,5143,'4.99','2005-07-09 08:07:07','2006-02-15 22:14:00'), - (5296,196,2,5353,'3.99','2005-07-09 18:04:29','2006-02-15 22:14:00'), - (5297,196,2,5768,'4.99','2005-07-10 13:15:26','2006-02-15 22:14:00'), - (5298,196,2,6857,'4.99','2005-07-12 19:53:30','2006-02-15 22:14:00'), - (5299,196,2,7666,'3.99','2005-07-28 02:35:12','2006-02-15 22:14:00'), - (5300,196,2,8266,'0.99','2005-07-29 01:20:16','2006-02-15 22:14:00'), - (5301,196,2,8472,'1.99','2005-07-29 08:36:22','2006-02-15 22:14:00'), - (5302,196,2,8700,'0.99','2005-07-29 16:56:01','2006-02-15 22:14:00'), - (5303,196,1,9346,'5.99','2005-07-30 18:13:52','2006-02-15 22:14:00'), - (5304,196,1,9721,'6.99','2005-07-31 08:28:46','2006-02-15 22:14:00'), - (5305,196,1,9804,'4.99','2005-07-31 11:07:39','2006-02-15 22:14:00'), - (5306,196,2,10122,'10.99','2005-07-31 21:29:28','2006-02-15 22:14:00'), - (5307,196,1,10191,'4.99','2005-08-01 00:28:38','2006-02-15 22:14:00'), - (5308,196,1,11104,'2.99','2005-08-02 08:09:58','2006-02-15 22:14:01'), - (5309,196,2,12430,'0.99','2005-08-18 10:32:41','2006-02-15 22:14:01'), - (5310,196,2,12684,'0.99','2005-08-18 19:51:27','2006-02-15 22:14:01'), - (5311,196,2,12836,'0.99','2005-08-19 01:48:33','2006-02-15 22:14:01'), - (5312,196,1,13799,'8.99','2005-08-20 12:36:42','2006-02-15 22:14:01'), - (5313,196,2,14410,'5.99','2005-08-21 10:54:49','2006-02-15 22:14:01'), - (5314,196,1,14698,'5.99','2005-08-21 20:49:58','2006-02-15 22:14:01'), - (5315,196,2,15980,'0.99','2005-08-23 20:10:13','2006-02-15 22:14:01'), - (5316,197,2,94,'2.99','2005-05-25 16:03:42','2006-02-15 22:14:01'), - (5317,197,1,215,'0.99','2005-05-26 09:02:47','2006-02-15 22:14:01'), - (5318,197,1,391,'2.99','2005-05-27 11:03:55','2006-02-15 22:14:01'), - (5319,197,2,649,'1.99','2005-05-28 19:35:45','2006-02-15 22:14:01'), - (5320,197,1,683,'2.99','2005-05-29 00:09:48','2006-02-15 22:14:01'), - (5321,197,2,730,'3.99','2005-05-29 07:00:59','2006-02-15 22:14:01'), - (5322,197,1,903,'3.99','2005-05-30 10:11:29','2006-02-15 22:14:01'), - (5323,197,1,918,'0.99','2005-05-30 11:32:24','2006-02-15 22:14:01'), - (5324,197,2,1175,'2.99','2005-06-15 00:15:15','2006-02-15 22:14:01'), - (5325,197,1,1363,'0.99','2005-06-15 14:05:11','2006-02-15 22:14:01'), - (5326,197,1,1503,'2.99','2005-06-15 22:07:09','2006-02-15 22:14:01'), - (5327,197,2,1605,'8.99','2005-06-16 06:17:55','2006-02-15 22:14:01'), - (5328,197,2,1919,'4.99','2005-06-17 05:40:52','2006-02-15 22:14:01'), - (5329,197,1,2090,'2.99','2005-06-17 18:06:14','2006-02-15 22:14:01'), - (5330,197,1,2750,'4.99','2005-06-19 16:37:24','2006-02-15 22:14:01'), - (5331,197,2,2781,'2.99','2005-06-19 18:24:42','2006-02-15 22:14:01'), - (5332,197,1,4486,'8.99','2005-07-08 01:09:09','2006-02-15 22:14:01'), - (5333,197,2,4739,'4.99','2005-07-08 13:25:57','2006-02-15 22:14:01'), - (5334,197,2,5182,'6.99','2005-07-09 10:08:10','2006-02-15 22:14:01'), - (5335,197,2,5344,'0.99','2005-07-09 17:27:05','2006-02-15 22:14:01'), - (5336,197,1,8165,'2.99','2005-07-28 21:23:06','2006-02-15 22:14:01'), - (5337,197,2,9378,'4.99','2005-07-30 19:12:54','2006-02-15 22:14:01'), - (5338,197,1,9476,'0.99','2005-07-30 23:06:40','2006-02-15 22:14:01'), - (5339,197,2,9585,'4.99','2005-07-31 03:05:55','2006-02-15 22:14:01'), - (5340,197,2,10460,'3.99','2005-08-01 09:31:00','2006-02-15 22:14:01'), - (5341,197,2,10666,'0.99','2005-08-01 16:56:36','2006-02-15 22:14:01'), - (5342,197,2,10739,'4.99','2005-08-01 19:46:11','2006-02-15 22:14:01'), - (5343,197,1,10743,'2.99','2005-08-01 19:55:09','2006-02-15 22:14:01'), - (5344,197,1,11018,'4.99','2005-08-02 05:27:53','2006-02-15 22:14:02'), - (5345,197,1,11215,'4.99','2005-08-02 12:20:42','2006-02-15 22:14:02'), - (5346,197,1,11311,'4.99','2005-08-02 15:53:48','2006-02-15 22:14:02'), - (5347,197,1,11478,'2.99','2005-08-02 22:09:05','2006-02-15 22:14:02'), - (5348,197,1,11643,'1.99','2005-08-17 04:49:35','2006-02-15 22:14:02'), - (5349,197,1,12799,'0.99','2005-08-19 00:27:01','2006-02-15 22:14:02'), - (5350,197,2,13913,'3.99','2005-08-20 16:37:35','2006-02-15 22:14:02'), - (5351,197,1,14069,'9.99','2005-08-20 22:51:25','2006-02-15 22:14:02'), - (5352,197,2,14951,'4.99','2005-08-22 06:19:37','2006-02-15 22:14:02'), - (5353,197,1,15078,'2.99','2005-08-22 11:09:31','2006-02-15 22:14:02'), - (5354,197,2,15233,'0.99','2005-08-22 17:41:53','2006-02-15 22:14:02'), - (5355,197,1,15540,'8.99','2005-08-23 04:12:52','2006-02-15 22:14:02'), - (5356,198,1,357,'0.99','2005-05-27 06:37:15','2006-02-15 22:14:02'), - (5357,198,1,582,'4.99','2005-05-28 11:33:46','2006-02-15 22:14:02'), - (5358,198,2,639,'2.99','2005-05-28 18:25:02','2006-02-15 22:14:02'), - (5359,198,1,932,'2.99','2005-05-30 12:55:36','2006-02-15 22:14:02'), - (5360,198,2,1132,'4.99','2005-05-31 18:44:53','2006-02-15 22:14:02'), - (5361,198,2,2185,'0.99','2005-06-18 01:12:22','2006-02-15 22:14:02'), - (5362,198,2,3770,'2.99','2005-07-06 13:14:28','2006-02-15 22:14:02'), - (5363,198,2,4588,'2.99','2005-07-08 06:18:01','2006-02-15 22:14:02'), - (5364,198,2,4750,'0.99','2005-07-08 14:07:03','2006-02-15 22:14:02'), - (5365,198,2,5794,'4.99','2005-07-10 14:34:53','2006-02-15 22:14:02'), - (5366,198,2,6567,'4.99','2005-07-12 05:43:09','2006-02-15 22:14:02'), - (5367,198,1,6819,'4.99','2005-07-12 18:21:01','2006-02-15 22:14:02'), - (5368,198,2,6889,'4.99','2005-07-12 21:01:22','2006-02-15 22:14:02'), - (5369,198,1,7287,'0.99','2005-07-27 12:24:12','2006-02-15 22:14:02'), - (5370,198,1,7441,'5.99','2005-07-27 17:46:53','2006-02-15 22:14:02'), - (5371,198,1,7583,'2.99','2005-07-27 23:15:22','2006-02-15 22:14:02'), - (5372,198,2,7622,'0.99','2005-07-28 00:37:34','2006-02-15 22:14:02'), - (5373,198,1,8145,'5.99','2005-07-28 20:34:41','2006-02-15 22:14:02'), - (5374,198,2,9389,'0.99','2005-07-30 19:27:59','2006-02-15 22:14:02'), - (5375,198,1,10112,'4.99','2005-07-31 21:08:56','2006-02-15 22:14:02'), - (5376,198,1,10147,'2.99','2005-07-31 22:18:43','2006-02-15 22:14:02'), - (5377,198,1,10679,'0.99','2005-08-01 17:27:58','2006-02-15 22:14:02'), - (5378,198,1,11351,'3.99','2005-08-02 17:28:07','2006-02-15 22:14:02'), - (5379,198,1,11594,'6.99','2005-08-17 02:47:02','2006-02-15 22:14:02'), - (5380,198,1,11756,'2.99','2005-08-17 09:29:22','2006-02-15 22:14:03'), - (5381,198,1,11836,'4.99','2005-08-17 13:03:36','2006-02-15 22:14:03'), - (5382,198,2,11949,'2.99','2005-08-17 17:12:26','2006-02-15 22:14:03'), - (5383,198,1,11957,'1.99','2005-08-17 17:22:29','2006-02-15 22:14:03'), - (5384,198,2,11985,'2.99','2005-08-17 18:19:44','2006-02-15 22:14:03'), - (5385,198,2,12594,'4.99','2005-08-18 16:24:24','2006-02-15 22:14:03'), - (5386,198,1,12862,'5.99','2005-08-19 02:31:59','2006-02-15 22:14:03'), - (5387,198,1,13768,'5.99','2005-08-20 11:43:43','2006-02-15 22:14:03'), - (5388,198,1,14214,'5.99','2005-08-21 04:30:49','2006-02-15 22:14:03'), - (5389,198,2,14380,'2.99','2005-08-21 09:53:52','2006-02-15 22:14:03'), - (5390,198,2,14990,'4.99','2005-08-22 07:48:01','2006-02-15 22:14:03'), - (5391,198,1,15256,'6.99','2005-08-22 18:20:07','2006-02-15 22:14:03'), - (5392,198,1,15433,'4.99','2005-08-23 00:27:18','2006-02-15 22:14:03'), - (5393,199,1,499,'7.99','2005-05-28 01:05:07','2006-02-15 22:14:03'), - (5394,199,1,1406,'4.99','2005-06-15 16:44:00','2006-02-15 22:14:03'), - (5395,199,1,1910,'2.99','2005-06-17 05:11:27','2006-02-15 22:14:03'), - (5396,199,1,3299,'0.99','2005-06-21 07:23:34','2006-02-15 22:14:03'), - (5397,199,1,4499,'2.99','2005-07-08 02:08:48','2006-02-15 22:14:03'), - (5398,199,2,4580,'8.99','2005-07-08 06:04:23','2006-02-15 22:14:03'), - (5399,199,1,4976,'4.99','2005-07-09 00:03:30','2006-02-15 22:14:03'), - (5400,199,2,5398,'2.99','2005-07-09 19:44:58','2006-02-15 22:14:03'), - (5401,199,2,5680,'5.99','2005-07-10 08:47:36','2006-02-15 22:14:03'), - (5402,199,2,6668,'2.99','2005-07-12 11:37:45','2006-02-15 22:14:03'), - (5403,199,2,6782,'4.99','2005-07-12 16:23:25','2006-02-15 22:14:03'), - (5404,199,1,7782,'4.99','2005-07-28 07:13:40','2006-02-15 22:14:03'), - (5405,199,1,8709,'0.99','2005-07-29 17:25:54','2006-02-15 22:14:03'), - (5406,199,1,9752,'2.99','2005-07-31 09:22:02','2006-02-15 22:14:03'), - (5407,199,2,9894,'4.99','2005-07-31 14:07:44','2006-02-15 22:14:03'), - (5408,199,1,9959,'4.99','2005-07-31 16:04:22','2006-02-15 22:14:03'), - (5409,199,1,10196,'2.99','2005-08-01 00:34:51','2006-02-15 22:14:03'), - (5410,199,2,10517,'4.99','2005-08-01 11:41:57','2006-02-15 22:14:03'), - (5411,199,1,10850,'8.99','2005-08-01 23:53:45','2006-02-15 22:14:03'), - (5412,199,1,11454,'2.99','2005-08-02 21:04:39','2006-02-15 22:14:03'), - (5413,199,1,12386,'0.99','2005-08-18 08:45:57','2006-02-15 22:14:03'), - (5414,199,2,14320,'4.99','2005-08-21 08:04:40','2006-02-15 22:14:03'), - (5415,199,2,15412,'0.99','2005-08-22 23:37:11','2006-02-15 22:14:03'), - (5416,199,2,15751,'3.99','2005-08-23 12:41:07','2006-02-15 22:14:04'), - (5417,199,2,13952,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:04'), - (5418,200,2,270,'9.99','2005-05-26 16:20:56','2006-02-15 22:14:04'), - (5419,200,2,1296,'1.99','2005-06-15 09:23:59','2006-02-15 22:14:04'), - (5420,200,2,1309,'4.99','2005-06-15 10:10:49','2006-02-15 22:14:04'), - (5421,200,2,1899,'6.99','2005-06-17 04:29:15','2006-02-15 22:14:04'), - (5422,200,1,2227,'4.99','2005-06-18 03:43:23','2006-02-15 22:14:04'), - (5423,200,2,2667,'3.99','2005-06-19 11:28:46','2006-02-15 22:14:04'), - (5424,200,2,2717,'4.99','2005-06-19 14:46:10','2006-02-15 22:14:04'), - (5425,200,1,3190,'3.99','2005-06-20 23:27:15','2006-02-15 22:14:04'), - (5426,200,1,3580,'4.99','2005-07-06 03:48:44','2006-02-15 22:14:04'), - (5427,200,1,5110,'2.99','2005-07-09 06:57:25','2006-02-15 22:14:04'), - (5428,200,1,6123,'0.99','2005-07-11 08:02:27','2006-02-15 22:14:04'), - (5429,200,2,6167,'2.99','2005-07-11 10:21:21','2006-02-15 22:14:04'), - (5430,200,1,6181,'4.99','2005-07-11 11:10:11','2006-02-15 22:14:04'), - (5431,200,1,6947,'3.99','2005-07-26 23:42:03','2006-02-15 22:14:04'), - (5432,200,1,7574,'2.99','2005-07-27 22:53:00','2006-02-15 22:14:04'), - (5433,200,2,8368,'3.99','2005-07-29 05:15:41','2006-02-15 22:14:04'), - (5434,200,2,8462,'2.99','2005-07-29 08:15:42','2006-02-15 22:14:04'), - (5435,200,1,9527,'6.99','2005-07-31 01:02:24','2006-02-15 22:14:04'), - (5436,200,1,10685,'2.99','2005-08-01 17:49:38','2006-02-15 22:14:04'), - (5437,200,1,11356,'8.99','2005-08-02 17:42:40','2006-02-15 22:14:04'), - (5438,200,1,13737,'5.99','2005-08-20 10:41:50','2006-02-15 22:14:04'), - (5439,200,1,14034,'10.99','2005-08-20 21:31:52','2006-02-15 22:14:04'), - (5440,200,2,14521,'6.99','2005-08-21 15:01:32','2006-02-15 22:14:04'), - (5441,200,2,15691,'4.99','2005-08-23 09:53:54','2006-02-15 22:14:04'), - (5442,200,2,15742,'5.99','2005-08-23 12:11:37','2006-02-15 22:14:04'), - (5443,200,1,15961,'6.99','2005-08-23 19:35:42','2006-02-15 22:14:04'), - (5444,200,2,11866,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:04'), - (5445,201,1,311,'3.99','2005-05-26 22:51:37','2006-02-15 22:14:04'), - (5446,201,1,670,'6.99','2005-05-28 22:04:03','2006-02-15 22:14:04'), - (5447,201,2,756,'5.99','2005-05-29 10:28:45','2006-02-15 22:14:04'), - (5448,201,1,2047,'1.99','2005-06-17 14:40:58','2006-02-15 22:14:04'), - (5449,201,1,2157,'3.99','2005-06-17 23:30:52','2006-02-15 22:14:04'), - (5450,201,2,2359,'6.99','2005-06-18 13:04:42','2006-02-15 22:14:04'), - (5451,201,1,3106,'4.99','2005-06-20 17:18:06','2006-02-15 22:14:04'), - (5452,201,1,3364,'7.99','2005-06-21 12:37:46','2006-02-15 22:14:05'), - (5453,201,2,3528,'4.99','2005-07-06 01:13:27','2006-02-15 22:14:05'), - (5454,201,2,3708,'6.99','2005-07-06 10:23:27','2006-02-15 22:14:05'), - (5455,201,1,7106,'0.99','2005-07-27 05:21:24','2006-02-15 22:14:05'), - (5456,201,2,7606,'2.99','2005-07-28 00:02:15','2006-02-15 22:14:05'), - (5457,201,2,9355,'0.99','2005-07-30 18:35:25','2006-02-15 22:14:05'), - (5458,201,2,10750,'5.99','2005-08-01 20:06:00','2006-02-15 22:14:05'), - (5459,201,2,10865,'3.99','2005-08-02 00:22:46','2006-02-15 22:14:05'), - (5460,201,1,10891,'0.99','2005-08-02 01:09:55','2006-02-15 22:14:05'), - (5461,201,2,11807,'0.99','2005-08-17 11:51:15','2006-02-15 22:14:05'), - (5462,201,2,13076,'4.99','2005-08-19 10:10:26','2006-02-15 22:14:05'), - (5463,201,2,13613,'9.99','2005-08-20 06:23:53','2006-02-15 22:14:05'), - (5464,201,2,13671,'3.99','2005-08-20 08:27:03','2006-02-15 22:14:05'), - (5465,201,2,13672,'2.99','2005-08-20 08:27:27','2006-02-15 22:14:05'), - (5466,201,2,14656,'2.99','2005-08-21 19:39:28','2006-02-15 22:14:05'), - (5467,201,1,14973,'2.99','2005-08-22 06:59:28','2006-02-15 22:14:05'), - (5468,201,1,15887,'2.99','2005-08-23 16:54:09','2006-02-15 22:14:05'), - (5469,201,2,15974,'5.99','2005-08-23 20:06:04','2006-02-15 22:14:05'), - (5470,202,1,1474,'2.99','2005-06-15 20:55:42','2006-02-15 22:14:05'), - (5471,202,1,1535,'4.99','2005-06-16 00:52:04','2006-02-15 22:14:05'), - (5472,202,1,3008,'0.99','2005-06-20 10:23:25','2006-02-15 22:14:05'), - (5473,202,2,3148,'0.99','2005-06-20 20:27:18','2006-02-15 22:14:05'), - (5474,202,1,3861,'8.99','2005-07-06 17:24:49','2006-02-15 22:14:05'), - (5475,202,2,4567,'4.99','2005-07-08 05:20:04','2006-02-15 22:14:05'), - (5476,202,2,5194,'2.99','2005-07-09 10:31:34','2006-02-15 22:14:05'), - (5477,202,1,5297,'2.99','2005-07-09 15:32:29','2006-02-15 22:14:05'), - (5478,202,2,5838,'2.99','2005-07-10 17:04:56','2006-02-15 22:14:05'), - (5479,202,1,7613,'2.99','2005-07-28 00:13:58','2006-02-15 22:14:05'), - (5480,202,1,8351,'2.99','2005-07-29 04:50:53','2006-02-15 22:14:05'), - (5481,202,1,8779,'2.99','2005-07-29 20:15:00','2006-02-15 22:14:05'), - (5482,202,1,8830,'2.99','2005-07-29 22:34:35','2006-02-15 22:14:05'), - (5483,202,2,8930,'0.99','2005-07-30 02:28:38','2006-02-15 22:14:05'), - (5484,202,2,9057,'2.99','2005-07-30 07:14:18','2006-02-15 22:14:05'), - (5485,202,2,9467,'8.99','2005-07-30 22:45:34','2006-02-15 22:14:05'), - (5486,202,2,9751,'4.99','2005-07-31 09:20:50','2006-02-15 22:14:05'), - (5487,202,1,10375,'2.99','2005-08-01 06:26:22','2006-02-15 22:14:05'), - (5488,202,1,11210,'4.99','2005-08-02 12:15:54','2006-02-15 22:14:06'), - (5489,202,2,11924,'4.99','2005-08-17 16:22:05','2006-02-15 22:14:06'), - (5490,202,2,12801,'8.99','2005-08-19 00:27:19','2006-02-15 22:14:06'), - (5491,202,1,13196,'4.99','2005-08-19 14:40:32','2006-02-15 22:14:06'), - (5492,202,1,13528,'3.99','2005-08-20 03:03:31','2006-02-15 22:14:06'), - (5493,202,1,14019,'3.99','2005-08-20 20:59:15','2006-02-15 22:14:06'), - (5494,202,1,15095,'0.99','2005-08-22 11:41:35','2006-02-15 22:14:06'), - (5495,202,2,15772,'4.99','2005-08-23 13:22:56','2006-02-15 22:14:06'), - (5496,203,1,314,'0.99','2005-05-26 23:09:41','2006-02-15 22:14:06'), - (5497,203,1,1217,'4.99','2005-06-15 03:24:14','2006-02-15 22:14:06'), - (5498,203,1,1715,'2.99','2005-06-16 14:37:12','2006-02-15 22:14:06'), - (5499,203,2,2939,'7.99','2005-06-20 05:18:16','2006-02-15 22:14:06'), - (5500,203,2,3406,'2.99','2005-06-21 16:00:18','2006-02-15 22:14:06'), - (5501,203,2,4136,'2.99','2005-07-07 08:15:52','2006-02-15 22:14:06'), - (5502,203,2,5579,'5.99','2005-07-10 04:04:29','2006-02-15 22:14:06'), - (5503,203,2,7787,'6.99','2005-07-28 07:19:02','2006-02-15 22:14:06'), - (5504,203,1,8039,'0.99','2005-07-28 16:35:16','2006-02-15 22:14:06'), - (5505,203,1,8463,'4.99','2005-07-29 08:17:51','2006-02-15 22:14:06'), - (5506,203,1,8792,'7.99','2005-07-29 20:56:14','2006-02-15 22:14:06'), - (5507,203,2,9015,'10.99','2005-07-30 05:21:32','2006-02-15 22:14:06'), - (5508,203,2,10700,'3.99','2005-08-01 18:26:31','2006-02-15 22:14:06'), - (5509,203,2,10805,'2.99','2005-08-01 22:23:37','2006-02-15 22:14:06'), - (5510,203,1,11712,'2.99','2005-08-17 07:32:51','2006-02-15 22:14:06'), - (5511,203,1,12519,'0.99','2005-08-18 13:42:14','2006-02-15 22:14:06'), - (5512,203,2,13841,'4.99','2005-08-20 14:25:18','2006-02-15 22:14:06'), - (5513,203,2,14505,'5.99','2005-08-21 14:26:28','2006-02-15 22:14:06'), - (5514,203,2,15798,'2.99','2005-08-23 14:23:03','2006-02-15 22:14:06'), - (5515,203,2,15991,'2.99','2005-08-23 20:27:34','2006-02-15 22:14:06'), - (5516,204,2,251,'0.99','2005-05-26 14:35:40','2006-02-15 22:14:06'), - (5517,204,2,399,'4.99','2005-05-27 12:48:38','2006-02-15 22:14:06'), - (5518,204,2,857,'4.99','2005-05-30 02:01:23','2006-02-15 22:14:06'), - (5519,204,1,1016,'1.99','2005-05-31 02:49:43','2006-02-15 22:14:06'), - (5520,204,1,1321,'2.99','2005-06-15 10:49:17','2006-02-15 22:14:06'), - (5521,204,1,1616,'7.99','2005-06-16 07:04:52','2006-02-15 22:14:06'), - (5522,204,1,1871,'4.99','2005-06-17 02:25:12','2006-02-15 22:14:06'), - (5523,204,2,1894,'7.99','2005-06-17 04:18:48','2006-02-15 22:14:06'), - (5524,204,2,2186,'2.99','2005-06-18 01:15:27','2006-02-15 22:14:07'), - (5525,204,2,2734,'4.99','2005-06-19 15:36:27','2006-02-15 22:14:07'), - (5526,204,1,4043,'0.99','2005-07-07 03:09:50','2006-02-15 22:14:07'), - (5527,204,1,4979,'4.99','2005-07-09 00:24:34','2006-02-15 22:14:07'), - (5528,204,2,5145,'0.99','2005-07-09 08:13:25','2006-02-15 22:14:07'), - (5529,204,1,5619,'2.99','2005-07-10 05:29:33','2006-02-15 22:14:07'), - (5530,204,2,6004,'4.99','2005-07-11 01:34:25','2006-02-15 22:14:07'), - (5531,204,2,6225,'2.99','2005-07-11 13:45:14','2006-02-15 22:14:07'), - (5532,204,2,6631,'0.99','2005-07-12 09:31:43','2006-02-15 22:14:07'), - (5533,204,1,6694,'6.99','2005-07-12 12:39:23','2006-02-15 22:14:07'), - (5534,204,2,6871,'2.99','2005-07-12 20:13:49','2006-02-15 22:14:07'), - (5535,204,1,7392,'4.99','2005-07-27 16:01:05','2006-02-15 22:14:07'), - (5536,204,2,9005,'0.99','2005-07-30 05:04:58','2006-02-15 22:14:07'), - (5537,204,1,9394,'5.99','2005-07-30 20:06:24','2006-02-15 22:14:07'), - (5538,204,2,9906,'4.99','2005-07-31 14:38:12','2006-02-15 22:14:07'), - (5539,204,2,10042,'2.99','2005-07-31 19:01:25','2006-02-15 22:14:07'), - (5540,204,2,10399,'5.99','2005-08-01 07:13:39','2006-02-15 22:14:07'), - (5541,204,1,11261,'7.99','2005-08-02 13:54:26','2006-02-15 22:14:07'), - (5542,204,2,11886,'0.99','2005-08-17 14:58:51','2006-02-15 22:14:07'), - (5543,204,1,12737,'6.99','2005-08-18 22:11:37','2006-02-15 22:14:07'), - (5544,204,1,13084,'0.99','2005-08-19 10:27:25','2006-02-15 22:14:07'), - (5545,204,1,13416,'4.99','2005-08-19 22:48:48','2006-02-15 22:14:07'), - (5546,204,2,13899,'2.99','2005-08-20 16:05:11','2006-02-15 22:14:07'), - (5547,204,2,14163,'4.99','2005-08-21 02:56:52','2006-02-15 22:14:07'), - (5548,204,1,14871,'0.99','2005-08-22 03:23:24','2006-02-15 22:14:07'), - (5549,204,1,15364,'4.99','2005-08-22 21:41:41','2006-02-15 22:14:07'), - (5550,204,2,15415,'11.99','2005-08-22 23:48:56','2006-02-15 22:14:07'), - (5551,205,1,1238,'2.99','2005-06-15 04:49:08','2006-02-15 22:14:07'), - (5552,205,1,1357,'4.99','2005-06-15 13:26:23','2006-02-15 22:14:07'), - (5553,205,1,1767,'0.99','2005-06-16 18:01:36','2006-02-15 22:14:07'), - (5554,205,2,2237,'5.99','2005-06-18 04:17:44','2006-02-15 22:14:07'), - (5555,205,1,3601,'7.99','2005-07-06 05:20:25','2006-02-15 22:14:07'), - (5556,205,2,4230,'3.99','2005-07-07 12:46:47','2006-02-15 22:14:07'), - (5557,205,2,4377,'7.99','2005-07-07 20:28:57','2006-02-15 22:14:07'), - (5558,205,1,4729,'4.99','2005-07-08 12:59:40','2006-02-15 22:14:07'), - (5559,205,1,7736,'2.99','2005-07-28 05:12:04','2006-02-15 22:14:08'), - (5560,205,2,7976,'7.99','2005-07-28 14:13:24','2006-02-15 22:14:08'), - (5561,205,2,8896,'4.99','2005-07-30 00:51:21','2006-02-15 22:14:08'), - (5562,205,2,10086,'4.99','2005-07-31 20:14:08','2006-02-15 22:14:08'), - (5563,205,1,13935,'2.99','2005-08-20 17:20:49','2006-02-15 22:14:08'), - (5564,205,1,14338,'0.99','2005-08-21 08:36:03','2006-02-15 22:14:08'), - (5565,205,2,14391,'4.99','2005-08-21 10:16:27','2006-02-15 22:14:08'), - (5566,205,1,14442,'2.99','2005-08-21 12:00:21','2006-02-15 22:14:08'), - (5567,205,2,14490,'6.99','2005-08-21 13:54:15','2006-02-15 22:14:08'), - (5568,205,2,15418,'0.99','2005-08-22 23:54:14','2006-02-15 22:14:08'), - (5569,206,2,1872,'0.99','2005-06-17 02:27:03','2006-02-15 22:14:08'), - (5570,206,2,2477,'5.99','2005-06-18 20:58:46','2006-02-15 22:14:08'), - (5571,206,2,3012,'4.99','2005-06-20 10:43:13','2006-02-15 22:14:08'), - (5572,206,1,3533,'5.99','2005-07-06 01:26:44','2006-02-15 22:14:08'), - (5573,206,2,3831,'0.99','2005-07-06 16:06:35','2006-02-15 22:14:08'), - (5574,206,1,3847,'4.99','2005-07-06 16:44:41','2006-02-15 22:14:08'), - (5575,206,2,4068,'4.99','2005-07-07 04:34:38','2006-02-15 22:14:08'), - (5576,206,2,4107,'4.99','2005-07-07 06:36:32','2006-02-15 22:14:08'), - (5577,206,2,4823,'4.99','2005-07-08 17:28:54','2006-02-15 22:14:08'), - (5578,206,1,6139,'3.99','2005-07-11 08:39:33','2006-02-15 22:14:08'), - (5579,206,1,6420,'6.99','2005-07-11 23:38:49','2006-02-15 22:14:08'), - (5580,206,1,7222,'4.99','2005-07-27 09:38:43','2006-02-15 22:14:08'), - (5581,206,2,7541,'4.99','2005-07-27 21:40:05','2006-02-15 22:14:08'), - (5582,206,1,8217,'5.99','2005-07-28 23:44:13','2006-02-15 22:14:08'), - (5583,206,1,8549,'3.99','2005-07-29 11:12:13','2006-02-15 22:14:08'), - (5584,206,2,9474,'2.99','2005-07-30 23:05:44','2006-02-15 22:14:08'), - (5585,206,2,10930,'3.99','2005-08-02 02:38:07','2006-02-15 22:14:08'), - (5586,206,1,11022,'2.99','2005-08-02 05:35:03','2006-02-15 22:14:08'), - (5587,206,2,11634,'2.99','2005-08-17 04:31:49','2006-02-15 22:14:08'), - (5588,206,1,13128,'4.99','2005-08-19 12:04:16','2006-02-15 22:14:08'), - (5589,206,2,13232,'2.99','2005-08-19 16:13:32','2006-02-15 22:14:08'), - (5590,206,2,13263,'10.99','2005-08-19 17:26:55','2006-02-15 22:14:08'), - (5591,206,2,13550,'9.99','2005-08-20 03:58:51','2006-02-15 22:14:08'), - (5592,206,2,13696,'0.99','2005-08-20 09:16:15','2006-02-15 22:14:08'), - (5593,206,2,14695,'0.99','2005-08-21 20:46:47','2006-02-15 22:14:08'), - (5594,206,2,15686,'7.99','2005-08-23 09:42:21','2006-02-15 22:14:09'), - (5595,206,1,15709,'4.99','2005-08-23 10:36:00','2006-02-15 22:14:09'), - (5596,207,1,39,'0.99','2005-05-25 04:51:46','2006-02-15 22:14:09'), - (5597,207,1,44,'0.99','2005-05-25 05:53:23','2006-02-15 22:14:09'), - (5598,207,1,659,'0.99','2005-05-28 20:27:53','2006-02-15 22:14:09'), - (5599,207,2,826,'6.99','2005-05-29 21:56:15','2006-02-15 22:14:09'), - (5600,207,2,896,'3.99','2005-05-30 09:03:52','2006-02-15 22:14:09'), - (5601,207,2,1144,'3.99','2005-05-31 20:04:10','2006-02-15 22:14:09'), - (5602,207,2,1945,'3.99','2005-06-17 07:51:26','2006-02-15 22:14:09'), - (5603,207,2,3584,'2.99','2005-07-06 04:16:43','2006-02-15 22:14:09'), - (5604,207,2,3687,'9.99','2005-07-06 09:38:33','2006-02-15 22:14:09'), - (5605,207,1,4018,'2.99','2005-07-07 01:10:33','2006-02-15 22:14:09'), - (5606,207,2,4713,'5.99','2005-07-08 12:12:33','2006-02-15 22:14:09'), - (5607,207,1,4816,'0.99','2005-07-08 17:14:14','2006-02-15 22:14:09'), - (5608,207,2,5007,'0.99','2005-07-09 01:26:22','2006-02-15 22:14:09'), - (5609,207,1,5258,'0.99','2005-07-09 13:56:56','2006-02-15 22:14:09'), - (5610,207,1,5259,'4.99','2005-07-09 14:02:50','2006-02-15 22:14:09'), - (5611,207,2,5939,'0.99','2005-07-10 22:30:05','2006-02-15 22:14:09'), - (5612,207,2,6465,'5.99','2005-07-12 01:17:11','2006-02-15 22:14:09'), - (5613,207,1,6537,'0.99','2005-07-12 04:46:30','2006-02-15 22:14:09'), - (5614,207,2,7306,'5.99','2005-07-27 12:57:26','2006-02-15 22:14:09'), - (5615,207,1,7540,'5.99','2005-07-27 21:39:55','2006-02-15 22:14:09'), - (5616,207,1,8800,'5.99','2005-07-29 21:18:59','2006-02-15 22:14:09'), - (5617,207,2,9652,'2.99','2005-07-31 05:49:53','2006-02-15 22:14:09'), - (5618,207,2,10234,'3.99','2005-08-01 01:56:20','2006-02-15 22:14:09'), - (5619,207,2,10300,'0.99','2005-08-01 04:08:11','2006-02-15 22:14:09'), - (5620,207,1,11112,'2.99','2005-08-02 08:25:14','2006-02-15 22:14:09'), - (5621,207,2,11260,'0.99','2005-08-02 13:52:19','2006-02-15 22:14:09'), - (5622,207,2,11286,'5.99','2005-08-02 14:44:22','2006-02-15 22:14:09'), - (5623,207,1,11724,'6.99','2005-08-17 08:04:44','2006-02-15 22:14:09'), - (5624,207,2,12108,'6.99','2005-08-17 22:56:39','2006-02-15 22:14:09'), - (5625,207,2,13655,'2.99','2005-08-20 07:59:13','2006-02-15 22:14:09'), - (5626,207,2,13809,'8.99','2005-08-20 12:56:03','2006-02-15 22:14:09'), - (5627,207,2,13912,'9.99','2005-08-20 16:32:10','2006-02-15 22:14:09'), - (5628,207,2,13954,'3.99','2005-08-20 18:02:41','2006-02-15 22:14:09'), - (5629,207,1,15625,'1.99','2005-08-23 07:25:29','2006-02-15 22:14:10'), - (5630,208,1,100,'4.99','2005-05-25 16:50:28','2006-02-15 22:14:10'), - (5631,208,1,1805,'0.99','2005-06-16 20:36:00','2006-02-15 22:14:10'), - (5632,208,1,1949,'5.99','2005-06-17 08:19:22','2006-02-15 22:14:10'), - (5633,208,2,2592,'0.99','2005-06-19 05:36:54','2006-02-15 22:14:10'), - (5634,208,1,2695,'2.99','2005-06-19 13:25:53','2006-02-15 22:14:10'), - (5635,208,2,2907,'0.99','2005-06-20 03:15:09','2006-02-15 22:14:10'), - (5636,208,2,3811,'2.99','2005-07-06 15:20:37','2006-02-15 22:14:10'), - (5637,208,1,4354,'5.99','2005-07-07 19:21:02','2006-02-15 22:14:10'), - (5638,208,2,4985,'4.99','2005-07-09 00:36:02','2006-02-15 22:14:10'), - (5639,208,1,5117,'2.99','2005-07-09 07:11:22','2006-02-15 22:14:10'), - (5640,208,2,5693,'2.99','2005-07-10 09:35:43','2006-02-15 22:14:10'), - (5641,208,2,6306,'6.99','2005-07-11 18:04:26','2006-02-15 22:14:10'), - (5642,208,1,6767,'1.99','2005-07-12 15:46:55','2006-02-15 22:14:10'), - (5643,208,1,7315,'0.99','2005-07-27 13:14:56','2006-02-15 22:14:10'), - (5644,208,1,7861,'2.99','2005-07-28 10:02:01','2006-02-15 22:14:10'), - (5645,208,2,7984,'2.99','2005-07-28 14:27:51','2006-02-15 22:14:10'), - (5646,208,1,8742,'1.99','2005-07-29 18:56:12','2006-02-15 22:14:10'), - (5647,208,2,9298,'3.99','2005-07-30 16:27:53','2006-02-15 22:14:10'), - (5648,208,1,9838,'4.99','2005-07-31 12:18:49','2006-02-15 22:14:10'), - (5649,208,2,10762,'4.99','2005-08-01 20:28:39','2006-02-15 22:14:10'), - (5650,208,2,10784,'5.99','2005-08-01 21:24:28','2006-02-15 22:14:10'), - (5651,208,2,11442,'2.99','2005-08-02 20:26:19','2006-02-15 22:14:10'), - (5652,208,2,11805,'6.99','2005-08-17 11:48:47','2006-02-15 22:14:10'), - (5653,208,2,11819,'0.99','2005-08-17 12:25:17','2006-02-15 22:14:10'), - (5654,208,1,13719,'5.98','2006-02-14 15:16:03','2006-02-15 22:14:10'), - (5655,208,1,15717,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:10'), - (5656,209,2,340,'9.99','2005-05-27 03:55:25','2006-02-15 22:14:10'), - (5657,209,1,471,'0.99','2005-05-27 21:32:42','2006-02-15 22:14:10'), - (5658,209,2,1143,'2.99','2005-05-31 19:53:03','2006-02-15 22:14:10'), - (5659,209,2,1201,'4.99','2005-06-15 02:06:28','2006-02-15 22:14:10'), - (5660,209,1,1657,'4.99','2005-06-16 10:06:49','2006-02-15 22:14:10'), - (5661,209,1,2650,'4.99','2005-06-19 10:21:45','2006-02-15 22:14:10'), - (5662,209,1,2796,'4.99','2005-06-19 19:00:37','2006-02-15 22:14:10'), - (5663,209,2,3504,'2.99','2005-07-06 00:18:29','2006-02-15 22:14:10'), - (5664,209,2,4071,'5.99','2005-07-07 04:37:26','2006-02-15 22:14:11'), - (5665,209,1,4309,'5.99','2005-07-07 17:29:41','2006-02-15 22:14:11'), - (5666,209,2,4810,'4.99','2005-07-08 17:04:06','2006-02-15 22:14:11'), - (5667,209,1,4907,'4.99','2005-07-08 21:01:41','2006-02-15 22:14:11'), - (5668,209,2,5170,'3.99','2005-07-09 09:24:19','2006-02-15 22:14:11'), - (5669,209,2,5219,'5.99','2005-07-09 11:57:55','2006-02-15 22:14:11'), - (5670,209,1,6210,'0.99','2005-07-11 12:36:43','2006-02-15 22:14:11'), - (5671,209,1,7116,'6.99','2005-07-27 05:46:43','2006-02-15 22:14:11'), - (5672,209,1,7269,'3.99','2005-07-27 11:23:47','2006-02-15 22:14:11'), - (5673,209,1,7505,'4.99','2005-07-27 20:28:03','2006-02-15 22:14:11'), - (5674,209,2,7752,'5.99','2005-07-28 06:01:00','2006-02-15 22:14:11'), - (5675,209,1,8067,'4.99','2005-07-28 17:20:17','2006-02-15 22:14:11'), - (5676,209,2,8759,'8.99','2005-07-29 19:22:37','2006-02-15 22:14:11'), - (5677,209,2,8816,'2.99','2005-07-29 21:53:00','2006-02-15 22:14:11'), - (5678,209,2,9054,'6.99','2005-07-30 07:11:44','2006-02-15 22:14:11'), - (5679,209,1,9923,'0.99','2005-07-31 15:00:15','2006-02-15 22:14:11'), - (5680,209,2,10554,'2.99','2005-08-01 12:56:19','2006-02-15 22:14:11'), - (5681,209,1,10646,'4.99','2005-08-01 15:57:55','2006-02-15 22:14:11'), - (5682,209,2,10811,'6.99','2005-08-01 22:41:15','2006-02-15 22:14:11'), - (5683,209,1,12025,'0.99','2005-08-17 19:59:06','2006-02-15 22:14:11'), - (5684,209,1,13796,'8.99','2005-08-20 12:32:32','2006-02-15 22:14:11'), - (5685,209,2,14631,'6.99','2005-08-21 18:47:49','2006-02-15 22:14:11'), - (5686,209,1,15254,'2.99','2005-08-22 18:13:07','2006-02-15 22:14:11'), - (5687,209,2,15510,'9.99','2005-08-23 02:51:27','2006-02-15 22:14:11'), - (5688,210,1,953,'2.99','2005-05-30 16:34:02','2006-02-15 22:14:11'), - (5689,210,2,1177,'2.99','2005-06-15 00:33:04','2006-02-15 22:14:11'), - (5690,210,2,2856,'0.99','2005-06-19 23:13:04','2006-02-15 22:14:11'), - (5691,210,2,3563,'4.99','2005-07-06 02:57:01','2006-02-15 22:14:11'), - (5692,210,2,3884,'4.99','2005-07-06 18:41:33','2006-02-15 22:14:11'), - (5693,210,2,4270,'0.99','2005-07-07 14:38:41','2006-02-15 22:14:11'), - (5694,210,1,4306,'2.99','2005-07-07 17:12:32','2006-02-15 22:14:11'), - (5695,210,1,4334,'0.99','2005-07-07 18:32:04','2006-02-15 22:14:11'), - (5696,210,2,4388,'7.99','2005-07-07 20:58:03','2006-02-15 22:14:11'), - (5697,210,1,4620,'5.99','2005-07-08 08:01:44','2006-02-15 22:14:11'), - (5698,210,1,4871,'6.99','2005-07-08 19:19:52','2006-02-15 22:14:12'), - (5699,210,1,4893,'4.99','2005-07-08 20:19:55','2006-02-15 22:14:12'), - (5700,210,1,4989,'3.99','2005-07-09 00:46:56','2006-02-15 22:14:12'), - (5701,210,2,5957,'0.99','2005-07-10 23:24:02','2006-02-15 22:14:12'), - (5702,210,2,6227,'4.99','2005-07-11 13:56:46','2006-02-15 22:14:12'), - (5703,210,1,6564,'1.99','2005-07-12 05:34:44','2006-02-15 22:14:12'), - (5704,210,1,7743,'5.99','2005-07-28 05:36:13','2006-02-15 22:14:12'), - (5705,210,2,7909,'0.99','2005-07-28 11:38:08','2006-02-15 22:14:12'), - (5706,210,2,8336,'8.99','2005-07-29 04:20:42','2006-02-15 22:14:12'), - (5707,210,2,8678,'3.99','2005-07-29 16:04:00','2006-02-15 22:14:12'), - (5708,210,2,8738,'0.99','2005-07-29 18:32:47','2006-02-15 22:14:12'), - (5709,210,2,10890,'4.99','2005-08-02 00:58:46','2006-02-15 22:14:12'), - (5710,210,2,12410,'8.99','2005-08-18 09:45:33','2006-02-15 22:14:12'), - (5711,210,1,12879,'4.99','2005-08-19 03:22:55','2006-02-15 22:14:12'), - (5712,210,2,12909,'2.99','2005-08-19 04:20:25','2006-02-15 22:14:12'), - (5713,210,2,12986,'4.99','2005-08-19 07:09:36','2006-02-15 22:14:12'), - (5714,210,1,14181,'7.99','2005-08-21 03:16:30','2006-02-15 22:14:12'), - (5715,210,2,14639,'6.99','2005-08-21 19:01:39','2006-02-15 22:14:12'), - (5716,210,2,14876,'4.99','2005-08-22 03:39:29','2006-02-15 22:14:12'), - (5717,210,2,15672,'0.99','2005-08-23 09:09:18','2006-02-15 22:14:12'), - (5718,210,2,15942,'8.99','2005-08-23 18:48:40','2006-02-15 22:14:12'), - (5719,211,1,238,'4.99','2005-05-26 12:30:22','2006-02-15 22:14:12'), - (5720,211,2,2812,'8.99','2005-06-19 19:58:16','2006-02-15 22:14:12'), - (5721,211,2,3437,'6.99','2005-06-21 19:20:17','2006-02-15 22:14:12'), - (5722,211,2,3937,'8.99','2005-07-06 21:15:38','2006-02-15 22:14:12'), - (5723,211,2,4060,'2.99','2005-07-07 04:10:13','2006-02-15 22:14:12'), - (5724,211,2,4441,'5.99','2005-07-07 23:04:23','2006-02-15 22:14:12'), - (5725,211,2,4479,'2.99','2005-07-08 00:52:35','2006-02-15 22:14:12'), - (5726,211,1,4857,'2.99','2005-07-08 18:52:07','2006-02-15 22:14:12'), - (5727,211,1,5668,'5.99','2005-07-10 08:11:05','2006-02-15 22:14:12'), - (5728,211,2,5699,'3.99','2005-07-10 09:48:04','2006-02-15 22:14:12'), - (5729,211,2,5785,'4.99','2005-07-10 14:06:03','2006-02-15 22:14:12'), - (5730,211,2,6438,'0.99','2005-07-12 00:23:01','2006-02-15 22:14:12'), - (5731,211,1,6628,'4.99','2005-07-12 09:18:08','2006-02-15 22:14:13'), - (5732,211,1,6722,'1.99','2005-07-12 13:44:03','2006-02-15 22:14:13'), - (5733,211,2,7484,'0.99','2005-07-27 19:28:17','2006-02-15 22:14:13'), - (5734,211,1,7975,'2.99','2005-07-28 14:12:47','2006-02-15 22:14:13'), - (5735,211,2,8961,'6.99','2005-07-30 03:43:35','2006-02-15 22:14:13'), - (5736,211,1,9111,'3.99','2005-07-30 09:05:44','2006-02-15 22:14:13'), - (5737,211,1,9953,'0.99','2005-07-31 15:56:35','2006-02-15 22:14:13'), - (5738,211,1,10445,'2.99','2005-08-01 09:02:15','2006-02-15 22:14:13'), - (5739,211,2,10928,'4.99','2005-08-02 02:34:12','2006-02-15 22:14:13'), - (5740,211,2,11076,'8.99','2005-08-02 07:24:47','2006-02-15 22:14:13'), - (5741,211,2,11963,'3.99','2005-08-17 17:35:47','2006-02-15 22:14:13'), - (5742,211,2,12311,'0.99','2005-08-18 06:07:00','2006-02-15 22:14:13'), - (5743,211,2,12565,'4.99','2005-08-18 15:12:17','2006-02-15 22:14:13'), - (5744,211,2,12570,'5.99','2005-08-18 15:23:31','2006-02-15 22:14:13'), - (5745,211,2,13942,'2.99','2005-08-20 17:30:52','2006-02-15 22:14:13'), - (5746,211,1,13979,'2.99','2005-08-20 19:03:49','2006-02-15 22:14:13'), - (5747,211,2,14782,'0.99','2005-08-22 00:17:20','2006-02-15 22:14:13'), - (5748,211,2,14812,'1.99','2005-08-22 01:10:32','2006-02-15 22:14:13'), - (5749,211,1,15404,'7.99','2005-08-22 23:19:44','2006-02-15 22:14:13'), - (5750,211,2,15538,'6.99','2005-08-23 04:07:37','2006-02-15 22:14:13'), - (5751,211,2,15670,'5.99','2005-08-23 09:07:11','2006-02-15 22:14:13'), - (5752,211,2,12746,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:13'), - (5753,212,1,1356,'0.99','2005-06-15 13:17:01','2006-02-15 22:14:13'), - (5754,212,2,1379,'0.99','2005-06-15 15:05:10','2006-02-15 22:14:13'), - (5755,212,1,1637,'2.99','2005-06-16 08:29:58','2006-02-15 22:14:13'), - (5756,212,2,2739,'9.99','2005-06-19 15:58:38','2006-02-15 22:14:13'), - (5757,212,2,4708,'10.99','2005-07-08 11:59:19','2006-02-15 22:14:13'), - (5758,212,2,4798,'3.99','2005-07-08 16:45:16','2006-02-15 22:14:13'), - (5759,212,2,4916,'6.99','2005-07-08 21:32:17','2006-02-15 22:14:13'), - (5760,212,1,5115,'6.99','2005-07-09 07:07:18','2006-02-15 22:14:13'), - (5761,212,2,7828,'2.99','2005-07-28 08:40:46','2006-02-15 22:14:13'), - (5762,212,2,8000,'4.99','2005-07-28 15:10:25','2006-02-15 22:14:13'), - (5763,212,1,8940,'3.99','2005-07-30 02:57:26','2006-02-15 22:14:13'), - (5764,212,2,10273,'4.99','2005-08-01 03:14:47','2006-02-15 22:14:13'), - (5765,212,2,10567,'0.99','2005-08-01 13:16:01','2006-02-15 22:14:14'), - (5766,212,1,12156,'7.99','2005-08-18 00:27:33','2006-02-15 22:14:14'), - (5767,212,2,12467,'0.99','2005-08-18 11:40:09','2006-02-15 22:14:14'), - (5768,212,2,12562,'3.99','2005-08-18 15:00:03','2006-02-15 22:14:14'), - (5769,212,1,14563,'2.99','2005-08-21 16:23:53','2006-02-15 22:14:14'), - (5770,212,2,14681,'5.99','2005-08-21 20:25:13','2006-02-15 22:14:14'), - (5771,212,1,15872,'4.99','2005-08-23 16:27:24','2006-02-15 22:14:14'), - (5772,212,2,15920,'2.99','2005-08-23 18:05:10','2006-02-15 22:14:14'), - (5773,213,2,385,'0.99','2005-05-27 10:23:25','2006-02-15 22:14:14'), - (5774,213,1,1489,'0.99','2005-06-15 21:41:38','2006-02-15 22:14:14'), - (5775,213,2,1936,'4.99','2005-06-17 07:15:41','2006-02-15 22:14:14'), - (5776,213,1,2322,'5.99','2005-06-18 09:44:21','2006-02-15 22:14:14'), - (5777,213,1,2509,'0.99','2005-06-18 23:44:08','2006-02-15 22:14:14'), - (5778,213,2,2569,'6.99','2005-06-19 04:19:04','2006-02-15 22:14:14'), - (5779,213,1,2889,'4.99','2005-06-20 01:54:08','2006-02-15 22:14:14'), - (5780,213,2,2946,'4.99','2005-06-20 05:50:40','2006-02-15 22:14:14'), - (5781,213,1,3252,'2.99','2005-06-21 03:25:26','2006-02-15 22:14:14'), - (5782,213,1,3313,'2.99','2005-06-21 08:11:18','2006-02-15 22:14:14'), - (5783,213,2,3989,'4.99','2005-07-06 23:30:54','2006-02-15 22:14:14'), - (5784,213,2,4236,'4.99','2005-07-07 13:12:07','2006-02-15 22:14:14'), - (5785,213,1,4655,'8.99','2005-07-08 09:49:22','2006-02-15 22:14:14'), - (5786,213,2,5159,'4.99','2005-07-09 08:55:52','2006-02-15 22:14:14'), - (5787,213,1,5431,'0.99','2005-07-09 21:21:11','2006-02-15 22:14:14'), - (5788,213,2,6725,'2.99','2005-07-12 13:47:17','2006-02-15 22:14:14'), - (5789,213,2,7528,'0.99','2005-07-27 21:15:25','2006-02-15 22:14:14'), - (5790,213,2,8444,'2.99','2005-07-29 07:36:13','2006-02-15 22:14:14'), - (5791,213,2,8542,'4.99','2005-07-29 11:01:50','2006-02-15 22:14:14'), - (5792,213,2,9150,'6.99','2005-07-30 10:49:32','2006-02-15 22:14:14'), - (5793,213,2,9340,'2.99','2005-07-30 18:07:16','2006-02-15 22:14:14'), - (5794,213,1,9477,'4.99','2005-07-30 23:07:22','2006-02-15 22:14:14'), - (5795,213,1,10449,'2.99','2005-08-01 09:09:59','2006-02-15 22:14:14'), - (5796,213,2,11778,'3.99','2005-08-17 10:31:40','2006-02-15 22:14:14'), - (5797,213,1,13354,'4.99','2005-08-19 20:55:23','2006-02-15 22:14:14'), - (5798,213,2,13426,'0.99','2005-08-19 23:15:00','2006-02-15 22:14:14'), - (5799,213,1,14744,'6.99','2005-08-21 22:45:21','2006-02-15 22:14:15'), - (5800,213,2,14374,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:15'), - (5801,214,1,242,'1.99','2005-05-26 13:05:08','2006-02-15 22:14:15'), - (5802,214,1,278,'3.99','2005-05-26 17:40:58','2006-02-15 22:14:15'), - (5803,214,1,1076,'2.99','2005-05-31 10:14:31','2006-02-15 22:14:15'), - (5804,214,2,1093,'2.99','2005-05-31 12:32:26','2006-02-15 22:14:15'), - (5805,214,2,1112,'0.99','2005-05-31 15:51:39','2006-02-15 22:14:15'), - (5806,214,2,1275,'4.99','2005-06-15 07:55:43','2006-02-15 22:14:15'), - (5807,214,2,2085,'2.99','2005-06-17 17:30:56','2006-02-15 22:14:15'), - (5808,214,2,2868,'2.99','2005-06-20 00:08:58','2006-02-15 22:14:15'), - (5809,214,2,4211,'0.99','2005-07-07 11:50:41','2006-02-15 22:14:15'), - (5810,214,1,4783,'3.99','2005-07-08 16:09:24','2006-02-15 22:14:15'), - (5811,214,2,4984,'3.99','2005-07-09 00:35:31','2006-02-15 22:14:15'), - (5812,214,2,5172,'2.99','2005-07-09 09:31:27','2006-02-15 22:14:15'), - (5813,214,1,6602,'7.99','2005-07-12 07:50:24','2006-02-15 22:14:15'), - (5814,214,2,7417,'4.99','2005-07-27 16:58:33','2006-02-15 22:14:15'), - (5815,214,2,7826,'5.99','2005-07-28 08:35:51','2006-02-15 22:14:15'), - (5816,214,1,8663,'4.99','2005-07-29 15:33:18','2006-02-15 22:14:15'), - (5817,214,1,10563,'3.99','2005-08-01 13:06:03','2006-02-15 22:14:15'), - (5818,214,2,10749,'4.99','2005-08-01 20:02:01','2006-02-15 22:14:15'), - (5819,214,2,11450,'2.99','2005-08-02 20:45:54','2006-02-15 22:14:15'), - (5820,214,2,11474,'4.99','2005-08-02 21:53:08','2006-02-15 22:14:15'), - (5821,214,2,12463,'4.99','2005-08-18 11:31:34','2006-02-15 22:14:15'), - (5822,214,2,13138,'2.99','2005-08-19 12:30:01','2006-02-15 22:14:15'), - (5823,214,2,13350,'9.99','2005-08-19 20:44:00','2006-02-15 22:14:15'), - (5824,214,1,13409,'2.99','2005-08-19 22:36:26','2006-02-15 22:14:15'), - (5825,214,1,13565,'0.99','2005-08-20 04:38:52','2006-02-15 22:14:15'), - (5826,214,1,13726,'0.99','2005-08-20 10:08:40','2006-02-15 22:14:15'), - (5827,214,1,13864,'4.99','2005-08-20 14:59:55','2006-02-15 22:14:15'), - (5828,214,2,14347,'4.99','2005-08-21 08:42:31','2006-02-15 22:14:15'), - (5829,214,1,14567,'0.99','2005-08-21 16:27:25','2006-02-15 22:14:15'), - (5830,214,2,15639,'2.99','2005-08-23 08:03:25','2006-02-15 22:14:15'), - (5831,214,2,15645,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:15'), - (5832,215,1,711,'4.99','2005-05-29 03:49:03','2006-02-15 22:14:16'), - (5833,215,2,1080,'4.99','2005-05-31 10:55:26','2006-02-15 22:14:16'), - (5834,215,2,1376,'4.99','2005-06-15 14:59:06','2006-02-15 22:14:16'), - (5835,215,2,1599,'4.99','2005-06-16 06:03:33','2006-02-15 22:14:16'), - (5836,215,2,1845,'4.99','2005-06-16 23:56:11','2006-02-15 22:14:16'), - (5837,215,2,2006,'2.99','2005-06-17 11:47:03','2006-02-15 22:14:16'), - (5838,215,2,2918,'2.99','2005-06-20 04:09:04','2006-02-15 22:14:16'), - (5839,215,1,3143,'2.99','2005-06-20 20:01:52','2006-02-15 22:14:16'), - (5840,215,2,4940,'8.99','2005-07-08 22:36:06','2006-02-15 22:14:16'), - (5841,215,1,5886,'2.99','2005-07-10 19:36:25','2006-02-15 22:14:16'), - (5842,215,2,5967,'8.99','2005-07-11 00:02:19','2006-02-15 22:14:16'), - (5843,215,1,7180,'1.99','2005-07-27 08:14:34','2006-02-15 22:14:16'), - (5844,215,2,9046,'2.99','2005-07-30 06:46:55','2006-02-15 22:14:16'), - (5845,215,1,9518,'0.99','2005-07-31 00:43:26','2006-02-15 22:14:16'), - (5846,215,2,9611,'4.99','2005-07-31 03:54:43','2006-02-15 22:14:16'), - (5847,215,1,11729,'2.99','2005-08-17 08:14:41','2006-02-15 22:14:16'), - (5848,215,2,12285,'2.99','2005-08-18 04:56:43','2006-02-15 22:14:16'), - (5849,215,1,12380,'1.99','2005-08-18 08:27:28','2006-02-15 22:14:16'), - (5850,215,2,13085,'0.99','2005-08-19 10:28:22','2006-02-15 22:14:16'), - (5851,215,2,14126,'0.99','2005-08-21 01:32:17','2006-02-15 22:14:16'), - (5852,215,2,14817,'4.99','2005-08-22 01:17:16','2006-02-15 22:14:16'), - (5853,215,1,15583,'2.99','2005-08-23 05:47:55','2006-02-15 22:14:16'), - (5854,215,2,15610,'2.99','2005-08-23 06:56:15','2006-02-15 22:14:16'), - (5855,215,2,15799,'2.99','2005-08-23 14:23:23','2006-02-15 22:14:16'), - (5856,215,1,15843,'0.99','2005-08-23 15:37:31','2006-02-15 22:14:16'), - (5857,215,2,15862,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:16'), - (5858,216,1,997,'4.99','2005-05-31 00:08:25','2006-02-15 22:14:16'), - (5859,216,2,1461,'6.99','2005-06-15 20:32:08','2006-02-15 22:14:16'), - (5860,216,1,1664,'0.99','2005-06-16 10:15:20','2006-02-15 22:14:16'), - (5861,216,1,1672,'3.99','2005-06-16 10:37:34','2006-02-15 22:14:16'), - (5862,216,2,2351,'0.99','2005-06-18 12:27:57','2006-02-15 22:14:16'), - (5863,216,1,3432,'2.99','2005-06-21 19:02:03','2006-02-15 22:14:16'), - (5864,216,2,4161,'2.99','2005-07-07 09:15:11','2006-02-15 22:14:16'), - (5865,216,1,6008,'6.99','2005-07-11 01:51:29','2006-02-15 22:14:16'), - (5866,216,2,6349,'7.99','2005-07-11 20:25:05','2006-02-15 22:14:17'), - (5867,216,1,8068,'4.99','2005-07-28 17:22:28','2006-02-15 22:14:17'), - (5868,216,2,8859,'8.99','2005-07-29 23:44:43','2006-02-15 22:14:17'), - (5869,216,1,9096,'0.99','2005-07-30 08:39:23','2006-02-15 22:14:17'), - (5870,216,1,10506,'4.99','2005-08-01 11:16:05','2006-02-15 22:14:17'), - (5871,216,1,11005,'0.99','2005-08-02 05:05:23','2006-02-15 22:14:17'), - (5872,216,2,11621,'7.99','2005-08-17 04:13:45','2006-02-15 22:14:17'), - (5873,216,2,13424,'0.99','2005-08-19 23:10:09','2006-02-15 22:14:17'), - (5874,216,2,14638,'2.99','2005-08-21 19:01:36','2006-02-15 22:14:17'), - (5875,216,2,14726,'4.99','2005-08-21 22:08:52','2006-02-15 22:14:17'), - (5876,216,1,15192,'4.99','2005-08-22 16:06:23','2006-02-15 22:14:17'), - (5877,216,2,15199,'2.99','2005-08-22 16:17:49','2006-02-15 22:14:17'), - (5878,216,2,15934,'4.99','2005-08-23 18:40:41','2006-02-15 22:14:17'), - (5879,216,1,12970,'5.98','2006-02-14 15:16:03','2006-02-15 22:14:17'), - (5880,216,1,11676,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:17'), - (5881,217,2,828,'2.99','2005-05-29 22:14:55','2006-02-15 22:14:17'), - (5882,217,2,1141,'8.99','2005-05-31 19:42:02','2006-02-15 22:14:17'), - (5883,217,1,1322,'2.99','2005-06-15 10:55:09','2006-02-15 22:14:17'), - (5884,217,1,2076,'6.99','2005-06-17 16:43:47','2006-02-15 22:14:17'), - (5885,217,1,2842,'4.99','2005-06-19 22:34:20','2006-02-15 22:14:17'), - (5886,217,2,5576,'2.99','2005-07-10 03:57:05','2006-02-15 22:14:17'), - (5887,217,2,5762,'3.99','2005-07-10 12:48:01','2006-02-15 22:14:17'), - (5888,217,2,6570,'4.99','2005-07-12 05:50:31','2006-02-15 22:14:17'), - (5889,217,2,7104,'2.99','2005-07-27 05:15:25','2006-02-15 22:14:17'), - (5890,217,2,8332,'4.99','2005-07-29 04:16:00','2006-02-15 22:14:17'), - (5891,217,1,9159,'0.99','2005-07-30 11:16:37','2006-02-15 22:14:17'), - (5892,217,2,9317,'2.99','2005-07-30 17:13:37','2006-02-15 22:14:17'), - (5893,217,2,9632,'6.99','2005-07-31 05:02:23','2006-02-15 22:14:17'), - (5894,217,2,9745,'2.99','2005-07-31 09:16:14','2006-02-15 22:14:17'), - (5895,217,1,10581,'5.99','2005-08-01 13:52:30','2006-02-15 22:14:17'), - (5896,217,1,10836,'6.99','2005-08-01 23:29:58','2006-02-15 22:14:17'), - (5897,217,1,11347,'2.99','2005-08-02 17:18:07','2006-02-15 22:14:17'), - (5898,217,1,11649,'2.99','2005-08-17 04:59:26','2006-02-15 22:14:17'), - (5899,217,1,11958,'4.99','2005-08-17 17:23:20','2006-02-15 22:14:17'), - (5900,217,2,12210,'4.99','2005-08-18 02:27:29','2006-02-15 22:14:18'), - (5901,217,1,12871,'4.99','2005-08-19 02:55:36','2006-02-15 22:14:18'), - (5902,217,2,15116,'0.99','2005-08-22 12:35:40','2006-02-15 22:14:18'), - (5903,217,2,15277,'2.99','2005-08-22 19:02:48','2006-02-15 22:14:18'), - (5904,218,1,1459,'2.99','2005-06-15 20:25:53','2006-02-15 22:14:18'), - (5905,218,1,2262,'0.99','2005-06-18 05:49:46','2006-02-15 22:14:18'), - (5906,218,1,2267,'0.99','2005-06-18 06:10:23','2006-02-15 22:14:18'), - (5907,218,1,4898,'6.99','2005-07-08 20:31:43','2006-02-15 22:14:18'), - (5908,218,1,5226,'0.99','2005-07-09 12:10:44','2006-02-15 22:14:18'), - (5909,218,2,5737,'0.99','2005-07-10 11:50:04','2006-02-15 22:14:18'), - (5910,218,2,7090,'4.99','2005-07-27 04:43:53','2006-02-15 22:14:18'), - (5911,218,1,7236,'8.99','2005-07-27 10:09:39','2006-02-15 22:14:18'), - (5912,218,2,9018,'6.99','2005-07-30 05:28:40','2006-02-15 22:14:18'), - (5913,218,2,9902,'6.99','2005-07-31 14:24:33','2006-02-15 22:14:18'), - (5914,218,1,10114,'0.99','2005-07-31 21:12:58','2006-02-15 22:14:18'), - (5915,218,1,11654,'2.99','2005-08-17 05:06:19','2006-02-15 22:14:18'), - (5916,218,2,12481,'2.99','2005-08-18 12:31:34','2006-02-15 22:14:18'), - (5917,218,1,12974,'0.99','2005-08-19 06:51:02','2006-02-15 22:14:18'), - (5918,218,2,13708,'5.99','2005-08-20 09:34:07','2006-02-15 22:14:18'), - (5919,218,2,13947,'5.99','2005-08-20 17:46:06','2006-02-15 22:14:18'), - (5920,218,2,14848,'4.99','2005-08-22 02:14:19','2006-02-15 22:14:18'), - (5921,218,2,15575,'0.99','2005-08-23 05:30:19','2006-02-15 22:14:18'), - (5922,219,1,414,'0.99','2005-05-27 14:48:20','2006-02-15 22:14:18'), - (5923,219,2,2417,'3.99','2005-06-18 17:12:01','2006-02-15 22:14:18'), - (5924,219,2,2580,'0.99','2005-06-19 04:44:30','2006-02-15 22:14:18'), - (5925,219,2,4678,'0.99','2005-07-08 10:30:40','2006-02-15 22:14:18'), - (5926,219,2,4910,'7.99','2005-07-08 21:13:56','2006-02-15 22:14:18'), - (5927,219,2,5123,'0.99','2005-07-09 07:20:30','2006-02-15 22:14:18'), - (5928,219,2,5416,'4.99','2005-07-09 20:33:50','2006-02-15 22:14:18'), - (5929,219,2,5475,'4.99','2005-07-09 23:31:38','2006-02-15 22:14:18'), - (5930,219,2,5739,'7.99','2005-07-10 11:51:50','2006-02-15 22:14:18'), - (5931,219,2,6172,'4.99','2005-07-11 10:32:09','2006-02-15 22:14:18'), - (5932,219,1,6209,'2.99','2005-07-11 12:36:05','2006-02-15 22:14:18'), - (5933,219,2,6501,'1.99','2005-07-12 03:11:55','2006-02-15 22:14:19'), - (5934,219,2,7335,'2.99','2005-07-27 14:06:50','2006-02-15 22:14:19'), - (5935,219,1,7726,'5.99','2005-07-28 04:52:19','2006-02-15 22:14:19'), - (5936,219,1,8430,'0.99','2005-07-29 07:12:17','2006-02-15 22:14:19'), - (5937,219,2,8536,'4.99','2005-07-29 10:37:23','2006-02-15 22:14:19'), - (5938,219,1,8652,'6.99','2005-07-29 15:02:54','2006-02-15 22:14:19'), - (5939,219,1,9712,'4.99','2005-07-31 08:13:11','2006-02-15 22:14:19'), - (5940,219,1,11328,'2.99','2005-08-02 16:42:38','2006-02-15 22:14:19'), - (5941,219,2,11791,'0.99','2005-08-17 11:01:11','2006-02-15 22:14:19'), - (5942,219,1,13765,'4.99','2005-08-20 11:39:00','2006-02-15 22:14:19'), - (5943,219,2,14029,'0.99','2005-08-20 21:23:11','2006-02-15 22:14:19'), - (5944,219,1,14588,'5.99','2005-08-21 17:25:53','2006-02-15 22:14:19'), - (5945,219,1,14688,'4.99','2005-08-21 20:32:37','2006-02-15 22:14:19'), - (5946,219,1,15283,'4.99','2005-08-22 19:16:04','2006-02-15 22:14:19'), - (5947,219,1,11577,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:19'), - (5948,220,2,409,'0.99','2005-05-27 14:10:58','2006-02-15 22:14:19'), - (5949,220,1,480,'3.99','2005-05-27 22:47:39','2006-02-15 22:14:19'), - (5950,220,1,1832,'0.99','2005-06-16 22:35:20','2006-02-15 22:14:19'), - (5951,220,2,4918,'2.99','2005-07-08 21:37:31','2006-02-15 22:14:19'), - (5952,220,2,5613,'2.99','2005-07-10 05:15:43','2006-02-15 22:14:19'), - (5953,220,2,5847,'2.99','2005-07-10 17:27:42','2006-02-15 22:14:19'), - (5954,220,2,5859,'0.99','2005-07-10 18:02:02','2006-02-15 22:14:19'), - (5955,220,2,6412,'0.99','2005-07-11 23:19:21','2006-02-15 22:14:19'), - (5956,220,2,6832,'8.99','2005-07-12 18:51:41','2006-02-15 22:14:19'), - (5957,220,2,7750,'9.99','2005-07-28 05:55:30','2006-02-15 22:14:19'), - (5958,220,1,8065,'2.99','2005-07-28 17:15:48','2006-02-15 22:14:19'), - (5959,220,1,8398,'4.99','2005-07-29 06:12:40','2006-02-15 22:14:19'), - (5960,220,2,9384,'7.99','2005-07-30 19:25:35','2006-02-15 22:14:19'), - (5961,220,2,9455,'10.99','2005-07-30 22:20:29','2006-02-15 22:14:19'), - (5962,220,1,10099,'2.99','2005-07-31 20:47:14','2006-02-15 22:14:19'), - (5963,220,2,10778,'4.99','2005-08-01 21:11:39','2006-02-15 22:14:19'), - (5964,220,1,10948,'4.99','2005-08-02 03:23:23','2006-02-15 22:14:19'), - (5965,220,1,11037,'0.99','2005-08-02 05:58:12','2006-02-15 22:14:19'), - (5966,220,1,11153,'3.99','2005-08-02 09:54:19','2006-02-15 22:14:20'), - (5967,220,1,11622,'4.99','2005-08-17 04:15:46','2006-02-15 22:14:20'), - (5968,220,2,11947,'2.99','2005-08-17 17:08:13','2006-02-15 22:14:20'), - (5969,220,1,12407,'4.99','2005-08-18 09:39:26','2006-02-15 22:14:20'), - (5970,220,1,12896,'4.99','2005-08-19 03:52:44','2006-02-15 22:14:20'), - (5971,220,2,13123,'2.99','2005-08-19 11:55:13','2006-02-15 22:14:20'), - (5972,220,1,13281,'2.99','2005-08-19 18:07:47','2006-02-15 22:14:20'), - (5973,220,2,14016,'4.99','2005-08-20 20:52:03','2006-02-15 22:14:20'), - (5974,220,2,15706,'4.99','2005-08-23 10:32:52','2006-02-15 22:14:20'), - (5975,221,2,226,'4.99','2005-05-26 10:44:04','2006-02-15 22:14:20'), - (5976,221,1,1369,'0.99','2005-06-15 14:29:14','2006-02-15 22:14:20'), - (5977,221,1,2331,'2.99','2005-06-18 10:50:09','2006-02-15 22:14:20'), - (5978,221,2,2473,'2.99','2005-06-18 20:42:45','2006-02-15 22:14:20'), - (5979,221,1,2660,'10.99','2005-06-19 10:50:02','2006-02-15 22:14:20'), - (5980,221,1,3200,'5.99','2005-06-21 00:22:47','2006-02-15 22:14:20'), - (5981,221,1,4293,'4.99','2005-07-07 15:53:47','2006-02-15 22:14:20'), - (5982,221,2,4649,'4.99','2005-07-08 09:32:05','2006-02-15 22:14:20'), - (5983,221,1,4693,'6.99','2005-07-08 11:07:36','2006-02-15 22:14:20'), - (5984,221,1,5058,'5.99','2005-07-09 04:20:35','2006-02-15 22:14:20'), - (5985,221,2,5920,'5.99','2005-07-10 21:33:58','2006-02-15 22:14:20'), - (5986,221,1,7101,'2.99','2005-07-27 05:06:34','2006-02-15 22:14:20'), - (5987,221,1,7129,'0.99','2005-07-27 06:18:01','2006-02-15 22:14:20'), - (5988,221,2,7531,'8.99','2005-07-27 21:19:34','2006-02-15 22:14:20'), - (5989,221,2,8486,'0.99','2005-07-29 08:53:38','2006-02-15 22:14:20'), - (5990,221,1,9320,'6.99','2005-07-30 17:16:39','2006-02-15 22:14:20'), - (5991,221,1,9453,'7.99','2005-07-30 22:20:04','2006-02-15 22:14:20'), - (5992,221,2,9853,'0.99','2005-07-31 12:58:20','2006-02-15 22:14:20'), - (5993,221,2,11680,'4.99','2005-08-17 06:12:27','2006-02-15 22:14:20'), - (5994,221,1,11693,'4.99','2005-08-17 06:56:56','2006-02-15 22:14:20'), - (5995,221,1,11802,'2.99','2005-08-17 11:32:51','2006-02-15 22:14:20'), - (5996,221,1,12324,'0.99','2005-08-18 06:38:20','2006-02-15 22:14:20'), - (5997,221,2,12620,'3.99','2005-08-18 17:26:38','2006-02-15 22:14:20'), - (5998,221,2,13434,'2.99','2005-08-19 23:34:26','2006-02-15 22:14:20'), - (5999,221,2,14322,'5.99','2005-08-21 08:06:30','2006-02-15 22:14:21'), - (6000,221,2,14371,'0.99','2005-08-21 09:37:16','2006-02-15 22:14:21'), - (6001,221,1,14419,'7.99','2005-08-21 11:15:46','2006-02-15 22:14:21'), - (6002,221,1,15125,'8.99','2005-08-22 12:53:22','2006-02-15 22:14:21'), - (6003,222,1,5,'6.99','2005-05-24 23:05:21','2006-02-15 22:14:21'), - (6004,222,1,134,'4.99','2005-05-25 21:48:41','2006-02-15 22:14:21'), - (6005,222,2,416,'0.99','2005-05-27 15:02:10','2006-02-15 22:14:21'), - (6006,222,2,809,'3.99','2005-05-29 19:10:20','2006-02-15 22:14:21'), - (6007,222,2,1006,'2.99','2005-05-31 00:57:08','2006-02-15 22:14:21'), - (6008,222,1,1368,'8.99','2005-06-15 14:27:47','2006-02-15 22:14:21'), - (6009,222,2,2603,'6.99','2005-06-19 06:21:25','2006-02-15 22:14:21'), - (6010,222,2,5209,'8.99','2005-07-09 11:22:39','2006-02-15 22:14:21'), - (6011,222,1,5266,'3.99','2005-07-09 14:17:40','2006-02-15 22:14:21'), - (6012,222,2,5592,'6.99','2005-07-10 04:26:13','2006-02-15 22:14:21'), - (6013,222,2,5635,'5.99','2005-07-10 06:28:39','2006-02-15 22:14:21'), - (6014,222,2,6129,'2.99','2005-07-11 08:15:09','2006-02-15 22:14:21'), - (6015,222,1,6497,'0.99','2005-07-12 03:04:29','2006-02-15 22:14:21'), - (6016,222,2,7786,'0.99','2005-07-28 07:18:26','2006-02-15 22:14:21'), - (6017,222,1,8300,'1.99','2005-07-29 02:57:59','2006-02-15 22:14:21'), - (6018,222,2,8597,'6.99','2005-07-29 12:55:55','2006-02-15 22:14:21'), - (6019,222,1,8787,'4.99','2005-07-29 20:43:49','2006-02-15 22:14:21'), - (6020,222,2,10043,'1.99','2005-07-31 19:02:07','2006-02-15 22:14:21'), - (6021,222,2,12179,'2.99','2005-08-18 01:21:21','2006-02-15 22:14:21'), - (6022,222,1,13477,'2.99','2005-08-20 01:07:00','2006-02-15 22:14:21'), - (6023,222,2,14350,'2.99','2005-08-21 08:58:38','2006-02-15 22:14:21'), - (6024,223,2,524,'2.99','2005-05-28 03:57:28','2006-02-15 22:14:21'), - (6025,223,2,1839,'5.99','2005-06-16 23:22:22','2006-02-15 22:14:21'), - (6026,223,1,2334,'4.99','2005-06-18 10:56:24','2006-02-15 22:14:21'), - (6027,223,1,3513,'5.99','2005-07-06 00:45:57','2006-02-15 22:14:21'), - (6028,223,1,3705,'0.99','2005-07-06 10:17:59','2006-02-15 22:14:21'), - (6029,223,1,4874,'4.99','2005-07-08 19:23:38','2006-02-15 22:14:21'), - (6030,223,2,5996,'2.99','2005-07-11 01:18:33','2006-02-15 22:14:21'), - (6031,223,2,7085,'5.99','2005-07-27 04:35:44','2006-02-15 22:14:22'), - (6032,223,2,8362,'3.99','2005-07-29 05:09:11','2006-02-15 22:14:22'), - (6033,223,2,10053,'7.99','2005-07-31 19:15:39','2006-02-15 22:14:22'), - (6034,223,2,11040,'4.99','2005-08-02 06:03:22','2006-02-15 22:14:22'), - (6035,223,1,12927,'5.99','2005-08-19 05:02:46','2006-02-15 22:14:22'), - (6036,223,1,13576,'0.99','2005-08-20 05:19:56','2006-02-15 22:14:22'), - (6037,223,2,14496,'4.99','2005-08-21 14:07:35','2006-02-15 22:14:22'), - (6038,223,1,15257,'7.99','2005-08-22 18:21:04','2006-02-15 22:14:22'), - (6039,223,2,15546,'5.99','2005-08-23 04:20:38','2006-02-15 22:14:22'), - (6040,223,1,15662,'2.99','2005-08-23 08:52:50','2006-02-15 22:14:22'), - (6041,224,1,1424,'7.99','2005-06-15 18:08:14','2006-02-15 22:14:22'), - (6042,224,1,2277,'2.99','2005-06-18 06:35:03','2006-02-15 22:14:22'), - (6043,224,2,3282,'4.99','2005-06-21 06:18:42','2006-02-15 22:14:22'), - (6044,224,1,4118,'2.99','2005-07-07 07:03:30','2006-02-15 22:14:22'), - (6045,224,2,4411,'3.99','2005-07-07 21:54:58','2006-02-15 22:14:22'), - (6046,224,1,4697,'2.99','2005-07-08 11:19:14','2006-02-15 22:14:22'), - (6047,224,1,6031,'4.99','2005-07-11 02:42:14','2006-02-15 22:14:22'), - (6048,224,2,6999,'2.99','2005-07-27 01:21:19','2006-02-15 22:14:22'), - (6049,224,2,8255,'0.99','2005-07-29 01:02:30','2006-02-15 22:14:22'), - (6050,224,2,8439,'2.99','2005-07-29 07:28:43','2006-02-15 22:14:23'), - (6051,224,1,8605,'4.99','2005-07-29 13:13:34','2006-02-15 22:14:23'), - (6052,224,1,9181,'0.99','2005-07-30 12:05:58','2006-02-15 22:14:23'), - (6053,224,1,11816,'0.99','2005-08-17 12:14:16','2006-02-15 22:14:23'), - (6054,224,1,12492,'4.99','2005-08-18 12:49:04','2006-02-15 22:14:23'), - (6055,224,1,12969,'2.99','2005-08-19 06:38:59','2006-02-15 22:14:23'), - (6056,224,2,13075,'4.99','2005-08-19 10:10:10','2006-02-15 22:14:23'), - (6057,224,2,14099,'0.99','2005-08-21 00:31:03','2006-02-15 22:14:23'), - (6058,224,2,14271,'5.99','2005-08-21 06:23:29','2006-02-15 22:14:23'), - (6059,224,2,14468,'5.99','2005-08-21 13:07:10','2006-02-15 22:14:23'), - (6060,224,2,14880,'2.99','2005-08-22 03:44:36','2006-02-15 22:14:23'), - (6061,224,1,15225,'0.99','2005-08-22 17:18:32','2006-02-15 22:14:23'), - (6062,224,1,15952,'1.99','2005-08-23 19:11:29','2006-02-15 22:14:23'), - (6063,225,1,812,'4.99','2005-05-29 20:00:30','2006-02-15 22:14:23'), - (6064,225,1,963,'3.99','2005-05-30 18:52:53','2006-02-15 22:14:23'), - (6065,225,2,2226,'7.99','2005-06-18 03:39:56','2006-02-15 22:14:23'), - (6066,225,2,3574,'4.99','2005-07-06 03:36:01','2006-02-15 22:14:23'), - (6067,225,1,4345,'7.99','2005-07-07 18:52:57','2006-02-15 22:14:23'), - (6068,225,1,4824,'7.99','2005-07-08 17:37:39','2006-02-15 22:14:23'), - (6069,225,2,4955,'2.99','2005-07-08 23:16:21','2006-02-15 22:14:24'), - (6070,225,1,5067,'4.99','2005-07-09 04:52:35','2006-02-15 22:14:24'), - (6071,225,1,6159,'2.99','2005-07-11 09:55:34','2006-02-15 22:14:24'), - (6072,225,1,6317,'2.99','2005-07-11 18:47:41','2006-02-15 22:14:24'), - (6073,225,2,6350,'2.99','2005-07-11 20:30:15','2006-02-15 22:14:24'), - (6074,225,1,6526,'3.99','2005-07-12 04:21:20','2006-02-15 22:14:24'), - (6075,225,2,6532,'2.99','2005-07-12 04:38:32','2006-02-15 22:14:24'), - (6076,225,2,7347,'4.99','2005-07-27 14:31:24','2006-02-15 22:14:24'), - (6077,225,1,7524,'6.99','2005-07-27 21:11:44','2006-02-15 22:14:24'), - (6078,225,1,8054,'7.99','2005-07-28 17:02:18','2006-02-15 22:14:25'), - (6079,225,2,8110,'4.99','2005-07-28 19:07:45','2006-02-15 22:14:25'), - (6080,225,1,9980,'4.99','2005-07-31 17:02:00','2006-02-15 22:14:25'), - (6081,225,2,9993,'2.99','2005-07-31 17:30:20','2006-02-15 22:14:25'), - (6082,225,2,10138,'2.99','2005-07-31 22:02:09','2006-02-15 22:14:25'), - (6083,225,1,10793,'2.99','2005-08-01 21:48:03','2006-02-15 22:14:25'), - (6084,225,2,11333,'1.99','2005-08-02 16:53:00','2006-02-15 22:14:25'), - (6085,225,2,11384,'0.99','2005-08-02 18:23:01','2006-02-15 22:14:25'), - (6086,225,2,11395,'5.99','2005-08-02 18:47:44','2006-02-15 22:14:25'), - (6087,225,2,11437,'4.99','2005-08-02 20:20:06','2006-02-15 22:14:25'), - (6088,225,2,14444,'5.99','2005-08-21 12:07:25','2006-02-15 22:14:25'), - (6089,226,2,3414,'2.99','2005-06-21 16:58:50','2006-02-15 22:14:25'), - (6090,226,1,3466,'4.99','2005-06-21 22:13:33','2006-02-15 22:14:25'), - (6091,226,1,3721,'4.99','2005-07-06 11:10:09','2006-02-15 22:14:25'), - (6092,226,1,4324,'4.99','2005-07-07 17:57:56','2006-02-15 22:14:25'), - (6093,226,1,5282,'2.99','2005-07-09 15:01:23','2006-02-15 22:14:25'), - (6094,226,1,5419,'2.99','2005-07-09 20:47:36','2006-02-15 22:14:25'), - (6095,226,1,6712,'9.99','2005-07-12 13:24:47','2006-02-15 22:14:25'), - (6096,226,2,7288,'5.99','2005-07-27 12:24:59','2006-02-15 22:14:25'), - (6097,226,1,7329,'3.99','2005-07-27 13:55:34','2006-02-15 22:14:25'), - (6098,226,2,8600,'2.99','2005-07-29 13:01:19','2006-02-15 22:14:25'), - (6099,226,1,8627,'2.99','2005-07-29 14:05:12','2006-02-15 22:14:25'), - (6100,226,1,12172,'1.99','2005-08-18 01:07:00','2006-02-15 22:14:25'), - (6101,226,1,14491,'6.99','2005-08-21 13:55:39','2006-02-15 22:14:25'), - (6102,226,1,14708,'4.99','2005-08-21 21:07:23','2006-02-15 22:14:26'), - (6103,226,1,14712,'0.99','2005-08-21 21:22:56','2006-02-15 22:14:26'), - (6104,226,2,14739,'0.99','2005-08-21 22:33:22','2006-02-15 22:14:26'), - (6105,226,2,14934,'4.99','2005-08-22 05:47:15','2006-02-15 22:14:26'), - (6106,226,2,15472,'2.99','2005-08-23 01:39:05','2006-02-15 22:14:26'), - (6107,226,1,15901,'4.99','2005-08-23 17:19:17','2006-02-15 22:14:26'), - (6108,226,1,15986,'2.99','2005-08-23 20:20:37','2006-02-15 22:14:26'), - (6109,226,1,16033,'5.99','2005-08-23 22:06:15','2006-02-15 22:14:26'), - (6110,227,1,111,'4.99','2005-05-25 18:45:19','2006-02-15 22:14:26'), - (6111,227,1,1023,'3.99','2005-05-31 03:26:50','2006-02-15 22:14:26'), - (6112,227,1,1679,'2.99','2005-06-16 11:11:01','2006-02-15 22:14:26'), - (6113,227,2,2155,'1.99','2005-06-17 23:07:29','2006-02-15 22:14:26'), - (6114,227,1,2164,'6.99','2005-06-17 23:46:21','2006-02-15 22:14:26'), - (6115,227,2,3065,'0.99','2005-06-20 13:53:53','2006-02-15 22:14:26'), - (6116,227,1,3576,'5.99','2005-07-06 03:40:01','2006-02-15 22:14:26'), - (6117,227,2,4340,'2.99','2005-07-07 18:41:46','2006-02-15 22:14:26'), - (6118,227,2,4459,'4.99','2005-07-07 23:48:52','2006-02-15 22:14:26'), - (6119,227,1,4680,'2.99','2005-07-08 10:35:28','2006-02-15 22:14:26'), - (6120,227,1,5046,'3.99','2005-07-09 03:34:57','2006-02-15 22:14:26'), - (6121,227,1,7132,'7.99','2005-07-27 06:28:34','2006-02-15 22:14:26'), - (6122,227,1,8219,'2.99','2005-07-28 23:46:31','2006-02-15 22:14:26'), - (6123,227,1,8234,'0.99','2005-07-29 00:19:20','2006-02-15 22:14:26'), - (6124,227,1,8384,'0.99','2005-07-29 05:38:43','2006-02-15 22:14:26'), - (6125,227,2,8417,'4.99','2005-07-29 06:53:36','2006-02-15 22:14:26'), - (6126,227,1,8936,'2.99','2005-07-30 02:47:13','2006-02-15 22:14:26'), - (6127,227,2,9521,'2.99','2005-07-31 00:52:24','2006-02-15 22:14:26'), - (6128,227,2,10999,'3.99','2005-08-02 04:53:13','2006-02-15 22:14:26'), - (6129,227,2,11892,'0.99','2005-08-17 15:13:21','2006-02-15 22:14:26'), - (6130,227,2,13379,'4.99','2005-08-19 21:33:39','2006-02-15 22:14:26'), - (6131,227,2,15406,'0.99','2005-08-22 23:21:22','2006-02-15 22:14:26'), - (6132,227,2,15976,'4.99','2005-08-23 20:07:08','2006-02-15 22:14:27'), - (6133,227,2,13374,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:27'), - (6134,228,2,492,'4.99','2005-05-28 00:24:58','2006-02-15 22:14:27'), - (6135,228,2,1070,'0.99','2005-05-31 09:39:56','2006-02-15 22:14:27'), - (6136,228,2,2284,'3.99','2005-06-18 06:59:51','2006-02-15 22:14:27'), - (6137,228,2,2863,'2.99','2005-06-19 23:58:38','2006-02-15 22:14:27'), - (6138,228,2,2934,'2.99','2005-06-20 05:05:53','2006-02-15 22:14:27'), - (6139,228,2,3433,'3.99','2005-06-21 19:07:19','2006-02-15 22:14:27'), - (6140,228,2,3538,'0.99','2005-07-06 01:37:07','2006-02-15 22:14:27'), - (6141,228,2,3710,'8.99','2005-07-06 10:28:53','2006-02-15 22:14:27'), - (6142,228,1,3715,'6.99','2005-07-06 10:51:48','2006-02-15 22:14:27'), - (6143,228,2,3796,'0.99','2005-07-06 14:45:22','2006-02-15 22:14:27'), - (6144,228,1,4217,'3.99','2005-07-07 12:08:59','2006-02-15 22:14:27'), - (6145,228,1,4636,'4.99','2005-07-08 08:44:32','2006-02-15 22:14:27'), - (6146,228,1,4909,'0.99','2005-07-08 21:07:24','2006-02-15 22:14:27'), - (6147,228,1,5151,'2.99','2005-07-09 08:31:03','2006-02-15 22:14:28'), - (6148,228,1,5320,'4.99','2005-07-09 16:23:32','2006-02-15 22:14:28'), - (6149,228,2,5902,'0.99','2005-07-10 20:31:24','2006-02-15 22:14:28'), - (6150,228,2,6141,'1.99','2005-07-11 08:52:16','2006-02-15 22:14:28'), - (6151,228,1,6948,'2.99','2005-07-26 23:43:49','2006-02-15 22:14:28'), - (6152,228,2,7509,'8.99','2005-07-27 20:37:19','2006-02-15 22:14:28'), - (6153,228,1,7601,'0.99','2005-07-27 23:48:15','2006-02-15 22:14:28'), - (6154,228,1,8147,'2.99','2005-07-28 20:37:56','2006-02-15 22:14:28'), - (6155,228,1,10585,'4.99','2005-08-01 14:00:42','2006-02-15 22:14:28'), - (6156,228,1,12304,'0.99','2005-08-18 05:44:29','2006-02-15 22:14:28'), - (6157,228,2,12952,'2.99','2005-08-19 06:00:52','2006-02-15 22:14:28'), - (6158,228,2,13458,'4.99','2005-08-20 00:35:30','2006-02-15 22:14:28'), - (6159,228,2,12672,'3.98','2006-02-14 15:16:03','2006-02-15 22:14:28'), - (6160,228,1,15234,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:28'), - (6161,229,1,2200,'4.99','2005-06-18 01:59:16','2006-02-15 22:14:28'), - (6162,229,1,3208,'0.99','2005-06-21 00:50:03','2006-02-15 22:14:28'), - (6163,229,1,3277,'7.99','2005-06-21 05:36:37','2006-02-15 22:14:28'), - (6164,229,2,3280,'0.99','2005-06-21 06:08:12','2006-02-15 22:14:28'), - (6165,229,2,3933,'4.99','2005-07-06 21:06:37','2006-02-15 22:14:28'), - (6166,229,2,4458,'2.99','2005-07-07 23:47:47','2006-02-15 22:14:28'), - (6167,229,1,4515,'4.99','2005-07-08 02:42:03','2006-02-15 22:14:28'), - (6168,229,2,4694,'0.99','2005-07-08 11:07:37','2006-02-15 22:14:28'), - (6169,229,1,5623,'2.99','2005-07-10 05:41:38','2006-02-15 22:14:29'), - (6170,229,2,6155,'4.99','2005-07-11 09:45:31','2006-02-15 22:14:29'), - (6171,229,2,6578,'4.99','2005-07-12 06:15:41','2006-02-15 22:14:29'), - (6172,229,1,6880,'2.99','2005-07-12 20:41:35','2006-02-15 22:14:29'), - (6173,229,2,7305,'0.99','2005-07-27 12:57:06','2006-02-15 22:14:29'), - (6174,229,2,7308,'5.99','2005-07-27 13:00:25','2006-02-15 22:14:29'), - (6175,229,2,7629,'0.99','2005-07-28 01:00:09','2006-02-15 22:14:29'), - (6176,229,2,7640,'7.99','2005-07-28 01:14:49','2006-02-15 22:14:29'), - (6177,229,2,9913,'3.99','2005-07-31 14:51:04','2006-02-15 22:14:29'), - (6178,229,1,11521,'4.99','2005-08-17 00:04:54','2006-02-15 22:14:29'), - (6179,229,1,12866,'2.99','2005-08-19 02:39:47','2006-02-15 22:14:29'), - (6180,229,2,13306,'0.99','2005-08-19 18:57:29','2006-02-15 22:14:29'), - (6181,229,2,13431,'4.99','2005-08-19 23:28:15','2006-02-15 22:14:29'), - (6182,229,1,13679,'5.99','2005-08-20 08:39:34','2006-02-15 22:14:29'), - (6183,229,1,15740,'4.99','2005-08-23 12:07:51','2006-02-15 22:14:29'), - (6184,229,2,15912,'2.99','2005-08-23 17:47:40','2006-02-15 22:14:29'), - (6185,229,2,13295,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:29'), - (6186,230,1,32,'0.99','2005-05-25 04:06:21','2006-02-15 22:14:29'), - (6187,230,1,1078,'4.99','2005-05-31 10:28:33','2006-02-15 22:14:29'), - (6188,230,2,1468,'3.99','2005-06-15 20:48:22','2006-02-15 22:14:30'), - (6189,230,1,1744,'4.99','2005-06-16 16:39:58','2006-02-15 22:14:30'), - (6190,230,2,1793,'0.99','2005-06-16 20:07:27','2006-02-15 22:14:30'), - (6191,230,2,2450,'8.99','2005-06-18 19:25:47','2006-02-15 22:14:30'), - (6192,230,2,2675,'0.99','2005-06-19 11:52:15','2006-02-15 22:14:30'), - (6193,230,1,2777,'0.99','2005-06-19 18:16:26','2006-02-15 22:14:30'), - (6194,230,1,4509,'3.99','2005-07-08 02:32:38','2006-02-15 22:14:30'), - (6195,230,1,4935,'0.99','2005-07-08 22:20:56','2006-02-15 22:14:30'), - (6196,230,1,5045,'4.99','2005-07-09 03:33:32','2006-02-15 22:14:30'), - (6197,230,1,5061,'0.99','2005-07-09 04:30:50','2006-02-15 22:14:30'), - (6198,230,2,5269,'2.99','2005-07-09 14:23:05','2006-02-15 22:14:30'), - (6199,230,2,6126,'4.99','2005-07-11 08:06:56','2006-02-15 22:14:30'), - (6200,230,1,6251,'2.99','2005-07-11 15:06:20','2006-02-15 22:14:30'), - (6201,230,2,7333,'4.99','2005-07-27 13:59:11','2006-02-15 22:14:30'), - (6202,230,2,7390,'4.99','2005-07-27 15:59:19','2006-02-15 22:14:30'), - (6203,230,2,8032,'4.99','2005-07-28 16:17:00','2006-02-15 22:14:30'), - (6204,230,2,8653,'0.99','2005-07-29 15:04:23','2006-02-15 22:14:30'), - (6205,230,1,8815,'2.99','2005-07-29 21:51:26','2006-02-15 22:14:30'), - (6206,230,2,9778,'3.99','2005-07-31 10:02:04','2006-02-15 22:14:30'), - (6207,230,2,10050,'3.99','2005-07-31 19:13:29','2006-02-15 22:14:30'), - (6208,230,1,10057,'9.99','2005-07-31 19:20:18','2006-02-15 22:14:30'), - (6209,230,2,10874,'2.99','2005-08-02 00:31:00','2006-02-15 22:14:30'), - (6210,230,2,11148,'5.99','2005-08-02 09:47:08','2006-02-15 22:14:30'), - (6211,230,1,11552,'5.99','2005-08-17 01:04:29','2006-02-15 22:14:30'), - (6212,230,2,11914,'2.99','2005-08-17 16:04:42','2006-02-15 22:14:30'), - (6213,230,1,12079,'1.99','2005-08-17 22:04:17','2006-02-15 22:14:30'), - (6214,230,2,12523,'7.99','2005-08-18 13:45:41','2006-02-15 22:14:30'), - (6215,230,2,12542,'0.99','2005-08-18 14:21:11','2006-02-15 22:14:31'), - (6216,230,2,14017,'0.99','2005-08-20 20:55:32','2006-02-15 22:14:31'), - (6217,230,1,14073,'5.99','2005-08-20 23:12:57','2006-02-15 22:14:31'), - (6218,230,1,14340,'2.99','2005-08-21 08:38:21','2006-02-15 22:14:31'), - (6219,231,1,329,'5.99','2005-05-27 01:57:14','2006-02-15 22:14:31'), - (6220,231,1,479,'6.99','2005-05-27 22:39:10','2006-02-15 22:14:31'), - (6221,231,1,512,'8.99','2005-05-28 03:07:50','2006-02-15 22:14:31'), - (6222,231,2,2423,'0.99','2005-06-18 17:32:08','2006-02-15 22:14:31'), - (6223,231,2,3561,'9.99','2005-07-06 02:54:33','2006-02-15 22:14:31'), - (6224,231,1,3839,'2.99','2005-07-06 16:30:30','2006-02-15 22:14:31'), - (6225,231,2,4289,'0.99','2005-07-07 15:45:58','2006-02-15 22:14:31'), - (6226,231,2,4969,'0.99','2005-07-08 23:51:26','2006-02-15 22:14:31'), - (6227,231,1,5096,'2.99','2005-07-09 06:08:23','2006-02-15 22:14:31'), - (6228,231,1,5560,'5.99','2005-07-10 03:13:24','2006-02-15 22:14:31'), - (6229,231,1,6862,'0.99','2005-07-12 19:58:09','2006-02-15 22:14:31'), - (6230,231,1,6877,'1.99','2005-07-12 20:32:58','2006-02-15 22:14:31'), - (6231,231,1,8556,'0.99','2005-07-29 11:18:27','2006-02-15 22:14:31'), - (6232,231,2,8949,'5.99','2005-07-30 03:17:02','2006-02-15 22:14:31'), - (6233,231,2,9711,'2.99','2005-07-31 08:06:41','2006-02-15 22:14:31'), - (6234,231,2,11113,'2.99','2005-08-02 08:26:24','2006-02-15 22:14:31'), - (6235,231,1,11202,'7.99','2005-08-02 11:51:57','2006-02-15 22:14:31'), - (6236,231,1,11581,'5.99','2005-08-17 02:03:02','2006-02-15 22:14:32'), - (6237,231,1,12214,'0.99','2005-08-18 02:34:22','2006-02-15 22:14:32'), - (6238,231,2,12230,'8.99','2005-08-18 03:11:04','2006-02-15 22:14:32'), - (6239,231,1,12231,'3.99','2005-08-18 03:11:44','2006-02-15 22:14:32'), - (6240,231,2,13983,'6.99','2005-08-20 19:08:32','2006-02-15 22:14:32'), - (6241,231,1,14026,'0.99','2005-08-20 21:21:08','2006-02-15 22:14:32'), - (6242,231,1,14478,'4.99','2005-08-21 13:33:28','2006-02-15 22:14:32'), - (6243,231,2,14806,'2.99','2005-08-22 00:53:08','2006-02-15 22:14:32'), - (6244,231,1,15389,'3.99','2005-08-22 22:51:13','2006-02-15 22:14:33'), - (6245,232,1,28,'4.99','2005-05-25 03:42:37','2006-02-15 22:14:33'), - (6246,232,1,805,'3.99','2005-05-29 18:18:18','2006-02-15 22:14:33'), - (6247,232,2,1619,'0.99','2005-06-16 07:14:13','2006-02-15 22:14:33'), - (6248,232,1,2833,'8.99','2005-06-19 21:34:54','2006-02-15 22:14:33'), - (6249,232,2,6234,'5.99','2005-07-11 14:16:10','2006-02-15 22:14:33'), - (6250,232,1,6309,'2.99','2005-07-11 18:13:24','2006-02-15 22:14:33'), - (6251,232,1,7123,'5.99','2005-07-27 06:08:48','2006-02-15 22:14:33'), - (6252,232,2,7653,'4.99','2005-07-28 01:58:30','2006-02-15 22:14:33'), - (6253,232,2,7707,'0.99','2005-07-28 04:07:47','2006-02-15 22:14:33'), - (6254,232,1,7749,'2.99','2005-07-28 05:53:36','2006-02-15 22:14:33'), - (6255,232,1,7990,'2.99','2005-07-28 14:43:08','2006-02-15 22:14:33'), - (6256,232,1,8306,'2.99','2005-07-29 03:12:26','2006-02-15 22:14:33'), - (6257,232,2,8401,'4.99','2005-07-29 06:25:08','2006-02-15 22:14:33'), - (6258,232,2,8655,'4.99','2005-07-29 15:04:42','2006-02-15 22:14:33'), - (6259,232,2,9270,'0.99','2005-07-30 15:03:16','2006-02-15 22:14:33'), - (6260,232,2,9330,'10.99','2005-07-30 17:44:24','2006-02-15 22:14:33'), - (6261,232,2,9365,'2.99','2005-07-30 18:46:02','2006-02-15 22:14:33'), - (6262,232,2,10157,'2.99','2005-07-31 22:38:48','2006-02-15 22:14:33'), - (6263,232,1,10539,'6.99','2005-08-01 12:23:00','2006-02-15 22:14:33'), - (6264,232,2,11861,'0.99','2005-08-17 13:53:47','2006-02-15 22:14:33'), - (6265,232,2,12853,'2.99','2005-08-19 02:15:32','2006-02-15 22:14:33'), - (6266,232,2,13707,'2.99','2005-08-20 09:33:58','2006-02-15 22:14:33'), - (6267,232,2,14527,'0.99','2005-08-21 15:07:42','2006-02-15 22:14:33'), - (6268,232,2,14857,'0.99','2005-08-22 02:42:39','2006-02-15 22:14:33'), - (6269,232,2,15553,'2.99','2005-08-23 04:33:39','2006-02-15 22:14:33'), - (6270,233,2,1992,'2.99','2005-06-17 10:58:53','2006-02-15 22:14:33'), - (6271,233,2,2244,'2.99','2005-06-18 04:46:33','2006-02-15 22:14:33'), - (6272,233,1,2424,'2.99','2005-06-18 17:35:08','2006-02-15 22:14:33'), - (6273,233,2,2443,'4.99','2005-06-18 18:52:30','2006-02-15 22:14:33'), - (6274,233,1,3832,'2.99','2005-07-06 16:12:23','2006-02-15 22:14:34'), - (6275,233,1,4015,'5.99','2005-07-07 00:59:46','2006-02-15 22:14:34'), - (6276,233,1,4885,'4.99','2005-07-08 19:51:17','2006-02-15 22:14:34'), - (6277,233,2,5267,'5.99','2005-07-09 14:21:10','2006-02-15 22:14:34'), - (6278,233,1,5846,'2.99','2005-07-10 17:25:24','2006-02-15 22:14:34'), - (6279,233,1,6319,'4.99','2005-07-11 18:50:45','2006-02-15 22:14:34'), - (6280,233,1,6794,'2.99','2005-07-12 16:38:23','2006-02-15 22:14:34'), - (6281,233,1,7056,'8.99','2005-07-27 03:46:27','2006-02-15 22:14:34'), - (6282,233,2,7387,'4.99','2005-07-27 15:54:19','2006-02-15 22:14:34'), - (6283,233,2,8385,'5.99','2005-07-29 05:39:16','2006-02-15 22:14:34'), - (6284,233,2,8530,'2.99','2005-07-29 10:26:14','2006-02-15 22:14:34'), - (6285,233,2,8596,'0.99','2005-07-29 12:48:54','2006-02-15 22:14:34'), - (6286,233,1,9574,'0.99','2005-07-31 02:49:20','2006-02-15 22:14:34'), - (6287,233,1,10582,'4.99','2005-08-01 13:54:22','2006-02-15 22:14:34'), - (6288,233,1,12443,'5.99','2005-08-18 10:50:59','2006-02-15 22:14:34'), - (6289,233,2,14357,'2.99','2005-08-21 09:13:09','2006-02-15 22:14:34'), - (6290,233,2,15285,'2.99','2005-08-22 19:17:24','2006-02-15 22:14:34'), - (6291,233,1,15790,'1.99','2005-08-23 14:01:07','2006-02-15 22:14:34'), - (6292,233,2,15821,'0.99','2005-08-23 15:03:58','2006-02-15 22:14:34'), - (6293,234,2,1125,'4.99','2005-05-31 17:23:44','2006-02-15 22:14:34'), - (6294,234,2,1245,'3.99','2005-06-15 05:09:01','2006-02-15 22:14:34'), - (6295,234,2,1645,'0.99','2005-06-16 09:10:06','2006-02-15 22:14:34'), - (6296,234,1,1674,'2.99','2005-06-16 10:57:00','2006-02-15 22:14:34'), - (6297,234,2,1993,'5.99','2005-06-17 10:59:24','2006-02-15 22:14:34'), - (6298,234,1,2005,'4.99','2005-06-17 11:44:54','2006-02-15 22:14:34'), - (6299,234,2,2511,'5.99','2005-06-18 23:45:30','2006-02-15 22:14:34'), - (6300,234,2,3185,'6.99','2005-06-20 22:58:01','2006-02-15 22:14:34'), - (6301,234,2,3199,'4.99','2005-06-21 00:12:40','2006-02-15 22:14:34'), - (6302,234,2,4686,'0.99','2005-07-08 10:53:39','2006-02-15 22:14:34'), - (6303,234,1,4721,'7.99','2005-07-08 12:39:31','2006-02-15 22:14:34'), - (6304,234,2,10133,'5.99','2005-07-31 21:55:07','2006-02-15 22:14:34'), - (6305,234,2,10541,'0.99','2005-08-01 12:24:54','2006-02-15 22:14:35'), - (6306,234,2,10580,'6.99','2005-08-01 13:51:14','2006-02-15 22:14:35'), - (6307,234,2,10968,'7.99','2005-08-02 04:03:13','2006-02-15 22:14:35'), - (6308,234,1,11050,'4.99','2005-08-02 06:17:16','2006-02-15 22:14:35'), - (6309,234,1,11073,'0.99','2005-08-02 07:13:03','2006-02-15 22:14:35'), - (6310,234,1,11481,'3.99','2005-08-02 22:18:41','2006-02-15 22:14:35'), - (6311,234,1,11882,'3.99','2005-08-17 14:33:41','2006-02-15 22:14:35'), - (6312,234,1,12226,'0.99','2005-08-18 03:00:48','2006-02-15 22:14:35'), - (6313,234,2,12863,'4.99','2005-08-19 02:35:59','2006-02-15 22:14:35'), - (6314,234,1,12921,'5.99','2005-08-19 04:47:48','2006-02-15 22:14:35'), - (6315,234,2,13349,'2.99','2005-08-19 20:43:16','2006-02-15 22:14:35'), - (6316,234,2,15037,'5.99','2005-08-22 09:36:33','2006-02-15 22:14:35'), - (6317,234,1,15129,'2.99','2005-08-22 13:03:52','2006-02-15 22:14:35'), - (6318,234,1,15778,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:35'), - (6319,235,2,807,'2.99','2005-05-29 18:50:50','2006-02-15 22:14:35'), - (6320,235,1,1148,'0.99','2005-05-31 20:38:40','2006-02-15 22:14:35'), - (6321,235,1,1493,'4.99','2005-06-15 21:50:32','2006-02-15 22:14:35'), - (6322,235,2,1811,'0.99','2005-06-16 21:06:20','2006-02-15 22:14:35'), - (6323,235,2,3581,'2.99','2005-07-06 03:57:35','2006-02-15 22:14:35'), - (6324,235,1,3752,'6.99','2005-07-06 12:30:12','2006-02-15 22:14:35'), - (6325,235,1,3968,'4.99','2005-07-06 22:47:09','2006-02-15 22:14:35'), - (6326,235,2,4592,'2.99','2005-07-08 06:31:28','2006-02-15 22:14:35'), - (6327,235,1,5790,'4.99','2005-07-10 14:15:21','2006-02-15 22:14:35'), - (6328,235,1,6047,'2.99','2005-07-11 03:27:01','2006-02-15 22:14:35'), - (6329,235,2,6352,'4.99','2005-07-11 20:34:13','2006-02-15 22:14:35'), - (6330,235,2,6466,'4.99','2005-07-12 01:21:03','2006-02-15 22:14:35'), - (6331,235,1,8120,'0.99','2005-07-28 19:24:24','2006-02-15 22:14:35'), - (6332,235,2,8446,'6.99','2005-07-29 07:38:10','2006-02-15 22:14:35'), - (6333,235,2,8781,'0.99','2005-07-29 20:20:16','2006-02-15 22:14:35'), - (6334,235,1,9019,'5.99','2005-07-30 05:28:53','2006-02-15 22:14:35'), - (6335,235,2,9519,'6.99','2005-07-31 00:45:57','2006-02-15 22:14:35'), - (6336,235,1,9587,'3.99','2005-07-31 03:10:30','2006-02-15 22:14:36'), - (6337,235,2,10155,'0.99','2005-07-31 22:31:43','2006-02-15 22:14:36'), - (6338,235,2,12332,'2.99','2005-08-18 06:51:05','2006-02-15 22:14:36'), - (6339,235,1,12502,'4.99','2005-08-18 13:16:31','2006-02-15 22:14:36'), - (6340,235,2,13070,'0.99','2005-08-19 09:56:23','2006-02-15 22:14:36'), - (6341,235,1,13469,'0.99','2005-08-20 00:59:36','2006-02-15 22:14:36'), - (6342,235,2,14749,'3.99','2005-08-21 23:08:33','2006-02-15 22:14:36'), - (6343,235,1,15034,'6.99','2005-08-22 09:33:08','2006-02-15 22:14:36'), - (6344,236,2,262,'2.99','2005-05-26 15:46:56','2006-02-15 22:14:36'), - (6345,236,2,344,'2.99','2005-05-27 04:30:22','2006-02-15 22:14:36'), - (6346,236,1,1032,'2.99','2005-05-31 04:28:43','2006-02-15 22:14:36'), - (6347,236,1,1262,'0.99','2005-06-15 06:54:53','2006-02-15 22:14:36'), - (6348,236,2,1308,'5.99','2005-06-15 10:07:48','2006-02-15 22:14:36'), - (6349,236,2,2139,'8.99','2005-06-17 21:29:34','2006-02-15 22:14:36'), - (6350,236,2,2311,'6.99','2005-06-18 08:51:29','2006-02-15 22:14:36'), - (6351,236,1,2630,'2.99','2005-06-19 08:47:21','2006-02-15 22:14:36'), - (6352,236,2,2840,'3.99','2005-06-19 22:17:44','2006-02-15 22:14:36'), - (6353,236,1,3353,'4.99','2005-06-21 11:29:23','2006-02-15 22:14:36'), - (6354,236,2,3460,'2.99','2005-06-21 21:46:56','2006-02-15 22:14:36'), - (6355,236,1,3645,'0.99','2005-07-06 07:22:09','2006-02-15 22:14:36'), - (6356,236,2,3857,'4.99','2005-07-06 17:07:54','2006-02-15 22:14:36'), - (6357,236,2,4749,'4.99','2005-07-08 14:05:58','2006-02-15 22:14:36'), - (6358,236,1,4959,'0.99','2005-07-08 23:22:23','2006-02-15 22:14:36'), - (6359,236,1,5404,'2.99','2005-07-09 20:10:43','2006-02-15 22:14:36'), - (6360,236,1,5545,'3.99','2005-07-10 02:50:29','2006-02-15 22:14:36'), - (6361,236,2,5938,'3.99','2005-07-10 22:17:42','2006-02-15 22:14:36'), - (6362,236,2,6049,'0.99','2005-07-11 03:32:32','2006-02-15 22:14:36'), - (6363,236,2,6281,'4.99','2005-07-11 16:38:16','2006-02-15 22:14:36'), - (6364,236,1,6303,'2.99','2005-07-11 17:55:43','2006-02-15 22:14:36'), - (6365,236,2,6996,'4.99','2005-07-27 01:13:45','2006-02-15 22:14:36'), - (6366,236,2,7047,'4.99','2005-07-27 03:31:11','2006-02-15 22:14:36'), - (6367,236,2,7253,'0.99','2005-07-27 10:46:37','2006-02-15 22:14:37'), - (6368,236,1,7780,'5.99','2005-07-28 07:11:55','2006-02-15 22:14:37'), - (6369,236,1,7792,'4.99','2005-07-28 07:24:02','2006-02-15 22:14:37'), - (6370,236,2,7798,'2.99','2005-07-28 07:41:59','2006-02-15 22:14:37'), - (6371,236,1,8657,'2.99','2005-07-29 15:09:25','2006-02-15 22:14:37'), - (6372,236,1,9011,'5.99','2005-07-30 05:16:29','2006-02-15 22:14:37'), - (6373,236,1,9934,'2.99','2005-07-31 15:25:26','2006-02-15 22:14:37'), - (6374,236,2,10137,'4.99','2005-07-31 22:01:41','2006-02-15 22:14:37'), - (6375,236,2,11139,'6.99','2005-08-02 09:27:36','2006-02-15 22:14:37'), - (6376,236,2,11486,'3.99','2005-08-02 22:34:06','2006-02-15 22:14:37'), - (6377,236,2,11507,'5.99','2005-08-16 23:26:43','2006-02-15 22:14:37'), - (6378,236,1,11895,'4.99','2005-08-17 15:15:07','2006-02-15 22:14:37'), - (6379,236,1,12975,'2.99','2005-08-19 06:51:19','2006-02-15 22:14:37'), - (6380,236,1,13364,'2.99','2005-08-19 21:09:30','2006-02-15 22:14:37'), - (6381,236,1,13443,'7.99','2005-08-19 23:53:42','2006-02-15 22:14:37'), - (6382,236,2,14321,'4.99','2005-08-21 08:05:12','2006-02-15 22:14:37'), - (6383,236,1,14364,'7.99','2005-08-21 09:25:11','2006-02-15 22:14:37'), - (6384,236,2,14722,'4.99','2005-08-21 21:50:53','2006-02-15 22:14:37'), - (6385,236,1,12988,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:37'), - (6386,237,2,133,'0.99','2005-05-25 21:48:30','2006-02-15 22:14:37'), - (6387,237,1,182,'4.99','2005-05-26 04:49:17','2006-02-15 22:14:37'), - (6388,237,1,1500,'0.99','2005-06-15 22:00:45','2006-02-15 22:14:37'), - (6389,237,2,1518,'0.99','2005-06-15 23:36:37','2006-02-15 22:14:37'), - (6390,237,1,2156,'4.99','2005-06-17 23:08:12','2006-02-15 22:14:37'), - (6391,237,1,2492,'2.99','2005-06-18 22:04:15','2006-02-15 22:14:37'), - (6392,237,2,3069,'2.99','2005-06-20 14:13:00','2006-02-15 22:14:37'), - (6393,237,1,4844,'4.99','2005-07-08 18:28:13','2006-02-15 22:14:37'), - (6394,237,2,6053,'4.99','2005-07-11 03:51:59','2006-02-15 22:14:37'), - (6395,237,1,7193,'2.99','2005-07-27 08:37:00','2006-02-15 22:14:37'), - (6396,237,2,7330,'3.99','2005-07-27 13:56:46','2006-02-15 22:14:37'), - (6397,237,1,7812,'4.99','2005-07-28 08:06:52','2006-02-15 22:14:37'), - (6398,237,2,7951,'8.99','2005-07-28 13:21:16','2006-02-15 22:14:38'), - (6399,237,2,8102,'2.99','2005-07-28 18:49:43','2006-02-15 22:14:38'), - (6400,237,2,8748,'2.99','2005-07-29 19:08:37','2006-02-15 22:14:38'), - (6401,237,2,8799,'6.99','2005-07-29 21:16:47','2006-02-15 22:14:38'), - (6402,237,1,8835,'3.99','2005-07-29 22:44:35','2006-02-15 22:14:38'), - (6403,237,1,9276,'5.99','2005-07-30 15:09:28','2006-02-15 22:14:38'), - (6404,237,1,9661,'4.99','2005-07-31 06:06:37','2006-02-15 22:14:38'), - (6405,237,2,9715,'1.99','2005-07-31 08:16:58','2006-02-15 22:14:38'), - (6406,237,2,10056,'0.99','2005-07-31 19:19:13','2006-02-15 22:14:38'), - (6407,237,2,10058,'2.99','2005-07-31 19:20:21','2006-02-15 22:14:38'), - (6408,237,2,11125,'4.99','2005-08-02 08:55:35','2006-02-15 22:14:38'), - (6409,237,2,11479,'11.99','2005-08-02 22:18:13','2006-02-15 22:14:38'), - (6410,237,2,11772,'5.99','2005-08-17 10:18:57','2006-02-15 22:14:38'), - (6411,237,1,12469,'0.99','2005-08-18 11:53:07','2006-02-15 22:14:38'), - (6412,237,2,13914,'6.99','2005-08-20 16:38:57','2006-02-15 22:14:38'), - (6413,237,2,13922,'6.99','2005-08-20 17:02:37','2006-02-15 22:14:38'), - (6414,237,2,13969,'6.99','2005-08-20 18:42:40','2006-02-15 22:14:38'), - (6415,237,2,14453,'3.99','2005-08-21 12:33:34','2006-02-15 22:14:38'), - (6416,237,2,15139,'8.99','2005-08-22 13:38:11','2006-02-15 22:14:38'), - (6417,237,1,15337,'0.99','2005-08-22 20:49:51','2006-02-15 22:14:38'), - (6418,237,2,15931,'1.99','2005-08-23 18:28:09','2006-02-15 22:14:38'), - (6419,238,2,315,'4.99','2005-05-26 23:12:55','2006-02-15 22:14:38'), - (6420,238,1,842,'2.99','2005-05-30 00:32:04','2006-02-15 22:14:38'), - (6421,238,1,1199,'2.99','2005-06-15 01:58:50','2006-02-15 22:14:38'), - (6422,238,1,1660,'4.99','2005-06-16 10:12:55','2006-02-15 22:14:38'), - (6423,238,1,3181,'2.99','2005-06-20 22:51:02','2006-02-15 22:14:38'), - (6424,238,1,4143,'0.99','2005-07-07 08:22:07','2006-02-15 22:14:38'), - (6425,238,1,5616,'5.99','2005-07-10 05:21:11','2006-02-15 22:14:38'), - (6426,238,2,6403,'0.99','2005-07-11 22:46:25','2006-02-15 22:14:38'), - (6427,238,2,7243,'4.99','2005-07-27 10:26:11','2006-02-15 22:14:38'), - (6428,238,1,8310,'8.99','2005-07-29 03:25:56','2006-02-15 22:14:38'), - (6429,238,1,8382,'6.99','2005-07-29 05:33:21','2006-02-15 22:14:39'), - (6430,238,1,8465,'0.99','2005-07-29 08:20:49','2006-02-15 22:14:39'), - (6431,238,1,9065,'4.99','2005-07-30 07:25:09','2006-02-15 22:14:39'), - (6432,238,2,9841,'7.99','2005-07-31 12:24:19','2006-02-15 22:14:39'), - (6433,238,1,10659,'5.99','2005-08-01 16:40:34','2006-02-15 22:14:39'), - (6434,238,2,11543,'5.99','2005-08-17 00:54:28','2006-02-15 22:14:39'), - (6435,238,2,11632,'2.99','2005-08-17 04:29:32','2006-02-15 22:14:39'), - (6436,238,1,11897,'2.99','2005-08-17 15:24:06','2006-02-15 22:14:39'), - (6437,238,1,14312,'4.99','2005-08-21 07:48:34','2006-02-15 22:14:39'), - (6438,238,1,14343,'8.99','2005-08-21 08:40:21','2006-02-15 22:14:39'), - (6439,238,1,15455,'0.99','2005-08-23 01:05:00','2006-02-15 22:14:39'), - (6440,239,2,8,'4.99','2005-05-24 23:31:46','2006-02-15 22:14:39'), - (6441,239,1,444,'2.99','2005-05-27 18:39:15','2006-02-15 22:14:39'), - (6442,239,1,621,'4.99','2005-05-28 15:58:12','2006-02-15 22:14:39'), - (6443,239,1,636,'6.99','2005-05-28 17:47:58','2006-02-15 22:14:39'), - (6444,239,1,1022,'7.99','2005-05-31 03:16:45','2006-02-15 22:14:39'), - (6445,239,2,1082,'5.99','2005-05-31 11:02:01','2006-02-15 22:14:39'), - (6446,239,1,1160,'4.99','2005-06-14 23:00:34','2006-02-15 22:14:39'), - (6447,239,2,1560,'4.99','2005-06-16 02:36:43','2006-02-15 22:14:39'), - (6448,239,2,2215,'2.99','2005-06-18 02:48:21','2006-02-15 22:14:39'), - (6449,239,1,2390,'4.99','2005-06-18 15:29:26','2006-02-15 22:14:39'), - (6450,239,1,3383,'5.99','2005-06-21 14:07:19','2006-02-15 22:14:39'), - (6451,239,2,3547,'0.99','2005-07-06 02:18:06','2006-02-15 22:14:39'), - (6452,239,1,3552,'5.99','2005-07-06 02:34:09','2006-02-15 22:14:39'), - (6453,239,2,4920,'7.99','2005-07-08 21:42:10','2006-02-15 22:14:39'), - (6454,239,2,5651,'4.99','2005-07-10 07:17:13','2006-02-15 22:14:39'), - (6455,239,1,5960,'0.99','2005-07-10 23:38:34','2006-02-15 22:14:39'), - (6456,239,1,6573,'0.99','2005-07-12 06:03:40','2006-02-15 22:14:39'), - (6457,239,2,7012,'8.99','2005-07-27 02:01:03','2006-02-15 22:14:39'), - (6458,239,1,7426,'0.99','2005-07-27 17:19:46','2006-02-15 22:14:39'), - (6459,239,2,7491,'2.99','2005-07-27 19:53:23','2006-02-15 22:14:39'), - (6460,239,1,8457,'6.99','2005-07-29 07:59:03','2006-02-15 22:14:40'), - (6461,239,2,9676,'0.99','2005-07-31 06:39:13','2006-02-15 22:14:40'), - (6462,239,1,9863,'5.99','2005-07-31 13:05:29','2006-02-15 22:14:40'), - (6463,239,1,10755,'0.99','2005-08-01 20:14:14','2006-02-15 22:14:40'), - (6464,239,2,10923,'2.99','2005-08-02 02:15:01','2006-02-15 22:14:40'), - (6465,239,1,11487,'2.99','2005-08-02 22:35:05','2006-02-15 22:14:40'), - (6466,239,2,11900,'4.99','2005-08-17 15:30:44','2006-02-15 22:14:40'), - (6467,239,1,11968,'0.99','2005-08-17 17:47:34','2006-02-15 22:14:40'), - (6468,239,1,12340,'4.99','2005-08-18 07:07:01','2006-02-15 22:14:40'), - (6469,239,1,12721,'1.99','2005-08-18 21:30:12','2006-02-15 22:14:40'), - (6470,239,1,13175,'4.99','2005-08-19 13:54:53','2006-02-15 22:14:40'), - (6471,239,2,13427,'4.99','2005-08-19 23:19:02','2006-02-15 22:14:40'), - (6472,239,2,13999,'3.99','2005-08-20 19:53:32','2006-02-15 22:14:40'), - (6473,239,2,14062,'1.99','2005-08-20 22:34:34','2006-02-15 22:14:40'), - (6474,240,1,246,'2.99','2005-05-26 13:57:07','2006-02-15 22:14:40'), - (6475,240,1,460,'2.99','2005-05-27 20:02:03','2006-02-15 22:14:40'), - (6476,240,1,643,'4.99','2005-05-28 18:52:11','2006-02-15 22:14:40'), - (6477,240,2,2196,'3.99','2005-06-18 01:47:07','2006-02-15 22:14:40'), - (6478,240,1,2264,'4.99','2005-06-18 05:58:45','2006-02-15 22:14:40'), - (6479,240,2,2872,'5.99','2005-06-20 00:38:21','2006-02-15 22:14:40'), - (6480,240,2,4305,'4.99','2005-07-07 17:07:11','2006-02-15 22:14:40'), - (6481,240,2,5262,'4.99','2005-07-09 14:08:01','2006-02-15 22:14:40'), - (6482,240,1,5596,'0.99','2005-07-10 04:43:14','2006-02-15 22:14:40'), - (6483,240,1,6272,'0.99','2005-07-11 16:03:49','2006-02-15 22:14:40'), - (6484,240,2,6470,'0.99','2005-07-12 01:29:41','2006-02-15 22:14:40'), - (6485,240,1,6956,'4.99','2005-07-26 23:55:57','2006-02-15 22:14:40'), - (6486,240,1,7001,'4.99','2005-07-27 01:25:34','2006-02-15 22:14:40'), - (6487,240,1,7467,'8.99','2005-07-27 18:51:54','2006-02-15 22:14:40'), - (6488,240,2,7481,'4.99','2005-07-27 19:20:25','2006-02-15 22:14:40'), - (6489,240,1,7870,'4.99','2005-07-28 10:16:03','2006-02-15 22:14:40'), - (6490,240,2,8503,'3.99','2005-07-29 09:16:50','2006-02-15 22:14:41'), - (6491,240,2,8905,'5.99','2005-07-30 01:11:11','2006-02-15 22:14:41'), - (6492,240,1,10308,'7.99','2005-08-01 04:22:49','2006-02-15 22:14:41'), - (6493,240,1,11745,'3.99','2005-08-17 09:00:01','2006-02-15 22:14:41'), - (6494,240,2,12283,'6.99','2005-08-18 04:54:25','2006-02-15 22:14:41'), - (6495,240,2,13030,'2.99','2005-08-19 08:28:11','2006-02-15 22:14:41'), - (6496,240,2,13119,'4.99','2005-08-19 11:44:59','2006-02-15 22:14:41'), - (6497,240,1,13663,'8.99','2005-08-20 08:12:33','2006-02-15 22:14:41'), - (6498,240,2,14573,'2.99','2005-08-21 16:44:32','2006-02-15 22:14:41'), - (6499,240,2,15641,'0.99','2005-08-23 08:06:49','2006-02-15 22:14:41'), - (6500,241,1,627,'7.99','2005-05-28 17:04:43','2006-02-15 22:14:41'), - (6501,241,1,1059,'3.99','2005-05-31 08:20:43','2006-02-15 22:14:41'), - (6502,241,2,2428,'0.99','2005-06-18 17:47:34','2006-02-15 22:14:41'), - (6503,241,1,2455,'0.99','2005-06-18 19:33:06','2006-02-15 22:14:41'), - (6504,241,2,2478,'5.99','2005-06-18 21:01:21','2006-02-15 22:14:41'), - (6505,241,2,2683,'2.99','2005-06-19 12:27:19','2006-02-15 22:14:41'), - (6506,241,2,3258,'0.99','2005-06-21 03:53:58','2006-02-15 22:14:41'), - (6507,241,2,3822,'0.99','2005-07-06 15:41:15','2006-02-15 22:14:41'), - (6508,241,1,4731,'0.99','2005-07-08 13:08:18','2006-02-15 22:14:41'), - (6509,241,2,5017,'2.99','2005-07-09 02:00:16','2006-02-15 22:14:41'), - (6510,241,1,5211,'0.99','2005-07-09 11:26:50','2006-02-15 22:14:41'), - (6511,241,1,5438,'4.99','2005-07-09 21:34:32','2006-02-15 22:14:41'), - (6512,241,2,5525,'3.99','2005-07-10 02:03:08','2006-02-15 22:14:41'), - (6513,241,1,5981,'4.99','2005-07-11 00:19:04','2006-02-15 22:14:41'), - (6514,241,2,6090,'6.99','2005-07-11 05:47:08','2006-02-15 22:14:41'), - (6515,241,2,6245,'2.99','2005-07-11 14:56:57','2006-02-15 22:14:41'), - (6516,241,1,7320,'0.99','2005-07-27 13:33:35','2006-02-15 22:14:41'), - (6517,241,1,7434,'2.99','2005-07-27 17:34:40','2006-02-15 22:14:41'), - (6518,241,1,7860,'2.99','2005-07-28 09:58:02','2006-02-15 22:14:41'), - (6519,241,1,9500,'6.99','2005-07-30 23:58:36','2006-02-15 22:14:41'), - (6520,241,1,9528,'3.99','2005-07-31 01:05:04','2006-02-15 22:14:42'), - (6521,241,1,9944,'5.99','2005-07-31 15:44:43','2006-02-15 22:14:42'), - (6522,241,2,10447,'3.99','2005-08-01 09:04:58','2006-02-15 22:14:42'), - (6523,241,1,10652,'2.99','2005-08-01 16:24:08','2006-02-15 22:14:42'), - (6524,241,1,11423,'1.99','2005-08-02 19:57:13','2006-02-15 22:14:42'), - (6525,241,2,12418,'4.99','2005-08-18 09:59:36','2006-02-15 22:14:42'), - (6526,241,1,12956,'4.99','2005-08-19 06:06:26','2006-02-15 22:14:42'), - (6527,241,2,13077,'2.99','2005-08-19 10:15:19','2006-02-15 22:14:42'), - (6528,241,2,14269,'7.99','2005-08-21 06:22:07','2006-02-15 22:14:42'), - (6529,241,2,14485,'2.99','2005-08-21 13:52:07','2006-02-15 22:14:42'), - (6530,241,1,14936,'0.99','2005-08-22 05:51:26','2006-02-15 22:14:42'), - (6531,241,2,15137,'2.99','2005-08-22 13:20:28','2006-02-15 22:14:42'), - (6532,241,1,15429,'2.99','2005-08-23 00:20:31','2006-02-15 22:14:42'), - (6533,241,1,15767,'4.99','2005-08-23 13:14:15','2006-02-15 22:14:42'), - (6534,242,1,108,'2.99','2005-05-25 18:30:05','2006-02-15 22:14:42'), - (6535,242,2,283,'3.99','2005-05-26 19:05:05','2006-02-15 22:14:42'), - (6536,242,2,881,'4.99','2005-05-30 06:15:36','2006-02-15 22:14:42'), - (6537,242,2,1304,'4.99','2005-06-15 09:56:02','2006-02-15 22:14:42'), - (6538,242,1,1384,'4.99','2005-06-15 15:22:03','2006-02-15 22:14:42'), - (6539,242,1,1483,'4.99','2005-06-15 21:21:58','2006-02-15 22:14:42'), - (6540,242,2,1702,'4.99','2005-06-16 13:21:05','2006-02-15 22:14:42'), - (6541,242,1,2691,'4.99','2005-06-19 13:06:50','2006-02-15 22:14:42'), - (6542,242,2,2942,'4.99','2005-06-20 05:27:31','2006-02-15 22:14:42'), - (6543,242,1,3471,'4.99','2005-07-05 22:51:44','2006-02-15 22:14:42'), - (6544,242,2,3604,'0.99','2005-07-06 05:25:22','2006-02-15 22:14:42'), - (6545,242,1,4426,'4.99','2005-07-07 22:28:32','2006-02-15 22:14:42'), - (6546,242,2,4895,'1.99','2005-07-08 20:22:05','2006-02-15 22:14:42'), - (6547,242,2,5666,'5.99','2005-07-10 08:10:29','2006-02-15 22:14:42'), - (6548,242,2,7149,'3.99','2005-07-27 07:10:40','2006-02-15 22:14:42'), - (6549,242,1,8491,'4.99','2005-07-29 09:02:13','2006-02-15 22:14:42'), - (6550,242,1,9423,'3.99','2005-07-30 21:10:14','2006-02-15 22:14:42'), - (6551,242,1,9730,'6.99','2005-07-31 08:50:08','2006-02-15 22:14:43'), - (6552,242,2,10367,'0.99','2005-08-01 06:12:19','2006-02-15 22:14:43'), - (6553,242,2,10382,'4.99','2005-08-01 06:36:45','2006-02-15 22:14:43'), - (6554,242,2,10650,'9.99','2005-08-01 16:18:45','2006-02-15 22:14:43'), - (6555,242,2,11020,'0.99','2005-08-02 05:29:48','2006-02-15 22:14:43'), - (6556,242,1,11258,'4.99','2005-08-02 13:45:39','2006-02-15 22:14:43'), - (6557,242,2,11607,'0.99','2005-08-17 03:36:06','2006-02-15 22:14:43'), - (6558,242,1,11931,'4.99','2005-08-17 16:35:14','2006-02-15 22:14:43'), - (6559,242,2,12724,'7.99','2005-08-18 21:37:20','2006-02-15 22:14:43'), - (6560,242,1,12855,'4.99','2005-08-19 02:18:58','2006-02-15 22:14:43'), - (6561,242,1,13271,'9.99','2005-08-19 17:42:06','2006-02-15 22:14:43'), - (6562,242,2,13567,'0.99','2005-08-20 04:49:21','2006-02-15 22:14:43'), - (6563,242,2,13646,'5.99','2005-08-20 07:47:08','2006-02-15 22:14:43'), - (6564,242,1,14515,'0.99','2005-08-21 14:52:14','2006-02-15 22:14:43'), - (6565,242,1,15002,'0.99','2005-08-22 08:06:00','2006-02-15 22:14:43'), - (6566,243,1,188,'4.99','2005-05-26 05:47:12','2006-02-15 22:14:43'), - (6567,243,1,1405,'5.99','2005-06-15 16:41:26','2006-02-15 22:14:43'), - (6568,243,1,1452,'0.99','2005-06-15 19:32:52','2006-02-15 22:14:43'), - (6569,243,2,2757,'5.99','2005-06-19 17:01:14','2006-02-15 22:14:43'), - (6570,243,2,3854,'5.99','2005-07-06 17:02:33','2006-02-15 22:14:43'), - (6571,243,1,3965,'4.99','2005-07-06 22:36:20','2006-02-15 22:14:43'), - (6572,243,1,4831,'0.99','2005-07-08 18:00:14','2006-02-15 22:14:43'), - (6573,243,1,5502,'0.99','2005-07-10 00:34:15','2006-02-15 22:14:43'), - (6574,243,2,6038,'3.99','2005-07-11 03:10:37','2006-02-15 22:14:43'), - (6575,243,2,6820,'2.99','2005-07-12 18:21:30','2006-02-15 22:14:43'), - (6576,243,2,7022,'2.99','2005-07-27 02:31:15','2006-02-15 22:14:43'), - (6577,243,2,7165,'0.99','2005-07-27 07:36:46','2006-02-15 22:14:43'), - (6578,243,1,8834,'4.99','2005-07-29 22:41:48','2006-02-15 22:14:43'), - (6579,243,2,9035,'2.99','2005-07-30 06:16:07','2006-02-15 22:14:43'), - (6580,243,2,9514,'4.99','2005-07-31 00:29:44','2006-02-15 22:14:43'), - (6581,243,2,9675,'2.99','2005-07-31 06:37:07','2006-02-15 22:14:44'), - (6582,243,2,9988,'5.99','2005-07-31 17:22:36','2006-02-15 22:14:44'), - (6583,243,1,12209,'2.99','2005-08-18 02:27:20','2006-02-15 22:14:44'), - (6584,243,1,13291,'2.99','2005-08-19 18:32:11','2006-02-15 22:14:44'), - (6585,243,1,14033,'2.99','2005-08-20 21:30:53','2006-02-15 22:14:44'), - (6586,243,1,14108,'0.99','2005-08-21 00:52:45','2006-02-15 22:14:44'), - (6587,243,1,14272,'3.99','2005-08-21 06:24:55','2006-02-15 22:14:44'), - (6588,243,2,14581,'1.99','2005-08-21 17:07:08','2006-02-15 22:14:44'), - (6589,243,2,14705,'2.99','2005-08-21 21:02:55','2006-02-15 22:14:44'), - (6590,244,2,592,'4.99','2005-05-28 13:21:08','2006-02-15 22:14:44'), - (6591,244,1,797,'1.99','2005-05-29 17:12:17','2006-02-15 22:14:44'), - (6592,244,2,1189,'6.99','2005-06-15 01:04:22','2006-02-15 22:14:44'), - (6593,244,1,1595,'5.99','2005-06-16 05:23:46','2006-02-15 22:14:44'), - (6594,244,2,2955,'3.99','2005-06-20 06:46:35','2006-02-15 22:14:44'), - (6595,244,1,4814,'4.99','2005-07-08 17:11:09','2006-02-15 22:14:44'), - (6596,244,2,5387,'4.99','2005-07-09 19:25:14','2006-02-15 22:14:44'), - (6597,244,2,5461,'0.99','2005-07-09 22:48:04','2006-02-15 22:14:44'), - (6598,244,2,5692,'0.99','2005-07-10 09:32:22','2006-02-15 22:14:44'), - (6599,244,1,5779,'4.99','2005-07-10 13:45:54','2006-02-15 22:14:44'), - (6600,244,1,5803,'3.99','2005-07-10 15:05:42','2006-02-15 22:14:44'), - (6601,244,2,6374,'4.99','2005-07-11 21:36:10','2006-02-15 22:14:44'), - (6602,244,2,6608,'2.99','2005-07-12 08:16:50','2006-02-15 22:14:44'), - (6603,244,2,6683,'2.99','2005-07-12 12:14:05','2006-02-15 22:14:44'), - (6604,244,2,8454,'0.99','2005-07-29 07:49:04','2006-02-15 22:14:44'), - (6605,244,2,8844,'5.99','2005-07-29 23:05:08','2006-02-15 22:14:44'), - (6606,244,1,10001,'4.99','2005-07-31 17:46:18','2006-02-15 22:14:44'), - (6607,244,2,10047,'4.99','2005-07-31 19:07:43','2006-02-15 22:14:44'), - (6608,244,1,10152,'5.99','2005-07-31 22:28:05','2006-02-15 22:14:44'), - (6609,244,2,10684,'6.99','2005-08-01 17:47:00','2006-02-15 22:14:44'), - (6610,244,2,10969,'2.99','2005-08-02 04:04:32','2006-02-15 22:14:44'), - (6611,244,2,11157,'0.99','2005-08-02 09:58:15','2006-02-15 22:14:45'), - (6612,244,1,11267,'9.99','2005-08-02 14:09:08','2006-02-15 22:14:45'), - (6613,244,1,11762,'9.99','2005-08-17 09:48:06','2006-02-15 22:14:45'), - (6614,244,1,13630,'4.99','2005-08-20 07:05:56','2006-02-15 22:14:45'), - (6615,244,2,13774,'0.99','2005-08-20 11:54:01','2006-02-15 22:14:45'), - (6616,244,1,13928,'0.99','2005-08-20 17:12:28','2006-02-15 22:14:45'), - (6617,244,1,14367,'0.99','2005-08-21 09:31:44','2006-02-15 22:14:45'), - (6618,244,2,14657,'0.99','2005-08-21 19:39:43','2006-02-15 22:14:45'), - (6619,244,1,14919,'1.99','2005-08-22 05:07:17','2006-02-15 22:14:45'), - (6620,244,1,14975,'3.99','2005-08-22 07:07:50','2006-02-15 22:14:45'), - (6621,244,2,12736,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:45'), - (6622,245,2,79,'4.99','2005-05-25 12:11:07','2006-02-15 22:14:45'), - (6623,245,1,241,'0.99','2005-05-26 12:49:01','2006-02-15 22:14:45'), - (6624,245,1,519,'7.99','2005-05-28 03:22:33','2006-02-15 22:14:45'), - (6625,245,1,719,'2.99','2005-05-29 05:16:05','2006-02-15 22:14:45'), - (6626,245,2,725,'2.99','2005-05-29 06:03:41','2006-02-15 22:14:45'), - (6627,245,2,948,'8.99','2005-05-30 15:44:27','2006-02-15 22:14:45'), - (6628,245,1,1377,'2.99','2005-06-15 15:02:03','2006-02-15 22:14:45'), - (6629,245,1,2122,'2.99','2005-06-17 20:48:27','2006-02-15 22:14:45'), - (6630,245,1,3157,'2.99','2005-06-20 21:07:54','2006-02-15 22:14:45'), - (6631,245,1,3634,'2.99','2005-07-06 06:51:14','2006-02-15 22:14:45'), - (6632,245,2,5321,'2.99','2005-07-09 16:26:33','2006-02-15 22:14:45'), - (6633,245,1,5764,'4.99','2005-07-10 12:58:16','2006-02-15 22:14:45'), - (6634,245,2,6242,'2.99','2005-07-11 14:45:04','2006-02-15 22:14:45'), - (6635,245,1,6795,'5.99','2005-07-12 16:41:00','2006-02-15 22:14:45'), - (6636,245,2,6962,'0.99','2005-07-27 00:10:58','2006-02-15 22:14:45'), - (6637,245,1,7230,'4.99','2005-07-27 10:01:41','2006-02-15 22:14:45'), - (6638,245,2,7233,'5.99','2005-07-27 10:08:36','2006-02-15 22:14:45'), - (6639,245,1,7358,'0.99','2005-07-27 14:49:44','2006-02-15 22:14:45'), - (6640,245,2,7397,'4.99','2005-07-27 16:05:00','2006-02-15 22:14:45'), - (6641,245,2,8701,'6.99','2005-07-29 17:02:35','2006-02-15 22:14:46'), - (6642,245,1,8811,'10.99','2005-07-29 21:46:21','2006-02-15 22:14:46'), - (6643,245,2,9088,'0.99','2005-07-30 08:21:02','2006-02-15 22:14:46'), - (6644,245,2,9169,'4.99','2005-07-30 11:35:00','2006-02-15 22:14:46'), - (6645,245,1,9813,'6.99','2005-07-31 11:29:23','2006-02-15 22:14:46'), - (6646,245,1,10087,'3.99','2005-07-31 20:15:22','2006-02-15 22:14:46'), - (6647,245,2,11061,'0.99','2005-08-02 06:50:18','2006-02-15 22:14:46'), - (6648,245,1,11105,'0.99','2005-08-02 08:13:31','2006-02-15 22:14:46'), - (6649,245,1,11211,'0.99','2005-08-02 12:16:48','2006-02-15 22:14:46'), - (6650,245,1,12303,'7.99','2005-08-18 05:43:22','2006-02-15 22:14:46'), - (6651,245,1,13286,'0.99','2005-08-19 18:28:07','2006-02-15 22:14:46'), - (6652,245,1,15782,'6.99','2005-08-23 13:43:26','2006-02-15 22:14:46'), - (6653,245,2,12682,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:46'), - (6654,246,1,124,'6.99','2005-05-25 20:46:11','2006-02-15 22:14:46'), - (6655,246,2,421,'8.99','2005-05-27 15:30:13','2006-02-15 22:14:46'), - (6656,246,2,434,'5.99','2005-05-27 16:54:27','2006-02-15 22:14:46'), - (6657,246,1,699,'3.99','2005-05-29 02:11:44','2006-02-15 22:14:46'), - (6658,246,1,1051,'4.99','2005-05-31 07:02:09','2006-02-15 22:14:46'), - (6659,246,2,1448,'1.99','2005-06-15 19:17:16','2006-02-15 22:14:46'), - (6660,246,1,1968,'2.99','2005-06-17 09:20:36','2006-02-15 22:14:46'), - (6661,246,2,2704,'1.99','2005-06-19 13:50:10','2006-02-15 22:14:46'), - (6662,246,1,2725,'0.99','2005-06-19 15:01:23','2006-02-15 22:14:46'), - (6663,246,1,3152,'4.99','2005-06-20 20:42:41','2006-02-15 22:14:46'), - (6664,246,1,4092,'7.99','2005-07-07 05:54:18','2006-02-15 22:14:46'), - (6665,246,2,4905,'4.99','2005-07-08 20:56:00','2006-02-15 22:14:46'), - (6666,246,2,4994,'2.99','2005-07-09 00:54:13','2006-02-15 22:14:46'), - (6667,246,2,5347,'0.99','2005-07-09 17:31:32','2006-02-15 22:14:46'), - (6668,246,1,6688,'4.99','2005-07-12 12:22:12','2006-02-15 22:14:46'), - (6669,246,2,9525,'5.99','2005-07-31 01:02:18','2006-02-15 22:14:46'), - (6670,246,2,10208,'4.99','2005-08-01 00:54:51','2006-02-15 22:14:46'), - (6671,246,2,10683,'2.99','2005-08-01 17:33:03','2006-02-15 22:14:47'), - (6672,246,2,13418,'5.99','2005-08-19 22:53:56','2006-02-15 22:14:47'), - (6673,246,1,13750,'6.99','2005-08-20 11:11:42','2006-02-15 22:14:47'), - (6674,246,1,13987,'4.99','2005-08-20 19:19:30','2006-02-15 22:14:47'), - (6675,246,1,14360,'6.99','2005-08-21 09:16:40','2006-02-15 22:14:47'), - (6676,246,1,15746,'2.99','2005-08-23 12:26:19','2006-02-15 22:14:47'), - (6677,247,1,189,'4.99','2005-05-26 06:01:41','2006-02-15 22:14:47'), - (6678,247,2,448,'3.99','2005-05-27 19:03:08','2006-02-15 22:14:47'), - (6679,247,1,450,'6.99','2005-05-27 19:18:54','2006-02-15 22:14:47'), - (6680,247,1,2288,'5.99','2005-06-18 07:23:17','2006-02-15 22:14:47'), - (6681,247,2,3955,'2.99','2005-07-06 21:58:08','2006-02-15 22:14:47'), - (6682,247,2,4198,'6.99','2005-07-07 11:08:11','2006-02-15 22:14:47'), - (6683,247,1,4492,'2.99','2005-07-08 01:32:04','2006-02-15 22:14:47'), - (6684,247,2,4995,'2.99','2005-07-09 00:57:46','2006-02-15 22:14:47'), - (6685,247,1,5328,'6.99','2005-07-09 16:48:29','2006-02-15 22:14:47'), - (6686,247,1,5842,'4.99','2005-07-10 17:11:37','2006-02-15 22:14:47'), - (6687,247,1,7963,'5.99','2005-07-28 13:48:38','2006-02-15 22:14:47'), - (6688,247,1,10279,'1.99','2005-08-01 03:26:44','2006-02-15 22:14:47'), - (6689,247,1,10410,'6.99','2005-08-01 07:53:29','2006-02-15 22:14:47'), - (6690,247,2,11204,'2.99','2005-08-02 11:56:31','2006-02-15 22:14:47'), - (6691,247,2,11306,'2.99','2005-08-02 15:45:10','2006-02-15 22:14:47'), - (6692,247,1,11495,'0.99','2005-08-16 22:51:20','2006-02-15 22:14:47'), - (6693,247,2,12265,'4.99','2005-08-18 04:22:01','2006-02-15 22:14:47'), - (6694,247,1,12482,'7.99','2005-08-18 12:37:36','2006-02-15 22:14:47'), - (6695,247,1,12491,'4.99','2005-08-18 12:48:45','2006-02-15 22:14:47'), - (6696,247,1,12824,'4.99','2005-08-19 01:18:00','2006-02-15 22:14:47'), - (6697,247,1,14041,'4.99','2005-08-20 21:45:23','2006-02-15 22:14:47'), - (6698,247,1,15783,'4.99','2005-08-23 13:45:44','2006-02-15 22:14:47'), - (6699,248,2,330,'7.99','2005-05-27 02:15:30','2006-02-15 22:14:47'), - (6700,248,1,618,'4.99','2005-05-28 15:50:07','2006-02-15 22:14:47'), - (6701,248,1,2066,'3.99','2005-06-17 16:07:08','2006-02-15 22:14:48'), - (6702,248,2,2371,'0.99','2005-06-18 14:35:29','2006-02-15 22:14:48'), - (6703,248,1,3910,'0.99','2005-07-06 20:05:18','2006-02-15 22:14:48'), - (6704,248,2,4541,'4.99','2005-07-08 04:04:19','2006-02-15 22:14:48'), - (6705,248,1,4841,'0.99','2005-07-08 18:18:23','2006-02-15 22:14:48'), - (6706,248,1,5370,'2.99','2005-07-09 18:43:19','2006-02-15 22:14:48'), - (6707,248,2,6617,'2.99','2005-07-12 08:39:56','2006-02-15 22:14:48'), - (6708,248,2,7778,'5.99','2005-07-28 07:10:11','2006-02-15 22:14:48'), - (6709,248,2,10418,'4.99','2005-08-01 08:11:07','2006-02-15 22:14:48'), - (6710,248,1,12241,'0.99','2005-08-18 03:33:17','2006-02-15 22:14:48'), - (6711,248,1,13918,'0.99','2005-08-20 16:47:32','2006-02-15 22:14:48'), - (6712,248,2,14704,'0.99','2005-08-21 21:02:22','2006-02-15 22:14:48'), - (6713,248,2,14885,'5.99','2005-08-22 03:58:29','2006-02-15 22:14:48'), - (6714,249,2,316,'4.99','2005-05-26 23:22:55','2006-02-15 22:14:48'), - (6715,249,2,400,'2.99','2005-05-27 12:51:44','2006-02-15 22:14:48'), - (6716,249,1,438,'6.99','2005-05-27 17:52:34','2006-02-15 22:14:48'), - (6717,249,1,597,'3.99','2005-05-28 14:01:02','2006-02-15 22:14:48'), - (6718,249,1,1204,'0.99','2005-06-15 02:21:46','2006-02-15 22:14:48'), - (6719,249,1,1473,'5.99','2005-06-15 20:55:20','2006-02-15 22:14:48'), - (6720,249,2,1753,'2.99','2005-06-16 17:08:17','2006-02-15 22:14:48'), - (6721,249,2,2129,'1.99','2005-06-17 20:58:32','2006-02-15 22:14:48'), - (6722,249,2,3175,'7.99','2005-06-20 22:30:23','2006-02-15 22:14:48'), - (6723,249,1,4352,'9.99','2005-07-07 19:15:58','2006-02-15 22:14:48'), - (6724,249,1,5011,'4.99','2005-07-09 01:44:40','2006-02-15 22:14:48'), - (6725,249,1,5275,'4.99','2005-07-09 14:34:18','2006-02-15 22:14:48'), - (6726,249,2,5639,'3.99','2005-07-10 06:33:39','2006-02-15 22:14:48'), - (6727,249,2,6670,'7.99','2005-07-12 11:44:33','2006-02-15 22:14:48'), - (6728,249,1,7544,'7.99','2005-07-27 21:47:37','2006-02-15 22:14:48'), - (6729,249,1,7804,'2.99','2005-07-28 07:56:00','2006-02-15 22:14:48'), - (6730,249,2,7881,'4.99','2005-07-28 10:33:22','2006-02-15 22:14:48'), - (6731,249,1,11124,'1.99','2005-08-02 08:55:25','2006-02-15 22:14:49'), - (6732,249,1,11159,'4.99','2005-08-02 10:00:55','2006-02-15 22:14:49'), - (6733,249,2,11668,'0.99','2005-08-17 05:47:32','2006-02-15 22:14:49'), - (6734,249,2,13981,'4.99','2005-08-20 19:07:20','2006-02-15 22:14:49'), - (6735,249,2,14285,'0.99','2005-08-21 06:50:48','2006-02-15 22:14:49'), - (6736,249,1,15160,'6.99','2005-08-22 14:33:50','2006-02-15 22:14:49'), - (6737,250,1,61,'5.99','2005-05-25 09:01:57','2006-02-15 22:14:49'), - (6738,250,1,176,'3.99','2005-05-26 03:47:39','2006-02-15 22:14:49'), - (6739,250,1,637,'4.99','2005-05-28 18:14:29','2006-02-15 22:14:49'), - (6740,250,2,687,'0.99','2005-05-29 00:32:09','2006-02-15 22:14:49'), - (6741,250,1,1146,'2.99','2005-05-31 20:34:45','2006-02-15 22:14:49'), - (6742,250,1,2432,'4.99','2005-06-18 17:59:18','2006-02-15 22:14:49'), - (6743,250,1,3635,'4.99','2005-07-06 06:55:36','2006-02-15 22:14:49'), - (6744,250,1,3951,'3.99','2005-07-06 21:50:41','2006-02-15 22:14:49'), - (6745,250,1,5479,'2.99','2005-07-09 23:47:33','2006-02-15 22:14:49'), - (6746,250,1,5540,'0.99','2005-07-10 02:44:21','2006-02-15 22:14:49'), - (6747,250,1,5998,'2.99','2005-07-11 01:20:46','2006-02-15 22:14:49'), - (6748,250,1,8579,'2.99','2005-07-29 11:59:22','2006-02-15 22:14:49'), - (6749,250,2,9099,'0.99','2005-07-30 08:45:48','2006-02-15 22:14:49'), - (6750,250,2,10604,'4.99','2005-08-01 14:35:08','2006-02-15 22:14:49'), - (6751,250,1,12361,'0.99','2005-08-18 07:47:31','2006-02-15 22:14:49'), - (6752,250,1,12810,'0.99','2005-08-19 00:44:10','2006-02-15 22:14:49'), - (6753,250,2,14565,'4.99','2005-08-21 16:24:45','2006-02-15 22:14:49'), - (6754,250,1,14587,'5.99','2005-08-21 17:20:55','2006-02-15 22:14:49'), - (6755,250,2,14814,'4.99','2005-08-22 01:12:14','2006-02-15 22:14:49'), - (6756,250,2,15247,'6.99','2005-08-22 17:52:05','2006-02-15 22:14:49'), - (6757,251,1,264,'2.99','2005-05-26 16:00:49','2006-02-15 22:14:49'), - (6758,251,1,309,'1.99','2005-05-26 22:38:10','2006-02-15 22:14:49'), - (6759,251,2,393,'2.99','2005-05-27 11:18:25','2006-02-15 22:14:49'), - (6760,251,2,1069,'3.99','2005-05-31 09:32:31','2006-02-15 22:14:49'), - (6761,251,1,1091,'4.99','2005-05-31 12:11:04','2006-02-15 22:14:50'), - (6762,251,2,1155,'2.99','2005-05-31 22:17:11','2006-02-15 22:14:50'), - (6763,251,1,2238,'6.99','2005-06-18 04:22:06','2006-02-15 22:14:50'), - (6764,251,2,3422,'7.99','2005-06-21 17:24:40','2006-02-15 22:14:50'), - (6765,251,1,3464,'2.99','2005-06-21 22:08:58','2006-02-15 22:14:50'), - (6766,251,1,3799,'4.99','2005-07-06 15:00:14','2006-02-15 22:14:50'), - (6767,251,2,4026,'3.99','2005-07-07 02:15:48','2006-02-15 22:14:50'), - (6768,251,2,4848,'2.99','2005-07-08 18:30:16','2006-02-15 22:14:50'), - (6769,251,2,5012,'2.99','2005-07-09 01:45:04','2006-02-15 22:14:50'), - (6770,251,2,5979,'2.99','2005-07-11 00:17:09','2006-02-15 22:14:50'), - (6771,251,2,6413,'6.99','2005-07-11 23:26:11','2006-02-15 22:14:50'), - (6772,251,2,7338,'8.99','2005-07-27 14:13:34','2006-02-15 22:14:50'), - (6773,251,2,8443,'2.99','2005-07-29 07:33:12','2006-02-15 22:14:50'), - (6774,251,2,8982,'0.99','2005-07-30 04:31:02','2006-02-15 22:14:50'), - (6775,251,1,9196,'2.99','2005-07-30 12:30:19','2006-02-15 22:14:50'), - (6776,251,1,9892,'0.99','2005-07-31 14:06:25','2006-02-15 22:14:50'), - (6777,251,1,10575,'7.99','2005-08-01 13:41:41','2006-02-15 22:14:50'), - (6778,251,1,11733,'0.99','2005-08-17 08:31:03','2006-02-15 22:14:50'), - (6779,251,2,12047,'3.99','2005-08-17 20:48:32','2006-02-15 22:14:50'), - (6780,251,2,12666,'4.99','2005-08-18 19:11:41','2006-02-15 22:14:50'), - (6781,251,2,13121,'2.99','2005-08-19 11:51:39','2006-02-15 22:14:50'), - (6782,251,1,13243,'2.99','2005-08-19 16:33:16','2006-02-15 22:14:50'), - (6783,251,2,13260,'6.99','2005-08-19 17:09:22','2006-02-15 22:14:50'), - (6784,251,1,14292,'0.99','2005-08-21 07:06:20','2006-02-15 22:14:50'), - (6785,251,2,15647,'2.99','2005-08-23 08:23:56','2006-02-15 22:14:50'), - (6786,251,2,15870,'4.99','2005-08-23 16:23:08','2006-02-15 22:14:50'), - (6787,251,1,14107,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:50'), - (6788,252,1,707,'4.99','2005-05-29 03:18:19','2006-02-15 22:14:50'), - (6789,252,1,1095,'0.99','2005-05-31 13:15:41','2006-02-15 22:14:50'), - (6790,252,1,1395,'5.99','2005-06-15 16:21:04','2006-02-15 22:14:51'), - (6791,252,2,2716,'4.99','2005-06-19 14:40:17','2006-02-15 22:14:51'), - (6792,252,1,2968,'0.99','2005-06-20 07:41:47','2006-02-15 22:14:51'), - (6793,252,2,4372,'0.99','2005-07-07 20:09:01','2006-02-15 22:14:51'), - (6794,252,2,5554,'2.99','2005-07-10 03:03:38','2006-02-15 22:14:51'), - (6795,252,1,6357,'0.99','2005-07-11 20:58:51','2006-02-15 22:14:51'), - (6796,252,2,6369,'0.99','2005-07-11 21:23:36','2006-02-15 22:14:51'), - (6797,252,1,7024,'4.99','2005-07-27 02:36:40','2006-02-15 22:14:51'), - (6798,252,2,7121,'0.99','2005-07-27 05:58:32','2006-02-15 22:14:51'), - (6799,252,2,7168,'0.99','2005-07-27 07:51:11','2006-02-15 22:14:51'), - (6800,252,1,7670,'0.99','2005-07-28 02:44:25','2006-02-15 22:14:51'), - (6801,252,1,8636,'5.99','2005-07-29 14:24:13','2006-02-15 22:14:51'), - (6802,252,1,8899,'0.99','2005-07-30 01:05:30','2006-02-15 22:14:51'), - (6803,252,2,10314,'0.99','2005-08-01 04:31:18','2006-02-15 22:14:51'), - (6804,252,2,10834,'2.99','2005-08-01 23:28:00','2006-02-15 22:14:51'), - (6805,252,2,11764,'0.99','2005-08-17 09:51:54','2006-02-15 22:14:51'), - (6806,252,1,13385,'4.99','2005-08-19 21:39:35','2006-02-15 22:14:51'), - (6807,252,2,13989,'5.99','2005-08-20 19:27:50','2006-02-15 22:14:51'), - (6808,252,1,14774,'4.99','2005-08-21 23:52:32','2006-02-15 22:14:51'), - (6809,252,2,13756,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:51'), - (6810,253,1,566,'6.99','2005-05-28 09:51:39','2006-02-15 22:14:51'), - (6811,253,1,648,'0.99','2005-05-28 19:25:54','2006-02-15 22:14:51'), - (6812,253,1,986,'2.99','2005-05-30 22:22:52','2006-02-15 22:14:51'), - (6813,253,2,1378,'1.99','2005-06-15 15:03:15','2006-02-15 22:14:51'), - (6814,253,2,1606,'6.99','2005-06-16 06:18:31','2006-02-15 22:14:51'), - (6815,253,2,2081,'5.99','2005-06-17 17:05:02','2006-02-15 22:14:51'), - (6816,253,1,2142,'4.99','2005-06-17 21:55:43','2006-02-15 22:14:51'), - (6817,253,1,2454,'4.99','2005-06-18 19:32:51','2006-02-15 22:14:51'), - (6818,253,2,2636,'4.99','2005-06-19 09:13:06','2006-02-15 22:14:51'), - (6819,253,1,3658,'7.99','2005-07-06 08:01:08','2006-02-15 22:14:52'), - (6820,253,1,5505,'2.99','2005-07-10 00:38:48','2006-02-15 22:14:52'), - (6821,253,1,5602,'4.99','2005-07-10 05:02:22','2006-02-15 22:14:52'), - (6822,253,2,7689,'2.99','2005-07-28 03:21:24','2006-02-15 22:14:52'), - (6823,253,2,7851,'0.99','2005-07-28 09:31:58','2006-02-15 22:14:52'), - (6824,253,2,7887,'2.99','2005-07-28 10:40:12','2006-02-15 22:14:52'), - (6825,253,2,8752,'2.99','2005-07-29 19:15:07','2006-02-15 22:14:52'), - (6826,253,2,9606,'0.99','2005-07-31 03:50:46','2006-02-15 22:14:52'), - (6827,253,2,9618,'6.99','2005-07-31 04:16:14','2006-02-15 22:14:52'), - (6828,253,2,10404,'4.99','2005-08-01 07:31:25','2006-02-15 22:14:52'), - (6829,253,1,10660,'2.99','2005-08-01 16:48:01','2006-02-15 22:14:52'), - (6830,253,2,10881,'6.99','2005-08-02 00:38:14','2006-02-15 22:14:52'), - (6831,253,1,12572,'0.99','2005-08-18 15:32:54','2006-02-15 22:14:52'), - (6832,253,2,12827,'5.99','2005-08-19 01:27:23','2006-02-15 22:14:52'), - (6833,253,1,13126,'5.99','2005-08-19 12:00:28','2006-02-15 22:14:52'), - (6834,253,2,14086,'3.99','2005-08-20 23:47:54','2006-02-15 22:14:52'), - (6835,253,2,14283,'4.99','2005-08-21 06:44:14','2006-02-15 22:14:52'), - (6836,253,1,14640,'7.99','2005-08-21 19:03:19','2006-02-15 22:14:52'), - (6837,253,2,14655,'4.99','2005-08-21 19:37:10','2006-02-15 22:14:52'), - (6838,253,2,15221,'2.99','2005-08-22 17:12:29','2006-02-15 22:14:52'), - (6839,254,1,183,'2.99','2005-05-26 05:01:18','2006-02-15 22:14:52'), - (6840,254,1,1108,'5.99','2005-05-31 15:05:12','2006-02-15 22:14:52'), - (6841,254,1,1285,'2.99','2005-06-15 08:33:06','2006-02-15 22:14:52'), - (6842,254,2,1390,'0.99','2005-06-15 16:06:29','2006-02-15 22:14:52'), - (6843,254,1,2082,'2.99','2005-06-17 17:13:32','2006-02-15 22:14:52'), - (6844,254,1,2138,'2.99','2005-06-17 21:28:14','2006-02-15 22:14:52'), - (6845,254,2,2687,'3.99','2005-06-19 12:46:52','2006-02-15 22:14:52'), - (6846,254,1,3882,'4.99','2005-07-06 18:38:21','2006-02-15 22:14:52'), - (6847,254,2,5042,'2.99','2005-07-09 03:20:30','2006-02-15 22:14:52'), - (6848,254,1,5072,'3.99','2005-07-09 05:01:58','2006-02-15 22:14:52'), - (6849,254,2,5080,'2.99','2005-07-09 05:23:55','2006-02-15 22:14:53'), - (6850,254,1,5537,'0.99','2005-07-10 02:35:41','2006-02-15 22:14:53'), - (6851,254,1,5550,'5.99','2005-07-10 02:58:35','2006-02-15 22:14:53'), - (6852,254,1,5826,'7.99','2005-07-10 16:21:02','2006-02-15 22:14:53'), - (6853,254,2,5930,'4.99','2005-07-10 21:59:32','2006-02-15 22:14:53'), - (6854,254,2,7011,'0.99','2005-07-27 01:58:34','2006-02-15 22:14:53'), - (6855,254,1,7413,'4.99','2005-07-27 16:45:40','2006-02-15 22:14:53'), - (6856,254,2,8216,'7.99','2005-07-28 23:43:59','2006-02-15 22:14:53'), - (6857,254,2,8581,'4.99','2005-07-29 12:02:06','2006-02-15 22:14:53'), - (6858,254,2,9494,'1.99','2005-07-30 23:52:46','2006-02-15 22:14:53'), - (6859,254,1,10522,'4.99','2005-08-01 11:48:51','2006-02-15 22:14:53'), - (6860,254,1,11190,'0.99','2005-08-02 11:21:34','2006-02-15 22:14:53'), - (6861,254,1,11665,'6.99','2005-08-17 05:36:57','2006-02-15 22:14:53'), - (6862,254,2,12148,'0.99','2005-08-18 00:13:15','2006-02-15 22:14:53'), - (6863,254,1,12206,'0.99','2005-08-18 02:22:20','2006-02-15 22:14:53'), - (6864,254,1,12247,'2.99','2005-08-18 03:51:51','2006-02-15 22:14:53'), - (6865,254,1,12874,'0.99','2005-08-19 03:07:57','2006-02-15 22:14:53'), - (6866,254,2,13001,'4.99','2005-08-19 07:36:44','2006-02-15 22:14:53'), - (6867,254,1,13045,'4.99','2005-08-19 09:17:35','2006-02-15 22:14:53'), - (6868,254,2,13130,'2.99','2005-08-19 12:06:42','2006-02-15 22:14:53'), - (6869,254,2,14497,'4.99','2005-08-21 14:09:47','2006-02-15 22:14:53'), - (6870,254,1,15774,'0.99','2005-08-23 13:25:08','2006-02-15 22:14:53'), - (6871,255,1,1235,'2.99','2005-06-15 04:31:28','2006-02-15 22:14:53'), - (6872,255,1,1420,'6.99','2005-06-15 17:56:14','2006-02-15 22:14:53'), - (6873,255,2,1681,'2.99','2005-06-16 11:38:17','2006-02-15 22:14:53'), - (6874,255,2,3442,'2.99','2005-06-21 20:06:51','2006-02-15 22:14:53'), - (6875,255,1,4547,'0.99','2005-07-08 04:20:19','2006-02-15 22:14:53'), - (6876,255,1,5706,'1.99','2005-07-10 10:21:46','2006-02-15 22:14:53'), - (6877,255,1,5943,'0.99','2005-07-10 22:48:13','2006-02-15 22:14:53'), - (6878,255,2,7475,'8.99','2005-07-27 19:07:43','2006-02-15 22:14:54'), - (6879,255,1,7646,'2.99','2005-07-28 01:31:45','2006-02-15 22:14:54'), - (6880,255,1,8562,'0.99','2005-07-29 11:32:13','2006-02-15 22:14:54'), - (6881,255,1,9061,'6.99','2005-07-30 07:21:52','2006-02-15 22:14:54'), - (6882,255,2,11979,'4.99','2005-08-17 18:07:13','2006-02-15 22:14:54'), - (6883,255,2,12176,'7.99','2005-08-18 01:10:33','2006-02-15 22:14:54'), - (6884,255,2,13154,'2.99','2005-08-19 13:09:54','2006-02-15 22:14:54'), - (6885,255,1,13268,'0.99','2005-08-19 17:33:50','2006-02-15 22:14:54'), - (6886,255,2,13683,'0.99','2005-08-20 08:54:55','2006-02-15 22:14:54'), - (6887,255,1,13758,'8.99','2005-08-20 11:21:26','2006-02-15 22:14:54'), - (6888,255,2,14600,'3.99','2005-08-21 17:45:21','2006-02-15 22:14:54'), - (6889,256,1,51,'4.99','2005-05-25 06:49:10','2006-02-15 22:14:54'), - (6890,256,1,232,'0.99','2005-05-26 11:38:05','2006-02-15 22:14:54'), - (6891,256,2,738,'4.99','2005-05-29 08:20:08','2006-02-15 22:14:54'), - (6892,256,1,935,'2.99','2005-05-30 13:29:36','2006-02-15 22:14:54'), - (6893,256,1,1116,'0.99','2005-05-31 16:10:46','2006-02-15 22:14:54'), - (6894,256,1,1555,'2.99','2005-06-16 02:17:07','2006-02-15 22:14:54'), - (6895,256,2,1965,'0.99','2005-06-17 09:17:39','2006-02-15 22:14:54'), - (6896,256,2,1973,'4.99','2005-06-17 09:26:15','2006-02-15 22:14:54'), - (6897,256,2,2230,'4.99','2005-06-18 03:50:49','2006-02-15 22:14:54'), - (6898,256,1,2380,'6.99','2005-06-18 15:00:04','2006-02-15 22:14:54'), - (6899,256,2,2561,'4.99','2005-06-19 03:14:52','2006-02-15 22:14:54'), - (6900,256,1,2839,'4.99','2005-06-19 22:07:24','2006-02-15 22:14:54'), - (6901,256,1,4130,'0.99','2005-07-07 07:51:53','2006-02-15 22:14:54'), - (6902,256,2,4182,'0.99','2005-07-07 10:28:00','2006-02-15 22:14:54'), - (6903,256,1,5179,'2.99','2005-07-09 10:00:44','2006-02-15 22:14:54'), - (6904,256,1,6298,'0.99','2005-07-11 17:42:33','2006-02-15 22:14:54'), - (6905,256,1,7661,'3.99','2005-07-28 02:10:27','2006-02-15 22:14:54'), - (6906,256,2,9424,'2.99','2005-07-30 21:10:56','2006-02-15 22:14:54'), - (6907,256,2,10759,'4.99','2005-08-01 20:22:51','2006-02-15 22:14:55'), - (6908,256,2,11011,'2.99','2005-08-02 05:07:07','2006-02-15 22:14:55'), - (6909,256,2,11628,'8.99','2005-08-17 04:27:18','2006-02-15 22:14:55'), - (6910,256,2,13457,'0.99','2005-08-20 00:33:22','2006-02-15 22:14:55'), - (6911,256,1,13651,'0.99','2005-08-20 07:50:08','2006-02-15 22:14:55'), - (6912,256,1,14003,'6.99','2005-08-20 20:16:06','2006-02-15 22:14:55'), - (6913,256,2,14036,'4.99','2005-08-20 21:35:27','2006-02-15 22:14:55'), - (6914,256,2,14445,'2.99','2005-08-21 12:07:42','2006-02-15 22:14:55'), - (6915,256,2,14458,'3.99','2005-08-21 12:47:53','2006-02-15 22:14:55'), - (6916,256,2,15609,'2.99','2005-08-23 06:56:04','2006-02-15 22:14:55'), - (6917,256,2,15861,'4.99','2005-08-23 16:15:45','2006-02-15 22:14:55'), - (6918,256,1,15864,'7.99','2005-08-23 16:18:12','2006-02-15 22:14:55'), - (6919,257,2,139,'2.99','2005-05-25 23:00:21','2006-02-15 22:14:55'), - (6920,257,2,244,'2.99','2005-05-26 13:40:40','2006-02-15 22:14:55'), - (6921,257,2,705,'2.99','2005-05-29 02:48:52','2006-02-15 22:14:55'), - (6922,257,1,2557,'0.99','2005-06-19 03:08:51','2006-02-15 22:14:55'), - (6923,257,2,3083,'4.99','2005-06-20 15:33:47','2006-02-15 22:14:55'), - (6924,257,2,4462,'6.99','2005-07-08 00:02:49','2006-02-15 22:14:55'), - (6925,257,2,4574,'4.99','2005-07-08 05:39:42','2006-02-15 22:14:55'), - (6926,257,1,5495,'6.99','2005-07-10 00:16:54','2006-02-15 22:14:55'), - (6927,257,1,5858,'4.99','2005-07-10 18:00:07','2006-02-15 22:14:55'), - (6928,257,1,6422,'5.99','2005-07-11 23:46:19','2006-02-15 22:14:55'), - (6929,257,2,6711,'5.99','2005-07-12 13:23:40','2006-02-15 22:14:55'), - (6930,257,2,7007,'4.99','2005-07-27 01:43:39','2006-02-15 22:14:55'), - (6931,257,1,7176,'2.99','2005-07-27 08:04:28','2006-02-15 22:14:55'), - (6932,257,1,7496,'1.99','2005-07-27 20:04:05','2006-02-15 22:14:55'), - (6933,257,2,7510,'2.99','2005-07-27 20:37:57','2006-02-15 22:14:55'), - (6934,257,2,7518,'5.99','2005-07-27 21:01:16','2006-02-15 22:14:55'), - (6935,257,2,8156,'3.99','2005-07-28 20:59:04','2006-02-15 22:14:56'), - (6936,257,2,8252,'2.99','2005-07-29 00:54:17','2006-02-15 22:14:56'), - (6937,257,1,8344,'4.99','2005-07-29 04:45:25','2006-02-15 22:14:56'), - (6938,257,1,8640,'4.99','2005-07-29 14:34:17','2006-02-15 22:14:56'), - (6939,257,2,8946,'6.99','2005-07-30 03:14:53','2006-02-15 22:14:56'), - (6940,257,1,9800,'4.99','2005-07-31 11:00:58','2006-02-15 22:14:56'), - (6941,257,2,10142,'4.99','2005-07-31 22:10:54','2006-02-15 22:14:56'), - (6942,257,1,11230,'4.99','2005-08-02 12:59:08','2006-02-15 22:14:56'), - (6943,257,1,11394,'0.99','2005-08-02 18:44:45','2006-02-15 22:14:56'), - (6944,257,2,11545,'6.99','2005-08-17 00:56:06','2006-02-15 22:14:56'), - (6945,257,2,11860,'1.99','2005-08-17 13:52:26','2006-02-15 22:14:56'), - (6946,257,2,12841,'2.99','2005-08-19 01:55:55','2006-02-15 22:14:56'), - (6947,257,1,12904,'5.99','2005-08-19 04:10:50','2006-02-15 22:14:56'), - (6948,257,2,13203,'7.99','2005-08-19 15:00:58','2006-02-15 22:14:56'), - (6949,257,2,13218,'0.99','2005-08-19 15:39:39','2006-02-15 22:14:56'), - (6950,257,1,13389,'2.99','2005-08-19 21:52:51','2006-02-15 22:14:56'), - (6951,257,2,13846,'5.99','2005-08-20 14:32:31','2006-02-15 22:14:56'), - (6952,257,2,14115,'0.99','2005-08-21 01:10:29','2006-02-15 22:14:56'), - (6953,257,1,15025,'0.99','2005-08-22 08:57:24','2006-02-15 22:14:56'), - (6954,257,1,15967,'2.99','2005-08-23 19:50:06','2006-02-15 22:14:56'), - (6955,257,2,15968,'0.99','2005-08-23 19:51:29','2006-02-15 22:14:56'), - (6956,258,1,1743,'2.99','2005-06-16 16:38:10','2006-02-15 22:14:56'), - (6957,258,2,2678,'0.99','2005-06-19 12:12:23','2006-02-15 22:14:56'), - (6958,258,2,2931,'8.99','2005-06-20 04:50:45','2006-02-15 22:14:56'), - (6959,258,2,4408,'2.99','2005-07-07 21:41:06','2006-02-15 22:14:56'), - (6960,258,1,4677,'5.99','2005-07-08 10:30:36','2006-02-15 22:14:56'), - (6961,258,2,4897,'0.99','2005-07-08 20:25:11','2006-02-15 22:14:56'), - (6962,258,2,5312,'5.99','2005-07-09 16:03:09','2006-02-15 22:14:56'), - (6963,258,1,5674,'0.99','2005-07-10 08:26:26','2006-02-15 22:14:57'), - (6964,258,1,5935,'9.99','2005-07-10 22:11:04','2006-02-15 22:14:57'), - (6965,258,2,6012,'4.99','2005-07-11 02:00:12','2006-02-15 22:14:57'), - (6966,258,1,7814,'2.99','2005-07-28 08:09:48','2006-02-15 22:14:57'), - (6967,258,1,8675,'4.99','2005-07-29 15:56:18','2006-02-15 22:14:57'), - (6968,258,2,9069,'4.99','2005-07-30 07:39:59','2006-02-15 22:14:57'), - (6969,258,2,10293,'1.99','2005-08-01 03:44:26','2006-02-15 22:14:57'), - (6970,258,2,10315,'4.99','2005-08-01 04:34:45','2006-02-15 22:14:57'), - (6971,258,1,10325,'5.99','2005-08-01 04:52:12','2006-02-15 22:14:57'), - (6972,258,2,10332,'6.99','2005-08-01 04:57:32','2006-02-15 22:14:57'), - (6973,258,1,10393,'0.99','2005-08-01 06:52:50','2006-02-15 22:14:57'), - (6974,258,1,12246,'5.99','2005-08-18 03:48:41','2006-02-15 22:14:57'), - (6975,258,2,12296,'3.99','2005-08-18 05:16:28','2006-02-15 22:14:57'), - (6976,258,1,13491,'4.99','2005-08-20 01:30:56','2006-02-15 22:14:57'), - (6977,258,1,13695,'6.99','2005-08-20 09:13:25','2006-02-15 22:14:57'), - (6978,258,2,13897,'2.99','2005-08-20 16:02:28','2006-02-15 22:14:57'), - (6979,258,2,14901,'6.99','2005-08-22 04:31:37','2006-02-15 22:14:57'), - (6980,259,2,722,'6.99','2005-05-29 05:30:31','2006-02-15 22:14:57'), - (6981,259,2,901,'2.99','2005-05-30 09:40:40','2006-02-15 22:14:57'), - (6982,259,1,1147,'5.99','2005-05-31 20:37:52','2006-02-15 22:14:57'), - (6983,259,1,1641,'7.99','2005-06-16 08:46:26','2006-02-15 22:14:57'), - (6984,259,2,1723,'7.99','2005-06-16 15:14:18','2006-02-15 22:14:57'), - (6985,259,2,1813,'2.99','2005-06-16 21:11:00','2006-02-15 22:14:57'), - (6986,259,2,2375,'5.99','2005-06-18 14:47:29','2006-02-15 22:14:57'), - (6987,259,2,4199,'5.99','2005-07-07 11:13:07','2006-02-15 22:14:57'), - (6988,259,2,4489,'4.99','2005-07-08 01:23:58','2006-02-15 22:14:57'), - (6989,259,1,6074,'0.99','2005-07-11 04:59:56','2006-02-15 22:14:57'), - (6990,259,2,6539,'3.99','2005-07-12 04:50:49','2006-02-15 22:14:57'), - (6991,259,2,7188,'2.99','2005-07-27 08:32:08','2006-02-15 22:14:57'), - (6992,259,2,7774,'7.99','2005-07-28 07:03:25','2006-02-15 22:14:58'), - (6993,259,1,7817,'4.99','2005-07-28 08:20:55','2006-02-15 22:14:58'), - (6994,259,2,9205,'6.99','2005-07-30 12:46:40','2006-02-15 22:14:58'), - (6995,259,1,9282,'6.99','2005-07-30 15:17:31','2006-02-15 22:14:58'), - (6996,259,1,9444,'7.99','2005-07-30 21:48:44','2006-02-15 22:14:58'), - (6997,259,1,10510,'3.99','2005-08-01 11:28:30','2006-02-15 22:14:58'), - (6998,259,1,10781,'2.99','2005-08-01 21:22:41','2006-02-15 22:14:58'), - (6999,259,1,11184,'3.99','2005-08-02 11:01:26','2006-02-15 22:14:58'), - (7000,259,2,12680,'6.99','2005-08-18 19:43:46','2006-02-15 22:14:58'), - (7001,259,1,13109,'4.99','2005-08-19 11:23:20','2006-02-15 22:14:58'), - (7002,259,2,13112,'2.99','2005-08-19 11:27:10','2006-02-15 22:14:58'), - (7003,259,2,13366,'4.99','2005-08-19 21:14:45','2006-02-15 22:14:58'), - (7004,259,1,13598,'5.99','2005-08-20 05:59:17','2006-02-15 22:14:58'), - (7005,259,2,13649,'4.99','2005-08-20 07:48:38','2006-02-15 22:14:58'), - (7006,259,2,14067,'6.99','2005-08-20 22:49:23','2006-02-15 22:14:58'), - (7007,259,2,14170,'4.99','2005-08-21 03:00:39','2006-02-15 22:14:58'), - (7008,259,2,14966,'2.99','2005-08-22 06:45:57','2006-02-15 22:14:58'), - (7009,259,1,15425,'10.99','2005-08-23 00:05:57','2006-02-15 22:14:58'), - (7010,259,1,15473,'2.99','2005-08-23 01:39:10','2006-02-15 22:14:58'), - (7011,259,2,NULL,'1.99','2005-08-23 06:13:16','2006-02-15 22:14:58'), - (7012,259,1,15689,'2.99','2005-08-23 09:52:55','2006-02-15 22:14:58'), - (7013,260,1,1101,'8.99','2005-05-31 14:13:59','2006-02-15 22:14:58'), - (7014,260,1,1626,'3.99','2005-06-16 07:49:47','2006-02-15 22:14:58'), - (7015,260,2,2001,'2.99','2005-06-17 11:35:09','2006-02-15 22:14:58'), - (7016,260,2,2040,'2.99','2005-06-17 14:18:37','2006-02-15 22:14:58'), - (7017,260,1,2091,'10.99','2005-06-17 18:09:04','2006-02-15 22:14:58'), - (7018,260,1,2178,'0.99','2005-06-18 00:38:35','2006-02-15 22:14:58'), - (7019,260,1,2823,'7.99','2005-06-19 20:30:21','2006-02-15 22:14:58'), - (7020,260,2,2958,'3.99','2005-06-20 06:56:20','2006-02-15 22:14:58'), - (7021,260,1,3193,'0.99','2005-06-20 23:52:30','2006-02-15 22:14:59'), - (7022,260,2,4054,'0.99','2005-07-07 03:42:07','2006-02-15 22:14:59'), - (7023,260,2,4741,'6.99','2005-07-08 13:31:23','2006-02-15 22:14:59'), - (7024,260,1,4870,'2.99','2005-07-08 19:14:45','2006-02-15 22:14:59'), - (7025,260,2,6328,'2.99','2005-07-11 19:09:33','2006-02-15 22:14:59'), - (7026,260,2,7072,'0.99','2005-07-27 04:02:33','2006-02-15 22:14:59'), - (7027,260,1,7268,'1.99','2005-07-27 11:23:09','2006-02-15 22:14:59'), - (7028,260,1,7885,'7.99','2005-07-28 10:37:41','2006-02-15 22:14:59'), - (7029,260,1,8475,'1.99','2005-07-29 08:37:41','2006-02-15 22:14:59'), - (7030,260,1,8484,'2.99','2005-07-29 08:51:59','2006-02-15 22:14:59'), - (7031,260,1,8717,'0.99','2005-07-29 17:40:45','2006-02-15 22:14:59'), - (7032,260,1,8933,'0.99','2005-07-30 02:36:06','2006-02-15 22:14:59'), - (7033,260,2,9176,'4.99','2005-07-30 11:50:54','2006-02-15 22:14:59'), - (7034,260,2,10970,'8.99','2005-08-02 04:06:46','2006-02-15 22:14:59'), - (7035,260,1,12852,'0.99','2005-08-19 02:12:40','2006-02-15 22:14:59'), - (7036,260,2,13440,'2.99','2005-08-19 23:42:52','2006-02-15 22:14:59'), - (7037,260,1,13685,'3.99','2005-08-20 08:57:11','2006-02-15 22:14:59'), - (7038,260,1,13966,'2.99','2005-08-20 18:28:28','2006-02-15 22:14:59'), - (7039,260,2,13978,'0.99','2005-08-20 19:03:25','2006-02-15 22:14:59'), - (7040,260,2,14035,'2.99','2005-08-20 21:31:58','2006-02-15 22:14:59'), - (7041,260,2,14441,'2.99','2005-08-21 11:59:38','2006-02-15 22:14:59'), - (7042,260,1,14579,'7.99','2005-08-21 16:54:47','2006-02-15 22:14:59'), - (7043,260,1,14610,'6.99','2005-08-21 17:59:09','2006-02-15 22:14:59'), - (7044,261,1,12,'4.99','2005-05-25 00:19:27','2006-02-15 22:14:59'), - (7045,261,2,465,'3.99','2005-05-27 20:44:36','2006-02-15 22:14:59'), - (7046,261,2,542,'6.99','2005-05-28 06:42:13','2006-02-15 22:14:59'), - (7047,261,1,792,'0.99','2005-05-29 16:32:10','2006-02-15 22:14:59'), - (7048,261,1,1760,'2.99','2005-06-16 17:48:37','2006-02-15 22:14:59'), - (7049,261,1,1877,'5.99','2005-06-17 02:54:16','2006-02-15 22:15:00'), - (7050,261,2,1988,'8.99','2005-06-17 10:42:34','2006-02-15 22:15:00'), - (7051,261,2,2072,'3.99','2005-06-17 16:33:32','2006-02-15 22:15:00'), - (7052,261,2,2392,'0.99','2005-06-18 15:34:18','2006-02-15 22:15:00'), - (7053,261,1,3363,'0.99','2005-06-21 12:25:07','2006-02-15 22:15:00'), - (7054,261,1,5122,'3.99','2005-07-09 07:19:35','2006-02-15 22:15:00'), - (7055,261,1,5449,'5.99','2005-07-09 22:12:01','2006-02-15 22:15:00'), - (7056,261,2,6515,'2.99','2005-07-12 03:50:32','2006-02-15 22:15:00'), - (7057,261,1,6743,'0.99','2005-07-12 14:29:25','2006-02-15 22:15:00'), - (7058,261,2,9552,'4.99','2005-07-31 02:05:32','2006-02-15 22:15:00'), - (7059,261,1,9842,'4.99','2005-07-31 12:24:58','2006-02-15 22:15:00'), - (7060,261,1,9869,'4.99','2005-07-31 13:21:54','2006-02-15 22:15:00'), - (7061,261,2,10246,'1.99','2005-08-01 02:29:50','2006-02-15 22:15:00'), - (7062,261,1,11834,'1.99','2005-08-17 13:00:40','2006-02-15 22:15:00'), - (7063,261,2,11928,'2.99','2005-08-17 16:28:24','2006-02-15 22:15:00'), - (7064,261,1,12327,'6.99','2005-08-18 06:43:22','2006-02-15 22:15:00'), - (7065,261,2,13245,'4.99','2005-08-19 16:43:41','2006-02-15 22:15:00'), - (7066,261,2,13506,'5.99','2005-08-20 02:07:06','2006-02-15 22:15:00'), - (7067,261,1,13669,'2.99','2005-08-20 08:26:32','2006-02-15 22:15:00'), - (7068,261,1,13849,'4.99','2005-08-20 14:42:34','2006-02-15 22:15:00'), - (7069,261,2,15397,'4.99','2005-08-22 23:08:46','2006-02-15 22:15:00'), - (7070,262,2,984,'4.99','2005-05-30 22:17:17','2006-02-15 22:15:00'), - (7071,262,1,1563,'2.99','2005-06-16 02:46:28','2006-02-15 22:15:00'), - (7072,262,1,2771,'6.99','2005-06-19 17:54:48','2006-02-15 22:15:00'), - (7073,262,2,2850,'8.99','2005-06-19 23:06:28','2006-02-15 22:15:00'), - (7074,262,1,2915,'1.99','2005-06-20 03:57:17','2006-02-15 22:15:00'), - (7075,262,1,3521,'1.99','2005-07-06 01:00:11','2006-02-15 22:15:00'), - (7076,262,1,3699,'3.99','2005-07-06 10:11:25','2006-02-15 22:15:01'), - (7077,262,1,4501,'0.99','2005-07-08 02:12:00','2006-02-15 22:15:01'), - (7078,262,2,5503,'0.99','2005-07-10 00:35:37','2006-02-15 22:15:01'), - (7079,262,1,6291,'0.99','2005-07-11 17:16:40','2006-02-15 22:15:01'), - (7080,262,2,6547,'7.99','2005-07-12 04:57:46','2006-02-15 22:15:01'), - (7081,262,1,6724,'3.99','2005-07-12 13:45:15','2006-02-15 22:15:01'), - (7082,262,2,6762,'7.99','2005-07-12 15:25:33','2006-02-15 22:15:01'), - (7083,262,1,6805,'6.99','2005-07-12 17:23:01','2006-02-15 22:15:01'), - (7084,262,1,6986,'4.99','2005-07-27 00:59:05','2006-02-15 22:15:01'), - (7085,262,1,9105,'6.99','2005-07-30 08:50:25','2006-02-15 22:15:01'), - (7086,262,2,10421,'0.99','2005-08-01 08:14:10','2006-02-15 22:15:01'), - (7087,262,2,10770,'0.99','2005-08-01 20:45:39','2006-02-15 22:15:01'), - (7088,262,2,13466,'2.99','2005-08-20 00:55:16','2006-02-15 22:15:01'), - (7089,262,1,13808,'5.99','2005-08-20 12:55:43','2006-02-15 22:15:01'), - (7090,262,1,14180,'4.99','2005-08-21 03:16:15','2006-02-15 22:15:01'), - (7091,262,2,14465,'3.99','2005-08-21 12:54:22','2006-02-15 22:15:01'), - (7092,262,2,14834,'6.99','2005-08-22 01:45:58','2006-02-15 22:15:01'), - (7093,262,2,15270,'3.99','2005-08-22 18:48:42','2006-02-15 22:15:01'), - (7094,262,1,15456,'0.99','2005-08-23 01:07:01','2006-02-15 22:15:01'), - (7095,262,1,15640,'4.99','2005-08-23 08:04:40','2006-02-15 22:15:01'), - (7096,262,2,15771,'4.99','2005-08-23 13:18:46','2006-02-15 22:15:01'), - (7097,262,1,15918,'3.99','2005-08-23 17:57:35','2006-02-15 22:15:01'), - (7098,263,1,97,'4.99','2005-05-25 16:34:24','2006-02-15 22:15:01'), - (7099,263,1,266,'0.99','2005-05-26 16:08:05','2006-02-15 22:15:01'), - (7100,263,2,2126,'8.99','2005-06-17 20:54:36','2006-02-15 22:15:01'), - (7101,263,2,3257,'1.99','2005-06-21 03:47:19','2006-02-15 22:15:01'), - (7102,263,1,3578,'4.99','2005-07-06 03:47:05','2006-02-15 22:15:01'), - (7103,263,2,3773,'2.99','2005-07-06 13:23:34','2006-02-15 22:15:02'), - (7104,263,2,4637,'0.99','2005-07-08 08:49:54','2006-02-15 22:15:02'), - (7105,263,2,4682,'2.99','2005-07-08 10:38:27','2006-02-15 22:15:02'), - (7106,263,2,5125,'2.99','2005-07-09 07:25:28','2006-02-15 22:15:02'), - (7107,263,2,5254,'1.99','2005-07-09 13:50:11','2006-02-15 22:15:02'), - (7108,263,2,6376,'4.99','2005-07-11 21:40:23','2006-02-15 22:15:02'), - (7109,263,1,6483,'2.99','2005-07-12 01:59:20','2006-02-15 22:15:02'), - (7110,263,1,6808,'1.99','2005-07-12 17:36:42','2006-02-15 22:15:02'), - (7111,263,2,7291,'4.99','2005-07-27 12:30:47','2006-02-15 22:15:02'), - (7112,263,1,7425,'4.99','2005-07-27 17:18:35','2006-02-15 22:15:02'), - (7113,263,1,7706,'4.99','2005-07-28 04:03:17','2006-02-15 22:15:02'), - (7114,263,2,7833,'1.99','2005-07-28 08:46:14','2006-02-15 22:15:02'), - (7115,263,1,10476,'6.99','2005-08-01 10:03:20','2006-02-15 22:15:02'), - (7116,263,1,10775,'2.99','2005-08-01 20:59:52','2006-02-15 22:15:02'), - (7117,263,1,11339,'2.99','2005-08-02 17:02:06','2006-02-15 22:15:02'), - (7118,263,1,11822,'0.99','2005-08-17 12:32:39','2006-02-15 22:15:02'), - (7119,263,2,12057,'9.99','2005-08-17 21:04:35','2006-02-15 22:15:02'), - (7120,263,2,12432,'5.99','2005-08-18 10:35:13','2006-02-15 22:15:02'), - (7121,263,2,12919,'6.99','2005-08-19 04:32:15','2006-02-15 22:15:02'), - (7122,263,1,14335,'3.99','2005-08-21 08:33:07','2006-02-15 22:15:02'), - (7123,263,2,14448,'6.99','2005-08-21 12:13:10','2006-02-15 22:15:02'), - (7124,263,1,15322,'4.99','2005-08-22 20:20:30','2006-02-15 22:15:02'), - (7125,263,2,15922,'7.99','2005-08-23 18:07:31','2006-02-15 22:15:02'), - (7126,263,1,15293,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:02'), - (7127,264,2,1165,'3.99','2005-06-14 23:16:27','2006-02-15 22:15:02'), - (7128,264,1,1206,'4.99','2005-06-15 02:27:07','2006-02-15 22:15:02'), - (7129,264,1,3028,'0.99','2005-06-20 11:50:52','2006-02-15 22:15:02'), - (7130,264,1,3403,'3.99','2005-06-21 15:55:06','2006-02-15 22:15:02'), - (7131,264,1,3618,'6.99','2005-07-06 05:58:45','2006-02-15 22:15:03'), - (7132,264,1,4328,'4.99','2005-07-07 18:03:17','2006-02-15 22:15:03'), - (7133,264,1,4539,'0.99','2005-07-08 04:01:02','2006-02-15 22:15:03'), - (7134,264,1,6340,'8.99','2005-07-11 19:46:05','2006-02-15 22:15:03'), - (7135,264,2,6391,'0.99','2005-07-11 22:23:09','2006-02-15 22:15:03'), - (7136,264,1,6395,'2.99','2005-07-11 22:29:29','2006-02-15 22:15:03'), - (7137,264,1,6543,'0.99','2005-07-12 04:54:32','2006-02-15 22:15:03'), - (7138,264,1,7006,'8.99','2005-07-27 01:42:20','2006-02-15 22:15:03'), - (7139,264,2,9380,'2.99','2005-07-30 19:17:31','2006-02-15 22:15:03'), - (7140,264,2,9515,'0.99','2005-07-31 00:35:05','2006-02-15 22:15:03'), - (7141,264,1,9861,'5.99','2005-07-31 13:04:14','2006-02-15 22:15:03'), - (7142,264,1,9932,'5.99','2005-07-31 15:19:48','2006-02-15 22:15:03'), - (7143,264,2,10792,'2.99','2005-08-01 21:44:24','2006-02-15 22:15:03'), - (7144,264,1,11527,'3.99','2005-08-17 00:25:06','2006-02-15 22:15:03'), - (7145,264,2,11533,'0.99','2005-08-17 00:34:53','2006-02-15 22:15:03'), - (7146,264,1,11539,'2.99','2005-08-17 00:45:41','2006-02-15 22:15:03'), - (7147,264,1,12518,'4.99','2005-08-18 13:41:32','2006-02-15 22:15:03'), - (7148,264,2,13590,'2.99','2005-08-20 05:48:59','2006-02-15 22:15:03'), - (7149,264,1,13664,'5.99','2005-08-20 08:18:36','2006-02-15 22:15:03'), - (7150,264,1,15595,'4.99','2005-08-23 06:19:12','2006-02-15 22:15:03'), - (7151,264,2,14243,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:03'), - (7152,265,2,74,'0.99','2005-05-25 11:09:48','2006-02-15 22:15:03'), - (7153,265,2,2027,'7.99','2005-06-17 13:06:56','2006-02-15 22:15:03'), - (7154,265,2,2562,'4.99','2005-06-19 03:15:05','2006-02-15 22:15:03'), - (7155,265,1,2598,'2.99','2005-06-19 05:59:57','2006-02-15 22:15:03'), - (7156,265,1,3823,'2.99','2005-07-06 15:41:27','2006-02-15 22:15:03'), - (7157,265,1,4610,'0.99','2005-07-08 07:28:05','2006-02-15 22:15:03'), - (7158,265,1,4797,'2.99','2005-07-08 16:39:05','2006-02-15 22:15:03'), - (7159,265,2,5029,'7.99','2005-07-09 02:35:32','2006-02-15 22:15:03'), - (7160,265,1,5417,'4.99','2005-07-09 20:34:09','2006-02-15 22:15:04'), - (7161,265,1,5710,'9.99','2005-07-10 10:32:52','2006-02-15 22:15:04'), - (7162,265,1,6068,'4.99','2005-07-11 04:41:09','2006-02-15 22:15:04'), - (7163,265,2,6371,'4.99','2005-07-11 21:31:51','2006-02-15 22:15:04'), - (7164,265,2,6553,'5.99','2005-07-12 05:06:39','2006-02-15 22:15:04'), - (7165,265,2,6921,'6.99','2005-07-12 22:39:03','2006-02-15 22:15:04'), - (7166,265,2,7414,'1.99','2005-07-27 16:46:07','2006-02-15 22:15:04'), - (7167,265,1,7704,'2.99','2005-07-28 04:02:13','2006-02-15 22:15:04'), - (7168,265,1,8278,'5.99','2005-07-29 01:42:55','2006-02-15 22:15:04'), - (7169,265,2,8489,'2.99','2005-07-29 08:58:03','2006-02-15 22:15:04'), - (7170,265,2,8665,'0.99','2005-07-29 15:39:29','2006-02-15 22:15:04'), - (7171,265,1,9416,'2.99','2005-07-30 20:52:45','2006-02-15 22:15:04'), - (7172,265,2,10592,'3.99','2005-08-01 14:13:00','2006-02-15 22:15:04'), - (7173,265,2,11000,'3.99','2005-08-02 04:56:14','2006-02-15 22:15:04'), - (7174,265,1,12207,'1.99','2005-08-18 02:24:07','2006-02-15 22:15:04'), - (7175,265,2,12346,'4.99','2005-08-18 07:17:55','2006-02-15 22:15:04'), - (7176,265,2,13700,'8.99','2005-08-20 09:26:17','2006-02-15 22:15:04'), - (7177,265,2,14125,'4.99','2005-08-21 01:32:16','2006-02-15 22:15:04'), - (7178,265,1,14547,'6.99','2005-08-21 15:51:38','2006-02-15 22:15:04'), - (7179,265,2,14556,'6.99','2005-08-21 16:03:27','2006-02-15 22:15:04'), - (7180,265,1,14943,'2.99','2005-08-22 05:59:59','2006-02-15 22:15:04'), - (7181,266,1,86,'1.99','2005-05-25 13:36:12','2006-02-15 22:15:04'), - (7182,266,2,651,'2.99','2005-05-28 19:46:50','2006-02-15 22:15:04'), - (7183,266,2,1280,'5.99','2005-06-15 08:16:06','2006-02-15 22:15:04'), - (7184,266,2,2065,'4.99','2005-06-17 16:03:46','2006-02-15 22:15:04'), - (7185,266,2,3002,'4.99','2005-06-20 09:56:12','2006-02-15 22:15:04'), - (7186,266,1,3059,'4.99','2005-06-20 13:38:41','2006-02-15 22:15:04'), - (7187,266,2,3585,'0.99','2005-07-06 04:22:36','2006-02-15 22:15:04'), - (7188,266,2,5362,'5.99','2005-07-09 18:16:08','2006-02-15 22:15:05'), - (7189,266,1,5577,'4.99','2005-07-10 03:58:40','2006-02-15 22:15:05'), - (7190,266,1,8492,'2.99','2005-07-29 09:04:17','2006-02-15 22:15:05'), - (7191,266,2,9109,'5.99','2005-07-30 08:58:24','2006-02-15 22:15:05'), - (7192,266,2,10747,'4.99','2005-08-01 19:59:41','2006-02-15 22:15:05'), - (7193,266,2,10910,'5.99','2005-08-02 01:54:34','2006-02-15 22:15:05'), - (7194,266,2,11233,'5.99','2005-08-02 13:06:11','2006-02-15 22:15:05'), - (7195,266,1,11321,'4.99','2005-08-02 16:15:07','2006-02-15 22:15:05'), - (7196,266,2,11626,'0.99','2005-08-17 04:25:42','2006-02-15 22:15:05'), - (7197,266,1,11726,'0.99','2005-08-17 08:11:10','2006-02-15 22:15:05'), - (7198,266,1,12255,'4.99','2005-08-18 04:07:20','2006-02-15 22:15:05'), - (7199,266,2,12378,'0.99','2005-08-18 08:26:13','2006-02-15 22:15:05'), - (7200,266,1,12405,'6.99','2005-08-18 09:37:30','2006-02-15 22:15:05'), - (7201,266,1,12715,'4.99','2005-08-18 21:09:38','2006-02-15 22:15:05'), - (7202,266,1,13468,'8.99','2005-08-20 00:56:44','2006-02-15 22:15:05'), - (7203,266,1,13556,'6.99','2005-08-20 04:10:26','2006-02-15 22:15:05'), - (7204,266,1,14080,'1.99','2005-08-20 23:29:50','2006-02-15 22:15:05'), - (7205,266,1,14492,'2.99','2005-08-21 13:59:08','2006-02-15 22:15:05'), - (7206,266,1,14877,'0.99','2005-08-22 03:39:56','2006-02-15 22:15:05'), - (7207,266,1,15181,'2.99','2005-08-22 15:46:20','2006-02-15 22:15:05'), - (7208,266,1,15346,'4.99','2005-08-22 21:06:00','2006-02-15 22:15:05'), - (7209,267,2,91,'6.99','2005-05-25 14:57:22','2006-02-15 22:15:05'), - (7210,267,1,436,'4.99','2005-05-27 17:21:04','2006-02-15 22:15:05'), - (7211,267,2,1030,'4.99','2005-05-31 04:06:47','2006-02-15 22:15:05'), - (7212,267,2,1257,'4.99','2005-06-15 06:15:36','2006-02-15 22:15:05'), - (7213,267,2,1349,'4.99','2005-06-15 12:49:02','2006-02-15 22:15:05'), - (7214,267,2,2265,'2.99','2005-06-18 06:03:27','2006-02-15 22:15:05'), - (7215,267,2,2578,'7.99','2005-06-19 04:40:06','2006-02-15 22:15:05'), - (7216,267,1,2582,'6.99','2005-06-19 04:56:27','2006-02-15 22:15:05'), - (7217,267,2,2699,'2.99','2005-06-19 13:29:28','2006-02-15 22:15:06'), - (7218,267,2,2754,'4.99','2005-06-19 16:55:59','2006-02-15 22:15:06'), - (7219,267,1,2877,'1.99','2005-06-20 01:07:16','2006-02-15 22:15:06'), - (7220,267,2,3090,'0.99','2005-06-20 16:00:19','2006-02-15 22:15:06'), - (7221,267,1,3817,'2.99','2005-07-06 15:31:45','2006-02-15 22:15:06'), - (7222,267,1,5340,'6.99','2005-07-09 17:11:35','2006-02-15 22:15:06'), - (7223,267,1,6070,'0.99','2005-07-11 04:47:42','2006-02-15 22:15:06'), - (7224,267,1,6706,'3.99','2005-07-12 12:59:16','2006-02-15 22:15:06'), - (7225,267,1,8190,'4.99','2005-07-28 22:47:06','2006-02-15 22:15:06'), - (7226,267,1,8572,'1.99','2005-07-29 11:51:24','2006-02-15 22:15:06'), - (7227,267,2,9059,'3.99','2005-07-30 07:18:44','2006-02-15 22:15:06'), - (7228,267,1,9308,'6.99','2005-07-30 16:53:21','2006-02-15 22:15:06'), - (7229,267,2,9403,'4.99','2005-07-30 20:18:53','2006-02-15 22:15:06'), - (7230,267,2,9807,'2.99','2005-07-31 11:13:52','2006-02-15 22:15:06'), - (7231,267,2,10048,'4.99','2005-07-31 19:08:56','2006-02-15 22:15:06'), - (7232,267,1,10343,'2.99','2005-08-01 05:15:47','2006-02-15 22:15:06'), - (7233,267,2,11373,'0.99','2005-08-02 18:14:12','2006-02-15 22:15:06'), - (7234,267,1,11690,'6.99','2005-08-17 06:44:22','2006-02-15 22:15:06'), - (7235,267,1,12320,'4.99','2005-08-18 06:26:51','2006-02-15 22:15:06'), - (7236,267,1,12979,'4.99','2005-08-19 07:00:35','2006-02-15 22:15:06'), - (7237,267,2,13236,'9.99','2005-08-19 16:18:24','2006-02-15 22:15:06'), - (7238,267,1,14131,'5.99','2005-08-21 01:43:40','2006-02-15 22:15:06'), - (7239,267,2,15020,'3.99','2005-08-22 08:54:12','2006-02-15 22:15:06'), - (7240,267,1,15208,'3.99','2005-08-22 16:35:47','2006-02-15 22:15:06'), - (7241,267,1,15768,'0.99','2005-08-23 13:14:47','2006-02-15 22:15:06'), - (7242,267,1,15903,'3.99','2005-08-23 17:30:40','2006-02-15 22:15:06'), - (7243,267,2,12066,'7.98','2006-02-14 15:16:03','2006-02-15 22:15:06'), - (7244,267,2,13713,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:07'), - (7245,268,1,1394,'2.99','2005-06-15 16:17:21','2006-02-15 22:15:07'), - (7246,268,2,1450,'4.99','2005-06-15 19:22:08','2006-02-15 22:15:07'), - (7247,268,2,1551,'3.99','2005-06-16 02:01:15','2006-02-15 22:15:07'), - (7248,268,1,2133,'0.99','2005-06-17 21:10:05','2006-02-15 22:15:07'), - (7249,268,2,2324,'4.99','2005-06-18 10:00:33','2006-02-15 22:15:07'), - (7250,268,2,2858,'2.99','2005-06-19 23:17:11','2006-02-15 22:15:07'), - (7251,268,1,3066,'3.99','2005-06-20 13:55:41','2006-02-15 22:15:07'), - (7252,268,1,3361,'1.99','2005-06-21 12:14:23','2006-02-15 22:15:07'), - (7253,268,2,3670,'4.99','2005-07-06 08:56:43','2006-02-15 22:15:07'), - (7254,268,2,4626,'4.99','2005-07-08 08:18:21','2006-02-15 22:15:07'), - (7255,268,1,5039,'7.99','2005-07-09 03:14:45','2006-02-15 22:15:07'), - (7256,268,2,5671,'2.99','2005-07-10 08:18:22','2006-02-15 22:15:07'), - (7257,268,2,5793,'2.99','2005-07-10 14:33:00','2006-02-15 22:15:07'), - (7258,268,2,5888,'6.99','2005-07-10 19:52:17','2006-02-15 22:15:07'), - (7259,268,1,6120,'3.99','2005-07-11 07:49:53','2006-02-15 22:15:07'), - (7260,268,2,6489,'1.99','2005-07-12 02:22:46','2006-02-15 22:15:07'), - (7261,268,1,8931,'2.99','2005-07-30 02:30:07','2006-02-15 22:15:07'), - (7262,268,2,9436,'7.99','2005-07-30 21:33:01','2006-02-15 22:15:07'), - (7263,268,2,9531,'3.99','2005-07-31 01:11:53','2006-02-15 22:15:07'), - (7264,268,1,10040,'1.99','2005-07-31 18:54:15','2006-02-15 22:15:07'), - (7265,268,2,11462,'7.99','2005-08-02 21:36:46','2006-02-15 22:15:07'), - (7266,268,2,11828,'6.99','2005-08-17 12:48:28','2006-02-15 22:15:07'), - (7267,268,2,12007,'2.99','2005-08-17 19:10:34','2006-02-15 22:15:07'), - (7268,268,2,12694,'4.99','2005-08-18 20:10:39','2006-02-15 22:15:07'), - (7269,268,2,13880,'5.99','2005-08-20 15:18:20','2006-02-15 22:15:07'), - (7270,268,2,14249,'4.99','2005-08-21 05:38:05','2006-02-15 22:15:07'), - (7271,268,2,14373,'4.99','2005-08-21 09:44:53','2006-02-15 22:15:08'), - (7272,268,1,14874,'0.99','2005-08-22 03:32:05','2006-02-15 22:15:08'), - (7273,268,2,15183,'2.99','2005-08-22 15:49:54','2006-02-15 22:15:08'), - (7274,269,2,7,'1.99','2005-05-24 23:11:53','2006-02-15 22:15:08'), - (7275,269,1,98,'0.99','2005-05-25 16:48:24','2006-02-15 22:15:08'), - (7276,269,2,678,'6.99','2005-05-28 23:15:48','2006-02-15 22:15:08'), - (7277,269,2,703,'0.99','2005-05-29 02:29:36','2006-02-15 22:15:08'), - (7278,269,1,750,'4.99','2005-05-29 09:41:40','2006-02-15 22:15:08'), - (7279,269,2,1099,'2.99','2005-05-31 13:54:48','2006-02-15 22:15:08'), - (7280,269,1,1334,'3.99','2005-06-15 11:43:09','2006-02-15 22:15:08'), - (7281,269,2,1909,'2.99','2005-06-17 05:11:04','2006-02-15 22:15:08'), - (7282,269,2,2493,'6.99','2005-06-18 22:12:09','2006-02-15 22:15:08'), - (7283,269,1,4125,'9.99','2005-07-07 07:20:29','2006-02-15 22:15:08'), - (7284,269,2,4804,'0.99','2005-07-08 16:57:30','2006-02-15 22:15:08'), - (7285,269,2,4880,'6.99','2005-07-08 19:36:17','2006-02-15 22:15:08'), - (7286,269,1,6440,'2.99','2005-07-12 00:25:04','2006-02-15 22:15:08'), - (7287,269,1,6626,'5.99','2005-07-12 09:16:24','2006-02-15 22:15:08'), - (7288,269,2,6804,'4.99','2005-07-12 17:22:06','2006-02-15 22:15:08'), - (7289,269,1,7032,'4.99','2005-07-27 03:03:09','2006-02-15 22:15:08'), - (7290,269,1,7537,'6.99','2005-07-27 21:36:09','2006-02-15 22:15:08'), - (7291,269,1,7972,'2.99','2005-07-28 14:07:46','2006-02-15 22:15:08'), - (7292,269,2,10566,'2.99','2005-08-01 13:12:11','2006-02-15 22:15:08'), - (7293,269,1,10908,'4.99','2005-08-02 01:53:06','2006-02-15 22:15:08'), - (7294,269,1,11014,'4.99','2005-08-02 05:12:22','2006-02-15 22:15:08'), - (7295,269,1,11915,'3.99','2005-08-17 16:05:28','2006-02-15 22:15:08'), - (7296,269,1,12344,'4.99','2005-08-18 07:15:19','2006-02-15 22:15:09'), - (7297,269,2,13142,'5.99','2005-08-19 12:42:28','2006-02-15 22:15:09'), - (7298,269,2,13759,'2.99','2005-08-20 11:24:48','2006-02-15 22:15:09'), - (7299,269,1,14266,'4.99','2005-08-21 06:20:51','2006-02-15 22:15:09'), - (7300,269,2,14693,'6.99','2005-08-21 20:44:19','2006-02-15 22:15:09'), - (7301,269,2,15788,'2.99','2005-08-23 13:54:39','2006-02-15 22:15:09'), - (7302,269,1,13025,'3.98','2006-02-14 15:16:03','2006-02-15 22:15:09'), - (7303,269,2,12610,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:09'), - (7304,270,1,193,'1.99','2005-05-26 06:41:48','2006-02-15 22:15:09'), - (7305,270,1,1040,'4.99','2005-05-31 05:35:16','2006-02-15 22:15:09'), - (7306,270,1,1345,'4.99','2005-06-15 12:32:13','2006-02-15 22:15:09'), - (7307,270,1,1896,'6.99','2005-06-17 04:25:46','2006-02-15 22:15:09'), - (7308,270,1,2115,'3.99','2005-06-17 20:02:16','2006-02-15 22:15:09'), - (7309,270,2,3164,'5.99','2005-06-20 21:29:00','2006-02-15 22:15:09'), - (7310,270,1,3501,'3.99','2005-07-06 00:11:28','2006-02-15 22:15:09'), - (7311,270,1,3987,'9.99','2005-07-06 23:28:24','2006-02-15 22:15:09'), - (7312,270,2,5533,'0.99','2005-07-10 02:19:28','2006-02-15 22:15:09'), - (7313,270,2,6520,'4.99','2005-07-12 04:05:16','2006-02-15 22:15:09'), - (7314,270,1,8355,'2.99','2005-07-29 04:57:43','2006-02-15 22:15:09'), - (7315,270,2,8618,'3.99','2005-07-29 13:48:20','2006-02-15 22:15:09'), - (7316,270,1,10069,'3.99','2005-07-31 19:43:18','2006-02-15 22:15:09'), - (7317,270,1,10461,'7.99','2005-08-01 09:32:53','2006-02-15 22:15:09'), - (7318,270,2,10579,'5.99','2005-08-01 13:48:22','2006-02-15 22:15:09'), - (7319,270,2,10648,'4.99','2005-08-01 16:08:52','2006-02-15 22:15:09'), - (7320,270,1,11389,'2.99','2005-08-02 18:39:12','2006-02-15 22:15:09'), - (7321,270,1,11810,'0.99','2005-08-17 11:56:48','2006-02-15 22:15:09'), - (7322,270,2,11841,'2.99','2005-08-17 13:12:20','2006-02-15 22:15:09'), - (7323,270,1,11917,'2.99','2005-08-17 16:08:17','2006-02-15 22:15:09'), - (7324,270,1,12192,'2.99','2005-08-18 02:01:40','2006-02-15 22:15:10'), - (7325,270,1,12442,'2.99','2005-08-18 10:50:07','2006-02-15 22:15:10'), - (7326,270,2,13945,'1.99','2005-08-20 17:43:56','2006-02-15 22:15:10'), - (7327,270,1,14618,'0.99','2005-08-21 18:09:51','2006-02-15 22:15:10'), - (7328,270,2,15620,'6.99','2005-08-23 07:10:22','2006-02-15 22:15:10'), - (7329,271,1,1096,'8.99','2005-05-31 13:30:49','2006-02-15 22:15:10'), - (7330,271,2,1852,'2.99','2005-06-17 00:38:20','2006-02-15 22:15:10'), - (7331,271,1,3640,'1.99','2005-07-06 07:12:26','2006-02-15 22:15:10'), - (7332,271,2,4545,'2.99','2005-07-08 04:17:47','2006-02-15 22:15:10'), - (7333,271,2,5878,'1.99','2005-07-10 19:09:57','2006-02-15 22:15:10'), - (7334,271,1,5922,'2.99','2005-07-10 21:36:53','2006-02-15 22:15:10'), - (7335,271,1,6024,'2.99','2005-07-11 02:16:47','2006-02-15 22:15:10'), - (7336,271,1,7618,'3.99','2005-07-28 00:24:14','2006-02-15 22:15:10'), - (7337,271,1,8592,'0.99','2005-07-29 12:33:58','2006-02-15 22:15:10'), - (7338,271,1,9821,'4.99','2005-07-31 11:47:54','2006-02-15 22:15:10'), - (7339,271,2,10143,'7.99','2005-07-31 22:11:43','2006-02-15 22:15:10'), - (7340,271,2,10310,'4.99','2005-08-01 04:24:47','2006-02-15 22:15:10'), - (7341,271,1,10599,'3.99','2005-08-01 14:23:58','2006-02-15 22:15:10'), - (7342,271,1,11431,'2.99','2005-08-02 20:05:16','2006-02-15 22:15:10'), - (7343,271,1,12219,'4.99','2005-08-18 02:49:54','2006-02-15 22:15:10'), - (7344,271,2,14234,'0.99','2005-08-21 05:07:12','2006-02-15 22:15:10'), - (7345,271,2,14355,'4.99','2005-08-21 09:08:29','2006-02-15 22:15:10'), - (7346,271,1,15244,'2.99','2005-08-22 17:48:42','2006-02-15 22:15:10'), - (7347,272,1,33,'0.99','2005-05-25 04:18:51','2006-02-15 22:15:10'), - (7348,272,1,405,'6.99','2005-05-27 13:32:39','2006-02-15 22:15:10'), - (7349,272,1,1041,'6.99','2005-05-31 05:46:23','2006-02-15 22:15:10'), - (7350,272,1,1072,'0.99','2005-05-31 09:52:50','2006-02-15 22:15:10'), - (7351,272,2,1604,'4.99','2005-06-16 06:14:25','2006-02-15 22:15:10'), - (7352,272,2,2546,'5.99','2005-06-19 02:39:39','2006-02-15 22:15:11'), - (7353,272,1,3323,'5.99','2005-06-21 08:45:33','2006-02-15 22:15:11'), - (7354,272,2,5047,'3.99','2005-07-09 03:44:15','2006-02-15 22:15:11'), - (7355,272,2,5158,'2.99','2005-07-09 08:53:09','2006-02-15 22:15:11'), - (7356,272,2,7300,'7.99','2005-07-27 12:50:17','2006-02-15 22:15:11'), - (7357,272,2,7658,'2.99','2005-07-28 02:09:12','2006-02-15 22:15:11'), - (7358,272,1,8248,'7.99','2005-07-29 00:41:56','2006-02-15 22:15:11'), - (7359,272,2,9787,'10.99','2005-07-31 10:26:19','2006-02-15 22:15:11'), - (7360,272,1,10736,'2.99','2005-08-01 19:30:21','2006-02-15 22:15:11'), - (7361,272,2,11003,'2.99','2005-08-02 05:03:05','2006-02-15 22:15:11'), - (7362,272,2,11597,'8.99','2005-08-17 03:02:56','2006-02-15 22:15:11'), - (7363,272,1,11881,'0.99','2005-08-17 14:31:56','2006-02-15 22:15:11'), - (7364,272,2,12006,'6.99','2005-08-17 19:09:12','2006-02-15 22:15:11'), - (7365,272,2,13274,'2.99','2005-08-19 17:50:03','2006-02-15 22:15:11'), - (7366,272,1,13903,'2.99','2005-08-20 16:07:55','2006-02-15 22:15:11'), - (7367,273,2,122,'3.99','2005-05-25 19:46:21','2006-02-15 22:15:11'), - (7368,273,2,980,'0.99','2005-05-30 21:45:19','2006-02-15 22:15:11'), - (7369,273,2,1391,'6.99','2005-06-15 16:11:21','2006-02-15 22:15:11'), - (7370,273,2,1747,'6.99','2005-06-16 16:53:33','2006-02-15 22:15:11'), - (7371,273,2,1765,'4.99','2005-06-16 17:56:10','2006-02-15 22:15:11'), - (7372,273,1,2301,'1.99','2005-06-18 08:24:03','2006-02-15 22:15:11'), - (7373,273,1,3202,'0.99','2005-06-21 00:33:47','2006-02-15 22:15:11'), - (7374,273,2,3556,'2.99','2005-07-06 02:46:13','2006-02-15 22:15:11'), - (7375,273,1,4937,'5.99','2005-07-08 22:29:59','2006-02-15 22:15:11'), - (7376,273,1,5256,'7.99','2005-07-09 13:55:45','2006-02-15 22:15:12'), - (7377,273,2,5435,'7.99','2005-07-09 21:28:07','2006-02-15 22:15:12'), - (7378,273,1,5605,'2.99','2005-07-10 05:06:45','2006-02-15 22:15:12'), - (7379,273,1,6592,'8.99','2005-07-12 07:19:35','2006-02-15 22:15:12'), - (7380,273,1,6635,'1.99','2005-07-12 09:47:58','2006-02-15 22:15:12'), - (7381,273,2,6696,'2.99','2005-07-12 12:44:04','2006-02-15 22:15:12'), - (7382,273,1,6717,'5.99','2005-07-12 13:35:02','2006-02-15 22:15:12'), - (7383,273,1,8449,'2.99','2005-07-29 07:42:25','2006-02-15 22:15:12'), - (7384,273,1,9186,'4.99','2005-07-30 12:13:48','2006-02-15 22:15:12'), - (7385,273,2,9285,'5.99','2005-07-30 15:26:08','2006-02-15 22:15:12'), - (7386,273,2,9391,'0.99','2005-07-30 19:48:41','2006-02-15 22:15:12'), - (7387,273,2,9693,'3.99','2005-07-31 07:11:50','2006-02-15 22:15:12'), - (7388,273,2,9729,'0.99','2005-07-31 08:43:43','2006-02-15 22:15:12'), - (7389,273,1,10272,'8.99','2005-08-01 03:14:34','2006-02-15 22:15:12'), - (7390,273,1,10753,'3.99','2005-08-01 20:09:24','2006-02-15 22:15:12'), - (7391,273,1,10768,'6.99','2005-08-01 20:39:32','2006-02-15 22:15:12'), - (7392,273,1,11282,'4.99','2005-08-02 14:35:03','2006-02-15 22:15:12'), - (7393,273,2,11509,'4.99','2005-08-16 23:29:53','2006-02-15 22:15:12'), - (7394,273,1,12692,'0.99','2005-08-18 20:09:19','2006-02-15 22:15:12'), - (7395,273,2,13738,'4.99','2005-08-20 10:42:42','2006-02-15 22:15:12'), - (7396,273,1,13955,'5.99','2005-08-20 18:05:12','2006-02-15 22:15:12'), - (7397,273,2,14092,'4.99','2005-08-21 00:14:32','2006-02-15 22:15:12'), - (7398,273,2,14558,'2.99','2005-08-21 16:10:50','2006-02-15 22:15:12'), - (7399,273,2,14911,'2.99','2005-08-22 04:51:42','2006-02-15 22:15:12'), - (7400,273,2,15372,'2.99','2005-08-22 21:59:51','2006-02-15 22:15:12'), - (7401,273,1,15760,'6.99','2005-08-23 12:50:00','2006-02-15 22:15:12'), - (7402,274,1,147,'2.99','2005-05-26 00:17:50','2006-02-15 22:15:12'), - (7403,274,1,208,'4.99','2005-05-26 08:10:22','2006-02-15 22:15:13'), - (7404,274,2,301,'2.99','2005-05-26 21:06:14','2006-02-15 22:15:13'), - (7405,274,1,394,'5.99','2005-05-27 11:26:11','2006-02-15 22:15:13'), - (7406,274,2,474,'2.99','2005-05-27 22:11:56','2006-02-15 22:15:13'), - (7407,274,1,892,'4.99','2005-05-30 08:02:56','2006-02-15 22:15:13'), - (7408,274,1,2098,'0.99','2005-06-17 18:42:09','2006-02-15 22:15:13'), - (7409,274,2,3291,'9.99','2005-06-21 06:55:36','2006-02-15 22:15:13'), - (7410,274,2,3532,'5.99','2005-07-06 01:24:38','2006-02-15 22:15:13'), - (7411,274,1,4147,'2.99','2005-07-07 08:32:12','2006-02-15 22:15:13'), - (7412,274,2,4582,'2.99','2005-07-08 06:09:09','2006-02-15 22:15:13'), - (7413,274,2,6389,'3.99','2005-07-11 22:18:20','2006-02-15 22:15:13'), - (7414,274,2,8259,'0.99','2005-07-29 01:05:16','2006-02-15 22:15:13'), - (7415,274,2,8406,'5.99','2005-07-29 06:34:45','2006-02-15 22:15:13'), - (7416,274,2,8517,'7.99','2005-07-29 10:00:48','2006-02-15 22:15:13'), - (7417,274,1,9331,'4.99','2005-07-30 17:46:50','2006-02-15 22:15:13'), - (7418,274,1,9677,'4.99','2005-07-31 06:39:45','2006-02-15 22:15:13'), - (7419,274,2,10059,'4.99','2005-07-31 19:20:49','2006-02-15 22:15:13'), - (7420,274,1,10790,'1.99','2005-08-01 21:38:37','2006-02-15 22:15:13'), - (7421,274,2,10855,'0.99','2005-08-02 00:06:37','2006-02-15 22:15:13'), - (7422,274,1,11058,'3.99','2005-08-02 06:38:44','2006-02-15 22:15:13'), - (7423,274,2,11363,'2.99','2005-08-02 17:48:39','2006-02-15 22:15:13'), - (7424,274,1,12321,'3.99','2005-08-18 06:27:05','2006-02-15 22:15:13'), - (7425,274,1,13103,'2.99','2005-08-19 11:05:51','2006-02-15 22:15:13'), - (7426,274,2,13129,'8.99','2005-08-19 12:05:04','2006-02-15 22:15:13'), - (7427,274,1,13549,'8.99','2005-08-20 03:58:41','2006-02-15 22:15:13'), - (7428,274,1,14012,'0.99','2005-08-20 20:42:12','2006-02-15 22:15:13'), - (7429,274,1,14066,'7.99','2005-08-20 22:45:58','2006-02-15 22:15:13'), - (7430,274,2,14164,'7.99','2005-08-21 02:58:02','2006-02-15 22:15:14'), - (7431,274,1,14388,'4.99','2005-08-21 10:15:13','2006-02-15 22:15:14'), - (7432,274,2,15143,'2.99','2005-08-22 13:46:24','2006-02-15 22:15:14'), - (7433,274,1,15260,'2.99','2005-08-22 18:24:16','2006-02-15 22:15:14'), - (7434,274,2,15328,'2.99','2005-08-22 20:31:38','2006-02-15 22:15:14'), - (7435,274,2,15819,'3.99','2005-08-23 15:01:54','2006-02-15 22:15:14'), - (7436,274,1,13486,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:14'), - (7437,275,2,336,'2.99','2005-05-27 03:15:23','2006-02-15 22:15:14'), - (7438,275,2,1797,'3.99','2005-06-16 20:13:03','2006-02-15 22:15:14'), - (7439,275,2,2414,'0.99','2005-06-18 17:01:55','2006-02-15 22:15:14'), - (7440,275,1,2646,'4.99','2005-06-19 09:56:01','2006-02-15 22:15:14'), - (7441,275,1,3355,'2.99','2005-06-21 11:30:47','2006-02-15 22:15:14'), - (7442,275,2,4396,'0.99','2005-07-07 21:14:19','2006-02-15 22:15:14'), - (7443,275,1,4634,'0.99','2005-07-08 08:40:02','2006-02-15 22:15:14'), - (7444,275,2,4912,'9.99','2005-07-08 21:26:11','2006-02-15 22:15:14'), - (7445,275,2,6301,'5.99','2005-07-11 17:54:09','2006-02-15 22:15:14'), - (7446,275,2,6856,'0.99','2005-07-12 19:50:16','2006-02-15 22:15:14'), - (7447,275,1,7553,'2.99','2005-07-27 22:11:36','2006-02-15 22:15:14'), - (7448,275,2,7596,'4.99','2005-07-27 23:33:57','2006-02-15 22:15:14'), - (7449,275,1,8746,'2.99','2005-07-29 19:03:15','2006-02-15 22:15:15'), - (7450,275,2,9258,'2.99','2005-07-30 14:31:31','2006-02-15 22:15:15'), - (7451,275,1,10479,'6.99','2005-08-01 10:11:25','2006-02-15 22:15:15'), - (7452,275,2,11309,'1.99','2005-08-02 15:50:55','2006-02-15 22:15:15'), - (7453,275,1,11610,'4.99','2005-08-17 03:43:37','2006-02-15 22:15:15'), - (7454,275,2,12589,'5.99','2005-08-18 16:06:31','2006-02-15 22:15:15'), - (7455,275,1,12606,'1.99','2005-08-18 17:02:21','2006-02-15 22:15:15'), - (7456,275,1,13037,'3.99','2005-08-19 08:53:57','2006-02-15 22:15:15'), - (7457,275,2,13860,'2.99','2005-08-20 14:55:09','2006-02-15 22:15:15'), - (7458,275,2,13865,'1.99','2005-08-20 15:04:09','2006-02-15 22:15:15'), - (7459,275,2,13902,'0.99','2005-08-20 16:07:08','2006-02-15 22:15:15'), - (7460,275,2,14063,'0.99','2005-08-20 22:36:40','2006-02-15 22:15:15'), - (7461,275,1,14187,'5.99','2005-08-21 03:32:03','2006-02-15 22:15:15'), - (7462,275,1,14296,'2.99','2005-08-21 07:13:23','2006-02-15 22:15:15'), - (7463,275,2,14483,'5.99','2005-08-21 13:43:59','2006-02-15 22:15:15'), - (7464,275,2,14727,'4.99','2005-08-21 22:12:45','2006-02-15 22:15:15'), - (7465,275,2,15269,'2.99','2005-08-22 18:39:44','2006-02-15 22:15:15'), - (7466,275,2,15496,'3.99','2005-08-23 02:30:23','2006-02-15 22:15:15'), - (7467,276,1,736,'3.99','2005-05-29 08:10:07','2006-02-15 22:15:15'), - (7468,276,1,860,'10.99','2005-05-30 02:45:16','2006-02-15 22:15:15'), - (7469,276,1,1352,'0.99','2005-06-15 12:58:27','2006-02-15 22:15:15'), - (7470,276,2,2763,'4.99','2005-06-19 17:23:34','2006-02-15 22:15:16'), - (7471,276,2,3064,'6.99','2005-06-20 13:53:13','2006-02-15 22:15:16'), - (7472,276,2,3714,'2.99','2005-07-06 10:51:28','2006-02-15 22:15:16'), - (7473,276,1,4715,'0.99','2005-07-08 12:15:37','2006-02-15 22:15:16'), - (7474,276,2,5186,'4.99','2005-07-09 10:18:40','2006-02-15 22:15:16'), - (7475,276,2,5246,'4.99','2005-07-09 13:25:18','2006-02-15 22:15:16'), - (7476,276,2,7282,'5.99','2005-07-27 12:00:19','2006-02-15 22:15:16'), - (7477,276,2,7842,'2.99','2005-07-28 09:10:06','2006-02-15 22:15:16'), - (7478,276,1,9070,'0.99','2005-07-30 07:40:39','2006-02-15 22:15:16'), - (7479,276,1,9080,'1.99','2005-07-30 08:02:39','2006-02-15 22:15:16'), - (7480,276,1,9102,'4.99','2005-07-30 08:48:20','2006-02-15 22:15:16'), - (7481,276,1,9229,'8.99','2005-07-30 13:38:17','2006-02-15 22:15:16'), - (7482,276,2,10149,'5.99','2005-07-31 22:20:46','2006-02-15 22:15:16'), - (7483,276,2,10691,'0.99','2005-08-01 18:09:53','2006-02-15 22:15:16'), - (7484,276,1,10763,'2.99','2005-08-01 20:32:27','2006-02-15 22:15:16'), - (7485,276,2,11085,'2.99','2005-08-02 07:36:44','2006-02-15 22:15:16'), - (7486,276,1,11636,'4.99','2005-08-17 04:36:31','2006-02-15 22:15:16'), - (7487,276,2,11961,'3.99','2005-08-17 17:28:01','2006-02-15 22:15:16'), - (7488,276,2,12178,'5.99','2005-08-18 01:17:32','2006-02-15 22:15:16'), - (7489,276,2,12251,'4.99','2005-08-18 03:59:02','2006-02-15 22:15:16'), - (7490,276,1,12650,'4.99','2005-08-18 18:33:20','2006-02-15 22:15:16'), - (7491,276,1,14000,'4.99','2005-08-20 20:06:05','2006-02-15 22:15:16'), - (7492,276,2,15718,'2.99','2005-08-23 11:05:17','2006-02-15 22:15:16'), - (7493,276,1,15769,'3.99','2005-08-23 13:16:15','2006-02-15 22:15:16'), - (7494,276,2,15923,'4.99','2005-08-23 18:08:19','2006-02-15 22:15:17'), - (7495,277,2,308,'6.99','2005-05-26 22:01:39','2006-02-15 22:15:17'), - (7496,277,1,1331,'2.99','2005-06-15 11:34:33','2006-02-15 22:15:17'), - (7497,277,2,1717,'2.99','2005-06-16 14:47:16','2006-02-15 22:15:17'), - (7498,277,2,2162,'3.99','2005-06-17 23:45:47','2006-02-15 22:15:17'), - (7499,277,2,2723,'4.99','2005-06-19 14:55:23','2006-02-15 22:15:17'), - (7500,277,1,3247,'5.99','2005-06-21 03:12:15','2006-02-15 22:15:17'), - (7501,277,2,3274,'4.99','2005-06-21 05:30:36','2006-02-15 22:15:17'), - (7502,277,1,3344,'2.99','2005-06-21 10:57:27','2006-02-15 22:15:17'), - (7503,277,2,3740,'5.99','2005-07-06 11:55:35','2006-02-15 22:15:17'), - (7504,277,2,3897,'2.99','2005-07-06 19:11:43','2006-02-15 22:15:17'), - (7505,277,1,4290,'4.99','2005-07-07 15:47:10','2006-02-15 22:15:17'), - (7506,277,2,4987,'5.99','2005-07-09 00:45:41','2006-02-15 22:15:17'), - (7507,277,1,5861,'0.99','2005-07-10 18:14:22','2006-02-15 22:15:17'), - (7508,277,1,5913,'2.99','2005-07-10 20:58:55','2006-02-15 22:15:17'), - (7509,277,2,6455,'2.99','2005-07-12 01:01:58','2006-02-15 22:15:17'), - (7510,277,1,6487,'5.99','2005-07-12 02:17:00','2006-02-15 22:15:17'), - (7511,277,2,7423,'4.99','2005-07-27 17:11:47','2006-02-15 22:15:17'), - (7512,277,2,8410,'2.99','2005-07-29 06:41:36','2006-02-15 22:15:17'), - (7513,277,2,9669,'4.99','2005-07-31 06:31:36','2006-02-15 22:15:17'), - (7514,277,1,9901,'0.99','2005-07-31 14:20:59','2006-02-15 22:15:17'), - (7515,277,2,11074,'3.99','2005-08-02 07:21:43','2006-02-15 22:15:17'), - (7516,277,2,11162,'4.99','2005-08-02 10:07:54','2006-02-15 22:15:17'), - (7517,277,2,11574,'0.99','2005-08-17 01:38:19','2006-02-15 22:15:17'), - (7518,277,2,12149,'3.99','2005-08-18 00:13:51','2006-02-15 22:15:17'), - (7519,277,1,12458,'5.99','2005-08-18 11:22:53','2006-02-15 22:15:17'), - (7520,277,1,13122,'4.99','2005-08-19 11:53:49','2006-02-15 22:15:17'), - (7521,277,2,13526,'4.99','2005-08-20 02:58:42','2006-02-15 22:15:18'), - (7522,277,1,13714,'4.99','2005-08-20 09:41:09','2006-02-15 22:15:18'), - (7523,277,2,14227,'4.99','2005-08-21 04:56:31','2006-02-15 22:15:18'), - (7524,277,2,14745,'4.99','2005-08-21 22:53:01','2006-02-15 22:15:18'), - (7525,277,1,15008,'10.99','2005-08-22 08:24:32','2006-02-15 22:15:18'), - (7526,277,1,15345,'5.99','2005-08-22 21:05:50','2006-02-15 22:15:18'), - (7527,278,1,1092,'4.99','2005-05-31 12:15:57','2006-02-15 22:15:18'), - (7528,278,2,1387,'0.99','2005-06-15 15:40:56','2006-02-15 22:15:18'), - (7529,278,1,1978,'2.99','2005-06-17 09:42:34','2006-02-15 22:15:18'), - (7530,278,2,2078,'4.99','2005-06-17 16:48:55','2006-02-15 22:15:18'), - (7531,278,1,3453,'2.99','2005-06-21 21:12:11','2006-02-15 22:15:18'), - (7532,278,1,3776,'2.99','2005-07-06 13:31:37','2006-02-15 22:15:18'), - (7533,278,1,4430,'4.99','2005-07-07 22:35:24','2006-02-15 22:15:18'), - (7534,278,2,4866,'8.99','2005-07-08 19:09:59','2006-02-15 22:15:18'), - (7535,278,2,6869,'4.99','2005-07-12 20:12:06','2006-02-15 22:15:18'), - (7536,278,1,7239,'0.99','2005-07-27 10:20:27','2006-02-15 22:15:18'), - (7537,278,2,7834,'0.99','2005-07-28 08:46:43','2006-02-15 22:15:18'), - (7538,278,2,8222,'5.99','2005-07-28 23:51:53','2006-02-15 22:15:18'), - (7539,278,1,8953,'4.99','2005-07-30 03:21:05','2006-02-15 22:15:18'), - (7540,278,2,9448,'2.99','2005-07-30 21:56:13','2006-02-15 22:15:18'), - (7541,278,1,10649,'2.99','2005-08-01 16:11:40','2006-02-15 22:15:18'), - (7542,278,1,10731,'2.99','2005-08-01 19:21:48','2006-02-15 22:15:18'), - (7543,278,2,10849,'3.99','2005-08-01 23:51:00','2006-02-15 22:15:18'), - (7544,278,1,11095,'5.99','2005-08-02 08:03:20','2006-02-15 22:15:18'), - (7545,278,2,11531,'0.99','2005-08-17 00:30:04','2006-02-15 22:15:18'), - (7546,278,1,12787,'0.99','2005-08-19 00:07:58','2006-02-15 22:15:18'), - (7547,278,1,13896,'0.99','2005-08-20 15:59:56','2006-02-15 22:15:18'), - (7548,278,2,13976,'0.99','2005-08-20 19:02:16','2006-02-15 22:15:19'), - (7549,278,1,14268,'2.99','2005-08-21 06:21:24','2006-02-15 22:15:19'), - (7550,278,2,14803,'0.99','2005-08-22 00:49:10','2006-02-15 22:15:19'), - (7551,278,1,14986,'4.99','2005-08-22 07:37:24','2006-02-15 22:15:19'), - (7552,278,1,16019,'4.99','2005-08-23 21:30:45','2006-02-15 22:15:19'), - (7553,279,1,979,'2.99','2005-05-30 21:37:11','2006-02-15 22:15:19'), - (7554,279,2,1019,'0.99','2005-05-31 03:05:07','2006-02-15 22:15:19'), - (7555,279,1,1178,'2.99','2005-06-15 00:36:40','2006-02-15 22:15:19'), - (7556,279,1,2147,'4.99','2005-06-17 22:28:13','2006-02-15 22:15:19'), - (7557,279,1,3215,'0.99','2005-06-21 01:11:32','2006-02-15 22:15:19'), - (7558,279,1,3374,'2.99','2005-06-21 13:36:30','2006-02-15 22:15:19'), - (7559,279,1,3375,'4.99','2005-06-21 13:37:18','2006-02-15 22:15:19'), - (7560,279,1,4476,'4.99','2005-07-08 00:34:25','2006-02-15 22:15:19'), - (7561,279,1,4978,'7.99','2005-07-09 00:22:02','2006-02-15 22:15:19'), - (7562,279,2,5248,'2.99','2005-07-09 13:29:44','2006-02-15 22:15:19'), - (7563,279,1,5361,'9.99','2005-07-09 18:15:32','2006-02-15 22:15:19'), - (7564,279,1,6176,'0.99','2005-07-11 10:48:21','2006-02-15 22:15:19'), - (7565,279,1,7947,'2.99','2005-07-28 13:05:50','2006-02-15 22:15:19'), - (7566,279,2,8559,'3.99','2005-07-29 11:25:54','2006-02-15 22:15:19'), - (7567,279,2,9820,'5.99','2005-07-31 11:46:57','2006-02-15 22:15:19'), - (7568,279,2,10177,'2.99','2005-07-31 23:42:33','2006-02-15 22:15:19'), - (7569,279,2,11250,'6.99','2005-08-02 13:35:42','2006-02-15 22:15:19'), - (7570,279,1,11515,'2.99','2005-08-16 23:54:34','2006-02-15 22:15:19'), - (7571,279,1,11703,'4.99','2005-08-17 07:19:29','2006-02-15 22:15:19'), - (7572,279,2,12935,'2.99','2005-08-19 05:20:25','2006-02-15 22:15:19'), - (7573,279,1,12949,'4.99','2005-08-19 05:55:52','2006-02-15 22:15:19'), - (7574,279,1,13105,'7.99','2005-08-19 11:06:16','2006-02-15 22:15:20'), - (7575,279,1,13233,'2.99','2005-08-19 16:14:41','2006-02-15 22:15:20'), - (7576,279,2,13588,'4.99','2005-08-20 05:47:11','2006-02-15 22:15:20'), - (7577,279,2,14206,'2.99','2005-08-21 03:59:26','2006-02-15 22:15:20'), - (7578,279,1,14714,'3.99','2005-08-21 21:27:43','2006-02-15 22:15:20'), - (7579,279,1,14779,'5.99','2005-08-22 00:00:56','2006-02-15 22:15:20'), - (7580,279,1,14789,'4.99','2005-08-22 00:29:39','2006-02-15 22:15:20'), - (7581,279,2,15580,'6.99','2005-08-23 05:39:06','2006-02-15 22:15:20'), - (7582,279,1,15606,'2.99','2005-08-23 06:50:27','2006-02-15 22:15:20'), - (7583,279,2,13538,'4.99','2006-02-14 15:16:03','2006-02-15 22:15:20'), - (7584,280,1,1014,'4.99','2005-05-31 02:39:16','2006-02-15 22:15:20'), - (7585,280,1,2656,'3.99','2005-06-19 10:42:33','2006-02-15 22:15:20'), - (7586,280,2,3009,'4.99','2005-06-20 10:24:44','2006-02-15 22:15:20'), - (7587,280,2,3097,'0.99','2005-06-20 16:26:14','2006-02-15 22:15:20'), - (7588,280,1,4616,'4.99','2005-07-08 07:48:12','2006-02-15 22:15:20'), - (7589,280,2,6851,'0.99','2005-07-12 19:32:14','2006-02-15 22:15:20'), - (7590,280,1,7070,'4.99','2005-07-27 04:01:08','2006-02-15 22:15:20'), - (7591,280,2,7901,'0.99','2005-07-28 11:12:12','2006-02-15 22:15:20'), - (7592,280,2,8319,'0.99','2005-07-29 03:44:52','2006-02-15 22:15:20'), - (7593,280,1,8365,'0.99','2005-07-29 05:11:00','2006-02-15 22:15:20'), - (7594,280,1,8565,'7.99','2005-07-29 11:35:23','2006-02-15 22:15:20'), - (7595,280,2,8695,'6.99','2005-07-29 16:44:55','2006-02-15 22:15:21'), - (7596,280,2,8744,'3.99','2005-07-29 18:58:24','2006-02-15 22:15:21'), - (7597,280,1,8912,'0.99','2005-07-30 01:31:25','2006-02-15 22:15:21'), - (7598,280,2,9103,'0.99','2005-07-30 08:49:26','2006-02-15 22:15:21'), - (7599,280,1,10847,'9.99','2005-08-01 23:49:33','2006-02-15 22:15:21'), - (7600,280,1,11366,'4.99','2005-08-02 18:01:25','2006-02-15 22:15:21'), - (7601,280,1,11517,'2.99','2005-08-16 23:56:28','2006-02-15 22:15:21'), - (7602,280,1,12053,'4.99','2005-08-17 20:57:27','2006-02-15 22:15:21'), - (7603,280,1,12849,'5.99','2005-08-19 02:05:37','2006-02-15 22:15:21'), - (7604,280,2,13231,'9.99','2005-08-19 16:12:49','2006-02-15 22:15:21'), - (7605,280,1,13321,'4.99','2005-08-19 19:40:37','2006-02-15 22:15:21'), - (7606,280,1,13667,'4.99','2005-08-20 08:25:34','2006-02-15 22:15:21'), - (7607,280,2,15036,'2.99','2005-08-22 09:36:00','2006-02-15 22:15:21'), - (7608,280,1,15312,'4.99','2005-08-22 19:58:15','2006-02-15 22:15:21'), - (7609,280,2,15554,'5.99','2005-08-23 04:48:12','2006-02-15 22:15:21'), - (7610,280,2,15950,'5.99','2005-08-23 19:09:39','2006-02-15 22:15:22'), - (7611,281,2,650,'2.99','2005-05-28 19:45:40','2006-02-15 22:15:22'), - (7612,281,2,754,'2.99','2005-05-29 10:18:59','2006-02-15 22:15:22'), - (7613,281,2,1485,'5.99','2005-06-15 21:24:10','2006-02-15 22:15:22'), - (7614,281,1,2254,'5.99','2005-06-18 05:15:14','2006-02-15 22:15:22'), - (7615,281,1,4607,'0.99','2005-07-08 07:15:14','2006-02-15 22:15:22'), - (7616,281,2,4864,'6.99','2005-07-08 19:05:34','2006-02-15 22:15:22'), - (7617,281,2,5410,'5.99','2005-07-09 20:21:10','2006-02-15 22:15:22'), - (7618,281,2,6825,'0.99','2005-07-12 18:28:12','2006-02-15 22:15:22'), - (7619,281,2,7034,'2.99','2005-07-27 03:03:37','2006-02-15 22:15:22'), - (7620,281,1,7525,'3.99','2005-07-27 21:13:28','2006-02-15 22:15:22'), - (7621,281,2,8131,'0.99','2005-07-28 19:55:21','2006-02-15 22:15:22'), - (7622,281,2,8180,'4.99','2005-07-28 22:05:24','2006-02-15 22:15:22'), - (7623,281,1,13641,'2.99','2005-08-20 07:34:42','2006-02-15 22:15:22'), - (7624,281,1,14196,'1.99','2005-08-21 03:40:40','2006-02-15 22:15:22'), - (7625,282,2,48,'1.99','2005-05-25 06:20:46','2006-02-15 22:15:22'), - (7626,282,2,282,'6.99','2005-05-26 18:56:26','2006-02-15 22:15:22'), - (7627,282,2,564,'0.99','2005-05-28 09:12:09','2006-02-15 22:15:22'), - (7628,282,1,2016,'2.99','2005-06-17 12:18:36','2006-02-15 22:15:22'), - (7629,282,2,2176,'2.99','2005-06-18 00:29:51','2006-02-15 22:15:22'), - (7630,282,2,3408,'4.99','2005-06-21 16:15:11','2006-02-15 22:15:22'), - (7631,282,1,3417,'2.99','2005-06-21 17:06:20','2006-02-15 22:15:22'), - (7632,282,2,3675,'2.99','2005-07-06 09:09:19','2006-02-15 22:15:22'), - (7633,282,1,3885,'2.99','2005-07-06 18:43:43','2006-02-15 22:15:22'), - (7634,282,1,4359,'2.99','2005-07-07 19:30:20','2006-02-15 22:15:22'), - (7635,282,2,4412,'4.99','2005-07-07 21:56:53','2006-02-15 22:15:22'), - (7636,282,1,5113,'0.99','2005-07-09 07:06:18','2006-02-15 22:15:23'), - (7637,282,2,5319,'8.99','2005-07-09 16:17:44','2006-02-15 22:15:23'), - (7638,282,1,5926,'6.99','2005-07-10 21:53:42','2006-02-15 22:15:23'), - (7639,282,1,7433,'2.99','2005-07-27 17:32:20','2006-02-15 22:15:23'), - (7640,282,2,7534,'3.99','2005-07-27 21:26:17','2006-02-15 22:15:23'), - (7641,282,1,8223,'6.99','2005-07-28 23:56:01','2006-02-15 22:15:23'), - (7642,282,2,8270,'4.99','2005-07-29 01:27:22','2006-02-15 22:15:23'), - (7643,282,2,8468,'1.99','2005-07-29 08:26:04','2006-02-15 22:15:23'), - (7644,282,2,8743,'0.99','2005-07-29 18:57:01','2006-02-15 22:15:23'), - (7645,282,2,8973,'1.99','2005-07-30 04:09:13','2006-02-15 22:15:23'), - (7646,282,2,9658,'9.99','2005-07-31 06:00:52','2006-02-15 22:15:23'), - (7647,282,2,11226,'2.99','2005-08-02 12:47:30','2006-02-15 22:15:23'), - (7648,282,1,13278,'2.99','2005-08-19 17:57:53','2006-02-15 22:15:23'), - (7649,282,2,13749,'2.99','2005-08-20 11:00:37','2006-02-15 22:15:23'), - (7650,282,2,15543,'4.99','2005-08-23 04:15:41','2006-02-15 22:15:23'), - (7651,282,2,15430,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:23'), - (7652,283,1,1749,'0.99','2005-06-16 16:56:00','2006-02-15 22:15:23'), - (7653,283,2,1796,'2.99','2005-06-16 20:10:43','2006-02-15 22:15:23'), - (7654,283,2,2333,'2.99','2005-06-18 10:55:54','2006-02-15 22:15:23'), - (7655,283,1,2685,'2.99','2005-06-19 12:35:21','2006-02-15 22:15:23'), - (7656,283,2,2849,'7.99','2005-06-19 23:06:00','2006-02-15 22:15:23'), - (7657,283,1,3534,'4.99','2005-07-06 01:32:27','2006-02-15 22:15:23'), - (7658,283,1,3568,'6.99','2005-07-06 03:11:57','2006-02-15 22:15:23'), - (7659,283,2,3590,'4.99','2005-07-06 04:35:12','2006-02-15 22:15:23'), - (7660,283,2,3672,'0.99','2005-07-06 09:01:56','2006-02-15 22:15:23'), - (7661,283,2,4683,'2.99','2005-07-08 10:38:28','2006-02-15 22:15:23'), - (7662,283,2,4876,'1.99','2005-07-08 19:27:50','2006-02-15 22:15:24'), - (7663,283,2,5989,'2.99','2005-07-11 00:57:53','2006-02-15 22:15:24'), - (7664,283,1,6075,'0.99','2005-07-11 05:03:03','2006-02-15 22:15:24'), - (7665,283,1,6300,'1.99','2005-07-11 17:50:09','2006-02-15 22:15:24'), - (7666,283,2,6313,'0.99','2005-07-11 18:29:52','2006-02-15 22:15:24'), - (7667,283,1,6827,'4.99','2005-07-12 18:33:45','2006-02-15 22:15:24'), - (7668,283,1,7504,'0.99','2005-07-27 20:24:31','2006-02-15 22:15:24'), - (7669,283,1,7816,'0.99','2005-07-28 08:14:12','2006-02-15 22:15:24'), - (7670,283,2,9353,'4.99','2005-07-30 18:30:37','2006-02-15 22:15:24'), - (7671,283,2,9478,'2.99','2005-07-30 23:12:53','2006-02-15 22:15:24'), - (7672,283,2,9572,'2.99','2005-07-31 02:44:10','2006-02-15 22:15:24'), - (7673,283,2,9918,'2.99','2005-07-31 14:55:22','2006-02-15 22:15:24'), - (7674,283,1,11637,'0.99','2005-08-17 04:36:39','2006-02-15 22:15:24'), - (7675,283,2,11846,'2.99','2005-08-17 13:18:29','2006-02-15 22:15:24'), - (7676,283,2,11966,'0.99','2005-08-17 17:40:04','2006-02-15 22:15:24'), - (7677,283,1,12290,'6.99','2005-08-18 05:08:03','2006-02-15 22:15:24'), - (7678,283,1,13229,'2.99','2005-08-19 16:08:33','2006-02-15 22:15:24'), - (7679,283,1,15837,'2.99','2005-08-23 15:29:41','2006-02-15 22:15:24'), - (7680,284,2,423,'0.99','2005-05-27 15:32:57','2006-02-15 22:15:24'), - (7681,284,2,791,'0.99','2005-05-29 16:30:42','2006-02-15 22:15:24'), - (7682,284,1,1145,'6.99','2005-05-31 20:13:45','2006-02-15 22:15:24'), - (7683,284,1,1171,'0.99','2005-06-14 23:50:11','2006-02-15 22:15:24'), - (7684,284,2,2813,'6.99','2005-06-19 20:01:47','2006-02-15 22:15:24'), - (7685,284,2,3296,'0.99','2005-06-21 07:04:53','2006-02-15 22:15:24'), - (7686,284,1,3572,'0.99','2005-07-06 03:33:23','2006-02-15 22:15:24'), - (7687,284,2,4081,'2.99','2005-07-07 05:10:08','2006-02-15 22:15:24'), - (7688,284,1,4759,'7.99','2005-07-08 14:39:22','2006-02-15 22:15:24'), - (7689,284,2,4931,'7.99','2005-07-08 22:16:18','2006-02-15 22:15:25'), - (7690,284,1,5161,'6.99','2005-07-09 08:57:56','2006-02-15 22:15:25'), - (7691,284,1,6276,'5.99','2005-07-11 16:15:50','2006-02-15 22:15:25'), - (7692,284,2,6982,'2.99','2005-07-27 00:53:41','2006-02-15 22:15:25'), - (7693,284,1,7164,'6.99','2005-07-27 07:36:34','2006-02-15 22:15:25'), - (7694,284,1,7463,'4.99','2005-07-27 18:48:32','2006-02-15 22:15:25'), - (7695,284,2,7716,'8.99','2005-07-28 04:33:15','2006-02-15 22:15:25'), - (7696,284,1,8888,'2.99','2005-07-30 00:39:36','2006-02-15 22:15:25'), - (7697,284,1,9790,'0.99','2005-07-31 10:34:08','2006-02-15 22:15:25'), - (7698,284,1,10396,'7.99','2005-08-01 07:08:46','2006-02-15 22:15:25'), - (7699,284,1,10535,'4.99','2005-08-01 12:21:13','2006-02-15 22:15:25'), - (7700,284,2,12162,'3.99','2005-08-18 00:44:30','2006-02-15 22:15:25'), - (7701,284,1,14007,'5.99','2005-08-20 20:22:47','2006-02-15 22:15:25'), - (7702,284,1,14648,'4.99','2005-08-21 19:18:01','2006-02-15 22:15:25'), - (7703,284,2,14746,'4.99','2005-08-21 22:54:02','2006-02-15 22:15:25'), - (7704,284,1,14921,'4.99','2005-08-22 05:12:24','2006-02-15 22:15:25'), - (7705,284,2,15135,'3.99','2005-08-22 13:19:19','2006-02-15 22:15:25'), - (7706,284,1,12064,'5.98','2006-02-14 15:16:03','2006-02-15 22:15:25'), - (7707,284,2,12959,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:25'), - (7708,285,2,1161,'7.99','2005-06-14 23:07:08','2006-02-15 22:15:25'), - (7709,285,2,1302,'3.99','2005-06-15 09:48:37','2006-02-15 22:15:25'), - (7710,285,1,2249,'5.99','2005-06-18 05:03:08','2006-02-15 22:15:25'), - (7711,285,2,4007,'6.99','2005-07-07 00:26:05','2006-02-15 22:15:25'), - (7712,285,2,5112,'2.99','2005-07-09 07:04:04','2006-02-15 22:15:25'), - (7713,285,1,5683,'9.99','2005-07-10 08:52:13','2006-02-15 22:15:25'), - (7714,285,1,6010,'0.99','2005-07-11 01:52:28','2006-02-15 22:15:25'), - (7715,285,2,6083,'3.99','2005-07-11 05:12:49','2006-02-15 22:15:26'), - (7716,285,1,6094,'4.99','2005-07-11 05:54:42','2006-02-15 22:15:26'), - (7717,285,2,6333,'4.99','2005-07-11 19:20:16','2006-02-15 22:15:26'), - (7718,285,2,6644,'0.99','2005-07-12 10:39:39','2006-02-15 22:15:26'), - (7719,285,1,7211,'6.99','2005-07-27 09:20:00','2006-02-15 22:15:26'), - (7720,285,1,7452,'9.99','2005-07-27 18:26:39','2006-02-15 22:15:26'), - (7721,285,1,7745,'9.99','2005-07-28 05:46:28','2006-02-15 22:15:26'), - (7722,285,1,8154,'4.99','2005-07-28 20:56:18','2006-02-15 22:15:26'), - (7723,285,2,8466,'0.99','2005-07-29 08:24:47','2006-02-15 22:15:26'), - (7724,285,1,10493,'5.99','2005-08-01 10:43:12','2006-02-15 22:15:26'), - (7725,285,2,10628,'2.99','2005-08-01 15:33:19','2006-02-15 22:15:26'), - (7726,285,1,10641,'4.99','2005-08-01 15:44:57','2006-02-15 22:15:26'), - (7727,285,1,12027,'8.99','2005-08-17 20:01:12','2006-02-15 22:15:26'), - (7728,285,1,12444,'0.99','2005-08-18 10:53:12','2006-02-15 22:15:26'), - (7729,285,1,12449,'0.99','2005-08-18 11:03:04','2006-02-15 22:15:26'), - (7730,285,2,12687,'9.99','2005-08-18 19:57:39','2006-02-15 22:15:26'), - (7731,285,2,13102,'7.99','2005-08-19 11:02:03','2006-02-15 22:15:26'), - (7732,285,2,15251,'0.99','2005-08-22 18:03:57','2006-02-15 22:15:26'), - (7733,285,1,15489,'4.99','2005-08-23 02:06:41','2006-02-15 22:15:26'), - (7734,286,2,81,'6.99','2005-05-25 12:15:19','2006-02-15 22:15:26'), - (7735,286,1,1690,'8.99','2005-06-16 12:24:18','2006-02-15 22:15:26'), - (7736,286,1,2195,'4.99','2005-06-18 01:44:46','2006-02-15 22:15:26'), - (7737,286,2,3592,'4.99','2005-07-06 04:38:50','2006-02-15 22:15:26'), - (7738,286,2,3692,'3.99','2005-07-06 09:54:12','2006-02-15 22:15:26'), - (7739,286,2,4242,'6.99','2005-07-07 13:39:01','2006-02-15 22:15:26'), - (7740,286,2,4461,'9.99','2005-07-07 23:59:43','2006-02-15 22:15:26'), - (7741,286,1,4707,'4.99','2005-07-08 11:57:28','2006-02-15 22:15:26'), - (7742,286,1,4894,'2.99','2005-07-08 20:21:31','2006-02-15 22:15:27'), - (7743,286,1,5796,'4.99','2005-07-10 14:42:54','2006-02-15 22:15:27'), - (7744,286,2,6611,'2.99','2005-07-12 08:20:23','2006-02-15 22:15:27'), - (7745,286,1,7254,'2.99','2005-07-27 10:48:50','2006-02-15 22:15:27'), - (7746,286,1,7299,'2.99','2005-07-27 12:49:56','2006-02-15 22:15:27'), - (7747,286,1,7368,'0.99','2005-07-27 15:06:05','2006-02-15 22:15:27'), - (7748,286,1,7422,'2.99','2005-07-27 17:10:42','2006-02-15 22:15:27'), - (7749,286,1,7719,'6.99','2005-07-28 04:39:09','2006-02-15 22:15:27'), - (7750,286,2,8399,'0.99','2005-07-29 06:20:18','2006-02-15 22:15:27'), - (7751,286,2,9280,'6.99','2005-07-30 15:15:38','2006-02-15 22:15:27'), - (7752,286,1,9809,'3.99','2005-07-31 11:19:21','2006-02-15 22:15:27'), - (7753,286,2,10105,'5.99','2005-07-31 20:54:20','2006-02-15 22:15:27'), - (7754,286,2,11670,'0.99','2005-08-17 05:48:59','2006-02-15 22:15:27'), - (7755,286,2,12595,'0.99','2005-08-18 16:27:08','2006-02-15 22:15:27'), - (7756,286,1,12656,'0.99','2005-08-18 18:58:35','2006-02-15 22:15:27'), - (7757,286,2,13635,'5.99','2005-08-20 07:17:35','2006-02-15 22:15:27'), - (7758,286,1,13975,'4.99','2005-08-20 18:58:23','2006-02-15 22:15:27'), - (7759,286,1,14905,'0.99','2005-08-22 04:34:22','2006-02-15 22:15:27'), - (7760,286,2,15629,'4.99','2005-08-23 07:28:22','2006-02-15 22:15:27'), - (7761,287,2,498,'0.99','2005-05-28 01:01:21','2006-02-15 22:15:27'), - (7762,287,1,655,'2.99','2005-05-28 20:16:20','2006-02-15 22:15:27'), - (7763,287,2,964,'2.99','2005-05-30 18:53:21','2006-02-15 22:15:27'), - (7764,287,1,1247,'7.99','2005-06-15 05:16:40','2006-02-15 22:15:27'), - (7765,287,2,1642,'2.99','2005-06-16 08:54:15','2006-02-15 22:15:27'), - (7766,287,2,2286,'9.99','2005-06-18 07:02:32','2006-02-15 22:15:27'), - (7767,287,2,2612,'6.99','2005-06-19 07:19:41','2006-02-15 22:15:27'), - (7768,287,2,4877,'4.99','2005-07-08 19:31:02','2006-02-15 22:15:28'), - (7769,287,2,5346,'1.99','2005-07-09 17:29:01','2006-02-15 22:15:28'), - (7770,287,1,5593,'3.99','2005-07-10 04:33:13','2006-02-15 22:15:28'), - (7771,287,2,5761,'0.99','2005-07-10 12:45:36','2006-02-15 22:15:28'), - (7772,287,2,6379,'3.99','2005-07-11 21:51:25','2006-02-15 22:15:28'), - (7773,287,1,6397,'2.99','2005-07-11 22:34:02','2006-02-15 22:15:28'), - (7774,287,2,7402,'2.99','2005-07-27 16:19:40','2006-02-15 22:15:28'), - (7775,287,2,7777,'2.99','2005-07-28 07:04:42','2006-02-15 22:15:28'), - (7776,287,2,8994,'6.99','2005-07-30 04:51:32','2006-02-15 22:15:28'), - (7777,287,2,9716,'1.99','2005-07-31 08:23:53','2006-02-15 22:15:28'), - (7778,287,1,10027,'6.99','2005-07-31 18:33:51','2006-02-15 22:15:28'), - (7779,287,2,10574,'2.99','2005-08-01 13:36:51','2006-02-15 22:15:28'), - (7780,287,2,10807,'4.99','2005-08-01 22:26:10','2006-02-15 22:15:28'), - (7781,287,2,11106,'4.99','2005-08-02 08:17:38','2006-02-15 22:15:28'), - (7782,287,1,11716,'4.99','2005-08-17 07:40:55','2006-02-15 22:15:28'), - (7783,287,2,12861,'2.99','2005-08-19 02:30:24','2006-02-15 22:15:28'), - (7784,287,2,14715,'6.99','2005-08-21 21:28:18','2006-02-15 22:15:28'), - (7785,287,2,15076,'1.99','2005-08-22 11:05:34','2006-02-15 22:15:28'), - (7786,287,1,15084,'4.99','2005-08-22 11:17:59','2006-02-15 22:15:28'), - (7787,287,2,15127,'0.99','2005-08-22 12:56:29','2006-02-15 22:15:28'), - (7788,287,1,15614,'2.99','2005-08-23 07:05:15','2006-02-15 22:15:28'), - (7789,287,2,14204,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:28'), - (7790,288,2,93,'3.99','2005-05-25 15:54:16','2006-02-15 22:15:28'), - (7791,288,2,427,'6.99','2005-05-27 16:10:04','2006-02-15 22:15:28'), - (7792,288,1,503,'4.99','2005-05-28 01:35:25','2006-02-15 22:15:28'), - (7793,288,2,565,'5.99','2005-05-28 09:26:31','2006-02-15 22:15:28'), - (7794,288,1,1466,'5.99','2005-06-15 20:46:04','2006-02-15 22:15:29'), - (7795,288,1,3958,'3.99','2005-07-06 22:07:33','2006-02-15 22:15:29'), - (7796,288,1,4692,'2.99','2005-07-08 11:07:06','2006-02-15 22:15:29'), - (7797,288,2,4758,'0.99','2005-07-08 14:38:02','2006-02-15 22:15:29'), - (7798,288,1,6399,'2.99','2005-07-11 22:39:05','2006-02-15 22:15:29'), - (7799,288,2,6518,'3.99','2005-07-12 03:59:42','2006-02-15 22:15:29'), - (7800,288,2,7744,'0.99','2005-07-28 05:38:20','2006-02-15 22:15:29'), - (7801,288,2,7855,'2.99','2005-07-28 09:43:02','2006-02-15 22:15:29'), - (7802,288,2,9429,'2.99','2005-07-30 21:19:26','2006-02-15 22:15:29'), - (7803,288,1,9732,'0.99','2005-07-31 08:56:08','2006-02-15 22:15:29'), - (7804,288,1,10927,'9.99','2005-08-02 02:31:15','2006-02-15 22:15:29'), - (7805,288,2,11952,'2.99','2005-08-17 17:14:57','2006-02-15 22:15:29'), - (7806,288,1,12134,'1.99','2005-08-17 23:49:43','2006-02-15 22:15:29'), - (7807,288,1,13219,'2.99','2005-08-19 15:40:28','2006-02-15 22:15:29'), - (7808,288,1,13227,'0.99','2005-08-19 16:05:38','2006-02-15 22:15:29'), - (7809,288,2,13363,'2.99','2005-08-19 21:07:59','2006-02-15 22:15:29'), - (7810,288,2,14113,'0.99','2005-08-21 01:03:30','2006-02-15 22:15:29'), - (7811,288,2,14756,'0.99','2005-08-21 23:21:23','2006-02-15 22:15:29'), - (7812,288,2,15058,'2.99','2005-08-22 10:20:55','2006-02-15 22:15:29'), - (7813,288,1,15119,'2.99','2005-08-22 12:41:33','2006-02-15 22:15:29'), - (7814,289,2,1880,'4.99','2005-06-17 03:08:59','2006-02-15 22:15:29'), - (7815,289,2,2316,'0.99','2005-06-18 09:04:59','2006-02-15 22:15:29'), - (7816,289,1,2387,'6.99','2005-06-18 15:24:19','2006-02-15 22:15:29'), - (7817,289,1,2784,'10.99','2005-06-19 18:40:29','2006-02-15 22:15:29'), - (7818,289,2,2948,'6.99','2005-06-20 06:02:35','2006-02-15 22:15:29'), - (7819,289,2,3123,'6.99','2005-06-20 18:26:14','2006-02-15 22:15:29'), - (7820,289,1,3588,'2.99','2005-07-06 04:29:13','2006-02-15 22:15:30'), - (7821,289,2,4622,'0.99','2005-07-08 08:02:42','2006-02-15 22:15:30'), - (7822,289,1,5089,'4.99','2005-07-09 05:45:40','2006-02-15 22:15:30'), - (7823,289,2,5342,'8.99','2005-07-09 17:20:03','2006-02-15 22:15:30'), - (7824,289,2,5584,'4.99','2005-07-10 04:15:25','2006-02-15 22:15:30'), - (7825,289,2,5724,'0.99','2005-07-10 11:18:12','2006-02-15 22:15:30'), - (7826,289,2,6007,'3.99','2005-07-11 01:43:06','2006-02-15 22:15:30'), - (7827,289,2,6536,'7.99','2005-07-12 04:44:25','2006-02-15 22:15:30'), - (7828,289,1,7151,'4.99','2005-07-27 07:14:31','2006-02-15 22:15:30'), - (7829,289,1,7162,'4.99','2005-07-27 07:32:45','2006-02-15 22:15:30'), - (7830,289,2,7325,'0.99','2005-07-27 13:46:55','2006-02-15 22:15:30'), - (7831,289,1,9498,'2.99','2005-07-30 23:56:55','2006-02-15 22:15:30'), - (7832,289,2,10297,'7.99','2005-08-01 04:05:04','2006-02-15 22:15:30'), - (7833,289,1,12158,'1.99','2005-08-18 00:34:20','2006-02-15 22:15:30'), - (7834,289,1,12170,'0.99','2005-08-18 01:06:10','2006-02-15 22:15:30'), - (7835,289,2,12558,'7.99','2005-08-18 14:52:35','2006-02-15 22:15:30'), - (7836,289,2,13165,'0.99','2005-08-19 13:34:10','2006-02-15 22:15:30'), - (7837,289,2,13211,'0.99','2005-08-19 15:23:41','2006-02-15 22:15:30'), - (7838,289,2,13256,'9.99','2005-08-19 16:54:12','2006-02-15 22:15:30'), - (7839,289,2,13336,'5.99','2005-08-19 20:03:22','2006-02-15 22:15:30'), - (7840,289,2,13891,'6.99','2005-08-20 15:42:05','2006-02-15 22:15:30'), - (7841,289,1,14087,'0.99','2005-08-20 23:53:40','2006-02-15 22:15:30'), - (7842,289,2,14729,'4.99','2005-08-21 22:16:57','2006-02-15 22:15:30'), - (7843,289,2,14917,'4.99','2005-08-22 05:03:59','2006-02-15 22:15:30'), - (7844,290,1,160,'2.99','2005-05-26 01:46:20','2006-02-15 22:15:30'), - (7845,290,1,1220,'6.99','2005-06-15 03:26:15','2006-02-15 22:15:30'), - (7846,290,2,1336,'8.99','2005-06-15 12:01:34','2006-02-15 22:15:31'), - (7847,290,2,1496,'4.99','2005-06-15 21:55:58','2006-02-15 22:15:31'), - (7848,290,2,1532,'0.99','2005-06-16 00:41:31','2006-02-15 22:15:31'), - (7849,290,1,3013,'3.99','2005-06-20 10:45:09','2006-02-15 22:15:31'), - (7850,290,2,4039,'4.99','2005-07-07 02:57:59','2006-02-15 22:15:31'), - (7851,290,1,4073,'0.99','2005-07-07 04:49:13','2006-02-15 22:15:31'), - (7852,290,2,4416,'0.99','2005-07-07 22:04:36','2006-02-15 22:15:31'), - (7853,290,1,5105,'2.99','2005-07-09 06:38:59','2006-02-15 22:15:31'), - (7854,290,2,5214,'5.99','2005-07-09 11:43:08','2006-02-15 22:15:31'), - (7855,290,2,5827,'2.99','2005-07-10 16:22:20','2006-02-15 22:15:31'), - (7856,290,2,6816,'4.99','2005-07-12 18:18:50','2006-02-15 22:15:31'), - (7857,290,1,6952,'4.99','2005-07-26 23:51:27','2006-02-15 22:15:31'), - (7858,290,2,7265,'2.99','2005-07-27 11:19:01','2006-02-15 22:15:31'), - (7859,290,1,7650,'1.99','2005-07-28 01:47:20','2006-02-15 22:15:31'), - (7860,290,1,8639,'4.99','2005-07-29 14:30:31','2006-02-15 22:15:31'), - (7861,290,1,9000,'7.99','2005-07-30 04:58:55','2006-02-15 22:15:31'), - (7862,290,1,9413,'0.99','2005-07-30 20:44:39','2006-02-15 22:15:31'), - (7863,290,2,10096,'3.99','2005-07-31 20:38:58','2006-02-15 22:15:31'), - (7864,290,1,10194,'1.99','2005-08-01 00:33:52','2006-02-15 22:15:31'), - (7865,290,1,10901,'2.99','2005-08-02 01:35:44','2006-02-15 22:15:31'), - (7866,290,1,11596,'6.99','2005-08-17 02:53:55','2006-02-15 22:15:31'), - (7867,290,2,12193,'3.99','2005-08-18 02:03:59','2006-02-15 22:15:31'), - (7868,290,2,12778,'4.99','2005-08-18 23:40:23','2006-02-15 22:15:31'), - (7869,290,2,13190,'1.99','2005-08-19 14:27:59','2006-02-15 22:15:31'), - (7870,290,1,13367,'2.99','2005-08-19 21:19:27','2006-02-15 22:15:31'), - (7871,290,2,13687,'2.99','2005-08-20 08:57:51','2006-02-15 22:15:31'), - (7872,291,1,54,'4.99','2005-05-25 07:23:25','2006-02-15 22:15:32'), - (7873,291,2,747,'4.99','2005-05-29 09:26:34','2006-02-15 22:15:32'), - (7874,291,1,1012,'2.99','2005-05-31 02:18:05','2006-02-15 22:15:32'), - (7875,291,1,1191,'2.99','2005-06-15 01:10:35','2006-02-15 22:15:32'), - (7876,291,1,2300,'2.99','2005-06-18 08:22:34','2006-02-15 22:15:32'), - (7877,291,2,3042,'2.99','2005-06-20 12:38:27','2006-02-15 22:15:32'), - (7878,291,2,3512,'4.99','2005-07-06 00:43:06','2006-02-15 22:15:32'), - (7879,291,2,4862,'3.99','2005-07-08 19:02:46','2006-02-15 22:15:32'), - (7880,291,2,5754,'2.99','2005-07-10 12:32:43','2006-02-15 22:15:32'), - (7881,291,2,6516,'4.99','2005-07-12 03:51:54','2006-02-15 22:15:32'), - (7882,291,1,6796,'2.99','2005-07-12 16:44:16','2006-02-15 22:15:32'), - (7883,291,1,7561,'5.99','2005-07-27 22:21:05','2006-02-15 22:15:32'), - (7884,291,2,7564,'0.99','2005-07-27 22:31:17','2006-02-15 22:15:32'), - (7885,291,1,8690,'0.99','2005-07-29 16:39:28','2006-02-15 22:15:32'), - (7886,291,2,8697,'4.99','2005-07-29 16:46:07','2006-02-15 22:15:32'), - (7887,291,1,9165,'5.99','2005-07-30 11:24:28','2006-02-15 22:15:32'), - (7888,291,2,9201,'5.99','2005-07-30 12:42:21','2006-02-15 22:15:32'), - (7889,291,2,9919,'7.99','2005-07-31 14:55:46','2006-02-15 22:15:32'), - (7890,291,1,10463,'4.99','2005-08-01 09:39:43','2006-02-15 22:15:32'), - (7891,291,2,11145,'0.99','2005-08-02 09:43:24','2006-02-15 22:15:32'), - (7892,291,1,13665,'5.99','2005-08-20 08:19:20','2006-02-15 22:15:32'), - (7893,291,2,14241,'4.99','2005-08-21 05:24:55','2006-02-15 22:15:32'), - (7894,291,2,15663,'3.99','2005-08-23 08:54:26','2006-02-15 22:15:32'), - (7895,292,1,324,'0.99','2005-05-27 01:00:04','2006-02-15 22:15:32'), - (7896,292,1,1901,'3.99','2005-06-17 04:35:19','2006-02-15 22:15:32'), - (7897,292,2,2258,'3.99','2005-06-18 05:30:36','2006-02-15 22:15:32'), - (7898,292,1,2838,'3.99','2005-06-19 22:06:06','2006-02-15 22:15:33'), - (7899,292,2,3328,'2.99','2005-06-21 09:08:44','2006-02-15 22:15:33'), - (7900,292,2,3557,'0.99','2005-07-06 02:48:39','2006-02-15 22:15:33'), - (7901,292,1,4200,'4.99','2005-07-07 11:15:11','2006-02-15 22:15:33'), - (7902,292,2,5095,'4.99','2005-07-09 06:08:22','2006-02-15 22:15:33'), - (7903,292,2,5257,'0.99','2005-07-09 13:56:43','2006-02-15 22:15:33'), - (7904,292,1,5940,'4.99','2005-07-10 22:31:01','2006-02-15 22:15:33'), - (7905,292,1,6270,'8.99','2005-07-11 15:59:10','2006-02-15 22:15:33'), - (7906,292,1,6900,'6.99','2005-07-12 21:45:25','2006-02-15 22:15:33'), - (7907,292,2,7199,'5.99','2005-07-27 08:53:23','2006-02-15 22:15:33'), - (7908,292,1,7216,'2.99','2005-07-27 09:27:45','2006-02-15 22:15:33'), - (7909,292,1,7545,'2.99','2005-07-27 21:48:03','2006-02-15 22:15:33'), - (7910,292,1,7766,'4.99','2005-07-28 06:41:57','2006-02-15 22:15:33'), - (7911,292,1,8047,'2.99','2005-07-28 16:49:43','2006-02-15 22:15:33'), - (7912,292,2,8842,'4.99','2005-07-29 23:03:40','2006-02-15 22:15:33'), - (7913,292,1,8990,'8.99','2005-07-30 04:41:42','2006-02-15 22:15:33'), - (7914,292,1,9792,'5.99','2005-07-31 10:43:41','2006-02-15 22:15:33'), - (7915,292,2,9819,'1.99','2005-07-31 11:39:13','2006-02-15 22:15:33'), - (7916,292,1,11193,'4.99','2005-08-02 11:31:33','2006-02-15 22:15:33'), - (7917,292,1,12739,'10.99','2005-08-18 22:15:18','2006-02-15 22:15:33'), - (7918,292,1,13715,'2.99','2005-08-20 09:43:06','2006-02-15 22:15:33'), - (7919,292,1,14499,'0.99','2005-08-21 14:11:19','2006-02-15 22:15:33'), - (7920,292,2,14845,'4.99','2005-08-22 02:12:44','2006-02-15 22:15:33'), - (7921,292,1,15117,'2.99','2005-08-22 12:38:20','2006-02-15 22:15:33'), - (7922,293,2,445,'0.99','2005-05-27 18:42:57','2006-02-15 22:15:33'), - (7923,293,1,924,'4.99','2005-05-30 12:10:59','2006-02-15 22:15:33'), - (7924,293,2,1034,'8.99','2005-05-31 04:53:40','2006-02-15 22:15:34'), - (7925,293,1,1589,'9.99','2005-06-16 04:58:03','2006-02-15 22:15:34'), - (7926,293,1,1829,'5.99','2005-06-16 22:14:21','2006-02-15 22:15:34'), - (7927,293,2,1860,'4.99','2005-06-17 01:17:12','2006-02-15 22:15:34'), - (7928,293,1,2386,'4.99','2005-06-18 15:22:51','2006-02-15 22:15:34'), - (7929,293,2,3025,'2.99','2005-06-20 11:46:48','2006-02-15 22:15:34'), - (7930,293,1,3290,'1.99','2005-06-21 06:45:34','2006-02-15 22:15:34'), - (7931,293,2,3452,'4.99','2005-06-21 21:11:27','2006-02-15 22:15:34'), - (7932,293,1,3906,'3.99','2005-07-06 19:35:55','2006-02-15 22:15:34'), - (7933,293,2,4343,'0.99','2005-07-07 18:48:54','2006-02-15 22:15:34'), - (7934,293,2,4542,'4.99','2005-07-08 04:06:30','2006-02-15 22:15:34'), - (7935,293,2,4944,'6.99','2005-07-08 22:44:28','2006-02-15 22:15:34'), - (7936,293,2,5765,'3.99','2005-07-10 13:03:02','2006-02-15 22:15:34'), - (7937,293,1,6432,'9.99','2005-07-12 00:09:41','2006-02-15 22:15:34'), - (7938,293,2,7607,'4.99','2005-07-28 00:05:53','2006-02-15 22:15:34'), - (7939,293,1,8589,'4.99','2005-07-29 12:28:17','2006-02-15 22:15:34'), - (7940,293,1,8745,'2.99','2005-07-29 19:03:05','2006-02-15 22:15:34'), - (7941,293,2,9123,'2.99','2005-07-30 09:39:15','2006-02-15 22:15:34'), - (7942,293,2,11131,'1.99','2005-08-02 09:10:04','2006-02-15 22:15:34'), - (7943,293,1,11576,'2.99','2005-08-17 01:53:20','2006-02-15 22:15:34'), - (7944,293,2,13013,'6.99','2005-08-19 07:55:51','2006-02-15 22:15:34'), - (7945,293,1,13029,'2.99','2005-08-19 08:28:04','2006-02-15 22:15:34'), - (7946,293,2,13504,'5.99','2005-08-20 02:01:48','2006-02-15 22:15:34'), - (7947,293,1,13817,'4.99','2005-08-20 13:15:30','2006-02-15 22:15:34'), - (7948,293,1,14248,'6.99','2005-08-21 05:35:57','2006-02-15 22:15:34'), - (7949,293,1,15258,'4.99','2005-08-22 18:22:44','2006-02-15 22:15:35'), - (7950,293,1,15402,'8.99','2005-08-22 23:17:41','2006-02-15 22:15:35'), - (7951,293,1,15508,'7.99','2005-08-23 02:49:04','2006-02-15 22:15:35'), - (7952,293,2,15675,'5.99','2005-08-23 09:18:52','2006-02-15 22:15:35'), - (7953,294,1,595,'1.99','2005-05-28 13:59:54','2006-02-15 22:15:35'), - (7954,294,1,2900,'2.99','2005-06-20 02:40:04','2006-02-15 22:15:35'), - (7955,294,2,3330,'2.99','2005-06-21 09:22:37','2006-02-15 22:15:35'), - (7956,294,1,3681,'4.99','2005-07-06 09:19:30','2006-02-15 22:15:35'), - (7957,294,2,4019,'4.99','2005-07-07 01:27:44','2006-02-15 22:15:35'), - (7958,294,1,4786,'7.99','2005-07-08 16:13:05','2006-02-15 22:15:35'), - (7959,294,2,6185,'5.99','2005-07-11 11:25:09','2006-02-15 22:15:35'), - (7960,294,2,7415,'6.99','2005-07-27 16:50:59','2006-02-15 22:15:35'), - (7961,294,1,7765,'4.99','2005-07-28 06:40:33','2006-02-15 22:15:35'), - (7962,294,2,8843,'4.99','2005-07-29 23:04:25','2006-02-15 22:15:35'), - (7963,294,2,9194,'2.99','2005-07-30 12:28:45','2006-02-15 22:15:35'), - (7964,294,1,9522,'2.99','2005-07-31 00:55:11','2006-02-15 22:15:35'), - (7965,294,2,9607,'0.99','2005-07-31 03:51:06','2006-02-15 22:15:35'), - (7966,294,2,10186,'0.99','2005-08-01 00:12:36','2006-02-15 22:15:35'), - (7967,294,2,10220,'4.99','2005-08-01 01:13:22','2006-02-15 22:15:35'), - (7968,294,1,10551,'6.99','2005-08-01 12:48:55','2006-02-15 22:15:35'), - (7969,294,2,10600,'2.99','2005-08-01 14:25:21','2006-02-15 22:15:35'), - (7970,294,2,10642,'4.99','2005-08-01 15:45:11','2006-02-15 22:15:35'), - (7971,294,2,11071,'2.99','2005-08-02 07:10:53','2006-02-15 22:15:35'), - (7972,294,1,11390,'2.99','2005-08-02 18:39:16','2006-02-15 22:15:35'), - (7973,294,2,11875,'4.99','2005-08-17 14:16:48','2006-02-15 22:15:35'), - (7974,294,2,11981,'2.99','2005-08-17 18:10:40','2006-02-15 22:15:35'), - (7975,294,1,12278,'5.99','2005-08-18 04:46:45','2006-02-15 22:15:36'), - (7976,294,1,14474,'2.99','2005-08-21 13:22:48','2006-02-15 22:15:36'), - (7977,294,2,14630,'7.99','2005-08-21 18:43:44','2006-02-15 22:15:36'), - (7978,294,1,15839,'5.99','2005-08-23 15:34:46','2006-02-15 22:15:36'), - (7979,295,2,371,'3.99','2005-05-27 08:08:18','2006-02-15 22:15:36'), - (7980,295,1,1184,'5.99','2005-06-15 00:49:36','2006-02-15 22:15:36'), - (7981,295,1,1328,'2.99','2005-06-15 11:23:27','2006-02-15 22:15:36'), - (7982,295,2,1935,'2.99','2005-06-17 07:14:15','2006-02-15 22:15:36'), - (7983,295,1,2054,'2.99','2005-06-17 15:26:37','2006-02-15 22:15:36'), - (7984,295,1,2431,'1.99','2005-06-18 17:53:03','2006-02-15 22:15:36'), - (7985,295,1,2638,'1.99','2005-06-19 09:23:30','2006-02-15 22:15:36'), - (7986,295,1,2999,'2.99','2005-06-20 09:30:34','2006-02-15 22:15:36'), - (7987,295,1,3198,'1.99','2005-06-21 00:08:54','2006-02-15 22:15:36'), - (7988,295,2,3394,'8.99','2005-06-21 15:17:39','2006-02-15 22:15:36'), - (7989,295,2,3496,'1.99','2005-07-05 23:59:15','2006-02-15 22:15:36'), - (7990,295,1,3876,'9.99','2005-07-06 18:21:13','2006-02-15 22:15:36'), - (7991,295,1,4164,'1.99','2005-07-07 09:20:11','2006-02-15 22:15:36'), - (7992,295,1,4432,'1.99','2005-07-07 22:40:02','2006-02-15 22:15:36'), - (7993,295,1,5019,'2.99','2005-07-09 02:04:32','2006-02-15 22:15:36'), - (7994,295,2,5053,'4.99','2005-07-09 03:59:46','2006-02-15 22:15:36'), - (7995,295,2,5283,'2.99','2005-07-09 15:07:17','2006-02-15 22:15:36'), - (7996,295,2,5994,'4.99','2005-07-11 01:14:10','2006-02-15 22:15:36'), - (7997,295,1,6252,'2.99','2005-07-11 15:06:29','2006-02-15 22:15:36'), - (7998,295,2,6331,'3.99','2005-07-11 19:17:21','2006-02-15 22:15:36'), - (7999,295,2,8087,'0.99','2005-07-28 18:21:16','2006-02-15 22:15:36'), - (8000,295,1,8108,'7.99','2005-07-28 19:07:38','2006-02-15 22:15:36'), - (8001,295,1,8840,'9.99','2005-07-29 22:55:38','2006-02-15 22:15:37'), - (8002,295,2,8932,'2.99','2005-07-30 02:31:26','2006-02-15 22:15:37'), - (8003,295,1,9425,'7.99','2005-07-30 21:11:21','2006-02-15 22:15:37'), - (8004,295,2,9692,'8.99','2005-07-31 07:11:04','2006-02-15 22:15:37'), - (8005,295,2,9793,'4.99','2005-07-31 10:45:11','2006-02-15 22:15:37'), - (8006,295,2,10160,'4.99','2005-07-31 23:07:40','2006-02-15 22:15:37'), - (8007,295,2,10222,'0.99','2005-08-01 01:17:42','2006-02-15 22:15:37'), - (8008,295,1,10349,'3.99','2005-08-01 05:27:13','2006-02-15 22:15:37'), - (8009,295,2,11083,'4.99','2005-08-02 07:32:01','2006-02-15 22:15:37'), - (8010,295,2,11913,'5.99','2005-08-17 15:53:17','2006-02-15 22:15:37'), - (8011,295,2,12041,'4.99','2005-08-17 20:34:33','2006-02-15 22:15:37'), - (8012,295,1,12383,'0.99','2005-08-18 08:36:03','2006-02-15 22:15:37'), - (8013,295,1,14264,'0.99','2005-08-21 06:18:22','2006-02-15 22:15:37'), - (8014,295,1,14387,'6.99','2005-08-21 10:10:01','2006-02-15 22:15:37'), - (8015,295,1,14514,'6.99','2005-08-21 14:51:52','2006-02-15 22:15:37'), - (8016,295,2,15735,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:37'), - (8017,296,2,162,'4.99','2005-05-26 02:02:05','2006-02-15 22:15:37'), - (8018,296,1,511,'5.99','2005-05-28 03:04:04','2006-02-15 22:15:37'), - (8019,296,1,869,'4.99','2005-05-30 04:22:06','2006-02-15 22:15:37'), - (8020,296,2,956,'2.99','2005-05-30 17:30:28','2006-02-15 22:15:37'), - (8021,296,2,1659,'4.99','2005-06-16 10:11:46','2006-02-15 22:15:37'), - (8022,296,1,3034,'0.99','2005-06-20 12:15:50','2006-02-15 22:15:37'), - (8023,296,2,3119,'0.99','2005-06-20 18:11:44','2006-02-15 22:15:37'), - (8024,296,2,3486,'7.99','2005-07-05 23:29:55','2006-02-15 22:15:37'), - (8025,296,1,3810,'2.99','2005-07-06 15:18:44','2006-02-15 22:15:37'), - (8026,296,1,4480,'4.99','2005-07-08 00:56:30','2006-02-15 22:15:38'), - (8027,296,2,5090,'0.99','2005-07-09 05:48:22','2006-02-15 22:15:38'), - (8028,296,1,5589,'4.99','2005-07-10 04:22:58','2006-02-15 22:15:38'), - (8029,296,2,6016,'4.99','2005-07-11 02:04:45','2006-02-15 22:15:38'), - (8030,296,1,6398,'5.99','2005-07-11 22:34:49','2006-02-15 22:15:38'), - (8031,296,1,6967,'6.99','2005-07-27 00:16:31','2006-02-15 22:15:38'), - (8032,296,2,7568,'4.99','2005-07-27 22:38:53','2006-02-15 22:15:38'), - (8033,296,2,8171,'0.99','2005-07-28 21:32:57','2006-02-15 22:15:38'), - (8034,296,1,9249,'5.99','2005-07-30 14:15:02','2006-02-15 22:15:38'), - (8035,296,1,9304,'2.99','2005-07-30 16:41:34','2006-02-15 22:15:38'), - (8036,296,2,11571,'4.99','2005-08-17 01:37:51','2006-02-15 22:15:38'), - (8037,296,2,11825,'4.99','2005-08-17 12:43:30','2006-02-15 22:15:38'), - (8038,296,2,12689,'3.99','2005-08-18 20:06:34','2006-02-15 22:15:38'), - (8039,296,2,13471,'2.99','2005-08-20 01:02:26','2006-02-15 22:15:38'), - (8040,296,1,13702,'2.99','2005-08-20 09:27:20','2006-02-15 22:15:38'), - (8041,296,1,13819,'4.99','2005-08-20 13:23:15','2006-02-15 22:15:38'), - (8042,296,1,13991,'1.99','2005-08-20 19:29:44','2006-02-15 22:15:38'), - (8043,296,2,14571,'7.99','2005-08-21 16:40:26','2006-02-15 22:15:38'), - (8044,296,2,15023,'2.99','2005-08-22 08:56:48','2006-02-15 22:15:38'), - (8045,296,2,15866,'7.99','2005-08-23 16:19:02','2006-02-15 22:15:38'), - (8046,296,1,12009,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:38'), - (8047,297,2,143,'0.99','2005-05-25 23:45:52','2006-02-15 22:15:38'), - (8048,297,1,954,'3.99','2005-05-30 16:57:29','2006-02-15 22:15:38'), - (8049,297,1,1409,'3.99','2005-06-15 16:58:12','2006-02-15 22:15:38'), - (8050,297,1,2067,'2.99','2005-06-17 16:11:08','2006-02-15 22:15:38'), - (8051,297,1,2202,'8.99','2005-06-18 02:09:24','2006-02-15 22:15:38'), - (8052,297,1,2260,'2.99','2005-06-18 05:38:36','2006-02-15 22:15:39'), - (8053,297,2,2339,'4.99','2005-06-18 11:29:22','2006-02-15 22:15:39'), - (8054,297,1,3582,'0.99','2005-07-06 04:10:35','2006-02-15 22:15:39'), - (8055,297,2,4621,'2.99','2005-07-08 08:02:18','2006-02-15 22:15:39'), - (8056,297,1,4929,'5.99','2005-07-08 22:06:18','2006-02-15 22:15:39'), - (8057,297,1,5743,'8.99','2005-07-10 11:57:38','2006-02-15 22:15:39'), - (8058,297,2,6036,'2.99','2005-07-11 03:02:28','2006-02-15 22:15:39'), - (8059,297,1,6064,'6.99','2005-07-11 04:23:18','2006-02-15 22:15:39'), - (8060,297,1,6156,'4.99','2005-07-11 09:45:48','2006-02-15 22:15:39'), - (8061,297,1,6984,'2.99','2005-07-27 00:56:30','2006-02-15 22:15:39'), - (8062,297,2,7867,'0.99','2005-07-28 10:08:54','2006-02-15 22:15:39'), - (8063,297,1,7933,'0.99','2005-07-28 12:27:27','2006-02-15 22:15:39'), - (8064,297,2,9014,'2.99','2005-07-30 05:19:27','2006-02-15 22:15:39'), - (8065,297,2,9674,'5.99','2005-07-31 06:36:53','2006-02-15 22:15:39'), - (8066,297,1,10153,'0.99','2005-07-31 22:30:10','2006-02-15 22:15:39'), - (8067,297,2,10264,'4.99','2005-08-01 03:03:12','2006-02-15 22:15:39'), - (8068,297,2,11269,'0.99','2005-08-02 14:11:41','2006-02-15 22:15:39'), - (8069,297,2,11413,'0.99','2005-08-02 19:35:19','2006-02-15 22:15:39'), - (8070,297,2,11585,'4.99','2005-08-17 02:14:36','2006-02-15 22:15:39'), - (8071,297,1,11780,'2.99','2005-08-17 10:34:24','2006-02-15 22:15:39'), - (8072,297,1,11784,'0.99','2005-08-17 10:48:05','2006-02-15 22:15:39'), - (8073,297,1,12472,'10.99','2005-08-18 11:58:48','2006-02-15 22:15:39'), - (8074,297,1,13330,'2.99','2005-08-19 19:59:21','2006-02-15 22:15:39'), - (8075,297,2,13721,'4.99','2005-08-20 10:02:59','2006-02-15 22:15:39'), - (8076,297,1,13888,'1.99','2005-08-20 15:39:42','2006-02-15 22:15:39'), - (8077,297,1,14403,'5.99','2005-08-21 10:40:34','2006-02-15 22:15:40'), - (8078,297,2,15582,'2.99','2005-08-23 05:45:44','2006-02-15 22:15:40'), - (8079,297,1,15711,'4.99','2005-08-23 10:43:00','2006-02-15 22:15:40'), - (8080,298,1,383,'3.99','2005-05-27 10:12:20','2006-02-15 22:15:40'), - (8081,298,2,1454,'4.99','2005-06-15 19:49:41','2006-02-15 22:15:40'), - (8082,298,2,2385,'3.99','2005-06-18 15:22:40','2006-02-15 22:15:40'), - (8083,298,2,3095,'4.99','2005-06-20 16:16:53','2006-02-15 22:15:40'), - (8084,298,2,3400,'4.99','2005-06-21 15:50:30','2006-02-15 22:15:40'), - (8085,298,2,3479,'0.99','2005-07-05 23:08:53','2006-02-15 22:15:40'), - (8086,298,1,3728,'2.99','2005-07-06 11:29:00','2006-02-15 22:15:40'), - (8087,298,2,4291,'2.99','2005-07-07 15:47:47','2006-02-15 22:15:40'), - (8088,298,1,4936,'3.99','2005-07-08 22:24:50','2006-02-15 22:15:40'), - (8089,298,2,5166,'2.99','2005-07-09 09:15:48','2006-02-15 22:15:40'), - (8090,298,1,5247,'2.99','2005-07-09 13:26:28','2006-02-15 22:15:40'), - (8091,298,2,6802,'0.99','2005-07-12 17:14:17','2006-02-15 22:15:40'), - (8092,298,2,7802,'0.99','2005-07-28 07:51:57','2006-02-15 22:15:40'), - (8093,298,1,7869,'7.99','2005-07-28 10:13:15','2006-02-15 22:15:40'), - (8094,298,2,8737,'5.99','2005-07-29 18:32:13','2006-02-15 22:15:40'), - (8095,298,2,10248,'6.99','2005-08-01 02:35:28','2006-02-15 22:15:40'), - (8096,298,1,11070,'0.99','2005-08-02 07:10:39','2006-02-15 22:15:40'), - (8097,298,2,11288,'6.99','2005-08-02 14:54:08','2006-02-15 22:15:40'), - (8098,298,2,12076,'0.99','2005-08-17 21:58:19','2006-02-15 22:15:40'), - (8099,298,1,12765,'8.99','2005-08-18 23:21:50','2006-02-15 22:15:40'), - (8100,298,1,13172,'0.99','2005-08-19 13:49:07','2006-02-15 22:15:40'), - (8101,298,1,13244,'4.99','2005-08-19 16:43:04','2006-02-15 22:15:40'), - (8102,298,2,14473,'0.99','2005-08-21 13:19:03','2006-02-15 22:15:41'), - (8103,298,1,15245,'3.99','2005-08-22 17:49:35','2006-02-15 22:15:41'), - (8104,298,2,15262,'4.99','2005-08-22 18:25:21','2006-02-15 22:15:41'), - (8105,298,1,15643,'4.99','2005-08-23 08:13:26','2006-02-15 22:15:41'), - (8106,299,1,332,'5.99','2005-05-27 02:27:10','2006-02-15 22:15:41'), - (8107,299,2,606,'8.99','2005-05-28 14:48:39','2006-02-15 22:15:41'), - (8108,299,1,1650,'8.99','2005-06-16 09:23:20','2006-02-15 22:15:41'), - (8109,299,2,2664,'4.99','2005-06-19 11:11:23','2006-02-15 22:15:41'), - (8110,299,1,2774,'2.99','2005-06-19 18:05:11','2006-02-15 22:15:41'), - (8111,299,2,2791,'4.99','2005-06-19 18:51:27','2006-02-15 22:15:41'), - (8112,299,1,3074,'0.99','2005-06-20 14:41:41','2006-02-15 22:15:41'), - (8113,299,2,3223,'2.99','2005-06-21 02:06:45','2006-02-15 22:15:41'), - (8114,299,1,3288,'5.99','2005-06-21 06:36:59','2006-02-15 22:15:41'), - (8115,299,2,3497,'0.99','2005-07-06 00:00:03','2006-02-15 22:15:41'), - (8116,299,2,4153,'5.99','2005-07-07 08:53:08','2006-02-15 22:15:41'), - (8117,299,1,4350,'2.99','2005-07-07 19:02:41','2006-02-15 22:15:41'), - (8118,299,2,5033,'1.99','2005-07-09 02:42:01','2006-02-15 22:15:41'), - (8119,299,1,5642,'2.99','2005-07-10 06:46:08','2006-02-15 22:15:41'), - (8120,299,2,6732,'0.99','2005-07-12 13:58:51','2006-02-15 22:15:41'), - (8121,299,1,6853,'7.99','2005-07-12 19:38:11','2006-02-15 22:15:41'), - (8122,299,1,7264,'4.99','2005-07-27 11:18:58','2006-02-15 22:15:41'), - (8123,299,1,7746,'2.99','2005-07-28 05:48:56','2006-02-15 22:15:41'), - (8124,299,2,7862,'9.99','2005-07-28 10:02:25','2006-02-15 22:15:41'), - (8125,299,1,9520,'2.99','2005-07-31 00:50:54','2006-02-15 22:15:41'), - (8126,299,1,10201,'0.99','2005-08-01 00:42:18','2006-02-15 22:15:41'), - (8127,299,2,10440,'2.99','2005-08-01 08:54:32','2006-02-15 22:15:41'), - (8128,299,1,11629,'6.99','2005-08-17 04:27:24','2006-02-15 22:15:42'), - (8129,299,1,11746,'5.99','2005-08-17 09:03:24','2006-02-15 22:15:42'), - (8130,299,1,11998,'0.99','2005-08-17 18:46:21','2006-02-15 22:15:42'), - (8131,299,1,13069,'4.99','2005-08-19 09:55:20','2006-02-15 22:15:42'), - (8132,299,2,14208,'0.99','2005-08-21 04:09:18','2006-02-15 22:15:42'), - (8133,299,1,14548,'3.99','2005-08-21 15:53:52','2006-02-15 22:15:42'), - (8134,299,2,14889,'4.99','2005-08-22 04:10:10','2006-02-15 22:15:42'), - (8135,299,2,14898,'6.99','2005-08-22 04:26:34','2006-02-15 22:15:42'), - (8136,300,2,457,'0.99','2005-05-27 19:52:29','2006-02-15 22:15:42'), - (8137,300,1,780,'3.99','2005-05-29 14:18:32','2006-02-15 22:15:42'), - (8138,300,1,1111,'4.99','2005-05-31 15:24:19','2006-02-15 22:15:42'), - (8139,300,2,1381,'0.99','2005-06-15 15:17:21','2006-02-15 22:15:42'), - (8140,300,1,3177,'2.99','2005-06-20 22:32:44','2006-02-15 22:15:42'), - (8141,300,1,3775,'0.99','2005-07-06 13:27:33','2006-02-15 22:15:42'), - (8142,300,1,4030,'0.99','2005-07-07 02:25:42','2006-02-15 22:15:42'), - (8143,300,2,5562,'2.99','2005-07-10 03:17:42','2006-02-15 22:15:42'), - (8144,300,1,5705,'10.99','2005-07-10 10:09:17','2006-02-15 22:15:42'), - (8145,300,2,6111,'4.99','2005-07-11 07:26:57','2006-02-15 22:15:42'), - (8146,300,1,6822,'5.99','2005-07-12 18:23:39','2006-02-15 22:15:42'), - (8147,300,1,6998,'4.99','2005-07-27 01:16:29','2006-02-15 22:15:42'), - (8148,300,1,7815,'4.99','2005-07-28 08:14:11','2006-02-15 22:15:42'), - (8149,300,1,8117,'6.99','2005-07-28 19:20:16','2006-02-15 22:15:42'), - (8150,300,1,8210,'6.99','2005-07-28 23:31:05','2006-02-15 22:15:42'), - (8151,300,1,8283,'3.99','2005-07-29 01:52:22','2006-02-15 22:15:42'), - (8152,300,1,9078,'0.99','2005-07-30 08:01:00','2006-02-15 22:15:42'), - (8153,300,2,9127,'2.99','2005-07-30 09:46:36','2006-02-15 22:15:43'), - (8154,300,2,9791,'0.99','2005-07-31 10:35:22','2006-02-15 22:15:43'), - (8155,300,1,10977,'4.99','2005-08-02 04:12:17','2006-02-15 22:15:43'), - (8156,300,2,12484,'2.99','2005-08-18 12:39:37','2006-02-15 22:15:43'), - (8157,300,2,12644,'5.99','2005-08-18 18:22:27','2006-02-15 22:15:43'), - (8158,300,2,13257,'3.99','2005-08-19 17:01:20','2006-02-15 22:15:43'), - (8159,300,1,13296,'0.99','2005-08-19 18:43:53','2006-02-15 22:15:43'), - (8160,300,2,13499,'6.99','2005-08-20 01:52:30','2006-02-15 22:15:43'), - (8161,300,1,13717,'5.99','2005-08-20 09:50:52','2006-02-15 22:15:43'), - (8162,300,1,14674,'7.99','2005-08-21 20:01:34','2006-02-15 22:15:43'), - (8163,300,1,14709,'9.99','2005-08-21 21:07:59','2006-02-15 22:15:43'), - (8164,300,2,15051,'2.99','2005-08-22 10:08:50','2006-02-15 22:15:43'), - (8165,300,2,15811,'5.99','2005-08-23 14:43:46','2006-02-15 22:15:43'), - (8166,300,1,15695,'4.99','2006-02-14 15:16:03','2006-02-15 22:15:43'), - (8167,301,2,27,'4.99','2005-05-25 03:41:50','2006-02-15 22:15:43'), - (8168,301,2,227,'5.99','2005-05-26 10:51:46','2006-02-15 22:15:43'), - (8169,301,1,955,'0.99','2005-05-30 16:59:03','2006-02-15 22:15:43'), - (8170,301,1,1853,'0.99','2005-06-17 00:39:54','2006-02-15 22:15:43'), - (8171,301,1,2611,'4.99','2005-06-19 07:18:17','2006-02-15 22:15:43'), - (8172,301,2,2925,'2.99','2005-06-20 04:23:49','2006-02-15 22:15:43'), - (8173,301,2,4316,'4.99','2005-07-07 17:44:22','2006-02-15 22:15:43'), - (8174,301,2,4834,'3.99','2005-07-08 18:07:45','2006-02-15 22:15:43'), - (8175,301,1,5119,'6.99','2005-07-09 07:14:18','2006-02-15 22:15:43'), - (8176,301,2,5511,'4.99','2005-07-10 01:00:00','2006-02-15 22:15:43'), - (8177,301,2,5730,'2.99','2005-07-10 11:28:32','2006-02-15 22:15:43'), - (8178,301,2,5807,'2.99','2005-07-10 15:16:30','2006-02-15 22:15:43'), - (8179,301,2,6833,'6.99','2005-07-12 18:53:34','2006-02-15 22:15:44'), - (8180,301,2,7318,'4.99','2005-07-27 13:25:31','2006-02-15 22:15:44'), - (8181,301,2,7818,'4.99','2005-07-28 08:25:00','2006-02-15 22:15:44'), - (8182,301,2,9435,'4.99','2005-07-30 21:31:02','2006-02-15 22:15:44'), - (8183,301,1,10883,'0.99','2005-08-02 00:47:19','2006-02-15 22:15:44'), - (8184,301,2,13183,'5.99','2005-08-19 14:09:26','2006-02-15 22:15:44'), - (8185,301,2,13633,'2.99','2005-08-20 07:13:47','2006-02-15 22:15:44'), - (8186,301,1,15201,'10.99','2005-08-22 16:24:42','2006-02-15 22:15:44'), - (8187,301,1,15268,'1.99','2005-08-22 18:39:11','2006-02-15 22:15:44'), - (8188,302,2,38,'4.99','2005-05-25 04:47:44','2006-02-15 22:15:44'), - (8189,302,2,92,'5.99','2005-05-25 15:38:46','2006-02-15 22:15:44'), - (8190,302,1,1231,'2.99','2005-06-15 04:04:41','2006-02-15 22:15:44'), - (8191,302,2,4676,'4.99','2005-07-08 10:26:02','2006-02-15 22:15:44'), - (8192,302,2,5498,'0.99','2005-07-10 00:27:21','2006-02-15 22:15:44'), - (8193,302,2,5682,'2.99','2005-07-10 08:51:39','2006-02-15 22:15:44'), - (8194,302,2,5709,'0.99','2005-07-10 10:31:52','2006-02-15 22:15:44'), - (8195,302,2,5821,'4.99','2005-07-10 16:07:16','2006-02-15 22:15:44'), - (8196,302,2,6623,'7.99','2005-07-12 09:05:34','2006-02-15 22:15:44'), - (8197,302,1,7183,'0.99','2005-07-27 08:18:38','2006-02-15 22:15:44'), - (8198,302,1,7411,'6.99','2005-07-27 16:42:30','2006-02-15 22:15:44'), - (8199,302,1,8363,'6.99','2005-07-29 05:10:08','2006-02-15 22:15:44'), - (8200,302,2,8646,'0.99','2005-07-29 14:48:48','2006-02-15 22:15:44'), - (8201,302,1,8795,'2.99','2005-07-29 21:04:14','2006-02-15 22:15:44'), - (8202,302,1,9146,'7.99','2005-07-30 10:32:08','2006-02-15 22:15:44'), - (8203,302,2,9358,'2.99','2005-07-30 18:37:24','2006-02-15 22:15:44'), - (8204,302,1,9374,'8.99','2005-07-30 19:10:03','2006-02-15 22:15:45'), - (8205,302,2,9581,'5.99','2005-07-31 03:03:07','2006-02-15 22:15:45'), - (8206,302,2,10329,'0.99','2005-08-01 04:56:13','2006-02-15 22:15:45'), - (8207,302,1,12126,'7.99','2005-08-17 23:25:21','2006-02-15 22:15:45'), - (8208,302,2,12516,'4.99','2005-08-18 13:39:53','2006-02-15 22:15:45'), - (8209,302,1,12903,'2.99','2005-08-19 04:09:38','2006-02-15 22:15:45'), - (8210,302,1,13916,'2.99','2005-08-20 16:43:02','2006-02-15 22:15:45'), - (8211,302,1,14120,'4.99','2005-08-21 01:25:00','2006-02-15 22:15:45'), - (8212,302,2,14247,'3.99','2005-08-21 05:35:17','2006-02-15 22:15:45'), - (8213,302,2,15578,'2.99','2005-08-23 05:37:13','2006-02-15 22:15:45'), - (8214,302,1,15622,'5.99','2005-08-23 07:22:02','2006-02-15 22:15:45'), - (8215,302,2,15734,'0.99','2005-08-23 11:40:08','2006-02-15 22:15:45'), - (8216,302,2,15987,'6.99','2005-08-23 20:22:17','2006-02-15 22:15:45'), - (8217,303,1,265,'0.99','2005-05-26 16:07:38','2006-02-15 22:15:45'), - (8218,303,1,871,'2.99','2005-05-30 05:01:30','2006-02-15 22:15:45'), - (8219,303,2,1050,'4.99','2005-05-31 07:01:27','2006-02-15 22:15:45'), - (8220,303,2,1970,'4.99','2005-06-17 09:23:16','2006-02-15 22:15:45'), - (8221,303,1,2223,'8.99','2005-06-18 03:27:03','2006-02-15 22:15:45'), - (8222,303,1,3077,'3.99','2005-06-20 15:05:18','2006-02-15 22:15:45'), - (8223,303,1,3107,'2.99','2005-06-20 17:26:05','2006-02-15 22:15:45'), - (8224,303,1,5140,'4.99','2005-07-09 08:04:59','2006-02-15 22:15:45'), - (8225,303,1,6205,'4.99','2005-07-11 12:31:24','2006-02-15 22:15:45'), - (8226,303,2,6219,'4.99','2005-07-11 13:18:37','2006-02-15 22:15:45'), - (8227,303,1,6464,'4.99','2005-07-12 01:16:40','2006-02-15 22:15:45'), - (8228,303,1,7023,'4.99','2005-07-27 02:32:44','2006-02-15 22:15:45'), - (8229,303,2,7502,'2.99','2005-07-27 20:19:08','2006-02-15 22:15:46'), - (8230,303,1,8409,'0.99','2005-07-29 06:41:22','2006-02-15 22:15:46'), - (8231,303,2,8734,'6.99','2005-07-29 18:28:15','2006-02-15 22:15:46'), - (8232,303,2,8764,'0.99','2005-07-29 19:39:04','2006-02-15 22:15:46'), - (8233,303,2,10209,'2.99','2005-08-01 00:56:47','2006-02-15 22:15:46'), - (8234,303,1,11253,'4.99','2005-08-02 13:42:44','2006-02-15 22:15:46'), - (8235,303,2,11673,'2.99','2005-08-17 05:54:15','2006-02-15 22:15:46'), - (8236,303,2,11993,'2.99','2005-08-17 18:27:49','2006-02-15 22:15:46'), - (8237,303,2,12117,'0.99','2005-08-17 23:11:12','2006-02-15 22:15:46'), - (8238,303,1,12365,'0.99','2005-08-18 07:55:09','2006-02-15 22:15:46'), - (8239,303,2,12473,'2.99','2005-08-18 11:59:44','2006-02-15 22:15:46'), - (8240,303,1,14750,'5.99','2005-08-21 23:09:32','2006-02-15 22:15:46'), - (8241,303,2,14795,'4.99','2005-08-22 00:40:22','2006-02-15 22:15:46'), - (8242,303,1,15511,'3.99','2005-08-23 02:55:42','2006-02-15 22:15:46'), - (8243,304,1,135,'10.99','2005-05-25 21:58:58','2006-02-15 22:15:46'), - (8244,304,1,415,'0.99','2005-05-27 14:51:45','2006-02-15 22:15:46'), - (8245,304,2,937,'2.99','2005-05-30 14:47:31','2006-02-15 22:15:46'), - (8246,304,1,1414,'6.99','2005-06-15 17:26:32','2006-02-15 22:15:46'), - (8247,304,2,1525,'4.99','2005-06-16 00:26:07','2006-02-15 22:15:46'), - (8248,304,1,2039,'3.99','2005-06-17 14:03:43','2006-02-15 22:15:46'), - (8249,304,2,2902,'4.99','2005-06-20 02:45:35','2006-02-15 22:15:46'), - (8250,304,1,4466,'6.99','2005-07-08 00:12:53','2006-02-15 22:15:46'), - (8251,304,2,4812,'8.99','2005-07-08 17:07:11','2006-02-15 22:15:46'), - (8252,304,1,5411,'2.99','2005-07-09 20:23:38','2006-02-15 22:15:46'), - (8253,304,1,5712,'4.99','2005-07-10 10:40:32','2006-02-15 22:15:46'), - (8254,304,2,5749,'3.99','2005-07-10 12:20:36','2006-02-15 22:15:47'), - (8255,304,2,5795,'0.99','2005-07-10 14:36:29','2006-02-15 22:15:47'), - (8256,304,2,6107,'0.99','2005-07-11 07:07:09','2006-02-15 22:15:47'), - (8257,304,1,6737,'4.99','2005-07-12 14:16:52','2006-02-15 22:15:47'), - (8258,304,2,7551,'4.99','2005-07-27 21:59:15','2006-02-15 22:15:47'), - (8259,304,2,8055,'4.99','2005-07-28 17:02:32','2006-02-15 22:15:47'), - (8260,304,1,9930,'0.99','2005-07-31 15:18:03','2006-02-15 22:15:47'), - (8261,304,1,9992,'6.99','2005-07-31 17:29:48','2006-02-15 22:15:47'), - (8262,304,1,10631,'0.99','2005-08-01 15:35:14','2006-02-15 22:15:47'), - (8263,304,2,11983,'4.99','2005-08-17 18:13:55','2006-02-15 22:15:47'), - (8264,304,1,12540,'5.99','2005-08-18 14:17:30','2006-02-15 22:15:47'), - (8265,304,2,13911,'3.99','2005-08-20 16:31:33','2006-02-15 22:15:47'), - (8266,304,1,14023,'0.99','2005-08-20 21:10:32','2006-02-15 22:15:47'), - (8267,304,1,14899,'4.99','2005-08-22 04:26:38','2006-02-15 22:15:47'), - (8268,304,1,14945,'4.99','2005-08-22 06:05:38','2006-02-15 22:15:47'), - (8269,305,2,69,'2.99','2005-05-25 10:10:14','2006-02-15 22:15:47'), - (8270,305,1,1574,'4.99','2005-06-16 03:39:56','2006-02-15 22:15:47'), - (8271,305,2,1884,'0.99','2005-06-17 03:19:20','2006-02-15 22:15:47'), - (8272,305,1,2166,'11.99','2005-06-17 23:51:21','2006-02-15 22:15:47'), - (8273,305,1,3387,'0.99','2005-06-21 14:21:49','2006-02-15 22:15:47'), - (8274,305,2,4260,'4.99','2005-07-07 14:22:45','2006-02-15 22:15:47'), - (8275,305,1,4638,'2.99','2005-07-08 08:57:20','2006-02-15 22:15:47'), - (8276,305,2,5041,'0.99','2005-07-09 03:18:51','2006-02-15 22:15:47'), - (8277,305,1,5052,'2.99','2005-07-09 03:59:43','2006-02-15 22:15:47'), - (8278,305,2,5582,'4.99','2005-07-10 04:08:25','2006-02-15 22:15:47'), - (8279,305,1,5745,'8.99','2005-07-10 12:10:11','2006-02-15 22:15:47'), - (8280,305,1,6134,'7.99','2005-07-11 08:28:19','2006-02-15 22:15:48'), - (8281,305,2,6619,'0.99','2005-07-12 08:50:48','2006-02-15 22:15:48'), - (8282,305,2,8865,'4.99','2005-07-29 23:54:54','2006-02-15 22:15:48'), - (8283,305,2,9119,'4.99','2005-07-30 09:25:56','2006-02-15 22:15:48'), - (8284,305,2,10426,'4.99','2005-08-01 08:26:08','2006-02-15 22:15:48'), - (8285,305,2,10929,'4.99','2005-08-02 02:35:44','2006-02-15 22:15:48'), - (8286,305,1,10981,'2.99','2005-08-02 04:17:53','2006-02-15 22:15:48'), - (8287,305,2,11035,'5.99','2005-08-02 05:55:39','2006-02-15 22:15:48'), - (8288,305,2,11809,'3.99','2005-08-17 11:51:39','2006-02-15 22:15:48'), - (8289,305,2,12592,'3.99','2005-08-18 16:17:50','2006-02-15 22:15:48'), - (8290,305,2,12846,'0.99','2005-08-19 02:03:26','2006-02-15 22:15:48'), - (8291,305,1,13782,'4.99','2005-08-20 12:09:26','2006-02-15 22:15:48'), - (8292,305,2,15417,'2.99','2005-08-22 23:54:04','2006-02-15 22:15:48'), - (8293,305,1,15612,'6.99','2005-08-23 06:59:07','2006-02-15 22:15:48'), - (8294,306,2,375,'3.99','2005-05-27 08:49:21','2006-02-15 22:15:48'), - (8295,306,2,672,'6.99','2005-05-28 22:05:29','2006-02-15 22:15:48'), - (8296,306,2,1172,'0.99','2005-06-14 23:54:34','2006-02-15 22:15:48'), - (8297,306,2,2836,'6.99','2005-06-19 21:58:21','2006-02-15 22:15:48'), - (8298,306,1,3814,'6.99','2005-07-06 15:23:56','2006-02-15 22:15:48'), - (8299,306,2,4484,'5.99','2005-07-08 01:05:57','2006-02-15 22:15:48'), - (8300,306,2,4596,'1.99','2005-07-08 06:41:25','2006-02-15 22:15:48'), - (8301,306,2,5581,'2.99','2005-07-10 04:06:06','2006-02-15 22:15:48'), - (8302,306,2,6868,'2.99','2005-07-12 20:10:17','2006-02-15 22:15:48'), - (8303,306,1,6953,'4.99','2005-07-26 23:52:47','2006-02-15 22:15:48'), - (8304,306,1,7225,'6.99','2005-07-27 09:47:12','2006-02-15 22:15:49'), - (8305,306,1,7232,'4.99','2005-07-27 10:04:19','2006-02-15 22:15:49'), - (8306,306,2,7701,'2.99','2005-07-28 03:54:28','2006-02-15 22:15:49'), - (8307,306,2,8620,'0.99','2005-07-29 13:51:20','2006-02-15 22:15:49'), - (8308,306,1,8702,'0.99','2005-07-29 17:04:37','2006-02-15 22:15:49'), - (8309,306,2,9242,'4.99','2005-07-30 14:03:58','2006-02-15 22:15:49'), - (8310,306,2,9395,'4.99','2005-07-30 20:07:06','2006-02-15 22:15:49'), - (8311,306,1,9774,'0.99','2005-07-31 09:57:51','2006-02-15 22:15:49'), - (8312,306,1,10202,'6.99','2005-08-01 00:43:18','2006-02-15 22:15:49'), - (8313,306,2,10893,'5.99','2005-08-02 01:12:13','2006-02-15 22:15:49'), - (8314,306,2,11142,'4.99','2005-08-02 09:30:11','2006-02-15 22:15:49'), - (8315,306,1,11440,'0.99','2005-08-02 20:24:02','2006-02-15 22:15:49'), - (8316,306,2,11674,'6.99','2005-08-17 05:56:27','2006-02-15 22:15:49'), - (8317,306,2,11776,'0.99','2005-08-17 10:27:19','2006-02-15 22:15:49'), - (8318,306,1,12225,'7.99','2005-08-18 03:00:11','2006-02-15 22:15:49'), - (8319,306,1,12989,'2.99','2005-08-19 07:19:04','2006-02-15 22:15:49'), - (8320,306,1,13686,'4.99','2005-08-20 08:57:28','2006-02-15 22:15:49'), - (8321,306,2,13725,'5.99','2005-08-20 10:08:27','2006-02-15 22:15:49'), - (8322,306,1,13873,'0.99','2005-08-20 15:11:11','2006-02-15 22:15:49'), - (8323,306,1,13996,'4.99','2005-08-20 19:45:43','2006-02-15 22:15:49'), - (8324,306,1,15457,'2.99','2005-08-23 01:07:37','2006-02-15 22:15:49'), - (8325,306,2,15868,'7.99','2005-08-23 16:19:14','2006-02-15 22:15:49'), - (8326,307,2,413,'4.99','2005-05-27 14:45:37','2006-02-15 22:15:49'), - (8327,307,1,535,'4.99','2005-05-28 06:16:32','2006-02-15 22:15:49'), - (8328,307,1,614,'1.99','2005-05-28 15:33:28','2006-02-15 22:15:49'), - (8329,307,1,970,'6.99','2005-05-30 19:50:28','2006-02-15 22:15:50'), - (8330,307,2,2152,'2.99','2005-06-17 22:53:27','2006-02-15 22:15:50'), - (8331,307,1,2167,'0.99','2005-06-17 23:51:28','2006-02-15 22:15:50'), - (8332,307,1,2787,'4.99','2005-06-19 18:47:00','2006-02-15 22:15:50'), - (8333,307,1,2881,'2.99','2005-06-20 01:26:18','2006-02-15 22:15:50'), - (8334,307,2,3057,'5.99','2005-06-20 13:22:48','2006-02-15 22:15:50'), - (8335,307,1,3209,'4.99','2005-06-21 00:51:06','2006-02-15 22:15:50'), - (8336,307,1,3962,'6.99','2005-07-06 22:13:45','2006-02-15 22:15:50'), - (8337,307,1,3985,'4.99','2005-07-06 23:24:03','2006-02-15 22:15:50'), - (8338,307,1,4522,'2.99','2005-07-08 03:03:12','2006-02-15 22:15:50'), - (8339,307,1,4868,'4.99','2005-07-08 19:13:50','2006-02-15 22:15:50'), - (8340,307,1,5871,'3.99','2005-07-10 18:46:08','2006-02-15 22:15:50'), - (8341,307,2,6125,'6.99','2005-07-11 08:03:35','2006-02-15 22:15:50'), - (8342,307,1,6256,'0.99','2005-07-11 15:19:22','2006-02-15 22:15:50'), - (8343,307,1,6991,'10.99','2005-07-27 01:03:06','2006-02-15 22:15:50'), - (8344,307,1,7536,'2.99','2005-07-27 21:34:09','2006-02-15 22:15:50'), - (8345,307,1,7760,'3.99','2005-07-28 06:29:45','2006-02-15 22:15:50'), - (8346,307,1,7929,'0.99','2005-07-28 12:16:40','2006-02-15 22:15:50'), - (8347,307,1,8647,'6.99','2005-07-29 14:52:59','2006-02-15 22:15:50'), - (8348,307,1,10135,'4.99','2005-07-31 21:57:32','2006-02-15 22:15:50'), - (8349,307,1,10374,'0.99','2005-08-01 06:25:27','2006-02-15 22:15:50'), - (8350,307,1,10745,'2.99','2005-08-01 19:57:06','2006-02-15 22:15:50'), - (8351,307,1,11491,'7.99','2005-08-02 22:44:50','2006-02-15 22:15:50'), - (8352,307,2,12391,'4.99','2005-08-18 08:52:53','2006-02-15 22:15:50'), - (8353,307,2,13365,'6.99','2005-08-19 21:12:37','2006-02-15 22:15:51'), - (8354,307,1,14231,'0.99','2005-08-21 05:04:34','2006-02-15 22:15:51'), - (8355,307,2,15515,'4.99','2005-08-23 03:03:53','2006-02-15 22:15:51'), - (8356,308,2,589,'3.99','2005-05-28 12:27:50','2006-02-15 22:15:51'), - (8357,308,1,2037,'0.99','2005-06-17 13:54:20','2006-02-15 22:15:51'), - (8358,308,1,2094,'0.99','2005-06-17 18:18:56','2006-02-15 22:15:51'), - (8359,308,2,2168,'4.99','2005-06-17 23:53:24','2006-02-15 22:15:51'), - (8360,308,1,2346,'7.99','2005-06-18 12:08:16','2006-02-15 22:15:51'), - (8361,308,2,2448,'4.99','2005-06-18 19:13:45','2006-02-15 22:15:51'), - (8362,308,1,4002,'3.99','2005-07-07 00:08:18','2006-02-15 22:15:51'), - (8363,308,1,4285,'8.99','2005-07-07 15:34:35','2006-02-15 22:15:51'), - (8364,308,1,5946,'2.99','2005-07-10 22:57:29','2006-02-15 22:15:51'), - (8365,308,2,8869,'0.99','2005-07-30 00:06:32','2006-02-15 22:15:51'), - (8366,308,1,9479,'2.99','2005-07-30 23:22:09','2006-02-15 22:15:51'), - (8367,308,1,9746,'7.99','2005-07-31 09:16:48','2006-02-15 22:15:51'), - (8368,308,1,10571,'2.99','2005-08-01 13:25:30','2006-02-15 22:15:51'), - (8369,308,2,10797,'0.99','2005-08-01 22:02:51','2006-02-15 22:15:51'), - (8370,308,1,10819,'4.99','2005-08-01 22:52:57','2006-02-15 22:15:51'), - (8371,308,1,11765,'2.99','2005-08-17 09:55:28','2006-02-15 22:15:51'), - (8372,308,1,11972,'4.99','2005-08-17 17:55:46','2006-02-15 22:15:51'), - (8373,308,2,12567,'3.99','2005-08-18 15:14:36','2006-02-15 22:15:51'), - (8374,308,1,12590,'6.99','2005-08-18 16:11:35','2006-02-15 22:15:51'), - (8375,308,2,12838,'6.99','2005-08-19 01:51:50','2006-02-15 22:15:51'), - (8376,308,1,13843,'2.99','2005-08-20 14:30:01','2006-02-15 22:15:51'), - (8377,308,2,14946,'2.99','2005-08-22 06:07:10','2006-02-15 22:15:51'), - (8378,308,1,15243,'4.99','2005-08-22 17:48:28','2006-02-15 22:15:52'), - (8379,308,2,15493,'4.99','2005-08-23 02:20:53','2006-02-15 22:15:52'), - (8380,308,2,15820,'2.99','2005-08-23 15:03:13','2006-02-15 22:15:52'), - (8381,309,2,218,'6.99','2005-05-26 09:27:09','2006-02-15 22:15:52'), - (8382,309,2,723,'0.99','2005-05-29 05:34:44','2006-02-15 22:15:52'), - (8383,309,1,1837,'4.99','2005-06-16 23:16:15','2006-02-15 22:15:52'), - (8384,309,2,2560,'9.99','2005-06-19 03:12:42','2006-02-15 22:15:52'), - (8385,309,2,2644,'3.99','2005-06-19 09:42:30','2006-02-15 22:15:52'), - (8386,309,2,2688,'6.99','2005-06-19 12:50:56','2006-02-15 22:15:52'), - (8387,309,2,3837,'4.99','2005-07-06 16:27:43','2006-02-15 22:15:52'), - (8388,309,2,3896,'7.99','2005-07-06 19:09:15','2006-02-15 22:15:52'), - (8389,309,2,4172,'4.99','2005-07-07 09:49:09','2006-02-15 22:15:52'), - (8390,309,1,4540,'4.99','2005-07-08 04:03:28','2006-02-15 22:15:52'), - (8391,309,2,5305,'8.99','2005-07-09 15:55:36','2006-02-15 22:15:52'), - (8392,309,1,5980,'4.99','2005-07-11 00:18:21','2006-02-15 22:15:52'), - (8393,309,2,6480,'4.99','2005-07-12 01:49:29','2006-02-15 22:15:52'), - (8394,309,2,7214,'5.99','2005-07-27 09:23:33','2006-02-15 22:15:52'), - (8395,309,2,7722,'4.99','2005-07-28 04:44:58','2006-02-15 22:15:52'), - (8396,309,1,7846,'5.99','2005-07-28 09:21:18','2006-02-15 22:15:52'), - (8397,309,1,8341,'4.99','2005-07-29 04:42:01','2006-02-15 22:15:52'), - (8398,309,1,8501,'2.99','2005-07-29 09:12:51','2006-02-15 22:15:52'), - (8399,309,1,8681,'2.99','2005-07-29 16:12:01','2006-02-15 22:15:52'), - (8400,309,1,8917,'2.99','2005-07-30 01:47:02','2006-02-15 22:15:52'), - (8401,309,2,9945,'2.99','2005-07-31 15:47:51','2006-02-15 22:15:52'), - (8402,309,1,9949,'0.99','2005-07-31 15:50:10','2006-02-15 22:15:53'), - (8403,309,1,10458,'2.99','2005-08-01 09:19:48','2006-02-15 22:15:53'), - (8404,309,1,10728,'0.99','2005-08-01 19:15:09','2006-02-15 22:15:53'), - (8405,309,1,10818,'2.99','2005-08-01 22:52:45','2006-02-15 22:15:53'), - (8406,309,2,11964,'6.99','2005-08-17 17:37:03','2006-02-15 22:15:53'), - (8407,309,2,13021,'5.99','2005-08-19 08:08:04','2006-02-15 22:15:53'), - (8408,309,2,13502,'0.99','2005-08-20 01:58:15','2006-02-15 22:15:53'), - (8409,309,2,13909,'4.99','2005-08-20 16:26:36','2006-02-15 22:15:53'), - (8410,309,2,14846,'5.99','2005-08-22 02:13:48','2006-02-15 22:15:53'), - (8411,309,2,15422,'4.99','2005-08-22 23:58:09','2006-02-15 22:15:53'), - (8412,310,2,104,'0.99','2005-05-25 17:46:33','2006-02-15 22:15:53'), - (8413,310,2,1162,'4.99','2005-06-14 23:09:38','2006-02-15 22:15:53'), - (8414,310,2,1333,'2.99','2005-06-15 11:37:08','2006-02-15 22:15:53'), - (8415,310,2,1918,'3.99','2005-06-17 05:40:14','2006-02-15 22:15:53'), - (8416,310,2,2088,'6.99','2005-06-17 17:35:30','2006-02-15 22:15:53'), - (8417,310,1,2480,'5.99','2005-06-18 21:04:09','2006-02-15 22:15:53'), - (8418,310,1,2618,'2.99','2005-06-19 08:03:01','2006-02-15 22:15:53'), - (8419,310,2,3830,'10.99','2005-07-06 16:01:16','2006-02-15 22:15:53'), - (8420,310,1,4072,'0.99','2005-07-07 04:48:02','2006-02-15 22:15:53'), - (8421,310,1,5621,'5.99','2005-07-10 05:34:10','2006-02-15 22:15:53'), - (8422,310,2,5836,'0.99','2005-07-10 16:49:02','2006-02-15 22:15:53'), - (8423,310,1,7648,'5.99','2005-07-28 01:35:33','2006-02-15 22:15:53'), - (8424,310,2,8637,'5.99','2005-07-29 14:30:11','2006-02-15 22:15:53'), - (8425,310,1,8981,'7.99','2005-07-30 04:25:30','2006-02-15 22:15:53'), - (8426,310,1,9536,'2.99','2005-07-31 01:19:02','2006-02-15 22:15:53'), - (8427,310,2,11137,'2.99','2005-08-02 09:25:31','2006-02-15 22:15:54'), - (8428,310,2,12500,'4.99','2005-08-18 13:05:51','2006-02-15 22:15:54'), - (8429,310,2,12710,'7.99','2005-08-18 21:02:50','2006-02-15 22:15:54'), - (8430,310,1,12929,'4.99','2005-08-19 05:05:23','2006-02-15 22:15:54'), - (8431,310,1,14972,'5.99','2005-08-22 06:53:21','2006-02-15 22:15:54'), - (8432,311,2,274,'5.99','2005-05-26 16:48:51','2006-02-15 22:15:54'), - (8433,311,2,544,'6.99','2005-05-28 07:03:00','2006-02-15 22:15:54'), - (8434,311,1,952,'2.99','2005-05-30 16:28:07','2006-02-15 22:15:54'), - (8435,311,2,990,'3.99','2005-05-30 23:25:14','2006-02-15 22:15:54'), - (8436,311,2,1128,'6.99','2005-05-31 17:49:26','2006-02-15 22:15:54'), - (8437,311,1,1622,'4.99','2005-06-16 07:33:18','2006-02-15 22:15:54'), - (8438,311,2,1955,'0.99','2005-06-17 08:40:22','2006-02-15 22:15:54'), - (8439,311,2,2967,'6.99','2005-06-20 07:40:35','2006-02-15 22:15:54'), - (8440,311,2,4836,'3.99','2005-07-08 18:09:08','2006-02-15 22:15:54'), - (8441,311,2,5224,'5.99','2005-07-09 12:07:27','2006-02-15 22:15:54'), - (8442,311,2,6419,'4.99','2005-07-11 23:36:38','2006-02-15 22:15:54'), - (8443,311,2,8167,'6.99','2005-07-28 21:25:45','2006-02-15 22:15:54'), - (8444,311,1,8473,'2.99','2005-07-29 08:36:53','2006-02-15 22:15:54'), - (8445,311,1,9503,'6.99','2005-07-31 00:02:38','2006-02-15 22:15:54'), - (8446,311,2,9882,'8.99','2005-07-31 13:53:33','2006-02-15 22:15:54'), - (8447,311,1,10134,'4.99','2005-07-31 21:56:10','2006-02-15 22:15:54'), - (8448,311,2,10448,'4.99','2005-08-01 09:09:31','2006-02-15 22:15:54'), - (8449,311,1,12997,'2.99','2005-08-19 07:31:46','2006-02-15 22:15:54'), - (8450,311,2,13310,'0.99','2005-08-19 19:05:16','2006-02-15 22:15:54'), - (8451,311,2,13423,'1.99','2005-08-19 23:07:42','2006-02-15 22:15:55'), - (8452,311,2,14517,'4.99','2005-08-21 14:57:03','2006-02-15 22:15:55'), - (8453,311,2,15826,'9.99','2005-08-23 15:15:02','2006-02-15 22:15:55'), - (8454,311,1,16020,'8.99','2005-08-23 21:34:33','2006-02-15 22:15:55'), - (8455,312,2,229,'4.99','2005-05-26 11:19:20','2006-02-15 22:15:55'), - (8456,312,1,530,'0.99','2005-05-28 05:13:01','2006-02-15 22:15:55'), - (8457,312,2,1049,'4.99','2005-05-31 06:57:04','2006-02-15 22:15:55'), - (8458,312,2,1079,'6.99','2005-05-31 10:48:17','2006-02-15 22:15:55'), - (8459,312,2,1419,'0.99','2005-06-15 17:54:50','2006-02-15 22:15:55'), - (8460,312,2,3457,'3.99','2005-06-21 21:42:33','2006-02-15 22:15:55'), - (8461,312,1,3766,'2.99','2005-07-06 13:04:35','2006-02-15 22:15:55'), - (8462,312,1,3792,'1.99','2005-07-06 14:26:38','2006-02-15 22:15:55'), - (8463,312,1,4647,'3.99','2005-07-08 09:27:36','2006-02-15 22:15:55'), - (8464,312,1,5031,'5.99','2005-07-09 02:36:37','2006-02-15 22:15:55'), - (8465,312,2,6751,'2.99','2005-07-12 14:50:34','2006-02-15 22:15:55'), - (8466,312,1,6866,'2.99','2005-07-12 20:03:44','2006-02-15 22:15:55'), - (8467,312,1,8137,'4.99','2005-07-28 20:07:18','2006-02-15 22:15:55'), - (8468,312,1,8412,'6.99','2005-07-29 06:44:50','2006-02-15 22:15:55'), - (8469,312,1,8721,'4.99','2005-07-29 17:56:21','2006-02-15 22:15:55'), - (8470,312,1,9016,'6.99','2005-07-30 05:26:13','2006-02-15 22:15:55'), - (8471,312,1,9154,'3.99','2005-07-30 10:59:54','2006-02-15 22:15:55'), - (8472,312,2,10858,'2.99','2005-08-02 00:08:39','2006-02-15 22:15:55'), - (8473,312,2,11248,'0.99','2005-08-02 13:35:34','2006-02-15 22:15:55'), - (8474,312,2,11879,'5.99','2005-08-17 14:25:09','2006-02-15 22:15:55'), - (8475,312,1,12186,'2.99','2005-08-18 01:43:36','2006-02-15 22:15:56'), - (8476,312,1,12945,'0.99','2005-08-19 05:51:46','2006-02-15 22:15:56'), - (8477,312,2,14362,'2.99','2005-08-21 09:19:49','2006-02-15 22:15:56'), - (8478,312,1,14504,'3.99','2005-08-21 14:23:01','2006-02-15 22:15:56'), - (8479,312,1,15100,'4.99','2005-08-22 11:55:03','2006-02-15 22:15:56'), - (8480,312,1,15882,'6.99','2005-08-23 16:44:31','2006-02-15 22:15:56'), - (8481,313,2,669,'4.99','2005-05-28 22:03:25','2006-02-15 22:15:56'), - (8482,313,2,712,'2.99','2005-05-29 04:02:24','2006-02-15 22:15:56'), - (8483,313,2,781,'0.99','2005-05-29 14:23:58','2006-02-15 22:15:56'), - (8484,313,2,843,'0.99','2005-05-30 00:44:24','2006-02-15 22:15:56'), - (8485,313,2,1312,'2.99','2005-06-15 10:16:27','2006-02-15 22:15:56'), - (8486,313,1,2617,'7.99','2005-06-19 07:48:31','2006-02-15 22:15:56'), - (8487,313,2,2711,'4.99','2005-06-19 14:12:22','2006-02-15 22:15:56'), - (8488,313,2,4552,'2.99','2005-07-08 04:36:35','2006-02-15 22:15:56'), - (8489,313,1,5255,'5.99','2005-07-09 13:51:08','2006-02-15 22:15:56'), - (8490,313,1,6384,'2.99','2005-07-11 22:07:26','2006-02-15 22:15:56'), - (8491,313,2,7294,'0.99','2005-07-27 12:38:14','2006-02-15 22:15:56'), - (8492,313,2,8381,'4.99','2005-07-29 05:31:44','2006-02-15 22:15:56'), - (8493,313,1,8970,'3.99','2005-07-30 04:02:05','2006-02-15 22:15:56'), - (8494,313,2,9836,'2.99','2005-07-31 12:12:00','2006-02-15 22:15:56'), - (8495,313,2,10237,'5.99','2005-08-01 02:07:32','2006-02-15 22:15:56'), - (8496,313,2,10933,'7.99','2005-08-02 02:50:49','2006-02-15 22:15:56'), - (8497,313,2,11854,'2.99','2005-08-17 13:42:52','2006-02-15 22:15:56'), - (8498,313,2,12011,'2.99','2005-08-17 19:19:44','2006-02-15 22:15:56'), - (8499,313,2,14250,'2.99','2005-08-21 05:39:35','2006-02-15 22:15:56'), - (8500,313,1,14325,'4.99','2005-08-21 08:15:38','2006-02-15 22:15:57'), - (8501,313,2,15081,'2.99','2005-08-22 11:14:31','2006-02-15 22:15:57'), - (8502,313,1,15340,'0.99','2005-08-22 20:55:56','2006-02-15 22:15:57'), - (8503,313,2,15569,'6.99','2005-08-23 05:24:29','2006-02-15 22:15:57'), - (8504,314,1,80,'5.99','2005-05-25 12:12:07','2006-02-15 22:15:57'), - (8505,314,1,440,'4.99','2005-05-27 18:00:35','2006-02-15 22:15:57'), - (8506,314,1,1598,'3.99','2005-06-16 06:02:39','2006-02-15 22:15:57'), - (8507,314,1,1624,'2.99','2005-06-16 07:48:57','2006-02-15 22:15:57'), - (8508,314,1,3517,'0.99','2005-07-06 00:52:35','2006-02-15 22:15:57'), - (8509,314,1,3656,'2.99','2005-07-06 07:55:22','2006-02-15 22:15:57'), - (8510,314,1,3808,'0.99','2005-07-06 15:15:35','2006-02-15 22:15:57'), - (8511,314,2,4386,'0.99','2005-07-07 20:55:19','2006-02-15 22:15:57'), - (8512,314,2,5241,'4.99','2005-07-09 13:19:14','2006-02-15 22:15:57'), - (8513,314,2,5856,'0.99','2005-07-10 17:57:32','2006-02-15 22:15:57'), - (8514,314,1,6192,'5.99','2005-07-11 11:44:41','2006-02-15 22:15:57'), - (8515,314,1,6666,'2.99','2005-07-12 11:32:15','2006-02-15 22:15:57'), - (8516,314,1,6763,'3.99','2005-07-12 15:26:34','2006-02-15 22:15:57'), - (8517,314,2,7004,'4.99','2005-07-27 01:36:05','2006-02-15 22:15:57'), - (8518,314,1,7276,'2.99','2005-07-27 11:41:57','2006-02-15 22:15:57'), - (8519,314,2,8022,'6.99','2005-07-28 15:48:56','2006-02-15 22:15:57'), - (8520,314,1,8073,'3.99','2005-07-28 17:29:02','2006-02-15 22:15:57'), - (8521,314,2,8105,'0.99','2005-07-28 18:59:46','2006-02-15 22:15:57'), - (8522,314,2,8328,'6.99','2005-07-29 04:06:24','2006-02-15 22:15:57'), - (8523,314,2,8644,'4.99','2005-07-29 14:45:45','2006-02-15 22:15:57'), - (8524,314,2,9191,'3.99','2005-07-30 12:25:51','2006-02-15 22:15:58'), - (8525,314,2,9318,'6.99','2005-07-30 17:14:30','2006-02-15 22:15:58'), - (8526,314,2,11908,'3.99','2005-08-17 15:43:09','2006-02-15 22:15:58'), - (8527,314,1,12434,'0.99','2005-08-18 10:38:08','2006-02-15 22:15:58'), - (8528,314,2,13120,'3.99','2005-08-19 11:47:38','2006-02-15 22:15:58'), - (8529,314,1,13265,'2.99','2005-08-19 17:29:00','2006-02-15 22:15:58'), - (8530,314,2,13553,'3.99','2005-08-20 04:07:21','2006-02-15 22:15:58'), - (8531,314,2,14145,'4.99','2005-08-21 02:11:38','2006-02-15 22:15:58'), - (8532,314,1,14409,'4.99','2005-08-21 10:53:35','2006-02-15 22:15:58'), - (8533,314,2,14682,'4.99','2005-08-21 20:25:57','2006-02-15 22:15:58'), - (8534,314,2,14815,'4.99','2005-08-22 01:12:44','2006-02-15 22:15:58'), - (8535,314,2,14873,'5.99','2005-08-22 03:31:06','2006-02-15 22:15:58'), - (8536,314,2,16021,'3.99','2005-08-23 21:37:59','2006-02-15 22:15:58'), - (8537,315,1,537,'8.99','2005-05-28 06:20:55','2006-02-15 22:15:58'), - (8538,315,1,551,'4.99','2005-05-28 07:44:18','2006-02-15 22:15:58'), - (8539,315,1,1701,'2.99','2005-06-16 13:18:48','2006-02-15 22:15:58'), - (8540,315,1,4021,'2.99','2005-07-07 01:46:44','2006-02-15 22:15:58'), - (8541,315,1,4992,'4.99','2005-07-09 00:49:37','2006-02-15 22:15:58'), - (8542,315,2,5126,'6.99','2005-07-09 07:25:35','2006-02-15 22:15:58'), - (8543,315,1,6661,'4.99','2005-07-12 11:20:39','2006-02-15 22:15:58'), - (8544,315,1,6894,'4.99','2005-07-12 21:20:50','2006-02-15 22:15:58'), - (8545,315,1,8416,'5.99','2005-07-29 06:52:54','2006-02-15 22:15:58'), - (8546,315,2,8677,'6.99','2005-07-29 16:01:13','2006-02-15 22:15:58'), - (8547,315,2,9735,'9.99','2005-07-31 08:57:49','2006-02-15 22:15:58'), - (8548,315,2,11254,'0.99','2005-08-02 13:43:49','2006-02-15 22:15:59'), - (8549,315,2,12155,'2.99','2005-08-18 00:24:30','2006-02-15 22:15:59'), - (8550,315,1,14106,'2.99','2005-08-21 00:46:01','2006-02-15 22:15:59'), - (8551,315,2,14162,'2.99','2005-08-21 02:55:34','2006-02-15 22:15:59'), - (8552,315,1,15504,'6.99','2005-08-23 02:45:21','2006-02-15 22:15:59'), - (8553,315,2,14426,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:59'), - (8554,316,1,16,'4.99','2005-05-25 00:43:11','2006-02-15 22:15:59'), - (8555,316,1,644,'8.99','2005-05-28 18:59:12','2006-02-15 22:15:59'), - (8556,316,1,1065,'1.99','2005-05-31 08:54:56','2006-02-15 22:15:59'), - (8557,316,1,1317,'4.99','2005-06-15 10:30:19','2006-02-15 22:15:59'), - (8558,316,2,1350,'4.99','2005-06-15 12:50:25','2006-02-15 22:15:59'), - (8559,316,1,2032,'4.99','2005-06-17 13:24:07','2006-02-15 22:15:59'), - (8560,316,2,2338,'4.99','2005-06-18 11:24:54','2006-02-15 22:15:59'), - (8561,316,2,2491,'1.99','2005-06-18 22:01:31','2006-02-15 22:15:59'), - (8562,316,1,2820,'4.99','2005-06-19 20:20:33','2006-02-15 22:15:59'), - (8563,316,2,3373,'8.99','2005-06-21 13:35:32','2006-02-15 22:15:59'), - (8564,316,1,4379,'2.99','2005-07-07 20:32:30','2006-02-15 22:15:59'), - (8565,316,2,5102,'3.99','2005-07-09 06:25:48','2006-02-15 22:15:59'), - (8566,316,2,5544,'7.99','2005-07-10 02:48:07','2006-02-15 22:15:59'), - (8567,316,1,5618,'5.99','2005-07-10 05:28:58','2006-02-15 22:15:59'), - (8568,316,2,6988,'4.99','2005-07-27 01:00:08','2006-02-15 22:15:59'), - (8569,316,2,7339,'2.99','2005-07-27 14:17:48','2006-02-15 22:15:59'), - (8570,316,2,7586,'2.99','2005-07-27 23:19:29','2006-02-15 22:15:59'), - (8571,316,1,7592,'4.99','2005-07-27 23:26:04','2006-02-15 22:15:59'), - (8572,316,1,7945,'1.99','2005-07-28 12:53:58','2006-02-15 22:15:59'), - (8573,316,1,8564,'4.99','2005-07-29 11:33:00','2006-02-15 22:16:00'), - (8574,316,1,9508,'4.99','2005-07-31 00:22:39','2006-02-15 22:16:00'), - (8575,316,2,9903,'6.99','2005-07-31 14:31:44','2006-02-15 22:16:00'), - (8576,316,1,10438,'7.99','2005-08-01 08:53:04','2006-02-15 22:16:00'), - (8577,316,1,12028,'0.99','2005-08-17 20:03:47','2006-02-15 22:16:00'), - (8578,316,2,12191,'0.99','2005-08-18 01:57:11','2006-02-15 22:16:00'), - (8579,316,2,12823,'2.99','2005-08-19 01:15:47','2006-02-15 22:16:00'), - (8580,316,2,13277,'5.99','2005-08-19 17:57:35','2006-02-15 22:16:00'), - (8581,316,1,14226,'2.99','2005-08-21 04:55:37','2006-02-15 22:16:00'), - (8582,316,2,15840,'2.99','2005-08-23 15:34:49','2006-02-15 22:16:00'), - (8583,317,1,107,'6.99','2005-05-25 18:28:09','2006-02-15 22:16:00'), - (8584,317,2,2287,'6.99','2005-06-18 07:04:36','2006-02-15 22:16:00'), - (8585,317,2,3029,'2.99','2005-06-20 11:51:30','2006-02-15 22:16:00'), - (8586,317,1,3251,'0.99','2005-06-21 03:20:37','2006-02-15 22:16:00'), - (8587,317,1,4138,'0.99','2005-07-07 08:17:13','2006-02-15 22:16:00'), - (8588,317,1,4177,'8.99','2005-07-07 10:12:36','2006-02-15 22:16:00'), - (8589,317,2,4700,'0.99','2005-07-08 11:37:21','2006-02-15 22:16:00'), - (8590,317,1,5548,'0.99','2005-07-10 02:56:45','2006-02-15 22:16:00'), - (8591,317,2,5942,'7.99','2005-07-10 22:47:17','2006-02-15 22:16:00'), - (8592,317,1,7309,'2.99','2005-07-27 13:00:29','2006-02-15 22:16:00'), - (8593,317,2,8062,'2.99','2005-07-28 17:15:06','2006-02-15 22:16:00'), - (8594,317,1,8327,'2.99','2005-07-29 04:00:52','2006-02-15 22:16:00'), - (8595,317,1,8458,'4.99','2005-07-29 08:05:09','2006-02-15 22:16:00'), - (8596,317,1,9110,'2.99','2005-07-30 09:05:42','2006-02-15 22:16:01'), - (8597,317,2,9513,'4.99','2005-07-31 00:28:30','2006-02-15 22:16:01'), - (8598,317,1,9770,'8.99','2005-07-31 09:52:40','2006-02-15 22:16:01'), - (8599,317,1,10364,'2.99','2005-08-01 06:06:49','2006-02-15 22:16:01'), - (8600,317,2,12111,'2.99','2005-08-17 22:59:55','2006-02-15 22:16:01'), - (8601,317,2,12138,'7.99','2005-08-17 23:55:54','2006-02-15 22:16:01'), - (8602,317,2,12301,'2.99','2005-08-18 05:36:20','2006-02-15 22:16:01'), - (8603,317,1,13388,'4.99','2005-08-19 21:46:49','2006-02-15 22:16:01'), - (8604,317,1,14032,'5.99','2005-08-20 21:26:55','2006-02-15 22:16:01'), - (8605,317,2,14385,'0.99','2005-08-21 10:02:55','2006-02-15 22:16:01'), - (8606,317,2,14669,'2.99','2005-08-21 19:54:06','2006-02-15 22:16:01'), - (8607,317,1,14791,'4.99','2005-08-22 00:35:55','2006-02-15 22:16:01'), - (8608,317,1,15204,'2.99','2005-08-22 16:30:43','2006-02-15 22:16:01'), - (8609,317,1,15280,'4.99','2005-08-22 19:09:52','2006-02-15 22:16:01'), - (8610,317,1,12574,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:01'), - (8611,318,1,224,'9.99','2005-05-26 10:18:27','2006-02-15 22:16:01'), - (8612,318,1,2634,'2.99','2005-06-19 08:55:17','2006-02-15 22:16:01'), - (8613,318,1,2643,'2.99','2005-06-19 09:39:27','2006-02-15 22:16:01'), - (8614,318,2,3337,'0.99','2005-06-21 10:24:35','2006-02-15 22:16:01'), - (8615,318,2,3376,'7.99','2005-06-21 13:43:02','2006-02-15 22:16:01'), - (8616,318,1,3732,'4.99','2005-07-06 11:33:37','2006-02-15 22:16:01'), - (8617,318,2,3974,'2.99','2005-07-06 22:59:16','2006-02-15 22:16:01'), - (8618,318,1,4356,'8.99','2005-07-07 19:21:22','2006-02-15 22:16:01'), - (8619,318,1,7649,'0.99','2005-07-28 01:37:26','2006-02-15 22:16:01'), - (8620,318,2,7853,'0.99','2005-07-28 09:36:38','2006-02-15 22:16:02'), - (8621,318,2,10023,'5.99','2005-07-31 18:25:51','2006-02-15 22:16:02'), - (8622,318,1,14276,'2.99','2005-08-21 06:34:05','2006-02-15 22:16:02'), - (8623,319,1,15,'9.99','2005-05-25 00:39:22','2006-02-15 22:16:02'), - (8624,319,1,149,'3.99','2005-05-26 00:28:05','2006-02-15 22:16:02'), - (8625,319,1,439,'2.99','2005-05-27 17:54:48','2006-02-15 22:16:02'), - (8626,319,1,1632,'2.99','2005-06-16 08:03:42','2006-02-15 22:16:02'), - (8627,319,1,1892,'4.99','2005-06-17 04:17:33','2006-02-15 22:16:02'), - (8628,319,2,2021,'3.99','2005-06-17 12:41:18','2006-02-15 22:16:02'), - (8629,319,2,2703,'4.99','2005-06-19 13:36:06','2006-02-15 22:16:02'), - (8630,319,2,2884,'0.99','2005-06-20 01:31:16','2006-02-15 22:16:02'), - (8631,319,2,3256,'3.99','2005-06-21 03:45:42','2006-02-15 22:16:02'), - (8632,319,2,4119,'3.99','2005-07-07 07:06:03','2006-02-15 22:16:02'), - (8633,319,2,4295,'2.99','2005-07-07 16:08:51','2006-02-15 22:16:02'), - (8634,319,1,4630,'4.99','2005-07-08 08:33:38','2006-02-15 22:16:02'), - (8635,319,1,5791,'8.99','2005-07-10 14:16:22','2006-02-15 22:16:02'), - (8636,319,1,5882,'2.99','2005-07-10 19:20:34','2006-02-15 22:16:02'), - (8637,319,2,6132,'2.99','2005-07-11 08:24:44','2006-02-15 22:16:02'), - (8638,319,1,6195,'4.99','2005-07-11 12:00:32','2006-02-15 22:16:02'), - (8639,319,1,6255,'4.99','2005-07-11 15:11:33','2006-02-15 22:16:02'), - (8640,319,1,6485,'6.99','2005-07-12 02:07:59','2006-02-15 22:16:02'), - (8641,319,2,7953,'2.99','2005-07-28 13:24:32','2006-02-15 22:16:02'), - (8642,319,2,9017,'4.99','2005-07-30 05:26:20','2006-02-15 22:16:02'), - (8643,319,2,9044,'0.99','2005-07-30 06:35:21','2006-02-15 22:16:02'), - (8644,319,1,11575,'0.99','2005-08-17 01:50:26','2006-02-15 22:16:03'), - (8645,319,2,11598,'0.99','2005-08-17 03:03:07','2006-02-15 22:16:03'), - (8646,319,1,11955,'6.99','2005-08-17 17:21:35','2006-02-15 22:16:03'), - (8647,319,2,11994,'2.99','2005-08-17 18:29:35','2006-02-15 22:16:03'), - (8648,319,1,12018,'4.99','2005-08-17 19:44:46','2006-02-15 22:16:03'), - (8649,319,2,12424,'8.99','2005-08-18 10:16:57','2006-02-15 22:16:03'), - (8650,319,1,13548,'3.99','2005-08-20 03:53:20','2006-02-15 22:16:03'), - (8651,319,2,14828,'4.99','2005-08-22 01:34:05','2006-02-15 22:16:03'), - (8652,319,2,15396,'5.99','2005-08-22 23:07:57','2006-02-15 22:16:03'), - (8653,320,2,1258,'4.99','2005-06-15 06:21:30','2006-02-15 22:16:03'), - (8654,320,2,1484,'3.99','2005-06-15 21:22:35','2006-02-15 22:16:03'), - (8655,320,2,1567,'1.99','2005-06-16 03:13:30','2006-02-15 22:16:03'), - (8656,320,1,2216,'4.99','2005-06-18 03:08:17','2006-02-15 22:16:03'), - (8657,320,2,2883,'7.99','2005-06-20 01:29:10','2006-02-15 22:16:03'), - (8658,320,2,3519,'0.99','2005-07-06 00:57:29','2006-02-15 22:16:03'), - (8659,320,2,3756,'4.99','2005-07-06 12:40:38','2006-02-15 22:16:03'), - (8660,320,2,4173,'2.99','2005-07-07 09:57:26','2006-02-15 22:16:03'), - (8661,320,2,7057,'4.99','2005-07-27 03:50:03','2006-02-15 22:16:03'), - (8662,320,2,7064,'3.99','2005-07-27 03:53:29','2006-02-15 22:16:03'), - (8663,320,2,7930,'4.99','2005-07-28 12:21:08','2006-02-15 22:16:03'), - (8664,320,2,8144,'4.99','2005-07-28 20:30:55','2006-02-15 22:16:03'), - (8665,320,2,8235,'4.99','2005-07-29 00:22:56','2006-02-15 22:16:03'), - (8666,320,1,8238,'0.99','2005-07-29 00:30:06','2006-02-15 22:16:03'), - (8667,320,2,8794,'4.99','2005-07-29 20:59:38','2006-02-15 22:16:03'), - (8668,320,1,9509,'0.99','2005-07-31 00:22:42','2006-02-15 22:16:04'), - (8669,320,1,11208,'0.99','2005-08-02 12:02:37','2006-02-15 22:16:04'), - (8670,320,2,11560,'2.99','2005-08-17 01:20:30','2006-02-15 22:16:04'), - (8671,320,2,14171,'0.99','2005-08-21 03:00:42','2006-02-15 22:16:04'), - (8672,320,1,15302,'2.99','2005-08-22 19:44:53','2006-02-15 22:16:04'), - (8673,321,2,200,'4.99','2005-05-26 07:12:21','2006-02-15 22:16:04'), - (8674,321,1,620,'5.99','2005-05-28 15:54:45','2006-02-15 22:16:04'), - (8675,321,2,818,'4.99','2005-05-29 20:47:53','2006-02-15 22:16:04'), - (8676,321,2,1750,'5.99','2005-06-16 16:57:36','2006-02-15 22:16:04'), - (8677,321,1,3410,'0.99','2005-06-21 16:20:47','2006-02-15 22:16:04'), - (8678,321,2,3901,'5.99','2005-07-06 19:24:55','2006-02-15 22:16:04'), - (8679,321,1,3920,'4.99','2005-07-06 20:26:40','2006-02-15 22:16:04'), - (8680,321,2,4281,'4.99','2005-07-07 15:17:50','2006-02-15 22:16:04'), - (8681,321,1,4318,'5.99','2005-07-07 17:47:50','2006-02-15 22:16:04'), - (8682,321,2,5202,'2.99','2005-07-09 10:53:48','2006-02-15 22:16:04'), - (8683,321,2,5867,'8.99','2005-07-10 18:39:01','2006-02-15 22:16:04'), - (8684,321,2,6190,'2.99','2005-07-11 11:36:18','2006-02-15 22:16:04'), - (8685,321,1,6859,'5.99','2005-07-12 19:53:57','2006-02-15 22:16:04'), - (8686,321,2,8685,'6.99','2005-07-29 16:17:05','2006-02-15 22:16:04'), - (8687,321,1,9981,'0.99','2005-07-31 17:08:31','2006-02-15 22:16:04'), - (8688,321,1,11722,'2.99','2005-08-17 07:53:03','2006-02-15 22:16:04'), - (8689,321,1,12033,'6.99','2005-08-17 20:14:34','2006-02-15 22:16:04'), - (8690,321,2,12034,'7.99','2005-08-17 20:15:31','2006-02-15 22:16:04'), - (8691,321,1,12398,'4.99','2005-08-18 09:13:24','2006-02-15 22:16:04'), - (8692,321,2,13623,'6.99','2005-08-20 06:49:46','2006-02-15 22:16:05'), - (8693,321,1,15673,'6.99','2005-08-23 09:12:50','2006-02-15 22:16:05'), - (8694,321,2,15888,'5.99','2005-08-23 16:56:14','2006-02-15 22:16:05'), - (8695,322,2,166,'0.99','2005-05-26 02:49:11','2006-02-15 22:16:05'), - (8696,322,1,269,'4.99','2005-05-26 16:19:46','2006-02-15 22:16:05'), - (8697,322,1,1386,'2.99','2005-06-15 15:38:58','2006-02-15 22:16:05'), - (8698,322,1,1588,'8.99','2005-06-16 04:53:21','2006-02-15 22:16:05'), - (8699,322,2,2481,'4.99','2005-06-18 21:08:30','2006-02-15 22:16:05'), - (8700,322,1,2554,'0.99','2005-06-19 03:05:38','2006-02-15 22:16:05'), - (8701,322,1,2983,'7.99','2005-06-20 08:41:42','2006-02-15 22:16:05'), - (8702,322,2,3054,'5.99','2005-06-20 13:16:41','2006-02-15 22:16:05'), - (8703,322,2,3413,'8.99','2005-06-21 16:57:07','2006-02-15 22:16:05'), - (8704,322,1,3478,'0.99','2005-07-05 23:05:44','2006-02-15 22:16:05'), - (8705,322,2,3627,'1.99','2005-07-06 06:19:25','2006-02-15 22:16:05'), - (8706,322,1,3646,'4.99','2005-07-06 07:28:59','2006-02-15 22:16:05'), - (8707,322,2,6033,'2.99','2005-07-11 02:59:34','2006-02-15 22:16:05'), - (8708,322,1,6511,'3.99','2005-07-12 03:39:29','2006-02-15 22:16:05'), - (8709,322,2,6673,'0.99','2005-07-12 11:50:56','2006-02-15 22:16:05'), - (8710,322,2,6709,'4.99','2005-07-12 13:20:41','2006-02-15 22:16:05'), - (8711,322,1,7091,'4.99','2005-07-27 04:44:10','2006-02-15 22:16:05'), - (8712,322,2,8142,'4.99','2005-07-28 20:21:54','2006-02-15 22:16:05'), - (8713,322,1,9104,'7.99','2005-07-30 08:49:55','2006-02-15 22:16:05'), - (8714,322,1,9115,'4.99','2005-07-30 09:13:55','2006-02-15 22:16:05'), - (8715,322,1,9252,'1.99','2005-07-30 14:19:59','2006-02-15 22:16:05'), - (8716,322,2,11120,'4.99','2005-08-02 08:47:04','2006-02-15 22:16:06'), - (8717,322,2,11456,'0.99','2005-08-02 21:14:04','2006-02-15 22:16:06'), - (8718,322,2,13180,'4.99','2005-08-19 14:00:38','2006-02-15 22:16:06'), - (8719,322,1,13650,'9.99','2005-08-20 07:49:06','2006-02-15 22:16:06'), - (8720,322,2,14042,'4.99','2005-08-20 21:45:51','2006-02-15 22:16:06'), - (8721,322,1,15450,'0.99','2005-08-23 00:56:01','2006-02-15 22:16:06'), - (8722,322,2,15703,'8.99','2005-08-23 10:23:48','2006-02-15 22:16:06'), - (8723,323,1,58,'4.99','2005-05-25 08:53:14','2006-02-15 22:16:06'), - (8724,323,2,729,'2.99','2005-05-29 06:35:13','2006-02-15 22:16:06'), - (8725,323,1,878,'5.99','2005-05-30 05:49:13','2006-02-15 22:16:06'), - (8726,323,2,1167,'0.99','2005-06-14 23:25:58','2006-02-15 22:16:06'), - (8727,323,2,1786,'2.99','2005-06-16 19:30:54','2006-02-15 22:16:06'), - (8728,323,1,2933,'4.99','2005-06-20 04:52:23','2006-02-15 22:16:06'), - (8729,323,2,3704,'6.99','2005-07-06 10:16:45','2006-02-15 22:16:06'), - (8730,323,2,4572,'1.99','2005-07-08 05:36:59','2006-02-15 22:16:06'), - (8731,323,2,5669,'4.99','2005-07-10 08:12:53','2006-02-15 22:16:06'), - (8732,323,2,5906,'1.99','2005-07-10 20:41:41','2006-02-15 22:16:06'), - (8733,323,1,6840,'3.99','2005-07-12 19:03:22','2006-02-15 22:16:06'), - (8734,323,2,7146,'7.99','2005-07-27 07:02:30','2006-02-15 22:16:06'), - (8735,323,2,7275,'2.99','2005-07-27 11:39:08','2006-02-15 22:16:06'), - (8736,323,2,7695,'5.99','2005-07-28 03:41:13','2006-02-15 22:16:06'), - (8737,323,1,7847,'1.99','2005-07-28 09:23:14','2006-02-15 22:16:06'), - (8738,323,2,7937,'4.99','2005-07-28 12:38:22','2006-02-15 22:16:06'), - (8739,323,2,8474,'0.99','2005-07-29 08:36:56','2006-02-15 22:16:07'), - (8740,323,1,8790,'0.99','2005-07-29 20:51:41','2006-02-15 22:16:07'), - (8741,323,1,9363,'2.99','2005-07-30 18:44:23','2006-02-15 22:16:07'), - (8742,323,2,10002,'4.99','2005-07-31 17:48:16','2006-02-15 22:16:07'), - (8743,323,1,10028,'4.99','2005-07-31 18:35:54','2006-02-15 22:16:07'), - (8744,323,1,10298,'0.99','2005-08-01 04:06:03','2006-02-15 22:16:07'), - (8745,323,1,10994,'3.99','2005-08-02 04:46:53','2006-02-15 22:16:07'), - (8746,323,2,11548,'0.99','2005-08-17 00:59:47','2006-02-15 22:16:07'), - (8747,323,1,12120,'4.99','2005-08-17 23:16:46','2006-02-15 22:16:07'), - (8748,323,1,12169,'2.99','2005-08-18 01:05:54','2006-02-15 22:16:07'), - (8749,323,1,13140,'5.99','2005-08-19 12:35:56','2006-02-15 22:16:07'), - (8750,323,1,14224,'2.99','2005-08-21 04:53:08','2006-02-15 22:16:07'), - (8751,323,1,14957,'3.99','2005-08-22 06:29:34','2006-02-15 22:16:07'), - (8752,323,1,15387,'4.99','2005-08-22 22:49:13','2006-02-15 22:16:07'), - (8753,323,1,15728,'0.99','2005-08-23 11:30:32','2006-02-15 22:16:07'), - (8754,324,2,563,'3.99','2005-05-28 09:10:49','2006-02-15 22:16:07'), - (8755,324,1,1740,'0.99','2005-06-16 16:29:00','2006-02-15 22:16:07'), - (8756,324,2,2590,'2.99','2005-06-19 05:31:40','2006-02-15 22:16:07'), - (8757,324,1,3947,'4.99','2005-07-06 21:42:21','2006-02-15 22:16:07'), - (8758,324,1,4197,'0.99','2005-07-07 11:07:52','2006-02-15 22:16:07'), - (8759,324,2,4368,'4.99','2005-07-07 19:55:19','2006-02-15 22:16:07'), - (8760,324,2,5702,'2.99','2005-07-10 10:00:01','2006-02-15 22:16:07'), - (8761,324,1,5778,'0.99','2005-07-10 13:41:37','2006-02-15 22:16:07'), - (8762,324,1,6034,'2.99','2005-07-11 03:00:50','2006-02-15 22:16:07'), - (8763,324,2,6299,'4.99','2005-07-11 17:45:08','2006-02-15 22:16:08'), - (8764,324,2,7240,'3.99','2005-07-27 10:21:15','2006-02-15 22:16:08'), - (8765,324,1,7263,'7.99','2005-07-27 11:17:22','2006-02-15 22:16:08'), - (8766,324,2,7960,'6.99','2005-07-28 13:47:08','2006-02-15 22:16:08'), - (8767,324,1,8698,'3.99','2005-07-29 16:52:17','2006-02-15 22:16:08'), - (8768,324,1,9651,'4.99','2005-07-31 05:48:49','2006-02-15 22:16:08'), - (8769,324,2,10212,'2.99','2005-08-01 01:01:35','2006-02-15 22:16:08'), - (8770,324,1,11617,'2.99','2005-08-17 04:00:40','2006-02-15 22:16:08'), - (8771,324,1,11771,'6.99','2005-08-17 10:17:09','2006-02-15 22:16:08'), - (8772,324,2,12543,'2.99','2005-08-18 14:23:55','2006-02-15 22:16:08'), - (8773,324,2,13356,'0.99','2005-08-19 21:02:21','2006-02-15 22:16:08'), - (8774,324,1,13386,'2.99','2005-08-19 21:43:58','2006-02-15 22:16:08'), - (8775,324,1,14262,'8.99','2005-08-21 06:08:13','2006-02-15 22:16:08'), - (8776,324,2,14479,'7.99','2005-08-21 13:35:54','2006-02-15 22:16:08'), - (8777,324,1,15263,'4.99','2005-08-22 18:27:33','2006-02-15 22:16:08'), - (8778,324,2,13965,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:08'), - (8779,325,1,131,'5.99','2005-05-25 21:42:46','2006-02-15 22:16:08'), - (8780,325,2,2502,'4.99','2005-06-18 23:12:13','2006-02-15 22:16:08'), - (8781,325,2,2507,'4.99','2005-06-18 23:39:22','2006-02-15 22:16:08'), - (8782,325,2,2808,'2.99','2005-06-19 19:34:45','2006-02-15 22:16:08'), - (8783,325,1,5470,'5.99','2005-07-09 23:10:49','2006-02-15 22:16:08'), - (8784,325,2,5740,'2.99','2005-07-10 11:51:58','2006-02-15 22:16:08'), - (8785,325,1,5775,'4.99','2005-07-10 13:34:26','2006-02-15 22:16:08'), - (8786,325,2,6135,'4.99','2005-07-11 08:32:23','2006-02-15 22:16:08'), - (8787,325,2,6622,'0.99','2005-07-12 09:04:11','2006-02-15 22:16:09'), - (8788,325,2,7223,'9.99','2005-07-27 09:42:27','2006-02-15 22:16:09'), - (8789,325,2,7687,'2.99','2005-07-28 03:20:26','2006-02-15 22:16:09'), - (8790,325,2,8539,'0.99','2005-07-29 10:48:24','2006-02-15 22:16:09'), - (8791,325,2,10030,'2.99','2005-07-31 18:39:36','2006-02-15 22:16:09'), - (8792,325,1,10070,'4.99','2005-07-31 19:46:29','2006-02-15 22:16:09'), - (8793,325,2,10326,'4.99','2005-08-01 04:55:34','2006-02-15 22:16:09'), - (8794,325,1,10412,'0.99','2005-08-01 07:57:16','2006-02-15 22:16:09'), - (8795,325,2,12097,'4.99','2005-08-17 22:35:24','2006-02-15 22:16:09'), - (8796,325,1,12779,'3.99','2005-08-18 23:44:00','2006-02-15 22:16:09'), - (8797,325,2,13054,'4.99','2005-08-19 09:34:02','2006-02-15 22:16:09'), - (8798,325,2,14452,'3.99','2005-08-21 12:23:20','2006-02-15 22:16:09'), - (8799,325,1,14672,'5.99','2005-08-21 19:59:33','2006-02-15 22:16:09'), - (8800,325,2,15009,'0.99','2005-08-22 08:27:27','2006-02-15 22:16:09'), - (8801,326,1,875,'6.99','2005-05-30 05:38:24','2006-02-15 22:16:09'), - (8802,326,2,981,'4.99','2005-05-30 21:52:42','2006-02-15 22:16:09'), - (8803,326,2,1149,'3.99','2005-05-31 21:03:17','2006-02-15 22:16:09'), - (8804,326,1,1311,'4.99','2005-06-15 10:11:59','2006-02-15 22:16:09'), - (8805,326,2,2086,'0.99','2005-06-17 17:32:07','2006-02-15 22:16:09'), - (8806,326,2,2317,'4.99','2005-06-18 09:12:18','2006-02-15 22:16:09'), - (8807,326,1,3441,'4.99','2005-06-21 20:00:12','2006-02-15 22:16:09'), - (8808,326,2,3886,'0.99','2005-07-06 18:44:24','2006-02-15 22:16:09'), - (8809,326,1,4160,'7.99','2005-07-07 09:13:17','2006-02-15 22:16:09'), - (8810,326,1,5147,'5.99','2005-07-09 08:17:41','2006-02-15 22:16:09'), - (8811,326,1,7117,'2.99','2005-07-27 05:48:36','2006-02-15 22:16:10'), - (8812,326,2,7725,'2.99','2005-07-28 04:47:14','2006-02-15 22:16:10'), - (8813,326,2,7931,'4.99','2005-07-28 12:23:41','2006-02-15 22:16:10'), - (8814,326,1,8467,'5.99','2005-07-29 08:25:35','2006-02-15 22:16:10'), - (8815,326,1,8604,'4.99','2005-07-29 13:07:13','2006-02-15 22:16:10'), - (8816,326,2,8739,'2.99','2005-07-29 18:34:33','2006-02-15 22:16:10'), - (8817,326,2,9855,'0.99','2005-07-31 13:00:33','2006-02-15 22:16:10'), - (8818,326,1,10108,'0.99','2005-07-31 21:02:14','2006-02-15 22:16:10'), - (8819,326,2,10173,'4.99','2005-07-31 23:36:59','2006-02-15 22:16:10'), - (8820,326,2,10720,'0.99','2005-08-01 19:04:33','2006-02-15 22:16:10'), - (8821,326,2,10976,'4.99','2005-08-02 04:11:48','2006-02-15 22:16:10'), - (8822,326,2,11010,'0.99','2005-08-02 05:06:27','2006-02-15 22:16:10'), - (8823,326,2,11428,'2.99','2005-08-02 20:03:10','2006-02-15 22:16:10'), - (8824,326,2,11485,'4.99','2005-08-02 22:33:25','2006-02-15 22:16:10'), - (8825,326,2,12829,'2.99','2005-08-19 01:38:18','2006-02-15 22:16:10'), - (8826,327,1,653,'6.99','2005-05-28 20:12:20','2006-02-15 22:16:10'), - (8827,327,1,1294,'4.99','2005-06-15 09:09:27','2006-02-15 22:16:10'), - (8828,327,2,1577,'3.99','2005-06-16 04:03:28','2006-02-15 22:16:10'), - (8829,327,2,1929,'6.99','2005-06-17 06:49:30','2006-02-15 22:16:10'), - (8830,327,1,2273,'4.99','2005-06-18 06:30:02','2006-02-15 22:16:10'), - (8831,327,2,2304,'5.99','2005-06-18 08:30:15','2006-02-15 22:16:10'), - (8832,327,2,2637,'3.99','2005-06-19 09:20:56','2006-02-15 22:16:10'), - (8833,327,1,4445,'4.99','2005-07-07 23:08:22','2006-02-15 22:16:10'), - (8834,327,1,4521,'0.99','2005-07-08 02:57:56','2006-02-15 22:16:11'), - (8835,327,1,6618,'2.99','2005-07-12 08:41:42','2006-02-15 22:16:11'), - (8836,327,2,7458,'1.99','2005-07-27 18:36:17','2006-02-15 22:16:11'), - (8837,327,2,7808,'1.99','2005-07-28 07:58:56','2006-02-15 22:16:11'), - (8838,327,1,10371,'0.99','2005-08-01 06:20:29','2006-02-15 22:16:11'), - (8839,327,1,11372,'4.99','2005-08-02 18:10:50','2006-02-15 22:16:11'), - (8840,327,2,11929,'6.99','2005-08-17 16:28:51','2006-02-15 22:16:11'), - (8841,327,1,12016,'0.99','2005-08-17 19:33:24','2006-02-15 22:16:11'), - (8842,327,2,13158,'2.99','2005-08-19 13:18:10','2006-02-15 22:16:11'), - (8843,327,1,13360,'4.99','2005-08-19 21:05:11','2006-02-15 22:16:11'), - (8844,327,1,13448,'0.99','2005-08-20 00:12:43','2006-02-15 22:16:11'), - (8845,327,1,14847,'4.99','2005-08-22 02:13:51','2006-02-15 22:16:11'), - (8846,327,2,15365,'3.99','2005-08-22 21:42:17','2006-02-15 22:16:11'), - (8847,327,1,15386,'2.99','2005-08-22 22:41:14','2006-02-15 22:16:11'), - (8848,327,1,15828,'5.99','2005-08-23 15:16:32','2006-02-15 22:16:11'), - (8849,327,1,15916,'9.99','2005-08-23 17:56:01','2006-02-15 22:16:11'), - (8850,327,2,15969,'7.99','2005-08-23 19:51:30','2006-02-15 22:16:11'), - (8851,327,1,15297,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:11'), - (8852,328,2,862,'2.99','2005-05-30 03:09:11','2006-02-15 22:16:11'), - (8853,328,2,1670,'2.99','2005-06-16 10:26:33','2006-02-15 22:16:11'), - (8854,328,2,1980,'6.99','2005-06-17 09:48:05','2006-02-15 22:16:11'), - (8855,328,2,2243,'5.99','2005-06-18 04:33:03','2006-02-15 22:16:11'), - (8856,328,1,3024,'4.99','2005-06-20 11:29:17','2006-02-15 22:16:11'), - (8857,328,1,3239,'0.99','2005-06-21 02:48:40','2006-02-15 22:16:11'), - (8858,328,1,5450,'4.99','2005-07-09 22:13:25','2006-02-15 22:16:12'), - (8859,328,1,8017,'1.99','2005-07-28 15:35:41','2006-02-15 22:16:12'), - (8860,328,1,8577,'6.99','2005-07-29 11:56:30','2006-02-15 22:16:12'), - (8861,328,2,8780,'4.99','2005-07-29 20:19:45','2006-02-15 22:16:12'), - (8862,328,2,9557,'2.99','2005-07-31 02:14:01','2006-02-15 22:16:12'), - (8863,328,1,9835,'2.99','2005-07-31 12:07:35','2006-02-15 22:16:12'), - (8864,328,1,11174,'2.99','2005-08-02 10:32:11','2006-02-15 22:16:12'), - (8865,328,1,12175,'4.99','2005-08-18 01:10:17','2006-02-15 22:16:12'), - (8866,328,2,12825,'0.99','2005-08-19 01:23:58','2006-02-15 22:16:12'), - (8867,328,1,13609,'2.99','2005-08-20 06:11:51','2006-02-15 22:16:12'), - (8868,328,2,13681,'7.99','2005-08-20 08:47:37','2006-02-15 22:16:12'), - (8869,328,1,13907,'3.99','2005-08-20 16:17:27','2006-02-15 22:16:12'), - (8870,328,2,14307,'3.99','2005-08-21 07:34:52','2006-02-15 22:16:12'), - (8871,328,1,14755,'3.99','2005-08-21 23:18:08','2006-02-15 22:16:12'), - (8872,328,2,14939,'2.99','2005-08-22 05:53:52','2006-02-15 22:16:12'), - (8873,328,1,15179,'4.99','2005-08-22 15:36:22','2006-02-15 22:16:12'), - (8874,328,1,15863,'0.99','2005-08-23 16:17:09','2006-02-15 22:16:12'), - (8875,329,1,1183,'2.99','2005-06-15 00:49:19','2006-02-15 22:16:12'), - (8876,329,1,2010,'5.99','2005-06-17 11:54:15','2006-02-15 22:16:12'), - (8877,329,2,2024,'0.99','2005-06-17 13:00:51','2006-02-15 22:16:12'), - (8878,329,1,2151,'0.99','2005-06-17 22:52:37','2006-02-15 22:16:12'), - (8879,329,1,2303,'2.99','2005-06-18 08:27:59','2006-02-15 22:16:12'), - (8880,329,2,2702,'2.99','2005-06-19 13:35:56','2006-02-15 22:16:12'), - (8881,329,1,3052,'5.99','2005-06-20 13:09:19','2006-02-15 22:16:13'), - (8882,329,2,3053,'0.99','2005-06-20 13:10:30','2006-02-15 22:16:13'), - (8883,329,2,3268,'4.99','2005-06-21 04:55:49','2006-02-15 22:16:13'), - (8884,329,2,3976,'2.99','2005-07-06 23:00:20','2006-02-15 22:16:13'), - (8885,329,2,4076,'4.99','2005-07-07 04:52:15','2006-02-15 22:16:13'), - (8886,329,1,4415,'4.99','2005-07-07 22:01:43','2006-02-15 22:16:13'), - (8887,329,1,4465,'1.99','2005-07-08 00:07:45','2006-02-15 22:16:13'), - (8888,329,2,4674,'2.99','2005-07-08 10:19:28','2006-02-15 22:16:13'), - (8889,329,1,7980,'4.99','2005-07-28 14:16:49','2006-02-15 22:16:13'), - (8890,329,2,8172,'7.99','2005-07-28 21:34:36','2006-02-15 22:16:13'), - (8891,329,1,8460,'6.99','2005-07-29 08:08:03','2006-02-15 22:16:13'), - (8892,329,2,8941,'0.99','2005-07-30 02:59:21','2006-02-15 22:16:13'), - (8893,329,2,9024,'4.99','2005-07-30 05:44:42','2006-02-15 22:16:13'), - (8894,329,2,9219,'0.99','2005-07-30 13:15:21','2006-02-15 22:16:13'), - (8895,329,1,9381,'0.99','2005-07-30 19:23:04','2006-02-15 22:16:13'), - (8896,329,1,9827,'6.99','2005-07-31 11:56:55','2006-02-15 22:16:13'), - (8897,329,1,10473,'7.99','2005-08-01 09:56:24','2006-02-15 22:16:13'), - (8898,329,2,10490,'0.99','2005-08-01 10:37:11','2006-02-15 22:16:13'), - (8899,329,1,11130,'2.99','2005-08-02 09:08:59','2006-02-15 22:16:13'), - (8900,329,2,11169,'3.99','2005-08-02 10:19:42','2006-02-15 22:16:13'), - (8901,329,2,11697,'0.99','2005-08-17 07:09:19','2006-02-15 22:16:13'), - (8902,329,1,12659,'6.99','2005-08-18 19:05:49','2006-02-15 22:16:13'), - (8903,329,1,13627,'8.99','2005-08-20 06:59:00','2006-02-15 22:16:13'), - (8904,329,1,14900,'4.99','2005-08-22 04:27:48','2006-02-15 22:16:13'), - (8905,329,2,15011,'4.99','2005-08-22 08:31:07','2006-02-15 22:16:14'), - (8906,329,1,15308,'2.99','2005-08-22 19:54:31','2006-02-15 22:16:14'), - (8907,330,1,704,'3.99','2005-05-29 02:44:43','2006-02-15 22:16:14'), - (8908,330,2,967,'7.99','2005-05-30 19:12:06','2006-02-15 22:16:14'), - (8909,330,1,1219,'6.99','2005-06-15 03:25:59','2006-02-15 22:16:14'), - (8910,330,2,1511,'5.99','2005-06-15 22:45:06','2006-02-15 22:16:14'), - (8911,330,2,2885,'0.99','2005-06-20 01:33:42','2006-02-15 22:16:14'), - (8912,330,1,2936,'4.99','2005-06-20 05:09:27','2006-02-15 22:16:14'), - (8913,330,2,3061,'2.99','2005-06-20 13:48:21','2006-02-15 22:16:14'), - (8914,330,2,3603,'4.99','2005-07-06 05:25:03','2006-02-15 22:16:14'), - (8915,330,2,3659,'2.99','2005-07-06 08:03:14','2006-02-15 22:16:14'), - (8916,330,2,3760,'2.99','2005-07-06 12:49:28','2006-02-15 22:16:14'), - (8917,330,1,4124,'1.99','2005-07-07 07:19:54','2006-02-15 22:16:14'), - (8918,330,2,5149,'2.99','2005-07-09 08:28:23','2006-02-15 22:16:14'), - (8919,330,1,5750,'5.99','2005-07-10 12:20:41','2006-02-15 22:16:14'), - (8920,330,1,6656,'0.99','2005-07-12 11:09:47','2006-02-15 22:16:14'), - (8921,330,2,6678,'2.99','2005-07-12 11:58:36','2006-02-15 22:16:14'), - (8922,330,1,6719,'2.99','2005-07-12 13:40:37','2006-02-15 22:16:14'), - (8923,330,2,7894,'2.99','2005-07-28 10:53:58','2006-02-15 22:16:14'), - (8924,330,1,8680,'4.99','2005-07-29 16:08:03','2006-02-15 22:16:14'), - (8925,330,2,10100,'4.99','2005-07-31 20:47:18','2006-02-15 22:16:14'), - (8926,330,2,11259,'3.99','2005-08-02 13:46:30','2006-02-15 22:16:14'), - (8927,330,1,12062,'2.99','2005-08-17 21:24:47','2006-02-15 22:16:14'), - (8928,330,1,12394,'2.99','2005-08-18 09:05:15','2006-02-15 22:16:15'), - (8929,330,1,12740,'4.99','2005-08-18 22:17:04','2006-02-15 22:16:15'), - (8930,330,1,12867,'0.99','2005-08-19 02:40:11','2006-02-15 22:16:15'), - (8931,330,2,11709,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:15'), - (8932,331,2,87,'0.99','2005-05-25 13:52:43','2006-02-15 22:16:15'), - (8933,331,1,996,'2.99','2005-05-31 00:06:20','2006-02-15 22:16:15'), - (8934,331,1,1415,'2.99','2005-06-15 17:31:57','2006-02-15 22:16:15'), - (8935,331,2,2528,'6.99','2005-06-19 01:14:12','2006-02-15 22:16:15'), - (8936,331,1,2587,'2.99','2005-06-19 05:06:14','2006-02-15 22:16:15'), - (8937,331,1,3505,'4.99','2005-07-06 00:19:32','2006-02-15 22:16:15'), - (8938,331,1,3613,'4.99','2005-07-06 05:45:53','2006-02-15 22:16:15'), - (8939,331,2,3871,'8.99','2005-07-06 17:58:51','2006-02-15 22:16:15'), - (8940,331,1,4051,'4.99','2005-07-07 03:37:28','2006-02-15 22:16:15'), - (8941,331,2,4063,'5.99','2005-07-07 04:23:57','2006-02-15 22:16:15'), - (8942,331,1,4326,'10.99','2005-07-07 18:01:22','2006-02-15 22:16:15'), - (8943,331,1,5152,'2.99','2005-07-09 08:34:44','2006-02-15 22:16:15'), - (8944,331,1,5885,'1.99','2005-07-10 19:33:50','2006-02-15 22:16:15'), - (8945,331,1,5947,'5.99','2005-07-10 23:07:42','2006-02-15 22:16:15'), - (8946,331,1,8231,'0.99','2005-07-29 00:14:37','2006-02-15 22:16:15'), - (8947,331,2,8995,'4.99','2005-07-30 04:53:11','2006-02-15 22:16:15'), - (8948,331,1,9401,'5.99','2005-07-30 20:18:19','2006-02-15 22:16:15'), - (8949,331,2,10188,'6.99','2005-08-01 00:19:41','2006-02-15 22:16:16'), - (8950,331,1,11052,'5.99','2005-08-02 06:26:19','2006-02-15 22:16:16'), - (8951,331,1,11362,'2.99','2005-08-02 17:47:25','2006-02-15 22:16:16'), - (8952,331,2,12533,'4.99','2005-08-18 14:01:40','2006-02-15 22:16:16'), - (8953,331,1,13795,'0.99','2005-08-20 12:32:09','2006-02-15 22:16:16'), - (8954,331,1,14256,'7.99','2005-08-21 05:52:27','2006-02-15 22:16:16'), - (8955,331,1,14628,'1.99','2005-08-21 18:37:24','2006-02-15 22:16:16'), - (8956,331,1,15339,'2.99','2005-08-22 20:52:12','2006-02-15 22:16:16'), - (8957,331,2,15447,'3.99','2005-08-23 00:53:57','2006-02-15 22:16:16'), - (8958,331,1,15521,'2.99','2005-08-23 03:30:51','2006-02-15 22:16:16'), - (8959,332,2,600,'3.99','2005-05-28 14:08:19','2006-02-15 22:16:16'), - (8960,332,1,1000,'6.99','2005-05-31 00:25:56','2006-02-15 22:16:16'), - (8961,332,1,4100,'6.99','2005-07-07 06:20:52','2006-02-15 22:16:16'), - (8962,332,1,4302,'6.99','2005-07-07 16:47:53','2006-02-15 22:16:16'), - (8963,332,2,5116,'2.99','2005-07-09 07:10:12','2006-02-15 22:16:16'), - (8964,332,1,5277,'1.99','2005-07-09 14:40:42','2006-02-15 22:16:16'), - (8965,332,2,5381,'2.99','2005-07-09 19:11:11','2006-02-15 22:16:16'), - (8966,332,2,5388,'0.99','2005-07-09 19:25:25','2006-02-15 22:16:16'), - (8967,332,1,5440,'0.99','2005-07-09 21:45:17','2006-02-15 22:16:16'), - (8968,332,2,7049,'7.99','2005-07-27 03:32:41','2006-02-15 22:16:16'), - (8969,332,2,7418,'2.99','2005-07-27 16:59:09','2006-02-15 22:16:16'), - (8970,332,2,7577,'8.99','2005-07-27 22:56:07','2006-02-15 22:16:16'), - (8971,332,2,7578,'4.99','2005-07-27 22:58:17','2006-02-15 22:16:17'), - (8972,332,2,7934,'8.99','2005-07-28 12:33:10','2006-02-15 22:16:17'), - (8973,332,2,8173,'6.99','2005-07-28 21:35:44','2006-02-15 22:16:17'), - (8974,332,1,9324,'1.99','2005-07-30 17:28:52','2006-02-15 22:16:17'), - (8975,332,1,9388,'5.99','2005-07-30 19:27:22','2006-02-15 22:16:17'), - (8976,332,1,9921,'0.99','2005-07-31 14:59:21','2006-02-15 22:16:17'), - (8977,332,1,10026,'4.99','2005-07-31 18:31:51','2006-02-15 22:16:17'), - (8978,332,1,10307,'0.99','2005-08-01 04:21:54','2006-02-15 22:16:17'), - (8979,332,2,10439,'0.99','2005-08-01 08:54:26','2006-02-15 22:16:17'), - (8980,332,1,11229,'5.99','2005-08-02 12:56:37','2006-02-15 22:16:17'), - (8981,332,2,11564,'2.99','2005-08-17 01:27:49','2006-02-15 22:16:17'), - (8982,332,2,12318,'4.99','2005-08-18 06:21:56','2006-02-15 22:16:17'), - (8983,332,2,13673,'2.99','2005-08-20 08:27:30','2006-02-15 22:16:17'), - (8984,332,2,14783,'4.99','2005-08-22 00:21:57','2006-02-15 22:16:17'), - (8985,332,2,15194,'0.99','2005-08-22 16:07:34','2006-02-15 22:16:17'), - (8986,332,1,15210,'3.99','2005-08-22 16:37:36','2006-02-15 22:16:17'), - (8987,333,1,4,'4.99','2005-05-24 23:04:41','2006-02-15 22:16:17'), - (8988,333,1,1667,'2.99','2005-06-16 10:18:59','2006-02-15 22:16:17'), - (8989,333,1,2149,'6.99','2005-06-17 22:50:00','2006-02-15 22:16:17'), - (8990,333,1,2929,'1.99','2005-06-20 04:47:39','2006-02-15 22:16:17'), - (8991,333,1,3110,'2.99','2005-06-20 17:40:12','2006-02-15 22:16:17'), - (8992,333,2,5032,'0.99','2005-07-09 02:39:47','2006-02-15 22:16:17'), - (8993,333,1,5645,'1.99','2005-07-10 06:58:21','2006-02-15 22:16:17'), - (8994,333,2,5892,'4.99','2005-07-10 20:02:42','2006-02-15 22:16:17'), - (8995,333,2,6275,'0.99','2005-07-11 16:12:11','2006-02-15 22:16:18'), - (8996,333,2,6931,'4.99','2005-07-26 23:02:57','2006-02-15 22:16:18'), - (8997,333,2,6958,'0.99','2005-07-27 00:02:41','2006-02-15 22:16:18'), - (8998,333,2,7076,'6.99','2005-07-27 04:12:14','2006-02-15 22:16:18'), - (8999,333,2,7246,'0.99','2005-07-27 10:30:41','2006-02-15 22:16:18'), - (9000,333,1,8719,'4.99','2005-07-29 17:45:45','2006-02-15 22:16:18'), - (9001,333,2,9148,'4.99','2005-07-30 10:39:10','2006-02-15 22:16:18'), - (9002,333,2,9338,'10.99','2005-07-30 18:03:13','2006-02-15 22:16:18'), - (9003,333,2,10035,'4.99','2005-07-31 18:46:46','2006-02-15 22:16:18'), - (9004,333,1,10062,'2.99','2005-07-31 19:24:55','2006-02-15 22:16:18'), - (9005,333,2,10844,'4.99','2005-08-01 23:46:58','2006-02-15 22:16:18'), - (9006,333,1,12427,'6.99','2005-08-18 10:24:17','2006-02-15 22:16:18'), - (9007,333,2,12661,'0.99','2005-08-18 19:10:10','2006-02-15 22:16:18'), - (9008,333,1,13579,'3.99','2005-08-20 05:22:06','2006-02-15 22:16:18'), - (9009,333,2,13710,'4.99','2005-08-20 09:35:20','2006-02-15 22:16:18'), - (9010,333,1,14057,'4.99','2005-08-20 22:22:59','2006-02-15 22:16:18'), - (9011,333,1,14740,'2.99','2005-08-21 22:35:33','2006-02-15 22:16:18'), - (9012,333,2,15253,'2.99','2005-08-22 18:05:21','2006-02-15 22:16:18'), - (9013,333,1,15313,'4.99','2005-08-22 19:59:42','2006-02-15 22:16:18'), - (9014,334,1,13,'6.99','2005-05-25 00:22:55','2006-02-15 22:16:18'), - (9015,334,1,431,'8.99','2005-05-27 16:31:05','2006-02-15 22:16:18'), - (9016,334,2,1187,'4.99','2005-06-15 00:58:50','2006-02-15 22:16:18'), - (9017,334,1,1298,'4.99','2005-06-15 09:32:53','2006-02-15 22:16:19'), - (9018,334,2,2476,'0.99','2005-06-18 20:57:12','2006-02-15 22:16:19'), - (9019,334,1,3662,'4.99','2005-07-06 08:11:48','2006-02-15 22:16:19'), - (9020,334,1,4603,'6.99','2005-07-08 06:57:07','2006-02-15 22:16:19'), - (9021,334,2,5014,'4.99','2005-07-09 01:51:49','2006-02-15 22:16:19'), - (9022,334,2,5434,'0.99','2005-07-09 21:25:20','2006-02-15 22:16:19'), - (9023,334,2,5818,'5.99','2005-07-10 15:51:12','2006-02-15 22:16:19'), - (9024,334,1,5845,'4.99','2005-07-10 17:23:14','2006-02-15 22:16:19'), - (9025,334,2,6641,'5.99','2005-07-12 10:33:14','2006-02-15 22:16:19'), - (9026,334,2,6749,'4.99','2005-07-12 14:43:05','2006-02-15 22:16:19'), - (9027,334,1,6987,'2.99','2005-07-27 00:59:50','2006-02-15 22:16:19'), - (9028,334,1,8977,'7.99','2005-07-30 04:14:07','2006-02-15 22:16:19'), - (9029,334,1,9633,'2.99','2005-07-31 05:04:08','2006-02-15 22:16:19'), - (9030,334,1,10207,'3.99','2005-08-01 00:53:01','2006-02-15 22:16:19'), - (9031,334,1,10408,'4.99','2005-08-01 07:42:10','2006-02-15 22:16:19'), - (9032,334,1,10492,'2.99','2005-08-01 10:42:28','2006-02-15 22:16:19'), - (9033,334,1,10879,'1.99','2005-08-02 00:33:20','2006-02-15 22:16:19'), - (9034,334,2,10997,'7.99','2005-08-02 04:49:02','2006-02-15 22:16:19'), - (9035,334,2,12677,'4.99','2005-08-18 19:36:05','2006-02-15 22:16:19'), - (9036,334,2,13325,'4.99','2005-08-19 19:52:02','2006-02-15 22:16:19'), - (9037,334,1,13876,'2.99','2005-08-20 15:15:28','2006-02-15 22:16:19'), - (9038,334,1,14645,'0.99','2005-08-21 19:12:47','2006-02-15 22:16:19'), - (9039,334,1,14984,'7.99','2005-08-22 07:35:31','2006-02-15 22:16:19'), - (9040,334,2,15548,'0.99','2005-08-23 04:26:20','2006-02-15 22:16:20'), - (9041,334,2,15656,'4.99','2005-08-23 08:38:58','2006-02-15 22:16:20'), - (9042,334,1,15669,'3.99','2005-08-23 09:06:17','2006-02-15 22:16:20'), - (9043,334,1,14219,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:20'), - (9044,335,1,3329,'4.99','2005-06-21 09:20:31','2006-02-15 22:16:20'), - (9045,335,1,3607,'0.99','2005-07-06 05:30:09','2006-02-15 22:16:20'), - (9046,335,2,4016,'0.99','2005-07-07 01:05:50','2006-02-15 22:16:20'), - (9047,335,2,4032,'2.99','2005-07-07 02:34:13','2006-02-15 22:16:20'), - (9048,335,1,4279,'4.99','2005-07-07 15:01:53','2006-02-15 22:16:20'), - (9049,335,1,4387,'8.99','2005-07-07 20:56:47','2006-02-15 22:16:20'), - (9050,335,1,5024,'4.99','2005-07-09 02:25:12','2006-02-15 22:16:20'), - (9051,335,1,5252,'0.99','2005-07-09 13:40:44','2006-02-15 22:16:20'), - (9052,335,2,5728,'2.99','2005-07-10 11:26:14','2006-02-15 22:16:20'), - (9053,335,1,6624,'7.99','2005-07-12 09:05:50','2006-02-15 22:16:20'), - (9054,335,1,6906,'0.99','2005-07-12 22:03:02','2006-02-15 22:16:20'), - (9055,335,2,8634,'3.99','2005-07-29 14:19:57','2006-02-15 22:16:20'), - (9056,335,1,8855,'2.99','2005-07-29 23:40:10','2006-02-15 22:16:20'), - (9057,335,1,9125,'5.99','2005-07-30 09:43:39','2006-02-15 22:16:20'), - (9058,335,2,9361,'4.99','2005-07-30 18:43:49','2006-02-15 22:16:20'), - (9059,335,1,9428,'0.99','2005-07-30 21:18:37','2006-02-15 22:16:20'), - (9060,335,2,10606,'4.99','2005-08-01 14:39:15','2006-02-15 22:16:21'), - (9061,335,2,13267,'0.99','2005-08-19 17:31:36','2006-02-15 22:16:21'), - (9062,335,1,13622,'1.99','2005-08-20 06:45:32','2006-02-15 22:16:21'), - (9063,335,1,14014,'2.99','2005-08-20 20:47:09','2006-02-15 22:16:21'), - (9064,335,2,15005,'4.99','2005-08-22 08:15:44','2006-02-15 22:16:21'), - (9065,335,2,15101,'0.99','2005-08-22 11:56:02','2006-02-15 22:16:21'), - (9066,335,2,11541,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:21'), - (9067,336,1,1478,'2.99','2005-06-15 21:12:13','2006-02-15 22:16:21'), - (9068,336,2,2212,'2.99','2005-06-18 02:36:10','2006-02-15 22:16:21'), - (9069,336,2,2475,'2.99','2005-06-18 20:52:46','2006-02-15 22:16:21'), - (9070,336,1,2575,'2.99','2005-06-19 04:32:52','2006-02-15 22:16:21'), - (9071,336,2,2719,'4.99','2005-06-19 14:50:19','2006-02-15 22:16:21'), - (9072,336,1,2954,'2.99','2005-06-20 06:45:00','2006-02-15 22:16:21'), - (9073,336,2,3204,'4.99','2005-06-21 00:37:50','2006-02-15 22:16:21'), - (9074,336,2,3349,'0.99','2005-06-21 11:17:35','2006-02-15 22:16:21'), - (9075,336,2,4323,'5.99','2005-07-07 17:55:53','2006-02-15 22:16:21'), - (9076,336,1,4595,'2.99','2005-07-08 06:40:25','2006-02-15 22:16:21'), - (9077,336,2,5649,'2.99','2005-07-10 07:15:07','2006-02-15 22:16:21'), - (9078,336,2,5667,'0.99','2005-07-10 08:11:03','2006-02-15 22:16:21'), - (9079,336,2,6263,'4.99','2005-07-11 15:33:50','2006-02-15 22:16:22'), - (9080,336,2,6382,'6.99','2005-07-11 21:58:53','2006-02-15 22:16:22'), - (9081,336,2,8275,'4.99','2005-07-29 01:35:47','2006-02-15 22:16:22'), - (9082,336,1,8407,'6.99','2005-07-29 06:37:02','2006-02-15 22:16:22'), - (9083,336,2,8607,'4.99','2005-07-29 13:18:00','2006-02-15 22:16:22'), - (9084,336,2,8951,'8.99','2005-07-30 03:18:24','2006-02-15 22:16:22'), - (9085,336,2,9306,'0.99','2005-07-30 16:47:17','2006-02-15 22:16:22'), - (9086,336,1,10055,'0.99','2005-07-31 19:15:58','2006-02-15 22:16:22'), - (9087,336,2,11743,'2.99','2005-08-17 08:49:05','2006-02-15 22:16:22'), - (9088,336,1,12323,'8.99','2005-08-18 06:36:22','2006-02-15 22:16:22'), - (9089,336,2,12794,'0.99','2005-08-19 00:20:37','2006-02-15 22:16:22'), - (9090,336,2,12926,'3.99','2005-08-19 05:00:16','2006-02-15 22:16:22'), - (9091,336,2,13066,'0.99','2005-08-19 09:50:39','2006-02-15 22:16:22'), - (9092,336,2,13689,'4.99','2005-08-20 09:04:30','2006-02-15 22:16:22'), - (9093,336,1,14295,'2.99','2005-08-21 07:09:27','2006-02-15 22:16:22'), - (9094,336,1,15073,'10.99','2005-08-22 11:01:15','2006-02-15 22:16:22'), - (9095,336,2,15848,'2.99','2005-08-23 15:41:12','2006-02-15 22:16:22'), - (9096,336,1,13022,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:22'), - (9097,337,1,374,'6.99','2005-05-27 08:26:30','2006-02-15 22:16:23'), - (9098,337,1,572,'4.99','2005-05-28 10:30:13','2006-02-15 22:16:23'), - (9099,337,1,839,'8.99','2005-05-30 00:28:12','2006-02-15 22:16:23'), - (9100,337,2,1969,'4.99','2005-06-17 09:22:22','2006-02-15 22:16:23'), - (9101,337,1,2014,'5.99','2005-06-17 12:03:28','2006-02-15 22:16:23'), - (9102,337,1,3626,'5.99','2005-07-06 06:15:35','2006-02-15 22:16:23'), - (9103,337,1,4091,'6.99','2005-07-07 05:53:38','2006-02-15 22:16:23'), - (9104,337,2,4093,'4.99','2005-07-07 05:54:50','2006-02-15 22:16:23'), - (9105,337,2,4855,'4.99','2005-07-08 18:45:50','2006-02-15 22:16:23'), - (9106,337,1,5050,'2.99','2005-07-09 03:54:38','2006-02-15 22:16:23'), - (9107,337,1,6212,'0.99','2005-07-11 12:40:48','2006-02-15 22:16:23'), - (9108,337,2,6305,'7.99','2005-07-11 18:02:25','2006-02-15 22:16:23'), - (9109,337,1,6620,'2.99','2005-07-12 08:51:03','2006-02-15 22:16:23'), - (9110,337,1,7410,'4.99','2005-07-27 16:41:59','2006-02-15 22:16:23'), - (9111,337,1,8516,'4.99','2005-07-29 10:00:03','2006-02-15 22:16:23'), - (9112,337,2,8919,'8.99','2005-07-30 01:57:03','2006-02-15 22:16:24'), - (9113,337,2,9051,'5.99','2005-07-30 07:05:54','2006-02-15 22:16:24'), - (9114,337,1,10664,'0.99','2005-08-01 16:51:15','2006-02-15 22:16:24'), - (9115,337,2,10765,'0.99','2005-08-01 20:34:51','2006-02-15 22:16:24'), - (9116,337,2,11252,'2.99','2005-08-02 13:42:13','2006-02-15 22:16:24'), - (9117,337,1,11734,'3.99','2005-08-17 08:34:22','2006-02-15 22:16:24'), - (9118,337,1,12369,'6.99','2005-08-18 07:57:43','2006-02-15 22:16:24'), - (9119,337,2,13305,'6.99','2005-08-19 18:57:05','2006-02-15 22:16:24'), - (9120,337,1,13678,'4.99','2005-08-20 08:38:24','2006-02-15 22:16:24'), - (9121,337,2,13892,'3.99','2005-08-20 15:50:17','2006-02-15 22:16:24'), - (9122,337,2,14118,'5.99','2005-08-21 01:13:37','2006-02-15 22:16:24'), - (9123,337,2,15241,'4.99','2005-08-22 17:47:40','2006-02-15 22:16:24'), - (9124,337,1,15292,'4.99','2005-08-22 19:28:56','2006-02-15 22:16:24'), - (9125,337,2,11847,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:24'), - (9126,338,1,675,'0.99','2005-05-28 22:22:44','2006-02-15 22:16:24'), - (9127,338,2,1510,'4.99','2005-06-15 22:39:34','2006-02-15 22:16:24'), - (9128,338,1,1807,'5.99','2005-06-16 20:58:59','2006-02-15 22:16:24'), - (9129,338,2,1952,'4.99','2005-06-17 08:33:02','2006-02-15 22:16:24'), - (9130,338,1,2148,'6.99','2005-06-17 22:44:35','2006-02-15 22:16:24'), - (9131,338,1,2179,'0.99','2005-06-18 00:41:36','2006-02-15 22:16:24'), - (9132,338,1,2495,'4.99','2005-06-18 22:15:42','2006-02-15 22:16:24'), - (9133,338,1,3458,'5.99','2005-06-21 21:42:49','2006-02-15 22:16:25'), - (9134,338,1,3516,'0.99','2005-07-06 00:50:30','2006-02-15 22:16:25'), - (9135,338,2,3772,'2.99','2005-07-06 13:22:53','2006-02-15 22:16:25'), - (9136,338,2,4104,'5.99','2005-07-07 06:25:41','2006-02-15 22:16:25'), - (9137,338,2,4779,'4.99','2005-07-08 15:53:41','2006-02-15 22:16:25'), - (9138,338,1,5309,'4.99','2005-07-09 16:00:16','2006-02-15 22:16:25'), - (9139,338,1,6236,'2.99','2005-07-11 14:18:17','2006-02-15 22:16:25'), - (9140,338,1,6360,'4.99','2005-07-11 21:07:40','2006-02-15 22:16:25'), - (9141,338,2,7584,'3.99','2005-07-27 23:15:46','2006-02-15 22:16:25'), - (9142,338,1,8766,'0.99','2005-07-29 19:41:04','2006-02-15 22:16:25'), - (9143,338,1,9485,'7.99','2005-07-30 23:32:40','2006-02-15 22:16:25'), - (9144,338,2,10791,'2.99','2005-08-01 21:41:52','2006-02-15 22:16:25'), - (9145,338,1,10897,'0.99','2005-08-02 01:23:42','2006-02-15 22:16:25'), - (9146,338,2,11064,'4.99','2005-08-02 06:55:17','2006-02-15 22:16:25'), - (9147,338,2,11671,'4.99','2005-08-17 05:50:21','2006-02-15 22:16:25'), - (9148,338,2,11719,'5.99','2005-08-17 07:46:05','2006-02-15 22:16:25'), - (9149,338,1,12167,'2.99','2005-08-18 01:00:02','2006-02-15 22:16:25'), - (9150,338,1,13284,'3.99','2005-08-19 18:12:31','2006-02-15 22:16:25'), - (9151,338,1,14619,'2.99','2005-08-21 18:10:03','2006-02-15 22:16:26'), - (9152,338,2,15105,'0.99','2005-08-22 12:01:33','2006-02-15 22:16:26'), - (9153,338,2,15173,'6.99','2005-08-22 15:26:29','2006-02-15 22:16:26'), - (9154,339,1,876,'5.99','2005-05-30 05:41:22','2006-02-15 22:16:26'), - (9155,339,2,1432,'3.99','2005-06-15 18:27:24','2006-02-15 22:16:26'), - (9156,339,1,1536,'4.99','2005-06-16 00:52:22','2006-02-15 22:16:26'), - (9157,339,2,1629,'4.99','2005-06-16 07:53:47','2006-02-15 22:16:26'), - (9158,339,1,3146,'6.99','2005-06-20 20:21:48','2006-02-15 22:16:26'), - (9159,339,1,3335,'4.99','2005-06-21 10:09:08','2006-02-15 22:16:26'), - (9160,339,2,3536,'2.99','2005-07-06 01:36:11','2006-02-15 22:16:26'), - (9161,339,1,4243,'4.99','2005-07-07 13:39:58','2006-02-15 22:16:26'), - (9162,339,1,4467,'0.99','2005-07-08 00:13:52','2006-02-15 22:16:26'), - (9163,339,2,4967,'3.99','2005-07-08 23:48:03','2006-02-15 22:16:26'), - (9164,339,1,5720,'3.99','2005-07-10 11:09:12','2006-02-15 22:16:26'), - (9165,339,1,6072,'6.99','2005-07-11 04:52:40','2006-02-15 22:16:26'), - (9166,339,1,6425,'0.99','2005-07-11 23:54:52','2006-02-15 22:16:26'), - (9167,339,2,6682,'7.99','2005-07-12 12:12:43','2006-02-15 22:16:26'), - (9168,339,2,7244,'2.99','2005-07-27 10:27:33','2006-02-15 22:16:26'), - (9169,339,2,7973,'4.99','2005-07-28 14:10:06','2006-02-15 22:16:27'), - (9170,339,1,8968,'0.99','2005-07-30 03:57:32','2006-02-15 22:16:27'), - (9171,339,2,9208,'5.99','2005-07-30 12:54:03','2006-02-15 22:16:27'), - (9172,339,1,9663,'4.99','2005-07-31 06:10:48','2006-02-15 22:16:27'), - (9173,339,2,10338,'3.99','2005-08-01 05:03:03','2006-02-15 22:16:27'), - (9174,339,2,11171,'4.99','2005-08-02 10:23:41','2006-02-15 22:16:27'), - (9175,339,1,11550,'2.99','2005-08-17 01:02:06','2006-02-15 22:16:27'), - (9176,339,2,11582,'3.99','2005-08-17 02:03:49','2006-02-15 22:16:27'), - (9177,339,2,11699,'5.99','2005-08-17 07:11:58','2006-02-15 22:16:27'), - (9178,339,1,12631,'0.99','2005-08-18 17:52:51','2006-02-15 22:16:27'), - (9179,339,1,13199,'3.99','2005-08-19 14:53:22','2006-02-15 22:16:27'), - (9180,339,1,13575,'5.99','2005-08-20 05:15:20','2006-02-15 22:16:27'), - (9181,339,1,13985,'0.99','2005-08-20 19:13:06','2006-02-15 22:16:27'), - (9182,339,1,14636,'4.99','2005-08-21 18:59:17','2006-02-15 22:16:27'), - (9183,339,2,14758,'3.99','2005-08-21 23:24:52','2006-02-15 22:16:27'), - (9184,340,2,1205,'4.99','2005-06-15 02:25:56','2006-02-15 22:16:27'), - (9185,340,1,1697,'3.99','2005-06-16 12:55:20','2006-02-15 22:16:27'), - (9186,340,1,2177,'5.99','2005-06-18 00:34:45','2006-02-15 22:16:27'), - (9187,340,2,2183,'4.99','2005-06-18 01:06:01','2006-02-15 22:16:28'), - (9188,340,2,2607,'5.99','2005-06-19 06:55:01','2006-02-15 22:16:28'), - (9189,340,1,2653,'5.99','2005-06-19 10:36:53','2006-02-15 22:16:28'), - (9190,340,1,3264,'0.99','2005-06-21 04:19:03','2006-02-15 22:16:28'), - (9191,340,1,3455,'2.99','2005-06-21 21:17:51','2006-02-15 22:16:28'), - (9192,340,2,4475,'2.99','2005-07-08 00:27:30','2006-02-15 22:16:28'), - (9193,340,1,4742,'0.99','2005-07-08 13:35:23','2006-02-15 22:16:28'), - (9194,340,2,6381,'4.99','2005-07-11 21:58:48','2006-02-15 22:16:28'), - (9195,340,2,7617,'2.99','2005-07-28 00:18:40','2006-02-15 22:16:28'), - (9196,340,2,8274,'4.99','2005-07-29 01:34:32','2006-02-15 22:16:28'), - (9197,340,1,8541,'0.99','2005-07-29 10:55:01','2006-02-15 22:16:28'), - (9198,340,2,8551,'4.99','2005-07-29 11:13:11','2006-02-15 22:16:28'), - (9199,340,1,8606,'4.99','2005-07-29 13:14:24','2006-02-15 22:16:28'), - (9200,340,1,9834,'2.99','2005-07-31 12:05:42','2006-02-15 22:16:28'), - (9201,340,1,10292,'2.99','2005-08-01 03:42:40','2006-02-15 22:16:28'), - (9202,340,1,10667,'8.99','2005-08-01 16:58:22','2006-02-15 22:16:28'), - (9203,340,2,10674,'3.99','2005-08-01 17:11:52','2006-02-15 22:16:28'), - (9204,340,1,10809,'0.99','2005-08-01 22:39:27','2006-02-15 22:16:28'), - (9205,340,1,10995,'0.99','2005-08-02 04:48:00','2006-02-15 22:16:28'), - (9206,340,2,12598,'4.99','2005-08-18 16:34:03','2006-02-15 22:16:29'), - (9207,340,2,12908,'1.99','2005-08-19 04:19:05','2006-02-15 22:16:29'), - (9208,340,2,12940,'2.99','2005-08-19 05:38:29','2006-02-15 22:16:29'), - (9209,340,1,13425,'2.99','2005-08-19 23:11:44','2006-02-15 22:16:29'), - (9210,340,1,14457,'4.99','2005-08-21 12:47:38','2006-02-15 22:16:29'), - (9211,340,2,14718,'0.99','2005-08-21 21:39:25','2006-02-15 22:16:29'), - (9212,340,1,14895,'2.99','2005-08-22 04:19:23','2006-02-15 22:16:29'), - (9213,340,2,15306,'2.99','2005-08-22 19:46:36','2006-02-15 22:16:29'), - (9214,340,1,15378,'9.99','2005-08-22 22:25:17','2006-02-15 22:16:29'), - (9215,341,1,1318,'2.99','2005-06-15 10:34:26','2006-02-15 22:16:29'), - (9216,341,2,1520,'7.99','2005-06-15 23:57:20','2006-02-15 22:16:29'), - (9217,341,1,1778,'1.99','2005-06-16 18:54:48','2006-02-15 22:16:29'), - (9218,341,1,1849,'7.99','2005-06-17 00:13:19','2006-02-15 22:16:29'), - (9219,341,2,2829,'2.99','2005-06-19 21:11:30','2006-02-15 22:16:29'), - (9220,341,2,3130,'7.99','2005-06-20 19:03:22','2006-02-15 22:16:29'), - (9221,341,1,3382,'5.99','2005-06-21 14:05:23','2006-02-15 22:16:29'), - (9222,341,2,3938,'4.99','2005-07-06 21:15:45','2006-02-15 22:16:29'), - (9223,341,1,4624,'2.99','2005-07-08 08:12:17','2006-02-15 22:16:29'), - (9224,341,2,5487,'4.99','2005-07-10 00:01:50','2006-02-15 22:16:30'), - (9225,341,2,5931,'0.99','2005-07-10 22:04:19','2006-02-15 22:16:30'), - (9226,341,2,7473,'2.99','2005-07-27 19:05:40','2006-02-15 22:16:30'), - (9227,341,1,8661,'2.99','2005-07-29 15:28:24','2006-02-15 22:16:30'), - (9228,341,1,8728,'9.99','2005-07-29 18:12:49','2006-02-15 22:16:30'), - (9229,341,2,10605,'0.99','2005-08-01 14:36:26','2006-02-15 22:16:30'), - (9230,341,1,11305,'6.99','2005-08-02 15:44:55','2006-02-15 22:16:30'), - (9231,341,1,11723,'2.99','2005-08-17 07:56:22','2006-02-15 22:16:30'), - (9232,341,2,13059,'0.99','2005-08-19 09:42:01','2006-02-15 22:16:30'), - (9233,341,2,13074,'8.99','2005-08-19 10:06:53','2006-02-15 22:16:30'), - (9234,341,2,13806,'4.99','2005-08-20 12:53:46','2006-02-15 22:16:30'), - (9235,341,2,14344,'4.99','2005-08-21 08:40:56','2006-02-15 22:16:30'), - (9236,341,2,15030,'0.99','2005-08-22 09:10:21','2006-02-15 22:16:30'), - (9237,341,2,15938,'6.99','2005-08-23 18:43:31','2006-02-15 22:16:30'), - (9238,342,2,2190,'5.99','2005-06-18 01:29:51','2006-02-15 22:16:30'), - (9239,342,1,2914,'5.99','2005-06-20 03:43:18','2006-02-15 22:16:30'), - (9240,342,1,3081,'2.99','2005-06-20 15:29:13','2006-02-15 22:16:30'), - (9241,342,1,5617,'0.99','2005-07-10 05:28:50','2006-02-15 22:16:30'), - (9242,342,2,6060,'4.99','2005-07-11 04:06:17','2006-02-15 22:16:31'), - (9243,342,2,6429,'8.99','2005-07-12 00:02:50','2006-02-15 22:16:31'), - (9244,342,1,6736,'2.99','2005-07-12 14:16:50','2006-02-15 22:16:31'), - (9245,342,2,6787,'7.99','2005-07-12 16:33:28','2006-02-15 22:16:31'), - (9246,342,2,6997,'0.99','2005-07-27 01:14:02','2006-02-15 22:16:31'), - (9247,342,2,7280,'2.99','2005-07-27 11:50:52','2006-02-15 22:16:31'), - (9248,342,1,9164,'2.99','2005-07-30 11:24:14','2006-02-15 22:16:31'), - (9249,342,1,9526,'0.99','2005-07-31 01:02:22','2006-02-15 22:16:31'), - (9250,342,2,9948,'5.99','2005-07-31 15:49:41','2006-02-15 22:16:31'), - (9251,342,1,9955,'0.99','2005-07-31 16:01:26','2006-02-15 22:16:32'), - (9252,342,2,9956,'4.99','2005-07-31 16:03:47','2006-02-15 22:16:32'), - (9253,342,1,10242,'4.99','2005-08-01 02:18:12','2006-02-15 22:16:32'), - (9254,342,2,11178,'2.99','2005-08-02 10:48:10','2006-02-15 22:16:32'), - (9255,342,2,11446,'0.99','2005-08-02 20:33:37','2006-02-15 22:16:32'), - (9256,342,1,11568,'0.99','2005-08-17 01:30:01','2006-02-15 22:16:32'), - (9257,342,1,12139,'6.99','2005-08-17 23:57:13','2006-02-15 22:16:32'), - (9258,342,1,12404,'4.99','2005-08-18 09:36:34','2006-02-15 22:16:32'), - (9259,342,1,12522,'2.99','2005-08-18 13:45:40','2006-02-15 22:16:32'), - (9260,342,2,12816,'4.99','2005-08-19 01:04:05','2006-02-15 22:16:32'), - (9261,342,2,13368,'4.99','2005-08-19 21:19:35','2006-02-15 22:16:32'), - (9262,342,2,13637,'4.99','2005-08-20 07:21:15','2006-02-15 22:16:32'), - (9263,342,1,13755,'2.99','2005-08-20 11:18:53','2006-02-15 22:16:32'), - (9264,342,2,13827,'4.99','2005-08-20 13:47:19','2006-02-15 22:16:32'), - (9265,342,2,14096,'2.99','2005-08-21 00:27:46','2006-02-15 22:16:32'), - (9266,342,2,14299,'0.99','2005-08-21 07:18:57','2006-02-15 22:16:32'), - (9267,342,2,14683,'8.99','2005-08-21 20:27:44','2006-02-15 22:16:32'), - (9268,342,1,15484,'4.99','2005-08-23 02:04:49','2006-02-15 22:16:32'), - (9269,342,1,15895,'3.99','2005-08-23 17:09:31','2006-02-15 22:16:32'), - (9270,343,2,102,'3.99','2005-05-25 17:22:10','2006-02-15 22:16:32'), - (9271,343,1,455,'3.99','2005-05-27 19:43:29','2006-02-15 22:16:32'), - (9272,343,2,1547,'4.99','2005-06-16 01:42:24','2006-02-15 22:16:33'), - (9273,343,1,1564,'6.99','2005-06-16 02:47:07','2006-02-15 22:16:33'), - (9274,343,2,1879,'0.99','2005-06-17 02:57:34','2006-02-15 22:16:33'), - (9275,343,2,1922,'0.99','2005-06-17 06:04:25','2006-02-15 22:16:33'), - (9276,343,2,2461,'6.99','2005-06-18 19:58:12','2006-02-15 22:16:33'), - (9277,343,1,2980,'8.99','2005-06-20 08:35:03','2006-02-15 22:16:33'), - (9278,343,1,3407,'0.99','2005-06-21 16:14:02','2006-02-15 22:16:33'), - (9279,343,1,3978,'5.99','2005-07-06 23:04:33','2006-02-15 22:16:33'), - (9280,343,1,4472,'7.99','2005-07-08 00:22:06','2006-02-15 22:16:33'), - (9281,343,2,5097,'4.99','2005-07-09 06:09:51','2006-02-15 22:16:33'), - (9282,343,1,5337,'3.99','2005-07-09 17:03:50','2006-02-15 22:16:33'), - (9283,343,1,7069,'6.99','2005-07-27 03:59:35','2006-02-15 22:16:33'), - (9284,343,2,8012,'5.99','2005-07-28 15:29:00','2006-02-15 22:16:33'), - (9285,343,2,8088,'9.99','2005-07-28 18:23:49','2006-02-15 22:16:33'), - (9286,343,2,9458,'5.99','2005-07-30 22:24:34','2006-02-15 22:16:33'), - (9287,343,2,9739,'2.99','2005-07-31 09:08:03','2006-02-15 22:16:33'), - (9288,343,1,10822,'0.99','2005-08-01 22:54:28','2006-02-15 22:16:33'), - (9289,343,1,11212,'0.99','2005-08-02 12:18:29','2006-02-15 22:16:33'), - (9290,343,2,11570,'2.99','2005-08-17 01:34:32','2006-02-15 22:16:33'), - (9291,343,2,13279,'4.99','2005-08-19 18:02:18','2006-02-15 22:16:33'), - (9292,343,2,13522,'3.99','2005-08-20 02:44:06','2006-02-15 22:16:33'), - (9293,343,2,13866,'0.99','2005-08-20 15:05:29','2006-02-15 22:16:33'), - (9294,343,2,15973,'5.99','2005-08-23 20:04:41','2006-02-15 22:16:34'), - (9295,344,2,157,'2.99','2005-05-26 01:25:21','2006-02-15 22:16:34'), - (9296,344,2,813,'5.99','2005-05-29 20:14:34','2006-02-15 22:16:34'), - (9297,344,1,1341,'3.99','2005-06-15 12:26:18','2006-02-15 22:16:34'), - (9298,344,2,1475,'4.99','2005-06-15 21:08:01','2006-02-15 22:16:34'), - (9299,344,1,1731,'0.99','2005-06-16 15:32:12','2006-02-15 22:16:34'), - (9300,344,2,4028,'5.99','2005-07-07 02:19:14','2006-02-15 22:16:34'), - (9301,344,2,4347,'3.99','2005-07-07 18:58:57','2006-02-15 22:16:34'), - (9302,344,2,6363,'5.99','2005-07-11 21:13:19','2006-02-15 22:16:34'), - (9303,344,2,7480,'4.99','2005-07-27 19:19:53','2006-02-15 22:16:34'), - (9304,344,2,8561,'2.99','2005-07-29 11:29:12','2006-02-15 22:16:34'), - (9305,344,2,9788,'4.99','2005-07-31 10:28:21','2006-02-15 22:16:34'), - (9306,344,2,11116,'5.99','2005-08-02 08:34:40','2006-02-15 22:16:34'), - (9307,344,2,12183,'5.99','2005-08-18 01:34:13','2006-02-15 22:16:34'), - (9308,344,2,13014,'4.99','2005-08-19 07:56:08','2006-02-15 22:16:34'), - (9309,344,1,13033,'3.99','2005-08-19 08:34:39','2006-02-15 22:16:34'), - (9310,344,1,14621,'0.99','2005-08-21 18:17:59','2006-02-15 22:16:34'), - (9311,344,2,14624,'0.99','2005-08-21 18:32:42','2006-02-15 22:16:34'), - (9312,344,1,15215,'2.99','2005-08-22 16:55:26','2006-02-15 22:16:34'), - (9313,345,1,206,'0.99','2005-05-26 08:01:54','2006-02-15 22:16:34'), - (9314,345,1,363,'0.99','2005-05-27 07:14:00','2006-02-15 22:16:34'), - (9315,345,2,1210,'0.99','2005-06-15 02:57:51','2006-02-15 22:16:34'), - (9316,345,1,1457,'4.99','2005-06-15 20:05:49','2006-02-15 22:16:34'), - (9317,345,2,1550,'0.99','2005-06-16 01:58:35','2006-02-15 22:16:35'), - (9318,345,2,2766,'4.99','2005-06-19 17:45:15','2006-02-15 22:16:35'), - (9319,345,2,4422,'2.99','2005-07-07 22:09:45','2006-02-15 22:16:35'), - (9320,345,1,4425,'2.99','2005-07-07 22:22:44','2006-02-15 22:16:35'), - (9321,345,2,4450,'4.99','2005-07-07 23:20:05','2006-02-15 22:16:35'), - (9322,345,2,5508,'3.99','2005-07-10 00:50:01','2006-02-15 22:16:35'), - (9323,345,1,6307,'7.99','2005-07-11 18:04:29','2006-02-15 22:16:35'), - (9324,345,1,7092,'6.99','2005-07-27 04:46:00','2006-02-15 22:16:35'), - (9325,345,2,8129,'2.99','2005-07-28 19:47:02','2006-02-15 22:16:35'), - (9326,345,2,8694,'8.99','2005-07-29 16:44:48','2006-02-15 22:16:35'), - (9327,345,1,9163,'4.99','2005-07-30 11:23:22','2006-02-15 22:16:35'), - (9328,345,2,9207,'2.99','2005-07-30 12:49:57','2006-02-15 22:16:35'), - (9329,345,2,10215,'8.99','2005-08-01 01:04:28','2006-02-15 22:16:35'), - (9330,345,2,10982,'4.99','2005-08-02 04:19:11','2006-02-15 22:16:35'), - (9331,345,1,11865,'2.99','2005-08-17 14:03:46','2006-02-15 22:16:35'), - (9332,345,1,12485,'4.99','2005-08-18 12:41:41','2006-02-15 22:16:35'), - (9333,345,2,12805,'4.99','2005-08-19 00:36:34','2006-02-15 22:16:35'), - (9334,345,1,14702,'10.99','2005-08-21 21:00:03','2006-02-15 22:16:35'), - (9335,345,1,15551,'4.99','2005-08-23 04:28:25','2006-02-15 22:16:35'), - (9336,346,1,65,'4.99','2005-05-25 09:32:03','2006-02-15 22:16:35'), - (9337,346,1,810,'4.99','2005-05-29 19:12:04','2006-02-15 22:16:35'), - (9338,346,1,1994,'5.99','2005-06-17 11:07:06','2006-02-15 22:16:35'), - (9339,346,2,3372,'2.99','2005-06-21 13:34:19','2006-02-15 22:16:36'), - (9340,346,1,3421,'2.99','2005-06-21 17:22:58','2006-02-15 22:16:36'), - (9341,346,2,4420,'4.99','2005-07-07 22:07:31','2006-02-15 22:16:36'), - (9342,346,1,4958,'8.99','2005-07-08 23:19:52','2006-02-15 22:16:36'), - (9343,346,1,5428,'4.99','2005-07-09 21:12:50','2006-02-15 22:16:36'), - (9344,346,2,5557,'4.99','2005-07-10 03:10:21','2006-02-15 22:16:36'), - (9345,346,2,6136,'4.99','2005-07-11 08:34:09','2006-02-15 22:16:36'), - (9346,346,2,6323,'2.99','2005-07-11 19:02:19','2006-02-15 22:16:36'), - (9347,346,2,6881,'8.99','2005-07-12 20:46:35','2006-02-15 22:16:36'), - (9348,346,2,7943,'6.99','2005-07-28 12:50:55','2006-02-15 22:16:36'), - (9349,346,2,8272,'5.99','2005-07-29 01:29:51','2006-02-15 22:16:36'), - (9350,346,1,8505,'6.99','2005-07-29 09:22:52','2006-02-15 22:16:36'), - (9351,346,2,8543,'0.99','2005-07-29 11:01:57','2006-02-15 22:16:36'), - (9352,346,2,8732,'8.99','2005-07-29 18:25:03','2006-02-15 22:16:36'), - (9353,346,2,9566,'4.99','2005-07-31 02:32:10','2006-02-15 22:16:36'), - (9354,346,1,9848,'4.99','2005-07-31 12:44:33','2006-02-15 22:16:36'), - (9355,346,1,9927,'2.99','2005-07-31 15:12:13','2006-02-15 22:16:36'), - (9356,346,1,10304,'5.99','2005-08-01 04:14:12','2006-02-15 22:16:36'), - (9357,346,2,10389,'3.99','2005-08-01 06:46:43','2006-02-15 22:16:36'), - (9358,346,2,10521,'0.99','2005-08-01 11:46:17','2006-02-15 22:16:36'), - (9359,346,2,11062,'4.99','2005-08-02 06:52:54','2006-02-15 22:16:36'), - (9360,346,1,11375,'4.99','2005-08-02 18:14:56','2006-02-15 22:16:36'), - (9361,346,2,11470,'2.99','2005-08-02 21:48:28','2006-02-15 22:16:37'), - (9362,346,1,14890,'5.99','2005-08-22 04:10:49','2006-02-15 22:16:37'), - (9363,346,2,15459,'2.99','2005-08-23 01:09:48','2006-02-15 22:16:37'), - (9364,346,1,15535,'0.99','2005-08-23 03:58:02','2006-02-15 22:16:37'), - (9365,346,1,15661,'8.99','2005-08-23 08:52:03','2006-02-15 22:16:37'), - (9366,346,2,15825,'5.99','2005-08-23 15:10:42','2006-02-15 22:16:37'), - (9367,346,1,15827,'0.99','2005-08-23 15:15:19','2006-02-15 22:16:37'), - (9368,347,2,1711,'8.99','2005-06-16 14:11:52','2006-02-15 22:16:37'), - (9369,347,2,2274,'0.99','2005-06-18 06:31:15','2006-02-15 22:16:37'), - (9370,347,1,3026,'4.99','2005-06-20 11:48:00','2006-02-15 22:16:37'), - (9371,347,1,3092,'8.99','2005-06-20 16:04:42','2006-02-15 22:16:37'), - (9372,347,1,3326,'7.99','2005-06-21 09:04:50','2006-02-15 22:16:37'), - (9373,347,2,3605,'0.99','2005-07-06 05:27:15','2006-02-15 22:16:37'), - (9374,347,2,3666,'4.99','2005-07-06 08:27:43','2006-02-15 22:16:37'), - (9375,347,1,4232,'5.99','2005-07-07 12:49:12','2006-02-15 22:16:37'), - (9376,347,1,4523,'6.99','2005-07-08 03:06:59','2006-02-15 22:16:37'), - (9377,347,2,5471,'0.99','2005-07-09 23:11:52','2006-02-15 22:16:37'), - (9378,347,1,5819,'2.99','2005-07-10 15:56:20','2006-02-15 22:16:37'), - (9379,347,2,6121,'1.99','2005-07-11 07:55:27','2006-02-15 22:16:37'), - (9380,347,1,7811,'0.99','2005-07-28 08:06:01','2006-02-15 22:16:37'), - (9381,347,2,8148,'4.99','2005-07-28 20:39:47','2006-02-15 22:16:37'), - (9382,347,2,8153,'4.99','2005-07-28 20:55:49','2006-02-15 22:16:37'), - (9383,347,2,8176,'4.99','2005-07-28 21:42:08','2006-02-15 22:16:37'), - (9384,347,2,8378,'4.99','2005-07-29 05:28:35','2006-02-15 22:16:38'), - (9385,347,2,8771,'2.99','2005-07-29 19:54:41','2006-02-15 22:16:38'), - (9386,347,1,9013,'4.99','2005-07-30 05:19:20','2006-02-15 22:16:38'), - (9387,347,1,9582,'4.99','2005-07-31 03:05:19','2006-02-15 22:16:38'), - (9388,347,1,9856,'3.99','2005-07-31 13:00:35','2006-02-15 22:16:38'), - (9389,347,1,9876,'2.99','2005-07-31 13:37:51','2006-02-15 22:16:38'), - (9390,347,2,11738,'8.99','2005-08-17 08:45:55','2006-02-15 22:16:38'), - (9391,347,1,12195,'2.99','2005-08-18 02:07:49','2006-02-15 22:16:38'), - (9392,347,2,12399,'10.99','2005-08-18 09:13:42','2006-02-15 22:16:38'), - (9393,347,2,13314,'5.99','2005-08-19 19:12:43','2006-02-15 22:16:38'), - (9394,347,2,14894,'4.99','2005-08-22 04:16:56','2006-02-15 22:16:38'), - (9395,347,2,14958,'2.99','2005-08-22 06:30:10','2006-02-15 22:16:38'), - (9396,347,2,15426,'2.99','2005-08-23 00:07:19','2006-02-15 22:16:38'), - (9397,347,2,15555,'4.99','2005-08-23 04:51:52','2006-02-15 22:16:38'), - (9398,348,2,153,'0.99','2005-05-26 00:47:47','2006-02-15 22:16:38'), - (9399,348,2,821,'0.99','2005-05-29 21:31:12','2006-02-15 22:16:38'), - (9400,348,1,1654,'2.99','2005-06-16 09:42:48','2006-02-15 22:16:38'), - (9401,348,1,2041,'8.99','2005-06-17 14:19:00','2006-02-15 22:16:38'), - (9402,348,2,2499,'0.99','2005-06-18 23:01:36','2006-02-15 22:16:38'), - (9403,348,2,3494,'4.99','2005-07-05 23:47:30','2006-02-15 22:16:38'), - (9404,348,2,3610,'4.99','2005-07-06 05:36:59','2006-02-15 22:16:38'), - (9405,348,2,4556,'9.99','2005-07-08 04:48:41','2006-02-15 22:16:38'), - (9406,348,2,4633,'0.99','2005-07-08 08:39:39','2006-02-15 22:16:39'), - (9407,348,1,4699,'0.99','2005-07-08 11:36:56','2006-02-15 22:16:39'), - (9408,348,1,4807,'8.99','2005-07-08 17:01:48','2006-02-15 22:16:39'), - (9409,348,1,5345,'4.99','2005-07-09 17:28:18','2006-02-15 22:16:39'), - (9410,348,2,5965,'0.99','2005-07-10 23:51:52','2006-02-15 22:16:39'), - (9411,348,2,6776,'2.99','2005-07-12 16:02:09','2006-02-15 22:16:39'), - (9412,348,2,7380,'2.99','2005-07-27 15:37:01','2006-02-15 22:16:39'), - (9413,348,1,7482,'6.99','2005-07-27 19:24:16','2006-02-15 22:16:39'), - (9414,348,2,7825,'4.99','2005-07-28 08:34:57','2006-02-15 22:16:39'), - (9415,348,1,8500,'2.99','2005-07-29 09:12:01','2006-02-15 22:16:39'), - (9416,348,1,8569,'4.99','2005-07-29 11:39:17','2006-02-15 22:16:39'), - (9417,348,2,8682,'4.99','2005-07-29 16:15:26','2006-02-15 22:16:39'), - (9418,348,2,9482,'2.99','2005-07-30 23:29:16','2006-02-15 22:16:39'), - (9419,348,1,10769,'2.99','2005-08-01 20:43:02','2006-02-15 22:16:39'), - (9420,348,2,10972,'2.99','2005-08-02 04:08:25','2006-02-15 22:16:39'), - (9421,348,1,11262,'2.99','2005-08-02 13:58:55','2006-02-15 22:16:39'), - (9422,348,1,11429,'7.99','2005-08-02 20:03:52','2006-02-15 22:16:39'), - (9423,348,2,12564,'2.99','2005-08-18 15:11:35','2006-02-15 22:16:39'), - (9424,348,2,12884,'5.99','2005-08-19 03:34:04','2006-02-15 22:16:39'), - (9425,348,2,12937,'4.99','2005-08-19 05:25:30','2006-02-15 22:16:39'), - (9426,348,2,13238,'2.99','2005-08-19 16:20:56','2006-02-15 22:16:39'), - (9427,348,2,13602,'5.99','2005-08-20 06:02:02','2006-02-15 22:16:39'), - (9428,348,2,13684,'0.99','2005-08-20 08:55:53','2006-02-15 22:16:40'), - (9429,348,1,13962,'1.99','2005-08-20 18:18:06','2006-02-15 22:16:40'), - (9430,348,2,14079,'3.99','2005-08-20 23:29:25','2006-02-15 22:16:40'), - (9431,348,2,14937,'7.99','2005-08-22 05:51:59','2006-02-15 22:16:40'), - (9432,348,2,15817,'0.99','2005-08-23 14:59:51','2006-02-15 22:16:40'), - (9433,348,1,15944,'4.99','2005-08-23 18:50:54','2006-02-15 22:16:40'), - (9434,349,1,890,'4.99','2005-05-30 07:43:04','2006-02-15 22:16:40'), - (9435,349,1,1197,'2.99','2005-06-15 01:42:46','2006-02-15 22:16:40'), - (9436,349,1,1523,'0.99','2005-06-16 00:18:40','2006-02-15 22:16:40'), - (9437,349,2,2987,'6.99','2005-06-20 08:55:50','2006-02-15 22:16:40'), - (9438,349,1,3067,'8.99','2005-06-20 13:59:21','2006-02-15 22:16:40'), - (9439,349,2,3488,'3.99','2005-07-05 23:32:49','2006-02-15 22:16:40'), - (9440,349,1,4190,'2.99','2005-07-07 10:52:39','2006-02-15 22:16:40'), - (9441,349,2,4494,'5.99','2005-07-08 01:42:45','2006-02-15 22:16:40'), - (9442,349,1,4881,'0.99','2005-07-08 19:40:34','2006-02-15 22:16:40'), - (9443,349,1,5433,'4.99','2005-07-09 21:22:00','2006-02-15 22:16:40'), - (9444,349,1,7002,'4.99','2005-07-27 01:26:14','2006-02-15 22:16:40'), - (9445,349,1,7046,'4.99','2005-07-27 03:27:56','2006-02-15 22:16:40'), - (9446,349,2,7702,'2.99','2005-07-28 03:56:05','2006-02-15 22:16:40'), - (9447,349,2,8297,'4.99','2005-07-29 02:45:46','2006-02-15 22:16:40'), - (9448,349,1,9262,'1.99','2005-07-30 14:45:02','2006-02-15 22:16:40'), - (9449,349,1,9670,'5.99','2005-07-31 06:33:33','2006-02-15 22:16:40'), - (9450,349,1,9731,'0.99','2005-07-31 08:54:47','2006-02-15 22:16:41'), - (9451,349,1,10987,'4.99','2005-08-02 04:36:52','2006-02-15 22:16:41'), - (9452,349,2,11192,'4.99','2005-08-02 11:29:41','2006-02-15 22:16:41'), - (9453,349,2,11492,'8.99','2005-08-02 22:46:47','2006-02-15 22:16:41'), - (9454,349,1,11905,'3.99','2005-08-17 15:40:18','2006-02-15 22:16:41'), - (9455,349,1,13258,'4.99','2005-08-19 17:05:37','2006-02-15 22:16:41'), - (9456,349,2,13636,'4.99','2005-08-20 07:20:09','2006-02-15 22:16:41'), - (9457,349,2,14200,'6.99','2005-08-21 03:51:27','2006-02-15 22:16:41'), - (9458,349,2,14721,'6.99','2005-08-21 21:50:51','2006-02-15 22:16:41'), - (9459,349,2,14908,'4.99','2005-08-22 04:44:10','2006-02-15 22:16:41'), - (9460,349,1,15833,'6.99','2005-08-23 15:22:15','2006-02-15 22:16:41'), - (9461,349,1,15955,'5.99','2005-08-23 19:19:06','2006-02-15 22:16:41'), - (9462,349,1,14915,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:41'), - (9463,350,1,24,'4.99','2005-05-25 02:53:02','2006-02-15 22:16:41'), - (9464,350,1,802,'4.99','2005-05-29 17:38:59','2006-02-15 22:16:41'), - (9465,350,2,2011,'3.99','2005-06-17 11:56:09','2006-02-15 22:16:41'), - (9466,350,1,2619,'0.99','2005-06-19 08:03:12','2006-02-15 22:16:41'), - (9467,350,1,3079,'2.99','2005-06-20 15:13:40','2006-02-15 22:16:41'), - (9468,350,2,3206,'0.99','2005-06-21 00:39:39','2006-02-15 22:16:41'), - (9469,350,1,3529,'0.99','2005-07-06 01:15:26','2006-02-15 22:16:41'), - (9470,350,1,3893,'5.99','2005-07-06 18:59:31','2006-02-15 22:16:41'), - (9471,350,1,4767,'2.99','2005-07-08 15:18:53','2006-02-15 22:16:41'), - (9472,350,1,5240,'0.99','2005-07-09 13:14:48','2006-02-15 22:16:42'), - (9473,350,1,5303,'2.99','2005-07-09 15:44:09','2006-02-15 22:16:42'), - (9474,350,1,5786,'1.99','2005-07-10 14:06:44','2006-02-15 22:16:42'), - (9475,350,2,6408,'3.99','2005-07-11 23:03:02','2006-02-15 22:16:42'), - (9476,350,2,7416,'4.99','2005-07-27 16:55:25','2006-02-15 22:16:42'), - (9477,350,2,11504,'0.99','2005-08-16 23:16:46','2006-02-15 22:16:42'), - (9478,350,2,11595,'6.99','2005-08-17 02:53:14','2006-02-15 22:16:42'), - (9479,350,2,11692,'6.99','2005-08-17 06:52:41','2006-02-15 22:16:42'), - (9480,350,1,11800,'0.99','2005-08-17 11:29:52','2006-02-15 22:16:42'), - (9481,350,2,12252,'6.99','2005-08-18 03:59:51','2006-02-15 22:16:42'), - (9482,350,2,12445,'2.99','2005-08-18 10:56:20','2006-02-15 22:16:42'), - (9483,350,2,13086,'0.99','2005-08-19 10:32:28','2006-02-15 22:16:42'), - (9484,350,2,15789,'1.99','2005-08-23 13:56:40','2006-02-15 22:16:42'), - (9485,350,1,15807,'0.99','2005-08-23 14:35:10','2006-02-15 22:16:42'), - (9486,351,1,1137,'1.99','2005-05-31 19:20:14','2006-02-15 22:16:42'), - (9487,351,2,1792,'5.99','2005-06-16 20:04:50','2006-02-15 22:16:42'), - (9488,351,1,1869,'0.99','2005-06-17 02:08:00','2006-02-15 22:16:42'), - (9489,351,1,2759,'2.99','2005-06-19 17:10:24','2006-02-15 22:16:42'), - (9490,351,1,3836,'2.99','2005-07-06 16:26:04','2006-02-15 22:16:42'), - (9491,351,1,4544,'0.99','2005-07-08 04:11:04','2006-02-15 22:16:42'), - (9492,351,1,4756,'1.99','2005-07-08 14:24:00','2006-02-15 22:16:42'), - (9493,351,2,4761,'5.99','2005-07-08 14:51:45','2006-02-15 22:16:42'), - (9494,351,1,5280,'0.99','2005-07-09 14:55:07','2006-02-15 22:16:43'), - (9495,351,1,5912,'3.99','2005-07-10 20:58:22','2006-02-15 22:16:43'), - (9496,351,2,6180,'3.99','2005-07-11 11:06:50','2006-02-15 22:16:43'), - (9497,351,1,6664,'4.99','2005-07-12 11:28:22','2006-02-15 22:16:43'), - (9498,351,2,6777,'5.99','2005-07-12 16:04:40','2006-02-15 22:16:43'), - (9499,351,2,7630,'4.99','2005-07-28 01:01:03','2006-02-15 22:16:43'), - (9500,351,2,8512,'4.99','2005-07-29 09:48:03','2006-02-15 22:16:43'), - (9501,351,1,9707,'7.99','2005-07-31 07:44:18','2006-02-15 22:16:43'), - (9502,351,2,10119,'0.99','2005-07-31 21:20:59','2006-02-15 22:16:43'), - (9503,351,2,10501,'2.99','2005-08-01 11:04:46','2006-02-15 22:16:43'), - (9504,351,2,11127,'0.99','2005-08-02 09:00:59','2006-02-15 22:16:43'), - (9505,351,1,14368,'6.99','2005-08-21 09:31:47','2006-02-15 22:16:43'), - (9506,351,2,15142,'4.99','2005-08-22 13:44:32','2006-02-15 22:16:43'), - (9507,351,1,15664,'4.99','2005-08-23 08:57:11','2006-02-15 22:16:43'), - (9508,351,2,15712,'2.99','2005-08-23 10:43:56','2006-02-15 22:16:43'), - (9509,351,1,15762,'2.99','2005-08-23 13:01:43','2006-02-15 22:16:43'), - (9510,352,1,784,'2.99','2005-05-29 14:44:22','2006-02-15 22:16:43'), - (9511,352,1,1498,'0.99','2005-06-15 21:58:00','2006-02-15 22:16:43'), - (9512,352,1,1649,'4.99','2005-06-16 09:20:33','2006-02-15 22:16:43'), - (9513,352,1,1678,'4.99','2005-06-16 11:08:28','2006-02-15 22:16:43'), - (9514,352,1,1780,'4.99','2005-06-16 19:11:45','2006-02-15 22:16:43'), - (9515,352,2,3331,'4.99','2005-06-21 09:37:53','2006-02-15 22:16:43'), - (9516,352,2,4116,'4.99','2005-07-07 06:56:13','2006-02-15 22:16:44'), - (9517,352,2,6329,'5.99','2005-07-11 19:10:38','2006-02-15 22:16:44'), - (9518,352,1,7033,'2.99','2005-07-27 03:03:25','2006-02-15 22:16:44'), - (9519,352,1,7419,'7.99','2005-07-27 17:04:15','2006-02-15 22:16:44'), - (9520,352,2,7512,'6.99','2005-07-27 20:40:40','2006-02-15 22:16:44'), - (9521,352,1,7579,'4.99','2005-07-27 23:06:41','2006-02-15 22:16:44'), - (9522,352,1,7845,'5.99','2005-07-28 09:18:07','2006-02-15 22:16:44'), - (9523,352,1,7886,'2.99','2005-07-28 10:37:55','2006-02-15 22:16:44'), - (9524,352,1,9463,'0.99','2005-07-30 22:30:57','2006-02-15 22:16:44'), - (9525,352,1,11793,'5.99','2005-08-17 11:05:53','2006-02-15 22:16:44'), - (9526,352,1,11823,'6.99','2005-08-17 12:36:37','2006-02-15 22:16:44'), - (9527,352,2,11986,'0.99','2005-08-17 18:21:58','2006-02-15 22:16:44'), - (9528,352,2,12234,'5.99','2005-08-18 03:17:33','2006-02-15 22:16:44'), - (9529,352,1,12751,'2.99','2005-08-18 22:33:22','2006-02-15 22:16:44'), - (9530,352,1,14130,'4.99','2005-08-21 01:43:11','2006-02-15 22:16:44'), - (9531,352,2,14852,'0.99','2005-08-22 02:25:53','2006-02-15 22:16:44'), - (9532,352,2,13578,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:44'), - (9533,353,2,1103,'6.99','2005-05-31 14:24:18','2006-02-15 22:16:44'), - (9534,353,2,1359,'2.99','2005-06-15 13:30:30','2006-02-15 22:16:44'), - (9535,353,2,1928,'7.99','2005-06-17 06:48:31','2006-02-15 22:16:44'), - (9536,353,2,3233,'6.99','2005-06-21 02:39:31','2006-02-15 22:16:44'), - (9537,353,2,4380,'5.99','2005-07-07 20:35:00','2006-02-15 22:16:44'), - (9538,353,2,6559,'1.99','2005-07-12 05:20:35','2006-02-15 22:16:45'), - (9539,353,1,6610,'3.99','2005-07-12 08:20:02','2006-02-15 22:16:45'), - (9540,353,2,7993,'3.99','2005-07-28 14:56:41','2006-02-15 22:16:45'), - (9541,353,2,10071,'2.99','2005-07-31 19:49:35','2006-02-15 22:16:45'), - (9542,353,1,11186,'0.99','2005-08-02 11:12:08','2006-02-15 22:16:45'), - (9543,353,2,11414,'4.99','2005-08-02 19:43:07','2006-02-15 22:16:45'), - (9544,353,2,11698,'4.99','2005-08-17 07:09:59','2006-02-15 22:16:45'), - (9545,353,1,12928,'5.99','2005-08-19 05:04:09','2006-02-15 22:16:45'), - (9546,353,2,13604,'0.99','2005-08-20 06:03:33','2006-02-15 22:16:45'), - (9547,353,1,14396,'4.99','2005-08-21 10:24:54','2006-02-15 22:16:45'), - (9548,353,1,15564,'1.99','2005-08-23 05:10:42','2006-02-15 22:16:45'), - (9549,353,2,15650,'0.99','2005-08-23 08:29:53','2006-02-15 22:16:45'), - (9550,353,2,15676,'2.99','2005-08-23 09:23:08','2006-02-15 22:16:45'), - (9551,354,1,140,'0.99','2005-05-25 23:34:22','2006-02-15 22:16:45'), - (9552,354,2,158,'1.99','2005-05-26 01:27:11','2006-02-15 22:16:45'), - (9553,354,2,402,'0.99','2005-05-27 13:17:18','2006-02-15 22:16:45'), - (9554,354,1,1491,'0.99','2005-06-15 21:48:18','2006-02-15 22:16:45'), - (9555,354,1,2275,'4.99','2005-06-18 06:31:29','2006-02-15 22:16:45'), - (9556,354,1,2769,'6.99','2005-06-19 17:52:14','2006-02-15 22:16:45'), - (9557,354,1,3139,'2.99','2005-06-20 19:44:45','2006-02-15 22:16:45'), - (9558,354,2,3821,'2.99','2005-07-06 15:36:20','2006-02-15 22:16:45'), - (9559,354,2,4034,'0.99','2005-07-07 02:36:33','2006-02-15 22:16:45'), - (9560,354,1,4449,'5.99','2005-07-07 23:18:58','2006-02-15 22:16:46'), - (9561,354,2,4745,'2.99','2005-07-08 13:45:09','2006-02-15 22:16:46'), - (9562,354,1,5354,'4.99','2005-07-09 18:04:33','2006-02-15 22:16:46'), - (9563,354,2,5556,'4.99','2005-07-10 03:10:17','2006-02-15 22:16:46'), - (9564,354,1,5873,'3.99','2005-07-10 19:02:10','2006-02-15 22:16:46'), - (9565,354,1,6054,'0.99','2005-07-11 03:58:39','2006-02-15 22:16:46'), - (9566,354,1,6838,'4.99','2005-07-12 19:01:30','2006-02-15 22:16:46'), - (9567,354,1,6926,'0.99','2005-07-26 22:52:45','2006-02-15 22:16:46'), - (9568,354,1,6939,'5.99','2005-07-26 23:17:51','2006-02-15 22:16:46'), - (9569,354,2,7148,'0.99','2005-07-27 07:04:09','2006-02-15 22:16:46'), - (9570,354,2,7235,'2.99','2005-07-27 10:09:30','2006-02-15 22:16:46'), - (9571,354,2,7241,'0.99','2005-07-27 10:25:49','2006-02-15 22:16:46'), - (9572,354,2,8321,'4.99','2005-07-29 03:50:54','2006-02-15 22:16:46'), - (9573,354,2,8477,'8.99','2005-07-29 08:40:36','2006-02-15 22:16:46'), - (9574,354,1,8609,'4.99','2005-07-29 13:19:25','2006-02-15 22:16:46'), - (9575,354,2,8921,'0.99','2005-07-30 02:04:02','2006-02-15 22:16:46'), - (9576,354,1,9130,'2.99','2005-07-30 09:55:10','2006-02-15 22:16:46'), - (9577,354,1,10420,'6.99','2005-08-01 08:13:53','2006-02-15 22:16:46'), - (9578,354,2,12243,'6.99','2005-08-18 03:38:54','2006-02-15 22:16:46'), - (9579,354,1,12544,'3.99','2005-08-18 14:25:51','2006-02-15 22:16:46'), - (9580,354,1,12998,'4.99','2005-08-19 07:32:16','2006-02-15 22:16:46'), - (9581,354,2,14212,'2.99','2005-08-21 04:29:26','2006-02-15 22:16:47'), - (9582,354,2,14245,'0.99','2005-08-21 05:30:54','2006-02-15 22:16:47'), - (9583,354,1,14840,'5.99','2005-08-22 01:58:42','2006-02-15 22:16:47'), - (9584,354,2,15956,'0.99','2005-08-23 19:19:21','2006-02-15 22:16:47'), - (9585,354,1,12759,'7.98','2006-02-14 15:16:03','2006-02-15 22:16:47'), - (9586,354,1,11782,'0.00','2006-02-14 15:16:03','2006-02-15 22:16:47'), - (9587,355,1,1110,'3.99','2005-05-31 15:22:51','2006-02-15 22:16:47'), - (9588,355,2,1488,'0.99','2005-06-15 21:39:54','2006-02-15 22:16:47'), - (9589,355,1,1612,'2.99','2005-06-16 06:52:05','2006-02-15 22:16:47'), - (9590,355,1,3567,'5.99','2005-07-06 03:09:36','2006-02-15 22:16:47'), - (9591,355,1,3730,'6.99','2005-07-06 11:31:24','2006-02-15 22:16:47'), - (9592,355,1,5210,'4.99','2005-07-09 11:24:19','2006-02-15 22:16:47'), - (9593,355,1,5564,'5.99','2005-07-10 03:23:05','2006-02-15 22:16:47'), - (9594,355,1,6127,'0.99','2005-07-11 08:06:59','2006-02-15 22:16:47'), - (9595,355,2,6262,'6.99','2005-07-11 15:33:24','2006-02-15 22:16:47'), - (9596,355,1,6437,'2.99','2005-07-12 00:20:29','2006-02-15 22:16:47'), - (9597,355,2,6669,'4.99','2005-07-12 11:39:55','2006-02-15 22:16:47'), - (9598,355,2,7108,'4.99','2005-07-27 05:28:32','2006-02-15 22:16:47'), - (9599,355,2,7477,'5.99','2005-07-27 19:11:03','2006-02-15 22:16:47'), - (9600,355,2,8418,'1.99','2005-07-29 06:54:21','2006-02-15 22:16:47'), - (9601,355,1,10498,'0.99','2005-08-01 10:56:48','2006-02-15 22:16:47'), - (9602,355,2,11471,'0.99','2005-08-02 21:49:03','2006-02-15 22:16:47'), - (9603,355,2,13821,'1.99','2005-08-20 13:33:47','2006-02-15 22:16:48'), - (9604,355,1,15367,'3.99','2005-08-22 21:47:53','2006-02-15 22:16:48'), - (9605,355,2,15531,'2.99','2005-08-23 03:52:36','2006-02-15 22:16:48'), - (9606,355,1,14760,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:48'), - (9607,356,2,1088,'4.99','2005-05-31 11:35:13','2006-02-15 22:16:48'), - (9608,356,1,1410,'0.99','2005-06-15 16:59:46','2006-02-15 22:16:48'), - (9609,356,1,2405,'2.99','2005-06-18 16:36:38','2006-02-15 22:16:48'), - (9610,356,1,2433,'4.99','2005-06-18 18:10:17','2006-02-15 22:16:48'), - (9611,356,2,3829,'6.99','2005-07-06 15:59:40','2006-02-15 22:16:48'), - (9612,356,2,4599,'4.99','2005-07-08 06:48:26','2006-02-15 22:16:48'), - (9613,356,1,5513,'0.99','2005-07-10 01:05:41','2006-02-15 22:16:48'), - (9614,356,1,6593,'4.99','2005-07-12 07:21:17','2006-02-15 22:16:48'), - (9615,356,1,6648,'0.99','2005-07-12 10:46:30','2006-02-15 22:16:48'), - (9616,356,1,7079,'2.99','2005-07-27 04:21:58','2006-02-15 22:16:48'), - (9617,356,1,7758,'1.99','2005-07-28 06:23:41','2006-02-15 22:16:48'), - (9618,356,1,7902,'0.99','2005-07-28 11:14:19','2006-02-15 22:16:48'), - (9619,356,1,8198,'3.99','2005-07-28 23:08:05','2006-02-15 22:16:48'), - (9620,356,1,8975,'5.99','2005-07-30 04:10:18','2006-02-15 22:16:48'), - (9621,356,2,9037,'4.99','2005-07-30 06:23:14','2006-02-15 22:16:48'), - (9622,356,2,9523,'3.99','2005-07-31 00:56:09','2006-02-15 22:16:48'), - (9623,356,2,9883,'6.99','2005-07-31 13:53:37','2006-02-15 22:16:48'), - (9624,356,1,10427,'3.99','2005-08-01 08:30:11','2006-02-15 22:16:48'), - (9625,356,1,10854,'4.99','2005-08-02 00:02:06','2006-02-15 22:16:49'), - (9626,356,1,11535,'3.99','2005-08-17 00:39:54','2006-02-15 22:16:49'), - (9627,356,2,11579,'2.99','2005-08-17 01:57:49','2006-02-15 22:16:49'), - (9628,356,2,12037,'4.99','2005-08-17 20:21:35','2006-02-15 22:16:49'), - (9629,356,2,12876,'2.99','2005-08-19 03:12:19','2006-02-15 22:16:49'), - (9630,356,1,12913,'0.99','2005-08-19 04:25:39','2006-02-15 22:16:49'), - (9631,356,2,13107,'4.99','2005-08-19 11:13:58','2006-02-15 22:16:49'), - (9632,356,2,13442,'5.99','2005-08-19 23:50:45','2006-02-15 22:16:49'), - (9633,356,2,13703,'6.99','2005-08-20 09:29:35','2006-02-15 22:16:49'), - (9634,356,1,15705,'4.99','2005-08-23 10:32:52','2006-02-15 22:16:49'), - (9635,356,2,15754,'5.99','2005-08-23 12:43:42','2006-02-15 22:16:49'), - (9636,356,1,15757,'2.99','2005-08-23 12:47:16','2006-02-15 22:16:49'), - (9637,357,1,144,'2.99','2005-05-25 23:49:56','2006-02-15 22:16:49'), - (9638,357,1,824,'4.99','2005-05-29 21:45:32','2006-02-15 22:16:49'), - (9639,357,2,945,'0.99','2005-05-30 15:33:17','2006-02-15 22:16:49'), - (9640,357,2,1246,'5.99','2005-06-15 05:11:19','2006-02-15 22:16:49'), - (9641,357,1,1788,'1.99','2005-06-16 19:47:18','2006-02-15 22:16:49'), - (9642,357,2,1971,'1.99','2005-06-17 09:23:59','2006-02-15 22:16:49'), - (9643,357,2,2153,'6.99','2005-06-17 22:58:04','2006-02-15 22:16:49'), - (9644,357,1,3865,'3.99','2005-07-06 17:46:57','2006-02-15 22:16:49'), - (9645,357,1,4478,'0.99','2005-07-08 00:39:08','2006-02-15 22:16:49'), - (9646,357,1,5896,'0.99','2005-07-10 20:15:56','2006-02-15 22:16:49'), - (9647,357,1,6288,'8.99','2005-07-11 17:01:52','2006-02-15 22:16:50'), - (9648,357,2,6367,'4.99','2005-07-11 21:18:29','2006-02-15 22:16:50'), - (9649,357,2,6405,'2.99','2005-07-11 22:53:12','2006-02-15 22:16:50'), - (9650,357,1,6839,'0.99','2005-07-12 19:03:19','2006-02-15 22:16:50'), - (9651,357,1,7353,'2.99','2005-07-27 14:38:39','2006-02-15 22:16:50'), - (9652,357,1,7366,'5.99','2005-07-27 15:01:17','2006-02-15 22:16:50'), - (9653,357,2,8041,'2.99','2005-07-28 16:39:56','2006-02-15 22:16:50'), - (9654,357,1,8124,'2.99','2005-07-28 19:28:58','2006-02-15 22:16:50'), - (9655,357,2,9233,'3.99','2005-07-30 13:44:15','2006-02-15 22:16:50'), - (9656,357,2,10391,'2.99','2005-08-01 06:49:05','2006-02-15 22:16:50'), - (9657,357,1,10502,'2.99','2005-08-01 11:06:39','2006-02-15 22:16:50'), - (9658,357,1,10503,'6.99','2005-08-01 11:07:44','2006-02-15 22:16:50'), - (9659,357,2,10764,'0.99','2005-08-01 20:32:42','2006-02-15 22:16:50'), - (9660,357,2,11065,'2.99','2005-08-02 06:57:55','2006-02-15 22:16:50'), - (9661,357,1,14926,'0.99','2005-08-22 05:18:44','2006-02-15 22:16:50'), - (9662,357,2,15869,'2.99','2005-08-23 16:22:20','2006-02-15 22:16:50'), - (9663,358,2,858,'4.99','2005-05-30 02:10:32','2006-02-15 22:16:50'), - (9664,358,1,1455,'2.99','2005-06-15 19:51:06','2006-02-15 22:16:50'), - (9665,358,2,1908,'0.99','2005-06-17 05:10:36','2006-02-15 22:16:50'), - (9666,358,1,2114,'5.99','2005-06-17 20:00:25','2006-02-15 22:16:50'), - (9667,358,1,2721,'2.99','2005-06-19 14:53:24','2006-02-15 22:16:50'), - (9668,358,1,2749,'2.99','2005-06-19 16:27:35','2006-02-15 22:16:51'), - (9669,358,1,3245,'2.99','2005-06-21 03:06:11','2006-02-15 22:16:51'), - (9670,358,1,3753,'2.99','2005-07-06 12:34:06','2006-02-15 22:16:51'), - (9671,358,1,3809,'2.99','2005-07-06 15:16:37','2006-02-15 22:16:51'), - (9672,358,2,5023,'5.99','2005-07-09 02:23:16','2006-02-15 22:16:51'), - (9673,358,1,6362,'2.99','2005-07-11 21:09:31','2006-02-15 22:16:51'), - (9674,358,1,8621,'2.99','2005-07-29 13:52:42','2006-02-15 22:16:51'), - (9675,358,2,9062,'0.99','2005-07-30 07:23:17','2006-02-15 22:16:51'), - (9676,358,1,9568,'0.99','2005-07-31 02:37:44','2006-02-15 22:16:51'), - (9677,358,1,10193,'2.99','2005-08-01 00:33:27','2006-02-15 22:16:51'), - (9678,358,1,10482,'4.99','2005-08-01 10:17:47','2006-02-15 22:16:51'), - (9679,358,2,11149,'5.99','2005-08-02 09:51:43','2006-02-15 22:16:51'), - (9680,358,2,11653,'4.99','2005-08-17 05:06:10','2006-02-15 22:16:51'), - (9681,358,1,12452,'6.99','2005-08-18 11:14:35','2006-02-15 22:16:51'), - (9682,358,1,13197,'2.99','2005-08-19 14:44:03','2006-02-15 22:16:51'), - (9683,358,1,14004,'7.99','2005-08-20 20:16:35','2006-02-15 22:16:51'), - (9684,359,1,284,'8.99','2005-05-26 19:21:44','2006-02-15 22:16:51'), - (9685,359,2,392,'2.99','2005-05-27 11:14:42','2006-02-15 22:16:51'), - (9686,359,1,528,'3.99','2005-05-28 04:30:05','2006-02-15 22:16:51'), - (9687,359,2,1329,'4.99','2005-06-15 11:25:06','2006-02-15 22:16:51'), - (9688,359,2,1770,'1.99','2005-06-16 18:07:55','2006-02-15 22:16:51'), - (9689,359,1,2401,'0.99','2005-06-18 16:22:03','2006-02-15 22:16:51'), - (9690,359,1,2736,'4.99','2005-06-19 15:43:20','2006-02-15 22:16:52'), - (9691,359,2,4830,'7.99','2005-07-08 17:56:23','2006-02-15 22:16:52'), - (9692,359,2,6424,'9.99','2005-07-11 23:49:37','2006-02-15 22:16:52'), - (9693,359,1,6542,'2.99','2005-07-12 04:53:49','2006-02-15 22:16:52'), - (9694,359,2,6741,'0.99','2005-07-12 14:24:16','2006-02-15 22:16:52'), - (9695,359,2,7098,'0.99','2005-07-27 05:01:08','2006-02-15 22:16:52'), - (9696,359,1,7115,'0.99','2005-07-27 05:42:58','2006-02-15 22:16:52'), - (9697,359,1,8174,'4.99','2005-07-28 21:36:52','2006-02-15 22:16:52'), - (9698,359,1,9898,'4.99','2005-07-31 14:12:03','2006-02-15 22:16:52'), - (9699,359,2,10174,'5.99','2005-07-31 23:40:08','2006-02-15 22:16:52'), - (9700,359,1,11032,'4.99','2005-08-02 05:53:35','2006-02-15 22:16:52'), - (9701,359,1,12611,'1.99','2005-08-18 17:09:42','2006-02-15 22:16:52'), - (9702,359,2,13297,'2.99','2005-08-19 18:45:49','2006-02-15 22:16:52'), - (9703,359,1,14258,'1.99','2005-08-21 05:56:36','2006-02-15 22:16:52'), - (9704,359,2,14598,'5.99','2005-08-21 17:40:05','2006-02-15 22:16:52'), - (9705,359,1,15104,'2.99','2005-08-22 12:01:16','2006-02-15 22:16:52'), - (9706,359,1,15148,'4.99','2005-08-22 13:59:19','2006-02-15 22:16:52'), - (9707,359,1,15453,'1.99','2005-08-23 01:01:01','2006-02-15 22:16:52'), - (9708,359,2,15655,'4.99','2006-02-14 15:16:03','2006-02-15 22:16:52'), - (9709,360,1,633,'0.99','2005-05-28 17:37:59','2006-02-15 22:16:52'), - (9710,360,2,777,'4.99','2005-05-29 14:07:58','2006-02-15 22:16:52'), - (9711,360,2,1492,'0.99','2005-06-15 21:48:35','2006-02-15 22:16:53'), - (9712,360,2,2402,'6.99','2005-06-18 16:24:45','2006-02-15 22:16:53'), - (9713,360,2,2541,'3.99','2005-06-19 02:08:10','2006-02-15 22:16:53'), - (9714,360,2,2780,'6.99','2005-06-19 18:19:33','2006-02-15 22:16:53'), - (9715,360,1,4056,'4.99','2005-07-07 03:57:36','2006-02-15 22:16:53'), - (9716,360,1,4487,'7.99','2005-07-08 01:20:22','2006-02-15 22:16:53'), - (9717,360,2,5456,'2.99','2005-07-09 22:31:45','2006-02-15 22:16:53'), - (9718,360,1,5834,'1.99','2005-07-10 16:44:12','2006-02-15 22:16:53'), - (9719,360,1,5995,'3.99','2005-07-11 01:15:39','2006-02-15 22:16:53'), - (9720,360,1,6442,'0.99','2005-07-12 00:29:45','2006-02-15 22:16:53'), - (9721,360,2,6770,'5.99','2005-07-12 15:49:40','2006-02-15 22:16:53'), - (9722,360,1,7251,'2.99','2005-07-27 10:44:55','2006-02-15 22:16:53'), - (9723,360,2,7588,'9.99','2005-07-27 23:23:31','2006-02-15 22:16:53'), - (9724,360,1,7654,'4.99','2005-07-28 02:00:14','2006-02-15 22:16:53'), - (9725,360,2,7908,'3.99','2005-07-28 11:32:57','2006-02-15 22:16:53'), - (9726,360,1,8220,'2.99','2005-07-28 23:46:41','2006-02-15 22:16:53'), - (9727,360,2,8361,'2.99','2005-07-29 05:08:57','2006-02-15 22:16:53'), - (9728,360,1,9283,'4.99','2005-07-30 15:25:19','2006-02-15 22:16:53'), - (9729,360,2,9352,'0.99','2005-07-30 18:29:26','2006-02-15 22:16:53'), - (9730,360,1,9623,'2.99','2005-07-31 04:30:02','2006-02-15 22:16:53'), - (9731,360,2,9659,'3.99','2005-07-31 06:02:14','2006-02-15 22:16:53'), - (9732,360,2,10857,'2.99','2005-08-02 00:07:20','2006-02-15 22:16:54'), - (9733,360,2,11264,'6.99','2005-08-02 14:05:18','2006-02-15 22:16:54'), - (9734,360,2,11553,'4.99','2005-08-17 01:04:31','2006-02-15 22:16:54'), - (9735,360,2,12088,'5.99','2005-08-17 22:20:16','2006-02-15 22:16:54'), - (9736,360,1,12773,'5.99','2005-08-18 23:32:19','2006-02-15 22:16:54'), - (9737,360,2,12795,'0.99','2005-08-19 00:21:52','2006-02-15 22:16:54'), - (9738,360,1,12839,'6.99','2005-08-19 01:53:43','2006-02-15 22:16:54'), - (9739,360,1,12990,'4.99','2005-08-19 07:20:39','2006-02-15 22:16:54'), - (9740,360,2,13894,'7.99','2005-08-20 15:55:20','2006-02-15 22:16:54'), - (9741,360,1,14700,'4.99','2005-08-21 20:53:40','2006-02-15 22:16:54'), - (9742,360,1,15310,'2.99','2005-08-22 19:56:41','2006-02-15 22:16:54'), - (9743,361,1,368,'5.99','2005-05-27 07:42:29','2006-02-15 22:16:54'), - (9744,361,2,1120,'4.99','2005-05-31 16:37:14','2006-02-15 22:16:54'), - (9745,361,2,2353,'4.99','2005-06-18 12:53:25','2006-02-15 22:16:54'), - (9746,361,2,2558,'1.99','2005-06-19 03:09:16','2006-02-15 22:16:54'), - (9747,361,1,2851,'2.99','2005-06-19 23:07:03','2006-02-15 22:16:54'), - (9748,361,2,3303,'2.99','2005-06-21 07:34:14','2006-02-15 22:16:54'), - (9749,361,2,5154,'2.99','2005-07-09 08:46:18','2006-02-15 22:16:54'), - (9750,361,1,6152,'0.99','2005-07-11 09:25:52','2006-02-15 22:16:54'), - (9751,361,2,6829,'4.99','2005-07-12 18:38:59','2006-02-15 22:16:54'), - (9752,361,2,6911,'0.99','2005-07-12 22:14:34','2006-02-15 22:16:54'), - (9753,361,1,6914,'1.99','2005-07-12 22:26:56','2006-02-15 22:16:55'), - (9754,361,1,7538,'2.99','2005-07-27 21:38:04','2006-02-15 22:16:55'), - (9755,361,2,7712,'2.99','2005-07-28 04:29:53','2006-02-15 22:16:55'), - (9756,361,2,8189,'4.99','2005-07-28 22:36:26','2006-02-15 22:16:55'), - (9757,361,1,10145,'1.99','2005-07-31 22:15:13','2006-02-15 22:16:55'), - (9758,361,1,10151,'4.99','2005-07-31 22:22:37','2006-02-15 22:16:55'), - (9759,361,1,10414,'0.99','2005-08-01 08:03:55','2006-02-15 22:16:55'), - (9760,361,2,10975,'0.99','2005-08-02 04:11:25','2006-02-15 22:16:55'), - (9761,361,2,11031,'5.99','2005-08-02 05:52:58','2006-02-15 22:16:55'), - (9762,361,2,11243,'5.99','2005-08-02 13:32:48','2006-02-15 22:16:55'), - (9763,361,1,11327,'2.99','2005-08-02 16:40:47','2006-02-15 22:16:55'), - (9764,361,1,11991,'3.99','2005-08-17 18:27:08','2006-02-15 22:16:55'), - (9765,361,2,12626,'5.99','2005-08-18 17:36:45','2006-02-15 22:16:55'), - (9766,361,2,12690,'2.99','2005-08-18 20:06:57','2006-02-15 22:16:55'), - (9767,361,1,13135,'0.99','2005-08-19 12:22:52','2006-02-15 22:16:55'), - (9768,361,2,14031,'0.99','2005-08-20 21:24:24','2006-02-15 22:16:55'), - (9769,361,1,14422,'0.99','2005-08-21 11:21:46','2006-02-15 22:16:55'), - (9770,361,1,15759,'6.99','2005-08-23 12:47:37','2006-02-15 22:16:55'), - (9771,361,2,15935,'2.99','2005-08-23 18:41:11','2006-02-15 22:16:55'), - (9772,361,1,13298,'3.98','2006-02-14 15:16:03','2006-02-15 22:16:55'), - (9773,361,1,14769,'0.00','2006-02-14 15:16:03','2006-02-15 22:16:55'), - (9774,362,2,1035,'4.99','2005-05-31 05:01:09','2006-02-15 22:16:56'), - (9775,362,1,1429,'2.99','2005-06-15 18:24:10','2006-02-15 22:16:56'), - (9776,362,1,1529,'2.99','2005-06-16 00:37:35','2006-02-15 22:16:56'), - (9777,362,1,1615,'2.99','2005-06-16 07:00:28','2006-02-15 22:16:56'), - (9778,362,2,3197,'2.99','2005-06-21 00:07:23','2006-02-15 22:16:56'), - (9779,362,2,3393,'2.99','2005-06-21 15:14:27','2006-02-15 22:16:56'), - (9780,362,2,4646,'8.99','2005-07-08 09:23:26','2006-02-15 22:16:56'), - (9781,362,1,5227,'4.99','2005-07-09 12:16:39','2006-02-15 22:16:56'), - (9782,362,2,5563,'1.99','2005-07-10 03:21:02','2006-02-15 22:16:56'), - (9783,362,2,5690,'5.99','2005-07-10 09:26:49','2006-02-15 22:16:56'), - (9784,362,1,6204,'4.99','2005-07-11 12:29:22','2006-02-15 22:16:56'), - (9785,362,2,6576,'4.99','2005-07-12 06:13:41','2006-02-15 22:16:56'), - (9786,362,1,6981,'4.99','2005-07-27 00:51:38','2006-02-15 22:16:56'), - (9787,362,1,7172,'1.99','2005-07-27 07:59:16','2006-02-15 22:16:56'), - (9788,362,1,7485,'2.99','2005-07-27 19:29:09','2006-02-15 22:16:56'), - (9789,362,1,8081,'2.99','2005-07-28 18:06:46','2006-02-15 22:16:56'), - (9790,362,2,8325,'2.99','2005-07-29 03:57:27','2006-02-15 22:16:56'), - (9791,362,2,8364,'4.99','2005-07-29 05:10:31','2006-02-15 22:16:56'), - (9792,362,1,8662,'0.99','2005-07-29 15:31:33','2006-02-15 22:16:56'), - (9793,362,1,8714,'2.99','2005-07-29 17:31:40','2006-02-15 22:16:56'), - (9794,362,1,9784,'4.99','2005-07-31 10:21:32','2006-02-15 22:16:56'), - (9795,362,2,10546,'3.99','2005-08-01 12:44:17','2006-02-15 22:16:56'), - (9796,362,2,12244,'4.99','2005-08-18 03:39:11','2006-02-15 22:16:57'), - (9797,362,1,12854,'6.99','2005-08-19 02:18:51','2006-02-15 22:16:57'), - (9798,362,1,13603,'6.99','2005-08-20 06:02:48','2006-02-15 22:16:57'), - (9799,362,2,14051,'6.99','2005-08-20 22:09:51','2006-02-15 22:16:57'), - (9800,362,2,14129,'2.99','2005-08-21 01:42:15','2006-02-15 22:16:57'), - (9801,362,2,14336,'4.99','2005-08-21 08:33:42','2006-02-15 22:16:57'), - (9802,362,1,14752,'5.99','2005-08-21 23:11:42','2006-02-15 22:16:57'), - (9803,362,1,14759,'11.99','2005-08-21 23:28:58','2006-02-15 22:16:57'), - (9804,362,1,14808,'4.99','2005-08-22 00:58:35','2006-02-15 22:16:57'), - (9805,362,1,14950,'2.99','2005-08-22 06:17:12','2006-02-15 22:16:57'), - (9806,363,1,733,'3.99','2005-05-29 07:35:21','2006-02-15 22:16:57'), - (9807,363,2,1426,'4.99','2005-06-15 18:16:24','2006-02-15 22:16:57'), - (9808,363,2,1569,'4.99','2005-06-16 03:19:09','2006-02-15 22:16:57'), - (9809,363,1,1847,'4.99','2005-06-17 00:05:22','2006-02-15 22:16:57'), - (9810,363,1,2540,'4.99','2005-06-19 02:04:48','2006-02-15 22:16:57'), - (9811,363,2,3281,'2.99','2005-06-21 06:08:47','2006-02-15 22:16:57'), - (9812,363,1,3726,'3.99','2005-07-06 11:15:49','2006-02-15 22:16:57'), - (9813,363,2,5687,'3.99','2005-07-10 09:07:19','2006-02-15 22:16:57'), - (9814,363,1,5758,'6.99','2005-07-10 12:42:43','2006-02-15 22:16:57'), - (9815,363,2,6140,'4.99','2005-07-11 08:40:47','2006-02-15 22:16:57'), - (9816,363,2,6705,'4.99','2005-07-12 12:53:11','2006-02-15 22:16:58'), - (9817,363,2,6821,'2.99','2005-07-12 18:22:10','2006-02-15 22:16:58'), - (9818,363,2,6878,'4.99','2005-07-12 20:37:13','2006-02-15 22:16:58'), - (9819,363,1,7256,'2.99','2005-07-27 10:58:32','2006-02-15 22:16:58'), - (9820,363,2,7708,'4.99','2005-07-28 04:19:15','2006-02-15 22:16:58'), - (9821,363,2,8121,'2.99','2005-07-28 19:25:45','2006-02-15 22:16:58'), - (9822,363,2,8522,'3.99','2005-07-29 10:16:19','2006-02-15 22:16:58'), - (9823,363,2,8804,'2.99','2005-07-29 21:28:19','2006-02-15 22:16:58'), - (9824,363,2,8841,'4.99','2005-07-29 22:56:07','2006-02-15 22:16:58'), - (9825,363,1,9968,'4.99','2005-07-31 16:32:16','2006-02-15 22:16:58'), - (9826,363,1,9977,'8.99','2005-07-31 16:58:42','2006-02-15 22:16:58'), - (9827,363,1,10339,'6.99','2005-08-01 05:05:50','2006-02-15 22:16:58'), - (9828,363,2,12189,'5.99','2005-08-18 01:51:44','2006-02-15 22:16:58'), - (9829,363,2,12760,'4.99','2005-08-18 23:03:19','2006-02-15 22:16:58'), - (9830,363,1,13706,'9.99','2005-08-20 09:32:56','2006-02-15 22:16:58'), - (9831,363,1,14694,'2.99','2005-08-21 20:46:42','2006-02-15 22:16:58'), - (9832,363,1,14983,'5.99','2005-08-22 07:32:23','2006-02-15 22:16:58'), - (9833,363,2,15279,'4.99','2005-08-22 19:08:49','2006-02-15 22:16:58'), - (9834,363,1,15335,'4.99','2005-08-22 20:44:55','2006-02-15 22:16:58'), - (9835,364,1,462,'5.99','2005-05-27 20:10:36','2006-02-15 22:16:58'), - (9836,364,1,1722,'2.99','2005-06-16 15:12:52','2006-02-15 22:16:59'), - (9837,364,2,2442,'2.99','2005-06-18 18:49:18','2006-02-15 22:16:59'), - (9838,364,2,2606,'4.99','2005-06-19 06:51:32','2006-02-15 22:16:59'), - (9839,364,2,2857,'4.99','2005-06-19 23:15:15','2006-02-15 22:16:59'), - (9840,364,2,2962,'3.99','2005-06-20 07:31:55','2006-02-15 22:16:59'), - (9841,364,1,3678,'4.99','2005-07-06 09:15:15','2006-02-15 22:16:59'), - (9842,364,2,3961,'4.99','2005-07-06 22:11:43','2006-02-15 22:16:59'), - (9843,364,1,4047,'0.99','2005-07-07 03:28:49','2006-02-15 22:16:59'), - (9844,364,2,4689,'4.99','2005-07-08 11:03:47','2006-02-15 22:16:59'), - (9845,364,1,5872,'10.99','2005-07-10 18:54:05','2006-02-15 22:16:59'), - (9846,364,1,7272,'2.99','2005-07-27 11:30:20','2006-02-15 22:16:59'), - (9847,364,2,9266,'4.99','2005-07-30 14:59:01','2006-02-15 22:16:59'), - (9848,364,1,10092,'0.99','2005-07-31 20:28:09','2006-02-15 22:16:59'), - (9849,364,2,10290,'5.99','2005-08-01 03:39:50','2006-02-15 22:16:59'), - (9850,364,2,11932,'4.99','2005-08-17 16:36:12','2006-02-15 22:16:59'), - (9851,364,1,12557,'4.99','2005-08-18 14:51:03','2006-02-15 22:16:59'), - (9852,364,1,12761,'1.99','2005-08-18 23:05:22','2006-02-15 22:16:59'), - (9853,364,2,12912,'3.99','2005-08-19 04:24:35','2006-02-15 22:16:59'), - (9854,364,1,13698,'4.99','2005-08-20 09:24:26','2006-02-15 22:16:59'), - (9855,364,2,13936,'0.99','2005-08-20 17:22:35','2006-02-15 22:17:00'), - (9856,364,2,14293,'4.99','2005-08-21 07:06:47','2006-02-15 22:17:00'), - (9857,364,1,15242,'0.99','2005-08-22 17:48:10','2006-02-15 22:17:00'), - (9858,365,2,120,'5.99','2005-05-25 19:37:47','2006-02-15 22:17:00'), - (9859,365,1,231,'4.99','2005-05-26 11:31:59','2006-02-15 22:17:00'), - (9860,365,1,1303,'1.99','2005-06-15 09:55:57','2006-02-15 22:17:00'), - (9861,365,1,1578,'6.99','2005-06-16 04:08:16','2006-02-15 22:17:00'), - (9862,365,1,1983,'4.99','2005-06-17 10:22:13','2006-02-15 22:17:00'), - (9863,365,1,2525,'2.99','2005-06-19 00:48:22','2006-02-15 22:17:00'), - (9864,365,2,3156,'0.99','2005-06-20 21:03:46','2006-02-15 22:17:00'), - (9865,365,1,4583,'1.99','2005-07-08 06:09:44','2006-02-15 22:17:00'), - (9866,365,1,6604,'4.99','2005-07-12 07:57:45','2006-02-15 22:17:00'), - (9867,365,1,7488,'7.99','2005-07-27 19:36:15','2006-02-15 22:17:00'), - (9868,365,2,7634,'4.99','2005-07-28 01:07:01','2006-02-15 22:17:00'), - (9869,365,1,8168,'4.99','2005-07-28 21:28:32','2006-02-15 22:17:00'), - (9870,365,2,8782,'4.99','2005-07-29 20:29:34','2006-02-15 22:17:00'), - (9871,365,1,8856,'3.99','2005-07-29 23:42:00','2006-02-15 22:17:00'), - (9872,365,1,9122,'2.99','2005-07-30 09:36:52','2006-02-15 22:17:00'), - (9873,365,2,9184,'4.99','2005-07-30 12:10:19','2006-02-15 22:17:00'), - (9874,365,2,9540,'2.99','2005-07-31 01:40:06','2006-02-15 22:17:01'), - (9875,365,2,10717,'2.99','2005-08-01 18:53:53','2006-02-15 22:17:01'), - (9876,365,2,12322,'2.99','2005-08-18 06:35:28','2006-02-15 22:17:01'), - (9877,365,2,12375,'4.99','2005-08-18 08:20:08','2006-02-15 22:17:01'), - (9878,365,1,12804,'8.99','2005-08-19 00:33:15','2006-02-15 22:17:01'), - (9879,365,1,13619,'2.99','2005-08-20 06:39:26','2006-02-15 22:17:01'), - (9880,365,2,14463,'6.99','2005-08-21 12:51:49','2006-02-15 22:17:01'), - (9881,366,2,911,'6.99','2005-05-30 10:50:22','2006-02-15 22:17:01'), - (9882,366,2,1401,'1.99','2005-06-15 16:30:22','2006-02-15 22:17:01'), - (9883,366,2,2214,'0.99','2005-06-18 02:44:37','2006-02-15 22:17:01'), - (9884,366,2,3632,'4.99','2005-07-06 06:38:21','2006-02-15 22:17:01'), - (9885,366,1,3834,'2.99','2005-07-06 16:19:56','2006-02-15 22:17:01'), - (9886,366,2,4276,'2.99','2005-07-07 14:50:59','2006-02-15 22:17:01'), - (9887,366,1,4569,'5.99','2005-07-08 05:30:51','2006-02-15 22:17:01'), - (9888,366,2,5364,'0.99','2005-07-09 18:24:48','2006-02-15 22:17:01'), - (9889,366,1,6112,'6.99','2005-07-11 07:28:05','2006-02-15 22:17:01'), - (9890,366,1,6366,'4.99','2005-07-11 21:18:16','2006-02-15 22:17:01'), - (9891,366,2,6533,'6.99','2005-07-12 04:39:38','2006-02-15 22:17:01'), - (9892,366,2,6738,'5.99','2005-07-12 14:17:55','2006-02-15 22:17:01'), - (9893,366,1,6842,'0.99','2005-07-12 19:07:55','2006-02-15 22:17:02'), - (9894,366,2,6971,'4.99','2005-07-27 00:26:17','2006-02-15 22:17:02'), - (9895,366,1,7344,'1.99','2005-07-27 14:29:28','2006-02-15 22:17:02'), - (9896,366,1,7562,'2.99','2005-07-27 22:25:15','2006-02-15 22:17:02'), - (9897,366,2,7602,'4.99','2005-07-27 23:48:35','2006-02-15 22:17:02'), - (9898,366,1,7805,'6.99','2005-07-28 07:56:41','2006-02-15 22:17:02'), - (9899,366,2,8169,'4.99','2005-07-28 21:29:46','2006-02-15 22:17:02'), - (9900,366,2,8260,'1.99','2005-07-29 01:11:00','2006-02-15 22:17:02'), - (9901,366,2,8928,'2.99','2005-07-30 02:18:19','2006-02-15 22:17:02'), - (9902,366,1,9316,'6.99','2005-07-30 17:11:58','2006-02-15 22:17:02'), - (9903,366,1,10198,'2.99','2005-08-01 00:36:15','2006-02-15 22:17:02'), - (9904,366,1,10384,'4.99','2005-08-01 06:39:14','2006-02-15 22:17:02'), - (9905,366,2,11337,'2.99','2005-08-02 16:59:09','2006-02-15 22:17:02'), - (9906,366,2,11340,'5.99','2005-08-02 17:05:43','2006-02-15 22:17:02'), - (9907,366,2,12413,'2.99','2005-08-18 09:50:34','2006-02-15 22:17:02'), - (9908,366,1,12608,'4.99','2005-08-18 17:05:15','2006-02-15 22:17:02'), - (9909,366,2,13563,'0.99','2005-08-20 04:33:31','2006-02-15 22:17:02'), - (9910,366,1,13857,'2.99','2005-08-20 14:50:06','2006-02-15 22:17:02'), - (9911,366,1,14147,'4.99','2005-08-21 02:14:03','2006-02-15 22:17:02'), - (9912,366,1,14290,'4.99','2005-08-21 07:02:59','2006-02-15 22:17:02'), - (9913,366,1,14390,'2.99','2005-08-21 10:15:38','2006-02-15 22:17:02'), - (9914,366,1,14717,'2.99','2005-08-21 21:30:39','2006-02-15 22:17:03'), - (9915,366,1,14906,'6.99','2005-08-22 04:38:18','2006-02-15 22:17:03'), - (9916,366,1,15514,'2.99','2005-08-23 03:03:40','2006-02-15 22:17:03'), - (9917,366,1,13421,'4.99','2006-02-14 15:16:03','2006-02-15 22:17:03'), - (9918,367,1,939,'0.99','2005-05-30 14:49:34','2006-02-15 22:17:03'), - (9919,367,1,1089,'2.99','2005-05-31 11:38:29','2006-02-15 22:17:03'), - (9920,367,1,3078,'0.99','2005-06-20 15:09:48','2006-02-15 22:17:03'), - (9921,367,1,4251,'8.99','2005-07-07 14:11:55','2006-02-15 22:17:03'), - (9922,367,2,5490,'4.99','2005-07-10 00:09:11','2006-02-15 22:17:03'), - (9923,367,2,5538,'4.99','2005-07-10 02:39:40','2006-02-15 22:17:03'), - (9924,367,2,5839,'2.99','2005-07-10 17:08:30','2006-02-15 22:17:03'), - (9925,367,2,6228,'2.99','2005-07-11 13:58:36','2006-02-15 22:17:03'), - (9926,367,1,6716,'0.99','2005-07-12 13:34:58','2006-02-15 22:17:03'), - (9927,367,2,6835,'5.99','2005-07-12 18:58:03','2006-02-15 22:17:03'), - (9928,367,2,8490,'0.99','2005-07-29 08:59:25','2006-02-15 22:17:03'), - (9929,367,1,9030,'3.99','2005-07-30 06:05:38','2006-02-15 22:17:03'), - (9930,367,1,9430,'4.99','2005-07-30 21:20:13','2006-02-15 22:17:03'), - (9931,367,1,9912,'4.99','2005-07-31 14:49:04','2006-02-15 22:17:03'), - (9932,367,2,10344,'4.99','2005-08-01 05:18:23','2006-02-15 22:17:03'), - (9933,367,1,12152,'4.99','2005-08-18 00:21:35','2006-02-15 22:17:03'), - (9934,367,2,12362,'0.99','2005-08-18 07:48:05','2006-02-15 22:17:03'), - (9935,367,2,12373,'8.99','2005-08-18 08:07:25','2006-02-15 22:17:04'), - (9936,367,2,12911,'6.99','2005-08-19 04:24:10','2006-02-15 22:17:04'), - (9937,367,2,13235,'4.99','2005-08-19 16:17:53','2006-02-15 22:17:04'), - (9938,367,1,14413,'6.99','2005-08-21 11:06:33','2006-02-15 22:17:04'), - (9939,367,1,14481,'10.99','2005-08-21 13:41:14','2006-02-15 22:17:04'), - (9940,368,1,64,'5.99','2005-05-25 09:21:29','2006-02-15 22:17:04'), - (9941,368,1,125,'5.99','2005-05-25 20:48:50','2006-02-15 22:17:04'), - (9942,368,1,836,'2.99','2005-05-29 23:56:42','2006-02-15 22:17:04'), - (9943,368,1,949,'2.99','2005-05-30 15:50:39','2006-02-15 22:17:04'), - (9944,368,1,1186,'0.99','2005-06-15 00:56:45','2006-02-15 22:17:04'), - (9945,368,1,1513,'9.99','2005-06-15 22:53:30','2006-02-15 22:17:04'), - (9946,368,1,2531,'4.99','2005-06-19 01:20:49','2006-02-15 22:17:04'), - (9947,368,1,2694,'4.99','2005-06-19 13:17:21','2006-02-15 22:17:04'), - (9948,368,1,2744,'4.99','2005-06-19 16:20:40','2006-02-15 22:17:04'), - (9949,368,2,3275,'4.99','2005-06-21 05:33:04','2006-02-15 22:17:04'), - (9950,368,2,3608,'4.99','2005-07-06 05:35:39','2006-02-15 22:17:04'), - (9951,368,2,4066,'0.99','2005-07-07 04:34:09','2006-02-15 22:17:04'), - (9952,368,1,4584,'0.99','2005-07-08 06:11:02','2006-02-15 22:17:04'), - (9953,368,2,4913,'8.99','2005-07-08 21:27:48','2006-02-15 22:17:04'), - (9954,368,1,6124,'4.99','2005-07-11 08:02:32','2006-02-15 22:17:04'), - (9955,368,1,6154,'5.99','2005-07-11 09:32:19','2006-02-15 22:17:04'), - (9956,368,1,6681,'2.99','2005-07-12 12:04:12','2006-02-15 22:17:04'), - (9957,368,2,7571,'4.99','2005-07-27 22:43:42','2006-02-15 22:17:05'), - (9958,368,1,8045,'0.99','2005-07-28 16:49:38','2006-02-15 22:17:05'), - (9959,368,2,8226,'2.99','2005-07-29 00:01:04','2006-02-15 22:17:05'), - (9960,368,1,9400,'5.99','2005-07-30 20:15:58','2006-02-15 22:17:05'), - (9961,368,1,9833,'6.99','2005-07-31 12:05:01','2006-02-15 22:17:05'), - (9962,368,2,10730,'8.99','2005-08-01 19:21:42','2006-02-15 22:17:05'), - (9963,368,2,10848,'1.99','2005-08-01 23:50:22','2006-02-15 22:17:05'), - (9964,368,1,11844,'0.99','2005-08-17 13:16:04','2006-02-15 22:17:05'), - (9965,368,2,12319,'2.99','2005-08-18 06:26:45','2006-02-15 22:17:05'), - (9966,368,1,12796,'4.99','2005-08-19 00:22:24','2006-02-15 22:17:05'), - (9967,368,2,13189,'8.99','2005-08-19 14:27:16','2006-02-15 22:17:05'), - (9968,368,2,13280,'2.99','2005-08-19 18:02:51','2006-02-15 22:17:05'), - (9969,368,2,13378,'0.99','2005-08-19 21:33:35','2006-02-15 22:17:05'), - (9970,368,2,13781,'7.99','2005-08-20 12:06:45','2006-02-15 22:17:05'), - (9971,368,2,13963,'1.99','2005-08-20 18:20:18','2006-02-15 22:17:05'), - (9972,368,1,14393,'7.99','2005-08-21 10:22:51','2006-02-15 22:17:05'), - (9973,368,1,15353,'2.99','2005-08-22 21:18:08','2006-02-15 22:17:05'), - (9974,368,1,15437,'2.99','2005-08-23 00:31:09','2006-02-15 22:17:05'), - (9975,369,1,31,'4.99','2005-05-25 04:05:17','2006-02-15 22:17:05'), - (9976,369,1,294,'4.99','2005-05-26 20:29:57','2006-02-15 22:17:05'), - (9977,369,2,854,'0.99','2005-05-30 01:56:11','2006-02-15 22:17:05'), - (9978,369,2,913,'7.99','2005-05-30 11:04:58','2006-02-15 22:17:06'), - (9979,369,1,1224,'0.99','2005-06-15 03:44:25','2006-02-15 22:17:06'), - (9980,369,1,3490,'6.99','2005-07-05 23:37:13','2006-02-15 22:17:06'), - (9981,369,2,3903,'2.99','2005-07-06 19:27:32','2006-02-15 22:17:06'), - (9982,369,2,4859,'4.99','2005-07-08 18:54:04','2006-02-15 22:17:06'), - (9983,369,1,5043,'1.99','2005-07-09 03:25:18','2006-02-15 22:17:06'), - (9984,369,2,5496,'7.99','2005-07-10 00:20:23','2006-02-15 22:17:06'), - (9985,369,2,5561,'2.99','2005-07-10 03:15:24','2006-02-15 22:17:06'), - (9986,369,1,8236,'2.99','2005-07-29 00:27:04','2006-02-15 22:17:06'), - (9987,369,2,8826,'2.99','2005-07-29 22:30:16','2006-02-15 22:17:06'), - (9988,369,2,9032,'4.99','2005-07-30 06:06:54','2006-02-15 22:17:06'), - (9989,369,1,9089,'0.99','2005-07-30 08:23:39','2006-02-15 22:17:06'), - (9990,369,2,9543,'0.99','2005-07-31 01:43:34','2006-02-15 22:17:06'), - (9991,369,1,9973,'4.99','2005-07-31 16:49:31','2006-02-15 22:17:06'), - (9992,369,1,10299,'0.99','2005-08-01 04:08:04','2006-02-15 22:17:06'), - (9993,369,2,10359,'3.99','2005-08-01 05:52:21','2006-02-15 22:17:06'), - (9994,369,2,10713,'2.99','2005-08-01 18:50:05','2006-02-15 22:17:06'), - (9995,369,1,11084,'4.99','2005-08-02 07:34:19','2006-02-15 22:17:06'), - (9996,369,2,11388,'1.99','2005-08-02 18:35:55','2006-02-15 22:17:06'), - (9997,369,1,12521,'0.99','2005-08-18 13:43:07','2006-02-15 22:17:06'), - (9998,369,2,14684,'5.99','2005-08-21 20:28:26','2006-02-15 22:17:06'), - (9999,369,1,13898,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:07'), - (10000,370,2,1190,'6.99','2005-06-15 01:05:32','2006-02-15 22:17:07'), - (10001,370,2,4400,'7.99','2005-07-07 21:22:26','2006-02-15 22:17:07'), - (10002,370,2,6714,'0.99','2005-07-12 13:29:06','2006-02-15 22:17:07'), - (10003,370,1,6968,'0.99','2005-07-27 00:16:45','2006-02-15 22:17:07'), - (10004,370,2,7152,'7.99','2005-07-27 07:15:01','2006-02-15 22:17:07'), - (10005,370,1,7226,'6.99','2005-07-27 09:47:53','2006-02-15 22:17:07'), - (10006,370,2,7797,'0.99','2005-07-28 07:41:07','2006-02-15 22:17:07'), - (10007,370,2,8258,'0.99','2005-07-29 01:03:42','2006-02-15 22:17:07'), - (10008,370,2,10095,'0.99','2005-07-31 20:38:35','2006-02-15 22:17:07'), - (10009,370,1,10336,'4.99','2005-08-01 04:59:53','2006-02-15 22:17:07'), - (10010,370,1,11540,'1.99','2005-08-17 00:48:03','2006-02-15 22:17:07'), - (10011,370,2,11925,'0.99','2005-08-17 16:23:04','2006-02-15 22:17:07'), - (10012,370,1,12339,'4.99','2005-08-18 07:05:06','2006-02-15 22:17:07'), - (10013,370,1,13039,'0.99','2005-08-19 08:55:19','2006-02-15 22:17:07'), - (10014,370,1,14602,'3.99','2005-08-21 17:48:49','2006-02-15 22:17:07'), - (10015,370,2,14786,'2.99','2005-08-22 00:24:42','2006-02-15 22:17:07'), - (10016,370,2,15368,'3.99','2005-08-22 21:57:15','2006-02-15 22:17:07'), - (10017,370,1,15626,'4.99','2005-08-23 07:25:34','2006-02-15 22:17:07'), - (10018,370,1,15982,'5.99','2005-08-23 20:13:31','2006-02-15 22:17:08'), - (10019,371,1,26,'3.99','2005-05-25 03:36:50','2006-02-15 22:17:08'), - (10020,371,2,286,'6.99','2005-05-26 19:44:51','2006-02-15 22:17:08'), - (10021,371,2,381,'4.99','2005-05-27 09:43:25','2006-02-15 22:17:08'), - (10022,371,1,384,'5.99','2005-05-27 10:18:20','2006-02-15 22:17:08'), - (10023,371,1,825,'0.99','2005-05-29 21:49:41','2006-02-15 22:17:08'), - (10024,371,1,829,'2.99','2005-05-29 22:16:42','2006-02-15 22:17:08'), - (10025,371,2,1212,'2.99','2005-06-15 03:03:33','2006-02-15 22:17:08'), - (10026,371,1,1218,'1.99','2005-06-15 03:24:44','2006-02-15 22:17:08'), - (10027,371,1,1573,'6.99','2005-06-16 03:31:39','2006-02-15 22:17:08'), - (10028,371,2,1675,'5.99','2005-06-16 11:04:47','2006-02-15 22:17:08'), - (10029,371,2,2837,'0.99','2005-06-19 22:03:50','2006-02-15 22:17:08'), - (10030,371,1,3176,'3.99','2005-06-20 22:31:54','2006-02-15 22:17:08'), - (10031,371,2,3396,'0.99','2005-06-21 15:23:08','2006-02-15 22:17:08'), - (10032,371,2,4115,'8.99','2005-07-07 06:52:23','2006-02-15 22:17:08'), - (10033,371,1,4612,'1.99','2005-07-08 07:40:44','2006-02-15 22:17:08'), - (10034,371,1,5171,'4.99','2005-07-09 09:26:55','2006-02-15 22:17:08'), - (10035,371,2,5614,'0.99','2005-07-10 05:16:56','2006-02-15 22:17:08'), - (10036,371,1,6000,'2.99','2005-07-11 01:23:06','2006-02-15 22:17:08'), - (10037,371,1,6460,'1.99','2005-07-12 01:13:44','2006-02-15 22:17:08'), - (10038,371,1,6922,'0.99','2005-07-12 22:39:48','2006-02-15 22:17:08'), - (10039,371,1,7408,'3.99','2005-07-27 16:31:40','2006-02-15 22:17:09'), - (10040,371,1,8138,'4.99','2005-07-28 20:12:17','2006-02-15 22:17:09'), - (10041,371,1,9008,'4.99','2005-07-30 05:10:26','2006-02-15 22:17:09'), - (10042,371,1,9117,'8.99','2005-07-30 09:20:59','2006-02-15 22:17:09'), - (10043,371,1,9635,'0.99','2005-07-31 05:12:27','2006-02-15 22:17:09'), - (10044,371,1,11086,'10.99','2005-08-02 07:38:44','2006-02-15 22:17:09'), - (10045,371,2,12397,'9.99','2005-08-18 09:12:52','2006-02-15 22:17:09'), - (10046,371,2,12584,'7.99','2005-08-18 15:51:36','2006-02-15 22:17:09'), - (10047,371,1,13028,'2.99','2005-08-19 08:27:23','2006-02-15 22:17:09'), - (10048,371,2,13143,'3.99','2005-08-19 12:44:38','2006-02-15 22:17:09'), - (10049,371,1,13191,'4.99','2005-08-19 14:28:48','2006-02-15 22:17:09'), - (10050,371,2,13953,'4.99','2005-08-20 18:00:37','2006-02-15 22:17:09'), - (10051,371,1,14384,'2.99','2005-08-21 10:02:37','2006-02-15 22:17:09'), - (10052,371,1,15786,'0.99','2005-08-23 13:48:34','2006-02-15 22:17:09'), - (10053,371,1,15824,'2.99','2005-08-23 15:09:17','2006-02-15 22:17:09'), - (10054,372,1,617,'2.99','2005-05-28 15:49:14','2006-02-15 22:17:09'), - (10055,372,1,638,'2.99','2005-05-28 18:24:43','2006-02-15 22:17:09'), - (10056,372,1,2315,'2.99','2005-06-18 09:03:39','2006-02-15 22:17:09'), - (10057,372,1,2959,'4.99','2005-06-20 07:07:54','2006-02-15 22:17:09'), - (10058,372,1,3283,'3.99','2005-06-21 06:19:07','2006-02-15 22:17:09'), - (10059,372,1,5229,'4.99','2005-07-09 12:30:18','2006-02-15 22:17:09'), - (10060,372,1,5314,'2.99','2005-07-09 16:05:28','2006-02-15 22:17:10'), - (10061,372,1,5352,'2.99','2005-07-09 17:54:58','2006-02-15 22:17:10'), - (10062,372,1,5501,'6.99','2005-07-10 00:33:48','2006-02-15 22:17:10'), - (10063,372,2,5914,'7.99','2005-07-10 21:01:12','2006-02-15 22:17:10'), - (10064,372,2,6692,'4.99','2005-07-12 12:35:39','2006-02-15 22:17:10'), - (10065,372,1,7190,'4.99','2005-07-27 08:36:01','2006-02-15 22:17:10'), - (10066,372,2,7234,'5.99','2005-07-27 10:08:45','2006-02-15 22:17:10'), - (10067,372,2,7735,'4.99','2005-07-28 05:09:56','2006-02-15 22:17:10'), - (10068,372,2,8009,'7.99','2005-07-28 15:25:58','2006-02-15 22:17:10'), - (10069,372,1,8059,'2.99','2005-07-28 17:09:59','2006-02-15 22:17:10'), - (10070,372,1,8358,'0.99','2005-07-29 05:00:58','2006-02-15 22:17:10'), - (10071,372,1,8724,'0.99','2005-07-29 18:05:21','2006-02-15 22:17:10'), - (10072,372,1,8755,'2.99','2005-07-29 19:18:31','2006-02-15 22:17:10'), - (10073,372,2,8837,'8.99','2005-07-29 22:49:00','2006-02-15 22:17:10'), - (10074,372,1,9128,'5.99','2005-07-30 09:51:14','2006-02-15 22:17:10'), - (10075,372,2,11134,'10.99','2005-08-02 09:19:22','2006-02-15 22:17:10'), - (10076,372,2,11438,'3.99','2005-08-02 20:21:08','2006-02-15 22:17:10'), - (10077,372,2,11555,'4.99','2005-08-17 01:08:59','2006-02-15 22:17:10'), - (10078,372,1,12224,'0.99','2005-08-18 02:59:09','2006-02-15 22:17:10'), - (10079,372,1,12714,'3.99','2005-08-18 21:08:01','2006-02-15 22:17:10'), - (10080,372,2,13402,'4.99','2005-08-19 22:16:53','2006-02-15 22:17:11'), - (10081,372,2,13871,'8.99','2005-08-20 15:10:13','2006-02-15 22:17:11'), - (10082,372,2,14037,'9.99','2005-08-20 21:35:58','2006-02-15 22:17:11'), - (10083,372,1,14211,'4.99','2005-08-21 04:29:11','2006-02-15 22:17:11'), - (10084,372,1,14331,'2.99','2005-08-21 08:29:38','2006-02-15 22:17:11'), - (10085,372,1,14770,'1.99','2005-08-21 23:47:16','2006-02-15 22:17:11'), - (10086,372,2,15041,'0.99','2005-08-22 09:43:18','2006-02-15 22:17:11'), - (10087,372,1,15563,'2.99','2005-08-23 05:08:58','2006-02-15 22:17:11'), - (10088,373,2,257,'4.99','2005-05-26 15:27:05','2006-02-15 22:17:11'), - (10089,373,1,1472,'6.99','2005-06-15 20:54:55','2006-02-15 22:17:11'), - (10090,373,1,3161,'2.99','2005-06-20 21:21:01','2006-02-15 22:17:11'), - (10091,373,2,3609,'2.99','2005-07-06 05:36:22','2006-02-15 22:17:11'), - (10092,373,2,3667,'4.99','2005-07-06 08:36:34','2006-02-15 22:17:11'), - (10093,373,1,4325,'7.99','2005-07-07 17:59:24','2006-02-15 22:17:11'), - (10094,373,1,5120,'5.99','2005-07-09 07:14:23','2006-02-15 22:17:11'), - (10095,373,1,6202,'3.99','2005-07-11 12:24:25','2006-02-15 22:17:11'), - (10096,373,2,6311,'0.99','2005-07-11 18:18:52','2006-02-15 22:17:11'), - (10097,373,1,6944,'4.99','2005-07-26 23:34:02','2006-02-15 22:17:11'), - (10098,373,1,7094,'0.99','2005-07-27 04:47:33','2006-02-15 22:17:11'), - (10099,373,2,7206,'3.99','2005-07-27 09:07:05','2006-02-15 22:17:11'), - (10100,373,1,7615,'0.99','2005-07-28 00:15:24','2006-02-15 22:17:11'), - (10101,373,1,8611,'3.99','2005-07-29 13:26:21','2006-02-15 22:17:12'), - (10102,373,2,9327,'8.99','2005-07-30 17:31:03','2006-02-15 22:17:12'), - (10103,373,1,9397,'4.99','2005-07-30 20:07:29','2006-02-15 22:17:12'), - (10104,373,2,9480,'0.99','2005-07-30 23:26:03','2006-02-15 22:17:12'), - (10105,373,1,9966,'4.99','2005-07-31 16:26:46','2006-02-15 22:17:12'), - (10106,373,1,10010,'6.99','2005-07-31 18:01:36','2006-02-15 22:17:12'), - (10107,373,1,10221,'4.99','2005-08-01 01:16:50','2006-02-15 22:17:12'), - (10108,373,1,10758,'5.99','2005-08-01 20:22:51','2006-02-15 22:17:12'), - (10109,373,2,11066,'7.99','2005-08-02 06:58:32','2006-02-15 22:17:12'), - (10110,373,2,11512,'7.99','2005-08-16 23:51:06','2006-02-15 22:17:12'), - (10111,373,2,11663,'3.99','2005-08-17 05:30:19','2006-02-15 22:17:12'), - (10112,373,2,11976,'3.99','2005-08-17 17:59:19','2006-02-15 22:17:12'), - (10113,373,1,12142,'5.99','2005-08-18 00:04:12','2006-02-15 22:17:12'), - (10114,373,2,12536,'5.99','2005-08-18 14:06:06','2006-02-15 22:17:12'), - (10115,373,1,12748,'7.99','2005-08-18 22:29:05','2006-02-15 22:17:12'), - (10116,373,2,12780,'0.99','2005-08-18 23:48:16','2006-02-15 22:17:12'), - (10117,373,2,13299,'2.99','2005-08-19 18:46:33','2006-02-15 22:17:12'), - (10118,373,1,13329,'3.99','2005-08-19 19:56:55','2006-02-15 22:17:12'), - (10119,373,2,13467,'2.99','2005-08-20 00:56:44','2006-02-15 22:17:12'), - (10120,373,2,15014,'6.99','2005-08-22 08:43:11','2006-02-15 22:17:12'), - (10121,373,1,15068,'3.99','2005-08-22 10:50:13','2006-02-15 22:17:13'), - (10122,373,1,11739,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:13'), - (10123,374,1,521,'0.99','2005-05-28 03:32:22','2006-02-15 22:17:13'), - (10124,374,2,910,'2.99','2005-05-30 10:46:16','2006-02-15 22:17:13'), - (10125,374,2,919,'0.99','2005-05-30 11:35:06','2006-02-15 22:17:13'), - (10126,374,1,1548,'1.99','2005-06-16 01:43:33','2006-02-15 22:17:13'), - (10127,374,2,2046,'1.99','2005-06-17 14:39:50','2006-02-15 22:17:13'), - (10128,374,2,2487,'4.99','2005-06-18 21:32:54','2006-02-15 22:17:13'), - (10129,374,2,2641,'2.99','2005-06-19 09:38:33','2006-02-15 22:17:13'), - (10130,374,1,3797,'1.99','2005-07-06 14:54:52','2006-02-15 22:17:13'), - (10131,374,1,5463,'4.99','2005-07-09 22:57:02','2006-02-15 22:17:13'), - (10132,374,1,5570,'6.99','2005-07-10 03:46:47','2006-02-15 22:17:13'), - (10133,374,2,5591,'3.99','2005-07-10 04:25:03','2006-02-15 22:17:13'), - (10134,374,2,5945,'2.99','2005-07-10 22:52:42','2006-02-15 22:17:13'), - (10135,374,2,6315,'0.99','2005-07-11 18:42:49','2006-02-15 22:17:13'), - (10136,374,2,7837,'0.99','2005-07-28 08:58:32','2006-02-15 22:17:13'), - (10137,374,2,8586,'7.99','2005-07-29 12:16:34','2006-02-15 22:17:13'), - (10138,374,2,9113,'0.99','2005-07-30 09:09:03','2006-02-15 22:17:13'), - (10139,374,1,9866,'6.99','2005-07-31 13:13:50','2006-02-15 22:17:13'), - (10140,374,1,10695,'2.99','2005-08-01 18:16:20','2006-02-15 22:17:13'), - (10141,374,1,11619,'0.99','2005-08-17 04:03:26','2006-02-15 22:17:13'), - (10142,374,2,12696,'2.99','2005-08-18 20:13:08','2006-02-15 22:17:14'), - (10143,374,1,13337,'2.99','2005-08-19 20:06:57','2006-02-15 22:17:14'), - (10144,374,2,13734,'4.99','2005-08-20 10:29:57','2006-02-15 22:17:14'), - (10145,374,2,14524,'8.99','2005-08-21 15:05:27','2006-02-15 22:17:14'), - (10146,374,2,15053,'5.99','2005-08-22 10:13:09','2006-02-15 22:17:14'), - (10147,374,1,15200,'2.99','2005-08-22 16:22:53','2006-02-15 22:17:14'), - (10148,374,2,15202,'4.99','2005-08-22 16:26:53','2006-02-15 22:17:14'), - (10149,374,2,15366,'6.99','2005-08-22 21:45:57','2006-02-15 22:17:14'), - (10150,374,2,15966,'2.99','2006-02-14 15:16:03','2006-02-15 22:17:14'), - (10151,375,2,307,'8.99','2005-05-26 21:48:13','2006-02-15 22:17:14'), - (10152,375,1,412,'4.99','2005-05-27 14:17:23','2006-02-15 22:17:14'), - (10153,375,2,749,'4.99','2005-05-29 09:33:33','2006-02-15 22:17:14'), - (10154,375,1,873,'2.99','2005-05-30 05:15:20','2006-02-15 22:17:14'), - (10155,375,2,1404,'2.99','2005-06-15 16:38:53','2006-02-15 22:17:14'), - (10156,375,1,1499,'5.99','2005-06-15 21:58:07','2006-02-15 22:17:14'), - (10157,375,1,2236,'4.99','2005-06-18 04:12:33','2006-02-15 22:17:14'), - (10158,375,1,3981,'6.99','2005-07-06 23:12:12','2006-02-15 22:17:14'), - (10159,375,2,4335,'4.99','2005-07-07 18:33:57','2006-02-15 22:17:14'), - (10160,375,2,5474,'2.99','2005-07-09 23:23:57','2006-02-15 22:17:14'), - (10161,375,1,7856,'4.99','2005-07-28 09:48:24','2006-02-15 22:17:14'), - (10162,375,2,8900,'2.99','2005-07-30 01:07:03','2006-02-15 22:17:14'), - (10163,375,1,10274,'0.99','2005-08-01 03:16:51','2006-02-15 22:17:15'), - (10164,375,2,10589,'1.99','2005-08-01 14:11:09','2006-02-15 22:17:15'), - (10165,375,1,10640,'0.99','2005-08-01 15:44:51','2006-02-15 22:17:15'), - (10166,375,1,10672,'4.99','2005-08-01 17:10:54','2006-02-15 22:17:15'), - (10167,375,1,10859,'5.99','2005-08-02 00:11:39','2006-02-15 22:17:15'), - (10168,375,1,10961,'6.99','2005-08-02 03:47:55','2006-02-15 22:17:15'), - (10169,375,2,11008,'5.99','2005-08-02 05:06:17','2006-02-15 22:17:15'), - (10170,375,2,12122,'9.99','2005-08-17 23:20:45','2006-02-15 22:17:15'), - (10171,375,2,12663,'0.99','2005-08-18 19:10:52','2006-02-15 22:17:15'), - (10172,375,1,13836,'4.99','2005-08-20 14:18:16','2006-02-15 22:17:15'), - (10173,375,1,15004,'2.99','2005-08-22 08:15:21','2006-02-15 22:17:15'), - (10174,375,1,15505,'4.99','2005-08-23 02:46:13','2006-02-15 22:17:15'), - (10175,376,1,554,'0.99','2005-05-28 08:23:16','2006-02-15 22:17:15'), - (10176,376,2,1208,'0.99','2005-06-15 02:30:03','2006-02-15 22:17:15'), - (10177,376,1,2779,'0.99','2005-06-19 18:19:07','2006-02-15 22:17:15'), - (10178,376,2,3719,'2.99','2005-07-06 11:05:55','2006-02-15 22:17:15'), - (10179,376,1,4163,'0.99','2005-07-07 09:19:28','2006-02-15 22:17:15'), - (10180,376,2,4166,'8.99','2005-07-07 09:33:30','2006-02-15 22:17:15'), - (10181,376,1,4320,'3.99','2005-07-07 17:51:59','2006-02-15 22:17:15'), - (10182,376,1,4554,'5.99','2005-07-08 04:48:03','2006-02-15 22:17:15'), - (10183,376,1,4869,'4.99','2005-07-08 19:14:05','2006-02-15 22:17:16'), - (10184,376,1,5675,'4.99','2005-07-10 08:31:06','2006-02-15 22:17:16'), - (10185,376,1,6524,'6.99','2005-07-12 04:14:35','2006-02-15 22:17:16'), - (10186,376,1,6545,'8.99','2005-07-12 04:56:30','2006-02-15 22:17:16'), - (10187,376,2,6807,'2.99','2005-07-12 17:33:53','2006-02-15 22:17:16'), - (10188,376,1,8269,'2.99','2005-07-29 01:26:54','2006-02-15 22:17:16'), - (10189,376,1,8420,'5.99','2005-07-29 07:00:45','2006-02-15 22:17:16'), - (10190,376,1,9773,'4.99','2005-07-31 09:56:56','2006-02-15 22:17:16'), - (10191,376,1,9828,'2.99','2005-07-31 11:56:57','2006-02-15 22:17:16'), - (10192,376,1,9872,'0.99','2005-07-31 13:27:55','2006-02-15 22:17:16'), - (10193,376,2,10413,'3.99','2005-08-01 07:59:39','2006-02-15 22:17:16'), - (10194,376,1,10810,'3.99','2005-08-01 22:40:39','2006-02-15 22:17:16'), - (10195,376,1,11144,'4.99','2005-08-02 09:39:17','2006-02-15 22:17:16'), - (10196,376,2,11792,'4.99','2005-08-17 11:03:53','2006-02-15 22:17:16'), - (10197,376,1,11851,'4.99','2005-08-17 13:30:27','2006-02-15 22:17:16'), - (10198,376,1,13009,'0.99','2005-08-19 07:50:35','2006-02-15 22:17:16'), - (10199,376,1,13141,'0.99','2005-08-19 12:41:41','2006-02-15 22:17:16'), - (10200,376,2,13761,'4.99','2005-08-20 11:28:50','2006-02-15 22:17:16'), - (10201,376,1,15107,'4.99','2005-08-22 12:05:02','2006-02-15 22:17:16'), - (10202,376,1,15382,'2.99','2005-08-22 22:30:50','2006-02-15 22:17:16'), - (10203,377,2,2556,'3.99','2005-06-19 03:07:32','2006-02-15 22:17:16'), - (10204,377,1,3080,'1.99','2005-06-20 15:22:32','2006-02-15 22:17:17'), - (10205,377,2,3086,'0.99','2005-06-20 15:42:40','2006-02-15 22:17:17'), - (10206,377,2,3136,'2.99','2005-06-20 19:39:08','2006-02-15 22:17:17'), - (10207,377,2,3443,'4.99','2005-06-21 20:19:00','2006-02-15 22:17:17'), - (10208,377,1,3858,'2.99','2005-07-06 17:17:57','2006-02-15 22:17:17'), - (10209,377,2,4053,'0.99','2005-07-07 03:39:22','2006-02-15 22:17:17'), - (10210,377,1,4077,'0.99','2005-07-07 04:53:40','2006-02-15 22:17:17'), - (10211,377,1,4225,'0.99','2005-07-07 12:24:37','2006-02-15 22:17:17'), - (10212,377,2,6893,'7.99','2005-07-12 21:20:11','2006-02-15 22:17:17'), - (10213,377,1,7697,'1.99','2005-07-28 03:43:45','2006-02-15 22:17:17'), - (10214,377,2,8018,'10.99','2005-07-28 15:36:48','2006-02-15 22:17:17'), - (10215,377,2,8916,'4.99','2005-07-30 01:42:21','2006-02-15 22:17:17'), - (10216,377,2,9461,'3.99','2005-07-30 22:29:13','2006-02-15 22:17:17'), - (10217,377,1,9564,'0.99','2005-07-31 02:31:37','2006-02-15 22:17:17'), - (10218,377,1,10013,'4.99','2005-07-31 18:08:21','2006-02-15 22:17:17'), - (10219,377,1,10183,'8.99','2005-08-01 00:08:01','2006-02-15 22:17:17'), - (10220,377,1,10738,'3.99','2005-08-01 19:39:08','2006-02-15 22:17:17'), - (10221,377,1,10943,'2.99','2005-08-02 03:17:29','2006-02-15 22:17:17'), - (10222,377,1,12390,'1.99','2005-08-18 08:51:42','2006-02-15 22:17:17'), - (10223,377,1,12549,'4.99','2005-08-18 14:38:07','2006-02-15 22:17:17'), - (10224,377,1,13249,'2.99','2005-08-19 16:47:41','2006-02-15 22:17:17'), - (10225,377,1,13275,'0.99','2005-08-19 17:53:38','2006-02-15 22:17:18'), - (10226,377,2,15088,'0.99','2005-08-22 11:28:26','2006-02-15 22:17:18'), - (10227,377,1,15995,'0.99','2005-08-23 20:29:56','2006-02-15 22:17:18'), - (10228,377,1,15999,'7.99','2005-08-23 20:44:10','2006-02-15 22:17:18'), - (10229,378,1,347,'0.99','2005-05-27 04:40:33','2006-02-15 22:17:18'), - (10230,378,2,1623,'4.99','2005-06-16 07:48:50','2006-02-15 22:17:18'), - (10231,378,1,1662,'5.99','2005-06-16 10:13:35','2006-02-15 22:17:18'), - (10232,378,2,2134,'7.99','2005-06-17 21:13:44','2006-02-15 22:17:18'), - (10233,378,2,2713,'4.99','2005-06-19 14:23:09','2006-02-15 22:17:18'), - (10234,378,1,3759,'4.99','2005-07-06 12:46:38','2006-02-15 22:17:18'), - (10235,378,2,4755,'0.99','2005-07-08 14:23:41','2006-02-15 22:17:18'), - (10236,378,1,5578,'1.99','2005-07-10 04:00:31','2006-02-15 22:17:18'), - (10237,378,2,6233,'1.99','2005-07-11 14:10:47','2006-02-15 22:17:18'), - (10238,378,1,7888,'0.99','2005-07-28 10:40:24','2006-02-15 22:17:18'), - (10239,378,2,8740,'2.99','2005-07-29 18:41:31','2006-02-15 22:17:18'), - (10240,378,2,9668,'3.99','2005-07-31 06:31:03','2006-02-15 22:17:18'), - (10241,378,1,9868,'2.99','2005-07-31 13:20:08','2006-02-15 22:17:18'), - (10242,378,1,10917,'4.99','2005-08-02 02:06:18','2006-02-15 22:17:18'), - (10243,378,1,11111,'4.99','2005-08-02 08:21:27','2006-02-15 22:17:18'), - (10244,378,1,12596,'2.99','2005-08-18 16:29:35','2006-02-15 22:17:18'), - (10245,378,1,12828,'4.99','2005-08-19 01:37:47','2006-02-15 22:17:19'), - (10246,378,2,14502,'4.99','2005-08-21 14:22:28','2006-02-15 22:17:19'), - (10247,378,1,14971,'2.99','2005-08-22 06:52:49','2006-02-15 22:17:19'), - (10248,379,2,209,'4.99','2005-05-26 08:14:01','2006-02-15 22:17:19'), - (10249,379,1,863,'4.99','2005-05-30 03:14:59','2006-02-15 22:17:19'), - (10250,379,1,1383,'8.99','2005-06-15 15:20:06','2006-02-15 22:17:19'), - (10251,379,1,2313,'5.99','2005-06-18 08:56:45','2006-02-15 22:17:19'), - (10252,379,1,2926,'2.99','2005-06-20 04:37:45','2006-02-15 22:17:19'), - (10253,379,1,3788,'4.99','2005-07-06 14:02:02','2006-02-15 22:17:19'), - (10254,379,2,4740,'2.99','2005-07-08 13:30:35','2006-02-15 22:17:19'), - (10255,379,1,5402,'4.99','2005-07-09 20:01:58','2006-02-15 22:17:19'), - (10256,379,1,6235,'7.99','2005-07-11 14:17:51','2006-02-15 22:17:19'), - (10257,379,2,7041,'4.99','2005-07-27 03:18:32','2006-02-15 22:17:19'), - (10258,379,1,10041,'4.99','2005-07-31 19:01:02','2006-02-15 22:17:19'), - (10259,379,2,11457,'3.99','2005-08-02 21:14:16','2006-02-15 22:17:19'), - (10260,379,1,12503,'4.99','2005-08-18 13:16:46','2006-02-15 22:17:19'), - (10261,379,1,13334,'0.99','2005-08-19 20:02:33','2006-02-15 22:17:19'), - (10262,379,2,13397,'7.99','2005-08-19 22:06:35','2006-02-15 22:17:19'), - (10263,379,1,13485,'0.99','2005-08-20 01:20:14','2006-02-15 22:17:19'), - (10264,379,1,14011,'5.99','2005-08-20 20:32:56','2006-02-15 22:17:19'), - (10265,379,2,14152,'2.99','2005-08-21 02:23:50','2006-02-15 22:17:19'), - (10266,379,1,14470,'0.99','2005-08-21 13:09:41','2006-02-15 22:17:20'), - (10267,379,1,14886,'4.99','2005-08-22 03:59:01','2006-02-15 22:17:20'), - (10268,379,2,15399,'4.99','2005-08-22 23:11:59','2006-02-15 22:17:20'), - (10269,379,1,15446,'4.99','2005-08-23 00:49:24','2006-02-15 22:17:20'), - (10270,379,2,15930,'3.99','2005-08-23 18:26:51','2006-02-15 22:17:20'), - (10271,380,1,847,'3.99','2005-05-30 01:18:15','2006-02-15 22:17:20'), - (10272,380,1,1868,'3.99','2005-06-17 02:03:22','2006-02-15 22:17:20'), - (10273,380,1,1984,'2.99','2005-06-17 10:25:28','2006-02-15 22:17:20'), - (10274,380,1,2018,'3.99','2005-06-17 12:35:58','2006-02-15 22:17:20'), - (10275,380,1,2440,'2.99','2005-06-18 18:41:09','2006-02-15 22:17:20'), - (10276,380,1,2464,'4.99','2005-06-18 20:06:05','2006-02-15 22:17:20'), - (10277,380,2,2998,'1.99','2005-06-20 09:30:22','2006-02-15 22:17:20'), - (10278,380,2,3099,'1.99','2005-06-20 16:44:33','2006-02-15 22:17:20'), - (10279,380,1,3260,'4.99','2005-06-21 03:59:13','2006-02-15 22:17:20'), - (10280,380,1,3637,'2.99','2005-07-06 07:06:31','2006-02-15 22:17:20'), - (10281,380,1,3688,'4.99','2005-07-06 09:41:53','2006-02-15 22:17:20'), - (10282,380,1,4675,'2.99','2005-07-08 10:24:22','2006-02-15 22:17:20'), - (10283,380,2,4706,'4.99','2005-07-08 11:51:41','2006-02-15 22:17:20'), - (10284,380,2,5339,'0.99','2005-07-09 17:09:17','2006-02-15 22:17:20'), - (10285,380,2,7021,'8.99','2005-07-27 02:26:38','2006-02-15 22:17:20'), - (10286,380,2,7167,'2.99','2005-07-27 07:37:26','2006-02-15 22:17:20'), - (10287,380,2,7435,'0.99','2005-07-27 17:38:44','2006-02-15 22:17:21'), - (10288,380,2,7443,'2.99','2005-07-27 17:47:43','2006-02-15 22:17:21'), - (10289,380,1,7773,'2.99','2005-07-28 07:02:17','2006-02-15 22:17:21'), - (10290,380,1,7974,'3.99','2005-07-28 14:11:57','2006-02-15 22:17:21'), - (10291,380,1,9056,'0.99','2005-07-30 07:13:20','2006-02-15 22:17:21'), - (10292,380,1,9261,'6.99','2005-07-30 14:39:35','2006-02-15 22:17:21'), - (10293,380,1,9710,'10.99','2005-07-31 08:05:31','2006-02-15 22:17:21'), - (10294,380,2,10450,'1.99','2005-08-01 09:10:03','2006-02-15 22:17:21'), - (10295,380,1,10983,'3.99','2005-08-02 04:24:23','2006-02-15 22:17:21'), - (10296,380,1,11936,'0.99','2005-08-17 16:45:34','2006-02-15 22:17:21'), - (10297,380,2,11945,'0.99','2005-08-17 17:05:33','2006-02-15 22:17:21'), - (10298,380,1,12636,'3.99','2005-08-18 18:00:29','2006-02-15 22:17:21'), - (10299,380,1,12996,'6.99','2005-08-19 07:31:32','2006-02-15 22:17:21'), - (10300,380,1,14529,'6.99','2005-08-21 15:08:31','2006-02-15 22:17:21'), - (10301,380,1,14935,'1.99','2005-08-22 05:47:31','2006-02-15 22:17:21'), - (10302,380,2,15175,'5.99','2005-08-22 15:29:15','2006-02-15 22:17:21'), - (10303,380,1,15361,'2.99','2005-08-22 21:39:45','2006-02-15 22:17:21'), - (10304,380,2,15636,'2.99','2005-08-23 07:50:46','2006-02-15 22:17:21'), - (10305,380,1,15697,'2.99','2005-08-23 10:04:36','2006-02-15 22:17:21'), - (10306,380,2,15748,'2.99','2005-08-23 12:33:00','2006-02-15 22:17:21'), - (10307,381,2,169,'0.99','2005-05-26 03:09:30','2006-02-15 22:17:22'), - (10308,381,2,406,'2.99','2005-05-27 13:46:46','2006-02-15 22:17:22'), - (10309,381,1,835,'2.99','2005-05-29 23:37:00','2006-02-15 22:17:22'), - (10310,381,1,1402,'3.99','2005-06-15 16:31:08','2006-02-15 22:17:22'), - (10311,381,1,1878,'1.99','2005-06-17 02:55:32','2006-02-15 22:17:22'), - (10312,381,2,2410,'2.99','2005-06-18 16:55:08','2006-02-15 22:17:22'), - (10313,381,1,2418,'4.99','2005-06-18 17:14:42','2006-02-15 22:17:22'), - (10314,381,2,3425,'2.99','2005-06-21 18:07:07','2006-02-15 22:17:22'), - (10315,381,2,3812,'0.99','2005-07-06 15:22:19','2006-02-15 22:17:22'), - (10316,381,2,3970,'2.99','2005-07-06 22:48:17','2006-02-15 22:17:22'), - (10317,381,1,4735,'0.99','2005-07-08 13:12:27','2006-02-15 22:17:22'), - (10318,381,2,5689,'0.99','2005-07-10 09:24:17','2006-02-15 22:17:22'), - (10319,381,2,6116,'2.99','2005-07-11 07:37:38','2006-02-15 22:17:22'), - (10320,381,2,6451,'4.99','2005-07-12 00:52:19','2006-02-15 22:17:22'), - (10321,381,2,6778,'2.99','2005-07-12 16:06:00','2006-02-15 22:17:22'), - (10322,381,1,7375,'2.99','2005-07-27 15:22:33','2006-02-15 22:17:22'), - (10323,381,1,7645,'2.99','2005-07-28 01:27:42','2006-02-15 22:17:22'), - (10324,381,2,8688,'0.99','2005-07-29 16:31:32','2006-02-15 22:17:22'), - (10325,381,2,9144,'0.99','2005-07-30 10:22:15','2006-02-15 22:17:22'), - (10326,381,2,9173,'4.99','2005-07-30 11:40:10','2006-02-15 22:17:22'), - (10327,381,1,9822,'2.99','2005-07-31 11:48:25','2006-02-15 22:17:22'), - (10328,381,2,10033,'4.99','2005-07-31 18:44:29','2006-02-15 22:17:23'), - (10329,381,1,10608,'0.99','2005-08-01 14:48:41','2006-02-15 22:17:23'), - (10330,381,2,10705,'0.99','2005-08-01 18:38:54','2006-02-15 22:17:23'), - (10331,381,1,11519,'2.99','2005-08-17 00:01:27','2006-02-15 22:17:23'), - (10332,381,2,12135,'2.99','2005-08-17 23:50:24','2006-02-15 22:17:23'), - (10333,381,2,12237,'4.99','2005-08-18 03:24:38','2006-02-15 22:17:23'), - (10334,381,2,12632,'2.99','2005-08-18 17:54:21','2006-02-15 22:17:23'), - (10335,381,2,13202,'8.99','2005-08-19 14:58:30','2006-02-15 22:17:23'), - (10336,381,2,13430,'0.99','2005-08-19 23:25:43','2006-02-15 22:17:23'), - (10337,381,1,13614,'0.99','2005-08-20 06:28:37','2006-02-15 22:17:23'), - (10338,381,2,13995,'2.99','2005-08-20 19:34:43','2006-02-15 22:17:23'), - (10339,381,1,14198,'4.99','2005-08-21 03:48:31','2006-02-15 22:17:23'), - (10340,381,2,15299,'4.99','2005-08-22 19:42:57','2006-02-15 22:17:23'), - (10341,381,1,15747,'4.99','2005-08-23 12:29:24','2006-02-15 22:17:23'), - (10342,382,2,356,'2.99','2005-05-27 06:32:30','2006-02-15 22:17:23'), - (10343,382,1,522,'2.99','2005-05-28 03:33:20','2006-02-15 22:17:23'), - (10344,382,1,2389,'0.99','2005-06-18 15:27:47','2006-02-15 22:17:23'), - (10345,382,1,2468,'4.99','2005-06-18 20:23:52','2006-02-15 22:17:23'), - (10346,382,1,2489,'1.99','2005-06-18 22:00:44','2006-02-15 22:17:23'), - (10347,382,1,2514,'2.99','2005-06-18 23:56:44','2006-02-15 22:17:23'), - (10348,382,2,3125,'4.99','2005-06-20 18:31:58','2006-02-15 22:17:24'), - (10349,382,2,3480,'3.99','2005-07-05 23:11:43','2006-02-15 22:17:24'), - (10350,382,2,4351,'4.99','2005-07-07 19:04:24','2006-02-15 22:17:24'), - (10351,382,1,5004,'4.99','2005-07-09 01:20:50','2006-02-15 22:17:24'), - (10352,382,1,5816,'0.99','2005-07-10 15:48:47','2006-02-15 22:17:24'), - (10353,382,2,7625,'0.99','2005-07-28 00:47:56','2006-02-15 22:17:24'), - (10354,382,2,8777,'0.99','2005-07-29 20:10:21','2006-02-15 22:17:24'), - (10355,382,1,8871,'9.99','2005-07-30 00:12:41','2006-02-15 22:17:24'), - (10356,382,1,8993,'4.99','2005-07-30 04:51:25','2006-02-15 22:17:24'), - (10357,382,1,9067,'6.99','2005-07-30 07:31:01','2006-02-15 22:17:24'), - (10358,382,2,9555,'0.99','2005-07-31 02:11:16','2006-02-15 22:17:24'), - (10359,382,2,10327,'3.99','2005-08-01 04:55:35','2006-02-15 22:17:24'), - (10360,382,2,12229,'0.99','2005-08-18 03:08:23','2006-02-15 22:17:24'), - (10361,382,2,12529,'0.99','2005-08-18 13:53:36','2006-02-15 22:17:24'), - (10362,382,1,14009,'4.99','2005-08-20 20:26:53','2006-02-15 22:17:24'), - (10363,382,2,14300,'4.99','2005-08-21 07:19:37','2006-02-15 22:17:24'), - (10364,382,2,14354,'5.99','2005-08-21 09:08:14','2006-02-15 22:17:24'), - (10365,382,2,15939,'7.99','2005-08-23 18:44:21','2006-02-15 22:17:24'), - (10366,383,2,63,'0.99','2005-05-25 09:19:16','2006-02-15 22:17:24'), - (10367,383,1,766,'8.99','2005-05-29 11:47:02','2006-02-15 22:17:24'), - (10368,383,1,1831,'7.99','2005-06-16 22:22:17','2006-02-15 22:17:25'), - (10369,383,2,2228,'2.99','2005-06-18 03:44:50','2006-02-15 22:17:25'), - (10370,383,1,2252,'2.99','2005-06-18 05:05:18','2006-02-15 22:17:25'), - (10371,383,2,2318,'2.99','2005-06-18 09:13:54','2006-02-15 22:17:25'), - (10372,383,1,2609,'7.99','2005-06-19 07:13:12','2006-02-15 22:17:25'), - (10373,383,1,3091,'2.99','2005-06-20 16:02:59','2006-02-15 22:17:25'), - (10374,383,2,4747,'5.99','2005-07-08 13:53:01','2006-02-15 22:17:25'), - (10375,383,2,6091,'4.99','2005-07-11 05:49:18','2006-02-15 22:17:25'), - (10376,383,2,6244,'0.99','2005-07-11 14:53:38','2006-02-15 22:17:25'), - (10377,383,1,6775,'4.99','2005-07-12 16:01:44','2006-02-15 22:17:25'), - (10378,383,1,7367,'3.99','2005-07-27 15:05:45','2006-02-15 22:17:25'), - (10379,383,2,8367,'2.99','2005-07-29 05:11:19','2006-02-15 22:17:25'), - (10380,383,1,8635,'0.99','2005-07-29 14:22:48','2006-02-15 22:17:25'), - (10381,383,1,9653,'0.99','2005-07-31 05:55:38','2006-02-15 22:17:25'), - (10382,383,1,9678,'0.99','2005-07-31 06:40:47','2006-02-15 22:17:25'), - (10383,383,2,10515,'4.99','2005-08-01 11:41:33','2006-02-15 22:17:25'), - (10384,383,1,10971,'4.99','2005-08-02 04:08:17','2006-02-15 22:17:25'), - (10385,383,2,10993,'0.99','2005-08-02 04:45:01','2006-02-15 22:17:25'), - (10386,383,2,11122,'0.99','2005-08-02 08:49:09','2006-02-15 22:17:25'), - (10387,383,1,11592,'2.99','2005-08-17 02:36:04','2006-02-15 22:17:25'), - (10388,383,1,12735,'4.99','2005-08-18 22:04:54','2006-02-15 22:17:25'), - (10389,383,2,14039,'4.99','2005-08-20 21:39:43','2006-02-15 22:17:26'), - (10390,383,2,14678,'4.99','2005-08-21 20:12:43','2006-02-15 22:17:26'), - (10391,383,1,15416,'1.99','2005-08-22 23:51:23','2006-02-15 22:17:26'), - (10392,383,1,15881,'6.99','2005-08-23 16:44:25','2006-02-15 22:17:26'), - (10393,384,2,103,'4.99','2005-05-25 17:30:42','2006-02-15 22:17:26'), - (10394,384,2,279,'2.99','2005-05-26 18:02:50','2006-02-15 22:17:26'), - (10395,384,1,898,'0.99','2005-05-30 09:26:19','2006-02-15 22:17:26'), - (10396,384,2,1013,'2.99','2005-05-31 02:37:00','2006-02-15 22:17:26'), - (10397,384,1,1961,'0.99','2005-06-17 09:02:58','2006-02-15 22:17:26'), - (10398,384,2,2020,'0.99','2005-06-17 12:39:50','2006-02-15 22:17:26'), - (10399,384,1,2378,'7.99','2005-06-18 14:57:49','2006-02-15 22:17:26'), - (10400,384,2,2510,'5.99','2005-06-18 23:44:21','2006-02-15 22:17:26'), - (10401,384,2,2935,'3.99','2005-06-20 05:07:24','2006-02-15 22:17:26'), - (10402,384,1,3088,'9.99','2005-06-20 15:56:05','2006-02-15 22:17:26'), - (10403,384,2,3101,'4.99','2005-06-20 16:48:58','2006-02-15 22:17:26'), - (10404,384,2,4424,'0.99','2005-07-07 22:14:43','2006-02-15 22:17:26'), - (10405,384,2,5250,'0.99','2005-07-09 13:35:32','2006-02-15 22:17:26'), - (10406,384,1,5608,'4.99','2005-07-10 05:08:26','2006-02-15 22:17:26'), - (10407,384,2,5797,'4.99','2005-07-10 14:43:52','2006-02-15 22:17:26'), - (10408,384,2,5966,'2.99','2005-07-10 23:59:27','2006-02-15 22:17:26'), - (10409,384,2,6387,'0.99','2005-07-11 22:15:56','2006-02-15 22:17:27'), - (10410,384,2,7799,'0.99','2005-07-28 07:42:09','2006-02-15 22:17:27'), - (10411,384,1,8445,'1.99','2005-07-29 07:37:48','2006-02-15 22:17:27'), - (10412,384,2,11773,'5.99','2005-08-17 10:19:51','2006-02-15 22:17:27'), - (10413,384,2,13521,'2.99','2005-08-20 02:42:28','2006-02-15 22:17:27'), - (10414,384,2,14416,'2.99','2005-08-21 11:11:46','2006-02-15 22:17:27'), - (10415,384,1,14841,'0.99','2005-08-22 02:03:30','2006-02-15 22:17:27'), - (10416,384,1,14963,'5.99','2005-08-22 06:38:10','2006-02-15 22:17:27'), - (10417,384,2,15321,'4.99','2005-08-22 20:20:04','2006-02-15 22:17:27'), - (10418,385,1,917,'2.99','2005-05-30 11:27:06','2006-02-15 22:17:27'), - (10419,385,2,1038,'4.99','2005-05-31 05:23:47','2006-02-15 22:17:27'), - (10420,385,1,1746,'2.99','2005-06-16 16:41:19','2006-02-15 22:17:27'), - (10421,385,1,1937,'0.99','2005-06-17 07:16:46','2006-02-15 22:17:27'), - (10422,385,1,3105,'0.99','2005-06-20 17:11:46','2006-02-15 22:17:27'), - (10423,385,2,3878,'8.99','2005-07-06 18:27:09','2006-02-15 22:17:27'), - (10424,385,2,3953,'0.99','2005-07-06 21:54:55','2006-02-15 22:17:27'), - (10425,385,1,4714,'6.99','2005-07-08 12:12:48','2006-02-15 22:17:27'), - (10426,385,1,5783,'2.99','2005-07-10 13:55:33','2006-02-15 22:17:27'), - (10427,385,1,6445,'4.99','2005-07-12 00:37:02','2006-02-15 22:17:27'), - (10428,385,2,6933,'4.99','2005-07-26 23:09:23','2006-02-15 22:17:27'), - (10429,385,2,7776,'0.99','2005-07-28 07:04:36','2006-02-15 22:17:28'), - (10430,385,1,8346,'2.99','2005-07-29 04:48:22','2006-02-15 22:17:28'), - (10431,385,1,8518,'2.99','2005-07-29 10:05:27','2006-02-15 22:17:28'), - (10432,385,1,9570,'2.99','2005-07-31 02:40:37','2006-02-15 22:17:28'), - (10433,385,1,9704,'4.99','2005-07-31 07:39:32','2006-02-15 22:17:28'), - (10434,385,1,10557,'0.99','2005-08-01 12:59:24','2006-02-15 22:17:28'), - (10435,385,1,10636,'3.99','2005-08-01 15:40:35','2006-02-15 22:17:28'), - (10436,385,1,10655,'4.99','2005-08-01 16:33:27','2006-02-15 22:17:28'), - (10437,385,1,11021,'2.99','2005-08-02 05:30:11','2006-02-15 22:17:28'), - (10438,385,1,11559,'2.99','2005-08-17 01:20:26','2006-02-15 22:17:28'), - (10439,385,2,12310,'2.99','2005-08-18 06:02:34','2006-02-15 22:17:28'), - (10440,385,2,12686,'8.99','2005-08-18 19:55:09','2006-02-15 22:17:28'), - (10441,385,2,13062,'7.99','2005-08-19 09:44:17','2006-02-15 22:17:28'), - (10442,385,1,13117,'0.99','2005-08-19 11:33:20','2006-02-15 22:17:28'), - (10443,385,1,15488,'6.99','2005-08-23 02:06:01','2006-02-15 22:17:28'), - (10444,386,1,583,'7.99','2005-05-28 11:48:55','2006-02-15 22:17:28'), - (10445,386,2,1585,'3.99','2005-06-16 04:51:13','2006-02-15 22:17:28'), - (10446,386,1,1608,'2.99','2005-06-16 06:28:57','2006-02-15 22:17:28'), - (10447,386,2,1819,'5.99','2005-06-16 21:32:50','2006-02-15 22:17:28'), - (10448,386,1,2732,'0.99','2005-06-19 15:19:39','2006-02-15 22:17:28'), - (10449,386,1,3351,'2.99','2005-06-21 11:21:39','2006-02-15 22:17:29'), - (10450,386,2,3783,'6.99','2005-07-06 13:57:31','2006-02-15 22:17:29'), - (10451,386,1,4189,'8.99','2005-07-07 10:51:07','2006-02-15 22:17:29'), - (10452,386,1,5524,'0.99','2005-07-10 01:49:24','2006-02-15 22:17:29'), - (10453,386,1,5953,'2.99','2005-07-10 23:21:35','2006-02-15 22:17:29'), - (10454,386,1,6037,'4.99','2005-07-11 03:06:54','2006-02-15 22:17:29'), - (10455,386,1,6222,'2.99','2005-07-11 13:25:49','2006-02-15 22:17:29'), - (10456,386,2,6261,'2.99','2005-07-11 15:28:34','2006-02-15 22:17:29'), - (10457,386,1,6324,'3.99','2005-07-11 19:02:34','2006-02-15 22:17:29'), - (10458,386,2,6715,'4.99','2005-07-12 13:32:28','2006-02-15 22:17:29'), - (10459,386,2,8340,'4.99','2005-07-29 04:41:44','2006-02-15 22:17:29'), - (10460,386,1,8751,'2.99','2005-07-29 19:14:39','2006-02-15 22:17:29'), - (10461,386,2,9602,'0.99','2005-07-31 03:42:51','2006-02-15 22:17:29'), - (10462,386,1,9686,'5.99','2005-07-31 06:50:06','2006-02-15 22:17:29'), - (10463,386,1,10572,'4.99','2005-08-01 13:26:53','2006-02-15 22:17:29'), - (10464,386,2,10618,'3.99','2005-08-01 15:06:38','2006-02-15 22:17:29'), - (10465,386,1,10715,'2.99','2005-08-01 18:51:48','2006-02-15 22:17:29'), - (10466,386,2,11128,'2.99','2005-08-02 09:03:25','2006-02-15 22:17:30'), - (10467,386,2,11695,'4.99','2005-08-17 07:01:08','2006-02-15 22:17:30'), - (10468,386,2,12961,'2.99','2005-08-19 06:22:37','2006-02-15 22:17:30'), - (10469,386,1,13716,'3.99','2005-08-20 09:48:32','2006-02-15 22:17:30'), - (10470,386,1,13764,'2.99','2005-08-20 11:38:16','2006-02-15 22:17:30'), - (10471,386,2,13869,'6.99','2005-08-20 15:08:57','2006-02-15 22:17:30'), - (10472,386,1,15949,'0.99','2005-08-23 19:06:04','2006-02-15 22:17:30'), - (10473,387,2,302,'4.99','2005-05-26 21:13:46','2006-02-15 22:17:30'), - (10474,387,1,697,'7.99','2005-05-29 02:04:04','2006-02-15 22:17:30'), - (10475,387,1,841,'4.99','2005-05-30 00:31:17','2006-02-15 22:17:30'), - (10476,387,1,1127,'3.99','2005-05-31 17:45:49','2006-02-15 22:17:30'), - (10477,387,1,1464,'0.99','2005-06-15 20:38:14','2006-02-15 22:17:30'), - (10478,387,2,1465,'0.99','2005-06-15 20:43:08','2006-02-15 22:17:30'), - (10479,387,1,2068,'0.99','2005-06-17 16:11:46','2006-02-15 22:17:30'), - (10480,387,2,2100,'0.99','2005-06-17 18:53:21','2006-02-15 22:17:30'), - (10481,387,2,2981,'5.99','2005-06-20 08:35:17','2006-02-15 22:17:30'), - (10482,387,2,3378,'4.99','2005-06-21 13:51:28','2006-02-15 22:17:30'), - (10483,387,2,6216,'4.99','2005-07-11 12:57:05','2006-02-15 22:17:30'), - (10484,387,2,6456,'6.99','2005-07-12 01:05:11','2006-02-15 22:17:31'), - (10485,387,1,6517,'5.99','2005-07-12 03:52:39','2006-02-15 22:17:31'), - (10486,387,1,7497,'0.99','2005-07-27 20:05:27','2006-02-15 22:17:31'), - (10487,387,1,8090,'2.99','2005-07-28 18:27:29','2006-02-15 22:17:31'), - (10488,387,1,10564,'0.99','2005-08-01 13:07:34','2006-02-15 22:17:31'), - (10489,387,1,10838,'4.99','2005-08-01 23:36:10','2006-02-15 22:17:31'), - (10490,387,2,11682,'2.99','2005-08-17 06:13:40','2006-02-15 22:17:31'), - (10491,387,2,12153,'4.99','2005-08-18 00:22:30','2006-02-15 22:17:31'), - (10492,387,1,12936,'6.99','2005-08-19 05:25:06','2006-02-15 22:17:31'), - (10493,387,2,13034,'2.99','2005-08-19 08:41:29','2006-02-15 22:17:31'), - (10494,387,1,13082,'5.99','2005-08-19 10:19:19','2006-02-15 22:17:31'), - (10495,387,2,13645,'0.99','2005-08-20 07:47:05','2006-02-15 22:17:31'), - (10496,387,2,13772,'4.99','2005-08-20 11:47:52','2006-02-15 22:17:31'), - (10497,387,2,14279,'5.99','2005-08-21 06:39:08','2006-02-15 22:17:31'), - (10498,387,2,14979,'0.99','2005-08-22 07:16:36','2006-02-15 22:17:31'), - (10499,388,2,21,'4.99','2005-05-25 01:59:46','2006-02-15 22:17:31'), - (10500,388,2,411,'4.99','2005-05-27 14:14:14','2006-02-15 22:17:31'), - (10501,388,2,1276,'6.99','2005-06-15 08:00:13','2006-02-15 22:17:31'), - (10502,388,1,2145,'0.99','2005-06-17 22:10:36','2006-02-15 22:17:31'), - (10503,388,1,2537,'5.99','2005-06-19 01:52:21','2006-02-15 22:17:32'), - (10504,388,1,2692,'4.99','2005-06-19 13:08:19','2006-02-15 22:17:32'), - (10505,388,2,3159,'7.99','2005-06-20 21:11:50','2006-02-15 22:17:32'), - (10506,388,2,4947,'5.99','2005-07-08 22:49:37','2006-02-15 22:17:32'), - (10507,388,2,5899,'2.99','2005-07-10 20:21:52','2006-02-15 22:17:32'), - (10508,388,2,6321,'2.99','2005-07-11 18:51:02','2006-02-15 22:17:32'), - (10509,388,1,6452,'2.99','2005-07-12 00:57:31','2006-02-15 22:17:32'), - (10510,388,2,7985,'5.99','2005-07-28 14:29:01','2006-02-15 22:17:32'), - (10511,388,2,8456,'3.99','2005-07-29 07:58:31','2006-02-15 22:17:32'), - (10512,388,2,9213,'0.99','2005-07-30 13:07:11','2006-02-15 22:17:32'), - (10513,388,2,9368,'2.99','2005-07-30 18:50:53','2006-02-15 22:17:32'), - (10514,388,2,9840,'2.99','2005-07-31 12:23:18','2006-02-15 22:17:32'), - (10515,388,2,9940,'0.99','2005-07-31 15:29:06','2006-02-15 22:17:32'), - (10516,388,2,10044,'2.99','2005-07-31 19:02:33','2006-02-15 22:17:32'), - (10517,388,2,11604,'0.99','2005-08-17 03:28:27','2006-02-15 22:17:32'), - (10518,388,2,12044,'0.99','2005-08-17 20:39:37','2006-02-15 22:17:32'), - (10519,388,1,12068,'2.99','2005-08-17 21:37:08','2006-02-15 22:17:32'), - (10520,388,2,12267,'6.99','2005-08-18 04:24:30','2006-02-15 22:17:32'), - (10521,388,2,12497,'4.99','2005-08-18 12:58:40','2006-02-15 22:17:32'), - (10522,388,2,12646,'2.99','2005-08-18 18:25:06','2006-02-15 22:17:32'), - (10523,388,1,12749,'2.99','2005-08-18 22:31:21','2006-02-15 22:17:33'), - (10524,388,1,12977,'4.99','2005-08-19 06:55:33','2006-02-15 22:17:33'), - (10525,388,1,14273,'10.99','2005-08-21 06:26:48','2006-02-15 22:17:33'), - (10526,388,2,14853,'5.99','2005-08-22 02:26:33','2006-02-15 22:17:33'), - (10527,388,2,15660,'5.99','2005-08-23 08:51:21','2006-02-15 22:17:33'), - (10528,388,1,12891,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:33'), - (10529,389,1,998,'4.99','2005-05-31 00:16:57','2006-02-15 22:17:33'), - (10530,389,1,1763,'4.99','2005-06-16 17:51:01','2006-02-15 22:17:33'), - (10531,389,1,1946,'4.99','2005-06-17 07:58:39','2006-02-15 22:17:33'), - (10532,389,1,2552,'3.99','2005-06-19 03:01:29','2006-02-15 22:17:33'), - (10533,389,2,3527,'0.99','2005-07-06 01:11:08','2006-02-15 22:17:33'), - (10534,389,1,4443,'6.99','2005-07-07 23:05:53','2006-02-15 22:17:33'), - (10535,389,1,5249,'0.99','2005-07-09 13:33:53','2006-02-15 22:17:33'), - (10536,389,2,5626,'3.99','2005-07-10 05:49:35','2006-02-15 22:17:33'), - (10537,389,2,6104,'2.99','2005-07-11 07:01:35','2006-02-15 22:17:33'), - (10538,389,1,6600,'3.99','2005-07-12 07:41:48','2006-02-15 22:17:33'), - (10539,389,1,7029,'4.99','2005-07-27 02:57:43','2006-02-15 22:17:33'), - (10540,389,1,7896,'8.99','2005-07-28 11:00:58','2006-02-15 22:17:33'), - (10541,389,2,7977,'4.99','2005-07-28 14:15:54','2006-02-15 22:17:33'), - (10542,389,1,8338,'6.99','2005-07-29 04:40:39','2006-02-15 22:17:34'), - (10543,389,1,8887,'4.99','2005-07-30 00:36:54','2006-02-15 22:17:34'), - (10544,389,1,10217,'4.99','2005-08-01 01:07:27','2006-02-15 22:17:34'), - (10545,389,1,10949,'2.99','2005-08-02 03:24:04','2006-02-15 22:17:34'), - (10546,389,2,11348,'4.99','2005-08-02 17:18:38','2006-02-15 22:17:34'), - (10547,389,2,11441,'2.99','2005-08-02 20:25:41','2006-02-15 22:17:34'), - (10548,389,2,11944,'3.99','2005-08-17 17:02:42','2006-02-15 22:17:34'), - (10549,389,2,12069,'4.99','2005-08-17 21:39:40','2006-02-15 22:17:34'), - (10550,389,2,14493,'7.99','2005-08-21 14:01:44','2006-02-15 22:17:34'), - (10551,389,1,14578,'2.99','2005-08-21 16:53:38','2006-02-15 22:17:34'), - (10552,389,1,14777,'2.99','2005-08-21 23:55:50','2006-02-15 22:17:34'), - (10553,389,1,15462,'5.99','2005-08-23 01:14:01','2006-02-15 22:17:34'), - (10554,389,2,16011,'9.99','2005-08-23 21:11:33','2006-02-15 22:17:34'), - (10555,390,1,254,'4.99','2005-05-26 14:43:48','2006-02-15 22:17:34'), - (10556,390,2,912,'4.99','2005-05-30 10:58:33','2006-02-15 22:17:34'), - (10557,390,2,1539,'5.99','2005-06-16 01:11:25','2006-02-15 22:17:34'), - (10558,390,2,1730,'2.99','2005-06-16 15:30:01','2006-02-15 22:17:34'), - (10559,390,2,1893,'2.99','2005-06-17 04:18:37','2006-02-15 22:17:34'), - (10560,390,1,2330,'7.99','2005-06-18 10:41:19','2006-02-15 22:17:34'), - (10561,390,1,3147,'5.99','2005-06-20 20:25:17','2006-02-15 22:17:34'), - (10562,390,1,3999,'2.99','2005-07-06 23:50:54','2006-02-15 22:17:35'), - (10563,390,1,4022,'4.99','2005-07-07 01:50:06','2006-02-15 22:17:35'), - (10564,390,2,4191,'3.99','2005-07-07 10:56:14','2006-02-15 22:17:35'), - (10565,390,2,4310,'2.99','2005-07-07 17:30:56','2006-02-15 22:17:35'), - (10566,390,1,4968,'5.99','2005-07-08 23:49:19','2006-02-15 22:17:35'), - (10567,390,1,6215,'4.99','2005-07-11 12:52:36','2006-02-15 22:17:35'), - (10568,390,1,6430,'0.99','2005-07-12 00:03:34','2006-02-15 22:17:35'), - (10569,390,2,7515,'3.99','2005-07-27 20:52:37','2006-02-15 22:17:35'), - (10570,390,1,7595,'5.99','2005-07-27 23:32:23','2006-02-15 22:17:35'), - (10571,390,1,8493,'0.99','2005-07-29 09:04:31','2006-02-15 22:17:35'), - (10572,390,1,9251,'5.99','2005-07-30 14:19:25','2006-02-15 22:17:35'), - (10573,390,2,9314,'2.99','2005-07-30 17:05:19','2006-02-15 22:17:35'), - (10574,390,1,9825,'4.99','2005-07-31 11:50:51','2006-02-15 22:17:35'), - (10575,390,1,10061,'4.99','2005-07-31 19:23:25','2006-02-15 22:17:35'), - (10576,390,1,12105,'5.99','2005-08-17 22:54:45','2006-02-15 22:17:35'), - (10577,390,2,12803,'2.99','2005-08-19 00:28:21','2006-02-15 22:17:35'), - (10578,390,1,13413,'3.99','2005-08-19 22:46:46','2006-02-15 22:17:35'), - (10579,390,1,13473,'4.99','2005-08-20 01:03:50','2006-02-15 22:17:35'), - (10580,390,1,13501,'0.99','2005-08-20 01:56:20','2006-02-15 22:17:35'), - (10581,390,2,13546,'3.99','2005-08-20 03:50:24','2006-02-15 22:17:36'), - (10582,390,2,13591,'3.99','2005-08-20 05:50:05','2006-02-15 22:17:36'), - (10583,390,2,13618,'7.99','2005-08-20 06:36:46','2006-02-15 22:17:36'), - (10584,390,2,13893,'5.99','2005-08-20 15:52:52','2006-02-15 22:17:36'), - (10585,390,2,15222,'4.99','2005-08-22 17:12:30','2006-02-15 22:17:36'), - (10586,390,2,15303,'8.99','2005-08-22 19:44:59','2006-02-15 22:17:36'), - (10587,390,2,15376,'4.99','2005-08-22 22:21:35','2006-02-15 22:17:36'), - (10588,391,2,73,'4.99','2005-05-25 11:00:07','2006-02-15 22:17:36'), - (10589,391,1,210,'2.99','2005-05-26 08:14:15','2006-02-15 22:17:36'), - (10590,391,1,317,'5.99','2005-05-26 23:23:56','2006-02-15 22:17:36'), - (10591,391,2,870,'2.99','2005-05-30 04:25:47','2006-02-15 22:17:36'), - (10592,391,1,891,'7.99','2005-05-30 07:43:12','2006-02-15 22:17:36'), - (10593,391,2,1232,'0.99','2005-06-15 04:18:10','2006-02-15 22:17:36'), - (10594,391,2,1931,'0.99','2005-06-17 06:51:56','2006-02-15 22:17:36'), - (10595,391,1,2045,'2.99','2005-06-17 14:38:11','2006-02-15 22:17:36'), - (10596,391,1,2690,'2.99','2005-06-19 13:00:02','2006-02-15 22:17:36'), - (10597,391,2,3163,'2.99','2005-06-20 21:22:13','2006-02-15 22:17:36'), - (10598,391,1,4188,'5.99','2005-07-07 10:45:29','2006-02-15 22:17:36'), - (10599,391,1,4716,'0.99','2005-07-08 12:18:51','2006-02-15 22:17:36'), - (10600,391,2,4753,'0.99','2005-07-08 14:18:41','2006-02-15 22:17:37'), - (10601,391,2,5583,'7.99','2005-07-10 04:08:48','2006-02-15 22:17:37'), - (10602,391,1,5599,'4.99','2005-07-10 04:52:04','2006-02-15 22:17:37'), - (10603,391,1,6302,'3.99','2005-07-11 17:55:38','2006-02-15 22:17:37'), - (10604,391,1,6463,'2.99','2005-07-12 01:16:11','2006-02-15 22:17:37'), - (10605,391,2,8016,'0.99','2005-07-28 15:35:41','2006-02-15 22:17:37'), - (10606,391,1,8908,'0.99','2005-07-30 01:26:05','2006-02-15 22:17:37'), - (10607,391,2,8913,'6.99','2005-07-30 01:35:01','2006-02-15 22:17:37'), - (10608,391,1,9225,'0.99','2005-07-30 13:29:47','2006-02-15 22:17:37'), - (10609,391,1,10210,'7.99','2005-08-01 00:58:52','2006-02-15 22:17:37'), - (10610,391,2,10406,'2.99','2005-08-01 07:37:05','2006-02-15 22:17:37'), - (10611,391,1,11151,'4.99','2005-08-02 09:52:44','2006-02-15 22:17:37'), - (10612,391,2,11434,'2.99','2005-08-02 20:13:14','2006-02-15 22:17:37'), - (10613,391,1,11602,'4.99','2005-08-17 03:21:19','2006-02-15 22:17:37'), - (10614,391,1,12090,'0.99','2005-08-17 22:21:43','2006-02-15 22:17:37'), - (10615,391,1,12100,'1.99','2005-08-17 22:41:10','2006-02-15 22:17:37'), - (10616,391,1,13980,'2.99','2005-08-20 19:04:40','2006-02-15 22:17:37'), - (10617,391,1,14381,'0.99','2005-08-21 09:55:47','2006-02-15 22:17:37'), - (10618,392,2,1530,'6.99','2005-06-16 00:38:07','2006-02-15 22:17:37'), - (10619,392,2,1764,'2.99','2005-06-16 17:51:54','2006-02-15 22:17:38'), - (10620,392,2,2289,'2.99','2005-06-18 07:29:43','2006-02-15 22:17:38'), - (10621,392,2,2890,'4.99','2005-06-20 02:00:45','2006-02-15 22:17:38'), - (10622,392,1,3566,'2.99','2005-07-06 03:08:51','2006-02-15 22:17:38'), - (10623,392,2,6061,'0.99','2005-07-11 04:06:25','2006-02-15 22:17:38'), - (10624,392,2,6406,'2.99','2005-07-11 22:55:27','2006-02-15 22:17:38'), - (10625,392,1,7692,'2.99','2005-07-28 03:30:21','2006-02-15 22:17:38'), - (10626,392,1,7981,'1.99','2005-07-28 14:18:25','2006-02-15 22:17:38'), - (10627,392,1,8254,'0.99','2005-07-29 00:59:31','2006-02-15 22:17:38'), - (10628,392,2,8612,'9.99','2005-07-29 13:28:20','2006-02-15 22:17:38'), - (10629,392,2,10085,'0.99','2005-07-31 20:12:02','2006-02-15 22:17:38'), - (10630,392,1,10435,'4.99','2005-08-01 08:50:51','2006-02-15 22:17:38'), - (10631,392,1,11459,'0.99','2005-08-02 21:25:25','2006-02-15 22:17:38'), - (10632,392,1,11686,'2.99','2005-08-17 06:39:30','2006-02-15 22:17:38'), - (10633,392,2,12102,'6.99','2005-08-17 22:45:26','2006-02-15 22:17:38'), - (10634,392,1,12368,'6.99','2005-08-18 07:57:38','2006-02-15 22:17:38'), - (10635,392,2,12561,'0.99','2005-08-18 14:58:51','2006-02-15 22:17:38'), - (10636,392,1,13629,'4.99','2005-08-20 07:04:07','2006-02-15 22:17:38'), - (10637,392,2,14081,'7.99','2005-08-20 23:35:13','2006-02-15 22:17:38'), - (10638,392,1,14223,'5.99','2005-08-21 04:51:51','2006-02-15 22:17:39'), - (10639,392,2,14369,'0.99','2005-08-21 09:33:44','2006-02-15 22:17:39'), - (10640,392,2,14438,'5.99','2005-08-21 11:51:10','2006-02-15 22:17:39'), - (10641,393,1,599,'4.99','2005-05-28 14:05:57','2006-02-15 22:17:39'), - (10642,393,2,886,'0.99','2005-05-30 06:54:51','2006-02-15 22:17:39'), - (10643,393,1,1611,'6.99','2005-06-16 06:41:35','2006-02-15 22:17:39'), - (10644,393,2,1915,'1.99','2005-06-17 05:28:28','2006-02-15 22:17:39'), - (10645,393,2,2219,'2.99','2005-06-18 03:16:54','2006-02-15 22:17:39'), - (10646,393,1,2319,'4.99','2005-06-18 09:24:22','2006-02-15 22:17:39'), - (10647,393,2,3001,'2.99','2005-06-20 09:50:16','2006-02-15 22:17:39'), - (10648,393,2,4275,'2.99','2005-07-07 14:43:51','2006-02-15 22:17:39'), - (10649,393,2,4546,'8.99','2005-07-08 04:18:36','2006-02-15 22:17:39'), - (10650,393,2,4632,'5.99','2005-07-08 08:38:57','2006-02-15 22:17:39'), - (10651,393,2,4791,'7.99','2005-07-08 16:27:24','2006-02-15 22:17:39'), - (10652,393,1,5099,'4.99','2005-07-09 06:14:30','2006-02-15 22:17:39'), - (10653,393,1,6221,'2.99','2005-07-11 13:24:27','2006-02-15 22:17:39'), - (10654,393,2,6513,'0.99','2005-07-12 03:44:43','2006-02-15 22:17:39'), - (10655,393,1,6930,'8.99','2005-07-26 23:00:01','2006-02-15 22:17:39'), - (10656,393,2,7486,'0.99','2005-07-27 19:29:24','2006-02-15 22:17:39'), - (10657,393,2,8004,'4.99','2005-07-28 15:14:07','2006-02-15 22:17:39'), - (10658,393,2,8448,'0.99','2005-07-29 07:41:54','2006-02-15 22:17:40'), - (10659,393,2,9763,'7.99','2005-07-31 09:34:03','2006-02-15 22:17:40'), - (10660,393,1,10158,'1.99','2005-07-31 22:40:31','2006-02-15 22:17:40'), - (10661,393,2,12059,'2.99','2005-08-17 21:09:23','2006-02-15 22:17:40'), - (10662,393,1,12113,'1.99','2005-08-17 23:01:00','2006-02-15 22:17:40'), - (10663,393,1,12563,'4.99','2005-08-18 15:08:29','2006-02-15 22:17:40'), - (10664,393,1,12676,'0.99','2005-08-18 19:34:40','2006-02-15 22:17:40'), - (10665,393,1,13184,'4.99','2005-08-19 14:16:18','2006-02-15 22:17:40'), - (10666,393,2,13357,'4.99','2005-08-19 21:02:59','2006-02-15 22:17:40'), - (10667,393,2,13788,'1.99','2005-08-20 12:15:41','2006-02-15 22:17:40'), - (10668,393,1,15132,'2.99','2005-08-22 13:11:25','2006-02-15 22:17:40'), - (10669,393,2,15284,'3.99','2005-08-22 19:17:08','2006-02-15 22:17:40'), - (10670,393,2,15527,'0.99','2005-08-23 03:44:51','2006-02-15 22:17:40'), - (10671,393,2,16049,'3.99','2005-08-23 22:50:12','2006-02-15 22:17:40'), - (10672,394,1,213,'3.99','2005-05-26 08:44:08','2006-02-15 22:17:40'), - (10673,394,1,977,'2.99','2005-05-30 21:22:26','2006-02-15 22:17:40'), - (10674,394,2,1324,'4.99','2005-06-15 11:02:45','2006-02-15 22:17:40'), - (10675,394,2,3543,'0.99','2005-07-06 02:01:08','2006-02-15 22:17:40'), - (10676,394,1,3873,'6.99','2005-07-06 18:03:16','2006-02-15 22:17:40'), - (10677,394,2,4009,'2.99','2005-07-07 00:28:55','2006-02-15 22:17:41'), - (10678,394,1,4307,'6.99','2005-07-07 17:20:39','2006-02-15 22:17:41'), - (10679,394,2,5183,'4.99','2005-07-09 10:13:45','2006-02-15 22:17:41'), - (10680,394,1,5535,'4.99','2005-07-10 02:27:42','2006-02-15 22:17:41'), - (10681,394,2,6059,'4.99','2005-07-11 04:03:54','2006-02-15 22:17:41'), - (10682,394,2,7445,'3.99','2005-07-27 17:57:15','2006-02-15 22:17:41'), - (10683,394,1,9147,'0.99','2005-07-30 10:38:59','2006-02-15 22:17:41'), - (10684,394,2,9864,'0.99','2005-07-31 13:06:54','2006-02-15 22:17:41'), - (10685,394,1,10319,'4.99','2005-08-01 04:37:19','2006-02-15 22:17:41'), - (10686,394,1,10603,'0.99','2005-08-01 14:30:35','2006-02-15 22:17:41'), - (10687,394,1,10718,'0.99','2005-08-01 18:55:38','2006-02-15 22:17:41'), - (10688,394,1,12080,'4.99','2005-08-17 22:08:04','2006-02-15 22:17:41'), - (10689,394,1,12389,'4.99','2005-08-18 08:48:36','2006-02-15 22:17:41'), - (10690,394,2,12510,'9.99','2005-08-18 13:22:25','2006-02-15 22:17:41'), - (10691,394,2,13047,'0.99','2005-08-19 09:24:49','2006-02-15 22:17:41'), - (10692,394,1,14605,'0.99','2005-08-21 17:56:06','2006-02-15 22:17:41'), - (10693,394,2,13178,'4.99','2006-02-14 15:16:03','2006-02-15 22:17:41'), - (10694,395,1,1270,'0.99','2005-06-15 07:30:22','2006-02-15 22:17:41'), - (10695,395,1,1562,'0.99','2005-06-16 02:46:27','2006-02-15 22:17:41'), - (10696,395,2,1603,'0.99','2005-06-16 06:14:03','2006-02-15 22:17:42'), - (10697,395,1,3030,'4.99','2005-06-20 11:51:59','2006-02-15 22:17:42'), - (10698,395,1,3310,'0.99','2005-06-21 08:04:51','2006-02-15 22:17:42'), - (10699,395,1,3389,'6.99','2005-06-21 14:37:55','2006-02-15 22:17:42'), - (10700,395,2,3684,'0.99','2005-07-06 09:29:22','2006-02-15 22:17:42'), - (10701,395,1,4185,'5.99','2005-07-07 10:31:05','2006-02-15 22:17:42'), - (10702,395,1,4393,'4.99','2005-07-07 21:12:36','2006-02-15 22:17:42'), - (10703,395,1,5087,'0.99','2005-07-09 05:44:28','2006-02-15 22:17:42'), - (10704,395,2,5136,'0.99','2005-07-09 07:55:01','2006-02-15 22:17:42'), - (10705,395,1,7740,'2.99','2005-07-28 05:23:36','2006-02-15 22:17:42'), - (10706,395,2,7986,'7.99','2005-07-28 14:30:13','2006-02-15 22:17:42'), - (10707,395,1,11889,'0.99','2005-08-17 15:08:27','2006-02-15 22:17:42'), - (10708,395,1,14471,'5.99','2005-08-21 13:10:40','2006-02-15 22:17:42'), - (10709,395,2,14720,'0.99','2005-08-21 21:43:53','2006-02-15 22:17:42'), - (10710,395,1,15698,'2.99','2005-08-23 10:11:40','2006-02-15 22:17:42'), - (10711,395,1,15856,'0.99','2005-08-23 15:59:12','2006-02-15 22:17:42'), - (10712,395,1,15970,'4.99','2005-08-23 19:54:24','2006-02-15 22:17:42'), - (10713,396,2,641,'5.99','2005-05-28 18:45:47','2006-02-15 22:17:42'), - (10714,396,2,1370,'1.99','2005-06-15 14:31:05','2006-02-15 22:17:42'), - (10715,396,2,1385,'4.99','2005-06-15 15:28:23','2006-02-15 22:17:43'), - (10716,396,2,1408,'6.99','2005-06-15 16:57:58','2006-02-15 22:17:43'), - (10717,396,2,3909,'6.99','2005-07-06 19:54:41','2006-02-15 22:17:43'), - (10718,396,1,5059,'1.99','2005-07-09 04:28:01','2006-02-15 22:17:43'), - (10719,396,2,6335,'2.99','2005-07-11 19:25:15','2006-02-15 22:17:43'), - (10720,396,2,6764,'4.99','2005-07-12 15:29:27','2006-02-15 22:17:43'), - (10721,396,2,6771,'2.99','2005-07-12 15:54:40','2006-02-15 22:17:43'), - (10722,396,2,7142,'0.99','2005-07-27 06:55:39','2006-02-15 22:17:43'), - (10723,396,2,7313,'2.99','2005-07-27 13:11:57','2006-02-15 22:17:43'), - (10724,396,2,8371,'2.99','2005-07-29 05:16:35','2006-02-15 22:17:43'), - (10725,396,2,8807,'2.99','2005-07-29 21:36:59','2006-02-15 22:17:43'), - (10726,396,1,9344,'5.99','2005-07-30 18:13:45','2006-02-15 22:17:43'), - (10727,396,2,10120,'2.99','2005-07-31 21:24:24','2006-02-15 22:17:43'), - (10728,396,2,10124,'0.99','2005-07-31 21:31:49','2006-02-15 22:17:43'), - (10729,396,2,10195,'6.99','2005-08-01 00:34:42','2006-02-15 22:17:43'), - (10730,396,2,10610,'0.99','2005-08-01 14:49:41','2006-02-15 22:17:43'), - (10731,396,2,12393,'5.99','2005-08-18 09:02:41','2006-02-15 22:17:43'), - (10732,396,1,12895,'4.99','2005-08-19 03:50:48','2006-02-15 22:17:43'), - (10733,396,2,13355,'4.99','2005-08-19 20:59:19','2006-02-15 22:17:43'), - (10734,396,1,14078,'3.99','2005-08-20 23:26:40','2006-02-15 22:17:44'), - (10735,396,1,14169,'4.99','2005-08-21 03:00:31','2006-02-15 22:17:44'), - (10736,396,1,14508,'2.99','2005-08-21 14:33:58','2006-02-15 22:17:44'), - (10737,396,2,14778,'5.99','2005-08-21 23:56:30','2006-02-15 22:17:44'), - (10738,396,1,14792,'1.99','2005-08-22 00:36:41','2006-02-15 22:17:44'), - (10739,396,2,15198,'7.99','2005-08-22 16:15:33','2006-02-15 22:17:44'), - (10740,397,2,1002,'0.99','2005-05-31 00:47:56','2006-02-15 22:17:44'), - (10741,397,1,1769,'5.99','2005-06-16 18:07:48','2006-02-15 22:17:44'), - (10742,397,2,3027,'1.99','2005-06-20 11:50:30','2006-02-15 22:17:44'), - (10743,397,1,3489,'5.99','2005-07-05 23:33:40','2006-02-15 22:17:44'), - (10744,397,1,4036,'0.99','2005-07-07 02:48:00','2006-02-15 22:17:44'), - (10745,397,2,5103,'4.99','2005-07-09 06:34:40','2006-02-15 22:17:44'), - (10746,397,2,5598,'4.99','2005-07-10 04:48:29','2006-02-15 22:17:44'), - (10747,397,2,5763,'4.99','2005-07-10 12:58:12','2006-02-15 22:17:44'), - (10748,397,2,6014,'2.99','2005-07-11 02:02:55','2006-02-15 22:17:44'), - (10749,397,2,6266,'2.99','2005-07-11 15:45:39','2006-02-15 22:17:44'), - (10750,397,1,6471,'4.99','2005-07-12 01:31:06','2006-02-15 22:17:44'), - (10751,397,2,7356,'2.99','2005-07-27 14:47:35','2006-02-15 22:17:44'), - (10752,397,2,7892,'4.99','2005-07-28 10:46:58','2006-02-15 22:17:44'), - (10753,397,1,8103,'6.99','2005-07-28 18:50:14','2006-02-15 22:17:44'), - (10754,397,1,9495,'0.99','2005-07-30 23:54:26','2006-02-15 22:17:45'), - (10755,397,2,9608,'1.99','2005-07-31 03:51:52','2006-02-15 22:17:45'), - (10756,397,1,10534,'0.99','2005-08-01 12:15:11','2006-02-15 22:17:45'), - (10757,397,2,10598,'4.99','2005-08-01 14:23:36','2006-02-15 22:17:45'), - (10758,397,1,10785,'1.99','2005-08-01 21:24:55','2006-02-15 22:17:45'), - (10759,397,2,11511,'4.99','2005-08-16 23:39:59','2006-02-15 22:17:45'), - (10760,397,2,12223,'2.99','2005-08-18 02:58:40','2006-02-15 22:17:45'), - (10761,397,1,12276,'0.99','2005-08-18 04:43:22','2006-02-15 22:17:45'), - (10762,397,2,12329,'1.99','2005-08-18 06:44:30','2006-02-15 22:17:45'), - (10763,397,2,12700,'0.99','2005-08-18 20:24:46','2006-02-15 22:17:45'), - (10764,397,2,12726,'2.99','2005-08-18 21:44:46','2006-02-15 22:17:45'), - (10765,397,1,12772,'4.99','2005-08-18 23:29:25','2006-02-15 22:17:45'), - (10766,397,2,14100,'3.99','2005-08-21 00:31:07','2006-02-15 22:17:45'), - (10767,397,1,14790,'6.99','2005-08-22 00:34:17','2006-02-15 22:17:45'), - (10768,397,1,15083,'6.99','2005-08-22 11:17:37','2006-02-15 22:17:45'), - (10769,398,1,486,'4.99','2005-05-27 23:51:12','2006-02-15 22:17:45'), - (10770,398,2,1228,'2.99','2005-06-15 03:50:36','2006-02-15 22:17:45'), - (10771,398,1,2087,'6.99','2005-06-17 17:35:10','2006-02-15 22:17:45'), - (10772,398,2,3141,'9.99','2005-06-20 19:55:47','2006-02-15 22:17:45'), - (10773,398,2,5234,'5.99','2005-07-09 12:44:47','2006-02-15 22:17:46'), - (10774,398,2,8119,'3.99','2005-07-28 19:23:15','2006-02-15 22:17:46'), - (10775,398,2,8204,'4.99','2005-07-28 23:18:29','2006-02-15 22:17:46'), - (10776,398,1,8428,'7.99','2005-07-29 07:10:14','2006-02-15 22:17:46'), - (10777,398,1,9042,'2.99','2005-07-30 06:33:55','2006-02-15 22:17:46'), - (10778,398,2,9281,'5.99','2005-07-30 15:15:51','2006-02-15 22:17:46'), - (10779,398,1,9771,'1.99','2005-07-31 09:55:36','2006-02-15 22:17:46'), - (10780,398,1,10230,'2.99','2005-08-01 01:49:36','2006-02-15 22:17:46'), - (10781,398,2,11132,'4.99','2005-08-02 09:14:09','2006-02-15 22:17:46'), - (10782,398,2,12528,'2.99','2005-08-18 13:52:41','2006-02-15 22:17:46'), - (10783,398,2,13643,'4.99','2005-08-20 07:42:24','2006-02-15 22:17:46'), - (10784,398,1,15189,'3.99','2005-08-22 15:56:42','2006-02-15 22:17:46'), - (10785,399,2,10,'5.99','2005-05-25 00:02:21','2006-02-15 22:17:46'), - (10786,399,2,694,'6.99','2005-05-29 01:49:43','2006-02-15 22:17:46'), - (10787,399,2,883,'4.99','2005-05-30 06:21:05','2006-02-15 22:17:46'), - (10788,399,2,2961,'2.99','2005-06-20 07:29:15','2006-02-15 22:17:46'), - (10789,399,1,3036,'5.99','2005-06-20 12:18:31','2006-02-15 22:17:46'), - (10790,399,2,4957,'0.99','2005-07-08 23:18:48','2006-02-15 22:17:46'), - (10791,399,2,4981,'4.99','2005-07-09 00:29:29','2006-02-15 22:17:46'), - (10792,399,1,5507,'0.99','2005-07-10 00:49:04','2006-02-15 22:17:47'), - (10793,399,2,6006,'2.99','2005-07-11 01:38:42','2006-02-15 22:17:47'), - (10794,399,2,6229,'6.99','2005-07-11 13:59:50','2006-02-15 22:17:47'), - (10795,399,2,6674,'4.99','2005-07-12 11:51:54','2006-02-15 22:17:47'), - (10796,399,2,8461,'5.99','2005-07-29 08:11:31','2006-02-15 22:17:47'), - (10797,399,2,9728,'2.99','2005-07-31 08:40:54','2006-02-15 22:17:47'), - (10798,399,2,10654,'2.99','2005-08-01 16:31:35','2006-02-15 22:17:47'), - (10799,399,2,10960,'5.99','2005-08-02 03:46:18','2006-02-15 22:17:47'), - (10800,399,1,11329,'4.99','2005-08-02 16:42:52','2006-02-15 22:17:47'), - (10801,399,1,11953,'3.99','2005-08-17 17:16:42','2006-02-15 22:17:47'), - (10802,399,1,13253,'4.99','2005-08-19 16:53:56','2006-02-15 22:17:47'), - (10803,399,2,13293,'4.99','2005-08-19 18:35:52','2006-02-15 22:17:47'), - (10804,399,1,15300,'0.99','2005-08-22 19:44:00','2006-02-15 22:17:47'), - (10805,399,1,15468,'4.99','2005-08-23 01:25:30','2006-02-15 22:17:47'), - (10806,400,1,95,'3.99','2005-05-25 16:12:52','2006-02-15 22:17:47'), - (10807,400,2,171,'6.99','2005-05-26 03:14:15','2006-02-15 22:17:47'), - (10808,400,2,516,'1.99','2005-05-28 03:11:47','2006-02-15 22:17:47'), - (10809,400,2,894,'5.99','2005-05-30 08:31:31','2006-02-15 22:17:48'), - (10810,400,2,1364,'0.99','2005-06-15 14:05:32','2006-02-15 22:17:48'), - (10811,400,1,1917,'3.99','2005-06-17 05:36:07','2006-02-15 22:17:48'), - (10812,400,2,1923,'6.99','2005-06-17 06:06:10','2006-02-15 22:17:48'), - (10813,400,1,4573,'6.99','2005-07-08 05:38:46','2006-02-15 22:17:48'), - (10814,400,1,4645,'2.99','2005-07-08 09:20:09','2006-02-15 22:17:48'), - (10815,400,2,5212,'6.99','2005-07-09 11:37:47','2006-02-15 22:17:48'), - (10816,400,2,5222,'5.99','2005-07-09 12:05:45','2006-02-15 22:17:48'), - (10817,400,2,6790,'5.99','2005-07-12 16:34:59','2006-02-15 22:17:48'), - (10818,400,2,6994,'2.99','2005-07-27 01:08:26','2006-02-15 22:17:48'), - (10819,400,2,7296,'2.99','2005-07-27 12:39:48','2006-02-15 22:17:48'), - (10820,400,1,7682,'5.99','2005-07-28 03:07:29','2006-02-15 22:17:48'), - (10821,400,2,9177,'5.99','2005-07-30 11:52:40','2006-02-15 22:17:48'), - (10822,400,2,9756,'4.99','2005-07-31 09:25:00','2006-02-15 22:17:48'), - (10823,400,1,10187,'2.99','2005-08-01 00:15:49','2006-02-15 22:17:48'), - (10824,400,2,10484,'2.99','2005-08-01 10:19:53','2006-02-15 22:17:48'), - (10825,400,1,10711,'0.99','2005-08-01 18:45:09','2006-02-15 22:17:48'), - (10826,400,2,11510,'6.99','2005-08-16 23:30:07','2006-02-15 22:17:49'), - (10827,400,2,11530,'2.99','2005-08-17 00:29:00','2006-02-15 22:17:49'), - (10828,400,1,11600,'5.99','2005-08-17 03:12:04','2006-02-15 22:17:49'), - (10829,400,1,12514,'2.99','2005-08-18 13:33:55','2006-02-15 22:17:49'), - (10830,400,2,13449,'2.99','2005-08-20 00:17:01','2006-02-15 22:17:49'), - (10831,400,1,14775,'2.99','2005-08-21 23:53:07','2006-02-15 22:17:49'), - (10832,400,2,15533,'4.99','2005-08-23 03:54:39','2006-02-15 22:17:49'), - (10833,400,2,15988,'4.99','2005-08-23 20:23:08','2006-02-15 22:17:49'), - (10834,401,2,167,'4.99','2005-05-26 02:50:31','2006-02-15 22:17:49'), - (10835,401,2,446,'4.99','2005-05-27 18:48:41','2006-02-15 22:17:49'), - (10836,401,2,811,'1.99','2005-05-29 19:30:42','2006-02-15 22:17:49'), - (10837,401,1,4059,'0.99','2005-07-07 04:04:26','2006-02-15 22:17:49'), - (10838,401,2,4292,'7.99','2005-07-07 15:48:38','2006-02-15 22:17:49'), - (10839,401,2,5923,'0.99','2005-07-10 21:40:06','2006-02-15 22:17:49'), - (10840,401,1,NULL,'0.99','2005-07-12 06:26:10','2006-02-15 22:17:49'), - (10841,401,2,7651,'4.99','2005-07-28 01:48:32','2006-02-15 22:17:49'), - (10842,401,1,8450,'2.99','2005-07-29 07:44:05','2006-02-15 22:17:49'), - (10843,401,2,8669,'2.99','2005-07-29 15:44:55','2006-02-15 22:17:49'), - (10844,401,1,8722,'8.99','2005-07-29 17:58:58','2006-02-15 22:17:50'), - (10845,401,2,9701,'4.99','2005-07-31 07:32:21','2006-02-15 22:17:50'), - (10846,401,2,10171,'0.99','2005-07-31 23:29:05','2006-02-15 22:17:50'), - (10847,401,1,11820,'2.99','2005-08-17 12:25:33','2006-02-15 22:17:50'), - (10848,401,1,12475,'4.99','2005-08-18 12:14:21','2006-02-15 22:17:50'), - (10849,401,2,12479,'4.99','2005-08-18 12:26:37','2006-02-15 22:17:50'), - (10850,401,1,12906,'2.99','2005-08-19 04:13:43','2006-02-15 22:17:50'), - (10851,401,1,13024,'4.99','2005-08-19 08:19:21','2006-02-15 22:17:50'), - (10852,401,1,14359,'0.99','2005-08-21 09:16:19','2006-02-15 22:17:50'), - (10853,401,2,14433,'1.99','2005-08-21 11:36:34','2006-02-15 22:17:50'), - (10854,401,1,15831,'0.99','2005-08-23 15:21:19','2006-02-15 22:17:50'), - (10855,401,1,15927,'0.99','2005-08-23 18:23:11','2006-02-15 22:17:50'), - (10856,402,2,801,'1.99','2005-05-29 17:35:50','2006-02-15 22:17:50'), - (10857,402,2,1194,'4.99','2005-06-15 01:25:08','2006-02-15 22:17:50'), - (10858,402,2,2490,'4.99','2005-06-18 22:00:50','2006-02-15 22:17:50'), - (10859,402,2,2913,'2.99','2005-06-20 03:42:27','2006-02-15 22:17:50'), - (10860,402,2,3564,'6.99','2005-07-06 03:02:13','2006-02-15 22:17:50'), - (10861,402,2,3612,'3.99','2005-07-06 05:37:26','2006-02-15 22:17:50'), - (10862,402,2,3755,'5.99','2005-07-06 12:37:16','2006-02-15 22:17:51'), - (10863,402,1,4399,'2.99','2005-07-07 21:20:28','2006-02-15 22:17:51'), - (10864,402,2,4604,'3.99','2005-07-08 06:58:43','2006-02-15 22:17:51'), - (10865,402,2,5329,'4.99','2005-07-09 16:49:46','2006-02-15 22:17:51'), - (10866,402,2,6183,'2.99','2005-07-11 11:14:35','2006-02-15 22:17:51'), - (10867,402,1,6283,'3.99','2005-07-11 16:47:32','2006-02-15 22:17:51'), - (10868,402,1,7633,'0.99','2005-07-28 01:03:41','2006-02-15 22:17:51'), - (10869,402,2,8521,'7.99','2005-07-29 10:12:45','2006-02-15 22:17:51'), - (10870,402,1,9657,'6.99','2005-07-31 06:00:41','2006-02-15 22:17:51'), - (10871,402,2,9779,'0.99','2005-07-31 10:08:33','2006-02-15 22:17:51'), - (10872,402,2,11045,'0.99','2005-08-02 06:07:54','2006-02-15 22:17:51'), - (10873,402,2,11549,'4.99','2005-08-17 01:01:48','2006-02-15 22:17:51'), - (10874,402,2,11920,'0.99','2005-08-17 16:10:19','2006-02-15 22:17:51'), - (10875,402,1,15428,'4.99','2005-08-23 00:11:52','2006-02-15 22:17:52'), - (10876,403,1,442,'2.99','2005-05-27 18:12:13','2006-02-15 22:17:52'), - (10877,403,1,517,'0.99','2005-05-28 03:17:57','2006-02-15 22:17:52'), - (10878,403,2,1221,'4.99','2005-06-15 03:35:16','2006-02-15 22:17:52'), - (10879,403,1,1249,'8.99','2005-06-15 05:38:09','2006-02-15 22:17:52'), - (10880,403,2,2488,'3.99','2005-06-18 21:38:26','2006-02-15 22:17:52'), - (10881,403,1,2927,'4.99','2005-06-20 04:41:41','2006-02-15 22:17:52'), - (10882,403,2,3049,'6.99','2005-06-20 12:51:01','2006-02-15 22:17:52'), - (10883,403,1,3356,'5.99','2005-06-21 11:38:45','2006-02-15 22:17:52'), - (10884,403,1,3644,'6.99','2005-07-06 07:20:11','2006-02-15 22:17:52'), - (10885,403,2,3737,'3.99','2005-07-06 11:45:53','2006-02-15 22:17:52'), - (10886,403,2,4096,'4.99','2005-07-07 06:09:11','2006-02-15 22:17:52'), - (10887,403,1,5982,'4.99','2005-07-11 00:24:44','2006-02-15 22:17:52'), - (10888,403,2,6322,'2.99','2005-07-11 18:58:20','2006-02-15 22:17:52'), - (10889,403,1,6342,'4.99','2005-07-11 19:48:24','2006-02-15 22:17:52'), - (10890,403,1,7103,'4.99','2005-07-27 05:08:59','2006-02-15 22:17:52'), - (10891,403,2,8013,'5.99','2005-07-28 15:30:26','2006-02-15 22:17:52'), - (10892,403,1,9058,'2.99','2005-07-30 07:15:45','2006-02-15 22:17:52'), - (10893,403,2,9486,'7.99','2005-07-30 23:35:42','2006-02-15 22:17:52'), - (10894,403,2,9794,'4.99','2005-07-31 10:47:01','2006-02-15 22:17:53'), - (10895,403,2,10109,'5.99','2005-07-31 21:04:49','2006-02-15 22:17:53'), - (10896,403,1,10443,'2.99','2005-08-01 09:01:04','2006-02-15 22:17:53'), - (10897,403,1,10547,'6.99','2005-08-01 12:44:17','2006-02-15 22:17:53'), - (10898,403,2,10789,'2.99','2005-08-01 21:37:55','2006-02-15 22:17:53'), - (10899,403,1,11038,'7.99','2005-08-02 05:59:42','2006-02-15 22:17:53'), - (10900,403,2,11391,'9.99','2005-08-02 18:40:12','2006-02-15 22:17:53'), - (10901,403,2,11427,'2.99','2005-08-02 20:02:39','2006-02-15 22:17:53'), - (10902,403,2,11460,'0.99','2005-08-02 21:28:03','2006-02-15 22:17:53'), - (10903,403,2,11558,'0.99','2005-08-17 01:19:52','2006-02-15 22:17:53'), - (10904,403,2,12005,'5.99','2005-08-17 18:56:55','2006-02-15 22:17:53'), - (10905,403,1,12132,'2.99','2005-08-17 23:37:03','2006-02-15 22:17:53'), - (10906,403,1,12793,'5.99','2005-08-19 00:20:36','2006-02-15 22:17:53'), - (10907,403,1,14519,'2.99','2005-08-21 14:59:29','2006-02-15 22:17:53'), - (10908,403,1,14662,'0.99','2005-08-21 19:45:27','2006-02-15 22:17:53'), - (10909,403,2,14725,'4.99','2005-08-21 22:02:08','2006-02-15 22:17:53'), - (10910,403,1,15410,'4.99','2005-08-22 23:27:43','2006-02-15 22:17:53'), - (10911,404,2,1081,'5.99','2005-05-31 10:56:32','2006-02-15 22:17:53'), - (10912,404,2,1506,'2.99','2005-06-15 22:19:37','2006-02-15 22:17:53'), - (10913,404,2,1840,'4.99','2005-06-16 23:39:34','2006-02-15 22:17:54'), - (10914,404,1,2715,'4.99','2005-06-19 14:29:35','2006-02-15 22:17:54'), - (10915,404,1,2951,'2.99','2005-06-20 06:23:01','2006-02-15 22:17:54'), - (10916,404,1,3927,'2.99','2005-07-06 20:48:14','2006-02-15 22:17:54'), - (10917,404,1,4495,'2.99','2005-07-08 01:43:46','2006-02-15 22:17:54'), - (10918,404,2,4615,'8.99','2005-07-08 07:46:53','2006-02-15 22:17:54'), - (10919,404,1,4653,'4.99','2005-07-08 09:48:01','2006-02-15 22:17:54'), - (10920,404,1,4963,'4.99','2005-07-08 23:38:40','2006-02-15 22:17:54'), - (10921,404,1,5632,'3.99','2005-07-10 06:17:06','2006-02-15 22:17:54'), - (10922,404,1,6114,'1.99','2005-07-11 07:33:48','2006-02-15 22:17:54'), - (10923,404,2,6779,'0.99','2005-07-12 16:10:50','2006-02-15 22:17:54'), - (10924,404,1,6964,'4.99','2005-07-27 00:15:04','2006-02-15 22:17:54'), - (10925,404,1,8058,'5.99','2005-07-28 17:07:49','2006-02-15 22:17:54'), - (10926,404,1,8455,'3.99','2005-07-29 07:53:06','2006-02-15 22:17:54'), - (10927,404,1,9206,'4.99','2005-07-30 12:46:59','2006-02-15 22:17:54'), - (10928,404,1,9472,'4.99','2005-07-30 23:03:32','2006-02-15 22:17:54'), - (10929,404,2,9824,'2.99','2005-07-31 11:49:55','2006-02-15 22:17:54'), - (10930,404,1,10651,'2.99','2005-08-01 16:20:22','2006-02-15 22:17:54'), - (10931,404,1,12325,'5.99','2005-08-18 06:41:30','2006-02-15 22:17:54'), - (10932,404,1,12554,'8.99','2005-08-18 14:47:28','2006-02-15 22:17:54'), - (10933,404,2,13412,'5.99','2005-08-19 22:46:35','2006-02-15 22:17:55'), - (10934,404,1,13422,'4.99','2005-08-19 23:07:24','2006-02-15 22:17:55'), - (10935,404,1,14691,'0.99','2005-08-21 20:42:29','2006-02-15 22:17:55'), - (10936,404,2,14835,'5.99','2005-08-22 01:49:07','2006-02-15 22:17:55'), - (10937,404,2,14838,'4.99','2005-08-22 01:57:34','2006-02-15 22:17:55'), - (10938,404,2,14912,'4.99','2005-08-22 04:51:42','2006-02-15 22:17:55'), - (10939,404,2,15087,'0.99','2005-08-22 11:24:09','2006-02-15 22:17:55'), - (10940,404,2,15290,'10.99','2005-08-22 19:28:02','2006-02-15 22:17:55'), - (10941,405,1,121,'2.99','2005-05-25 19:41:29','2006-02-15 22:17:55'), - (10942,405,2,770,'4.99','2005-05-29 12:56:50','2006-02-15 22:17:55'), - (10943,405,2,1315,'4.99','2005-06-15 10:23:08','2006-02-15 22:17:55'), - (10944,405,1,1888,'0.99','2005-06-17 03:58:36','2006-02-15 22:17:55'), - (10945,405,2,1953,'5.99','2005-06-17 08:34:57','2006-02-15 22:17:55'), - (10946,405,2,2654,'3.99','2005-06-19 10:37:54','2006-02-15 22:17:55'), - (10947,405,1,3240,'4.99','2005-06-21 02:53:17','2006-02-15 22:17:55'), - (10948,405,1,3253,'5.99','2005-06-21 03:25:37','2006-02-15 22:17:55'), - (10949,405,2,4223,'0.99','2005-07-07 12:23:54','2006-02-15 22:17:55'), - (10950,405,2,4401,'0.99','2005-07-07 21:26:27','2006-02-15 22:17:55'), - (10951,405,2,5040,'7.99','2005-07-09 03:16:34','2006-02-15 22:17:55'), - (10952,405,1,5231,'0.99','2005-07-09 12:35:02','2006-02-15 22:17:56'), - (10953,405,2,5512,'1.99','2005-07-10 01:05:38','2006-02-15 22:17:56'), - (10954,405,1,6110,'2.99','2005-07-11 07:23:47','2006-02-15 22:17:56'), - (10955,405,1,7455,'2.99','2005-07-27 18:34:41','2006-02-15 22:17:56'), - (10956,405,1,7759,'0.99','2005-07-28 06:28:45','2006-02-15 22:17:56'), - (10957,405,2,8482,'2.99','2005-07-29 08:46:33','2006-02-15 22:17:56'), - (10958,405,1,8955,'5.99','2005-07-30 03:28:27','2006-02-15 22:17:56'), - (10959,405,1,9569,'0.99','2005-07-31 02:39:38','2006-02-15 22:17:56'), - (10960,405,1,10472,'4.99','2005-08-01 09:54:41','2006-02-15 22:17:56'), - (10961,405,2,10823,'4.99','2005-08-01 22:59:10','2006-02-15 22:17:56'), - (10962,405,1,11345,'7.99','2005-08-02 17:14:19','2006-02-15 22:17:56'), - (10963,405,1,12050,'0.99','2005-08-17 20:55:25','2006-02-15 22:17:56'), - (10964,405,2,12425,'5.99','2005-08-18 10:18:06','2006-02-15 22:17:56'), - (10965,405,1,13304,'1.99','2005-08-19 18:56:32','2006-02-15 22:17:56'), - (10966,405,1,13398,'0.99','2005-08-19 22:08:48','2006-02-15 22:17:56'), - (10967,405,1,14274,'4.99','2005-08-21 06:29:20','2006-02-15 22:17:56'), - (10968,405,2,14537,'0.99','2005-08-21 15:24:24','2006-02-15 22:17:56'), - (10969,405,1,15072,'1.99','2005-08-22 10:58:45','2006-02-15 22:17:56'), - (10970,405,2,15383,'2.99','2005-08-22 22:31:20','2006-02-15 22:17:57'), - (10971,405,1,15932,'4.99','2005-08-23 18:31:40','2006-02-15 22:17:57'), - (10972,405,1,12792,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:57'), - (10973,406,1,855,'0.99','2005-05-30 02:00:28','2006-02-15 22:17:57'), - (10974,406,1,2113,'4.99','2005-06-17 19:57:46','2006-02-15 22:17:57'), - (10975,406,2,2150,'3.99','2005-06-17 22:50:36','2006-02-15 22:17:57'), - (10976,406,1,2241,'2.99','2005-06-18 04:31:41','2006-02-15 22:17:57'), - (10977,406,2,2325,'0.99','2005-06-18 10:08:07','2006-02-15 22:17:57'), - (10978,406,2,2585,'0.99','2005-06-19 05:05:03','2006-02-15 22:17:57'), - (10979,406,1,3186,'7.99','2005-06-20 23:04:20','2006-02-15 22:17:57'), - (10980,406,1,3306,'4.99','2005-06-21 07:46:58','2006-02-15 22:17:57'), - (10981,406,2,4264,'4.99','2005-07-07 14:25:28','2006-02-15 22:17:57'), - (10982,406,2,5098,'4.99','2005-07-09 06:13:54','2006-02-15 22:17:57'), - (10983,406,2,5263,'0.99','2005-07-09 14:10:36','2006-02-15 22:17:57'), - (10984,406,1,5766,'0.99','2005-07-10 13:07:31','2006-02-15 22:17:57'), - (10985,406,2,6439,'2.99','2005-07-12 00:23:48','2006-02-15 22:17:57'), - (10986,406,2,7109,'5.99','2005-07-27 05:28:57','2006-02-15 22:17:57'), - (10987,406,1,7171,'4.99','2005-07-27 07:58:35','2006-02-15 22:17:57'), - (10988,406,1,7259,'4.99','2005-07-27 11:06:00','2006-02-15 22:17:58'), - (10989,406,2,7604,'7.99','2005-07-27 23:54:52','2006-02-15 22:17:58'), - (10990,406,2,8080,'4.99','2005-07-28 18:05:06','2006-02-15 22:17:58'), - (10991,406,2,8295,'2.99','2005-07-29 02:42:14','2006-02-15 22:17:58'), - (10992,406,2,8630,'0.99','2005-07-29 14:07:59','2006-02-15 22:17:58'), - (10993,406,1,8903,'0.99','2005-07-30 01:08:06','2006-02-15 22:17:58'), - (10994,406,2,8962,'1.99','2005-07-30 03:43:45','2006-02-15 22:17:58'), - (10995,406,2,9224,'0.99','2005-07-30 13:25:37','2006-02-15 22:17:58'), - (10996,406,1,9291,'4.99','2005-07-30 16:03:39','2006-02-15 22:17:58'), - (10997,406,2,9487,'2.99','2005-07-30 23:40:22','2006-02-15 22:17:58'), - (10998,406,1,9660,'8.99','2005-07-31 06:03:17','2006-02-15 22:17:58'), - (10999,406,1,10632,'1.99','2005-08-01 15:36:56','2006-02-15 22:17:58'), - (11000,406,1,11603,'4.99','2005-08-17 03:22:10','2006-02-15 22:17:58'), - (11001,406,2,12505,'5.99','2005-08-18 13:17:30','2006-02-15 22:17:58'), - (11002,406,2,14205,'6.99','2005-08-21 03:57:15','2006-02-15 22:17:58'), - (11003,406,2,14421,'2.99','2005-08-21 11:20:21','2006-02-15 22:17:58'), - (11004,406,2,14601,'2.99','2005-08-21 17:45:52','2006-02-15 22:17:58'), - (11005,407,1,619,'7.99','2005-05-28 15:52:26','2006-02-15 22:17:58'), - (11006,407,1,1698,'2.99','2005-06-16 13:04:42','2006-02-15 22:17:59'), - (11007,407,2,2597,'0.99','2005-06-19 05:53:46','2006-02-15 22:17:59'), - (11008,407,1,4296,'0.99','2005-07-07 16:16:03','2006-02-15 22:17:59'), - (11009,407,1,5070,'4.99','2005-07-09 04:58:26','2006-02-15 22:17:59'), - (11010,407,2,5590,'9.99','2005-07-10 04:23:11','2006-02-15 22:17:59'), - (11011,407,1,6727,'0.99','2005-07-12 13:54:25','2006-02-15 22:17:59'), - (11012,407,1,7363,'5.99','2005-07-27 14:58:29','2006-02-15 22:17:59'), - (11013,407,2,7643,'4.99','2005-07-28 01:19:44','2006-02-15 22:17:59'), - (11014,407,1,8078,'2.99','2005-07-28 17:54:42','2006-02-15 22:17:59'), - (11015,407,1,8109,'4.99','2005-07-28 19:07:44','2006-02-15 22:17:59'), - (11016,407,1,8197,'9.99','2005-07-28 23:04:10','2006-02-15 22:17:59'), - (11017,407,2,8571,'0.99','2005-07-29 11:48:39','2006-02-15 22:17:59'), - (11018,407,1,8802,'2.99','2005-07-29 21:25:51','2006-02-15 22:17:59'), - (11019,407,2,10774,'4.99','2005-08-01 20:54:33','2006-02-15 22:17:59'), - (11020,407,1,11214,'8.99','2005-08-02 12:19:50','2006-02-15 22:17:59'), - (11021,407,1,11222,'2.99','2005-08-02 12:32:28','2006-02-15 22:18:00'), - (11022,407,2,11382,'5.99','2005-08-02 18:20:52','2006-02-15 22:18:00'), - (11023,407,2,11518,'4.99','2005-08-16 23:59:49','2006-02-15 22:18:00'), - (11024,407,1,11677,'0.99','2005-08-17 06:06:26','2006-02-15 22:18:00'), - (11025,407,2,12566,'0.99','2005-08-18 15:13:04','2006-02-15 22:18:00'), - (11026,407,2,12931,'2.99','2005-08-19 05:11:47','2006-02-15 22:18:00'), - (11027,407,1,13800,'0.99','2005-08-20 12:40:48','2006-02-15 22:18:00'), - (11028,407,2,13856,'6.99','2005-08-20 14:49:32','2006-02-15 22:18:00'), - (11029,407,2,14401,'6.99','2005-08-21 10:36:20','2006-02-15 22:18:00'), - (11030,407,2,15320,'0.99','2005-08-22 20:17:49','2006-02-15 22:18:00'), - (11031,407,2,15334,'1.99','2005-08-22 20:44:35','2006-02-15 22:18:00'), - (11032,408,2,3,'3.99','2005-05-24 23:03:39','2006-02-15 22:18:00'), - (11033,408,2,59,'5.99','2005-05-25 08:56:42','2006-02-15 22:18:00'), - (11034,408,1,526,'2.99','2005-05-28 04:27:37','2006-02-15 22:18:01'), - (11035,408,2,2479,'4.99','2005-06-18 21:03:08','2006-02-15 22:18:01'), - (11036,408,1,2564,'2.99','2005-06-19 03:41:10','2006-02-15 22:18:01'), - (11037,408,2,2728,'2.99','2005-06-19 15:04:04','2006-02-15 22:18:01'), - (11038,408,2,4330,'3.99','2005-07-07 18:09:41','2006-02-15 22:18:01'), - (11039,408,2,5073,'0.99','2005-07-09 05:02:35','2006-02-15 22:18:01'), - (11040,408,1,6062,'0.99','2005-07-11 04:11:58','2006-02-15 22:18:01'), - (11041,408,2,6203,'4.99','2005-07-11 12:28:57','2006-02-15 22:18:01'), - (11042,408,2,6826,'2.99','2005-07-12 18:32:02','2006-02-15 22:18:01'), - (11043,408,1,7053,'4.99','2005-07-27 03:38:54','2006-02-15 22:18:01'), - (11044,408,2,7996,'4.99','2005-07-28 15:00:49','2006-02-15 22:18:01'), - (11045,408,2,8251,'4.99','2005-07-29 00:50:14','2006-02-15 22:18:01'), - (11046,408,2,8469,'3.99','2005-07-29 08:26:27','2006-02-15 22:18:01'), - (11047,408,2,8902,'6.99','2005-07-30 01:08:06','2006-02-15 22:18:01'), - (11048,408,1,9052,'0.99','2005-07-30 07:06:08','2006-02-15 22:18:01'), - (11049,408,2,9757,'4.99','2005-07-31 09:25:14','2006-02-15 22:18:01'), - (11050,408,2,11115,'2.99','2005-08-02 08:31:06','2006-02-15 22:18:01'), - (11051,408,1,12140,'2.99','2005-08-17 23:57:55','2006-02-15 22:18:01'), - (11052,408,1,12338,'4.99','2005-08-18 07:04:24','2006-02-15 22:18:01'), - (11053,408,1,12498,'2.99','2005-08-18 13:01:08','2006-02-15 22:18:02'), - (11054,408,2,12900,'0.99','2005-08-19 04:03:49','2006-02-15 22:18:02'), - (11055,408,1,13508,'7.99','2005-08-20 02:12:54','2006-02-15 22:18:02'), - (11056,408,2,13744,'3.99','2005-08-20 10:51:45','2006-02-15 22:18:02'), - (11057,408,1,13944,'2.99','2005-08-20 17:41:16','2006-02-15 22:18:02'), - (11058,408,2,14733,'4.99','2005-08-21 22:22:33','2006-02-15 22:18:02'), - (11059,408,1,15628,'2.99','2005-08-23 07:28:04','2006-02-15 22:18:02'), - (11060,408,2,15716,'1.99','2005-08-23 11:02:00','2006-02-15 22:18:02'), - (11061,408,1,15765,'6.99','2005-08-23 13:06:19','2006-02-15 22:18:03'), - (11062,409,1,310,'6.99','2005-05-26 22:41:07','2006-02-15 22:18:03'), - (11063,409,2,1226,'5.99','2005-06-15 03:46:10','2006-02-15 22:18:03'), - (11064,409,2,2310,'8.99','2005-06-18 08:45:59','2006-02-15 22:18:03'), - (11065,409,1,3866,'5.99','2005-07-06 17:47:20','2006-02-15 22:18:03'), - (11066,409,2,4550,'4.99','2005-07-08 04:34:00','2006-02-15 22:18:03'), - (11067,409,1,5175,'3.99','2005-07-09 09:34:28','2006-02-15 22:18:03'), - (11068,409,2,5306,'5.99','2005-07-09 15:56:45','2006-02-15 22:18:03'), - (11069,409,1,5422,'0.99','2005-07-09 20:55:47','2006-02-15 22:18:03'), - (11070,409,1,5848,'2.99','2005-07-10 17:28:14','2006-02-15 22:18:04'), - (11071,409,1,5955,'7.99','2005-07-10 23:22:10','2006-02-15 22:18:04'), - (11072,409,2,6026,'4.99','2005-07-11 02:21:43','2006-02-15 22:18:04'), - (11073,409,1,6596,'2.99','2005-07-12 07:32:59','2006-02-15 22:18:04'), - (11074,409,2,7673,'2.99','2005-07-28 02:53:53','2006-02-15 22:18:04'), - (11075,409,2,7940,'0.99','2005-07-28 12:46:47','2006-02-15 22:18:04'), - (11076,409,1,8037,'4.99','2005-07-28 16:31:20','2006-02-15 22:18:04'), - (11077,409,2,8265,'5.99','2005-07-29 01:20:15','2006-02-15 22:18:04'), - (11078,409,1,8726,'1.99','2005-07-29 18:09:22','2006-02-15 22:18:04'), - (11079,409,2,9267,'0.99','2005-07-30 14:59:05','2006-02-15 22:18:04'), - (11080,409,2,12830,'0.99','2005-08-19 01:40:25','2006-02-15 22:18:04'), - (11081,409,1,13392,'8.99','2005-08-19 22:03:22','2006-02-15 22:18:04'), - (11082,409,2,13632,'6.99','2005-08-20 07:10:52','2006-02-15 22:18:04'), - (11083,409,1,14103,'1.99','2005-08-21 00:37:00','2006-02-15 22:18:04'), - (11084,409,1,14697,'4.99','2005-08-21 20:49:21','2006-02-15 22:18:05'), - (11085,410,1,1514,'2.99','2005-06-15 22:57:34','2006-02-15 22:18:05'), - (11086,410,1,2073,'2.99','2005-06-17 16:33:59','2006-02-15 22:18:05'), - (11087,410,1,2255,'4.99','2005-06-18 05:21:12','2006-02-15 22:18:05'), - (11088,410,2,2400,'5.99','2005-06-18 16:10:46','2006-02-15 22:18:05'), - (11089,410,2,2971,'0.99','2005-06-20 07:56:00','2006-02-15 22:18:05'), - (11090,410,1,3249,'4.99','2005-06-21 03:13:19','2006-02-15 22:18:05'), - (11091,410,2,4062,'0.99','2005-07-07 04:22:27','2006-02-15 22:18:05'), - (11092,410,1,4267,'0.99','2005-07-07 14:35:30','2006-02-15 22:18:05'), - (11093,410,1,5150,'3.99','2005-07-09 08:28:40','2006-02-15 22:18:05'), - (11094,410,1,5192,'4.99','2005-07-09 10:27:09','2006-02-15 22:18:05'), - (11095,410,2,5330,'5.99','2005-07-09 16:53:57','2006-02-15 22:18:05'), - (11096,410,1,5336,'2.99','2005-07-09 17:01:08','2006-02-15 22:18:05'), - (11097,410,1,6148,'4.99','2005-07-11 09:14:22','2006-02-15 22:18:05'), - (11098,410,2,6218,'5.99','2005-07-11 13:14:58','2006-02-15 22:18:05'), - (11099,410,2,7350,'4.99','2005-07-27 14:34:14','2006-02-15 22:18:05'), - (11100,410,2,7407,'5.99','2005-07-27 16:29:04','2006-02-15 22:18:05'), - (11101,410,1,7523,'4.99','2005-07-27 21:11:23','2006-02-15 22:18:06'), - (11102,410,2,8625,'3.99','2005-07-29 13:59:13','2006-02-15 22:18:06'), - (11103,410,1,8882,'0.99','2005-07-30 00:24:05','2006-02-15 22:18:06'), - (11104,410,1,9263,'2.99','2005-07-30 14:48:24','2006-02-15 22:18:06'), - (11105,410,1,10402,'4.99','2005-08-01 07:27:19','2006-02-15 22:18:06'), - (11106,410,1,10837,'2.99','2005-08-01 23:30:22','2006-02-15 22:18:06'), - (11107,410,1,11107,'0.99','2005-08-02 08:19:38','2006-02-15 22:18:06'), - (11108,410,1,11187,'10.99','2005-08-02 11:16:19','2006-02-15 22:18:06'), - (11109,410,1,11472,'6.99','2005-08-02 21:49:06','2006-02-15 22:18:06'), - (11110,410,1,11694,'6.99','2005-08-17 06:57:30','2006-02-15 22:18:06'), - (11111,410,2,12955,'8.99','2005-08-19 06:05:58','2006-02-15 22:18:06'), - (11112,410,1,13460,'4.99','2005-08-20 00:48:24','2006-02-15 22:18:06'), - (11113,410,2,13748,'2.99','2005-08-20 10:59:54','2006-02-15 22:18:06'), - (11114,410,2,13948,'6.99','2005-08-20 17:50:48','2006-02-15 22:18:06'), - (11115,410,1,14237,'3.99','2005-08-21 05:15:00','2006-02-15 22:18:07'), - (11116,410,2,14298,'4.99','2005-08-21 07:17:10','2006-02-15 22:18:07'), - (11117,410,1,14319,'4.99','2005-08-21 08:00:55','2006-02-15 22:18:07'), - (11118,410,2,14819,'2.99','2005-08-22 01:17:19','2006-02-15 22:18:07'), - (11119,410,1,15211,'2.99','2005-08-22 16:40:21','2006-02-15 22:18:07'), - (11120,410,2,15392,'3.99','2005-08-22 23:02:15','2006-02-15 22:18:07'), - (11121,410,1,15518,'4.99','2005-08-23 03:19:34','2006-02-15 22:18:07'), - (11122,410,1,12665,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:08'), - (11123,411,2,686,'4.99','2005-05-29 00:27:10','2006-02-15 22:18:08'), - (11124,411,2,972,'1.99','2005-05-30 20:21:07','2006-02-15 22:18:08'), - (11125,411,1,1985,'0.99','2005-06-17 10:31:37','2006-02-15 22:18:08'), - (11126,411,2,1997,'2.99','2005-06-17 11:19:43','2006-02-15 22:18:08'), - (11127,411,2,2712,'0.99','2005-06-19 14:20:13','2006-02-15 22:18:08'), - (11128,411,1,3928,'2.99','2005-07-06 20:52:09','2006-02-15 22:18:08'), - (11129,411,2,4146,'0.99','2005-07-07 08:30:16','2006-02-15 22:18:08'), - (11130,411,1,4246,'2.99','2005-07-07 13:49:03','2006-02-15 22:18:08'), - (11131,411,2,5357,'5.99','2005-07-09 18:08:59','2006-02-15 22:18:08'), - (11132,411,1,5800,'2.99','2005-07-10 14:58:36','2006-02-15 22:18:08'), - (11133,411,1,7102,'1.99','2005-07-27 05:07:21','2006-02-15 22:18:08'), - (11134,411,2,7395,'0.99','2005-07-27 16:03:11','2006-02-15 22:18:08'), - (11135,411,1,7513,'2.99','2005-07-27 20:51:04','2006-02-15 22:18:08'), - (11136,411,1,7813,'2.99','2005-07-28 08:08:27','2006-02-15 22:18:08'), - (11137,411,1,8023,'0.99','2005-07-28 15:53:29','2006-02-15 22:18:08'), - (11138,411,2,8613,'5.99','2005-07-29 13:30:58','2006-02-15 22:18:09'), - (11139,411,2,9622,'0.99','2005-07-31 04:21:45','2006-02-15 22:18:09'), - (11140,411,2,11294,'2.99','2005-08-02 15:08:27','2006-02-15 22:18:09'), - (11141,411,1,11997,'5.99','2005-08-17 18:34:38','2006-02-15 22:18:09'), - (11142,411,2,13634,'0.99','2005-08-20 07:16:45','2006-02-15 22:18:09'), - (11143,411,2,13656,'7.99','2005-08-20 08:01:07','2006-02-15 22:18:09'), - (11144,411,2,14480,'2.99','2005-08-21 13:36:40','2006-02-15 22:18:09'), - (11145,411,1,14772,'5.99','2005-08-21 23:50:39','2006-02-15 22:18:09'), - (11146,411,2,14996,'2.99','2005-08-22 07:52:41','2006-02-15 22:18:09'), - (11147,411,1,15936,'0.99','2005-08-23 18:43:11','2006-02-15 22:18:09'), - (11148,411,2,13246,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:09'), - (11149,412,2,191,'0.99','2005-05-26 06:14:06','2006-02-15 22:18:09'), - (11150,412,1,333,'4.99','2005-05-27 02:52:21','2006-02-15 22:18:09'), - (11151,412,1,717,'0.99','2005-05-29 04:37:44','2006-02-15 22:18:09'), - (11152,412,2,1043,'3.99','2005-05-31 06:11:40','2006-02-15 22:18:09'), - (11153,412,1,3292,'2.99','2005-06-21 06:59:11','2006-02-15 22:18:09'), - (11154,412,2,3888,'0.99','2005-07-06 18:54:20','2006-02-15 22:18:09'), - (11155,412,2,4074,'0.99','2005-07-07 04:49:49','2006-02-15 22:18:09'), - (11156,412,1,8036,'0.99','2005-07-28 16:27:43','2006-02-15 22:18:09'), - (11157,412,2,8330,'8.99','2005-07-29 04:09:07','2006-02-15 22:18:10'), - (11158,412,1,8411,'8.99','2005-07-29 06:44:23','2006-02-15 22:18:10'), - (11159,412,1,8674,'0.99','2005-07-29 15:54:22','2006-02-15 22:18:10'), - (11160,412,1,9881,'4.99','2005-07-31 13:50:38','2006-02-15 22:18:10'), - (11161,412,2,10381,'2.99','2005-08-01 06:36:37','2006-02-15 22:18:10'), - (11162,412,1,10467,'5.99','2005-08-01 09:45:58','2006-02-15 22:18:10'), - (11163,412,2,11027,'4.99','2005-08-02 05:47:10','2006-02-15 22:18:10'), - (11164,412,1,14068,'3.99','2005-08-20 22:50:59','2006-02-15 22:18:10'), - (11165,412,1,14535,'6.99','2005-08-21 15:22:37','2006-02-15 22:18:10'), - (11166,412,2,15354,'4.99','2005-08-22 21:18:59','2006-02-15 22:18:10'), - (11167,412,2,15732,'4.99','2005-08-23 11:35:12','2006-02-15 22:18:10'), - (11168,412,1,15781,'8.99','2005-08-23 13:41:05','2006-02-15 22:18:10'), - (11169,412,1,15314,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:10'), - (11170,413,1,40,'4.99','2005-05-25 05:09:04','2006-02-15 22:18:10'), - (11171,413,1,999,'4.99','2005-05-31 00:25:10','2006-02-15 22:18:10'), - (11172,413,2,2130,'5.99','2005-06-17 21:00:44','2006-02-15 22:18:10'), - (11173,413,2,2545,'4.99','2005-06-19 02:23:36','2006-02-15 22:18:10'), - (11174,413,1,3762,'4.99','2005-07-06 12:52:49','2006-02-15 22:18:10'), - (11175,413,2,4491,'0.99','2005-07-08 01:30:46','2006-02-15 22:18:10'), - (11176,413,1,5897,'7.99','2005-07-10 20:16:14','2006-02-15 22:18:11'), - (11177,413,2,7100,'4.99','2005-07-27 05:05:01','2006-02-15 22:18:11'), - (11178,413,1,7635,'0.99','2005-07-28 01:08:11','2006-02-15 22:18:11'), - (11179,413,2,7731,'0.99','2005-07-28 05:01:18','2006-02-15 22:18:11'), - (11180,413,1,10909,'2.99','2005-08-02 01:53:59','2006-02-15 22:18:11'), - (11181,413,2,11304,'2.99','2005-08-02 15:40:10','2006-02-15 22:18:11'), - (11182,413,1,11468,'0.99','2005-08-02 21:47:26','2006-02-15 22:18:11'), - (11183,413,1,11532,'0.99','2005-08-17 00:34:14','2006-02-15 22:18:11'), - (11184,413,2,12552,'2.99','2005-08-18 14:46:34','2006-02-15 22:18:11'), - (11185,413,1,13010,'3.99','2005-08-19 07:52:21','2006-02-15 22:18:11'), - (11186,413,1,13318,'2.99','2005-08-19 19:33:57','2006-02-15 22:18:11'), - (11187,413,2,13824,'4.99','2005-08-20 13:43:12','2006-02-15 22:18:11'), - (11188,413,2,13887,'4.99','2005-08-20 15:39:00','2006-02-15 22:18:11'), - (11189,413,1,14773,'2.99','2005-08-21 23:50:57','2006-02-15 22:18:11'), - (11190,413,1,15678,'2.99','2005-08-23 09:23:45','2006-02-15 22:18:11'), - (11191,414,1,85,'4.99','2005-05-25 13:05:34','2006-02-15 22:18:11'), - (11192,414,1,261,'3.99','2005-05-26 15:44:23','2006-02-15 22:18:11'), - (11193,414,1,2246,'4.99','2005-06-18 04:54:29','2006-02-15 22:18:11'), - (11194,414,1,2559,'9.99','2005-06-19 03:09:46','2006-02-15 22:18:12'), - (11195,414,1,3318,'5.99','2005-06-21 08:23:05','2006-02-15 22:18:12'), - (11196,414,1,3957,'10.99','2005-07-06 22:05:47','2006-02-15 22:18:12'), - (11197,414,1,4437,'3.99','2005-07-07 22:55:41','2006-02-15 22:18:12'), - (11198,414,2,6462,'7.99','2005-07-12 01:15:24','2006-02-15 22:18:12'), - (11199,414,2,6728,'0.99','2005-07-12 13:56:48','2006-02-15 22:18:12'), - (11200,414,2,6845,'0.99','2005-07-12 19:20:41','2006-02-15 22:18:12'), - (11201,414,1,7009,'0.99','2005-07-27 01:45:44','2006-02-15 22:18:12'), - (11202,414,1,7779,'2.99','2005-07-28 07:11:11','2006-02-15 22:18:12'), - (11203,414,1,9650,'2.99','2005-07-31 05:47:32','2006-02-15 22:18:12'), - (11204,414,2,9991,'2.99','2005-07-31 17:26:27','2006-02-15 22:18:12'), - (11205,414,2,10107,'5.99','2005-07-31 21:01:46','2006-02-15 22:18:12'), - (11206,414,1,11706,'0.99','2005-08-17 07:23:46','2006-02-15 22:18:12'), - (11207,414,2,12930,'4.99','2005-08-19 05:11:32','2006-02-15 22:18:12'), - (11208,414,1,13042,'0.99','2005-08-19 09:06:08','2006-02-15 22:18:12'), - (11209,414,1,13242,'2.99','2005-08-19 16:28:47','2006-02-15 22:18:12'), - (11210,414,1,13308,'7.99','2005-08-19 18:59:42','2006-02-15 22:18:12'), - (11211,414,1,13404,'0.99','2005-08-19 22:18:42','2006-02-15 22:18:12'), - (11212,414,2,13494,'2.99','2005-08-20 01:36:34','2006-02-15 22:18:12'), - (11213,414,2,13657,'4.99','2005-08-20 08:01:39','2006-02-15 22:18:12'), - (11214,414,1,15140,'6.99','2005-08-22 13:39:20','2006-02-15 22:18:13'), - (11215,414,2,15481,'0.99','2005-08-23 01:59:14','2006-02-15 22:18:13'), - (11216,415,2,665,'4.99','2005-05-28 21:38:39','2006-02-15 22:18:13'), - (11217,415,2,1867,'4.99','2005-06-17 02:01:37','2006-02-15 22:18:13'), - (11218,415,1,3211,'2.99','2005-06-21 01:01:29','2006-02-15 22:18:13'), - (11219,415,2,4926,'8.99','2005-07-08 22:01:48','2006-02-15 22:18:13'), - (11220,415,2,5665,'0.99','2005-07-10 08:10:08','2006-02-15 22:18:13'), - (11221,415,2,5733,'0.99','2005-07-10 11:37:24','2006-02-15 22:18:13'), - (11222,415,2,6491,'5.99','2005-07-12 02:28:31','2006-02-15 22:18:13'), - (11223,415,1,6505,'3.99','2005-07-12 03:27:37','2006-02-15 22:18:13'), - (11224,415,1,7379,'4.99','2005-07-27 15:36:43','2006-02-15 22:18:13'), - (11225,415,2,7624,'0.99','2005-07-28 00:37:44','2006-02-15 22:18:13'), - (11226,415,1,7748,'4.99','2005-07-28 05:52:23','2006-02-15 22:18:13'), - (11227,415,2,8317,'2.99','2005-07-29 03:39:07','2006-02-15 22:18:13'), - (11228,415,2,9586,'2.99','2005-07-31 03:07:16','2006-02-15 22:18:13'), - (11229,415,1,9852,'2.99','2005-07-31 12:52:17','2006-02-15 22:18:13'), - (11230,415,1,10263,'5.99','2005-08-01 03:02:48','2006-02-15 22:18:13'), - (11231,415,1,10553,'2.99','2005-08-01 12:54:06','2006-02-15 22:18:13'), - (11232,415,2,11310,'1.99','2005-08-02 15:51:58','2006-02-15 22:18:13'), - (11233,415,2,12128,'5.99','2005-08-17 23:31:09','2006-02-15 22:18:14'), - (11234,415,2,12588,'2.99','2005-08-18 16:04:45','2006-02-15 22:18:14'), - (11235,415,2,13729,'8.99','2005-08-20 10:17:08','2006-02-15 22:18:14'), - (11236,415,1,14992,'4.99','2005-08-22 07:51:47','2006-02-15 22:18:14'), - (11237,415,2,15121,'4.99','2005-08-22 12:46:37','2006-02-15 22:18:14'), - (11238,415,1,15959,'0.99','2005-08-23 19:27:04','2006-02-15 22:18:14'), - (11239,416,2,253,'0.99','2005-05-26 14:43:14','2006-02-15 22:18:14'), - (11240,416,2,724,'3.99','2005-05-29 05:53:23','2006-02-15 22:18:14'), - (11241,416,2,1031,'2.99','2005-05-31 04:23:01','2006-02-15 22:18:14'), - (11242,416,2,1158,'2.99','2005-06-14 22:53:33','2006-02-15 22:18:14'), - (11243,416,1,1343,'4.99','2005-06-15 12:27:19','2006-02-15 22:18:14'), - (11244,416,2,1553,'0.99','2005-06-16 02:02:44','2006-02-15 22:18:14'), - (11245,416,2,1596,'2.99','2005-06-16 05:30:58','2006-02-15 22:18:14'), - (11246,416,2,1771,'0.99','2005-06-16 18:12:17','2006-02-15 22:18:14'), - (11247,416,1,3833,'3.99','2005-07-06 16:18:28','2006-02-15 22:18:14'), - (11248,416,1,3868,'2.99','2005-07-06 17:54:13','2006-02-15 22:18:14'), - (11249,416,1,6097,'2.99','2005-07-11 06:21:43','2006-02-15 22:18:14'), - (11250,416,1,6879,'7.99','2005-07-12 20:37:37','2006-02-15 22:18:14'), - (11251,416,1,7889,'0.99','2005-07-28 10:43:21','2006-02-15 22:18:14'), - (11252,416,1,7917,'2.99','2005-07-28 11:56:57','2006-02-15 22:18:15'), - (11253,416,2,8349,'5.99','2005-07-29 04:50:22','2006-02-15 22:18:15'), - (11254,416,2,8588,'2.99','2005-07-29 12:22:20','2006-02-15 22:18:15'), - (11255,416,2,8648,'2.99','2005-07-29 14:56:21','2006-02-15 22:18:15'), - (11256,416,2,9383,'2.99','2005-07-30 19:24:50','2006-02-15 22:18:15'), - (11257,416,1,10254,'3.99','2005-08-01 02:42:03','2006-02-15 22:18:15'), - (11258,416,1,10354,'2.99','2005-08-01 05:47:10','2006-02-15 22:18:15'), - (11259,416,1,10742,'6.99','2005-08-01 19:53:13','2006-02-15 22:18:15'), - (11260,416,1,10937,'6.99','2005-08-02 03:00:18','2006-02-15 22:18:15'), - (11261,416,2,11047,'5.99','2005-08-02 06:09:20','2006-02-15 22:18:15'), - (11262,416,1,11557,'6.99','2005-08-17 01:19:20','2006-02-15 22:18:15'), - (11263,416,1,12722,'8.99','2005-08-18 21:33:53','2006-02-15 22:18:15'), - (11264,416,1,12932,'4.99','2005-08-19 05:17:30','2006-02-15 22:18:15'), - (11265,416,1,14239,'4.99','2005-08-21 05:18:57','2006-02-15 22:18:15'), - (11266,416,1,15235,'1.99','2005-08-22 17:43:12','2006-02-15 22:18:15'), - (11267,416,2,15470,'4.99','2005-08-23 01:35:12','2006-02-15 22:18:15'), - (11268,416,1,15727,'2.99','2005-08-23 11:28:49','2006-02-15 22:18:15'), - (11269,416,2,15761,'0.99','2005-08-23 12:55:51','2006-02-15 22:18:15'), - (11270,417,1,267,'4.99','2005-05-26 16:16:21','2006-02-15 22:18:15'), - (11271,417,2,630,'8.99','2005-05-28 17:24:51','2006-02-15 22:18:16'), - (11272,417,2,833,'4.99','2005-05-29 23:21:56','2006-02-15 22:18:16'), - (11273,417,1,1921,'3.99','2005-06-17 06:04:16','2006-02-15 22:18:16'), - (11274,417,1,3952,'4.99','2005-07-06 21:51:31','2006-02-15 22:18:16'), - (11275,417,1,4418,'2.99','2005-07-07 22:05:30','2006-02-15 22:18:16'), - (11276,417,1,4421,'9.99','2005-07-07 22:07:55','2006-02-15 22:18:16'), - (11277,417,2,6258,'6.99','2005-07-11 15:24:32','2006-02-15 22:18:16'), - (11278,417,1,6312,'4.99','2005-07-11 18:19:02','2006-02-15 22:18:16'), - (11279,417,1,8877,'2.99','2005-07-30 00:15:22','2006-02-15 22:18:16'), - (11280,417,2,9049,'2.99','2005-07-30 06:57:28','2006-02-15 22:18:16'), - (11281,417,1,10478,'0.99','2005-08-01 10:09:06','2006-02-15 22:18:16'), - (11282,417,1,11217,'7.99','2005-08-02 12:26:31','2006-02-15 22:18:16'), - (11283,417,1,11291,'6.99','2005-08-02 14:57:58','2006-02-15 22:18:16'), - (11284,417,2,11303,'0.99','2005-08-02 15:39:18','2006-02-15 22:18:16'), - (11285,417,2,12074,'0.99','2005-08-17 21:50:57','2006-02-15 22:18:16'), - (11286,417,2,12281,'4.99','2005-08-18 04:50:32','2006-02-15 22:18:16'), - (11287,417,1,13545,'4.99','2005-08-20 03:50:15','2006-02-15 22:18:16'), - (11288,417,1,13927,'1.99','2005-08-20 17:11:58','2006-02-15 22:18:16'), - (11289,417,2,14121,'4.99','2005-08-21 01:26:33','2006-02-15 22:18:16'), - (11290,417,1,14304,'6.99','2005-08-21 07:23:10','2006-02-15 22:18:17'), - (11291,417,1,14607,'2.99','2005-08-21 17:56:50','2006-02-15 22:18:17'), - (11292,417,2,14882,'2.99','2005-08-22 03:52:21','2006-02-15 22:18:17'), - (11293,417,1,15795,'0.99','2005-08-23 14:07:56','2006-02-15 22:18:17'), - (11294,417,2,13261,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:17'), - (11295,418,1,2825,'2.99','2005-06-19 20:32:19','2006-02-15 22:18:17'), - (11296,418,2,2943,'2.99','2005-06-20 05:43:05','2006-02-15 22:18:17'), - (11297,418,2,2969,'2.99','2005-06-20 07:44:27','2006-02-15 22:18:17'), - (11298,418,1,3805,'0.99','2005-07-06 15:08:42','2006-02-15 22:18:17'), - (11299,418,2,4852,'7.99','2005-07-08 18:43:15','2006-02-15 22:18:17'), - (11300,418,1,4865,'2.99','2005-07-08 19:09:04','2006-02-15 22:18:17'), - (11301,418,1,4938,'0.99','2005-07-08 22:32:53','2006-02-15 22:18:17'), - (11302,418,1,6150,'4.99','2005-07-11 09:23:56','2006-02-15 22:18:17'), - (11303,418,1,6970,'4.99','2005-07-27 00:26:14','2006-02-15 22:18:17'), - (11304,418,2,8546,'5.99','2005-07-29 11:08:48','2006-02-15 22:18:17'), - (11305,418,2,8591,'0.99','2005-07-29 12:32:33','2006-02-15 22:18:17'), - (11306,418,2,8886,'10.99','2005-07-30 00:36:31','2006-02-15 22:18:17'), - (11307,418,1,9558,'4.99','2005-07-31 02:14:35','2006-02-15 22:18:17'), - (11308,418,2,10537,'5.99','2005-08-01 12:22:28','2006-02-15 22:18:17'), - (11309,418,1,10709,'0.99','2005-08-01 18:43:57','2006-02-15 22:18:18'), - (11310,418,2,10915,'2.99','2005-08-02 02:05:04','2006-02-15 22:18:18'), - (11311,418,1,11270,'2.99','2005-08-02 14:18:07','2006-02-15 22:18:18'), - (11312,418,2,11322,'3.99','2005-08-02 16:23:17','2006-02-15 22:18:18'), - (11313,418,2,11409,'1.99','2005-08-02 19:26:51','2006-02-15 22:18:18'), - (11314,418,1,11650,'4.99','2005-08-17 05:00:03','2006-02-15 22:18:18'), - (11315,418,1,11769,'2.99','2005-08-17 10:04:49','2006-02-15 22:18:18'), - (11316,418,1,11910,'0.99','2005-08-17 15:44:37','2006-02-15 22:18:18'), - (11317,418,2,13312,'0.99','2005-08-19 19:09:14','2006-02-15 22:18:18'), - (11318,418,1,13537,'2.99','2005-08-20 03:39:15','2006-02-15 22:18:18'), - (11319,418,1,13970,'0.99','2005-08-20 18:43:34','2006-02-15 22:18:18'), - (11320,418,1,14484,'0.99','2005-08-21 13:47:29','2006-02-15 22:18:18'), - (11321,418,1,14836,'4.99','2005-08-22 01:52:26','2006-02-15 22:18:18'), - (11322,418,2,14860,'2.99','2005-08-22 02:47:07','2006-02-15 22:18:18'), - (11323,418,1,15466,'4.99','2005-08-23 01:16:55','2006-02-15 22:18:18'), - (11324,418,2,15957,'5.99','2005-08-23 19:21:22','2006-02-15 22:18:18'), - (11325,419,1,62,'2.99','2005-05-25 09:18:52','2006-02-15 22:18:18'), - (11326,419,2,2793,'2.99','2005-06-19 18:52:37','2006-02-15 22:18:18'), - (11327,419,1,3596,'0.99','2005-07-06 05:03:11','2006-02-15 22:18:18'), - (11328,419,1,3694,'4.99','2005-07-06 10:01:23','2006-02-15 22:18:19'), - (11329,419,1,4224,'0.99','2005-07-07 12:24:21','2006-02-15 22:18:19'), - (11330,419,2,5333,'5.99','2005-07-09 16:59:38','2006-02-15 22:18:19'), - (11331,419,2,5863,'0.99','2005-07-10 18:25:23','2006-02-15 22:18:19'), - (11332,419,1,5900,'3.99','2005-07-10 20:21:54','2006-02-15 22:18:19'), - (11333,419,2,5933,'0.99','2005-07-10 22:06:48','2006-02-15 22:18:19'), - (11334,419,2,6173,'0.99','2005-07-11 10:33:11','2006-02-15 22:18:19'), - (11335,419,2,6587,'3.99','2005-07-12 06:56:26','2006-02-15 22:18:19'), - (11336,419,1,7362,'4.99','2005-07-27 14:58:27','2006-02-15 22:18:19'), - (11337,419,1,7619,'2.99','2005-07-28 00:25:41','2006-02-15 22:18:19'), - (11338,419,1,7796,'4.99','2005-07-28 07:39:39','2006-02-15 22:18:19'), - (11339,419,1,10150,'2.99','2005-07-31 22:22:00','2006-02-15 22:18:19'), - (11340,419,1,10372,'2.99','2005-08-01 06:23:48','2006-02-15 22:18:19'), - (11341,419,2,11025,'4.99','2005-08-02 05:39:12','2006-02-15 22:18:19'), - (11342,419,1,11313,'2.99','2005-08-02 16:02:51','2006-02-15 22:18:19'), - (11343,419,2,11323,'2.99','2005-08-02 16:29:57','2006-02-15 22:18:19'), - (11344,419,1,11425,'2.99','2005-08-02 19:58:48','2006-02-15 22:18:19'), - (11345,419,2,11689,'6.99','2005-08-17 06:42:08','2006-02-15 22:18:19'), - (11346,419,1,12460,'7.99','2005-08-18 11:25:13','2006-02-15 22:18:19'), - (11347,419,1,12720,'5.99','2005-08-18 21:28:42','2006-02-15 22:18:20'), - (11348,419,2,14308,'0.99','2005-08-21 07:43:21','2006-02-15 22:18:20'), - (11349,419,2,15779,'4.99','2005-08-23 13:33:46','2006-02-15 22:18:20'), - (11350,420,2,744,'4.99','2005-05-29 09:13:08','2006-02-15 22:18:20'), - (11351,420,2,2672,'3.99','2005-06-19 11:42:04','2006-02-15 22:18:20'), - (11352,420,1,2698,'0.99','2005-06-19 13:29:11','2006-02-15 22:18:20'), - (11353,420,1,2726,'0.99','2005-06-19 15:02:20','2006-02-15 22:18:20'), - (11354,420,1,4176,'4.99','2005-07-07 10:03:34','2006-02-15 22:18:20'), - (11355,420,2,5081,'4.99','2005-07-09 05:25:20','2006-02-15 22:18:20'), - (11356,420,1,5168,'4.99','2005-07-09 09:20:01','2006-02-15 22:18:20'), - (11357,420,2,5911,'0.99','2005-07-10 20:51:42','2006-02-15 22:18:20'), - (11358,420,2,6086,'3.99','2005-07-11 05:29:03','2006-02-15 22:18:20'), - (11359,420,2,6096,'4.99','2005-07-11 06:18:04','2006-02-15 22:18:20'), - (11360,420,2,6582,'4.99','2005-07-12 06:28:12','2006-02-15 22:18:20'), - (11361,420,1,6588,'4.99','2005-07-12 06:57:40','2006-02-15 22:18:20'), - (11362,420,2,7081,'2.99','2005-07-27 04:25:59','2006-02-15 22:18:20'), - (11363,420,2,8485,'0.99','2005-07-29 08:53:09','2006-02-15 22:18:20'), - (11364,420,1,9362,'0.99','2005-07-30 18:44:16','2006-02-15 22:18:20'), - (11365,420,2,10291,'4.99','2005-08-01 03:39:57','2006-02-15 22:18:20'), - (11366,420,2,10601,'10.99','2005-08-01 14:25:40','2006-02-15 22:18:21'), - (11367,420,1,10766,'4.99','2005-08-01 20:36:29','2006-02-15 22:18:21'), - (11368,420,2,11236,'5.99','2005-08-02 13:17:21','2006-02-15 22:18:21'), - (11369,420,2,14525,'0.99','2005-08-21 15:06:49','2006-02-15 22:18:21'), - (11370,420,2,15597,'0.99','2005-08-23 06:21:20','2006-02-15 22:18:21'), - (11371,421,1,507,'0.99','2005-05-28 02:31:19','2006-02-15 22:18:21'), - (11372,421,1,931,'0.99','2005-05-30 12:53:01','2006-02-15 22:18:21'), - (11373,421,1,1693,'4.99','2005-06-16 12:39:51','2006-02-15 22:18:21'), - (11374,421,2,2407,'2.99','2005-06-18 16:50:41','2006-02-15 22:18:21'), - (11375,421,1,3170,'4.99','2005-06-20 22:02:54','2006-02-15 22:18:21'), - (11376,421,1,3491,'7.99','2005-07-05 23:41:08','2006-02-15 22:18:21'), - (11377,421,2,3703,'5.99','2005-07-06 10:15:26','2006-02-15 22:18:21'), - (11378,421,1,3988,'8.99','2005-07-06 23:30:42','2006-02-15 22:18:21'), - (11379,421,2,4456,'5.99','2005-07-07 23:45:21','2006-02-15 22:18:21'), - (11380,421,1,6220,'0.99','2005-07-11 13:22:06','2006-02-15 22:18:21'), - (11381,421,2,6960,'3.99','2005-07-27 00:08:33','2006-02-15 22:18:21'), - (11382,421,2,7449,'4.99','2005-07-27 18:17:41','2006-02-15 22:18:21'), - (11383,421,2,8025,'2.99','2005-07-28 16:03:27','2006-02-15 22:18:21'), - (11384,421,1,8268,'4.99','2005-07-29 01:23:23','2006-02-15 22:18:21'), - (11385,421,1,8725,'4.99','2005-07-29 18:08:42','2006-02-15 22:18:22'), - (11386,421,2,9377,'4.99','2005-07-30 19:12:18','2006-02-15 22:18:22'), - (11387,421,2,9875,'0.99','2005-07-31 13:37:41','2006-02-15 22:18:22'), - (11388,421,1,10200,'4.99','2005-08-01 00:39:05','2006-02-15 22:18:22'), - (11389,421,2,11089,'2.99','2005-08-02 07:52:20','2006-02-15 22:18:22'), - (11390,421,1,11263,'4.99','2005-08-02 14:02:19','2006-02-15 22:18:22'), - (11391,421,1,11523,'3.99','2005-08-17 00:10:10','2006-02-15 22:18:22'), - (11392,421,1,12279,'4.99','2005-08-18 04:47:30','2006-02-15 22:18:22'), - (11393,421,2,13461,'9.99','2005-08-20 00:49:04','2006-02-15 22:18:22'), - (11394,421,1,13872,'4.99','2005-08-20 15:10:30','2006-02-15 22:18:22'), - (11395,421,1,14742,'4.99','2005-08-21 22:39:01','2006-02-15 22:18:22'), - (11396,421,1,14887,'3.99','2005-08-22 04:04:31','2006-02-15 22:18:22'), - (11397,421,2,15710,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:22'), - (11398,422,1,398,'0.99','2005-05-27 12:44:03','2006-02-15 22:18:22'), - (11399,422,1,1846,'0.99','2005-06-17 00:02:44','2006-02-15 22:18:22'), - (11400,422,1,1897,'4.99','2005-06-17 04:26:23','2006-02-15 22:18:22'), - (11401,422,2,2747,'2.99','2005-06-19 16:22:07','2006-02-15 22:18:22'), - (11402,422,1,2778,'5.99','2005-06-19 18:18:12','2006-02-15 22:18:22'), - (11403,422,1,3553,'4.99','2005-07-06 02:35:41','2006-02-15 22:18:22'), - (11404,422,2,4463,'2.99','2005-07-08 00:04:59','2006-02-15 22:18:23'), - (11405,422,2,4504,'0.99','2005-07-08 02:19:27','2006-02-15 22:18:23'), - (11406,422,1,5784,'1.99','2005-07-10 14:03:28','2006-02-15 22:18:23'), - (11407,422,2,7827,'0.99','2005-07-28 08:37:22','2006-02-15 22:18:23'), - (11408,422,2,8206,'4.99','2005-07-28 23:20:31','2006-02-15 22:18:23'), - (11409,422,2,9541,'4.99','2005-07-31 01:40:14','2006-02-15 22:18:23'), - (11410,422,2,10833,'6.99','2005-08-01 23:25:55','2006-02-15 22:18:23'), - (11411,422,2,11325,'6.99','2005-08-02 16:33:11','2006-02-15 22:18:23'), - (11412,422,1,11658,'2.99','2005-08-17 05:19:17','2006-02-15 22:18:23'), - (11413,422,1,11842,'4.99','2005-08-17 13:13:37','2006-02-15 22:18:23'), - (11414,422,1,12907,'9.99','2005-08-19 04:16:13','2006-02-15 22:18:23'), - (11415,422,2,13216,'1.99','2005-08-19 15:36:05','2006-02-15 22:18:23'), - (11416,422,2,13625,'1.99','2005-08-20 06:52:03','2006-02-15 22:18:23'), - (11417,422,2,13709,'0.99','2005-08-20 09:34:51','2006-02-15 22:18:23'), - (11418,422,2,13722,'4.99','2005-08-20 10:03:45','2006-02-15 22:18:23'), - (11419,422,1,14861,'4.99','2005-08-22 02:48:05','2006-02-15 22:18:23'), - (11420,422,1,15272,'3.99','2005-08-22 18:49:40','2006-02-15 22:18:23'), - (11421,422,1,15273,'2.99','2005-08-22 18:53:28','2006-02-15 22:18:23'), - (11422,422,2,15316,'2.99','2005-08-22 20:07:03','2006-02-15 22:18:23'), - (11423,422,2,15441,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:24'), - (11424,423,1,1504,'3.99','2005-06-15 22:08:06','2006-02-15 22:18:24'), - (11425,423,2,1827,'0.99','2005-06-16 21:54:40','2006-02-15 22:18:24'), - (11426,423,1,2600,'6.99','2005-06-19 06:07:25','2006-02-15 22:18:24'), - (11427,423,2,2758,'6.99','2005-06-19 17:04:35','2006-02-15 22:18:24'), - (11428,423,1,3072,'8.99','2005-06-20 14:21:31','2006-02-15 22:18:24'), - (11429,423,2,4105,'0.99','2005-07-07 06:31:00','2006-02-15 22:18:24'), - (11430,423,1,4250,'0.99','2005-07-07 14:08:11','2006-02-15 22:18:24'), - (11431,423,1,4679,'2.99','2005-07-08 10:33:14','2006-02-15 22:18:24'), - (11432,423,1,6506,'1.99','2005-07-12 03:28:22','2006-02-15 22:18:24'), - (11433,423,1,7016,'5.99','2005-07-27 02:15:16','2006-02-15 22:18:24'), - (11434,423,2,7141,'2.99','2005-07-27 06:55:27','2006-02-15 22:18:24'), - (11435,423,1,7157,'4.99','2005-07-27 07:20:28','2006-02-15 22:18:24'), - (11436,423,1,7290,'0.99','2005-07-27 12:28:45','2006-02-15 22:18:24'), - (11437,423,2,7539,'9.99','2005-07-27 21:39:42','2006-02-15 22:18:24'), - (11438,423,1,7849,'9.99','2005-07-28 09:30:02','2006-02-15 22:18:24'), - (11439,423,2,8082,'3.99','2005-07-28 18:08:02','2006-02-15 22:18:24'), - (11440,423,2,8595,'9.99','2005-07-29 12:47:43','2006-02-15 22:18:24'), - (11441,423,2,9026,'2.99','2005-07-30 05:55:31','2006-02-15 22:18:24'), - (11442,423,1,10488,'2.99','2005-08-01 10:27:27','2006-02-15 22:18:25'), - (11443,423,1,11091,'2.99','2005-08-02 07:56:41','2006-02-15 22:18:25'), - (11444,423,2,11514,'4.99','2005-08-16 23:53:10','2006-02-15 22:18:25'), - (11445,423,2,12806,'4.99','2005-08-19 00:37:26','2006-02-15 22:18:25'), - (11446,423,2,14191,'6.99','2005-08-21 03:35:58','2006-02-15 22:18:25'), - (11447,423,2,14902,'4.99','2005-08-22 04:31:50','2006-02-15 22:18:25'), - (11448,423,1,15380,'0.99','2005-08-22 22:28:15','2006-02-15 22:18:25'), - (11449,423,1,15755,'4.99','2005-08-23 12:46:38','2006-02-15 22:18:25'), - (11450,424,2,403,'0.99','2005-05-27 13:28:52','2006-02-15 22:18:25'), - (11451,424,2,3044,'4.99','2005-06-20 12:38:49','2006-02-15 22:18:25'), - (11452,424,1,3166,'6.99','2005-06-20 21:32:32','2006-02-15 22:18:25'), - (11453,424,2,3404,'0.99','2005-06-21 15:57:52','2006-02-15 22:18:25'), - (11454,424,2,3746,'0.99','2005-07-06 12:10:51','2006-02-15 22:18:25'), - (11455,424,2,4512,'0.99','2005-07-08 02:38:56','2006-02-15 22:18:25'), - (11456,424,2,4559,'0.99','2005-07-08 04:56:49','2006-02-15 22:18:25'), - (11457,424,2,4696,'5.99','2005-07-08 11:12:27','2006-02-15 22:18:25'), - (11458,424,1,5568,'0.99','2005-07-10 03:36:56','2006-02-15 22:18:25'), - (11459,424,1,5611,'3.99','2005-07-10 05:13:43','2006-02-15 22:18:25'), - (11460,424,1,6589,'2.99','2005-07-12 07:06:29','2006-02-15 22:18:25'), - (11461,424,1,7594,'2.99','2005-07-27 23:30:41','2006-02-15 22:18:26'), - (11462,424,2,8194,'2.99','2005-07-28 22:51:44','2006-02-15 22:18:26'), - (11463,424,1,8918,'4.99','2005-07-30 01:56:22','2006-02-15 22:18:26'), - (11464,424,2,8964,'1.99','2005-07-30 03:49:35','2006-02-15 22:18:26'), - (11465,424,2,8999,'2.99','2005-07-30 04:55:46','2006-02-15 22:18:26'), - (11466,424,1,9471,'4.99','2005-07-30 23:02:36','2006-02-15 22:18:26'), - (11467,424,1,9516,'8.99','2005-07-31 00:40:58','2006-02-15 22:18:26'), - (11468,424,2,9878,'4.99','2005-07-31 13:42:02','2006-02-15 22:18:26'), - (11469,424,1,10017,'6.99','2005-07-31 18:13:22','2006-02-15 22:18:26'), - (11470,424,2,10369,'4.99','2005-08-01 06:13:44','2006-02-15 22:18:26'), - (11471,424,1,10866,'2.99','2005-08-02 00:22:49','2006-02-15 22:18:26'), - (11472,424,2,11374,'2.99','2005-08-02 18:14:54','2006-02-15 22:18:26'), - (11473,424,2,11562,'6.99','2005-08-17 01:23:39','2006-02-15 22:18:26'), - (11474,424,2,11833,'2.99','2005-08-17 13:00:33','2006-02-15 22:18:26'), - (11475,424,2,12729,'0.99','2005-08-18 21:52:59','2006-02-15 22:18:26'), - (11476,424,2,13793,'3.99','2005-08-20 12:22:04','2006-02-15 22:18:26'), - (11477,424,2,15113,'0.99','2005-08-22 12:23:59','2006-02-15 22:18:26'), - (11478,424,2,15941,'9.99','2005-08-23 18:46:44','2006-02-15 22:18:26'), - (11479,424,1,15094,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:27'), - (11480,425,2,1098,'5.99','2005-05-31 13:51:48','2006-02-15 22:18:27'), - (11481,425,1,3276,'6.99','2005-06-21 05:35:52','2006-02-15 22:18:27'), - (11482,425,1,3807,'4.99','2005-07-06 15:11:44','2006-02-15 22:18:27'), - (11483,425,2,4361,'2.99','2005-07-07 19:33:23','2006-02-15 22:18:27'), - (11484,425,2,4362,'5.99','2005-07-07 19:35:30','2006-02-15 22:18:27'), - (11485,425,2,4483,'8.99','2005-07-08 01:03:12','2006-02-15 22:18:27'), - (11486,425,1,4659,'2.99','2005-07-08 09:53:28','2006-02-15 22:18:27'), - (11487,425,1,4884,'7.99','2005-07-08 19:49:17','2006-02-15 22:18:27'), - (11488,425,1,4939,'7.99','2005-07-08 22:35:30','2006-02-15 22:18:27'), - (11489,425,2,5363,'2.99','2005-07-09 18:18:49','2006-02-15 22:18:27'), - (11490,425,1,5371,'4.99','2005-07-09 18:47:48','2006-02-15 22:18:27'), - (11491,425,2,6318,'2.99','2005-07-11 18:48:22','2006-02-15 22:18:27'), - (11492,425,1,6603,'2.99','2005-07-12 07:52:55','2006-02-15 22:18:27'), - (11493,425,1,7249,'4.99','2005-07-27 10:39:53','2006-02-15 22:18:27'), - (11494,425,1,8974,'0.99','2005-07-30 04:09:16','2006-02-15 22:18:27'), - (11495,425,1,9170,'0.99','2005-07-30 11:35:24','2006-02-15 22:18:27'), - (11496,425,2,9682,'2.99','2005-07-31 06:47:10','2006-02-15 22:18:27'), - (11497,425,1,10121,'0.99','2005-07-31 21:24:53','2006-02-15 22:18:27'), - (11498,425,2,10163,'0.99','2005-07-31 23:12:34','2006-02-15 22:18:28'), - (11499,425,1,10545,'0.99','2005-08-01 12:37:46','2006-02-15 22:18:28'), - (11500,425,2,13040,'0.99','2005-08-19 09:04:24','2006-02-15 22:18:28'), - (11501,425,2,14089,'5.99','2005-08-20 23:59:02','2006-02-15 22:18:28'), - (11502,425,2,14881,'4.99','2005-08-22 03:47:39','2006-02-15 22:18:28'), - (11503,425,1,15064,'0.99','2005-08-22 10:41:58','2006-02-15 22:18:28'), - (11504,425,2,15784,'6.99','2005-08-23 13:46:00','2006-02-15 22:18:28'), - (11505,425,2,16036,'2.99','2005-08-23 22:12:44','2006-02-15 22:18:28'), - (11506,426,2,604,'0.99','2005-05-28 14:37:07','2006-02-15 22:18:28'), - (11507,426,1,1709,'6.99','2005-06-16 14:10:15','2006-02-15 22:18:28'), - (11508,426,1,1842,'7.99','2005-06-16 23:45:59','2006-02-15 22:18:28'), - (11509,426,1,2204,'2.99','2005-06-18 02:11:38','2006-02-15 22:18:28'), - (11510,426,1,2804,'0.99','2005-06-19 19:24:54','2006-02-15 22:18:28'), - (11511,426,1,3243,'0.99','2005-06-21 03:00:11','2006-02-15 22:18:28'), - (11512,426,2,4114,'2.99','2005-07-07 06:51:12','2006-02-15 22:18:28'), - (11513,426,2,4398,'4.99','2005-07-07 21:18:44','2006-02-15 22:18:28'), - (11514,426,1,4900,'4.99','2005-07-08 20:38:06','2006-02-15 22:18:28'), - (11515,426,1,5725,'3.99','2005-07-10 11:21:21','2006-02-15 22:18:28'), - (11516,426,1,7495,'4.99','2005-07-27 20:01:20','2006-02-15 22:18:28'), - (11517,426,1,7527,'10.99','2005-07-27 21:14:28','2006-02-15 22:18:29'), - (11518,426,1,7711,'4.99','2005-07-28 04:26:42','2006-02-15 22:18:29'), - (11519,426,1,7789,'5.99','2005-07-28 07:22:07','2006-02-15 22:18:29'), - (11520,426,1,9185,'5.99','2005-07-30 12:10:40','2006-02-15 22:18:29'), - (11521,426,2,9247,'4.99','2005-07-30 14:13:56','2006-02-15 22:18:29'), - (11522,426,2,10172,'10.99','2005-07-31 23:29:51','2006-02-15 22:18:29'), - (11523,426,1,10505,'1.99','2005-08-01 11:13:59','2006-02-15 22:18:29'), - (11524,426,2,11237,'0.99','2005-08-02 13:24:01','2006-02-15 22:18:29'), - (11525,426,2,11876,'0.99','2005-08-17 14:18:21','2006-02-15 22:18:29'), - (11526,426,2,11938,'6.99','2005-08-17 16:54:54','2006-02-15 22:18:29'), - (11527,426,2,12548,'5.99','2005-08-18 14:35:26','2006-02-15 22:18:29'), - (11528,426,2,12707,'4.99','2005-08-18 20:52:02','2006-02-15 22:18:29'), - (11529,426,1,12822,'4.99','2005-08-19 01:15:24','2006-02-15 22:18:29'), - (11530,426,2,13834,'2.99','2005-08-20 14:03:08','2006-02-15 22:18:29'), - (11531,426,2,14151,'6.99','2005-08-21 02:23:25','2006-02-15 22:18:29'), - (11532,426,2,14826,'2.99','2005-08-22 01:32:14','2006-02-15 22:18:29'), - (11533,427,2,82,'6.99','2005-05-25 12:17:46','2006-02-15 22:18:29'), - (11534,427,1,1342,'5.99','2005-06-15 12:26:21','2006-02-15 22:18:29'), - (11535,427,2,1628,'3.99','2005-06-16 07:52:55','2006-02-15 22:18:30'), - (11536,427,1,1648,'5.99','2005-06-16 09:17:07','2006-02-15 22:18:30'), - (11537,427,1,1857,'1.99','2005-06-17 01:12:58','2006-02-15 22:18:30'), - (11538,427,2,2466,'0.99','2005-06-18 20:18:42','2006-02-15 22:18:30'), - (11539,427,1,4793,'3.99','2005-07-08 16:30:01','2006-02-15 22:18:30'), - (11540,427,2,5476,'2.99','2005-07-09 23:37:09','2006-02-15 22:18:30'), - (11541,427,2,5586,'5.99','2005-07-10 04:17:06','2006-02-15 22:18:30'), - (11542,427,1,6423,'6.99','2005-07-11 23:47:31','2006-02-15 22:18:30'), - (11543,427,1,6509,'2.99','2005-07-12 03:35:01','2006-02-15 22:18:30'), - (11544,427,2,6938,'7.99','2005-07-26 23:16:04','2006-02-15 22:18:30'), - (11545,427,2,8182,'3.99','2005-07-28 22:19:12','2006-02-15 22:18:30'), - (11546,427,1,8531,'5.99','2005-07-29 10:26:15','2006-02-15 22:18:30'), - (11547,427,2,8658,'5.99','2005-07-29 15:16:37','2006-02-15 22:18:30'), - (11548,427,2,9978,'2.99','2005-07-31 16:59:51','2006-02-15 22:18:30'), - (11549,427,1,10417,'4.99','2005-08-01 08:10:36','2006-02-15 22:18:30'), - (11550,427,1,10464,'5.99','2005-08-01 09:43:14','2006-02-15 22:18:30'), - (11551,427,2,10560,'4.99','2005-08-01 13:04:57','2006-02-15 22:18:30'), - (11552,427,1,11024,'5.99','2005-08-02 05:38:31','2006-02-15 22:18:30'), - (11553,427,1,13720,'1.99','2005-08-20 10:01:39','2006-02-15 22:18:30'), - (11554,427,2,14201,'6.99','2005-08-21 03:51:34','2006-02-15 22:18:31'), - (11555,427,1,14287,'3.99','2005-08-21 06:53:59','2006-02-15 22:18:31'), - (11556,427,1,15330,'3.99','2005-08-22 20:35:30','2006-02-15 22:18:31'), - (11557,428,2,634,'4.99','2005-05-28 17:40:35','2006-02-15 22:18:31'), - (11558,428,1,1227,'3.99','2005-06-15 03:50:03','2006-02-15 22:18:31'), - (11559,428,2,1471,'2.99','2005-06-15 20:53:26','2006-02-15 22:18:31'), - (11560,428,1,1601,'3.99','2005-06-16 06:11:13','2006-02-15 22:18:31'), - (11561,428,1,2677,'2.99','2005-06-19 12:01:59','2006-02-15 22:18:31'), - (11562,428,2,3377,'0.99','2005-06-21 13:51:12','2006-02-15 22:18:31'), - (11563,428,1,3702,'2.99','2005-07-06 10:13:56','2006-02-15 22:18:31'), - (11564,428,1,3925,'5.99','2005-07-06 20:41:44','2006-02-15 22:18:31'), - (11565,428,1,4151,'0.99','2005-07-07 08:49:02','2006-02-15 22:18:31'), - (11566,428,1,5373,'4.99','2005-07-09 18:48:57','2006-02-15 22:18:31'), - (11567,428,1,6735,'5.99','2005-07-12 14:08:20','2006-02-15 22:18:31'), - (11568,428,1,7823,'6.99','2005-07-28 08:32:53','2006-02-15 22:18:31'), - (11569,428,1,8155,'2.99','2005-07-28 20:57:06','2006-02-15 22:18:31'), - (11570,428,2,8387,'4.99','2005-07-29 05:47:27','2006-02-15 22:18:31'), - (11571,428,2,8528,'4.99','2005-07-29 10:24:22','2006-02-15 22:18:31'), - (11572,428,1,9904,'5.99','2005-07-31 14:34:17','2006-02-15 22:18:31'), - (11573,428,2,9982,'2.99','2005-07-31 17:09:02','2006-02-15 22:18:32'), - (11574,428,2,10577,'4.99','2005-08-01 13:46:38','2006-02-15 22:18:32'), - (11575,428,2,10888,'2.99','2005-08-02 00:52:45','2006-02-15 22:18:32'), - (11576,428,2,11536,'0.99','2005-08-17 00:40:03','2006-02-15 22:18:32'), - (11577,429,2,150,'5.99','2005-05-26 00:28:39','2006-02-15 22:18:32'), - (11578,429,2,290,'2.99','2005-05-26 20:08:33','2006-02-15 22:18:32'), - (11579,429,2,601,'7.99','2005-05-28 14:08:22','2006-02-15 22:18:32'), - (11580,429,2,799,'4.99','2005-05-29 17:24:48','2006-02-15 22:18:32'), - (11581,429,2,844,'4.99','2005-05-30 00:58:20','2006-02-15 22:18:32'), - (11582,429,2,1781,'5.99','2005-06-16 19:20:24','2006-02-15 22:18:32'), - (11583,429,2,1798,'2.99','2005-06-16 20:16:15','2006-02-15 22:18:32'), - (11584,429,2,1916,'7.99','2005-06-17 05:29:59','2006-02-15 22:18:32'), - (11585,429,1,3409,'2.99','2005-06-21 16:17:38','2006-02-15 22:18:32'), - (11586,429,2,5868,'4.99','2005-07-10 18:39:16','2006-02-15 22:18:32'), - (11587,429,2,6196,'7.99','2005-07-11 12:05:46','2006-02-15 22:18:32'), - (11588,429,2,6886,'6.99','2005-07-12 20:58:04','2006-02-15 22:18:32'), - (11589,429,1,6977,'6.99','2005-07-27 00:40:50','2006-02-15 22:18:32'), - (11590,429,2,7352,'4.99','2005-07-27 14:38:29','2006-02-15 22:18:32'), - (11591,429,2,8136,'1.99','2005-07-28 20:05:48','2006-02-15 22:18:33'), - (11592,429,2,8143,'2.99','2005-07-28 20:23:11','2006-02-15 22:18:33'), - (11593,429,2,8175,'7.99','2005-07-28 21:38:16','2006-02-15 22:18:33'), - (11594,429,1,9849,'0.99','2005-07-31 12:44:34','2006-02-15 22:18:33'), - (11595,429,1,12259,'2.99','2005-08-18 04:14:35','2006-02-15 22:18:33'), - (11596,429,1,12953,'4.99','2005-08-19 06:04:07','2006-02-15 22:18:33'), - (11597,429,2,14495,'4.99','2005-08-21 14:04:39','2006-02-15 22:18:33'), - (11598,430,2,30,'2.99','2005-05-25 04:01:32','2006-02-15 22:18:33'), - (11599,430,1,364,'4.99','2005-05-27 07:20:12','2006-02-15 22:18:33'), - (11600,430,2,1207,'0.99','2005-06-15 02:27:08','2006-02-15 22:18:33'), - (11601,430,1,1274,'2.99','2005-06-15 07:52:52','2006-02-15 22:18:33'), - (11602,430,1,1538,'2.99','2005-06-16 01:05:50','2006-02-15 22:18:33'), - (11603,430,1,1759,'6.99','2005-06-16 17:46:37','2006-02-15 22:18:33'), - (11604,430,2,2892,'0.99','2005-06-20 02:06:39','2006-02-15 22:18:33'), - (11605,430,2,3153,'0.99','2005-06-20 20:44:15','2006-02-15 22:18:33'), - (11606,430,1,5002,'4.99','2005-07-09 01:17:08','2006-02-15 22:18:33'), - (11607,430,1,5217,'5.99','2005-07-09 11:56:50','2006-02-15 22:18:33'), - (11608,430,2,5879,'6.99','2005-07-10 19:12:47','2006-02-15 22:18:33'), - (11609,430,1,5958,'6.99','2005-07-10 23:31:51','2006-02-15 22:18:33'), - (11610,430,2,6043,'0.99','2005-07-11 03:18:10','2006-02-15 22:18:34'), - (11611,430,1,8560,'4.99','2005-07-29 11:27:27','2006-02-15 22:18:34'), - (11612,430,2,9450,'2.99','2005-07-30 22:04:04','2006-02-15 22:18:34'), - (11613,430,1,12723,'0.99','2005-08-18 21:34:16','2006-02-15 22:18:34'), - (11614,430,1,12965,'4.99','2005-08-19 06:33:00','2006-02-15 22:18:34'), - (11615,430,1,13007,'0.99','2005-08-19 07:47:43','2006-02-15 22:18:34'), - (11616,430,2,13452,'0.99','2005-08-20 00:20:07','2006-02-15 22:18:34'), - (11617,430,2,13454,'2.99','2005-08-20 00:30:52','2006-02-15 22:18:34'), - (11618,430,1,14058,'5.99','2005-08-20 22:24:35','2006-02-15 22:18:34'), - (11619,430,1,15031,'4.99','2005-08-22 09:11:48','2006-02-15 22:18:34'), - (11620,431,2,1126,'2.99','2005-05-31 17:27:45','2006-02-15 22:18:34'), - (11621,431,2,1561,'2.99','2005-06-16 02:41:30','2006-02-15 22:18:34'), - (11622,431,1,2096,'4.99','2005-06-17 18:33:04','2006-02-15 22:18:34'), - (11623,431,1,2269,'3.99','2005-06-18 06:20:54','2006-02-15 22:18:34'), - (11624,431,2,2281,'4.99','2005-06-18 06:47:29','2006-02-15 22:18:34'), - (11625,431,2,2761,'2.99','2005-06-19 17:22:17','2006-02-15 22:18:34'), - (11626,431,2,3304,'6.99','2005-06-21 07:43:40','2006-02-15 22:18:34'), - (11627,431,2,3369,'8.99','2005-06-21 13:20:31','2006-02-15 22:18:34'), - (11628,431,1,4144,'3.99','2005-07-07 08:25:44','2006-02-15 22:18:35'), - (11629,431,1,4801,'2.99','2005-07-08 16:51:36','2006-02-15 22:18:35'), - (11630,431,1,4863,'0.99','2005-07-08 19:03:15','2006-02-15 22:18:35'), - (11631,431,2,7978,'4.99','2005-07-28 14:16:14','2006-02-15 22:18:35'), - (11632,431,2,8810,'4.99','2005-07-29 21:45:19','2006-02-15 22:18:35'), - (11633,431,2,10508,'0.99','2005-08-01 11:23:27','2006-02-15 22:18:35'), - (11634,431,1,10527,'4.99','2005-08-01 11:55:54','2006-02-15 22:18:35'), - (11635,431,2,10959,'6.99','2005-08-02 03:39:39','2006-02-15 22:18:35'), - (11636,431,2,11538,'2.99','2005-08-17 00:44:04','2006-02-15 22:18:35'), - (11637,431,1,12273,'6.99','2005-08-18 04:40:50','2006-02-15 22:18:35'), - (11638,431,2,13153,'1.99','2005-08-19 13:09:47','2006-02-15 22:18:35'), - (11639,431,1,13784,'4.99','2005-08-20 12:11:28','2006-02-15 22:18:35'), - (11640,431,1,15809,'2.99','2005-08-23 14:42:07','2006-02-15 22:18:35'), - (11641,431,1,15960,'2.99','2005-08-23 19:35:42','2006-02-15 22:18:35'), - (11642,431,2,13587,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:35'), - (11643,432,2,326,'7.99','2005-05-27 01:10:11','2006-02-15 22:18:35'), - (11644,432,1,550,'5.99','2005-05-28 07:39:16','2006-02-15 22:18:35'), - (11645,432,1,897,'8.99','2005-05-30 09:10:01','2006-02-15 22:18:35'), - (11646,432,2,1180,'5.99','2005-06-15 00:39:01','2006-02-15 22:18:35'), - (11647,432,2,1597,'2.99','2005-06-16 05:47:03','2006-02-15 22:18:36'), - (11648,432,2,3194,'4.99','2005-06-20 23:59:57','2006-02-15 22:18:36'), - (11649,432,1,4965,'5.99','2005-07-08 23:46:57','2006-02-15 22:18:36'), - (11650,432,1,4973,'4.99','2005-07-08 23:58:18','2006-02-15 22:18:36'), - (11651,432,1,5204,'2.99','2005-07-09 10:54:14','2006-02-15 22:18:36'), - (11652,432,1,5322,'6.99','2005-07-09 16:28:13','2006-02-15 22:18:36'), - (11653,432,1,5944,'4.99','2005-07-10 22:51:44','2006-02-15 22:18:36'), - (11654,432,1,5990,'4.99','2005-07-11 01:03:14','2006-02-15 22:18:36'), - (11655,432,2,7326,'4.99','2005-07-27 13:50:40','2006-02-15 22:18:36'), - (11656,432,2,7681,'0.99','2005-07-28 03:07:09','2006-02-15 22:18:36'), - (11657,432,2,8079,'4.99','2005-07-28 17:58:36','2006-02-15 22:18:36'), - (11658,432,2,8094,'6.99','2005-07-28 18:30:28','2006-02-15 22:18:36'), - (11659,432,2,9916,'4.99','2005-07-31 14:54:52','2006-02-15 22:18:36'), - (11660,432,2,9984,'2.99','2005-07-31 17:12:23','2006-02-15 22:18:36'), - (11661,432,2,11870,'0.99','2005-08-17 14:11:28','2006-02-15 22:18:36'), - (11662,432,1,12767,'6.99','2005-08-18 23:25:49','2006-02-15 22:18:36'), - (11663,432,1,14027,'2.99','2005-08-20 21:21:34','2006-02-15 22:18:36'), - (11664,432,1,15523,'4.99','2005-08-23 03:32:36','2006-02-15 22:18:36'), - (11665,432,1,15713,'6.99','2005-08-23 10:56:15','2006-02-15 22:18:36'), - (11666,433,2,146,'8.99','2005-05-26 00:07:11','2006-02-15 22:18:37'), - (11667,433,1,691,'10.99','2005-05-29 01:01:26','2006-02-15 22:18:37'), - (11668,433,2,4087,'6.99','2005-07-07 05:30:56','2006-02-15 22:18:37'), - (11669,433,2,4158,'0.99','2005-07-07 09:05:42','2006-02-15 22:18:37'), - (11670,433,2,4988,'7.99','2005-07-09 00:46:14','2006-02-15 22:18:37'), - (11671,433,2,5457,'0.99','2005-07-09 22:33:14','2006-02-15 22:18:37'), - (11672,433,1,5969,'8.99','2005-07-11 00:03:22','2006-02-15 22:18:37'), - (11673,433,1,6765,'5.99','2005-07-12 15:30:47','2006-02-15 22:18:37'), - (11674,433,1,6848,'0.99','2005-07-12 19:24:07','2006-02-15 22:18:37'), - (11675,433,1,6850,'4.99','2005-07-12 19:30:42','2006-02-15 22:18:37'), - (11676,433,1,7821,'4.99','2005-07-28 08:31:23','2006-02-15 22:18:37'), - (11677,433,2,7907,'4.99','2005-07-28 11:32:00','2006-02-15 22:18:37'), - (11678,433,1,8414,'5.99','2005-07-29 06:48:35','2006-02-15 22:18:37'), - (11679,433,1,8713,'2.99','2005-07-29 17:31:19','2006-02-15 22:18:37'), - (11680,433,2,9161,'4.99','2005-07-30 11:19:18','2006-02-15 22:18:37'), - (11681,433,1,9294,'3.99','2005-07-30 16:14:37','2006-02-15 22:18:37'), - (11682,433,1,10663,'4.99','2005-08-01 16:51:08','2006-02-15 22:18:37'), - (11683,433,1,11664,'2.99','2005-08-17 05:35:52','2006-02-15 22:18:37'), - (11684,433,2,12669,'6.99','2005-08-18 19:17:47','2006-02-15 22:18:38'), - (11685,433,2,13273,'4.99','2005-08-19 17:49:13','2006-02-15 22:18:38'), - (11686,433,1,13801,'4.99','2005-08-20 12:40:53','2006-02-15 22:18:38'), - (11687,433,2,14523,'4.99','2005-08-21 15:03:45','2006-02-15 22:18:38'), - (11688,433,1,14559,'6.99','2005-08-21 16:11:35','2006-02-15 22:18:38'), - (11689,433,2,15476,'4.99','2005-08-23 01:45:07','2006-02-15 22:18:38'), - (11690,433,1,15502,'5.99','2005-08-23 02:40:04','2006-02-15 22:18:38'), - (11691,434,2,508,'5.99','2005-05-28 02:40:50','2006-02-15 22:18:38'), - (11692,434,1,1225,'0.99','2005-06-15 03:45:35','2006-02-15 22:18:38'), - (11693,434,2,1584,'5.99','2005-06-16 04:50:50','2006-02-15 22:18:38'), - (11694,434,2,2415,'7.99','2005-06-18 17:02:42','2006-02-15 22:18:38'), - (11695,434,1,2430,'3.99','2005-06-18 17:51:46','2006-02-15 22:18:38'), - (11696,434,1,2494,'3.99','2005-06-18 22:15:09','2006-02-15 22:18:38'), - (11697,434,1,3014,'2.99','2005-06-20 10:45:20','2006-02-15 22:18:38'), - (11698,434,2,3037,'2.99','2005-06-20 12:28:03','2006-02-15 22:18:38'), - (11699,434,1,4414,'2.99','2005-07-07 22:00:21','2006-02-15 22:18:38'), - (11700,434,2,4654,'6.99','2005-07-08 09:48:03','2006-02-15 22:18:38'), - (11701,434,2,4960,'10.99','2005-07-08 23:27:16','2006-02-15 22:18:38'), - (11702,434,2,5464,'2.99','2005-07-09 22:58:14','2006-02-15 22:18:39'), - (11703,434,2,6972,'0.99','2005-07-27 00:31:25','2006-02-15 22:18:39'), - (11704,434,1,7260,'6.99','2005-07-27 11:09:28','2006-02-15 22:18:39'), - (11705,434,2,7479,'2.99','2005-07-27 19:18:17','2006-02-15 22:18:39'), - (11706,434,1,8205,'0.99','2005-07-28 23:18:48','2006-02-15 22:18:39'), - (11707,434,1,9350,'4.99','2005-07-30 18:24:30','2006-02-15 22:18:39'), - (11708,434,1,11242,'3.99','2005-08-02 13:32:00','2006-02-15 22:18:39'), - (11709,434,1,11867,'2.99','2005-08-17 14:04:28','2006-02-15 22:18:39'), - (11710,434,2,12030,'2.99','2005-08-17 20:10:48','2006-02-15 22:18:39'), - (11711,434,2,12146,'2.99','2005-08-18 00:10:04','2006-02-15 22:18:39'), - (11712,434,2,12624,'7.99','2005-08-18 17:35:00','2006-02-15 22:18:39'), - (11713,434,2,13359,'9.99','2005-08-19 21:04:49','2006-02-15 22:18:39'), - (11714,434,1,13383,'7.99','2005-08-19 21:38:44','2006-02-15 22:18:39'), - (11715,434,2,14553,'4.99','2005-08-21 15:59:40','2006-02-15 22:18:39'), - (11716,434,2,15016,'3.99','2005-08-22 08:47:35','2006-02-15 22:18:39'), - (11717,434,2,15385,'4.99','2005-08-22 22:37:34','2006-02-15 22:18:39'), - (11718,435,1,757,'7.99','2005-05-29 10:29:47','2006-02-15 22:18:39'), - (11719,435,1,806,'4.99','2005-05-29 18:31:30','2006-02-15 22:18:39'), - (11720,435,2,1443,'0.99','2005-06-15 18:57:51','2006-02-15 22:18:39'), - (11721,435,1,2984,'0.99','2005-06-20 08:43:44','2006-02-15 22:18:40'), - (11722,435,1,3690,'0.99','2005-07-06 09:46:03','2006-02-15 22:18:40'), - (11723,435,1,3918,'8.99','2005-07-06 20:26:15','2006-02-15 22:18:40'), - (11724,435,2,5220,'4.99','2005-07-09 11:59:04','2006-02-15 22:18:40'), - (11725,435,2,6051,'4.99','2005-07-11 03:46:41','2006-02-15 22:18:40'), - (11726,435,1,6935,'2.99','2005-07-26 23:13:10','2006-02-15 22:18:40'), - (11727,435,1,8386,'5.99','2005-07-29 05:45:30','2006-02-15 22:18:40'), - (11728,435,2,8891,'4.99','2005-07-30 00:46:55','2006-02-15 22:18:40'), - (11729,435,2,9269,'0.99','2005-07-30 15:02:33','2006-02-15 22:18:40'), - (11730,435,1,9655,'3.99','2005-07-31 05:57:54','2006-02-15 22:18:40'), - (11731,435,2,9829,'4.99','2005-07-31 11:58:38','2006-02-15 22:18:40'), - (11732,435,1,10998,'6.99','2005-08-02 04:50:55','2006-02-15 22:18:40'), - (11733,435,1,11041,'2.99','2005-08-02 06:03:53','2006-02-15 22:18:40'), - (11734,435,1,11786,'3.99','2005-08-17 10:57:40','2006-02-15 22:18:40'), - (11735,435,1,11796,'0.99','2005-08-17 11:16:47','2006-02-15 22:18:40'), - (11736,435,2,12046,'0.99','2005-08-17 20:47:46','2006-02-15 22:18:40'), - (11737,435,1,12741,'4.99','2005-08-18 22:17:05','2006-02-15 22:18:40'), - (11738,435,2,13208,'0.99','2005-08-19 15:18:55','2006-02-15 22:18:40'), - (11739,435,1,14696,'4.99','2005-08-21 20:48:05','2006-02-15 22:18:41'), - (11740,435,1,14765,'1.99','2005-08-21 23:40:28','2006-02-15 22:18:41'), - (11741,435,1,14850,'0.99','2005-08-22 02:16:55','2006-02-15 22:18:41'), - (11742,435,1,15136,'2.99','2005-08-22 13:19:25','2006-02-15 22:18:41'), - (11743,436,1,45,'7.99','2005-05-25 05:59:39','2006-02-15 22:18:41'), - (11744,436,1,256,'3.99','2005-05-26 15:20:58','2006-02-15 22:18:41'), - (11745,436,1,848,'5.99','2005-05-30 01:19:53','2006-02-15 22:18:41'), - (11746,436,1,2291,'9.99','2005-06-18 07:36:46','2006-02-15 22:18:41'), - (11747,436,2,3851,'1.99','2005-07-06 16:54:12','2006-02-15 22:18:41'), - (11748,436,2,3944,'2.99','2005-07-06 21:34:11','2006-02-15 22:18:41'), - (11749,436,2,4643,'0.99','2005-07-08 09:13:56','2006-02-15 22:18:41'), - (11750,436,2,4751,'2.99','2005-07-08 14:07:52','2006-02-15 22:18:41'), - (11751,436,1,4782,'4.99','2005-07-08 16:08:51','2006-02-15 22:18:41'), - (11752,436,1,5959,'0.99','2005-07-10 23:35:36','2006-02-15 22:18:41'), - (11753,436,1,7593,'4.99','2005-07-27 23:28:47','2006-02-15 22:18:41'), - (11754,436,2,8027,'5.99','2005-07-28 16:09:57','2006-02-15 22:18:41'), - (11755,436,2,8097,'9.99','2005-07-28 18:32:49','2006-02-15 22:18:41'), - (11756,436,1,9345,'9.99','2005-07-30 18:13:51','2006-02-15 22:18:41'), - (11757,436,1,9539,'0.99','2005-07-31 01:36:19','2006-02-15 22:18:42'), - (11758,436,1,9638,'5.99','2005-07-31 05:30:27','2006-02-15 22:18:42'), - (11759,436,2,10216,'3.99','2005-08-01 01:06:27','2006-02-15 22:18:42'), - (11760,436,2,11160,'0.99','2005-08-02 10:05:30','2006-02-15 22:18:42'), - (11761,436,1,11580,'2.99','2005-08-17 01:59:07','2006-02-15 22:18:42'), - (11762,436,2,11615,'4.99','2005-08-17 03:54:35','2006-02-15 22:18:42'), - (11763,436,2,11896,'5.99','2005-08-17 15:19:54','2006-02-15 22:18:42'), - (11764,436,2,12297,'0.99','2005-08-18 05:19:57','2006-02-15 22:18:42'), - (11765,436,2,12429,'6.99','2005-08-18 10:26:46','2006-02-15 22:18:42'), - (11766,436,2,13099,'9.99','2005-08-19 10:55:19','2006-02-15 22:18:42'), - (11767,436,2,13382,'7.99','2005-08-19 21:38:41','2006-02-15 22:18:42'), - (11768,436,1,13533,'3.99','2005-08-20 03:30:00','2006-02-15 22:18:42'), - (11769,436,1,13760,'5.99','2005-08-20 11:26:33','2006-02-15 22:18:42'), - (11770,436,1,13814,'0.99','2005-08-20 13:07:23','2006-02-15 22:18:42'), - (11771,436,2,13826,'2.99','2005-08-20 13:46:38','2006-02-15 22:18:42'), - (11772,436,2,15766,'4.99','2005-08-23 13:10:16','2006-02-15 22:18:42'), - (11773,437,1,192,'2.99','2005-05-26 06:20:37','2006-02-15 22:18:42'), - (11774,437,2,656,'4.99','2005-05-28 20:18:24','2006-02-15 22:18:42'), - (11775,437,1,666,'5.99','2005-05-28 21:48:51','2006-02-15 22:18:42'), - (11776,437,2,2239,'5.99','2005-06-18 04:23:54','2006-02-15 22:18:43'), - (11777,437,1,2792,'2.99','2005-06-19 18:52:25','2006-02-15 22:18:43'), - (11778,437,2,3265,'2.99','2005-06-21 04:23:13','2006-02-15 22:18:43'), - (11779,437,1,3747,'4.99','2005-07-06 12:11:14','2006-02-15 22:18:43'), - (11780,437,2,4765,'4.99','2005-07-08 15:08:45','2006-02-15 22:18:43'), - (11781,437,2,5085,'4.99','2005-07-09 05:36:49','2006-02-15 22:18:43'), - (11782,437,1,5167,'1.99','2005-07-09 09:18:43','2006-02-15 22:18:43'), - (11783,437,2,5744,'2.99','2005-07-10 12:08:33','2006-02-15 22:18:43'), - (11784,437,2,5864,'6.99','2005-07-10 18:29:57','2006-02-15 22:18:43'), - (11785,437,2,8215,'2.99','2005-07-28 23:43:56','2006-02-15 22:18:43'), - (11786,437,2,9172,'2.99','2005-07-30 11:36:38','2006-02-15 22:18:43'), - (11787,437,2,9333,'2.99','2005-07-30 17:53:45','2006-02-15 22:18:43'), - (11788,437,2,10009,'8.99','2005-07-31 18:00:28','2006-02-15 22:18:43'), - (11789,437,2,10249,'0.99','2005-08-01 02:35:39','2006-02-15 22:18:43'), - (11790,437,2,11417,'3.99','2005-08-02 19:44:46','2006-02-15 22:18:43'), - (11791,437,1,12205,'8.99','2005-08-18 02:21:08','2006-02-15 22:18:43'), - (11792,437,2,13838,'7.99','2005-08-20 14:22:46','2006-02-15 22:18:43'), - (11793,437,1,13839,'2.99','2005-08-20 14:23:16','2006-02-15 22:18:43'), - (11794,437,1,13905,'1.99','2005-08-20 16:12:48','2006-02-15 22:18:44'), - (11795,437,1,14993,'1.99','2005-08-22 07:52:18','2006-02-15 22:18:44'), - (11796,438,2,23,'4.99','2005-05-25 02:40:21','2006-02-15 22:18:44'), - (11797,438,2,1036,'0.99','2005-05-31 05:21:10','2006-02-15 22:18:44'), - (11798,438,1,1138,'6.99','2005-05-31 19:30:27','2006-02-15 22:18:44'), - (11799,438,1,1431,'4.99','2005-06-15 18:26:29','2006-02-15 22:18:44'), - (11800,438,2,1779,'0.99','2005-06-16 18:55:11','2006-02-15 22:18:44'), - (11801,438,2,2206,'0.99','2005-06-18 02:14:45','2006-02-15 22:18:44'), - (11802,438,1,2591,'4.99','2005-06-19 05:32:22','2006-02-15 22:18:44'), - (11803,438,1,3315,'4.99','2005-06-21 08:17:04','2006-02-15 22:18:44'), - (11804,438,2,3368,'0.99','2005-06-21 13:18:38','2006-02-15 22:18:44'), - (11805,438,1,4355,'4.99','2005-07-07 19:21:19','2006-02-15 22:18:44'), - (11806,438,2,4446,'2.99','2005-07-07 23:12:16','2006-02-15 22:18:44'), - (11807,438,2,5316,'4.99','2005-07-09 16:09:42','2006-02-15 22:18:44'), - (11808,438,2,5426,'4.99','2005-07-09 21:04:47','2006-02-15 22:18:44'), - (11809,438,1,5870,'2.99','2005-07-10 18:40:25','2006-02-15 22:18:44'), - (11810,438,2,6138,'4.99','2005-07-11 08:36:04','2006-02-15 22:18:44'), - (11811,438,1,6563,'3.99','2005-07-12 05:34:09','2006-02-15 22:18:44'), - (11812,438,2,6615,'4.99','2005-07-12 08:36:22','2006-02-15 22:18:45'), - (11813,438,2,7357,'1.99','2005-07-27 14:48:31','2006-02-15 22:18:45'), - (11814,438,2,7374,'8.99','2005-07-27 15:20:57','2006-02-15 22:18:45'), - (11815,438,1,7598,'0.99','2005-07-27 23:36:01','2006-02-15 22:18:45'), - (11816,438,2,8547,'2.99','2005-07-29 11:10:15','2006-02-15 22:18:45'), - (11817,438,1,9082,'3.99','2005-07-30 08:11:22','2006-02-15 22:18:45'), - (11818,438,2,9782,'0.99','2005-07-31 10:14:26','2006-02-15 22:18:45'), - (11819,438,1,10512,'6.99','2005-08-01 11:36:19','2006-02-15 22:18:45'), - (11820,438,1,10607,'4.99','2005-08-01 14:44:43','2006-02-15 22:18:45'), - (11821,438,2,11644,'4.99','2005-08-17 04:49:46','2006-02-15 22:18:45'), - (11822,438,2,11933,'4.99','2005-08-17 16:38:20','2006-02-15 22:18:45'), - (11823,438,2,12654,'0.99','2005-08-18 18:56:40','2006-02-15 22:18:45'), - (11824,438,2,13319,'7.99','2005-08-19 19:35:13','2006-02-15 22:18:45'), - (11825,438,1,13414,'4.99','2005-08-19 22:47:34','2006-02-15 22:18:45'), - (11826,438,2,14582,'5.99','2005-08-21 17:08:33','2006-02-15 22:18:45'), - (11827,438,2,15893,'5.99','2005-08-23 17:02:00','2006-02-15 22:18:45'), - (11828,438,2,12524,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:45'), - (11829,439,1,126,'2.99','2005-05-25 21:07:59','2006-02-15 22:18:45'), - (11830,439,2,367,'0.99','2005-05-27 07:37:02','2006-02-15 22:18:46'), - (11831,439,1,786,'9.99','2005-05-29 15:17:28','2006-02-15 22:18:46'), - (11832,439,1,1264,'4.99','2005-06-15 06:59:39','2006-02-15 22:18:46'), - (11833,439,2,1557,'0.99','2005-06-16 02:28:35','2006-02-15 22:18:46'), - (11834,439,2,2097,'4.99','2005-06-17 18:40:04','2006-02-15 22:18:46'), - (11835,439,1,2621,'2.99','2005-06-19 08:07:31','2006-02-15 22:18:46'), - (11836,439,1,2992,'2.99','2005-06-20 09:11:51','2006-02-15 22:18:46'), - (11837,439,1,3294,'6.99','2005-06-21 07:03:23','2006-02-15 22:18:46'), - (11838,439,2,3774,'5.99','2005-07-06 13:25:07','2006-02-15 22:18:46'), - (11839,439,1,4528,'2.99','2005-07-08 03:24:54','2006-02-15 22:18:46'), - (11840,439,1,4813,'4.99','2005-07-08 17:09:56','2006-02-15 22:18:46'), - (11841,439,2,5801,'5.99','2005-07-10 14:59:05','2006-02-15 22:18:46'), - (11842,439,1,5893,'2.99','2005-07-10 20:05:30','2006-02-15 22:18:46'), - (11843,439,1,6577,'2.99','2005-07-12 06:15:05','2006-02-15 22:18:46'), - (11844,439,2,6672,'2.99','2005-07-12 11:49:16','2006-02-15 22:18:46'), - (11845,439,1,8343,'2.99','2005-07-29 04:45:16','2006-02-15 22:18:46'), - (11846,439,1,8624,'2.99','2005-07-29 13:55:36','2006-02-15 22:18:46'), - (11847,439,2,8703,'2.99','2005-07-29 17:12:44','2006-02-15 22:18:46'), - (11848,439,1,9275,'0.99','2005-07-30 15:09:15','2006-02-15 22:18:46'), - (11849,439,1,9322,'6.99','2005-07-30 17:21:39','2006-02-15 22:18:47'), - (11850,439,2,10744,'1.99','2005-08-01 19:56:49','2006-02-15 22:18:47'), - (11851,439,1,10905,'2.99','2005-08-02 01:45:59','2006-02-15 22:18:47'), - (11852,439,2,11042,'6.99','2005-08-02 06:04:33','2006-02-15 22:18:47'), - (11853,439,2,11544,'5.99','2005-08-17 00:55:07','2006-02-15 22:18:47'), - (11854,439,1,11989,'2.99','2005-08-17 18:23:58','2006-02-15 22:18:47'), - (11855,439,1,12621,'2.99','2005-08-18 17:31:36','2006-02-15 22:18:47'), - (11856,439,2,12755,'5.99','2005-08-18 22:38:47','2006-02-15 22:18:47'), - (11857,439,2,12826,'3.99','2005-08-19 01:25:11','2006-02-15 22:18:47'), - (11858,439,2,13358,'4.99','2005-08-19 21:04:20','2006-02-15 22:18:47'), - (11859,439,2,14730,'5.99','2005-08-21 22:21:11','2006-02-15 22:18:47'), - (11860,439,2,15044,'9.99','2005-08-22 09:51:54','2006-02-15 22:18:47'), - (11861,439,2,15162,'4.99','2005-08-22 14:41:05','2006-02-15 22:18:47'), - (11862,439,2,15653,'4.99','2005-08-23 08:34:42','2006-02-15 22:18:47'), - (11863,439,1,15818,'1.99','2005-08-23 14:59:58','2006-02-15 22:18:47'), - (11864,439,1,16018,'0.99','2005-08-23 21:27:35','2006-02-15 22:18:47'), - (11865,440,2,957,'4.99','2005-05-30 17:53:29','2006-02-15 22:18:47'), - (11866,440,1,4301,'2.99','2005-07-07 16:37:23','2006-02-15 22:18:47'), - (11867,440,1,4946,'7.99','2005-07-08 22:46:23','2006-02-15 22:18:48'), - (11868,440,2,5423,'2.99','2005-07-09 20:56:48','2006-02-15 22:18:48'), - (11869,440,2,5594,'0.99','2005-07-10 04:33:36','2006-02-15 22:18:48'), - (11870,440,2,5731,'2.99','2005-07-10 11:31:52','2006-02-15 22:18:48'), - (11871,440,2,5782,'0.99','2005-07-10 13:52:56','2006-02-15 22:18:48'), - (11872,440,2,7585,'4.99','2005-07-27 23:18:22','2006-02-15 22:18:48'), - (11873,440,1,7614,'0.99','2005-07-28 00:14:38','2006-02-15 22:18:48'), - (11874,440,1,7806,'9.99','2005-07-28 07:58:17','2006-02-15 22:18:48'), - (11875,440,1,9001,'4.99','2005-07-30 04:59:41','2006-02-15 22:18:48'), - (11876,440,1,9195,'2.99','2005-07-30 12:29:43','2006-02-15 22:18:48'), - (11877,440,1,9547,'4.99','2005-07-31 01:52:34','2006-02-15 22:18:48'), - (11878,440,2,12403,'6.99','2005-08-18 09:31:05','2006-02-15 22:18:48'), - (11879,440,1,12850,'0.99','2005-08-19 02:08:06','2006-02-15 22:18:48'), - (11880,440,2,13384,'4.99','2005-08-19 21:38:51','2006-02-15 22:18:48'), - (11881,440,2,13779,'2.99','2005-08-20 12:03:54','2006-02-15 22:18:48'), - (11882,440,1,14555,'0.99','2005-08-21 16:03:02','2006-02-15 22:18:48'), - (11883,440,2,14863,'7.99','2005-08-22 02:57:04','2006-02-15 22:18:48'), - (11884,440,2,15264,'0.99','2005-08-22 18:27:38','2006-02-15 22:18:48'), - (11885,440,1,15925,'4.99','2005-08-23 18:15:06','2006-02-15 22:18:49'), - (11886,440,1,13106,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:49'), - (11887,441,1,823,'4.99','2005-05-29 21:39:37','2006-02-15 22:18:49'), - (11888,441,1,1602,'4.99','2005-06-16 06:12:40','2006-02-15 22:18:49'), - (11889,441,2,2328,'4.99','2005-06-18 10:17:21','2006-02-15 22:18:49'), - (11890,441,2,3629,'0.99','2005-07-06 06:23:22','2006-02-15 22:18:49'), - (11891,441,2,3695,'2.99','2005-07-06 10:02:08','2006-02-15 22:18:49'), - (11892,441,1,4084,'8.99','2005-07-07 05:16:00','2006-02-15 22:18:49'), - (11893,441,2,4208,'0.99','2005-07-07 11:34:22','2006-02-15 22:18:49'), - (11894,441,2,5129,'2.99','2005-07-09 07:28:33','2006-02-15 22:18:49'), - (11895,441,1,5811,'0.99','2005-07-10 15:27:04','2006-02-15 22:18:49'), - (11896,441,2,6636,'2.99','2005-07-12 09:49:46','2006-02-15 22:18:49'), - (11897,441,1,6642,'4.99','2005-07-12 10:37:52','2006-02-15 22:18:49'), - (11898,441,1,6941,'5.99','2005-07-26 23:18:49','2006-02-15 22:18:49'), - (11899,441,2,8237,'2.99','2005-07-29 00:29:56','2006-02-15 22:18:49'), - (11900,441,1,8281,'0.99','2005-07-29 01:46:00','2006-02-15 22:18:49'), - (11901,441,1,8427,'4.99','2005-07-29 07:08:36','2006-02-15 22:18:49'), - (11902,441,1,8575,'4.99','2005-07-29 11:52:47','2006-02-15 22:18:49'), - (11903,441,2,8617,'4.99','2005-07-29 13:46:14','2006-02-15 22:18:49'), - (11904,441,2,9644,'10.99','2005-07-31 05:40:35','2006-02-15 22:18:50'), - (11905,441,2,9854,'2.99','2005-07-31 12:59:34','2006-02-15 22:18:50'), - (11906,441,2,10139,'1.99','2005-07-31 22:02:20','2006-02-15 22:18:50'), - (11907,441,1,10846,'1.99','2005-08-01 23:47:54','2006-02-15 22:18:50'), - (11908,441,2,11247,'1.99','2005-08-02 13:34:08','2006-02-15 22:18:50'), - (11909,441,2,13483,'2.99','2005-08-20 01:16:38','2006-02-15 22:18:50'), - (11910,441,2,13739,'4.99','2005-08-20 10:45:10','2006-02-15 22:18:50'), - (11911,441,1,13932,'4.99','2005-08-20 17:17:00','2006-02-15 22:18:50'), - (11912,441,2,14796,'4.99','2005-08-22 00:40:49','2006-02-15 22:18:50'), - (11913,441,2,15070,'3.99','2005-08-22 10:55:45','2006-02-15 22:18:50'), - (11914,441,1,14878,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:50'), - (11915,442,2,466,'0.99','2005-05-27 20:57:07','2006-02-15 22:18:50'), - (11916,442,2,558,'6.99','2005-05-28 08:38:43','2006-02-15 22:18:50'), - (11917,442,1,632,'5.99','2005-05-28 17:37:50','2006-02-15 22:18:50'), - (11918,442,1,1251,'5.99','2005-06-15 05:58:55','2006-02-15 22:18:50'), - (11919,442,2,1358,'0.99','2005-06-15 13:28:48','2006-02-15 22:18:50'), - (11920,442,2,1576,'8.99','2005-06-16 03:54:39','2006-02-15 22:18:50'), - (11921,442,1,1774,'2.99','2005-06-16 18:27:52','2006-02-15 22:18:51'), - (11922,442,2,3545,'4.99','2005-07-06 02:16:17','2006-02-15 22:18:51'), - (11923,442,1,3661,'2.99','2005-07-06 08:10:02','2006-02-15 22:18:51'), - (11924,442,1,4052,'5.99','2005-07-07 03:38:22','2006-02-15 22:18:51'), - (11925,442,1,4058,'2.99','2005-07-07 04:02:50','2006-02-15 22:18:51'), - (11926,442,2,4365,'2.99','2005-07-07 19:47:46','2006-02-15 22:18:51'), - (11927,442,2,4577,'3.99','2005-07-08 05:59:00','2006-02-15 22:18:51'), - (11928,442,2,6590,'4.99','2005-07-12 07:08:21','2006-02-15 22:18:51'), - (11929,442,2,6632,'2.99','2005-07-12 09:33:10','2006-02-15 22:18:51'), - (11930,442,2,7427,'2.99','2005-07-27 17:20:16','2006-02-15 22:18:51'), - (11931,442,1,7460,'0.99','2005-07-27 18:41:35','2006-02-15 22:18:51'), - (11932,442,1,7671,'2.99','2005-07-28 02:48:31','2006-02-15 22:18:51'), - (11933,442,1,8044,'2.99','2005-07-28 16:49:12','2006-02-15 22:18:51'), - (11934,442,1,8758,'4.99','2005-07-29 19:20:49','2006-02-15 22:18:51'), - (11935,442,1,9180,'4.99','2005-07-30 12:03:15','2006-02-15 22:18:51'), - (11936,442,2,9873,'5.99','2005-07-31 13:32:18','2006-02-15 22:18:51'), - (11937,442,1,10034,'2.99','2005-07-31 18:45:30','2006-02-15 22:18:51'), - (11938,442,2,10365,'6.99','2005-08-01 06:08:44','2006-02-15 22:18:51'), - (11939,442,2,10452,'0.99','2005-08-01 09:11:36','2006-02-15 22:18:51'), - (11940,442,1,12948,'0.99','2005-08-19 05:55:14','2006-02-15 22:18:52'), - (11941,442,2,13004,'0.99','2005-08-19 07:40:08','2006-02-15 22:18:52'), - (11942,442,1,13155,'7.99','2005-08-19 13:10:23','2006-02-15 22:18:52'), - (11943,442,2,14199,'0.99','2005-08-21 03:48:43','2006-02-15 22:18:52'), - (11944,442,1,14418,'1.99','2005-08-21 11:14:26','2006-02-15 22:18:52'), - (11945,442,1,14466,'0.99','2005-08-21 13:03:13','2006-02-15 22:18:52'), - (11946,442,2,15207,'2.99','2005-08-22 16:35:25','2006-02-15 22:18:52'), - (11947,443,2,1068,'4.99','2005-05-31 09:32:15','2006-02-15 22:18:52'), - (11948,443,1,2871,'2.99','2005-06-20 00:27:49','2006-02-15 22:18:52'), - (11949,443,2,3510,'5.99','2005-07-06 00:27:41','2006-02-15 22:18:52'), - (11950,443,2,6625,'5.99','2005-07-12 09:06:40','2006-02-15 22:18:52'), - (11951,443,1,6913,'4.99','2005-07-12 22:18:12','2006-02-15 22:18:52'), - (11952,443,2,6983,'2.99','2005-07-27 00:55:03','2006-02-15 22:18:52'), - (11953,443,1,7317,'2.99','2005-07-27 13:19:41','2006-02-15 22:18:52'), - (11954,443,1,7667,'8.99','2005-07-28 02:37:22','2006-02-15 22:18:52'), - (11955,443,1,7987,'9.99','2005-07-28 14:36:52','2006-02-15 22:18:52'), - (11956,443,2,9740,'1.99','2005-07-31 09:08:03','2006-02-15 22:18:52'), - (11957,443,1,10014,'4.99','2005-07-31 18:10:56','2006-02-15 22:18:52'), - (11958,443,2,10081,'5.99','2005-07-31 20:07:44','2006-02-15 22:18:53'), - (11959,443,2,10360,'0.99','2005-08-01 05:52:53','2006-02-15 22:18:53'), - (11960,443,1,11449,'4.99','2005-08-02 20:44:43','2006-02-15 22:18:53'), - (11961,443,1,12415,'4.99','2005-08-18 09:54:01','2006-02-15 22:18:53'), - (11962,443,2,12857,'4.99','2005-08-19 02:20:13','2006-02-15 22:18:53'), - (11963,443,1,13489,'2.99','2005-08-20 01:29:06','2006-02-15 22:18:53'), - (11964,443,1,14561,'2.99','2005-08-21 16:20:43','2006-02-15 22:18:53'), - (11965,443,2,14611,'6.99','2005-08-21 18:01:41','2006-02-15 22:18:53'), - (11966,443,1,15182,'0.99','2005-08-22 15:47:05','2006-02-15 22:18:53'), - (11967,443,2,15393,'4.99','2005-08-22 23:04:09','2006-02-15 22:18:53'), - (11968,443,1,15519,'0.99','2005-08-23 03:23:32','2006-02-15 22:18:53'), - (11969,444,1,201,'8.99','2005-05-26 07:13:45','2006-02-15 22:18:53'), - (11970,444,1,557,'0.99','2005-05-28 08:36:22','2006-02-15 22:18:53'), - (11971,444,1,1239,'0.99','2005-06-15 04:53:01','2006-02-15 22:18:53'), - (11972,444,2,1397,'3.99','2005-06-15 16:25:26','2006-02-15 22:18:53'), - (11973,444,2,1441,'1.99','2005-06-15 18:54:21','2006-02-15 22:18:53'), - (11974,444,1,2551,'4.99','2005-06-19 02:51:04','2006-02-15 22:18:53'), - (11975,444,2,3301,'7.99','2005-06-21 07:32:25','2006-02-15 22:18:53'), - (11976,444,2,3415,'5.99','2005-06-21 16:59:49','2006-02-15 22:18:54'), - (11977,444,2,3498,'4.99','2005-07-06 00:02:08','2006-02-15 22:18:54'), - (11978,444,1,3539,'0.99','2005-07-06 01:39:08','2006-02-15 22:18:54'), - (11979,444,2,4648,'6.99','2005-07-08 09:31:27','2006-02-15 22:18:54'), - (11980,444,1,5753,'2.99','2005-07-10 12:29:43','2006-02-15 22:18:54'), - (11981,444,2,5825,'2.99','2005-07-10 16:20:30','2006-02-15 22:18:54'), - (11982,444,2,6285,'2.99','2005-07-11 16:52:07','2006-02-15 22:18:54'), - (11983,444,2,7679,'3.99','2005-07-28 02:58:39','2006-02-15 22:18:54'), - (11984,444,2,9634,'1.99','2005-07-31 05:06:02','2006-02-15 22:18:54'), - (11985,444,1,10529,'4.99','2005-08-01 12:00:02','2006-02-15 22:18:54'), - (11986,444,1,10693,'4.99','2005-08-01 18:14:14','2006-02-15 22:18:54'), - (11987,444,2,11353,'0.99','2005-08-02 17:34:45','2006-02-15 22:18:54'), - (11988,444,2,11419,'6.99','2005-08-02 19:46:38','2006-02-15 22:18:54'), - (11989,444,1,11728,'4.99','2005-08-17 08:12:26','2006-02-15 22:18:54'), - (11990,444,1,12161,'6.99','2005-08-18 00:41:46','2006-02-15 22:18:54'), - (11991,444,2,12712,'2.99','2005-08-18 21:04:13','2006-02-15 22:18:54'), - (11992,444,2,12946,'2.99','2005-08-19 05:53:34','2006-02-15 22:18:54'), - (11993,444,1,13488,'0.99','2005-08-20 01:28:42','2006-02-15 22:18:54'), - (11994,444,2,13559,'2.99','2005-08-20 04:16:07','2006-02-15 22:18:55'), - (11995,444,1,13924,'0.99','2005-08-20 17:05:18','2006-02-15 22:18:55'), - (11996,444,1,15249,'4.99','2005-08-22 17:58:27','2006-02-15 22:18:55'), - (11997,444,1,15557,'0.99','2005-08-23 04:52:17','2006-02-15 22:18:55'), - (11998,444,2,15815,'4.99','2005-08-23 14:55:47','2006-02-15 22:18:55'), - (11999,445,1,481,'2.99','2005-05-27 22:49:27','2006-02-15 22:18:55'), - (12000,445,1,960,'2.99','2005-05-30 18:13:23','2006-02-15 22:18:55'), - (12001,445,1,4041,'0.99','2005-07-07 03:03:33','2006-02-15 22:18:55'), - (12002,445,1,4193,'0.99','2005-07-07 10:57:21','2006-02-15 22:18:55'), - (12003,445,2,5225,'2.99','2005-07-09 12:10:16','2006-02-15 22:18:55'), - (12004,445,1,6346,'0.99','2005-07-11 20:08:34','2006-02-15 22:18:55'), - (12005,445,2,7351,'2.99','2005-07-27 14:37:36','2006-02-15 22:18:55'), - (12006,445,2,7971,'4.99','2005-07-28 14:00:47','2006-02-15 22:18:55'), - (12007,445,1,8851,'8.99','2005-07-29 23:26:19','2006-02-15 22:18:55'), - (12008,445,2,8911,'0.99','2005-07-30 01:30:57','2006-02-15 22:18:55'), - (12009,445,2,9625,'4.99','2005-07-31 04:30:48','2006-02-15 22:18:55'), - (12010,445,1,10007,'0.99','2005-07-31 17:54:58','2006-02-15 22:18:55'), - (12011,445,2,10334,'1.99','2005-08-01 04:58:42','2006-02-15 22:18:56'), - (12012,445,2,10341,'0.99','2005-08-01 05:10:02','2006-02-15 22:18:56'), - (12013,445,2,10936,'9.99','2005-08-02 02:55:04','2006-02-15 22:18:56'), - (12014,445,1,11383,'7.99','2005-08-02 18:22:05','2006-02-15 22:18:56'), - (12015,445,1,11868,'4.99','2005-08-17 14:05:34','2006-02-15 22:18:56'), - (12016,445,1,11877,'3.99','2005-08-17 14:21:11','2006-02-15 22:18:56'), - (12017,445,2,13586,'0.99','2005-08-20 05:40:33','2006-02-15 22:18:56'), - (12018,445,1,14612,'6.99','2005-08-21 18:03:15','2006-02-15 22:18:56'), - (12019,445,2,14673,'2.99','2005-08-21 20:01:18','2006-02-15 22:18:56'), - (12020,445,1,14866,'6.99','2005-08-22 03:11:35','2006-02-15 22:18:56'), - (12021,445,1,14955,'4.99','2005-08-22 06:25:52','2006-02-15 22:18:56'), - (12022,445,1,15123,'3.99','2005-08-22 12:48:44','2006-02-15 22:18:56'), - (12023,445,1,15791,'6.99','2005-08-23 14:02:13','2006-02-15 22:18:56'), - (12024,445,2,15906,'2.99','2005-08-23 17:36:00','2006-02-15 22:18:56'), - (12025,446,2,14,'0.99','2005-05-25 00:31:15','2006-02-15 22:18:56'), - (12026,446,1,236,'0.99','2005-05-26 11:53:49','2006-02-15 22:18:56'), - (12027,446,1,355,'4.99','2005-05-27 06:15:33','2006-02-15 22:18:56'), - (12028,446,1,2248,'4.99','2005-06-18 04:59:48','2006-02-15 22:18:56'), - (12029,446,2,2335,'3.99','2005-06-18 10:59:36','2006-02-15 22:18:57'), - (12030,446,2,2520,'6.99','2005-06-19 00:29:00','2006-02-15 22:18:57'), - (12031,446,2,2710,'0.99','2005-06-19 14:03:56','2006-02-15 22:18:57'), - (12032,446,1,3060,'2.99','2005-06-20 13:47:20','2006-02-15 22:18:57'), - (12033,446,2,3168,'0.99','2005-06-20 21:46:01','2006-02-15 22:18:57'), - (12034,446,2,4358,'4.99','2005-07-07 19:27:04','2006-02-15 22:18:57'), - (12035,446,2,5393,'4.99','2005-07-09 19:35:12','2006-02-15 22:18:57'), - (12036,446,2,5409,'2.99','2005-07-09 20:17:19','2006-02-15 22:18:57'), - (12037,446,2,6454,'0.99','2005-07-12 01:00:12','2006-02-15 22:18:57'), - (12038,446,1,6510,'4.99','2005-07-12 03:35:39','2006-02-15 22:18:57'), - (12039,446,1,6535,'0.99','2005-07-12 04:43:43','2006-02-15 22:18:57'), - (12040,446,1,6734,'6.99','2005-07-12 14:04:24','2006-02-15 22:18:57'), - (12041,446,1,7005,'5.99','2005-07-27 01:38:36','2006-02-15 22:18:57'), - (12042,446,2,7089,'0.99','2005-07-27 04:43:42','2006-02-15 22:18:57'), - (12043,446,1,7576,'4.99','2005-07-27 22:54:35','2006-02-15 22:18:57'), - (12044,446,2,8284,'6.99','2005-07-29 01:56:40','2006-02-15 22:18:57'), - (12045,446,1,8309,'4.99','2005-07-29 03:22:20','2006-02-15 22:18:57'), - (12046,446,2,8670,'4.99','2005-07-29 15:49:03','2006-02-15 22:18:57'), - (12047,446,2,8691,'0.99','2005-07-29 16:41:23','2006-02-15 22:18:58'), - (12048,446,2,8922,'9.99','2005-07-30 02:08:25','2006-02-15 22:18:58'), - (12049,446,1,8923,'3.99','2005-07-30 02:08:49','2006-02-15 22:18:58'), - (12050,446,1,9116,'0.99','2005-07-30 09:19:41','2006-02-15 22:18:58'), - (12051,446,1,11051,'3.99','2005-08-02 06:23:39','2006-02-15 22:18:58'), - (12052,446,2,12253,'0.99','2005-08-18 04:00:50','2006-02-15 22:18:58'), - (12053,446,2,12480,'8.99','2005-08-18 12:26:43','2006-02-15 22:18:58'), - (12054,446,1,15808,'1.99','2005-08-23 14:38:37','2006-02-15 22:18:58'), - (12055,446,2,15951,'0.99','2005-08-23 19:10:32','2006-02-15 22:18:58'), - (12056,447,1,461,'2.99','2005-05-27 20:08:55','2006-02-15 22:18:58'), - (12057,447,2,732,'0.99','2005-05-29 07:32:51','2006-02-15 22:18:58'), - (12058,447,2,1230,'0.99','2005-06-15 04:04:09','2006-02-15 22:18:58'), - (12059,447,2,1890,'2.99','2005-06-17 04:06:13','2006-02-15 22:18:58'), - (12060,447,1,2025,'4.99','2005-06-17 13:04:00','2006-02-15 22:18:58'), - (12061,447,2,2285,'4.99','2005-06-18 07:00:54','2006-02-15 22:18:58'), - (12062,447,2,4403,'4.99','2005-07-07 21:29:40','2006-02-15 22:18:58'), - (12063,447,1,4858,'6.99','2005-07-08 18:53:24','2006-02-15 22:18:58'), - (12064,447,1,5331,'4.99','2005-07-09 16:54:06','2006-02-15 22:18:58'), - (12065,447,1,5734,'0.99','2005-07-10 11:37:28','2006-02-15 22:18:59'), - (12066,447,2,5987,'2.99','2005-07-11 00:55:31','2006-02-15 22:18:59'), - (12067,447,1,6651,'0.99','2005-07-12 10:57:28','2006-02-15 22:18:59'), - (12068,447,1,6690,'1.99','2005-07-12 12:23:02','2006-02-15 22:18:59'), - (12069,447,1,8537,'8.99','2005-07-29 10:44:54','2006-02-15 22:18:59'), - (12070,447,2,8945,'4.99','2005-07-30 03:11:48','2006-02-15 22:18:59'), - (12071,447,2,9076,'5.99','2005-07-30 07:58:12','2006-02-15 22:18:59'), - (12072,447,1,9288,'6.99','2005-07-30 15:56:39','2006-02-15 22:18:59'), - (12073,447,1,10425,'2.99','2005-08-01 08:23:25','2006-02-15 22:18:59'), - (12074,447,2,10957,'5.99','2005-08-02 03:33:30','2006-02-15 22:18:59'), - (12075,447,2,11108,'0.99','2005-08-02 08:20:01','2006-02-15 22:18:59'), - (12076,447,1,11465,'5.99','2005-08-02 21:43:52','2006-02-15 22:18:59'), - (12077,447,2,12511,'0.99','2005-08-18 13:23:19','2006-02-15 22:18:59'), - (12078,447,1,13072,'2.99','2005-08-19 10:03:30','2006-02-15 22:18:59'), - (12079,447,2,13110,'0.99','2005-08-19 11:24:37','2006-02-15 22:18:59'), - (12080,447,1,13848,'4.99','2005-08-20 14:37:49','2006-02-15 22:18:59'), - (12081,447,2,14443,'5.99','2005-08-21 12:06:32','2006-02-15 22:18:59'), - (12082,447,1,15108,'2.99','2005-08-22 12:10:07','2006-02-15 22:18:59'), - (12083,447,1,15997,'4.99','2005-08-23 20:40:31','2006-02-15 22:19:00'), - (12084,447,2,16032,'4.99','2005-08-23 21:59:57','2006-02-15 22:19:00'), - (12085,448,1,299,'4.99','2005-05-26 20:55:36','2006-02-15 22:19:00'), - (12086,448,2,1123,'2.99','2005-05-31 16:48:43','2006-02-15 22:19:00'), - (12087,448,1,1313,'5.99','2005-06-15 10:18:34','2006-02-15 22:19:00'), - (12088,448,2,1823,'7.99','2005-06-16 21:48:16','2006-02-15 22:19:00'), - (12089,448,2,2697,'0.99','2005-06-19 13:29:08','2006-02-15 22:19:00'), - (12090,448,2,3225,'3.99','2005-06-21 02:16:55','2006-02-15 22:19:00'), - (12091,448,2,3347,'5.99','2005-06-21 11:08:32','2006-02-15 22:19:00'), - (12092,448,2,3959,'5.99','2005-07-06 22:07:58','2006-02-15 22:19:00'), - (12093,448,2,3992,'6.99','2005-07-06 23:36:56','2006-02-15 22:19:00'), - (12094,448,2,4024,'0.99','2005-07-07 02:11:23','2006-02-15 22:19:00'), - (12095,448,2,4206,'2.99','2005-07-07 11:32:16','2006-02-15 22:19:00'), - (12096,448,1,4406,'1.99','2005-07-07 21:35:16','2006-02-15 22:19:00'), - (12097,448,2,4537,'2.99','2005-07-08 03:48:40','2006-02-15 22:19:00'), - (12098,448,2,4558,'2.99','2005-07-08 04:55:26','2006-02-15 22:19:00'), - (12099,448,2,6341,'2.99','2005-07-11 19:48:02','2006-02-15 22:19:00'), - (12100,448,2,6985,'4.99','2005-07-27 00:57:42','2006-02-15 22:19:00'), - (12101,448,1,9178,'10.99','2005-07-30 11:58:50','2006-02-15 22:19:01'), - (12102,448,2,11608,'8.99','2005-08-17 03:36:52','2006-02-15 22:19:01'), - (12103,448,1,11798,'9.99','2005-08-17 11:21:43','2006-02-15 22:19:01'), - (12104,448,1,12446,'2.99','2005-08-18 10:56:29','2006-02-15 22:19:01'), - (12105,448,1,13220,'2.99','2005-08-19 15:42:32','2006-02-15 22:19:01'), - (12106,448,2,13250,'3.99','2005-08-19 16:47:55','2006-02-15 22:19:01'), - (12107,448,1,13982,'3.99','2005-08-20 19:08:25','2006-02-15 22:19:01'), - (12108,448,1,14580,'3.99','2005-08-21 16:56:39','2006-02-15 22:19:01'), - (12109,448,1,14711,'2.99','2005-08-21 21:22:07','2006-02-15 22:19:01'), - (12110,448,2,15358,'9.99','2005-08-22 21:29:14','2006-02-15 22:19:01'), - (12111,448,1,15427,'4.99','2005-08-23 00:07:53','2006-02-15 22:19:01'), - (12112,448,2,14734,'3.98','2006-02-14 15:16:03','2006-02-15 22:19:01'), - (12113,448,1,13577,'0.00','2006-02-14 15:16:03','2006-02-15 22:19:01'), - (12114,449,2,263,'4.99','2005-05-26 15:47:40','2006-02-15 22:19:01'), - (12115,449,2,325,'5.99','2005-05-27 01:09:55','2006-02-15 22:19:01'), - (12116,449,1,849,'7.99','2005-05-30 01:23:07','2006-02-15 22:19:01'), - (12117,449,2,1295,'4.99','2005-06-15 09:17:20','2006-02-15 22:19:01'), - (12118,449,1,2348,'0.99','2005-06-18 12:15:43','2006-02-15 22:19:01'), - (12119,449,2,2970,'2.99','2005-06-20 07:51:51','2006-02-15 22:19:02'), - (12120,449,1,3503,'0.99','2005-07-06 00:17:24','2006-02-15 22:19:02'), - (12121,449,1,3977,'8.99','2005-07-06 23:00:49','2006-02-15 22:19:02'), - (12122,449,2,4433,'3.99','2005-07-07 22:45:41','2006-02-15 22:19:02'), - (12123,449,1,5824,'2.99','2005-07-10 16:19:53','2006-02-15 22:19:02'), - (12124,449,2,7755,'6.99','2005-07-28 06:22:18','2006-02-15 22:19:02'), - (12125,449,2,7803,'3.99','2005-07-28 07:52:13','2006-02-15 22:19:02'), - (12126,449,2,8002,'2.99','2005-07-28 15:11:00','2006-02-15 22:19:02'), - (12127,449,2,10083,'5.99','2005-07-31 20:10:19','2006-02-15 22:19:02'), - (12128,449,2,10409,'2.99','2005-08-01 07:49:15','2006-02-15 22:19:02'), - (12129,449,1,10416,'4.99','2005-08-01 08:08:39','2006-02-15 22:19:02'), - (12130,449,1,10516,'6.99','2005-08-01 11:41:55','2006-02-15 22:19:02'), - (12131,449,2,10688,'6.99','2005-08-01 17:53:43','2006-02-15 22:19:02'), - (12132,449,1,12212,'4.99','2005-08-18 02:33:29','2006-02-15 22:19:02'), - (12133,449,2,14962,'7.99','2005-08-22 06:37:43','2006-02-15 22:19:02'), - (12134,450,2,548,'3.99','2005-05-28 07:34:56','2006-02-15 22:19:02'), - (12135,450,2,1639,'4.99','2005-06-16 08:33:39','2006-02-15 22:19:02'), - (12136,450,1,1739,'0.99','2005-06-16 16:09:38','2006-02-15 22:19:02'), - (12137,450,2,1914,'2.99','2005-06-17 05:25:54','2006-02-15 22:19:03'), - (12138,450,2,2278,'0.99','2005-06-18 06:37:57','2006-02-15 22:19:03'), - (12139,450,1,2501,'4.99','2005-06-18 23:10:11','2006-02-15 22:19:03'), - (12140,450,1,2626,'2.99','2005-06-19 08:28:44','2006-02-15 22:19:03'), - (12141,450,1,3155,'4.99','2005-06-20 21:02:38','2006-02-15 22:19:03'), - (12142,450,1,3570,'3.99','2005-07-06 03:23:43','2006-02-15 22:19:03'), - (12143,450,1,5999,'7.99','2005-07-11 01:21:22','2006-02-15 22:19:03'), - (12144,450,1,6028,'4.99','2005-07-11 02:31:44','2006-02-15 22:19:03'), - (12145,450,2,7365,'2.99','2005-07-27 15:00:20','2006-02-15 22:19:03'), - (12146,450,1,7610,'0.99','2005-07-28 00:11:35','2006-02-15 22:19:03'), - (12147,450,1,7626,'0.99','2005-07-28 00:49:01','2006-02-15 22:19:03'), - (12148,450,2,8733,'4.99','2005-07-29 18:26:34','2006-02-15 22:19:03'), - (12149,450,2,10432,'2.99','2005-08-01 08:43:21','2006-02-15 22:19:03'), - (12150,450,1,10984,'3.99','2005-08-02 04:30:02','2006-02-15 22:19:03'), - (12151,450,2,12812,'0.99','2005-08-19 00:54:02','2006-02-15 22:19:03'), - (12152,450,2,13731,'4.99','2005-08-20 10:22:08','2006-02-15 22:19:03'), - (12153,450,1,13810,'0.99','2005-08-20 12:59:38','2006-02-15 22:19:03'), - (12154,450,1,13828,'4.99','2005-08-20 13:49:52','2006-02-15 22:19:03'), - (12155,450,1,14282,'4.99','2005-08-21 06:41:29','2006-02-15 22:19:04'), - (12156,450,2,15019,'0.99','2005-08-22 08:52:53','2006-02-15 22:19:04'), - (12157,450,1,15327,'4.99','2005-08-22 20:31:24','2006-02-15 22:19:04'), - (12158,450,2,15419,'4.99','2005-08-22 23:54:36','2006-02-15 22:19:04'), - (12159,450,1,14172,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:04'), - (12160,451,2,77,'0.99','2005-05-25 11:31:59','2006-02-15 22:19:04'), - (12161,451,2,328,'2.99','2005-05-27 01:29:31','2006-02-15 22:19:04'), - (12162,451,2,1113,'2.99','2005-05-31 15:58:44','2006-02-15 22:19:04'), - (12163,451,1,1202,'0.99','2005-06-15 02:08:04','2006-02-15 22:19:04'), - (12164,451,1,1851,'0.99','2005-06-17 00:32:26','2006-02-15 22:19:04'), - (12165,451,1,1940,'6.99','2005-06-17 07:42:22','2006-02-15 22:19:04'), - (12166,451,1,2671,'1.99','2005-06-19 11:33:11','2006-02-15 22:19:04'), - (12167,451,1,2909,'3.99','2005-06-20 03:19:10','2006-02-15 22:19:04'), - (12168,451,2,2917,'0.99','2005-06-20 04:08:35','2006-02-15 22:19:04'), - (12169,451,1,3316,'6.99','2005-06-21 08:20:18','2006-02-15 22:19:04'), - (12170,451,2,3826,'4.99','2005-07-06 15:51:58','2006-02-15 22:19:04'), - (12171,451,1,4538,'2.99','2005-07-08 03:56:29','2006-02-15 22:19:04'), - (12172,451,1,4794,'8.99','2005-07-08 16:30:11','2006-02-15 22:19:04'), - (12173,451,2,4930,'4.99','2005-07-08 22:15:48','2006-02-15 22:19:05'), - (12174,451,1,5005,'3.99','2005-07-09 01:21:44','2006-02-15 22:19:05'), - (12175,451,2,5518,'8.99','2005-07-10 01:15:11','2006-02-15 22:19:05'), - (12176,451,1,7018,'2.99','2005-07-27 02:20:22','2006-02-15 22:19:05'), - (12177,451,2,10337,'8.99','2005-08-01 05:01:46','2006-02-15 22:19:05'), - (12178,451,1,10856,'2.99','2005-08-02 00:07:14','2006-02-15 22:19:05'), - (12179,451,2,10950,'2.99','2005-08-02 03:25:08','2006-02-15 22:19:05'), - (12180,451,2,11167,'6.99','2005-08-02 10:15:51','2006-02-15 22:19:05'), - (12181,451,2,11381,'6.99','2005-08-02 18:19:29','2006-02-15 22:19:05'), - (12182,451,1,11790,'2.99','2005-08-17 11:00:08','2006-02-15 22:19:05'), - (12183,451,2,12371,'2.99','2005-08-18 08:02:46','2006-02-15 22:19:05'), - (12184,451,1,12422,'4.99','2005-08-18 10:13:12','2006-02-15 22:19:05'), - (12185,451,2,13003,'1.99','2005-08-19 07:39:29','2006-02-15 22:19:05'), - (12186,451,2,13100,'2.99','2005-08-19 10:55:45','2006-02-15 22:19:05'), - (12187,451,2,13252,'2.99','2005-08-19 16:50:50','2006-02-15 22:19:05'), - (12188,451,2,13380,'0.99','2005-08-19 21:36:58','2006-02-15 22:19:05'), - (12189,451,1,13666,'2.99','2005-08-20 08:20:19','2006-02-15 22:19:05'), - (12190,451,1,13705,'2.99','2005-08-20 09:32:23','2006-02-15 22:19:06'), - (12191,451,2,14500,'0.99','2005-08-21 14:11:30','2006-02-15 22:19:06'), - (12192,451,1,15651,'4.99','2005-08-23 08:31:49','2006-02-15 22:19:06'), - (12193,452,1,354,'2.99','2005-05-27 06:12:26','2006-02-15 22:19:06'), - (12194,452,2,714,'2.99','2005-05-29 04:15:21','2006-02-15 22:19:06'), - (12195,452,1,726,'1.99','2005-05-29 06:05:29','2006-02-15 22:19:06'), - (12196,452,2,1203,'4.99','2005-06-15 02:09:02','2006-02-15 22:19:06'), - (12197,452,1,1512,'5.99','2005-06-15 22:53:03','2006-02-15 22:19:06'), - (12198,452,1,1794,'3.99','2005-06-16 20:08:37','2006-02-15 22:19:06'), - (12199,452,1,2263,'0.99','2005-06-18 05:57:47','2006-02-15 22:19:06'), - (12200,452,2,2266,'4.99','2005-06-18 06:05:02','2006-02-15 22:19:06'), - (12201,452,1,2504,'0.99','2005-06-18 23:19:53','2006-02-15 22:19:06'), - (12202,452,2,2661,'0.99','2005-06-19 10:50:52','2006-02-15 22:19:06'), - (12203,452,2,3638,'3.99','2005-07-06 07:08:17','2006-02-15 22:19:06'), - (12204,452,1,3791,'2.99','2005-07-06 14:24:56','2006-02-15 22:19:06'), - (12205,452,2,3907,'6.99','2005-07-06 19:39:14','2006-02-15 22:19:06'), - (12206,452,1,4348,'0.99','2005-07-07 19:02:05','2006-02-15 22:19:06'), - (12207,452,2,4353,'4.99','2005-07-07 19:19:05','2006-02-15 22:19:06'), - (12208,452,2,4417,'2.99','2005-07-07 22:05:05','2006-02-15 22:19:07'), - (12209,452,1,4720,'0.99','2005-07-08 12:34:34','2006-02-15 22:19:07'), - (12210,452,1,5177,'1.99','2005-07-09 09:43:21','2006-02-15 22:19:07'), - (12211,452,2,5480,'0.99','2005-07-09 23:49:07','2006-02-15 22:19:07'), - (12212,452,2,6959,'2.99','2005-07-27 00:07:51','2006-02-15 22:19:07'), - (12213,452,2,7899,'6.99','2005-07-28 11:10:12','2006-02-15 22:19:07'), - (12214,452,1,8898,'1.99','2005-07-30 01:02:20','2006-02-15 22:19:07'), - (12215,452,2,9379,'6.99','2005-07-30 19:13:01','2006-02-15 22:19:07'), - (12216,452,2,11715,'4.99','2005-08-17 07:40:55','2006-02-15 22:19:07'), - (12217,452,1,11735,'3.99','2005-08-17 08:35:42','2006-02-15 22:19:07'), - (12218,452,1,12355,'0.99','2005-08-18 07:36:23','2006-02-15 22:19:07'), - (12219,452,1,12630,'4.99','2005-08-18 17:49:28','2006-02-15 22:19:07'), - (12220,452,1,13080,'4.99','2005-08-19 10:18:00','2006-02-15 22:19:07'), - (12221,452,1,13642,'3.99','2005-08-20 07:42:17','2006-02-15 22:19:07'), - (12222,452,1,14660,'0.99','2005-08-21 19:43:21','2006-02-15 22:19:07'), - (12223,452,1,15909,'0.99','2005-08-23 17:42:42','2006-02-15 22:19:07'), - (12224,452,1,14175,'4.99','2006-02-14 15:16:03','2006-02-15 22:19:07'), - (12225,453,2,2852,'5.99','2005-06-19 23:08:50','2006-02-15 22:19:07'), - (12226,453,1,2853,'7.99','2005-06-19 23:09:41','2006-02-15 22:19:08'), - (12227,453,2,2887,'4.99','2005-06-20 01:39:43','2006-02-15 22:19:08'), - (12228,453,2,3929,'0.99','2005-07-06 20:52:39','2006-02-15 22:19:08'), - (12229,453,2,4033,'8.99','2005-07-07 02:35:46','2006-02-15 22:19:08'), - (12230,453,1,4717,'4.99','2005-07-08 12:22:43','2006-02-15 22:19:08'), - (12231,453,2,4805,'2.99','2005-07-08 16:59:12','2006-02-15 22:19:08'), - (12232,453,2,5359,'6.99','2005-07-09 18:10:52','2006-02-15 22:19:08'), - (12233,453,1,6752,'4.99','2005-07-12 14:53:15','2006-02-15 22:19:08'), - (12234,453,1,7563,'0.99','2005-07-27 22:25:36','2006-02-15 22:19:08'), - (12235,453,2,9289,'6.99','2005-07-30 15:57:04','2006-02-15 22:19:08'), - (12236,453,2,9406,'6.99','2005-07-30 20:24:00','2006-02-15 22:19:08'), - (12237,453,2,9900,'1.99','2005-07-31 14:15:05','2006-02-15 22:19:08'), - (12238,453,1,11794,'4.99','2005-08-17 11:08:48','2006-02-15 22:19:08'), - (12239,453,1,12703,'2.99','2005-08-18 20:37:13','2006-02-15 22:19:08'), - (12240,453,1,13711,'7.99','2005-08-20 09:35:20','2006-02-15 22:19:08'), - (12241,453,1,13785,'4.99','2005-08-20 12:11:46','2006-02-15 22:19:08'), - (12242,453,1,14133,'2.99','2005-08-21 01:44:14','2006-02-15 22:19:08'), - (12243,453,2,14306,'5.99','2005-08-21 07:32:35','2006-02-15 22:19:09'), - (12244,453,2,14644,'4.99','2005-08-21 19:12:12','2006-02-15 22:19:09'), - (12245,453,1,14652,'4.99','2005-08-21 19:32:05','2006-02-15 22:19:09'), - (12246,453,1,15252,'0.99','2005-08-22 18:04:22','2006-02-15 22:19:09'), - (12247,453,2,15627,'4.99','2005-08-23 07:25:38','2006-02-15 22:19:09'), - (12248,454,1,735,'7.99','2005-05-29 08:08:13','2006-02-15 22:19:09'), - (12249,454,2,1647,'4.99','2005-06-16 09:14:58','2006-02-15 22:19:09'), - (12250,454,2,1844,'7.99','2005-06-16 23:53:53','2006-02-15 22:19:09'), - (12251,454,1,1861,'1.99','2005-06-17 01:17:31','2006-02-15 22:19:09'), - (12252,454,1,1938,'4.99','2005-06-17 07:18:36','2006-02-15 22:19:09'), - (12253,454,2,2048,'5.99','2005-06-17 14:55:29','2006-02-15 22:19:09'), - (12254,454,2,2182,'5.99','2005-06-18 00:56:18','2006-02-15 22:19:09'), - (12255,454,1,2437,'2.99','2005-06-18 18:30:26','2006-02-15 22:19:09'), - (12256,454,2,2666,'9.99','2005-06-19 11:17:12','2006-02-15 22:19:09'), - (12257,454,1,3221,'2.99','2005-06-21 01:49:47','2006-02-15 22:19:09'), - (12258,454,1,3362,'4.99','2005-06-21 12:19:54','2006-02-15 22:19:09'), - (12259,454,1,3622,'7.99','2005-07-06 06:05:04','2006-02-15 22:19:09'), - (12260,454,2,4562,'4.99','2005-07-08 05:08:32','2006-02-15 22:19:09'), - (12261,454,2,5088,'4.99','2005-07-09 05:45:16','2006-02-15 22:19:10'), - (12262,454,2,5446,'2.99','2005-07-09 21:59:55','2006-02-15 22:19:10'), - (12263,454,2,6260,'4.99','2005-07-11 15:26:29','2006-02-15 22:19:10'), - (12264,454,2,6701,'0.99','2005-07-12 12:47:59','2006-02-15 22:19:10'), - (12265,454,2,8481,'2.99','2005-07-29 08:45:57','2006-02-15 22:19:10'), - (12266,454,1,8806,'0.99','2005-07-29 21:36:34','2006-02-15 22:19:10'), - (12267,454,2,9041,'0.99','2005-07-30 06:32:36','2006-02-15 22:19:10'), - (12268,454,1,9372,'9.99','2005-07-30 19:04:30','2006-02-15 22:19:10'), - (12269,454,1,10005,'3.99','2005-07-31 17:53:51','2006-02-15 22:19:10'), - (12270,454,2,12347,'0.99','2005-08-18 07:18:10','2006-02-15 22:19:10'), - (12271,454,1,12553,'0.99','2005-08-18 14:46:54','2006-02-15 22:19:10'), - (12272,454,2,13496,'8.99','2005-08-20 01:42:29','2006-02-15 22:19:10'), - (12273,454,2,13513,'2.99','2005-08-20 02:27:53','2006-02-15 22:19:10'), - (12274,454,2,13694,'8.99','2005-08-20 09:13:23','2006-02-15 22:19:10'), - (12275,454,1,13805,'6.99','2005-08-20 12:53:12','2006-02-15 22:19:10'), - (12276,454,1,14799,'0.99','2005-08-22 00:44:57','2006-02-15 22:19:10'), - (12277,454,2,14843,'2.99','2005-08-22 02:05:25','2006-02-15 22:19:10'), - (12278,454,2,15012,'4.99','2005-08-22 08:42:32','2006-02-15 22:19:10'), - (12279,454,1,15301,'3.99','2005-08-22 19:44:16','2006-02-15 22:19:11'), - (12280,454,2,15608,'1.99','2005-08-23 06:55:26','2006-02-15 22:19:11'), - (12281,455,2,115,'0.99','2005-05-25 19:13:25','2006-02-15 22:19:11'), - (12282,455,2,343,'0.99','2005-05-27 04:13:41','2006-02-15 22:19:11'), - (12283,455,2,1382,'1.99','2005-06-15 15:18:08','2006-02-15 22:19:11'), - (12284,455,1,1802,'1.99','2005-06-16 20:23:30','2006-02-15 22:19:11'), - (12285,455,1,1906,'2.99','2005-06-17 04:53:35','2006-02-15 22:19:11'), - (12286,455,2,2356,'0.99','2005-06-18 12:59:23','2006-02-15 22:19:11'), - (12287,455,2,4195,'2.99','2005-07-07 11:00:02','2006-02-15 22:19:11'), - (12288,455,1,4861,'8.99','2005-07-08 18:57:30','2006-02-15 22:19:11'), - (12289,455,1,4964,'2.99','2005-07-08 23:46:38','2006-02-15 22:19:11'), - (12290,455,1,5504,'6.99','2005-07-10 00:36:38','2006-02-15 22:19:11'), - (12291,455,2,6729,'4.99','2005-07-12 13:58:23','2006-02-15 22:19:11'), - (12292,455,1,7388,'4.99','2005-07-27 15:54:19','2006-02-15 22:19:11'), - (12293,455,2,7498,'4.99','2005-07-27 20:09:31','2006-02-15 22:19:11'), - (12294,455,2,7905,'5.99','2005-07-28 11:26:57','2006-02-15 22:19:11'), - (12295,455,2,8291,'2.99','2005-07-29 02:28:25','2006-02-15 22:19:11'), - (12296,455,1,10436,'0.99','2005-08-01 08:50:59','2006-02-15 22:19:11'), - (12297,455,1,11605,'4.99','2005-08-17 03:30:57','2006-02-15 22:19:12'), - (12298,455,1,12163,'2.99','2005-08-18 00:46:01','2006-02-15 22:19:12'), - (12299,455,1,12314,'4.99','2005-08-18 06:10:02','2006-02-15 22:19:12'), - (12300,455,2,13083,'2.99','2005-08-19 10:26:45','2006-02-15 22:19:12'), - (12301,455,2,13813,'4.99','2005-08-20 13:03:26','2006-02-15 22:19:12'), - (12302,455,1,14294,'2.99','2005-08-21 07:07:26','2006-02-15 22:19:12'), - (12303,455,2,14583,'4.99','2005-08-21 17:11:47','2006-02-15 22:19:12'), - (12304,455,1,15494,'1.99','2005-08-23 02:25:09','2006-02-15 22:19:12'), - (12305,456,2,19,'4.99','2005-05-25 01:17:24','2006-02-15 22:19:12'), - (12306,456,1,1288,'2.99','2005-06-15 08:41:52','2006-02-15 22:19:12'), - (12307,456,1,1700,'0.99','2005-06-16 13:18:23','2006-02-15 22:19:12'), - (12308,456,2,2103,'5.99','2005-06-17 19:13:10','2006-02-15 22:19:12'), - (12309,456,2,2146,'6.99','2005-06-17 22:26:23','2006-02-15 22:19:12'), - (12310,456,1,2192,'4.99','2005-06-18 01:35:47','2006-02-15 22:19:12'), - (12311,456,1,2404,'0.99','2005-06-18 16:33:48','2006-02-15 22:19:12'), - (12312,456,1,2581,'2.99','2005-06-19 04:54:13','2006-02-15 22:19:12'), - (12313,456,1,3743,'7.99','2005-07-06 12:03:54','2006-02-15 22:19:12'), - (12314,456,2,3881,'2.99','2005-07-06 18:35:37','2006-02-15 22:19:13'), - (12315,456,1,4141,'3.99','2005-07-07 08:19:20','2006-02-15 22:19:13'), - (12316,456,2,5964,'0.99','2005-07-10 23:47:18','2006-02-15 22:19:13'), - (12317,456,2,6023,'0.99','2005-07-11 02:15:57','2006-02-15 22:19:13'), - (12318,456,2,7248,'2.99','2005-07-27 10:37:45','2006-02-15 22:19:13'), - (12319,456,1,8749,'4.99','2005-07-29 19:13:15','2006-02-15 22:19:13'), - (12320,456,2,10519,'5.99','2005-08-01 11:44:13','2006-02-15 22:19:13'), - (12321,456,1,10813,'2.99','2005-08-01 22:43:00','2006-02-15 22:19:13'), - (12322,456,1,12188,'4.99','2005-08-18 01:51:43','2006-02-15 22:19:13'), - (12323,456,1,13144,'8.99','2005-08-19 12:45:55','2006-02-15 22:19:13'), - (12324,456,1,13348,'4.99','2005-08-19 20:31:48','2006-02-15 22:19:13'), - (12325,456,1,13547,'4.99','2005-08-20 03:53:16','2006-02-15 22:19:13'), - (12326,456,2,14253,'2.99','2005-08-21 05:47:52','2006-02-15 22:19:13'), - (12327,456,2,14690,'1.99','2005-08-21 20:42:25','2006-02-15 22:19:13'), - (12328,456,1,15720,'3.99','2005-08-23 11:15:20','2006-02-15 22:19:13'), - (12329,456,1,15910,'2.99','2005-08-23 17:43:16','2006-02-15 22:19:13'), - (12330,457,2,1024,'7.99','2005-05-31 03:30:19','2006-02-15 22:19:13'), - (12331,457,2,1453,'4.99','2005-06-15 19:36:39','2006-02-15 22:19:13'), - (12332,457,2,1727,'0.99','2005-06-16 15:21:47','2006-02-15 22:19:14'), - (12333,457,1,2030,'0.99','2005-06-17 13:13:27','2006-02-15 22:19:14'), - (12334,457,1,2172,'7.99','2005-06-18 00:06:16','2006-02-15 22:19:14'), - (12335,457,1,2670,'4.99','2005-06-19 11:30:16','2006-02-15 22:19:14'), - (12336,457,1,2762,'3.99','2005-06-19 17:22:31','2006-02-15 22:19:14'), - (12337,457,1,2811,'0.99','2005-06-19 19:53:30','2006-02-15 22:19:14'), - (12338,457,2,3115,'2.99','2005-06-20 17:59:05','2006-02-15 22:19:14'), - (12339,457,2,3184,'2.99','2005-06-20 22:57:44','2006-02-15 22:19:14'), - (12340,457,2,4600,'5.99','2005-07-08 06:48:37','2006-02-15 22:19:14'), - (12341,457,1,5500,'0.99','2005-07-10 00:28:17','2006-02-15 22:19:14'), - (12342,457,1,6467,'7.99','2005-07-12 01:22:03','2006-02-15 22:19:14'), - (12343,457,1,7184,'1.99','2005-07-27 08:22:26','2006-02-15 22:19:14'), - (12344,457,2,8373,'4.99','2005-07-29 05:19:53','2006-02-15 22:19:14'), - (12345,457,1,8502,'2.99','2005-07-29 09:15:41','2006-02-15 22:19:14'), - (12346,457,1,10049,'2.99','2005-07-31 19:11:11','2006-02-15 22:19:14'), - (12347,457,2,11956,'6.99','2005-08-17 17:22:05','2006-02-15 22:19:14'), - (12348,457,1,12115,'4.99','2005-08-17 23:04:15','2006-02-15 22:19:14'), - (12349,457,1,12171,'4.99','2005-08-18 01:06:13','2006-02-15 22:19:15'), - (12350,457,1,13088,'0.99','2005-08-19 10:36:11','2006-02-15 22:19:15'), - (12351,457,1,13150,'2.99','2005-08-19 13:08:19','2006-02-15 22:19:15'), - (12352,457,2,13934,'0.99','2005-08-20 17:18:48','2006-02-15 22:19:15'), - (12353,457,2,14327,'10.99','2005-08-21 08:18:18','2006-02-15 22:19:15'), - (12354,457,1,14365,'6.99','2005-08-21 09:25:13','2006-02-15 22:19:15'), - (12355,457,1,15128,'3.99','2005-08-22 12:57:26','2006-02-15 22:19:15'), - (12356,457,1,12645,'3.98','2006-02-14 15:16:03','2006-02-15 22:19:15'), - (12357,457,2,14516,'0.00','2006-02-14 15:16:03','2006-02-15 22:19:15'), - (12358,458,2,2629,'5.99','2005-06-19 08:42:12','2006-02-15 22:19:15'), - (12359,458,2,3322,'0.99','2005-06-21 08:42:37','2006-02-15 22:19:15'), - (12360,458,2,4525,'2.99','2005-07-08 03:15:00','2006-02-15 22:19:15'), - (12361,458,1,5412,'2.99','2005-07-09 20:23:52','2006-02-15 22:19:15'), - (12362,458,1,5572,'0.99','2005-07-10 03:49:00','2006-02-15 22:19:15'), - (12363,458,2,6250,'3.99','2005-07-11 15:02:04','2006-02-15 22:19:15'), - (12364,458,1,6431,'5.99','2005-07-12 00:03:57','2006-02-15 22:19:15'), - (12365,458,2,6595,'7.99','2005-07-12 07:25:48','2006-02-15 22:19:15'), - (12366,458,1,6654,'1.99','2005-07-12 11:06:28','2006-02-15 22:19:15'), - (12367,458,2,7923,'3.99','2005-07-28 12:08:29','2006-02-15 22:19:16'), - (12368,458,1,8158,'0.99','2005-07-28 21:08:46','2006-02-15 22:19:16'), - (12369,458,2,11138,'2.99','2005-08-02 09:26:16','2006-02-15 22:19:16'), - (12370,458,2,11975,'2.99','2005-08-17 17:58:39','2006-02-15 22:19:16'), - (12371,458,2,12768,'0.99','2005-08-18 23:26:11','2006-02-15 22:19:16'), - (12372,458,2,13259,'2.99','2005-08-19 17:08:53','2006-02-15 22:19:16'), - (12373,458,2,13487,'2.99','2005-08-20 01:27:05','2006-02-15 22:19:16'), - (12374,458,2,13571,'4.99','2005-08-20 05:05:14','2006-02-15 22:19:16'), - (12375,458,2,14428,'4.99','2005-08-21 11:27:07','2006-02-15 22:19:16'), - (12376,458,1,15604,'4.99','2005-08-23 06:44:19','2006-02-15 22:19:16'), - (12377,459,2,2,'2.99','2005-05-24 22:54:33','2006-02-15 22:19:16'), - (12378,459,2,1876,'0.99','2005-06-17 02:50:51','2006-02-15 22:19:16'), - (12379,459,2,1977,'2.99','2005-06-17 09:38:22','2006-02-15 22:19:16'), - (12380,459,2,2075,'4.99','2005-06-17 16:40:33','2006-02-15 22:19:16'), - (12381,459,1,2899,'0.99','2005-06-20 02:39:21','2006-02-15 22:19:16'), - (12382,459,2,3041,'4.99','2005-06-20 12:35:44','2006-02-15 22:19:16'), - (12383,459,2,3045,'0.99','2005-06-20 12:42:00','2006-02-15 22:19:16'), - (12384,459,2,3234,'9.99','2005-06-21 02:39:44','2006-02-15 22:19:16'), - (12385,459,1,3506,'2.99','2005-07-06 00:22:29','2006-02-15 22:19:17'), - (12386,459,2,4519,'2.99','2005-07-08 02:51:23','2006-02-15 22:19:17'), - (12387,459,1,5301,'3.99','2005-07-09 15:42:10','2006-02-15 22:19:17'), - (12388,459,1,5695,'0.99','2005-07-10 09:43:40','2006-02-15 22:19:17'), - (12389,459,1,6206,'0.99','2005-07-11 12:32:14','2006-02-15 22:19:17'), - (12390,459,2,6750,'3.99','2005-07-12 14:49:39','2006-02-15 22:19:17'), - (12391,459,1,7623,'6.99','2005-07-28 00:37:41','2006-02-15 22:19:17'), - (12392,459,2,7639,'4.99','2005-07-28 01:14:36','2006-02-15 22:19:17'), - (12393,459,1,7717,'4.99','2005-07-28 04:33:54','2006-02-15 22:19:17'), - (12394,459,1,7820,'5.99','2005-07-28 08:28:51','2006-02-15 22:19:17'), - (12395,459,1,7913,'6.99','2005-07-28 11:47:23','2006-02-15 22:19:17'), - (12396,459,1,8289,'9.99','2005-07-29 02:23:24','2006-02-15 22:19:17'), - (12397,459,2,8557,'10.99','2005-07-29 11:19:59','2006-02-15 22:19:17'), - (12398,459,1,8897,'2.99','2005-07-30 01:00:17','2006-02-15 22:19:17'), - (12399,459,1,9137,'6.99','2005-07-30 10:09:24','2006-02-15 22:19:17'), - (12400,459,2,9639,'2.99','2005-07-31 05:32:10','2006-02-15 22:19:17'), - (12401,459,1,9744,'4.99','2005-07-31 09:15:38','2006-02-15 22:19:17'), - (12402,459,2,10117,'4.99','2005-07-31 21:14:31','2006-02-15 22:19:18'), - (12403,459,1,10233,'6.99','2005-08-01 01:54:23','2006-02-15 22:19:18'), - (12404,459,2,10255,'4.99','2005-08-01 02:46:13','2006-02-15 22:19:18'), - (12405,459,1,10499,'7.99','2005-08-01 11:00:20','2006-02-15 22:19:18'), - (12406,459,1,10531,'2.99','2005-08-01 12:06:30','2006-02-15 22:19:18'), - (12407,459,1,12527,'6.99','2005-08-18 13:48:46','2006-02-15 22:19:18'), - (12408,459,1,12629,'7.99','2005-08-18 17:40:33','2006-02-15 22:19:18'), - (12409,459,2,13960,'10.99','2005-08-20 18:16:26','2006-02-15 22:19:18'), - (12410,459,1,13967,'4.99','2005-08-20 18:28:46','2006-02-15 22:19:18'), - (12411,459,1,14315,'3.99','2005-08-21 07:56:39','2006-02-15 22:19:18'), - (12412,459,1,15126,'5.99','2005-08-22 12:53:58','2006-02-15 22:19:18'), - (12413,459,2,15342,'2.99','2005-08-22 20:56:41','2006-02-15 22:19:18'), - (12414,459,1,15814,'0.99','2005-08-23 14:52:50','2006-02-15 22:19:18'), - (12415,460,1,223,'4.99','2005-05-26 10:15:23','2006-02-15 22:19:18'), - (12416,460,2,298,'0.99','2005-05-26 20:52:26','2006-02-15 22:19:18'), - (12417,460,1,880,'0.99','2005-05-30 06:12:33','2006-02-15 22:19:18'), - (12418,460,2,1064,'4.99','2005-05-31 08:50:07','2006-02-15 22:19:18'), - (12419,460,2,1392,'0.99','2005-06-15 16:12:27','2006-02-15 22:19:19'), - (12420,460,2,3820,'4.99','2005-07-06 15:35:26','2006-02-15 22:19:19'), - (12421,460,1,4452,'7.99','2005-07-07 23:31:54','2006-02-15 22:19:19'), - (12422,460,2,5482,'3.99','2005-07-09 23:53:04','2006-02-15 22:19:19'), - (12423,460,1,6613,'4.99','2005-07-12 08:30:07','2006-02-15 22:19:19'), - (12424,460,1,6788,'5.99','2005-07-12 16:33:44','2006-02-15 22:19:19'), - (12425,460,1,7125,'6.99','2005-07-27 06:11:00','2006-02-15 22:19:19'), - (12426,460,1,7785,'3.99','2005-07-28 07:16:11','2006-02-15 22:19:19'), - (12427,460,2,8656,'2.99','2005-07-29 15:05:52','2006-02-15 22:19:19'), - (12428,460,2,10754,'10.99','2005-08-01 20:12:33','2006-02-15 22:19:19'), - (12429,460,1,10926,'1.99','2005-08-02 02:26:37','2006-02-15 22:19:19'), - (12430,460,2,11554,'2.99','2005-08-17 01:05:17','2006-02-15 22:19:19'), - (12431,460,1,12056,'5.99','2005-08-17 21:03:48','2006-02-15 22:19:19'), - (12432,460,2,12586,'4.99','2005-08-18 15:54:39','2006-02-15 22:19:19'), - (12433,460,1,12865,'0.99','2005-08-19 02:38:50','2006-02-15 22:19:19'), - (12434,460,2,13215,'8.99','2005-08-19 15:35:38','2006-02-15 22:19:19'), - (12435,460,1,13341,'3.99','2005-08-19 20:18:53','2006-02-15 22:19:19'), - (12436,460,2,13920,'5.99','2005-08-20 16:51:18','2006-02-15 22:19:19'), - (12437,460,2,14864,'0.99','2005-08-22 02:57:06','2006-02-15 22:19:20'), - (12438,460,1,14923,'3.99','2005-08-22 05:13:33','2006-02-15 22:19:20'), - (12439,460,2,15954,'2.99','2005-08-23 19:14:07','2006-02-15 22:19:20'), - (12440,461,1,684,'6.99','2005-05-29 00:13:15','2006-02-15 22:19:20'), - (12441,461,2,3127,'5.99','2005-06-20 18:39:43','2006-02-15 22:19:20'), - (12442,461,2,3319,'4.99','2005-06-21 08:25:46','2006-02-15 22:19:20'), - (12443,461,2,3698,'0.99','2005-07-06 10:09:20','2006-02-15 22:19:20'), - (12444,461,2,4586,'2.99','2005-07-08 06:12:33','2006-02-15 22:19:20'), - (12445,461,1,5650,'0.99','2005-07-10 07:17:01','2006-02-15 22:19:20'), - (12446,461,1,5809,'2.99','2005-07-10 15:19:30','2006-02-15 22:19:20'), - (12447,461,2,7334,'2.99','2005-07-27 13:59:58','2006-02-15 22:19:20'), - (12448,461,2,7664,'2.99','2005-07-28 02:24:23','2006-02-15 22:19:20'), - (12449,461,2,8133,'0.99','2005-07-28 20:01:06','2006-02-15 22:19:20'), - (12450,461,2,8164,'0.99','2005-07-28 21:17:19','2006-02-15 22:19:20'), - (12451,461,2,9499,'4.99','2005-07-30 23:58:30','2006-02-15 22:19:20'), - (12452,461,1,9885,'0.99','2005-07-31 13:59:32','2006-02-15 22:19:20'), - (12453,461,2,10113,'4.99','2005-07-31 21:10:03','2006-02-15 22:19:20'), - (12454,461,1,10260,'2.99','2005-08-01 02:58:07','2006-02-15 22:19:21'), - (12455,461,2,11063,'0.99','2005-08-02 06:53:48','2006-02-15 22:19:21'), - (12456,461,2,11219,'0.99','2005-08-02 12:30:20','2006-02-15 22:19:21'), - (12457,461,2,12022,'2.99','2005-08-17 19:52:45','2006-02-15 22:19:21'), - (12458,461,1,13223,'2.99','2005-08-19 15:52:04','2006-02-15 22:19:21'), - (12459,461,1,13269,'2.99','2005-08-19 17:34:00','2006-02-15 22:19:21'), - (12460,461,1,14186,'4.99','2005-08-21 03:31:07','2006-02-15 22:19:21'), - (12461,461,1,14893,'4.99','2005-08-22 04:15:48','2006-02-15 22:19:21'), - (12462,461,1,15067,'2.99','2005-08-22 10:49:21','2006-02-15 22:19:21'), - (12463,461,2,15187,'4.99','2005-08-22 15:53:32','2006-02-15 22:19:21'), - (12464,461,1,15336,'6.99','2005-08-22 20:47:48','2006-02-15 22:19:21'), - (12465,461,2,15411,'2.99','2005-08-22 23:35:41','2006-02-15 22:19:21'), - (12466,461,2,15449,'2.99','2005-08-23 00:55:43','2006-02-15 22:19:21'), - (12467,461,2,15613,'7.99','2005-08-23 07:03:19','2006-02-15 22:19:21'), - (12468,462,2,156,'2.99','2005-05-26 01:19:05','2006-02-15 22:19:21'), - (12469,462,2,590,'3.99','2005-05-28 13:06:50','2006-02-15 22:19:21'), - (12470,462,2,1773,'5.99','2005-06-16 18:13:43','2006-02-15 22:19:21'), - (12471,462,2,1926,'9.99','2005-06-17 06:24:30','2006-02-15 22:19:21'), - (12472,462,1,3279,'4.99','2005-06-21 06:05:53','2006-02-15 22:19:22'), - (12473,462,1,4500,'4.99','2005-07-08 02:10:01','2006-02-15 22:19:22'), - (12474,462,2,4728,'3.99','2005-07-08 12:59:01','2006-02-15 22:19:22'), - (12475,462,1,6583,'4.99','2005-07-12 06:42:31','2006-02-15 22:19:22'), - (12476,462,1,6630,'0.99','2005-07-12 09:30:05','2006-02-15 22:19:22'), - (12477,462,1,6710,'7.99','2005-07-12 13:23:09','2006-02-15 22:19:22'), - (12478,462,1,6721,'6.99','2005-07-12 13:42:58','2006-02-15 22:19:22'), - (12479,462,2,7295,'8.99','2005-07-27 12:38:47','2006-02-15 22:19:22'), - (12480,462,1,7324,'6.99','2005-07-27 13:42:39','2006-02-15 22:19:22'), - (12481,462,1,7762,'8.99','2005-07-28 06:34:23','2006-02-15 22:19:22'), - (12482,462,1,7932,'4.99','2005-07-28 12:24:54','2006-02-15 22:19:22'), - (12483,462,2,7935,'2.99','2005-07-28 12:33:17','2006-02-15 22:19:22'), - (12484,462,1,8066,'2.99','2005-07-28 17:20:09','2006-02-15 22:19:22'), - (12485,462,1,8282,'0.99','2005-07-29 01:49:04','2006-02-15 22:19:22'), - (12486,462,1,8290,'3.99','2005-07-29 02:24:08','2006-02-15 22:19:22'), - (12487,462,2,8757,'2.99','2005-07-29 19:19:10','2006-02-15 22:19:22'), - (12488,462,1,9891,'0.99','2005-07-31 14:05:44','2006-02-15 22:19:22'), - (12489,462,1,10283,'2.99','2005-08-01 03:29:45','2006-02-15 22:19:23'), - (12490,462,2,11639,'6.99','2005-08-17 04:43:29','2006-02-15 22:19:23'), - (12491,462,1,11808,'2.99','2005-08-17 11:51:16','2006-02-15 22:19:23'), - (12492,462,1,12466,'4.99','2005-08-18 11:36:55','2006-02-15 22:19:23'), - (12493,462,2,12582,'0.99','2005-08-18 15:51:12','2006-02-15 22:19:23'), - (12494,462,1,12802,'8.99','2005-08-19 00:27:41','2006-02-15 22:19:23'), - (12495,462,2,13041,'8.99','2005-08-19 09:05:38','2006-02-15 22:19:23'), - (12496,462,1,13328,'4.99','2005-08-19 19:56:01','2006-02-15 22:19:23'), - (12497,462,1,13492,'7.99','2005-08-20 01:32:04','2006-02-15 22:19:23'), - (12498,462,2,15581,'2.99','2005-08-23 05:42:13','2006-02-15 22:19:23'), - (12499,462,1,15943,'2.99','2005-08-23 18:49:32','2006-02-15 22:19:23'), - (12500,462,1,16013,'0.99','2005-08-23 21:17:17','2006-02-15 22:19:23'), - (12501,463,1,560,'1.99','2005-05-28 08:53:02','2006-02-15 22:19:23'), - (12502,463,1,1284,'2.99','2005-06-15 08:27:33','2006-02-15 22:19:23'), - (12503,463,2,2527,'4.99','2005-06-19 01:10:31','2006-02-15 22:19:23'), - (12504,463,1,3217,'2.99','2005-06-21 01:28:12','2006-02-15 22:19:23'), - (12505,463,1,3309,'4.99','2005-06-21 08:00:49','2006-02-15 22:19:23'), - (12506,463,1,5026,'2.99','2005-07-09 02:32:34','2006-02-15 22:19:24'), - (12507,463,1,5157,'2.99','2005-07-09 08:52:12','2006-02-15 22:19:24'), - (12508,463,1,5448,'0.99','2005-07-09 22:11:14','2006-02-15 22:19:24'), - (12509,463,2,6294,'0.99','2005-07-11 17:25:55','2006-02-15 22:19:24'), - (12510,463,1,6932,'6.99','2005-07-26 23:08:04','2006-02-15 22:19:24'), - (12511,463,1,7013,'0.99','2005-07-27 02:03:21','2006-02-15 22:19:24'), - (12512,463,1,7361,'0.99','2005-07-27 14:53:55','2006-02-15 22:19:24'), - (12513,463,1,8762,'2.99','2005-07-29 19:30:02','2006-02-15 22:19:24'), - (12514,463,2,9405,'7.99','2005-07-30 20:22:17','2006-02-15 22:19:24'), - (12515,463,1,9954,'2.99','2005-07-31 15:57:07','2006-02-15 22:19:24'), - (12516,463,1,10275,'3.99','2005-08-01 03:20:08','2006-02-15 22:19:24'), - (12517,463,2,10405,'0.99','2005-08-01 07:35:25','2006-02-15 22:19:24'), - (12518,463,2,10906,'2.99','2005-08-02 01:47:04','2006-02-15 22:19:24'), - (12519,463,2,12096,'7.99','2005-08-17 22:32:50','2006-02-15 22:19:24'), - (12520,463,2,12679,'6.99','2005-08-18 19:42:11','2006-02-15 22:19:24'), - (12521,463,1,12950,'2.99','2005-08-19 05:55:58','2006-02-15 22:19:24'), - (12522,463,2,13938,'4.99','2005-08-20 17:24:45','2006-02-15 22:19:24'), - (12523,463,1,14689,'0.99','2005-08-21 20:33:00','2006-02-15 22:19:24'), - (12524,463,1,14859,'2.99','2005-08-22 02:46:35','2006-02-15 22:19:25'), - (12525,463,2,15151,'7.99','2005-08-22 14:23:11','2006-02-15 22:19:25'), - (12526,464,1,305,'3.99','2005-05-26 21:22:07','2006-02-15 22:19:25'), - (12527,464,2,373,'1.99','2005-05-27 08:16:25','2006-02-15 22:19:25'), - (12528,464,2,1277,'4.99','2005-06-15 08:01:29','2006-02-15 22:19:25'), - (12529,464,1,3167,'2.99','2005-06-20 21:42:29','2006-02-15 22:19:25'), - (12530,464,1,3761,'4.99','2005-07-06 12:52:44','2006-02-15 22:19:25'), - (12531,464,1,4337,'5.99','2005-07-07 18:36:37','2006-02-15 22:19:25'), - (12532,464,2,5455,'6.99','2005-07-09 22:28:45','2006-02-15 22:19:25'), - (12533,464,1,5910,'4.99','2005-07-10 20:51:34','2006-02-15 22:19:25'), - (12534,464,2,6601,'3.99','2005-07-12 07:44:49','2006-02-15 22:19:25'), - (12535,464,1,9600,'5.99','2005-07-31 03:35:34','2006-02-15 22:19:25'), - (12536,464,2,11275,'1.99','2005-08-02 14:25:58','2006-02-15 22:19:25'), - (12537,464,1,13644,'8.99','2005-08-20 07:46:30','2006-02-15 22:19:25'), - (12538,464,2,13943,'2.99','2005-08-20 17:31:18','2006-02-15 22:19:25'), - (12539,464,1,15092,'6.99','2005-08-22 11:36:16','2006-02-15 22:19:25'), - (12540,464,2,15854,'0.99','2005-08-23 15:58:05','2006-02-15 22:19:25'), - (12541,464,1,15983,'4.99','2005-08-23 20:13:38','2006-02-15 22:19:26'), - (12542,465,2,640,'0.99','2005-05-28 18:43:26','2006-02-15 22:19:26'), - (12543,465,1,1337,'2.99','2005-06-15 12:12:42','2006-02-15 22:19:26'), - (12544,465,1,2079,'4.99','2005-06-17 16:49:45','2006-02-15 22:19:26'), - (12545,465,1,2159,'8.99','2005-06-17 23:37:29','2006-02-15 22:19:26'), - (12546,465,2,2524,'0.99','2005-06-19 00:48:11','2006-02-15 22:19:26'), - (12547,465,1,4763,'0.99','2005-07-08 14:57:32','2006-02-15 22:19:26'), - (12548,465,2,6904,'3.99','2005-07-12 22:02:09','2006-02-15 22:19:26'), - (12549,465,2,7508,'2.99','2005-07-27 20:33:08','2006-02-15 22:19:26'), - (12550,465,1,10542,'3.99','2005-08-01 12:32:23','2006-02-15 22:19:26'), - (12551,465,1,11156,'2.99','2005-08-02 09:56:06','2006-02-15 22:19:26'), - (12552,465,1,11586,'4.99','2005-08-17 02:20:42','2006-02-15 22:19:26'), - (12553,465,2,11648,'6.99','2005-08-17 04:56:16','2006-02-15 22:19:26'), - (12554,465,2,12106,'4.99','2005-08-17 22:55:32','2006-02-15 22:19:26'), - (12555,465,1,12814,'4.99','2005-08-19 00:58:24','2006-02-15 22:19:26'), - (12556,465,1,12864,'4.99','2005-08-19 02:38:26','2006-02-15 22:19:26'), - (12557,465,1,15550,'3.99','2005-08-23 04:27:54','2006-02-15 22:19:26'), - (12558,465,2,15859,'4.99','2005-08-23 16:08:15','2006-02-15 22:19:27'), - (12559,466,2,1104,'2.99','2005-05-31 14:30:01','2006-02-15 22:19:27'), - (12560,466,2,1808,'7.99','2005-06-16 20:59:35','2006-02-15 22:19:27'), - (12561,466,2,2446,'8.99','2005-06-18 19:04:41','2006-02-15 22:19:27'), - (12562,466,1,3022,'3.99','2005-06-20 11:17:20','2006-02-15 22:19:27'), - (12563,466,2,3237,'4.99','2005-06-21 02:47:56','2006-02-15 22:19:27'), - (12564,466,2,3343,'2.99','2005-06-21 10:56:59','2006-02-15 22:19:27'), - (12565,466,2,5048,'0.99','2005-07-09 03:46:33','2006-02-15 22:19:27'), - (12566,466,1,5691,'4.99','2005-07-10 09:29:49','2006-02-15 22:19:27'), - (12567,466,1,6073,'6.99','2005-07-11 04:54:31','2006-02-15 22:19:27'), - (12568,466,2,7080,'2.99','2005-07-27 04:25:25','2006-02-15 22:19:27'), - (12569,466,2,8276,'0.99','2005-07-29 01:38:43','2006-02-15 22:19:27'), - (12570,466,1,9202,'3.99','2005-07-30 12:43:24','2006-02-15 22:19:27'), - (12571,466,1,9257,'2.99','2005-07-30 14:30:38','2006-02-15 22:19:27'), - (12572,466,1,10469,'4.99','2005-08-01 09:51:11','2006-02-15 22:19:27'), - (12573,466,2,11343,'0.99','2005-08-02 17:12:30','2006-02-15 22:19:27'), - (12574,466,1,11359,'4.99','2005-08-02 17:45:55','2006-02-15 22:19:27'), - (12575,466,1,12048,'7.99','2005-08-17 20:49:24','2006-02-15 22:19:27'), - (12576,466,1,13478,'2.99','2005-08-20 01:07:14','2006-02-15 22:19:28'), - (12577,466,1,13884,'5.99','2005-08-20 15:30:51','2006-02-15 22:19:28'), - (12578,466,1,13988,'4.99','2005-08-20 19:21:28','2006-02-15 22:19:28'), - (12579,466,2,14546,'2.99','2005-08-21 15:50:50','2006-02-15 22:19:28'), - (12580,466,2,15230,'4.99','2005-08-22 17:31:41','2006-02-15 22:19:28'), - (12581,466,1,16005,'7.99','2005-08-23 21:00:22','2006-02-15 22:19:28'), - (12582,467,2,225,'4.99','2005-05-26 10:27:50','2006-02-15 22:19:28'), - (12583,467,1,1737,'8.99','2005-06-16 15:59:44','2006-02-15 22:19:28'), - (12584,467,2,2121,'4.99','2005-06-17 20:38:54','2006-02-15 22:19:28'), - (12585,467,2,2870,'9.99','2005-06-20 00:17:46','2006-02-15 22:19:28'), - (12586,467,1,3250,'6.99','2005-06-21 03:16:36','2006-02-15 22:19:28'), - (12587,467,1,4216,'0.99','2005-07-07 12:01:34','2006-02-15 22:19:28'), - (12588,467,2,4222,'4.99','2005-07-07 12:20:21','2006-02-15 22:19:28'), - (12589,467,1,4259,'4.99','2005-07-07 14:22:18','2006-02-15 22:19:28'), - (12590,467,2,5160,'4.99','2005-07-09 08:57:07','2006-02-15 22:19:28'), - (12591,467,2,6271,'6.99','2005-07-11 16:01:35','2006-02-15 22:19:28'), - (12592,467,2,7360,'2.99','2005-07-27 14:52:06','2006-02-15 22:19:28'), - (12593,467,2,7573,'5.99','2005-07-27 22:46:20','2006-02-15 22:19:29'), - (12594,467,1,7611,'2.99','2005-07-28 00:11:47','2006-02-15 22:19:29'), - (12595,467,1,8010,'7.99','2005-07-28 15:26:20','2006-02-15 22:19:29'), - (12596,467,2,8061,'6.99','2005-07-28 17:12:53','2006-02-15 22:19:29'), - (12597,467,2,8224,'2.99','2005-07-28 23:59:02','2006-02-15 22:19:29'), - (12598,467,2,8480,'8.99','2005-07-29 08:44:46','2006-02-15 22:19:29'), - (12599,467,1,8767,'4.99','2005-07-29 19:42:33','2006-02-15 22:19:29'), - (12600,467,2,10239,'0.99','2005-08-01 02:09:22','2006-02-15 22:19:29'), - (12601,467,2,11332,'2.99','2005-08-02 16:52:57','2006-02-15 22:19:29'), - (12602,467,1,11874,'4.99','2005-08-17 14:16:40','2006-02-15 22:19:29'), - (12603,467,1,12266,'2.99','2005-08-18 04:22:31','2006-02-15 22:19:29'), - (12604,467,1,12437,'9.99','2005-08-18 10:42:43','2006-02-15 22:19:29'), - (12605,467,1,12641,'2.99','2005-08-18 18:18:08','2006-02-15 22:19:29'), - (12606,467,1,14402,'2.99','2005-08-21 10:38:17','2006-02-15 22:19:29'), - (12607,467,1,14451,'0.99','2005-08-21 12:21:44','2006-02-15 22:19:29'), - (12608,467,1,14842,'3.99','2005-08-22 02:04:38','2006-02-15 22:19:29'), - (12609,467,1,15032,'0.99','2005-08-22 09:14:09','2006-02-15 22:19:29'), - (12610,467,2,15830,'2.99','2005-08-23 15:19:15','2006-02-15 22:19:30'), - (12611,468,2,101,'6.99','2005-05-25 17:17:04','2006-02-15 22:19:30'), - (12612,468,1,186,'4.99','2005-05-26 05:32:52','2006-02-15 22:19:30'), - (12613,468,2,296,'6.99','2005-05-26 20:35:19','2006-02-15 22:19:30'), - (12614,468,2,459,'0.99','2005-05-27 20:00:04','2006-02-15 22:19:30'), - (12615,468,1,673,'0.99','2005-05-28 22:07:30','2006-02-15 22:19:30'), - (12616,468,2,1229,'2.99','2005-06-15 03:53:13','2006-02-15 22:19:30'), - (12617,468,1,1627,'8.99','2005-06-16 07:51:09','2006-02-15 22:19:30'), - (12618,468,1,1821,'2.99','2005-06-16 21:42:49','2006-02-15 22:19:30'), - (12619,468,1,1975,'2.99','2005-06-17 09:32:10','2006-02-15 22:19:30'), - (12620,468,2,2462,'4.99','2005-06-18 20:00:15','2006-02-15 22:19:30'), - (12621,468,1,2831,'0.99','2005-06-19 21:17:06','2006-02-15 22:19:30'), - (12622,468,2,3724,'2.99','2005-07-06 11:12:48','2006-02-15 22:19:30'), - (12623,468,1,3840,'5.99','2005-07-06 16:30:59','2006-02-15 22:19:30'), - (12624,468,2,4184,'3.99','2005-07-07 10:30:08','2006-02-15 22:19:30'), - (12625,468,2,4527,'3.99','2005-07-08 03:20:10','2006-02-15 22:19:30'), - (12626,468,1,5285,'2.99','2005-07-09 15:10:44','2006-02-15 22:19:30'), - (12627,468,1,6392,'0.99','2005-07-11 22:25:19','2006-02-15 22:19:31'), - (12628,468,1,6581,'4.99','2005-07-12 06:26:49','2006-02-15 22:19:31'), - (12629,468,2,6815,'5.99','2005-07-12 18:14:10','2006-02-15 22:19:31'), - (12630,468,2,7292,'4.99','2005-07-27 12:34:14','2006-02-15 22:19:31'), - (12631,468,1,7685,'0.99','2005-07-28 03:13:00','2006-02-15 22:19:31'), - (12632,468,2,8423,'5.99','2005-07-29 07:02:57','2006-02-15 22:19:31'), - (12633,468,2,8768,'6.99','2005-07-29 19:43:02','2006-02-15 22:19:31'), - (12634,468,1,9598,'0.99','2005-07-31 03:30:41','2006-02-15 22:19:31'), - (12635,468,1,9690,'6.99','2005-07-31 07:06:29','2006-02-15 22:19:31'), - (12636,468,2,11257,'10.99','2005-08-02 13:45:05','2006-02-15 22:19:31'), - (12637,468,2,11633,'4.99','2005-08-17 04:30:09','2006-02-15 22:19:31'), - (12638,468,2,12026,'6.99','2005-08-17 20:00:10','2006-02-15 22:19:31'), - (12639,468,2,13221,'3.99','2005-08-19 15:45:47','2006-02-15 22:19:31'), - (12640,468,1,13417,'0.99','2005-08-19 22:51:39','2006-02-15 22:19:31'), - (12641,468,2,14154,'4.99','2005-08-21 02:30:00','2006-02-15 22:19:31'), - (12642,468,2,14210,'4.99','2005-08-21 04:28:02','2006-02-15 22:19:31'), - (12643,468,1,14309,'9.99','2005-08-21 07:44:17','2006-02-15 22:19:31'), - (12644,468,1,14313,'2.99','2005-08-21 07:49:53','2006-02-15 22:19:32'), - (12645,468,1,14614,'9.99','2005-08-21 18:03:51','2006-02-15 22:19:32'), - (12646,468,2,15435,'4.99','2005-08-23 00:28:19','2006-02-15 22:19:32'), - (12647,468,1,15522,'1.99','2005-08-23 03:32:31','2006-02-15 22:19:32'), - (12648,468,1,15836,'2.99','2005-08-23 15:29:17','2006-02-15 22:19:32'), - (12649,468,2,16044,'0.99','2005-08-23 22:24:39','2006-02-15 22:19:32'), - (12650,469,1,168,'0.99','2005-05-26 03:07:43','2006-02-15 22:19:32'), - (12651,469,2,506,'7.99','2005-05-28 02:09:19','2006-02-15 22:19:32'), - (12652,469,2,529,'4.99','2005-05-28 04:34:17','2006-02-15 22:19:32'), - (12653,469,2,936,'1.99','2005-05-30 13:52:49','2006-02-15 22:19:32'), - (12654,469,1,1119,'2.99','2005-05-31 16:34:27','2006-02-15 22:19:32'), - (12655,469,2,1399,'0.99','2005-06-15 16:29:51','2006-02-15 22:19:32'), - (12656,469,1,1680,'9.99','2005-06-16 11:17:22','2006-02-15 22:19:32'), - (12657,469,2,3522,'4.99','2005-07-06 01:00:21','2006-02-15 22:19:32'), - (12658,469,1,3526,'10.99','2005-07-06 01:03:29','2006-02-15 22:19:32'), - (12659,469,2,4067,'3.99','2005-07-07 04:34:23','2006-02-15 22:19:32'), - (12660,469,2,4123,'0.99','2005-07-07 07:16:19','2006-02-15 22:19:32'), - (12661,469,1,5133,'0.99','2005-07-09 07:43:22','2006-02-15 22:19:33'), - (12662,469,1,5299,'3.99','2005-07-09 15:38:09','2006-02-15 22:19:33'), - (12663,469,2,5664,'6.99','2005-07-10 08:04:41','2006-02-15 22:19:33'), - (12664,469,2,6022,'0.99','2005-07-11 02:15:53','2006-02-15 22:19:33'), - (12665,469,2,6099,'4.99','2005-07-11 06:24:44','2006-02-15 22:19:33'), - (12666,469,1,6797,'4.99','2005-07-12 16:47:06','2006-02-15 22:19:33'), - (12667,469,1,6955,'3.99','2005-07-26 23:55:48','2006-02-15 22:19:33'), - (12668,469,2,7062,'6.99','2005-07-27 03:52:01','2006-02-15 22:19:33'), - (12669,469,2,7271,'6.99','2005-07-27 11:29:11','2006-02-15 22:19:33'), - (12670,469,2,7756,'4.99','2005-07-28 06:22:52','2006-02-15 22:19:33'), - (12671,469,1,7914,'4.99','2005-07-28 11:48:08','2006-02-15 22:19:33'), - (12672,469,2,8791,'0.99','2005-07-29 20:53:23','2006-02-15 22:19:33'), - (12673,469,1,9187,'2.99','2005-07-30 12:14:03','2006-02-15 22:19:33'), - (12674,469,2,10075,'4.99','2005-07-31 19:58:42','2006-02-15 22:19:33'), - (12675,469,1,10258,'4.99','2005-08-01 02:51:09','2006-02-15 22:19:33'), - (12676,469,1,10316,'4.99','2005-08-01 04:34:57','2006-02-15 22:19:33'), - (12677,469,1,10658,'2.99','2005-08-01 16:39:18','2006-02-15 22:19:33'), - (12678,469,1,10741,'2.99','2005-08-01 19:52:52','2006-02-15 22:19:34'), - (12679,469,2,11185,'0.99','2005-08-02 11:04:35','2006-02-15 22:19:34'), - (12680,469,2,12035,'0.99','2005-08-17 20:18:06','2006-02-15 22:19:34'), - (12681,469,1,12447,'4.99','2005-08-18 10:57:01','2006-02-15 22:19:34'), - (12682,469,1,12633,'6.99','2005-08-18 17:55:38','2006-02-15 22:19:34'), - (12683,469,1,13654,'4.99','2005-08-20 07:58:21','2006-02-15 22:19:34'), - (12684,469,1,13763,'2.99','2005-08-20 11:37:56','2006-02-15 22:19:34'), - (12685,469,2,14197,'7.99','2005-08-21 03:47:25','2006-02-15 22:19:34'), - (12686,469,2,14661,'2.99','2005-08-21 19:44:21','2006-02-15 22:19:34'), - (12687,469,1,15487,'4.99','2005-08-23 02:05:51','2006-02-15 22:19:34'), - (12688,469,1,15561,'9.99','2005-08-23 05:02:31','2006-02-15 22:19:34'), - (12689,469,1,15851,'2.99','2005-08-23 15:46:33','2006-02-15 22:19:34'), - (12690,470,2,60,'2.99','2005-05-25 08:58:25','2006-02-15 22:19:34'), - (12691,470,2,1256,'0.99','2005-06-15 06:13:57','2006-02-15 22:19:34'), - (12692,470,1,1283,'0.99','2005-06-15 08:27:30','2006-02-15 22:19:34'), - (12693,470,2,1594,'7.99','2005-06-16 05:15:12','2006-02-15 22:19:34'), - (12694,470,1,3764,'5.99','2005-07-06 13:01:03','2006-02-15 22:19:34'), - (12695,470,1,3841,'4.99','2005-07-06 16:34:00','2006-02-15 22:19:35'), - (12696,470,1,3922,'4.99','2005-07-06 20:32:27','2006-02-15 22:19:35'), - (12697,470,1,4373,'4.99','2005-07-07 20:10:59','2006-02-15 22:19:35'), - (12698,470,2,4502,'6.99','2005-07-08 02:12:04','2006-02-15 22:19:35'), - (12699,470,2,5082,'4.99','2005-07-09 05:28:38','2006-02-15 22:19:35'), - (12700,470,1,6009,'3.99','2005-07-11 01:51:58','2006-02-15 22:19:35'), - (12701,470,1,6198,'2.99','2005-07-11 12:12:17','2006-02-15 22:19:35'), - (12702,470,2,6703,'4.99','2005-07-12 12:50:19','2006-02-15 22:19:35'), - (12703,470,1,6927,'10.99','2005-07-26 22:56:00','2006-02-15 22:19:35'), - (12704,470,1,6942,'5.99','2005-07-26 23:27:40','2006-02-15 22:19:35'), - (12705,470,1,7663,'4.99','2005-07-28 02:19:48','2006-02-15 22:19:35'), - (12706,470,2,8476,'8.99','2005-07-29 08:39:12','2006-02-15 22:19:35'), - (12707,470,1,8890,'6.99','2005-07-30 00:42:06','2006-02-15 22:19:35'), - (12708,470,1,9422,'5.99','2005-07-30 21:08:41','2006-02-15 22:19:35'), - (12709,470,1,9687,'2.99','2005-07-31 06:52:54','2006-02-15 22:19:35'), - (12710,470,1,10006,'4.99','2005-07-31 17:54:35','2006-02-15 22:19:35'), - (12711,470,1,10236,'0.99','2005-08-01 02:05:34','2006-02-15 22:19:35'), - (12712,470,2,10944,'4.99','2005-08-02 03:20:03','2006-02-15 22:19:36'), - (12713,470,2,11397,'1.99','2005-08-02 18:53:14','2006-02-15 22:19:36'), - (12714,470,2,11711,'2.99','2005-08-17 07:30:55','2006-02-15 22:19:36'), - (12715,470,1,11742,'0.99','2005-08-17 08:48:43','2006-02-15 22:19:36'), - (12716,470,2,12177,'3.99','2005-08-18 01:15:47','2006-02-15 22:19:36'), - (12717,470,2,12423,'8.99','2005-08-18 10:14:52','2006-02-15 22:19:36'), - (12718,470,1,12753,'10.99','2005-08-18 22:37:39','2006-02-15 22:19:36'), - (12719,470,2,13585,'4.99','2005-08-20 05:32:23','2006-02-15 22:19:36'), - (12720,470,1,13592,'4.99','2005-08-20 05:50:35','2006-02-15 22:19:36'), - (12721,470,2,14405,'4.99','2005-08-21 10:45:01','2006-02-15 22:19:36'), - (12722,471,1,616,'2.99','2005-05-28 15:45:39','2006-02-15 22:19:36'), - (12723,471,1,1447,'4.99','2005-06-15 19:13:51','2006-02-15 22:19:36'), - (12724,471,2,1449,'2.99','2005-06-15 19:19:16','2006-02-15 22:19:36'), - (12725,471,2,2165,'2.99','2005-06-17 23:51:10','2006-02-15 22:19:36'), - (12726,471,2,2350,'4.99','2005-06-18 12:25:29','2006-02-15 22:19:36'), - (12727,471,2,3073,'4.99','2005-06-20 14:33:26','2006-02-15 22:19:36'), - (12728,471,1,3917,'0.99','2005-07-06 20:19:29','2006-02-15 22:19:36'), - (12729,471,1,4020,'2.99','2005-07-07 01:42:22','2006-02-15 22:19:37'), - (12730,471,2,6293,'2.99','2005-07-11 17:24:57','2006-02-15 22:19:37'), - (12731,471,1,6336,'8.99','2005-07-11 19:30:13','2006-02-15 22:19:37'), - (12732,471,1,6912,'5.99','2005-07-12 22:17:16','2006-02-15 22:19:37'), - (12733,471,1,8199,'0.99','2005-07-28 23:10:25','2006-02-15 22:19:37'), - (12734,471,1,9077,'2.99','2005-07-30 08:00:19','2006-02-15 22:19:37'), - (12735,471,1,9502,'0.99','2005-07-31 00:02:10','2006-02-15 22:19:37'), - (12736,471,2,9560,'2.99','2005-07-31 02:17:27','2006-02-15 22:19:37'), - (12737,471,1,10430,'2.99','2005-08-01 08:37:06','2006-02-15 22:19:37'), - (12738,471,2,10828,'3.99','2005-08-01 23:16:10','2006-02-15 22:19:37'), - (12739,471,2,11601,'4.99','2005-08-17 03:14:47','2006-02-15 22:19:37'), - (12740,471,1,12271,'4.99','2005-08-18 04:33:11','2006-02-15 22:19:37'), - (12741,471,1,13661,'5.99','2005-08-20 08:05:59','2006-02-15 22:19:37'), - (12742,471,1,14085,'7.99','2005-08-20 23:46:24','2006-02-15 22:19:37'), - (12743,471,1,14094,'4.99','2005-08-21 00:21:35','2006-02-15 22:19:37'), - (12744,471,1,14317,'5.99','2005-08-21 08:00:40','2006-02-15 22:19:37'), - (12745,471,2,14538,'2.99','2005-08-21 15:28:15','2006-02-15 22:19:37'), - (12746,471,2,14942,'7.99','2005-08-22 05:58:27','2006-02-15 22:19:38'), - (12747,471,2,15184,'0.99','2005-08-22 15:51:12','2006-02-15 22:19:38'), - (12748,471,1,15654,'1.99','2005-08-23 08:34:53','2006-02-15 22:19:38'), - (12749,472,2,142,'0.99','2005-05-25 23:43:47','2006-02-15 22:19:38'), - (12750,472,2,249,'2.99','2005-05-26 14:19:09','2006-02-15 22:19:38'), - (12751,472,2,800,'0.99','2005-05-29 17:28:12','2006-02-15 22:19:38'), - (12752,472,2,994,'4.99','2005-05-30 23:55:36','2006-02-15 22:19:38'), - (12753,472,1,1389,'4.99','2005-06-15 15:49:01','2006-02-15 22:19:38'), - (12754,472,2,1776,'6.99','2005-06-16 18:46:58','2006-02-15 22:19:38'), - (12755,472,1,2538,'5.99','2005-06-19 01:56:59','2006-02-15 22:19:38'), - (12756,472,1,2974,'0.99','2005-06-20 08:00:24','2006-02-15 22:19:38'), - (12757,472,1,2991,'4.99','2005-06-20 09:10:43','2006-02-15 22:19:38'), - (12758,472,1,3254,'0.99','2005-06-21 03:27:10','2006-02-15 22:19:38'), - (12759,472,2,3815,'6.99','2005-07-06 15:26:36','2006-02-15 22:19:38'), - (12760,472,2,5318,'2.99','2005-07-09 16:11:33','2006-02-15 22:19:38'), - (12761,472,1,5612,'3.99','2005-07-10 05:15:12','2006-02-15 22:19:38'), - (12762,472,1,6119,'6.99','2005-07-11 07:44:46','2006-02-15 22:19:38'), - (12763,472,2,6274,'5.99','2005-07-11 16:09:42','2006-02-15 22:19:38'), - (12764,472,1,6308,'5.99','2005-07-11 18:08:41','2006-02-15 22:19:39'), - (12765,472,1,6584,'2.99','2005-07-12 06:43:36','2006-02-15 22:19:39'), - (12766,472,2,8929,'5.99','2005-07-30 02:28:22','2006-02-15 22:19:39'), - (12767,472,2,9926,'6.99','2005-07-31 15:11:51','2006-02-15 22:19:39'), - (12768,472,1,10282,'6.99','2005-08-01 03:29:10','2006-02-15 22:19:39'), - (12769,472,1,10627,'0.99','2005-08-01 15:33:03','2006-02-15 22:19:39'), - (12770,472,1,11911,'6.99','2005-08-17 15:51:35','2006-02-15 22:19:39'), - (12771,472,2,12763,'4.99','2005-08-18 23:07:01','2006-02-15 22:19:39'), - (12772,472,2,13188,'8.99','2005-08-19 14:27:03','2006-02-15 22:19:39'), - (12773,472,1,14209,'4.99','2005-08-21 04:17:56','2006-02-15 22:19:39'), - (12774,472,2,14596,'4.99','2005-08-21 17:38:37','2006-02-15 22:19:39'), - (12775,472,1,14597,'4.99','2005-08-21 17:39:41','2006-02-15 22:19:39'), - (12776,472,2,15185,'5.99','2005-08-22 15:52:50','2006-02-15 22:19:39'), - (12777,472,2,15278,'2.99','2005-08-22 19:06:47','2006-02-15 22:19:39'), - (12778,472,2,14928,'4.99','2006-02-14 15:16:03','2006-02-15 22:19:39'), - (12779,473,1,348,'4.99','2005-05-27 04:50:56','2006-02-15 22:19:39'), - (12780,473,2,942,'2.99','2005-05-30 15:05:47','2006-02-15 22:19:39'), - (12781,473,2,973,'3.99','2005-05-30 20:27:45','2006-02-15 22:19:40'), - (12782,473,2,1748,'0.99','2005-06-16 16:54:03','2006-02-15 22:19:40'), - (12783,473,1,2125,'2.99','2005-06-17 20:53:42','2006-02-15 22:19:40'), - (12784,473,2,2553,'4.99','2005-06-19 03:04:59','2006-02-15 22:19:40'), - (12785,473,2,2748,'4.99','2005-06-19 16:22:26','2006-02-15 22:19:40'), - (12786,473,1,3971,'0.99','2005-07-06 22:50:40','2006-02-15 22:19:40'), - (12787,473,2,4006,'4.99','2005-07-07 00:25:29','2006-02-15 22:19:40'), - (12788,473,2,4625,'4.99','2005-07-08 08:14:26','2006-02-15 22:19:40'), - (12789,473,1,4873,'0.99','2005-07-08 19:23:32','2006-02-15 22:19:40'), - (12790,473,2,5447,'5.99','2005-07-09 22:09:28','2006-02-15 22:19:40'), - (12791,473,1,6446,'2.99','2005-07-12 00:44:08','2006-02-15 22:19:40'), - (12792,473,2,6890,'4.99','2005-07-12 21:03:03','2006-02-15 22:19:40'), - (12793,473,1,7111,'4.99','2005-07-27 05:38:16','2006-02-15 22:19:40'), - (12794,473,1,7215,'2.99','2005-07-27 09:24:00','2006-02-15 22:19:40'), - (12795,473,2,7918,'1.99','2005-07-28 11:58:53','2006-02-15 22:19:40'), - (12796,473,2,7928,'7.99','2005-07-28 12:15:51','2006-02-15 22:19:40'), - (12797,473,1,9025,'4.99','2005-07-30 05:50:08','2006-02-15 22:19:40'), - (12798,473,2,9120,'8.99','2005-07-30 09:26:08','2006-02-15 22:19:41'), - (12799,473,1,10867,'2.99','2005-08-02 00:24:15','2006-02-15 22:19:41'), - (12800,473,2,11006,'2.99','2005-08-02 05:05:52','2006-02-15 22:19:41'), - (12801,473,1,11216,'4.99','2005-08-02 12:23:43','2006-02-15 22:19:41'), - (12802,473,1,11336,'0.99','2005-08-02 16:58:56','2006-02-15 22:19:41'), - (12803,473,2,11421,'7.99','2005-08-02 19:51:53','2006-02-15 22:19:41'), - (12804,473,1,11741,'0.99','2005-08-17 08:48:39','2006-02-15 22:19:41'), - (12805,473,2,13984,'4.99','2005-08-20 19:12:30','2006-02-15 22:19:41'), - (12806,473,2,14202,'0.99','2005-08-21 03:51:52','2006-02-15 22:19:41'), - (12807,473,2,14550,'0.99','2005-08-21 15:56:39','2006-02-15 22:19:41'), - (12808,473,2,14658,'4.99','2005-08-21 19:41:50','2006-02-15 22:19:41'), - (12809,473,2,14757,'4.99','2005-08-21 23:23:37','2006-02-15 22:19:41'), - (12810,473,1,15118,'4.99','2005-08-22 12:38:37','2006-02-15 22:19:41'), - (12811,473,2,15400,'2.99','2005-08-22 23:13:03','2006-02-15 22:19:41'), - (12812,473,2,16024,'4.99','2005-08-23 21:46:47','2006-02-15 22:19:41'), - (12813,474,1,816,'7.99','2005-05-29 20:26:39','2006-02-15 22:19:41'), - (12814,474,1,1758,'8.99','2005-06-16 17:39:39','2006-02-15 22:19:41'), - (12815,474,2,2944,'7.99','2005-06-20 05:43:42','2006-02-15 22:19:42'), - (12816,474,2,3787,'4.99','2005-07-06 14:02:01','2006-02-15 22:19:42'), - (12817,474,2,4048,'1.99','2005-07-07 03:30:52','2006-02-15 22:19:42'), - (12818,474,1,4481,'2.99','2005-07-08 00:58:15','2006-02-15 22:19:42'), - (12819,474,1,4533,'0.99','2005-07-08 03:32:01','2006-02-15 22:19:42'), - (12820,474,2,4785,'0.99','2005-07-08 16:10:19','2006-02-15 22:19:42'), - (12821,474,1,4809,'2.99','2005-07-08 17:03:22','2006-02-15 22:19:42'), - (12822,474,2,4886,'4.99','2005-07-08 19:53:22','2006-02-15 22:19:42'), - (12823,474,1,5251,'0.99','2005-07-09 13:36:10','2006-02-15 22:19:42'), - (12824,474,1,6499,'7.99','2005-07-12 03:11:18','2006-02-15 22:19:42'), - (12825,474,1,8991,'2.99','2005-07-30 04:42:54','2006-02-15 22:19:42'), - (12826,474,2,10376,'5.99','2005-08-01 06:27:13','2006-02-15 22:19:42'), - (12827,474,2,11117,'0.99','2005-08-02 08:36:03','2006-02-15 22:19:42'), - (12828,474,1,11489,'2.99','2005-08-02 22:35:28','2006-02-15 22:19:42'), - (12829,474,2,11537,'2.99','2005-08-17 00:41:08','2006-02-15 22:19:42'), - (12830,474,1,12083,'2.99','2005-08-17 22:13:37','2006-02-15 22:19:42'), - (12831,474,1,12236,'4.99','2005-08-18 03:19:29','2006-02-15 22:19:43'), - (12832,474,1,12440,'0.99','2005-08-18 10:47:35','2006-02-15 22:19:43'), - (12833,474,2,12597,'2.99','2005-08-18 16:34:02','2006-02-15 22:19:43'), - (12834,474,1,12702,'4.99','2005-08-18 20:30:33','2006-02-15 22:19:43'), - (12835,474,1,14728,'0.99','2005-08-21 22:15:36','2006-02-15 22:19:43'), - (12836,474,2,15046,'4.99','2005-08-22 09:54:54','2006-02-15 22:19:43'), - (12837,474,1,15558,'6.99','2005-08-23 04:52:22','2006-02-15 22:19:43'), - (12838,474,1,11909,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:43'), - (12839,475,2,417,'4.99','2005-05-27 15:07:27','2006-02-15 22:19:43'), - (12840,475,1,702,'0.99','2005-05-29 02:27:30','2006-02-15 22:19:43'), - (12841,475,2,3980,'5.99','2005-07-06 23:11:11','2006-02-15 22:19:43'), - (12842,475,1,4013,'6.99','2005-07-07 00:58:00','2006-02-15 22:19:43'), - (12843,475,1,4617,'4.99','2005-07-08 07:55:08','2006-02-15 22:19:43'), - (12844,475,2,5379,'0.99','2005-07-09 19:08:03','2006-02-15 22:19:43'), - (12845,475,1,5407,'0.99','2005-07-09 20:16:07','2006-02-15 22:19:43'), - (12846,475,2,5415,'9.99','2005-07-09 20:30:03','2006-02-15 22:19:43'), - (12847,475,2,5469,'2.99','2005-07-09 23:08:07','2006-02-15 22:19:43'), - (12848,475,1,6224,'4.99','2005-07-11 13:42:18','2006-02-15 22:19:44'), - (12849,475,1,7641,'7.99','2005-07-28 01:15:45','2006-02-15 22:19:44'), - (12850,475,1,7775,'1.99','2005-07-28 07:04:36','2006-02-15 22:19:44'), - (12851,475,2,8207,'5.99','2005-07-28 23:26:31','2006-02-15 22:19:44'), - (12852,475,1,9183,'7.99','2005-07-30 12:09:56','2006-02-15 22:19:44'), - (12853,475,1,9647,'2.99','2005-07-31 05:45:15','2006-02-15 22:19:44'), - (12854,475,1,9737,'2.99','2005-07-31 08:59:18','2006-02-15 22:19:44'), - (12855,475,2,10162,'3.99','2005-07-31 23:11:01','2006-02-15 22:19:44'), - (12856,475,1,10357,'0.99','2005-08-01 05:49:49','2006-02-15 22:19:44'), - (12857,475,1,10633,'3.99','2005-08-01 15:37:17','2006-02-15 22:19:44'), - (12858,475,1,11293,'5.99','2005-08-02 15:00:43','2006-02-15 22:19:44'), - (12859,475,1,11770,'4.99','2005-08-17 10:05:05','2006-02-15 22:19:44'), - (12860,475,2,14303,'2.99','2005-08-21 07:22:43','2006-02-15 22:19:44'), - (12861,475,1,15097,'1.99','2005-08-22 11:43:42','2006-02-15 22:19:44'), - (12862,475,1,15288,'4.99','2005-08-22 19:23:58','2006-02-15 22:19:44'), - (12863,476,1,489,'4.99','2005-05-28 00:09:12','2006-02-15 22:19:44'), - (12864,476,1,771,'2.99','2005-05-29 12:59:14','2006-02-15 22:19:44'), - (12865,476,1,1682,'3.99','2005-06-16 11:54:25','2006-02-15 22:19:44'), - (12866,476,1,2080,'0.99','2005-06-17 16:59:40','2006-02-15 22:19:45'), - (12867,476,2,2508,'4.99','2005-06-18 23:43:58','2006-02-15 22:19:45'), - (12868,476,2,3448,'2.99','2005-06-21 20:59:20','2006-02-15 22:19:45'), - (12869,476,2,3477,'7.99','2005-07-05 23:05:17','2006-02-15 22:19:45'), - (12870,476,1,4010,'5.99','2005-07-07 00:47:00','2006-02-15 22:19:45'), - (12871,476,2,4171,'4.99','2005-07-07 09:49:04','2006-02-15 22:19:45'), - (12872,476,2,5644,'4.99','2005-07-10 06:57:44','2006-02-15 22:19:45'), - (12873,476,1,6151,'2.99','2005-07-11 09:25:17','2006-02-15 22:19:45'), - (12874,476,1,7461,'0.99','2005-07-27 18:45:15','2006-02-15 22:19:45'), - (12875,476,1,8146,'0.99','2005-07-28 20:37:36','2006-02-15 22:19:45'), - (12876,476,2,9325,'6.99','2005-07-30 17:29:19','2006-02-15 22:19:45'), - (12877,476,2,9743,'3.99','2005-07-31 09:12:42','2006-02-15 22:19:45'), - (12878,476,1,10346,'4.99','2005-08-01 05:19:23','2006-02-15 22:19:45'), - (12879,476,1,10617,'9.99','2005-08-01 15:05:52','2006-02-15 22:19:45'), - (12880,476,1,10826,'6.99','2005-08-01 23:07:56','2006-02-15 22:19:45'), - (12881,476,1,12616,'4.99','2005-08-18 17:22:41','2006-02-15 22:19:45'), - (12882,476,2,12709,'5.99','2005-08-18 20:59:51','2006-02-15 22:19:46'), - (12883,476,1,15413,'0.99','2005-08-22 23:38:01','2006-02-15 22:19:46'), - (12884,476,1,13941,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:46'), - (12885,477,1,882,'2.99','2005-05-30 06:16:06','2006-02-15 22:19:46'), - (12886,477,1,1714,'6.99','2005-06-16 14:29:59','2006-02-15 22:19:46'), - (12887,477,1,2187,'2.99','2005-06-18 01:17:27','2006-02-15 22:19:46'), - (12888,477,1,2306,'10.99','2005-06-18 08:33:23','2006-02-15 22:19:46'), - (12889,477,2,2676,'4.99','2005-06-19 11:54:57','2006-02-15 22:19:46'), - (12890,477,2,4237,'5.99','2005-07-07 13:16:55','2006-02-15 22:19:46'), - (12891,477,1,4283,'2.99','2005-07-07 15:29:35','2006-02-15 22:19:46'), - (12892,477,2,4956,'7.99','2005-07-08 23:17:10','2006-02-15 22:19:46'), - (12893,477,2,6265,'2.99','2005-07-11 15:43:51','2006-02-15 22:19:46'), - (12894,477,2,7302,'2.99','2005-07-27 12:52:13','2006-02-15 22:19:46'), - (12895,477,2,7904,'10.99','2005-07-28 11:25:39','2006-02-15 22:19:46'), - (12896,477,1,8515,'6.99','2005-07-29 09:55:20','2006-02-15 22:19:46'), - (12897,477,1,8821,'5.99','2005-07-29 22:18:12','2006-02-15 22:19:46'), - (12898,477,2,8857,'2.99','2005-07-29 23:44:22','2006-02-15 22:19:46'), - (12899,477,2,9446,'8.99','2005-07-30 21:53:01','2006-02-15 22:19:46'), - (12900,477,1,10500,'4.99','2005-08-01 11:01:01','2006-02-15 22:19:47'), - (12901,477,2,10912,'0.99','2005-08-02 02:00:03','2006-02-15 22:19:47'), - (12902,477,2,12420,'4.99','2005-08-18 10:01:50','2006-02-15 22:19:47'), - (12903,477,1,13002,'0.99','2005-08-19 07:37:58','2006-02-15 22:19:47'), - (12904,477,2,14552,'3.99','2005-08-21 15:59:27','2006-02-15 22:19:47'), - (12905,477,2,15091,'2.99','2005-08-22 11:34:43','2006-02-15 22:19:47'), - (12906,477,1,15929,'2.99','2005-08-23 18:23:30','2006-02-15 22:19:47'), - (12907,478,1,1708,'0.99','2005-06-16 14:08:44','2006-02-15 22:19:47'), - (12908,478,2,2358,'4.99','2005-06-18 13:00:51','2006-02-15 22:19:47'), - (12909,478,1,2529,'6.99','2005-06-19 01:18:27','2006-02-15 22:19:47'), - (12910,478,2,2616,'8.99','2005-06-19 07:33:00','2006-02-15 22:19:47'), - (12911,478,2,2765,'4.99','2005-06-19 17:34:39','2006-02-15 22:19:47'), - (12912,478,2,3259,'4.99','2005-06-21 03:57:15','2006-02-15 22:19:47'), - (12913,478,1,3691,'4.99','2005-07-06 09:46:12','2006-02-15 22:19:47'), - (12914,478,1,5837,'4.99','2005-07-10 16:57:50','2006-02-15 22:19:47'), - (12915,478,1,7522,'2.99','2005-07-27 21:11:03','2006-02-15 22:19:47'), - (12916,478,2,8488,'4.99','2005-07-29 08:57:38','2006-02-15 22:19:48'), - (12917,478,1,9665,'4.99','2005-07-31 06:17:33','2006-02-15 22:19:48'), - (12918,478,2,10016,'4.99','2005-07-31 18:13:06','2006-02-15 22:19:48'), - (12919,478,2,10127,'0.99','2005-07-31 21:39:48','2006-02-15 22:19:48'), - (12920,478,1,11906,'2.99','2005-08-17 15:40:46','2006-02-15 22:19:48'), - (12921,478,2,13162,'2.99','2005-08-19 13:28:26','2006-02-15 22:19:48'), - (12922,478,2,13507,'4.99','2005-08-20 02:10:27','2006-02-15 22:19:48'), - (12923,478,1,15027,'4.99','2005-08-22 09:03:04','2006-02-15 22:19:48'), - (12924,478,2,15188,'4.99','2005-08-22 15:55:48','2006-02-15 22:19:48'), - (12925,478,1,15724,'4.99','2005-08-23 11:22:09','2006-02-15 22:19:48'), - (12926,479,2,132,'3.99','2005-05-25 21:46:54','2006-02-15 22:19:48'), - (12927,479,1,709,'7.99','2005-05-29 03:48:01','2006-02-15 22:19:48'), - (12928,479,1,1902,'2.99','2005-06-17 04:35:52','2006-02-15 22:19:48'), - (12929,479,2,1947,'3.99','2005-06-17 08:02:20','2006-02-15 22:19:48'), - (12930,479,2,1987,'2.99','2005-06-17 10:40:36','2006-02-15 22:19:48'), - (12931,479,2,2071,'3.99','2005-06-17 16:33:17','2006-02-15 22:19:48'), - (12932,479,2,2376,'2.99','2005-06-18 14:55:30','2006-02-15 22:19:48'), - (12933,479,2,2764,'6.99','2005-06-19 17:27:25','2006-02-15 22:19:49'), - (12934,479,2,3537,'6.99','2005-07-06 01:36:53','2006-02-15 22:19:49'), - (12935,479,1,3798,'0.99','2005-07-06 14:57:53','2006-02-15 22:19:49'), - (12936,479,2,4183,'8.99','2005-07-07 10:28:33','2006-02-15 22:19:49'), - (12937,479,1,5481,'0.99','2005-07-09 23:51:57','2006-02-15 22:19:49'), - (12938,479,1,5751,'4.99','2005-07-10 12:25:11','2006-02-15 22:19:49'), - (12939,479,2,6084,'7.99','2005-07-11 05:16:20','2006-02-15 22:19:49'), - (12940,479,1,6421,'1.99','2005-07-11 23:45:25','2006-02-15 22:19:49'), - (12941,479,1,6597,'0.99','2005-07-12 07:37:02','2006-02-15 22:19:49'), - (12942,479,2,6849,'8.99','2005-07-12 19:29:19','2006-02-15 22:19:49'), - (12943,479,1,7060,'7.99','2005-07-27 03:51:04','2006-02-15 22:19:49'), - (12944,479,2,7893,'2.99','2005-07-28 10:49:27','2006-02-15 22:19:49'), - (12945,479,1,9347,'5.99','2005-07-30 18:16:03','2006-02-15 22:19:49'), - (12946,479,1,9439,'8.99','2005-07-30 21:38:12','2006-02-15 22:19:49'), - (12947,479,2,9697,'2.99','2005-07-31 07:23:11','2006-02-15 22:19:49'), - (12948,479,2,9754,'7.99','2005-07-31 09:23:43','2006-02-15 22:19:49'), - (12949,479,2,10303,'4.99','2005-08-01 04:13:33','2006-02-15 22:19:49'), - (12950,479,2,11109,'4.99','2005-08-02 08:20:29','2006-02-15 22:19:50'), - (12951,479,2,11584,'1.99','2005-08-17 02:13:26','2006-02-15 22:19:50'), - (12952,479,2,11835,'4.99','2005-08-17 13:03:13','2006-02-15 22:19:50'), - (12953,479,2,12401,'0.99','2005-08-18 09:20:51','2006-02-15 22:19:50'), - (12954,479,2,13078,'8.99','2005-08-19 10:16:43','2006-02-15 22:19:50'), - (12955,479,1,13974,'2.99','2005-08-20 18:54:59','2006-02-15 22:19:50'), - (12956,479,1,12101,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:50'), - (12957,480,1,518,'0.99','2005-05-28 03:18:02','2006-02-15 22:19:50'), - (12958,480,1,720,'6.99','2005-05-29 05:17:30','2006-02-15 22:19:50'), - (12959,480,2,822,'9.99','2005-05-29 21:36:00','2006-02-15 22:19:50'), - (12960,480,1,1353,'0.99','2005-06-15 13:13:36','2006-02-15 22:19:50'), - (12961,480,1,1733,'0.99','2005-06-16 15:37:07','2006-02-15 22:19:50'), - (12962,480,2,3507,'7.99','2005-07-06 00:23:43','2006-02-15 22:19:50'), - (12963,480,2,5633,'2.99','2005-07-10 06:22:24','2006-02-15 22:19:50'), - (12964,480,1,6191,'2.99','2005-07-11 11:37:52','2006-02-15 22:19:50'), - (12965,480,1,7257,'2.99','2005-07-27 11:04:17','2006-02-15 22:19:50'), - (12966,480,2,7910,'9.99','2005-07-28 11:44:56','2006-02-15 22:19:50'), - (12967,480,2,8847,'4.99','2005-07-29 23:13:41','2006-02-15 22:19:51'), - (12968,480,1,8967,'6.99','2005-07-30 03:56:55','2006-02-15 22:19:51'), - (12969,480,2,9332,'4.99','2005-07-30 17:53:39','2006-02-15 22:19:51'), - (12970,480,2,10808,'1.99','2005-08-01 22:37:11','2006-02-15 22:19:51'), - (12971,480,2,11017,'0.99','2005-08-02 05:19:51','2006-02-15 22:19:51'), - (12972,480,1,11369,'5.99','2005-08-02 18:04:41','2006-02-15 22:19:51'), - (12973,480,2,12905,'4.99','2005-08-19 04:13:37','2006-02-15 22:19:51'), - (12974,480,2,13092,'0.99','2005-08-19 10:41:09','2006-02-15 22:19:51'), - (12975,480,2,13131,'9.99','2005-08-19 12:08:13','2006-02-15 22:19:51'), - (12976,480,1,13831,'4.99','2005-08-20 13:59:35','2006-02-15 22:19:51'), - (12977,480,2,15363,'2.99','2005-08-22 21:41:40','2006-02-15 22:19:51'), - (12978,480,2,15579,'4.99','2005-08-23 05:38:41','2006-02-15 22:19:51'), - (12979,481,2,1109,'5.99','2005-05-31 15:12:15','2006-02-15 22:19:51'), - (12980,481,2,1168,'2.99','2005-06-14 23:35:09','2006-02-15 22:19:51'), - (12981,481,2,2296,'4.99','2005-06-18 08:10:42','2006-02-15 22:19:51'), - (12982,481,2,3285,'4.99','2005-06-21 06:30:13','2006-02-15 22:19:51'), - (12983,481,2,3293,'0.99','2005-06-21 06:59:33','2006-02-15 22:19:51'), - (12984,481,1,3863,'0.99','2005-07-06 17:40:18','2006-02-15 22:19:52'), - (12985,481,1,4473,'2.99','2005-07-08 00:22:10','2006-02-15 22:19:52'), - (12986,481,1,4505,'1.99','2005-07-08 02:20:04','2006-02-15 22:19:52'), - (12987,481,1,4532,'0.99','2005-07-08 03:30:39','2006-02-15 22:19:52'), - (12988,481,1,4668,'10.99','2005-07-08 10:11:45','2006-02-15 22:19:52'), - (12989,481,2,5711,'2.99','2005-07-10 10:37:20','2006-02-15 22:19:52'), - (12990,481,1,6044,'0.99','2005-07-11 03:18:39','2006-02-15 22:19:52'), - (12991,481,1,7228,'4.99','2005-07-27 09:55:33','2006-02-15 22:19:52'), - (12992,481,2,7836,'7.99','2005-07-28 08:55:27','2006-02-15 22:19:52'), - (12993,481,1,8243,'6.99','2005-07-29 00:35:33','2006-02-15 22:19:52'), - (12994,481,2,8271,'6.99','2005-07-29 01:27:44','2006-02-15 22:19:52'), - (12995,481,1,9481,'4.99','2005-07-30 23:26:05','2006-02-15 22:19:52'), - (12996,481,1,10018,'3.99','2005-07-31 18:15:14','2006-02-15 22:19:52'), - (12997,481,2,11207,'0.99','2005-08-02 12:01:30','2006-02-15 22:19:52'), - (12998,481,2,11387,'2.99','2005-08-02 18:32:38','2006-02-15 22:19:52'), - (12999,481,1,11752,'4.99','2005-08-17 09:10:55','2006-02-15 22:19:52'), - (13000,481,1,11885,'4.99','2005-08-17 14:53:53','2006-02-15 22:19:53'), - (13001,481,2,12160,'2.99','2005-08-18 00:37:59','2006-02-15 22:19:53'), - (13002,481,1,12981,'4.99','2005-08-19 07:04:00','2006-02-15 22:19:53'), - (13003,481,2,13497,'2.99','2005-08-20 01:46:38','2006-02-15 22:19:53'), - (13004,481,2,13878,'4.99','2005-08-20 15:17:38','2006-02-15 22:19:53'), - (13005,481,1,13990,'1.99','2005-08-20 19:29:23','2006-02-15 22:19:53'), - (13006,481,2,14280,'4.99','2005-08-21 06:39:58','2006-02-15 22:19:53'), - (13007,481,2,14584,'0.99','2005-08-21 17:15:33','2006-02-15 22:19:53'), - (13008,482,1,259,'8.99','2005-05-26 15:32:46','2006-02-15 22:19:53'), - (13009,482,2,680,'2.99','2005-05-28 23:27:26','2006-02-15 22:19:53'), - (13010,482,2,879,'0.99','2005-05-30 05:49:42','2006-02-15 22:19:53'), - (13011,482,2,3048,'2.99','2005-06-20 12:49:55','2006-02-15 22:19:53'), - (13012,482,2,3255,'0.99','2005-06-21 03:39:52','2006-02-15 22:19:53'), - (13013,482,2,3650,'2.99','2005-07-06 07:34:15','2006-02-15 22:19:53'), - (13014,482,1,4768,'4.99','2005-07-08 15:28:20','2006-02-15 22:19:53'), - (13015,482,1,5334,'4.99','2005-07-09 17:00:13','2006-02-15 22:19:53'), - (13016,482,1,5466,'4.99','2005-07-09 23:03:21','2006-02-15 22:19:53'), - (13017,482,2,5810,'8.99','2005-07-10 15:22:04','2006-02-15 22:19:54'), - (13018,482,2,5880,'2.99','2005-07-10 19:14:58','2006-02-15 22:19:54'), - (13019,482,1,6355,'8.99','2005-07-11 20:56:29','2006-02-15 22:19:54'), - (13020,482,2,6447,'7.99','2005-07-12 00:45:17','2006-02-15 22:19:54'), - (13021,482,2,6844,'5.99','2005-07-12 19:14:53','2006-02-15 22:19:54'), - (13022,482,2,7840,'6.99','2005-07-28 09:03:02','2006-02-15 22:19:54'), - (13023,482,2,8584,'2.99','2005-07-29 12:07:53','2006-02-15 22:19:54'), - (13024,482,2,9874,'6.99','2005-07-31 13:32:31','2006-02-15 22:19:54'), - (13025,482,2,10824,'4.99','2005-08-01 23:00:22','2006-02-15 22:19:54'), - (13026,482,2,10839,'2.99','2005-08-01 23:37:39','2006-02-15 22:19:54'), - (13027,482,2,11498,'6.99','2005-08-16 22:52:54','2006-02-15 22:19:54'), - (13028,482,1,13174,'4.99','2005-08-19 13:52:50','2006-02-15 22:19:54'), - (13029,482,2,14383,'4.99','2005-08-21 10:02:05','2006-02-15 22:19:54'), - (13030,482,2,14732,'0.99','2005-08-21 22:22:29','2006-02-15 22:19:54'), - (13031,482,2,14891,'6.99','2005-08-22 04:11:02','2006-02-15 22:19:54'), - (13032,482,2,14995,'4.99','2005-08-22 07:52:31','2006-02-15 22:19:54'), - (13033,482,1,15391,'0.99','2005-08-22 23:01:45','2006-02-15 22:19:54'), - (13034,482,1,15849,'5.99','2005-08-23 15:41:20','2006-02-15 22:19:55'), - (13035,482,2,15865,'2.99','2005-08-23 16:18:25','2006-02-15 22:19:55'), - (13036,482,1,15879,'3.99','2005-08-23 16:42:53','2006-02-15 22:19:55'), - (13037,483,2,742,'6.99','2005-05-29 08:36:30','2006-02-15 22:19:55'), - (13038,483,1,2855,'4.99','2005-06-19 23:11:49','2006-02-15 22:19:55'), - (13039,483,2,2867,'0.99','2005-06-20 00:08:38','2006-02-15 22:19:55'), - (13040,483,1,3380,'8.99','2005-06-21 13:58:46','2006-02-15 22:19:55'), - (13041,483,2,3559,'4.99','2005-07-06 02:49:42','2006-02-15 22:19:55'), - (13042,483,1,5823,'4.99','2005-07-10 16:19:52','2006-02-15 22:19:55'), - (13043,483,2,6478,'4.99','2005-07-12 01:41:44','2006-02-15 22:19:55'), - (13044,483,2,6899,'9.99','2005-07-12 21:44:16','2006-02-15 22:19:55'), - (13045,483,2,7137,'0.99','2005-07-27 06:40:41','2006-02-15 22:19:55'), - (13046,483,1,7381,'4.99','2005-07-27 15:40:26','2006-02-15 22:19:55'), - (13047,483,1,7669,'4.99','2005-07-28 02:44:07','2006-02-15 22:19:55'), - (13048,483,1,8057,'7.99','2005-07-28 17:07:13','2006-02-15 22:19:55'), - (13049,483,1,8356,'4.99','2005-07-29 04:58:56','2006-02-15 22:19:55'), - (13050,483,2,10677,'0.99','2005-08-01 17:24:35','2006-02-15 22:19:55'), - (13051,483,1,10953,'6.99','2005-08-02 03:28:38','2006-02-15 22:19:56'), - (13052,483,2,12331,'3.99','2005-08-18 06:47:19','2006-02-15 22:19:56'), - (13053,483,2,12695,'2.99','2005-08-18 20:11:35','2006-02-15 22:19:56'), - (13054,483,2,12875,'2.99','2005-08-19 03:10:21','2006-02-15 22:19:56'), - (13055,484,2,35,'4.99','2005-05-25 04:24:36','2006-02-15 22:19:56'), - (13056,484,2,668,'2.99','2005-05-28 21:54:45','2006-02-15 22:19:56'), - (13057,484,2,727,'2.99','2005-05-29 06:08:15','2006-02-15 22:19:56'), - (13058,484,1,1351,'3.99','2005-06-15 12:51:03','2006-02-15 22:19:56'), - (13059,484,2,1643,'3.99','2005-06-16 08:55:35','2006-02-15 22:19:56'), - (13060,484,1,2015,'4.99','2005-06-17 12:16:29','2006-02-15 22:19:56'), - (13061,484,1,2044,'5.99','2005-06-17 14:37:57','2006-02-15 22:19:56'), - (13062,484,1,4214,'4.99','2005-07-07 11:54:33','2006-02-15 22:19:56'), - (13063,484,1,5389,'2.99','2005-07-09 19:25:45','2006-02-15 22:19:56'), - (13064,484,2,5708,'6.99','2005-07-10 10:29:19','2006-02-15 22:19:56'), - (13065,484,1,5852,'0.99','2005-07-10 17:43:30','2006-02-15 22:19:56'), - (13066,484,2,5866,'6.99','2005-07-10 18:35:14','2006-02-15 22:19:56'), - (13067,484,2,5977,'5.99','2005-07-11 00:16:38','2006-02-15 22:19:56'), - (13068,484,2,6296,'2.99','2005-07-11 17:34:04','2006-02-15 22:19:57'), - (13069,484,1,6863,'6.99','2005-07-12 19:58:34','2006-02-15 22:19:57'), - (13070,484,2,7440,'4.99','2005-07-27 17:43:27','2006-02-15 22:19:57'), - (13071,484,2,7548,'2.99','2005-07-27 21:53:18','2006-02-15 22:19:57'), - (13072,484,2,8508,'0.99','2005-07-29 09:34:38','2006-02-15 22:19:57'), - (13073,484,2,9141,'5.99','2005-07-30 10:16:04','2006-02-15 22:19:57'), - (13074,484,2,9414,'9.99','2005-07-30 20:46:02','2006-02-15 22:19:57'), - (13075,484,1,9769,'4.99','2005-07-31 09:52:16','2006-02-15 22:19:57'), - (13076,484,2,10166,'8.99','2005-07-31 23:22:20','2006-02-15 22:19:57'), - (13077,484,2,11871,'4.99','2005-08-17 14:11:44','2006-02-15 22:19:57'), - (13078,484,1,12024,'0.99','2005-08-17 19:57:34','2006-02-15 22:19:57'), - (13079,484,1,12771,'4.99','2005-08-18 23:29:23','2006-02-15 22:19:57'), - (13080,484,1,12993,'7.99','2005-08-19 07:24:03','2006-02-15 22:19:57'), - (13081,484,2,13160,'0.99','2005-08-19 13:21:04','2006-02-15 22:19:57'), - (13082,484,2,13956,'3.99','2005-08-20 18:08:19','2006-02-15 22:19:57'), - (13083,484,1,15607,'2.99','2005-08-23 06:54:06','2006-02-15 22:19:57'), - (13084,484,1,16026,'4.99','2005-08-23 21:49:22','2006-02-15 22:19:58'), - (13085,485,1,1009,'2.99','2005-05-31 01:47:35','2006-02-15 22:19:58'), - (13086,485,2,1684,'2.99','2005-06-16 11:57:34','2006-02-15 22:19:58'), - (13087,485,1,1721,'8.99','2005-06-16 15:01:36','2006-02-15 22:19:58'), - (13088,485,2,3579,'0.99','2005-07-06 03:47:47','2006-02-15 22:19:58'), - (13089,485,1,3899,'1.99','2005-07-06 19:12:40','2006-02-15 22:19:58'), - (13090,485,1,3904,'0.99','2005-07-06 19:30:57','2006-02-15 22:19:58'), - (13091,485,2,4137,'3.99','2005-07-07 08:17:06','2006-02-15 22:19:58'), - (13092,485,2,4667,'2.99','2005-07-08 10:06:26','2006-02-15 22:19:58'), - (13093,485,1,5193,'2.99','2005-07-09 10:28:18','2006-02-15 22:19:58'), - (13094,485,1,5343,'3.99','2005-07-09 17:23:43','2006-02-15 22:19:58'), - (13095,485,1,5367,'3.99','2005-07-09 18:39:15','2006-02-15 22:19:58'), - (13096,485,1,5820,'4.99','2005-07-10 16:04:59','2006-02-15 22:19:58'), - (13097,485,2,6810,'4.99','2005-07-12 17:54:19','2006-02-15 22:19:58'), - (13098,485,2,6902,'4.99','2005-07-12 21:57:16','2006-02-15 22:19:58'), - (13099,485,1,7144,'4.99','2005-07-27 07:00:37','2006-02-15 22:19:58'), - (13100,485,2,8984,'6.99','2005-07-30 04:31:50','2006-02-15 22:19:58'), - (13101,485,2,9039,'2.99','2005-07-30 06:24:28','2006-02-15 22:19:59'), - (13102,485,1,9053,'4.99','2005-07-30 07:07:39','2006-02-15 22:19:59'), - (13103,485,2,9189,'2.99','2005-07-30 12:20:59','2006-02-15 22:19:59'), - (13104,485,1,9535,'2.99','2005-07-31 01:18:53','2006-02-15 22:19:59'), - (13105,485,1,9565,'0.99','2005-07-31 02:32:00','2006-02-15 22:19:59'), - (13106,485,1,10771,'4.99','2005-08-01 20:49:35','2006-02-15 22:19:59'), - (13107,485,2,10772,'6.99','2005-08-01 20:51:10','2006-02-15 22:19:59'), - (13108,485,2,11188,'3.99','2005-08-02 11:17:11','2006-02-15 22:19:59'), - (13109,485,1,11921,'4.99','2005-08-17 16:12:27','2006-02-15 22:19:59'), - (13110,485,1,11974,'2.99','2005-08-17 17:56:48','2006-02-15 22:19:59'), - (13111,485,2,12261,'8.99','2005-08-18 04:16:06','2006-02-15 22:19:59'), - (13112,485,2,12487,'0.99','2005-08-18 12:45:24','2006-02-15 22:19:59'), - (13113,485,2,13055,'2.99','2005-08-19 09:36:28','2006-02-15 22:19:59'), - (13114,486,1,909,'8.99','2005-05-30 10:43:38','2006-02-15 22:19:59'), - (13115,486,2,946,'2.99','2005-05-30 15:35:08','2006-02-15 22:19:59'), - (13116,486,2,1129,'0.99','2005-05-31 18:00:48','2006-02-15 22:19:59'), - (13117,486,1,2036,'4.99','2005-06-17 13:46:52','2006-02-15 22:20:00'), - (13118,486,1,2102,'5.99','2005-06-17 19:05:22','2006-02-15 22:20:00'), - (13119,486,2,2566,'2.99','2005-06-19 03:45:39','2006-02-15 22:20:00'), - (13120,486,2,2797,'2.99','2005-06-19 19:04:32','2006-02-15 22:20:00'), - (13121,486,1,3835,'4.99','2005-07-06 16:22:45','2006-02-15 22:20:00'), - (13122,486,2,4110,'4.99','2005-07-07 06:44:27','2006-02-15 22:20:00'), - (13123,486,1,4205,'4.99','2005-07-07 11:25:39','2006-02-15 22:20:00'), - (13124,486,1,4381,'2.99','2005-07-07 20:37:53','2006-02-15 22:20:00'), - (13125,486,1,4772,'7.99','2005-07-08 15:41:11','2006-02-15 22:20:00'), - (13126,486,2,5006,'4.99','2005-07-09 01:24:07','2006-02-15 22:20:00'), - (13127,486,2,6383,'4.99','2005-07-11 22:06:53','2006-02-15 22:20:00'), - (13128,486,2,7127,'4.99','2005-07-27 06:13:48','2006-02-15 22:20:00'), - (13129,486,2,7446,'4.99','2005-07-27 18:00:24','2006-02-15 22:20:00'), - (13130,486,2,8425,'8.99','2005-07-29 07:06:21','2006-02-15 22:20:00'), - (13131,486,2,9142,'0.99','2005-07-30 10:21:03','2006-02-15 22:20:00'), - (13132,486,1,10079,'2.99','2005-07-31 20:05:45','2006-02-15 22:20:00'), - (13133,486,2,10902,'4.99','2005-08-02 01:35:46','2006-02-15 22:20:00'), - (13134,486,1,12465,'0.99','2005-08-18 11:35:02','2006-02-15 22:20:01'), - (13135,486,2,12609,'2.99','2005-08-18 17:06:22','2006-02-15 22:20:01'), - (13136,486,1,13048,'4.99','2005-08-19 09:25:06','2006-02-15 22:20:01'), - (13137,486,2,13803,'0.99','2005-08-20 12:46:17','2006-02-15 22:20:01'), - (13138,486,2,14251,'4.99','2005-08-21 05:42:20','2006-02-15 22:20:01'), - (13139,486,2,14284,'4.99','2005-08-21 06:44:37','2006-02-15 22:20:01'), - (13140,487,2,3100,'3.99','2005-06-20 16:47:57','2006-02-15 22:20:01'), - (13141,487,2,3994,'1.99','2005-07-06 23:39:01','2006-02-15 22:20:01'), - (13142,487,2,4854,'2.99','2005-07-08 18:44:44','2006-02-15 22:20:01'), - (13143,487,1,5634,'3.99','2005-07-10 06:25:48','2006-02-15 22:20:01'), - (13144,487,1,6928,'2.99','2005-07-26 22:56:21','2006-02-15 22:20:01'), - (13145,487,1,7097,'2.99','2005-07-27 04:56:09','2006-02-15 22:20:01'), - (13146,487,1,7788,'0.99','2005-07-28 07:21:55','2006-02-15 22:20:01'), - (13147,487,2,7949,'4.99','2005-07-28 13:07:24','2006-02-15 22:20:01'), - (13148,487,2,8510,'1.99','2005-07-29 09:41:38','2006-02-15 22:20:01'), - (13149,487,2,8689,'2.99','2005-07-29 16:38:58','2006-02-15 22:20:01'), - (13150,487,1,8814,'4.99','2005-07-29 21:49:43','2006-02-15 22:20:01'), - (13151,487,1,8988,'7.99','2005-07-30 04:38:49','2006-02-15 22:20:02'), - (13152,487,2,9457,'2.99','2005-07-30 22:23:05','2006-02-15 22:20:02'), - (13153,487,1,9490,'3.99','2005-07-30 23:45:09','2006-02-15 22:20:02'), - (13154,487,2,10123,'0.99','2005-07-31 21:30:46','2006-02-15 22:20:02'), - (13155,487,2,10511,'2.99','2005-08-01 11:32:16','2006-02-15 22:20:02'), - (13156,487,2,10555,'6.99','2005-08-01 12:56:38','2006-02-15 22:20:02'), - (13157,487,1,10832,'6.99','2005-08-01 23:24:53','2006-02-15 22:20:02'), - (13158,487,2,10877,'5.99','2005-08-02 00:32:04','2006-02-15 22:20:02'), - (13159,487,1,10978,'9.99','2005-08-02 04:12:27','2006-02-15 22:20:02'), - (13160,487,1,11669,'5.99','2005-08-17 05:48:51','2006-02-15 22:20:02'), - (13161,487,2,11890,'5.99','2005-08-17 15:08:43','2006-02-15 22:20:02'), - (13162,487,1,12493,'7.99','2005-08-18 12:53:38','2006-02-15 22:20:02'), - (13163,487,2,13210,'4.99','2005-08-19 15:23:38','2006-02-15 22:20:02'), - (13164,487,1,13658,'7.99','2005-08-20 08:02:22','2006-02-15 22:20:02'), - (13165,487,2,15665,'2.99','2005-08-23 08:59:12','2006-02-15 22:20:02'), - (13166,488,2,1655,'3.99','2005-06-16 09:51:39','2006-02-15 22:20:02'), - (13167,488,2,1704,'5.99','2005-06-16 13:45:56','2006-02-15 22:20:02'), - (13168,488,2,4133,'6.99','2005-07-07 08:12:26','2006-02-15 22:20:03'), - (13169,488,2,4233,'5.99','2005-07-07 13:00:20','2006-02-15 22:20:03'), - (13170,488,1,5141,'8.99','2005-07-09 08:05:14','2006-02-15 22:20:03'), - (13171,488,2,6548,'5.99','2005-07-12 05:00:46','2006-02-15 22:20:03'), - (13172,488,1,7373,'5.99','2005-07-27 15:19:33','2006-02-15 22:20:03'), - (13173,488,1,8005,'2.99','2005-07-28 15:15:11','2006-02-15 22:20:03'), - (13174,488,2,8050,'0.99','2005-07-28 16:55:47','2006-02-15 22:20:03'), - (13175,488,2,8064,'2.99','2005-07-28 17:15:38','2006-02-15 22:20:03'), - (13176,488,2,9083,'5.99','2005-07-30 08:14:27','2006-02-15 22:20:03'), - (13177,488,1,9532,'2.99','2005-07-31 01:16:51','2006-02-15 22:20:03'), - (13178,488,1,9537,'0.99','2005-07-31 01:23:00','2006-02-15 22:20:03'), - (13179,488,2,10474,'5.99','2005-08-01 10:01:42','2006-02-15 22:20:03'), - (13180,488,1,10767,'0.99','2005-08-01 20:37:23','2006-02-15 22:20:03'), - (13181,488,1,11774,'3.99','2005-08-17 10:20:39','2006-02-15 22:20:03'), - (13182,488,2,12483,'5.99','2005-08-18 12:38:37','2006-02-15 22:20:03'), - (13183,488,2,13446,'4.99','2005-08-20 00:06:13','2006-02-15 22:20:03'), - (13184,488,2,14948,'5.99','2005-08-22 06:10:53','2006-02-15 22:20:04'), - (13185,488,2,15259,'0.99','2005-08-22 18:23:23','2006-02-15 22:20:04'), - (13186,488,1,15350,'2.99','2005-08-22 21:15:29','2006-02-15 22:20:04'), - (13187,488,2,15499,'2.99','2005-08-23 02:37:19','2006-02-15 22:20:04'), - (13188,489,1,219,'4.99','2005-05-26 09:41:45','2006-02-15 22:20:04'), - (13189,489,2,513,'2.99','2005-05-28 03:08:10','2006-02-15 22:20:04'), - (13190,489,2,1614,'3.99','2005-06-16 06:58:02','2006-02-15 22:20:04'), - (13191,489,1,2201,'0.99','2005-06-18 02:08:27','2006-02-15 22:20:04'), - (13192,489,1,2370,'7.99','2005-06-18 14:29:54','2006-02-15 22:20:04'), - (13193,489,1,2802,'4.99','2005-06-19 19:18:17','2006-02-15 22:20:04'), - (13194,489,2,3816,'2.99','2005-07-06 15:27:04','2006-02-15 22:20:04'), - (13195,489,1,4774,'3.99','2005-07-08 15:42:28','2006-02-15 22:20:04'), - (13196,489,1,6963,'4.99','2005-07-27 00:13:02','2006-02-15 22:20:04'), - (13197,489,2,9231,'0.99','2005-07-30 13:42:15','2006-02-15 22:20:04'), - (13198,489,1,9459,'4.99','2005-07-30 22:24:46','2006-02-15 22:20:04'), - (13199,489,2,11119,'9.99','2005-08-02 08:44:44','2006-02-15 22:20:04'), - (13200,489,1,11705,'4.99','2005-08-17 07:22:25','2006-02-15 22:20:04'), - (13201,489,1,12496,'6.99','2005-08-18 12:58:25','2006-02-15 22:20:05'), - (13202,489,2,12701,'6.99','2005-08-18 20:26:47','2006-02-15 22:20:05'), - (13203,489,1,13462,'4.99','2005-08-20 00:49:19','2006-02-15 22:20:05'), - (13204,489,2,14095,'5.99','2005-08-21 00:25:45','2006-02-15 22:20:05'), - (13205,489,2,14328,'2.99','2005-08-21 08:18:20','2006-02-15 22:20:05'), - (13206,489,2,14424,'6.99','2005-08-21 11:24:11','2006-02-15 22:20:05'), - (13207,489,1,15205,'0.99','2005-08-22 16:32:23','2006-02-15 22:20:05'), - (13208,489,1,15981,'4.99','2005-08-23 20:12:17','2006-02-15 22:20:05'), - (13209,490,2,585,'6.99','2005-05-28 11:50:45','2006-02-15 22:20:05'), - (13210,490,2,676,'4.99','2005-05-28 22:27:51','2006-02-15 22:20:05'), - (13211,490,1,1665,'3.99','2005-06-16 10:16:02','2006-02-15 22:20:05'), - (13212,490,1,3476,'4.99','2005-07-05 23:02:37','2006-02-15 22:20:05'), - (13213,490,2,3932,'4.99','2005-07-06 21:06:17','2006-02-15 22:20:05'), - (13214,490,1,4083,'2.99','2005-07-07 05:13:15','2006-02-15 22:20:05'), - (13215,490,1,4906,'5.99','2005-07-08 20:59:13','2006-02-15 22:20:05'), - (13216,490,2,5173,'7.99','2005-07-09 09:31:44','2006-02-15 22:20:05'), - (13217,490,2,5489,'0.99','2005-07-10 00:07:03','2006-02-15 22:20:06'), - (13218,490,1,5654,'4.99','2005-07-10 07:24:46','2006-02-15 22:20:06'), - (13219,490,2,6230,'2.99','2005-07-11 14:02:19','2006-02-15 22:20:06'), - (13220,490,1,6803,'4.99','2005-07-12 17:21:49','2006-02-15 22:20:06'), - (13221,490,2,6888,'2.99','2005-07-12 21:01:11','2006-02-15 22:20:06'), - (13222,490,2,6923,'8.99','2005-07-12 22:40:48','2006-02-15 22:20:06'), - (13223,490,1,8552,'5.99','2005-07-29 11:14:02','2006-02-15 22:20:06'), - (13224,490,2,9108,'4.99','2005-07-30 08:56:36','2006-02-15 22:20:06'), - (13225,490,1,9554,'0.99','2005-07-31 02:06:49','2006-02-15 22:20:06'), - (13226,490,1,10786,'7.99','2005-08-01 21:29:34','2006-02-15 22:20:06'), - (13227,490,1,10955,'7.99','2005-08-02 03:32:34','2006-02-15 22:20:06'), - (13228,490,2,11965,'2.99','2005-08-17 17:39:45','2006-02-15 22:20:06'), - (13229,490,2,14557,'4.99','2005-08-21 16:05:11','2006-02-15 22:20:06'), - (13230,490,2,14761,'6.99','2005-08-21 23:30:28','2006-02-15 22:20:06'), - (13231,490,2,15276,'2.99','2005-08-22 18:59:01','2006-02-15 22:20:06'), - (13232,490,1,15448,'2.99','2005-08-23 00:55:24','2006-02-15 22:20:06'), - (13233,491,1,484,'2.99','2005-05-27 23:26:45','2006-02-15 22:20:06'), - (13234,491,2,1097,'0.99','2005-05-31 13:38:42','2006-02-15 22:20:07'), - (13235,491,2,1198,'2.99','2005-06-15 01:48:58','2006-02-15 22:20:07'), - (13236,491,1,1371,'4.99','2005-06-15 14:38:15','2006-02-15 22:20:07'), - (13237,491,2,2026,'4.99','2005-06-17 13:05:38','2006-02-15 22:20:07'), - (13238,491,1,2259,'4.99','2005-06-18 05:37:45','2006-02-15 22:20:07'), - (13239,491,2,2391,'4.99','2005-06-18 15:33:30','2006-02-15 22:20:07'), - (13240,491,2,3031,'4.99','2005-06-20 11:52:49','2006-02-15 22:20:07'), - (13241,491,1,3440,'3.99','2005-06-21 19:58:18','2006-02-15 22:20:07'), - (13242,491,1,4046,'8.99','2005-07-07 03:27:59','2006-02-15 22:20:07'), - (13243,491,1,4392,'2.99','2005-07-07 21:11:02','2006-02-15 22:20:07'), - (13244,491,2,5134,'6.99','2005-07-09 07:53:12','2006-02-15 22:20:07'), - (13245,491,1,5889,'4.99','2005-07-10 19:54:41','2006-02-15 22:20:07'), - (13246,491,2,6171,'2.99','2005-07-11 10:29:35','2006-02-15 22:20:07'), - (13247,491,2,7019,'3.99','2005-07-27 02:20:26','2006-02-15 22:20:07'), - (13248,491,2,7281,'6.99','2005-07-27 11:59:20','2006-02-15 22:20:07'), - (13249,491,2,7688,'7.99','2005-07-28 03:20:47','2006-02-15 22:20:07'), - (13250,491,1,7871,'6.99','2005-07-28 10:16:37','2006-02-15 22:20:08'), - (13251,491,2,10036,'2.99','2005-07-31 18:47:20','2006-02-15 22:20:08'), - (13252,491,2,10178,'4.99','2005-07-31 23:43:04','2006-02-15 22:20:08'), - (13253,491,2,10974,'6.99','2005-08-02 04:10:52','2006-02-15 22:20:08'), - (13254,491,1,11048,'4.99','2005-08-02 06:15:07','2006-02-15 22:20:08'), - (13255,491,1,11590,'0.99','2005-08-17 02:28:33','2006-02-15 22:20:08'), - (13256,491,1,11840,'4.99','2005-08-17 13:09:01','2006-02-15 22:20:08'), - (13257,491,2,13607,'2.99','2005-08-20 06:08:42','2006-02-15 22:20:08'), - (13258,491,1,14780,'0.99','2005-08-22 00:06:33','2006-02-15 22:20:08'), - (13259,491,2,15685,'5.99','2005-08-23 09:41:28','2006-02-15 22:20:08'), - (13260,492,1,84,'2.99','2005-05-25 12:36:30','2006-02-15 22:20:08'), - (13261,492,2,1691,'1.99','2005-06-16 12:24:28','2006-02-15 22:20:08'), - (13262,492,2,1855,'4.99','2005-06-17 00:54:58','2006-02-15 22:20:08'), - (13263,492,2,1956,'4.99','2005-06-17 08:43:32','2006-02-15 22:20:08'), - (13264,492,1,3298,'9.99','2005-06-21 07:09:44','2006-02-15 22:20:08'), - (13265,492,2,4128,'8.99','2005-07-07 07:35:25','2006-02-15 22:20:08'), - (13266,492,1,4142,'2.99','2005-07-07 08:19:45','2006-02-15 22:20:08'), - (13267,492,2,4258,'6.99','2005-07-07 14:20:59','2006-02-15 22:20:09'), - (13268,492,2,5325,'0.99','2005-07-09 16:35:47','2006-02-15 22:20:09'), - (13269,492,1,5609,'0.99','2005-07-10 05:09:46','2006-02-15 22:20:09'), - (13270,492,1,6257,'2.99','2005-07-11 15:23:46','2006-02-15 22:20:09'), - (13271,492,2,7203,'2.99','2005-07-27 09:01:23','2006-02-15 22:20:09'), - (13272,492,2,12971,'4.99','2005-08-19 06:42:43','2006-02-15 22:20:09'), - (13273,492,1,14255,'2.99','2005-08-21 05:51:37','2006-02-15 22:20:09'), - (13274,492,2,15822,'0.99','2005-08-23 15:05:59','2006-02-15 22:20:09'), - (13275,492,1,15958,'4.99','2005-08-23 19:22:36','2006-02-15 22:20:09'), - (13276,493,1,543,'7.99','2005-05-28 06:43:34','2006-02-15 22:20:09'), - (13277,493,2,2109,'3.99','2005-06-17 19:41:42','2006-02-15 22:20:09'), - (13278,493,1,2365,'4.99','2005-06-18 13:45:34','2006-02-15 22:20:09'), - (13279,493,1,2579,'0.99','2005-06-19 04:40:44','2006-02-15 22:20:09'), - (13280,493,1,2864,'2.99','2005-06-20 00:00:52','2006-02-15 22:20:09'), - (13281,493,2,3586,'4.99','2005-07-06 04:24:42','2006-02-15 22:20:09'), - (13282,493,1,3655,'5.99','2005-07-06 07:52:54','2006-02-15 22:20:09'), - (13283,493,1,6549,'7.99','2005-07-12 05:02:01','2006-02-15 22:20:10'), - (13284,493,1,6552,'4.99','2005-07-12 05:05:06','2006-02-15 22:20:10'), - (13285,493,1,7026,'2.99','2005-07-27 02:48:58','2006-02-15 22:20:10'), - (13286,493,2,7043,'7.99','2005-07-27 03:24:23','2006-02-15 22:20:10'), - (13287,493,1,8298,'4.99','2005-07-29 02:47:36','2006-02-15 22:20:10'), - (13288,493,1,8616,'2.99','2005-07-29 13:39:09','2006-02-15 22:20:10'), - (13289,493,1,10777,'6.99','2005-08-01 21:03:50','2006-02-15 22:20:10'), - (13290,493,2,10885,'7.99','2005-08-02 00:51:37','2006-02-15 22:20:10'), - (13291,493,1,13638,'2.99','2005-08-20 07:21:15','2006-02-15 22:20:10'), - (13292,493,2,13675,'6.99','2005-08-20 08:32:51','2006-02-15 22:20:10'), - (13293,493,1,14117,'4.99','2005-08-21 01:11:59','2006-02-15 22:20:10'), - (13294,493,2,15177,'4.99','2005-08-22 15:34:49','2006-02-15 22:20:10'), - (13295,493,1,15355,'0.99','2005-08-22 21:19:24','2006-02-15 22:20:10'), - (13296,493,1,15490,'6.99','2005-08-23 02:08:18','2006-02-15 22:20:10'), - (13297,493,2,15878,'2.99','2005-08-23 16:34:31','2006-02-15 22:20:10'), - (13298,493,2,14160,'2.99','2006-02-14 15:16:03','2006-02-15 22:20:10'), - (13299,494,1,608,'4.99','2005-05-28 15:03:44','2006-02-15 22:20:10'), - (13300,494,1,1683,'2.99','2005-06-16 11:54:55','2006-02-15 22:20:11'), - (13301,494,1,3511,'0.99','2005-07-06 00:42:01','2006-02-15 22:20:11'), - (13302,494,2,3803,'2.99','2005-07-06 15:06:55','2006-02-15 22:20:11'), - (13303,494,2,3913,'0.99','2005-07-06 20:11:00','2006-02-15 22:20:11'), - (13304,494,1,4086,'3.99','2005-07-07 05:26:06','2006-02-15 22:20:11'), - (13305,494,2,4397,'5.99','2005-07-07 21:14:54','2006-02-15 22:20:11'), - (13306,494,2,4551,'7.99','2005-07-08 04:36:21','2006-02-15 22:20:11'), - (13307,494,2,5083,'4.99','2005-07-09 05:30:32','2006-02-15 22:20:11'), - (13308,494,1,5180,'2.99','2005-07-09 10:06:53','2006-02-15 22:20:11'), - (13309,494,2,7258,'3.99','2005-07-27 11:05:54','2006-02-15 22:20:11'), - (13310,494,2,7546,'8.99','2005-07-27 21:50:09','2006-02-15 22:20:11'), - (13311,494,2,7737,'1.99','2005-07-28 05:15:03','2006-02-15 22:20:11'), - (13312,494,2,8333,'2.99','2005-07-29 04:16:40','2006-02-15 22:20:11'), - (13313,494,2,8895,'2.99','2005-07-30 00:49:17','2006-02-15 22:20:11'), - (13314,494,1,8934,'4.99','2005-07-30 02:37:05','2006-02-15 22:20:11'), - (13315,494,2,9012,'4.99','2005-07-30 05:18:57','2006-02-15 22:20:11'), - (13316,494,2,9510,'7.99','2005-07-31 00:24:17','2006-02-15 22:20:12'), - (13317,494,1,9799,'2.99','2005-07-31 10:58:32','2006-02-15 22:20:12'), - (13318,494,2,9943,'7.99','2005-07-31 15:37:29','2006-02-15 22:20:12'), - (13319,494,1,10403,'0.99','2005-08-01 07:30:45','2006-02-15 22:20:12'), - (13320,494,1,10623,'2.99','2005-08-01 15:22:38','2006-02-15 22:20:12'), - (13321,494,2,11152,'3.99','2005-08-02 09:53:36','2006-02-15 22:20:12'), - (13322,494,1,11987,'5.99','2005-08-17 18:21:59','2006-02-15 22:20:12'), - (13323,494,2,13094,'0.99','2005-08-19 10:47:58','2006-02-15 22:20:12'), - (13324,494,2,13301,'3.99','2005-08-19 18:53:15','2006-02-15 22:20:12'), - (13325,494,2,14634,'5.99','2005-08-21 18:51:28','2006-02-15 22:20:12'), - (13326,494,1,14832,'4.99','2005-08-22 01:43:29','2006-02-15 22:20:12'), - (13327,494,1,15086,'6.99','2005-08-22 11:21:08','2006-02-15 22:20:12'), - (13328,494,2,15156,'9.99','2005-08-22 14:29:11','2006-02-15 22:20:12'), - (13329,494,2,15291,'4.99','2005-08-22 19:28:04','2006-02-15 22:20:12'), - (13330,495,2,623,'4.99','2005-05-28 16:01:28','2006-02-15 22:20:12'), - (13331,495,2,741,'4.99','2005-05-29 08:35:49','2006-02-15 22:20:12'), - (13332,495,2,2074,'2.99','2005-06-17 16:40:03','2006-02-15 22:20:13'), - (13333,495,1,2349,'4.99','2005-06-18 12:25:14','2006-02-15 22:20:13'), - (13334,495,1,2549,'7.99','2005-06-19 02:46:39','2006-02-15 22:20:13'), - (13335,495,1,3129,'3.99','2005-06-20 18:57:48','2006-02-15 22:20:13'), - (13336,495,2,3966,'2.99','2005-07-06 22:38:49','2006-02-15 22:20:13'), - (13337,495,2,5484,'7.99','2005-07-09 23:54:37','2006-02-15 22:20:13'), - (13338,495,2,6426,'7.99','2005-07-11 23:56:38','2006-02-15 22:20:13'), - (13339,495,2,7191,'2.99','2005-07-27 08:36:15','2006-02-15 22:20:13'), - (13340,495,1,8151,'0.99','2005-07-28 20:50:52','2006-02-15 22:20:13'), - (13341,495,1,8383,'1.99','2005-07-29 05:36:47','2006-02-15 22:20:13'), - (13342,495,1,8451,'5.99','2005-07-29 07:44:56','2006-02-15 22:20:13'), - (13343,495,1,8672,'5.99','2005-07-29 15:49:48','2006-02-15 22:20:13'), - (13344,495,1,9387,'9.99','2005-07-30 19:27:05','2006-02-15 22:20:13'), - (13345,495,1,9741,'4.99','2005-07-31 09:09:22','2006-02-15 22:20:13'), - (13346,495,2,10065,'4.99','2005-07-31 19:27:34','2006-02-15 22:20:13'), - (13347,495,2,10643,'5.99','2005-08-01 15:48:33','2006-02-15 22:20:13'), - (13348,495,1,10783,'4.99','2005-08-01 21:23:37','2006-02-15 22:20:13'), - (13349,495,1,12782,'5.99','2005-08-18 23:56:23','2006-02-15 22:20:14'), - (13350,495,2,12837,'0.99','2005-08-19 01:51:09','2006-02-15 22:20:14'), - (13351,495,2,13205,'3.99','2005-08-19 15:05:26','2006-02-15 22:20:14'), - (13352,495,2,13445,'2.99','2005-08-20 00:05:33','2006-02-15 22:20:14'), - (13353,495,2,13818,'4.99','2005-08-20 13:20:09','2006-02-15 22:20:14'), - (13354,495,1,15984,'2.99','2005-08-23 20:16:27','2006-02-15 22:20:14'), - (13355,495,2,13753,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:14'), - (13356,496,2,322,'4.99','2005-05-27 00:47:35','2006-02-15 22:20:14'), - (13357,496,2,966,'0.99','2005-05-30 19:00:37','2006-02-15 22:20:14'), - (13358,496,1,2567,'2.99','2005-06-19 04:04:46','2006-02-15 22:20:14'), - (13359,496,2,3569,'3.99','2005-07-06 03:17:23','2006-02-15 22:20:14'), - (13360,496,1,4070,'2.99','2005-07-07 04:37:09','2006-02-15 22:20:14'), - (13361,496,1,4261,'4.99','2005-07-07 14:23:56','2006-02-15 22:20:14'), - (13362,496,1,4269,'0.99','2005-07-07 14:38:33','2006-02-15 22:20:14'), - (13363,496,1,5559,'5.99','2005-07-10 03:13:07','2006-02-15 22:20:14'), - (13364,496,2,5949,'4.99','2005-07-10 23:13:00','2006-02-15 22:20:14'), - (13365,496,1,7133,'2.99','2005-07-27 06:29:23','2006-02-15 22:20:15'), - (13366,496,2,8221,'2.99','2005-07-28 23:47:19','2006-02-15 22:20:15'), - (13367,496,1,11060,'7.99','2005-08-02 06:48:18','2006-02-15 22:20:15'), - (13368,496,2,11448,'4.99','2005-08-02 20:44:33','2006-02-15 22:20:15'), - (13369,496,1,11893,'3.99','2005-08-17 15:13:29','2006-02-15 22:20:15'), - (13370,496,2,12605,'4.99','2005-08-18 16:59:37','2006-02-15 22:20:15'), - (13371,496,1,13569,'5.99','2005-08-20 05:02:59','2006-02-15 22:20:15'), - (13372,496,2,14013,'6.99','2005-08-20 20:42:50','2006-02-15 22:20:15'), - (13373,496,1,14332,'7.99','2005-08-21 08:30:43','2006-02-15 22:20:15'), - (13374,496,1,14348,'0.99','2005-08-21 08:54:26','2006-02-15 22:20:15'), - (13375,496,2,15750,'2.99','2005-08-23 12:36:05','2006-02-15 22:20:15'), - (13376,496,1,13182,'2.99','2006-02-14 15:16:03','2006-02-15 22:20:15'), - (13377,497,1,1100,'7.99','2005-05-31 14:03:21','2006-02-15 22:20:15'), - (13378,497,2,2180,'8.99','2005-06-18 00:47:43','2006-02-15 22:20:15'), - (13379,497,1,2298,'5.99','2005-06-18 08:18:29','2006-02-15 22:20:15'), - (13380,497,1,2406,'2.99','2005-06-18 16:39:37','2006-02-15 22:20:15'), - (13381,497,2,2818,'4.99','2005-06-19 20:05:52','2006-02-15 22:20:16'), - (13382,497,1,3696,'2.99','2005-07-06 10:04:55','2006-02-15 22:20:16'), - (13383,497,2,4218,'7.99','2005-07-07 12:10:24','2006-02-15 22:20:16'), - (13384,497,1,4516,'4.99','2005-07-08 02:43:41','2006-02-15 22:20:16'), - (13385,497,1,4578,'0.99','2005-07-08 06:00:17','2006-02-15 22:20:16'), - (13386,497,2,4795,'0.99','2005-07-08 16:32:54','2006-02-15 22:20:16'), - (13387,497,1,5030,'4.99','2005-07-09 02:35:43','2006-02-15 22:20:16'), - (13388,497,1,5239,'4.99','2005-07-09 13:12:35','2006-02-15 22:20:16'), - (13389,497,2,7603,'2.99','2005-07-27 23:54:44','2006-02-15 22:20:16'), - (13390,497,2,8011,'2.99','2005-07-28 15:26:39','2006-02-15 22:20:16'), - (13391,497,1,8150,'6.99','2005-07-28 20:50:41','2006-02-15 22:20:16'), - (13392,497,2,8813,'6.99','2005-07-29 21:47:55','2006-02-15 22:20:16'), - (13393,497,2,8867,'4.99','2005-07-30 00:02:18','2006-02-15 22:20:16'), - (13394,497,1,9273,'9.99','2005-07-30 15:05:36','2006-02-15 22:20:16'), - (13395,497,2,9850,'4.99','2005-07-31 12:46:52','2006-02-15 22:20:16'), - (13396,497,2,10760,'7.99','2005-08-01 20:25:20','2006-02-15 22:20:16'), - (13397,497,1,12123,'0.99','2005-08-17 23:22:18','2006-02-15 22:20:16'), - (13398,497,1,13159,'4.99','2005-08-19 13:19:59','2006-02-15 22:20:17'), - (13399,497,1,13289,'2.99','2005-08-19 18:31:30','2006-02-15 22:20:17'), - (13400,497,2,14134,'0.99','2005-08-21 01:45:54','2006-02-15 22:20:17'), - (13401,497,1,15362,'5.99','2005-08-22 21:40:20','2006-02-15 22:20:17'), - (13402,497,2,15633,'0.99','2005-08-23 07:31:10','2006-02-15 22:20:17'), - (13403,497,1,15919,'0.99','2005-08-23 18:01:31','2006-02-15 22:20:17'), - (13404,497,1,12698,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:17'), - (13405,498,2,49,'2.99','2005-05-25 06:39:35','2006-02-15 22:20:17'), - (13406,498,1,429,'8.99','2005-05-27 16:21:26','2006-02-15 22:20:17'), - (13407,498,2,718,'2.99','2005-05-29 04:52:23','2006-02-15 22:20:17'), - (13408,498,1,1253,'6.99','2005-06-15 06:06:33','2006-02-15 22:20:17'), - (13409,498,1,1782,'2.99','2005-06-16 19:21:12','2006-02-15 22:20:17'), - (13410,498,1,2344,'2.99','2005-06-18 12:01:47','2006-02-15 22:20:17'), - (13411,498,1,2449,'4.99','2005-06-18 19:18:36','2006-02-15 22:20:17'), - (13412,498,1,3098,'0.99','2005-06-20 16:37:01','2006-02-15 22:20:17'), - (13413,498,2,3360,'0.99','2005-06-21 12:12:41','2006-02-15 22:20:17'), - (13414,498,2,3828,'0.99','2005-07-06 15:57:30','2006-02-15 22:20:18'), - (13415,498,2,3856,'2.99','2005-07-06 17:04:46','2006-02-15 22:20:18'), - (13416,498,1,4311,'4.99','2005-07-07 17:31:14','2006-02-15 22:20:18'), - (13417,498,2,4972,'2.99','2005-07-08 23:56:09','2006-02-15 22:20:18'), - (13418,498,1,5286,'2.99','2005-07-09 15:11:41','2006-02-15 22:20:18'), - (13419,498,2,5884,'0.99','2005-07-10 19:31:38','2006-02-15 22:20:18'), - (13420,498,1,6058,'2.99','2005-07-11 04:03:51','2006-02-15 22:20:18'), - (13421,498,1,6088,'1.99','2005-07-11 05:40:35','2006-02-15 22:20:18'), - (13422,498,1,7285,'4.99','2005-07-27 12:14:06','2006-02-15 22:20:18'), - (13423,498,1,7286,'6.99','2005-07-27 12:23:49','2006-02-15 22:20:18'), - (13424,498,1,7341,'4.99','2005-07-27 14:23:55','2006-02-15 22:20:18'), - (13425,498,2,8020,'4.99','2005-07-28 15:43:32','2006-02-15 22:20:18'), - (13426,498,1,8229,'2.99','2005-07-29 00:09:08','2006-02-15 22:20:18'), - (13427,498,2,9021,'0.99','2005-07-30 05:34:24','2006-02-15 22:20:18'), - (13428,498,2,9689,'4.99','2005-07-31 07:00:08','2006-02-15 22:20:18'), - (13429,498,1,10225,'0.99','2005-08-01 01:38:40','2006-02-15 22:20:18'), - (13430,498,1,11455,'6.99','2005-08-02 21:07:06','2006-02-15 22:20:18'), - (13431,498,1,12893,'2.99','2005-08-19 03:46:43','2006-02-15 22:20:19'), - (13432,499,2,89,'2.99','2005-05-25 14:28:29','2006-02-15 22:20:19'), - (13433,499,1,1355,'2.99','2005-06-15 13:13:59','2006-02-15 22:20:19'), - (13434,499,2,1526,'4.99','2005-06-16 00:27:51','2006-02-15 22:20:19'), - (13435,499,2,1830,'4.99','2005-06-16 22:18:43','2006-02-15 22:20:19'), - (13436,499,2,3241,'1.99','2005-06-21 02:54:32','2006-02-15 22:20:19'), - (13437,499,1,3794,'4.99','2005-07-06 14:35:26','2006-02-15 22:20:19'), - (13438,499,1,5022,'2.99','2005-07-09 02:10:54','2006-02-15 22:20:19'), - (13439,499,2,5392,'2.99','2005-07-09 19:32:30','2006-02-15 22:20:19'), - (13440,499,2,5427,'3.99','2005-07-09 21:12:26','2006-02-15 22:20:19'), - (13441,499,1,5956,'4.99','2005-07-10 23:23:08','2006-02-15 22:20:19'), - (13442,499,2,6723,'4.99','2005-07-12 13:44:57','2006-02-15 22:20:19'), - (13443,499,1,7800,'0.99','2005-07-28 07:50:59','2006-02-15 22:20:19'), - (13444,499,1,7831,'0.99','2005-07-28 08:44:21','2006-02-15 22:20:19'), - (13445,499,1,7898,'6.99','2005-07-28 11:08:22','2006-02-15 22:20:19'), - (13446,499,2,8130,'4.99','2005-07-28 19:48:15','2006-02-15 22:20:19'), - (13447,499,1,8770,'3.99','2005-07-29 19:53:50','2006-02-15 22:20:20'), - (13448,499,1,9588,'0.99','2005-07-31 03:13:13','2006-02-15 22:20:20'), - (13449,499,2,10333,'0.99','2005-08-01 04:58:32','2006-02-15 22:20:20'), - (13450,499,2,10497,'2.99','2005-08-01 10:55:59','2006-02-15 22:20:20'), - (13451,499,1,11513,'7.99','2005-08-16 23:51:33','2006-02-15 22:20:20'), - (13452,499,2,11606,'0.99','2005-08-17 03:32:43','2006-02-15 22:20:20'), - (13453,499,2,11978,'4.99','2005-08-17 18:02:10','2006-02-15 22:20:20'), - (13454,499,1,12004,'8.99','2005-08-17 18:56:53','2006-02-15 22:20:20'), - (13455,499,1,12354,'7.99','2005-08-18 07:34:07','2006-02-15 22:20:20'), - (13456,499,1,12436,'3.99','2005-08-18 10:41:05','2006-02-15 22:20:20'), - (13457,499,1,12587,'1.99','2005-08-18 16:03:13','2006-02-15 22:20:20'), - (13458,499,2,12947,'4.99','2005-08-19 05:54:21','2006-02-15 22:20:20'), - (13459,499,2,13822,'3.99','2005-08-20 13:39:28','2006-02-15 22:20:20'), - (13460,499,1,14858,'3.99','2005-08-22 02:46:18','2006-02-15 22:20:20'), - (13461,499,1,15587,'7.99','2005-08-23 06:00:28','2006-02-15 22:20:20'), - (13462,500,1,112,'8.99','2005-05-25 18:57:24','2006-02-15 22:20:20'), - (13463,500,1,389,'8.99','2005-05-27 10:45:41','2006-02-15 22:20:21'), - (13464,500,1,610,'0.99','2005-05-28 15:15:25','2006-02-15 22:20:21'), - (13465,500,1,1375,'5.99','2005-06-15 14:54:56','2006-02-15 22:20:21'), - (13466,500,2,1388,'5.99','2005-06-15 15:48:41','2006-02-15 22:20:21'), - (13467,500,2,2189,'3.99','2005-06-18 01:20:26','2006-02-15 22:20:21'), - (13468,500,2,2526,'6.99','2005-06-19 01:03:07','2006-02-15 22:20:21'), - (13469,500,1,2996,'2.99','2005-06-20 09:20:29','2006-02-15 22:20:21'), - (13470,500,2,3926,'4.99','2005-07-06 20:42:35','2006-02-15 22:20:21'), - (13471,500,1,4561,'0.99','2005-07-08 05:02:43','2006-02-15 22:20:21'), - (13472,500,2,4790,'4.99','2005-07-08 16:25:27','2006-02-15 22:20:21'), - (13473,500,2,6018,'4.99','2005-07-11 02:06:36','2006-02-15 22:20:21'), - (13474,500,2,6187,'2.99','2005-07-11 11:28:51','2006-02-15 22:20:21'), - (13475,500,2,6801,'3.99','2005-07-12 17:09:08','2006-02-15 22:20:21'), - (13476,500,1,7857,'0.99','2005-07-28 09:49:40','2006-02-15 22:20:21'), - (13477,500,1,7925,'2.99','2005-07-28 12:10:02','2006-02-15 22:20:21'), - (13478,500,1,8538,'6.99','2005-07-29 10:45:17','2006-02-15 22:20:21'), - (13479,500,1,8925,'0.99','2005-07-30 02:09:14','2006-02-15 22:20:22'), - (13480,500,2,9290,'3.99','2005-07-30 15:59:08','2006-02-15 22:20:22'), - (13481,500,1,10947,'6.99','2005-08-02 03:23:17','2006-02-15 22:20:22'), - (13482,500,2,11218,'1.99','2005-08-02 12:29:12','2006-02-15 22:20:22'), - (13483,500,1,12639,'2.99','2005-08-18 18:13:05','2006-02-15 22:20:22'), - (13484,500,2,12813,'2.99','2005-08-19 00:54:22','2006-02-15 22:20:22'), - (13485,500,2,13628,'4.99','2005-08-20 07:03:53','2006-02-15 22:20:22'), - (13486,500,1,14407,'0.99','2005-08-21 10:46:51','2006-02-15 22:20:22'), - (13487,500,1,14964,'4.99','2005-08-22 06:39:24','2006-02-15 22:20:22'), - (13488,500,1,15584,'2.99','2005-08-23 05:49:21','2006-02-15 22:20:22'), - (13489,500,1,15853,'2.99','2005-08-23 15:54:20','2006-02-15 22:20:22'), - (13490,501,1,493,'0.99','2005-05-28 00:34:11','2006-02-15 22:20:22'), - (13491,501,1,605,'1.99','2005-05-28 14:39:10','2006-02-15 22:20:22'), - (13492,501,2,3222,'5.99','2005-06-21 01:50:29','2006-02-15 22:20:22'), - (13493,501,1,3412,'7.99','2005-06-21 16:44:31','2006-02-15 22:20:22'), - (13494,501,2,3541,'6.99','2005-07-06 01:50:11','2006-02-15 22:20:22'), - (13495,501,2,3723,'6.99','2005-07-06 11:12:02','2006-02-15 22:20:22'), - (13496,501,2,4769,'2.99','2005-07-08 15:29:16','2006-02-15 22:20:23'), - (13497,501,2,5520,'1.99','2005-07-10 01:30:41','2006-02-15 22:20:23'), - (13498,501,2,6095,'7.99','2005-07-11 06:06:41','2006-02-15 22:20:23'), - (13499,501,1,7456,'0.99','2005-07-27 18:34:53','2006-02-15 22:20:23'), - (13500,501,1,8021,'2.99','2005-07-28 15:45:24','2006-02-15 22:20:23'), - (13501,501,2,8529,'2.99','2005-07-29 10:24:31','2006-02-15 22:20:23'), - (13502,501,1,9359,'2.99','2005-07-30 18:39:28','2006-02-15 22:20:23'), - (13503,501,1,10817,'4.99','2005-08-01 22:51:08','2006-02-15 22:20:23'), - (13504,501,2,11393,'4.99','2005-08-02 18:44:29','2006-02-15 22:20:23'), - (13505,501,1,11640,'1.99','2005-08-17 04:44:33','2006-02-15 22:20:23'), - (13506,501,2,11799,'6.99','2005-08-17 11:25:25','2006-02-15 22:20:23'), - (13507,501,1,12914,'4.99','2005-08-19 04:25:59','2006-02-15 22:20:23'), - (13508,501,2,13889,'0.99','2005-08-20 15:40:06','2006-02-15 22:20:23'), - (13509,501,1,15239,'4.99','2005-08-22 17:46:17','2006-02-15 22:20:23'), - (13510,501,1,15699,'5.99','2005-08-23 10:20:35','2006-02-15 22:20:23'), - (13511,502,2,258,'2.99','2005-05-26 15:28:14','2006-02-15 22:20:23'), - (13512,502,1,861,'0.99','2005-05-30 02:48:32','2006-02-15 22:20:24'), - (13513,502,1,893,'2.99','2005-05-30 08:06:59','2006-02-15 22:20:24'), - (13514,502,2,965,'0.99','2005-05-30 19:00:14','2006-02-15 22:20:24'), - (13515,502,2,1696,'7.99','2005-06-16 12:50:01','2006-02-15 22:20:24'), - (13516,502,2,2420,'0.99','2005-06-18 17:22:28','2006-02-15 22:20:24'), - (13517,502,1,2911,'0.99','2005-06-20 03:32:37','2006-02-15 22:20:24'), - (13518,502,2,3614,'2.99','2005-07-06 05:46:05','2006-02-15 22:20:24'), - (13519,502,1,4606,'2.99','2005-07-08 07:05:50','2006-02-15 22:20:24'), - (13520,502,2,5368,'5.99','2005-07-09 18:41:59','2006-02-15 22:20:24'), - (13521,502,2,5662,'2.99','2005-07-10 07:59:24','2006-02-15 22:20:24'), - (13522,502,2,6414,'7.99','2005-07-11 23:26:13','2006-02-15 22:20:24'), - (13523,502,1,6760,'8.99','2005-07-12 15:16:00','2006-02-15 22:20:24'), - (13524,502,2,6828,'2.99','2005-07-12 18:38:51','2006-02-15 22:20:24'), - (13525,502,2,6924,'8.99','2005-07-26 22:51:53','2006-02-15 22:20:24'), - (13526,502,2,7213,'3.99','2005-07-27 09:22:29','2006-02-15 22:20:24'), - (13527,502,1,7255,'4.99','2005-07-27 10:49:54','2006-02-15 22:20:24'), - (13528,502,1,7757,'4.99','2005-07-28 06:23:00','2006-02-15 22:20:25'), - (13529,502,1,7884,'4.99','2005-07-28 10:37:24','2006-02-15 22:20:25'), - (13530,502,2,8034,'4.99','2005-07-28 16:20:26','2006-02-15 22:20:25'), - (13531,502,2,9232,'0.99','2005-07-30 13:43:00','2006-02-15 22:20:25'), - (13532,502,1,9599,'4.99','2005-07-31 03:32:06','2006-02-15 22:20:25'), - (13533,502,2,10390,'4.99','2005-08-01 06:46:48','2006-02-15 22:20:25'), - (13534,502,1,10938,'0.99','2005-08-02 03:05:22','2006-02-15 22:20:25'), - (13535,502,2,11036,'4.99','2005-08-02 05:56:29','2006-02-15 22:20:25'), - (13536,502,1,11301,'0.99','2005-08-02 15:37:59','2006-02-15 22:20:25'), - (13537,502,1,11317,'4.99','2005-08-02 16:08:52','2006-02-15 22:20:25'), - (13538,502,1,11435,'0.99','2005-08-02 20:14:23','2006-02-15 22:20:25'), - (13539,502,1,11620,'0.99','2005-08-17 04:06:22','2006-02-15 22:20:25'), - (13540,502,1,12762,'4.99','2005-08-18 23:06:54','2006-02-15 22:20:25'), - (13541,502,1,13052,'9.99','2005-08-19 09:31:42','2006-02-15 22:20:25'), - (13542,502,1,14411,'4.99','2005-08-21 10:54:57','2006-02-15 22:20:25'), - (13543,502,1,15486,'3.99','2005-08-23 02:05:20','2006-02-15 22:20:25'), - (13544,502,1,16034,'3.99','2005-08-23 22:06:34','2006-02-15 22:20:26'), - (13545,503,2,109,'1.99','2005-05-25 18:40:20','2006-02-15 22:20:26'), - (13546,503,1,353,'5.99','2005-05-27 06:03:39','2006-02-15 22:20:26'), - (13547,503,1,631,'2.99','2005-05-28 17:36:32','2006-02-15 22:20:26'), - (13548,503,1,1074,'4.99','2005-05-31 10:04:42','2006-02-15 22:20:26'), - (13549,503,2,2108,'4.99','2005-06-17 19:35:26','2006-02-15 22:20:26'), - (13550,503,1,2225,'2.99','2005-06-18 03:35:40','2006-02-15 22:20:26'), - (13551,503,2,3430,'0.99','2005-06-21 18:46:08','2006-02-15 22:20:26'), - (13552,503,2,3935,'6.99','2005-07-06 21:08:29','2006-02-15 22:20:26'), - (13553,503,2,4570,'2.99','2005-07-08 05:33:59','2006-02-15 22:20:26'), - (13554,503,2,5465,'2.99','2005-07-09 23:01:13','2006-02-15 22:20:26'), - (13555,503,1,5925,'6.99','2005-07-10 21:41:27','2006-02-15 22:20:26'), - (13556,503,1,6166,'4.99','2005-07-11 10:19:05','2006-02-15 22:20:26'), - (13557,503,1,6529,'2.99','2005-07-12 04:31:04','2006-02-15 22:20:26'), - (13558,503,2,6950,'4.99','2005-07-26 23:45:33','2006-02-15 22:20:26'), - (13559,503,1,8178,'2.99','2005-07-28 21:54:31','2006-02-15 22:20:26'), - (13560,503,2,9725,'0.99','2005-07-31 08:35:18','2006-02-15 22:20:27'), - (13561,503,1,9974,'4.99','2005-07-31 16:51:11','2006-02-15 22:20:27'), - (13562,503,2,11075,'2.99','2005-08-02 07:24:23','2006-02-15 22:20:27'), - (13563,503,1,11161,'1.99','2005-08-02 10:05:57','2006-02-15 22:20:27'), - (13564,503,1,11858,'4.99','2005-08-17 13:50:31','2006-02-15 22:20:27'), - (13565,503,2,12370,'2.99','2005-08-18 07:57:47','2006-02-15 22:20:27'), - (13566,503,2,12783,'4.99','2005-08-19 00:01:14','2006-02-15 22:20:27'), - (13567,503,1,13332,'2.99','2005-08-19 20:00:51','2006-02-15 22:20:27'), - (13568,503,1,13551,'2.99','2005-08-20 04:00:30','2006-02-15 22:20:27'), - (13569,503,1,14823,'0.99','2005-08-22 01:24:42','2006-02-15 22:20:27'), - (13570,503,1,14913,'2.99','2005-08-22 04:52:13','2006-02-15 22:20:27'), - (13571,503,2,15056,'4.99','2005-08-22 10:15:54','2006-02-15 22:20:27'), - (13572,503,2,15077,'2.99','2005-08-22 11:09:18','2006-02-15 22:20:27'), - (13573,503,1,15588,'3.99','2005-08-23 06:02:35','2006-02-15 22:20:27'), - (13574,503,1,15692,'4.99','2005-08-23 10:00:02','2006-02-15 22:20:27'), - (13575,503,1,15726,'2.99','2005-08-23 11:28:26','2006-02-15 22:20:27'), - (13576,503,1,15797,'0.99','2005-08-23 14:13:47','2006-02-15 22:20:28'), - (13577,504,2,136,'5.99','2005-05-25 22:02:30','2006-02-15 22:20:28'), - (13578,504,2,470,'4.99','2005-05-27 21:17:08','2006-02-15 22:20:28'), - (13579,504,1,838,'4.99','2005-05-30 00:27:57','2006-02-15 22:20:28'), - (13580,504,1,2720,'1.99','2005-06-19 14:51:55','2006-02-15 22:20:28'), - (13581,504,1,2938,'6.99','2005-06-20 05:17:22','2006-02-15 22:20:28'), - (13582,504,2,3712,'9.99','2005-07-06 10:47:35','2006-02-15 22:20:28'), - (13583,504,1,3713,'6.99','2005-07-06 10:49:30','2006-02-15 22:20:28'), - (13584,504,1,4329,'5.99','2005-07-07 18:04:16','2006-02-15 22:20:28'), - (13585,504,1,4757,'0.99','2005-07-08 14:36:51','2006-02-15 22:20:28'), - (13586,504,2,5153,'6.99','2005-07-09 08:35:05','2006-02-15 22:20:28'), - (13587,504,2,7342,'3.99','2005-07-27 14:25:17','2006-02-15 22:20:28'), - (13588,504,1,7567,'2.99','2005-07-27 22:38:05','2006-02-15 22:20:28'), - (13589,504,2,7807,'2.99','2005-07-28 07:58:27','2006-02-15 22:20:28'), - (13590,504,2,7875,'1.99','2005-07-28 10:23:48','2006-02-15 22:20:28'), - (13591,504,2,7944,'4.99','2005-07-28 12:51:22','2006-02-15 22:20:28'), - (13592,504,1,8393,'9.99','2005-07-29 06:02:11','2006-02-15 22:20:28'), - (13593,504,2,10397,'0.99','2005-08-01 07:11:27','2006-02-15 22:20:29'), - (13594,504,2,10509,'3.99','2005-08-01 11:25:28','2006-02-15 22:20:29'), - (13595,504,2,11569,'2.99','2005-08-17 01:31:04','2006-02-15 22:20:29'), - (13596,504,1,12769,'1.99','2005-08-18 23:26:40','2006-02-15 22:20:29'), - (13597,504,1,13166,'2.99','2005-08-19 13:36:28','2006-02-15 22:20:29'), - (13598,504,2,13206,'2.99','2005-08-19 15:05:34','2006-02-15 22:20:29'), - (13599,504,2,13387,'2.99','2005-08-19 21:46:10','2006-02-15 22:20:29'), - (13600,504,2,13859,'5.99','2005-08-20 14:53:43','2006-02-15 22:20:29'), - (13601,504,2,15018,'4.99','2005-08-22 08:52:38','2006-02-15 22:20:29'), - (13602,504,1,15166,'6.99','2005-08-22 15:05:37','2006-02-15 22:20:29'), - (13603,504,1,15723,'8.99','2005-08-23 11:17:26','2006-02-15 22:20:29'), - (13604,504,2,16022,'4.99','2005-08-23 21:44:27','2006-02-15 22:20:29'), - (13605,505,1,159,'2.99','2005-05-26 01:34:28','2006-02-15 22:20:29'), - (13606,505,1,645,'2.99','2005-05-28 19:14:09','2006-02-15 22:20:29'), - (13607,505,2,1799,'5.99','2005-06-16 20:17:20','2006-02-15 22:20:29'), - (13608,505,2,1886,'4.99','2005-06-17 03:36:02','2006-02-15 22:20:29'), - (13609,505,1,2773,'7.99','2005-06-19 18:04:18','2006-02-15 22:20:30'), - (13610,505,1,3137,'5.99','2005-06-20 19:41:28','2006-02-15 22:20:30'), - (13611,505,2,4008,'5.99','2005-07-07 00:26:43','2006-02-15 22:20:30'), - (13612,505,1,4507,'6.99','2005-07-08 02:22:45','2006-02-15 22:20:30'), - (13613,505,2,5976,'9.99','2005-07-11 00:16:35','2006-02-15 22:20:30'), - (13614,505,2,6292,'4.99','2005-07-11 17:23:33','2006-02-15 22:20:30'), - (13615,505,1,6441,'0.99','2005-07-12 00:27:08','2006-02-15 22:20:30'), - (13616,505,1,7784,'4.99','2005-07-28 07:15:32','2006-02-15 22:20:30'), - (13617,505,2,10219,'5.99','2005-08-01 01:10:33','2006-02-15 22:20:30'), - (13618,505,1,10896,'2.99','2005-08-02 01:19:33','2006-02-15 22:20:30'), - (13619,505,1,11163,'0.99','2005-08-02 10:08:40','2006-02-15 22:20:30'), - (13620,505,1,11907,'2.99','2005-08-17 15:40:47','2006-02-15 22:20:30'), - (13621,505,2,13612,'3.99','2005-08-20 06:22:08','2006-02-15 22:20:30'), - (13622,505,1,14398,'2.99','2005-08-21 10:27:21','2006-02-15 22:20:30'), - (13623,505,1,14802,'2.99','2005-08-22 00:48:23','2006-02-15 22:20:30'), - (13624,505,1,15436,'4.99','2005-08-23 00:30:26','2006-02-15 22:20:30'), - (13625,505,2,15867,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:31'), - (13626,506,1,114,'3.99','2005-05-25 19:12:42','2006-02-15 22:20:31'), - (13627,506,2,387,'2.99','2005-05-27 10:35:27','2006-02-15 22:20:31'), - (13628,506,2,410,'3.99','2005-05-27 14:11:22','2006-02-15 22:20:31'), - (13629,506,1,547,'8.99','2005-05-28 07:24:28','2006-02-15 22:20:31'), - (13630,506,2,907,'0.99','2005-05-30 10:37:27','2006-02-15 22:20:31'), - (13631,506,1,1042,'2.99','2005-05-31 05:53:00','2006-02-15 22:20:31'), - (13632,506,2,1153,'4.99','2005-05-31 21:36:44','2006-02-15 22:20:31'), - (13633,506,1,1446,'6.99','2005-06-15 19:13:45','2006-02-15 22:20:31'), - (13634,506,1,1467,'2.99','2005-06-15 20:47:10','2006-02-15 22:20:31'), - (13635,506,2,1565,'0.99','2005-06-16 03:13:09','2006-02-15 22:20:31'), - (13636,506,1,2755,'9.99','2005-06-19 16:56:31','2006-02-15 22:20:31'), - (13637,506,2,2824,'6.99','2005-06-19 20:31:45','2006-02-15 22:20:31'), - (13638,506,2,4594,'7.99','2005-07-08 06:40:06','2006-02-15 22:20:31'), - (13639,506,2,4640,'6.99','2005-07-08 08:59:34','2006-02-15 22:20:31'), - (13640,506,2,4806,'8.99','2005-07-08 17:01:02','2006-02-15 22:20:31'), - (13641,506,2,5985,'0.99','2005-07-11 00:51:58','2006-02-15 22:20:32'), - (13642,506,1,6783,'2.99','2005-07-12 16:27:56','2006-02-15 22:20:32'), - (13643,506,1,7020,'0.99','2005-07-27 02:24:27','2006-02-15 22:20:32'), - (13644,506,2,8096,'9.99','2005-07-28 18:32:46','2006-02-15 22:20:32'), - (13645,506,2,8506,'0.99','2005-07-29 09:23:52','2006-02-15 22:20:32'), - (13646,506,2,9654,'3.99','2005-07-31 05:57:42','2006-02-15 22:20:32'), - (13647,506,2,9972,'2.99','2005-07-31 16:42:43','2006-02-15 22:20:32'), - (13648,506,1,10477,'2.99','2005-08-01 10:04:17','2006-02-15 22:20:32'), - (13649,506,1,10873,'4.99','2005-08-02 00:30:34','2006-02-15 22:20:32'), - (13650,506,2,11238,'0.99','2005-08-02 13:25:50','2006-02-15 22:20:32'), - (13651,506,2,11781,'4.99','2005-08-17 10:37:00','2006-02-15 22:20:32'), - (13652,506,1,12994,'0.99','2005-08-19 07:26:10','2006-02-15 22:20:32'), - (13653,506,2,13073,'2.99','2005-08-19 10:05:38','2006-02-15 22:20:32'), - (13654,506,2,13767,'0.99','2005-08-20 11:43:36','2006-02-15 22:20:32'), - (13655,506,1,14074,'1.99','2005-08-20 23:16:07','2006-02-15 22:20:32'), - (13656,506,1,14337,'2.99','2005-08-21 08:34:26','2006-02-15 22:20:32'), - (13657,506,2,14395,'6.99','2005-08-21 10:24:00','2006-02-15 22:20:33'), - (13658,506,2,15022,'5.99','2005-08-22 08:55:43','2006-02-15 22:20:33'), - (13659,506,2,15572,'1.99','2005-08-23 05:28:01','2006-02-15 22:20:33'), - (13660,506,1,15694,'9.99','2005-08-23 10:02:46','2006-02-15 22:20:33'), - (13661,507,1,52,'0.99','2005-05-25 06:51:29','2006-02-15 22:20:33'), - (13662,507,2,713,'4.99','2005-05-29 04:10:17','2006-02-15 22:20:33'), - (13663,507,2,1307,'4.99','2005-06-15 10:06:15','2006-02-15 22:20:33'), - (13664,507,1,2143,'4.99','2005-06-17 21:58:13','2006-02-15 22:20:33'), - (13665,507,2,2283,'4.99','2005-06-18 06:56:06','2006-02-15 22:20:33'), - (13666,507,1,3660,'4.99','2005-07-06 08:07:29','2006-02-15 22:20:33'), - (13667,507,1,3880,'2.99','2005-07-06 18:32:49','2006-02-15 22:20:33'), - (13668,507,2,4440,'0.99','2005-07-07 23:00:58','2006-02-15 22:20:33'), - (13669,507,2,4455,'2.99','2005-07-07 23:43:46','2006-02-15 22:20:33'), - (13670,507,2,4744,'0.99','2005-07-08 13:43:57','2006-02-15 22:20:33'), - (13671,507,2,4901,'2.99','2005-07-08 20:44:51','2006-02-15 22:20:33'), - (13672,507,1,5962,'0.99','2005-07-10 23:45:22','2006-02-15 22:20:33'), - (13673,507,1,6351,'6.99','2005-07-11 20:31:44','2006-02-15 22:20:34'), - (13674,507,1,6396,'1.99','2005-07-11 22:31:08','2006-02-15 22:20:34'), - (13675,507,1,6891,'2.99','2005-07-12 21:07:35','2006-02-15 22:20:34'), - (13676,507,2,7770,'5.99','2005-07-28 06:49:35','2006-02-15 22:20:34'), - (13677,507,1,7970,'5.99','2005-07-28 13:58:38','2006-02-15 22:20:34'), - (13678,507,2,8369,'2.99','2005-07-29 05:15:42','2006-02-15 22:20:34'), - (13679,507,2,8976,'2.99','2005-07-30 04:12:32','2006-02-15 22:20:34'), - (13680,507,1,9003,'2.99','2005-07-30 05:02:52','2006-02-15 22:20:34'), - (13681,507,2,12071,'6.99','2005-08-17 21:49:14','2006-02-15 22:20:34'), - (13682,507,2,12275,'4.99','2005-08-18 04:42:02','2006-02-15 22:20:34'), - (13683,507,1,12343,'4.99','2005-08-18 07:15:13','2006-02-15 22:20:34'), - (13684,507,2,14625,'4.99','2005-08-21 18:34:21','2006-02-15 22:20:34'), - (13685,507,1,15394,'2.99','2005-08-22 23:04:21','2006-02-15 22:20:34'), - (13686,508,1,369,'2.99','2005-05-27 07:46:49','2006-02-15 22:20:34'), - (13687,508,2,921,'2.99','2005-05-30 11:53:09','2006-02-15 22:20:34'), - (13688,508,2,1661,'4.99','2005-06-16 10:12:57','2006-02-15 22:20:34'), - (13689,508,2,5657,'9.99','2005-07-10 07:33:43','2006-02-15 22:20:35'), - (13690,508,2,5978,'6.99','2005-07-11 00:16:54','2006-02-15 22:20:35'), - (13691,508,1,6101,'4.99','2005-07-11 06:50:33','2006-02-15 22:20:35'), - (13692,508,2,6646,'0.99','2005-07-12 10:41:34','2006-02-15 22:20:35'), - (13693,508,2,6929,'8.99','2005-07-26 22:59:19','2006-02-15 22:20:35'), - (13694,508,1,7283,'5.99','2005-07-27 12:02:41','2006-02-15 22:20:35'), - (13695,508,2,7322,'3.99','2005-07-27 13:37:26','2006-02-15 22:20:35'), - (13696,508,2,7327,'7.99','2005-07-27 13:53:26','2006-02-15 22:20:35'), - (13697,508,2,7668,'2.99','2005-07-28 02:41:31','2006-02-15 22:20:35'), - (13698,508,2,7676,'4.99','2005-07-28 02:55:27','2006-02-15 22:20:35'), - (13699,508,2,8191,'4.99','2005-07-28 22:47:14','2006-02-15 22:20:35'), - (13700,508,2,9694,'5.99','2005-07-31 07:13:16','2006-02-15 22:20:35'), - (13701,508,1,9706,'2.99','2005-07-31 07:43:19','2006-02-15 22:20:35'), - (13702,508,2,10128,'2.99','2005-07-31 21:40:04','2006-02-15 22:20:35'), - (13703,508,1,10746,'8.99','2005-08-01 19:58:49','2006-02-15 22:20:35'), - (13704,508,1,11365,'2.99','2005-08-02 18:00:09','2006-02-15 22:20:35'), - (13705,508,2,11447,'6.99','2005-08-02 20:36:25','2006-02-15 22:20:36'), - (13706,508,1,13095,'6.99','2005-08-19 10:48:10','2006-02-15 22:20:36'), - (13707,508,2,13201,'2.99','2005-08-19 14:56:05','2006-02-15 22:20:36'), - (13708,508,1,15010,'6.99','2005-08-22 08:30:17','2006-02-15 22:20:36'), - (13709,508,1,15195,'4.99','2005-08-22 16:08:23','2006-02-15 22:20:36'), - (13710,508,1,14318,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:36'), - (13711,509,1,22,'4.99','2005-05-25 02:19:23','2006-02-15 22:20:36'), - (13712,509,1,831,'8.99','2005-05-29 22:50:25','2006-02-15 22:20:36'), - (13713,509,1,1267,'2.99','2005-06-15 07:21:21','2006-02-15 22:20:36'), - (13714,509,2,2919,'4.99','2005-06-20 04:10:16','2006-02-15 22:20:36'), - (13715,509,2,4139,'1.99','2005-07-07 08:17:35','2006-02-15 22:20:36'), - (13716,509,2,4266,'4.99','2005-07-07 14:34:50','2006-02-15 22:20:36'), - (13717,509,2,4832,'2.99','2005-07-08 18:07:05','2006-02-15 22:20:36'), - (13718,509,2,5008,'2.99','2005-07-09 01:31:42','2006-02-15 22:20:36'), - (13719,509,1,6591,'5.99','2005-07-12 07:13:46','2006-02-15 22:20:36'), - (13720,509,1,7848,'6.99','2005-07-28 09:24:31','2006-02-15 22:20:36'), - (13721,509,1,8114,'8.99','2005-07-28 19:14:06','2006-02-15 22:20:37'), - (13722,509,1,8214,'5.99','2005-07-28 23:37:57','2006-02-15 22:20:37'), - (13723,509,2,8240,'0.99','2005-07-29 00:33:32','2006-02-15 22:20:37'), - (13724,509,1,10189,'4.99','2005-08-01 00:25:00','2006-02-15 22:20:37'), - (13725,509,2,10988,'5.99','2005-08-02 04:38:17','2006-02-15 22:20:37'), - (13726,509,1,11814,'6.99','2005-08-17 12:09:20','2006-02-15 22:20:37'), - (13727,509,2,12109,'4.99','2005-08-17 22:58:35','2006-02-15 22:20:37'), - (13728,509,2,14045,'4.99','2005-08-20 21:50:11','2006-02-15 22:20:37'), - (13729,509,2,14994,'5.99','2005-08-22 07:52:24','2006-02-15 22:20:37'), - (13730,509,1,15965,'2.99','2005-08-23 19:46:39','2006-02-15 22:20:37'), - (13731,510,1,75,'8.99','2005-05-25 11:13:34','2006-02-15 22:20:37'), - (13732,510,1,372,'5.99','2005-05-27 08:13:58','2006-02-15 22:20:37'), - (13733,510,2,1118,'4.99','2005-05-31 16:23:02','2006-02-15 22:20:37'), - (13734,510,2,1435,'5.99','2005-06-15 18:32:30','2006-02-15 22:20:37'), - (13735,510,2,1757,'0.99','2005-06-16 17:32:24','2006-02-15 22:20:37'), - (13736,510,2,1925,'0.99','2005-06-17 06:16:47','2006-02-15 22:20:37'), - (13737,510,1,2729,'8.99','2005-06-19 15:06:15','2006-02-15 22:20:38'), - (13738,510,2,2806,'0.99','2005-06-19 19:30:48','2006-02-15 22:20:38'), - (13739,510,2,2817,'0.99','2005-06-19 20:05:22','2006-02-15 22:20:38'), - (13740,510,2,3352,'8.99','2005-06-21 11:26:29','2006-02-15 22:20:38'), - (13741,510,2,3465,'5.99','2005-06-21 22:10:01','2006-02-15 22:20:38'), - (13742,510,2,3744,'2.99','2005-07-06 12:10:02','2006-02-15 22:20:38'), - (13743,510,1,4014,'4.99','2005-07-07 00:58:54','2006-02-15 22:20:38'), - (13744,510,2,5851,'4.99','2005-07-10 17:40:47','2006-02-15 22:20:38'), - (13745,510,1,6531,'1.99','2005-07-12 04:35:24','2006-02-15 22:20:38'), - (13746,510,1,7457,'2.99','2005-07-27 18:35:17','2006-02-15 22:20:38'), - (13747,510,1,7678,'8.99','2005-07-28 02:58:16','2006-02-15 22:20:38'), - (13748,510,2,7794,'9.99','2005-07-28 07:28:03','2006-02-15 22:20:38'), - (13749,510,2,8763,'3.99','2005-07-29 19:38:24','2006-02-15 22:20:38'), - (13750,510,1,8926,'4.99','2005-07-30 02:10:31','2006-02-15 22:20:38'), - (13751,510,1,10131,'0.99','2005-07-31 21:45:28','2006-02-15 22:20:38'), - (13752,510,2,10265,'7.99','2005-08-01 03:05:04','2006-02-15 22:20:38'), - (13753,510,2,11996,'4.99','2005-08-17 18:34:37','2006-02-15 22:20:39'), - (13754,510,1,12317,'0.99','2005-08-18 06:17:06','2006-02-15 22:20:39'), - (13755,510,2,12406,'2.99','2005-08-18 09:38:02','2006-02-15 22:20:39'), - (13756,510,1,15065,'4.99','2005-08-22 10:46:44','2006-02-15 22:20:39'), - (13757,511,1,56,'2.99','2005-05-25 08:28:11','2006-02-15 22:20:39'), - (13758,511,1,819,'3.99','2005-05-29 21:00:32','2006-02-15 22:20:39'), - (13759,511,2,1281,'2.99','2005-06-15 08:21:39','2006-02-15 22:20:39'), - (13760,511,1,1508,'2.99','2005-06-15 22:33:24','2006-02-15 22:20:39'), - (13761,511,2,2966,'10.99','2005-06-20 07:39:33','2006-02-15 22:20:39'), - (13762,511,2,3366,'4.99','2005-06-21 13:03:37','2006-02-15 22:20:39'), - (13763,511,2,3600,'4.99','2005-07-06 05:19:42','2006-02-15 22:20:39'), - (13764,511,1,3852,'0.99','2005-07-06 16:57:49','2006-02-15 22:20:39'), - (13765,511,1,4482,'4.99','2005-07-08 01:01:18','2006-02-15 22:20:39'), - (13766,511,2,5164,'3.99','2005-07-09 09:03:14','2006-02-15 22:20:39'), - (13767,511,1,5601,'0.99','2005-07-10 04:56:55','2006-02-15 22:20:39'), - (13768,511,2,6040,'0.99','2005-07-11 03:14:26','2006-02-15 22:20:39'), - (13769,511,1,6320,'0.99','2005-07-11 18:50:55','2006-02-15 22:20:40'), - (13770,511,1,8026,'4.99','2005-07-28 16:05:38','2006-02-15 22:20:40'), - (13771,511,1,9095,'0.99','2005-07-30 08:38:36','2006-02-15 22:20:40'), - (13772,511,1,9143,'6.99','2005-07-30 10:22:11','2006-02-15 22:20:40'), - (13773,511,1,9760,'4.99','2005-07-31 09:29:33','2006-02-15 22:20:40'), - (13774,511,1,10231,'2.99','2005-08-01 01:50:49','2006-02-15 22:20:40'), - (13775,511,2,10429,'2.99','2005-08-01 08:34:18','2006-02-15 22:20:40'), - (13776,511,2,12110,'6.99','2005-08-17 22:59:46','2006-02-15 22:20:40'), - (13777,511,1,12920,'4.99','2005-08-19 04:32:32','2006-02-15 22:20:40'), - (13778,511,1,14213,'4.99','2005-08-21 04:30:47','2006-02-15 22:20:40'), - (13779,511,1,14302,'6.99','2005-08-21 07:19:57','2006-02-15 22:20:40'), - (13780,511,1,15172,'4.99','2005-08-22 15:25:33','2006-02-15 22:20:40'), - (13781,512,1,1176,'6.99','2005-06-15 00:28:37','2006-02-15 22:20:40'), - (13782,512,2,2029,'4.99','2005-06-17 13:10:59','2006-02-15 22:20:40'), - (13783,512,1,2364,'2.99','2005-06-18 13:37:32','2006-02-15 22:20:40'), - (13784,512,1,4752,'5.99','2005-07-08 14:15:20','2006-02-15 22:20:40'), - (13785,512,1,4799,'0.99','2005-07-08 16:49:27','2006-02-15 22:20:41'), - (13786,512,1,5064,'6.99','2005-07-09 04:38:51','2006-02-15 22:20:41'), - (13787,512,2,5813,'3.99','2005-07-10 15:34:37','2006-02-15 22:20:41'), - (13788,512,1,7219,'2.99','2005-07-27 09:35:36','2006-02-15 22:20:41'), - (13789,512,1,7507,'0.99','2005-07-27 20:31:48','2006-02-15 22:20:41'), - (13790,512,1,7715,'6.99','2005-07-28 04:32:38','2006-02-15 22:20:41'), - (13791,512,2,8868,'4.99','2005-07-30 00:02:26','2006-02-15 22:20:41'), - (13792,512,1,9055,'2.99','2005-07-30 07:13:07','2006-02-15 22:20:41'), - (13793,512,2,10232,'4.99','2005-08-01 01:50:55','2006-02-15 22:20:41'), - (13794,512,2,10670,'3.99','2005-08-01 17:07:16','2006-02-15 22:20:41'), - (13795,512,2,11818,'9.99','2005-08-17 12:22:04','2006-02-15 22:20:41'), - (13796,512,2,12957,'8.99','2005-08-19 06:12:44','2006-02-15 22:20:41'), - (13797,512,2,13156,'4.99','2005-08-19 13:10:42','2006-02-15 22:20:41'), - (13798,512,2,13771,'0.99','2005-08-20 11:47:21','2006-02-15 22:20:41'), - (13799,512,1,14288,'4.99','2005-08-21 06:57:34','2006-02-15 22:20:41'), - (13800,512,1,14870,'2.99','2005-08-22 03:23:20','2006-02-15 22:20:41'), - (13801,512,1,15153,'2.99','2005-08-22 14:26:01','2006-02-15 22:20:42'), - (13802,512,2,15265,'3.99','2005-08-22 18:35:59','2006-02-15 22:20:42'), - (13803,512,1,15317,'3.99','2005-08-22 20:14:13','2006-02-15 22:20:42'), - (13804,512,2,15733,'4.99','2005-08-23 11:37:32','2006-02-15 22:20:42'), - (13805,512,2,15990,'4.99','2005-08-23 20:25:11','2006-02-15 22:20:42'), - (13806,512,1,12786,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:42'), - (13807,513,2,993,'4.99','2005-05-30 23:54:19','2006-02-15 22:20:42'), - (13808,513,1,1607,'2.99','2005-06-16 06:25:35','2006-02-15 22:20:42'), - (13809,513,2,2290,'7.99','2005-06-18 07:34:37','2006-02-15 22:20:42'), - (13810,513,2,2737,'1.99','2005-06-19 15:48:33','2006-02-15 22:20:42'), - (13811,513,2,3872,'0.99','2005-07-06 18:00:19','2006-02-15 22:20:42'), - (13812,513,2,4055,'2.99','2005-07-07 03:49:13','2006-02-15 22:20:42'), - (13813,513,2,4178,'4.99','2005-07-07 10:14:31','2006-02-15 22:20:42'), - (13814,513,2,4220,'4.99','2005-07-07 12:12:36','2006-02-15 22:20:42'), - (13815,513,1,5741,'7.99','2005-07-10 11:55:40','2006-02-15 22:20:42'), - (13816,513,1,6027,'4.99','2005-07-11 02:26:29','2006-02-15 22:20:42'), - (13817,513,1,7655,'0.99','2005-07-28 02:01:11','2006-02-15 22:20:43'), - (13818,513,2,8320,'4.99','2005-07-29 03:49:58','2006-02-15 22:20:43'), - (13819,513,1,8350,'4.99','2005-07-29 04:50:39','2006-02-15 22:20:43'), - (13820,513,2,8683,'9.99','2005-07-29 16:15:43','2006-02-15 22:20:43'), - (13821,513,1,8798,'5.99','2005-07-29 21:15:38','2006-02-15 22:20:43'), - (13822,513,2,9862,'2.99','2005-07-31 13:05:03','2006-02-15 22:20:43'), - (13823,513,1,10012,'3.99','2005-07-31 18:06:06','2006-02-15 22:20:43'), - (13824,513,2,11081,'2.99','2005-08-02 07:30:14','2006-02-15 22:20:43'), - (13825,513,1,11165,'2.99','2005-08-02 10:12:17','2006-02-15 22:20:43'), - (13826,513,1,11407,'3.99','2005-08-02 19:18:43','2006-02-15 22:20:43'), - (13827,513,1,11755,'3.99','2005-08-17 09:15:35','2006-02-15 22:20:43'), - (13828,513,1,12559,'5.99','2005-08-18 14:53:58','2006-02-15 22:20:43'), - (13829,513,2,12784,'2.99','2005-08-19 00:02:46','2006-02-15 22:20:43'), - (13830,513,2,12807,'4.99','2005-08-19 00:38:46','2006-02-15 22:20:43'), - (13831,513,1,13596,'5.99','2005-08-20 05:58:58','2006-02-15 22:20:43'), - (13832,513,1,13690,'4.99','2005-08-20 09:07:27','2006-02-15 22:20:43'), - (13833,513,2,14844,'7.99','2005-08-22 02:09:12','2006-02-15 22:20:44'), - (13834,513,1,14875,'4.99','2005-08-22 03:34:39','2006-02-15 22:20:44'), - (13835,513,1,15035,'4.99','2005-08-22 09:34:32','2006-02-15 22:20:44'), - (13836,513,2,15289,'6.99','2005-08-22 19:27:24','2006-02-15 22:20:44'), - (13837,513,2,15545,'5.99','2005-08-23 04:20:16','2006-02-15 22:20:44'), - (13838,514,2,536,'4.99','2005-05-28 06:17:33','2006-02-15 22:20:44'), - (13839,514,2,1692,'4.99','2005-06-16 12:30:19','2006-02-15 22:20:44'), - (13840,514,1,2002,'3.99','2005-06-17 11:39:58','2006-02-15 22:20:44'), - (13841,514,2,2362,'0.99','2005-06-18 13:31:15','2006-02-15 22:20:44'), - (13842,514,1,2789,'0.99','2005-06-19 18:48:21','2006-02-15 22:20:44'), - (13843,514,2,3084,'2.99','2005-06-20 15:35:24','2006-02-15 22:20:44'), - (13844,514,1,3385,'0.99','2005-06-21 14:16:48','2006-02-15 22:20:44'), - (13845,514,2,3668,'5.99','2005-07-06 08:36:48','2006-02-15 22:20:44'), - (13846,514,2,3860,'2.99','2005-07-06 17:20:24','2006-02-15 22:20:44'), - (13847,514,1,7791,'4.99','2005-07-28 07:22:51','2006-02-15 22:20:44'), - (13848,514,1,9038,'3.99','2005-07-30 06:23:35','2006-02-15 22:20:45'), - (13849,514,1,11675,'1.99','2005-08-17 05:57:54','2006-02-15 22:20:45'), - (13850,514,2,12067,'4.99','2005-08-17 21:36:47','2006-02-15 22:20:45'), - (13851,514,1,12293,'4.99','2005-08-18 05:13:36','2006-02-15 22:20:45'), - (13852,514,1,12302,'4.99','2005-08-18 05:41:39','2006-02-15 22:20:45'), - (13853,514,2,12578,'0.99','2005-08-18 15:47:11','2006-02-15 22:20:45'), - (13854,514,1,12752,'2.99','2005-08-18 22:33:36','2006-02-15 22:20:45'), - (13855,514,2,13344,'3.99','2005-08-19 20:22:44','2006-02-15 22:20:45'), - (13856,514,1,14052,'0.99','2005-08-20 22:11:46','2006-02-15 22:20:45'), - (13857,514,1,14386,'1.99','2005-08-21 10:06:34','2006-02-15 22:20:45'), - (13858,514,1,15451,'2.99','2005-08-23 00:56:27','2006-02-15 22:20:45'), - (13859,514,1,15776,'5.99','2005-08-23 13:26:01','2006-02-15 22:20:45'), - (13860,515,2,187,'8.99','2005-05-26 05:42:37','2006-02-15 22:20:45'), - (13861,515,2,292,'6.99','2005-05-26 20:22:12','2006-02-15 22:20:45'), - (13862,515,1,1244,'4.99','2005-06-15 05:08:40','2006-02-15 22:20:45'), - (13863,515,2,1531,'5.99','2005-06-16 00:40:34','2006-02-15 22:20:45'), - (13864,515,2,2003,'4.99','2005-06-17 11:40:35','2006-02-15 22:20:46'), - (13865,515,2,2484,'4.99','2005-06-18 21:25:23','2006-02-15 22:20:46'), - (13866,515,2,2513,'0.99','2005-06-18 23:53:15','2006-02-15 22:20:46'), - (13867,515,2,3063,'3.99','2005-06-20 13:52:03','2006-02-15 22:20:46'), - (13868,515,2,3782,'0.99','2005-07-06 13:57:03','2006-02-15 22:20:46'), - (13869,515,2,4111,'6.99','2005-07-07 06:47:56','2006-02-15 22:20:46'), - (13870,515,2,5216,'0.99','2005-07-09 11:54:58','2006-02-15 22:20:46'), - (13871,515,2,5546,'2.99','2005-07-10 02:50:37','2006-02-15 22:20:46'), - (13872,515,2,5697,'4.99','2005-07-10 09:44:44','2006-02-15 22:20:46'), - (13873,515,2,7429,'3.99','2005-07-27 17:24:50','2006-02-15 22:20:46'), - (13874,515,1,8706,'4.99','2005-07-29 17:19:15','2006-02-15 22:20:46'), - (13875,515,1,10159,'4.99','2005-07-31 22:54:30','2006-02-15 22:20:46'), - (13876,515,2,10716,'0.99','2005-08-01 18:53:48','2006-02-15 22:20:46'), - (13877,515,1,11451,'3.99','2005-08-02 20:45:56','2006-02-15 22:20:46'), - (13878,515,2,11572,'4.99','2005-08-17 01:37:55','2006-02-15 22:20:46'), - (13879,515,1,11691,'3.99','2005-08-17 06:51:05','2006-02-15 22:20:47'), - (13880,515,2,11937,'6.99','2005-08-17 16:48:36','2006-02-15 22:20:47'), - (13881,515,2,12416,'2.99','2005-08-18 09:56:48','2006-02-15 22:20:47'), - (13882,515,1,12486,'8.99','2005-08-18 12:42:50','2006-02-15 22:20:47'), - (13883,515,1,12889,'5.99','2005-08-19 03:41:31','2006-02-15 22:20:47'), - (13884,515,2,14072,'4.99','2005-08-20 23:07:10','2006-02-15 22:20:47'), - (13885,515,2,14378,'3.99','2005-08-21 09:50:02','2006-02-15 22:20:47'), - (13886,515,2,14414,'0.99','2005-08-21 11:08:17','2006-02-15 22:20:47'), - (13887,515,2,15274,'4.99','2005-08-22 18:55:52','2006-02-15 22:20:47'), - (13888,516,2,339,'3.99','2005-05-27 03:47:18','2006-02-15 22:20:47'), - (13889,516,1,571,'1.99','2005-05-28 10:17:41','2006-02-15 22:20:47'), - (13890,516,2,1159,'4.99','2005-06-14 22:55:13','2006-02-15 22:20:47'), - (13891,516,1,1200,'1.99','2005-06-15 01:59:51','2006-02-15 22:20:47'), - (13892,516,1,1718,'10.99','2005-06-16 14:52:02','2006-02-15 22:20:47'), - (13893,516,1,2017,'0.99','2005-06-17 12:33:30','2006-02-15 22:20:47'), - (13894,516,2,3068,'0.99','2005-06-20 14:02:22','2006-02-15 22:20:47'), - (13895,516,1,3431,'2.99','2005-06-21 18:46:48','2006-02-15 22:20:48'), - (13896,516,2,5780,'3.99','2005-07-10 13:46:23','2006-02-15 22:20:48'), - (13897,516,2,6677,'6.99','2005-07-12 11:58:14','2006-02-15 22:20:48'), - (13898,516,1,6858,'6.99','2005-07-12 19:53:51','2006-02-15 22:20:48'), - (13899,516,1,7628,'4.99','2005-07-28 00:58:04','2006-02-15 22:20:48'), - (13900,516,1,7882,'4.99','2005-07-28 10:33:42','2006-02-15 22:20:48'), - (13901,516,2,8396,'4.99','2005-07-29 06:07:00','2006-02-15 22:20:48'), - (13902,516,2,8534,'5.99','2005-07-29 10:30:13','2006-02-15 22:20:48'), - (13903,516,2,8585,'2.99','2005-07-29 12:14:18','2006-02-15 22:20:48'), - (13904,516,2,9243,'4.99','2005-07-30 14:06:27','2006-02-15 22:20:48'), - (13905,516,2,11926,'0.99','2005-08-17 16:25:02','2006-02-15 22:20:48'), - (13906,516,2,11939,'1.99','2005-08-17 16:55:57','2006-02-15 22:20:48'), - (13907,516,1,12535,'1.99','2005-08-18 14:05:22','2006-02-15 22:20:48'), - (13908,516,1,13276,'8.99','2005-08-19 17:53:42','2006-02-15 22:20:48'), - (13909,516,1,14932,'0.99','2005-08-22 05:40:39','2006-02-15 22:20:48'), - (13910,516,1,15526,'0.99','2005-08-23 03:44:30','2006-02-15 22:20:48'), - (13911,516,1,15701,'0.99','2005-08-23 10:22:21','2006-02-15 22:20:49'), - (13912,516,1,12130,'5.98','2006-02-14 15:16:03','2006-02-15 22:20:49'), - (13913,516,1,12915,'0.00','2006-02-14 15:16:03','2006-02-15 22:20:49'), - (13914,517,2,850,'4.99','2005-05-30 01:35:12','2006-02-15 22:20:49'), - (13915,517,2,1653,'4.99','2005-06-16 09:34:45','2006-02-15 22:20:49'), - (13916,517,1,1809,'8.99','2005-06-16 21:00:20','2006-02-15 22:20:49'), - (13917,517,1,1850,'4.99','2005-06-17 00:31:35','2006-02-15 22:20:49'), - (13918,517,2,2534,'2.99','2005-06-19 01:38:39','2006-02-15 22:20:49'), - (13919,517,1,3113,'0.99','2005-06-20 17:56:40','2006-02-15 22:20:49'), - (13920,517,2,4094,'2.99','2005-07-07 06:00:21','2006-02-15 22:20:49'), - (13921,517,1,4109,'4.99','2005-07-07 06:39:43','2006-02-15 22:20:49'), - (13922,517,1,4369,'4.99','2005-07-07 20:01:38','2006-02-15 22:20:49'), - (13923,517,2,4374,'4.99','2005-07-07 20:13:58','2006-02-15 22:20:49'), - (13924,517,2,4934,'0.99','2005-07-08 22:18:42','2006-02-15 22:20:49'), - (13925,517,1,4993,'2.99','2005-07-09 00:49:47','2006-02-15 22:20:49'), - (13926,517,1,5206,'7.99','2005-07-09 11:11:01','2006-02-15 22:20:49'), - (13927,517,2,5974,'5.99','2005-07-11 00:10:37','2006-02-15 22:20:50'), - (13928,517,2,6594,'4.99','2005-07-12 07:25:43','2006-02-15 22:20:50'), - (13929,517,2,6903,'0.99','2005-07-12 21:58:15','2006-02-15 22:20:50'), - (13930,517,2,7988,'3.99','2005-07-28 14:37:18','2006-02-15 22:20:50'), - (13931,517,1,10063,'4.99','2005-07-31 19:25:13','2006-02-15 22:20:50'), - (13932,517,2,10358,'4.99','2005-08-01 05:50:07','2006-02-15 22:20:50'), - (13933,517,2,10433,'4.99','2005-08-01 08:45:56','2006-02-15 22:20:50'), - (13934,517,1,11684,'3.99','2005-08-17 06:27:15','2006-02-15 22:20:50'), - (13935,517,2,12705,'0.99','2005-08-18 20:44:14','2006-02-15 22:20:50'), - (13936,517,1,13396,'0.99','2005-08-19 22:06:09','2006-02-15 22:20:50'), - (13937,517,2,14190,'4.99','2005-08-21 03:35:21','2006-02-15 22:20:50'), - (13938,517,1,15559,'5.99','2005-08-23 04:55:05','2006-02-15 22:20:50'), - (13939,518,1,710,'2.99','2005-05-29 03:48:36','2006-02-15 22:20:50'), - (13940,518,2,1552,'5.99','2005-06-16 02:01:37','2006-02-15 22:20:50'), - (13941,518,2,3311,'0.99','2005-06-21 08:05:27','2006-02-15 22:20:50'), - (13942,518,1,3652,'0.99','2005-07-06 07:44:30','2006-02-15 22:20:51'), - (13943,518,2,4029,'7.99','2005-07-07 02:19:44','2006-02-15 22:20:51'), - (13944,518,2,4661,'4.99','2005-07-08 09:55:06','2006-02-15 22:20:51'), - (13945,518,2,4948,'6.99','2005-07-08 22:54:21','2006-02-15 22:20:51'), - (13946,518,1,6652,'2.99','2005-07-12 10:59:38','2006-02-15 22:20:51'), - (13947,518,1,6957,'2.99','2005-07-27 00:00:00','2006-02-15 22:20:51'), - (13948,518,2,7038,'3.99','2005-07-27 03:07:29','2006-02-15 22:20:51'), - (13949,518,2,7154,'4.99','2005-07-27 07:16:17','2006-02-15 22:20:51'), - (13950,518,2,7382,'2.99','2005-07-27 15:43:15','2006-02-15 22:20:51'), - (13951,518,1,7657,'2.99','2005-07-28 02:09:00','2006-02-15 22:20:51'), - (13952,518,2,7839,'6.99','2005-07-28 09:01:13','2006-02-15 22:20:51'), - (13953,518,1,8107,'3.99','2005-07-28 19:03:16','2006-02-15 22:20:51'), - (13954,518,1,8397,'2.99','2005-07-29 06:09:35','2006-02-15 22:20:51'), - (13955,518,1,10751,'5.99','2005-08-01 20:06:10','2006-02-15 22:20:51'), - (13956,518,2,11433,'3.99','2005-08-02 20:13:10','2006-02-15 22:20:51'), - (13957,518,2,12450,'2.99','2005-08-18 11:04:04','2006-02-15 22:20:51'), - (13958,518,2,12681,'2.99','2005-08-18 19:48:06','2006-02-15 22:20:52'), - (13959,518,1,13065,'4.99','2005-08-19 09:48:52','2006-02-15 22:20:52'), - (13960,518,1,13539,'6.99','2005-08-20 03:40:27','2006-02-15 22:20:52'), - (13961,518,1,14088,'6.99','2005-08-20 23:57:24','2006-02-15 22:20:52'), - (13962,518,1,14149,'4.99','2005-08-21 02:22:47','2006-02-15 22:20:52'), - (13963,518,2,14980,'0.99','2005-08-22 07:16:45','2006-02-15 22:20:52'), - (13964,518,2,15434,'4.99','2005-08-23 00:28:16','2006-02-15 22:20:52'), - (13965,519,1,1056,'3.99','2005-05-31 07:48:07','2006-02-15 22:20:52'), - (13966,519,1,1941,'2.99','2005-06-17 07:42:45','2006-02-15 22:20:52'), - (13967,519,2,2505,'8.99','2005-06-18 23:28:27','2006-02-15 22:20:52'), - (13968,519,2,2997,'5.99','2005-06-20 09:23:45','2006-02-15 22:20:52'), - (13969,519,2,4564,'0.99','2005-07-08 05:09:38','2006-02-15 22:20:52'), - (13970,519,2,4773,'2.99','2005-07-08 15:41:39','2006-02-15 22:20:52'), - (13971,519,2,5236,'0.99','2005-07-09 12:56:29','2006-02-15 22:20:52'), - (13972,519,2,5547,'5.99','2005-07-10 02:52:47','2006-02-15 22:20:52'), - (13973,519,2,6063,'0.99','2005-07-11 04:16:51','2006-02-15 22:20:52'), - (13974,519,1,6599,'3.99','2005-07-12 07:41:14','2006-02-15 22:20:53'), - (13975,519,1,9417,'6.99','2005-07-30 20:54:55','2006-02-15 22:20:53'), - (13976,519,2,9441,'4.99','2005-07-30 21:43:28','2006-02-15 22:20:53'), - (13977,519,2,9534,'7.99','2005-07-31 01:18:27','2006-02-15 22:20:53'), - (13978,519,2,9645,'0.99','2005-07-31 05:42:49','2006-02-15 22:20:53'), - (13979,519,2,9886,'7.99','2005-07-31 14:00:13','2006-02-15 22:20:53'), - (13980,519,1,9905,'0.99','2005-07-31 14:37:03','2006-02-15 22:20:53'), - (13981,519,1,10097,'5.99','2005-07-31 20:39:38','2006-02-15 22:20:53'), - (13982,519,2,10697,'4.99','2005-08-01 18:20:23','2006-02-15 22:20:53'), - (13983,519,2,12648,'7.99','2005-08-18 18:30:21','2006-02-15 22:20:53'), - (13984,519,2,12924,'2.99','2005-08-19 04:51:47','2006-02-15 22:20:53'), - (13985,519,1,13647,'7.99','2005-08-20 07:48:07','2006-02-15 22:20:53'), - (13986,519,1,14182,'2.99','2005-08-21 03:17:10','2006-02-15 22:20:53'), - (13987,519,2,15347,'2.99','2005-08-22 21:12:19','2006-02-15 22:20:53'), - (13988,520,1,962,'6.99','2005-05-30 18:45:17','2006-02-15 22:20:53'), - (13989,520,1,1411,'0.99','2005-06-15 17:05:36','2006-02-15 22:20:54'), - (13990,520,2,2174,'6.99','2005-06-18 00:09:01','2006-02-15 22:20:54'), - (13991,520,1,2772,'4.99','2005-06-19 17:59:27','2006-02-15 22:20:54'), - (13992,520,2,3482,'4.99','2005-07-05 23:13:22','2006-02-15 22:20:54'), - (13993,520,1,3499,'7.99','2005-07-06 00:04:20','2006-02-15 22:20:54'), - (13994,520,2,4346,'2.99','2005-07-07 18:58:45','2006-02-15 22:20:54'), - (13995,520,2,5799,'4.99','2005-07-10 14:53:35','2006-02-15 22:20:54'), - (13996,520,1,5802,'10.99','2005-07-10 15:02:17','2006-02-15 22:20:54'), - (13997,520,1,5853,'3.99','2005-07-10 17:45:13','2006-02-15 22:20:54'), - (13998,520,1,6029,'2.99','2005-07-11 02:36:46','2006-02-15 22:20:54'), - (13999,520,2,7198,'5.99','2005-07-27 08:50:07','2006-02-15 22:20:54'), - (14000,520,1,7720,'4.99','2005-07-28 04:41:44','2006-02-15 22:20:54'), - (14001,520,1,7936,'0.99','2005-07-28 12:33:21','2006-02-15 22:20:54'), - (14002,520,1,8294,'2.99','2005-07-29 02:32:41','2006-02-15 22:20:54'), - (14003,520,2,8435,'2.99','2005-07-29 07:20:16','2006-02-15 22:20:54'), - (14004,520,1,9803,'2.99','2005-07-31 11:06:02','2006-02-15 22:20:54'), - (14005,520,1,10072,'0.99','2005-07-31 19:50:37','2006-02-15 22:20:55'), - (14006,520,2,10530,'4.99','2005-08-01 12:01:17','2006-02-15 22:20:55'), - (14007,520,1,11566,'0.99','2005-08-17 01:28:35','2006-02-15 22:20:55'), - (14008,520,1,12517,'4.99','2005-08-18 13:40:20','2006-02-15 22:20:55'), - (14009,520,1,12628,'5.99','2005-08-18 17:40:25','2006-02-15 22:20:55'), - (14010,520,1,12647,'5.99','2005-08-18 18:29:51','2006-02-15 22:20:55'), - (14011,520,1,13311,'0.99','2005-08-19 19:07:09','2006-02-15 22:20:55'), - (14012,520,2,13438,'2.99','2005-08-19 23:38:02','2006-02-15 22:20:55'), - (14013,520,2,13659,'2.99','2005-08-20 08:05:52','2006-02-15 22:20:55'), - (14014,520,2,13746,'5.99','2005-08-20 10:55:28','2006-02-15 22:20:55'), - (14015,520,1,14372,'4.99','2005-08-21 09:39:50','2006-02-15 22:20:55'), - (14016,520,1,14509,'0.99','2005-08-21 14:39:58','2006-02-15 22:20:55'), - (14017,520,1,15465,'0.99','2005-08-23 01:16:33','2006-02-15 22:20:55'), - (14018,520,2,15492,'2.99','2005-08-23 02:13:46','2006-02-15 22:20:55'), - (14019,520,1,15948,'7.99','2005-08-23 18:59:33','2006-02-15 22:20:55'), - (14020,521,1,1761,'0.99','2005-06-16 17:49:57','2006-02-15 22:20:55'), - (14021,521,2,2053,'0.99','2005-06-17 15:19:34','2006-02-15 22:20:56'), - (14022,521,2,4284,'0.99','2005-07-07 15:31:57','2006-02-15 22:20:56'), - (14023,521,2,4439,'2.99','2005-07-07 22:57:30','2006-02-15 22:20:56'), - (14024,521,1,5276,'2.99','2005-07-09 14:35:13','2006-02-15 22:20:56'), - (14025,521,2,5458,'4.99','2005-07-09 22:35:49','2006-02-15 22:20:56'), - (14026,521,2,5580,'6.99','2005-07-10 04:05:49','2006-02-15 22:20:56'), - (14027,521,2,5686,'0.99','2005-07-10 09:06:03','2006-02-15 22:20:56'), - (14028,521,1,7478,'1.99','2005-07-27 19:16:02','2006-02-15 22:20:56'), - (14029,521,1,9556,'7.99','2005-07-31 02:13:30','2006-02-15 22:20:56'), - (14030,521,2,9937,'1.99','2005-07-31 15:28:10','2006-02-15 22:20:56'), - (14031,521,1,10587,'2.99','2005-08-01 14:03:38','2006-02-15 22:20:56'), - (14032,521,2,11625,'2.99','2005-08-17 04:18:52','2006-02-15 22:20:56'), - (14033,521,1,11967,'3.99','2005-08-17 17:45:00','2006-02-15 22:20:56'), - (14034,521,2,12082,'4.99','2005-08-17 22:13:15','2006-02-15 22:20:56'), - (14035,521,1,12530,'4.99','2005-08-18 13:54:48','2006-02-15 22:20:56'), - (14036,521,1,13527,'2.99','2005-08-20 03:00:47','2006-02-15 22:20:57'), - (14037,521,1,14423,'0.99','2005-08-21 11:23:59','2006-02-15 22:20:57'), - (14038,521,2,14551,'3.99','2005-08-21 15:57:25','2006-02-15 22:20:57'), - (14039,521,2,14738,'5.99','2005-08-21 22:29:13','2006-02-15 22:20:57'), - (14040,521,2,15170,'4.99','2005-08-22 15:22:15','2006-02-15 22:20:57'), - (14041,521,2,15329,'2.99','2005-08-22 20:32:39','2006-02-15 22:20:57'), - (14042,521,2,11672,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:57'), - (14043,522,2,426,'5.99','2005-05-27 15:56:57','2006-02-15 22:20:57'), - (14044,522,1,1289,'3.99','2005-06-15 08:44:09','2006-02-15 22:20:57'), - (14045,522,2,3102,'8.99','2005-06-20 16:55:55','2006-02-15 22:20:57'), - (14046,522,1,3188,'2.99','2005-06-20 23:10:27','2006-02-15 22:20:57'), - (14047,522,2,3191,'0.99','2005-06-20 23:46:39','2006-02-15 22:20:57'), - (14048,522,1,3594,'0.99','2005-07-06 04:42:47','2006-02-15 22:20:57'), - (14049,522,2,4078,'4.99','2005-07-07 05:05:05','2006-02-15 22:20:57'), - (14050,522,2,4563,'9.99','2005-07-08 05:08:55','2006-02-15 22:20:57'), - (14051,522,2,4701,'4.99','2005-07-08 11:38:48','2006-02-15 22:20:57'), - (14052,522,2,5271,'6.99','2005-07-09 14:25:01','2006-02-15 22:20:58'), - (14053,522,2,5514,'6.99','2005-07-10 01:09:42','2006-02-15 22:20:58'), - (14054,522,2,5532,'4.99','2005-07-10 02:17:31','2006-02-15 22:20:58'), - (14055,522,2,5936,'0.99','2005-07-10 22:14:30','2006-02-15 22:20:58'), - (14056,522,2,7262,'4.99','2005-07-27 11:15:36','2006-02-15 22:20:58'), - (14057,522,1,7955,'2.99','2005-07-28 13:31:36','2006-02-15 22:20:58'), - (14058,522,2,8181,'4.99','2005-07-28 22:18:38','2006-02-15 22:20:58'), - (14059,522,1,8642,'6.99','2005-07-29 14:38:17','2006-02-15 22:20:58'), - (14060,522,1,8966,'2.99','2005-07-30 03:54:12','2006-02-15 22:20:58'), - (14061,522,1,9047,'7.99','2005-07-30 06:56:33','2006-02-15 22:20:58'), - (14062,522,2,9227,'7.99','2005-07-30 13:36:13','2006-02-15 22:20:58'), - (14063,522,1,9335,'4.99','2005-07-30 18:00:53','2006-02-15 22:20:58'), - (14064,522,1,9412,'5.99','2005-07-30 20:44:10','2006-02-15 22:20:58'), - (14065,522,2,9533,'5.99','2005-07-31 01:18:10','2006-02-15 22:20:58'), - (14066,522,2,10223,'0.99','2005-08-01 01:23:15','2006-02-15 22:20:58'), - (14067,522,1,10411,'3.99','2005-08-01 07:56:32','2006-02-15 22:20:59'), - (14068,522,1,10675,'7.99','2005-08-01 17:11:57','2006-02-15 22:20:59'), - (14069,522,2,10821,'5.99','2005-08-01 22:54:27','2006-02-15 22:20:59'), - (14070,522,2,11696,'2.99','2005-08-17 07:01:09','2006-02-15 22:20:59'), - (14071,522,2,11830,'1.99','2005-08-17 12:53:15','2006-02-15 22:20:59'), - (14072,522,2,12494,'6.99','2005-08-18 12:53:49','2006-02-15 22:20:59'), - (14073,522,2,13605,'6.99','2005-08-20 06:06:17','2006-02-15 22:20:59'), - (14074,522,2,14467,'2.99','2005-08-21 13:03:33','2006-02-15 22:20:59'), - (14075,522,1,15921,'6.99','2005-08-23 18:06:54','2006-02-15 22:20:59'), - (14076,523,1,42,'4.99','2005-05-25 05:24:58','2006-02-15 22:20:59'), - (14077,523,2,664,'0.99','2005-05-28 21:31:08','2006-02-15 22:20:59'), - (14078,523,2,1729,'6.99','2005-06-16 15:29:47','2006-02-15 22:20:59'), - (14079,523,1,2447,'8.99','2005-06-18 19:10:55','2006-02-15 22:20:59'), - (14080,523,1,2583,'7.99','2005-06-19 05:01:40','2006-02-15 22:20:59'), - (14081,523,2,2669,'0.99','2005-06-19 11:28:52','2006-02-15 22:20:59'), - (14082,523,1,4605,'4.99','2005-07-08 07:00:14','2006-02-15 22:20:59'), - (14083,523,2,5155,'2.99','2005-07-09 08:46:54','2006-02-15 22:21:00'), - (14084,523,1,5287,'6.99','2005-07-09 15:11:54','2006-02-15 22:21:00'), - (14085,523,2,5932,'2.99','2005-07-10 22:05:15','2006-02-15 22:21:00'), - (14086,523,2,6675,'4.99','2005-07-12 11:53:06','2006-02-15 22:21:00'), - (14087,523,2,7642,'1.99','2005-07-28 01:16:51','2006-02-15 22:21:00'), - (14088,523,2,8141,'0.99','2005-07-28 20:21:19','2006-02-15 22:21:00'), - (14089,523,1,8372,'5.99','2005-07-29 05:18:08','2006-02-15 22:21:00'), - (14090,523,1,9071,'2.99','2005-07-30 07:40:58','2006-02-15 22:21:00'), - (14091,523,2,9667,'6.99','2005-07-31 06:23:52','2006-02-15 22:21:00'), - (14092,523,2,10470,'1.99','2005-08-01 09:52:26','2006-02-15 22:21:00'), - (14093,523,1,11827,'4.99','2005-08-17 12:44:27','2006-02-15 22:21:00'), - (14094,523,1,12288,'2.99','2005-08-18 05:01:20','2006-02-15 22:21:00'), - (14095,523,1,13133,'2.99','2005-08-19 12:11:03','2006-02-15 22:21:00'), - (14096,523,1,14766,'4.99','2005-08-21 23:42:20','2006-02-15 22:21:00'), - (14097,523,1,15040,'2.99','2005-08-22 09:41:09','2006-02-15 22:21:00'), - (14098,524,2,118,'0.99','2005-05-25 19:31:18','2006-02-15 22:21:00'), - (14099,524,1,982,'4.99','2005-05-30 22:15:24','2006-02-15 22:21:01'), - (14100,524,1,1306,'1.99','2005-06-15 09:59:24','2006-02-15 22:21:01'), - (14101,524,2,1651,'4.99','2005-06-16 09:24:38','2006-02-15 22:21:01'), - (14102,524,2,3454,'2.99','2005-06-21 21:12:13','2006-02-15 22:21:01'), - (14103,524,1,4366,'5.99','2005-07-07 19:48:36','2006-02-15 22:21:01'), - (14104,524,2,5037,'4.99','2005-07-09 02:59:10','2006-02-15 22:21:01'), - (14105,524,2,6161,'4.99','2005-07-11 10:11:54','2006-02-15 22:21:01'), - (14106,524,1,6240,'6.99','2005-07-11 14:32:41','2006-02-15 22:21:01'), - (14107,524,2,6745,'4.99','2005-07-12 14:30:51','2006-02-15 22:21:01'), - (14108,524,2,7014,'8.99','2005-07-27 02:14:40','2006-02-15 22:21:01'), - (14109,524,1,7040,'4.99','2005-07-27 03:17:19','2006-02-15 22:21:01'), - (14110,524,1,8507,'6.99','2005-07-29 09:29:44','2006-02-15 22:21:01'), - (14111,524,2,13626,'2.99','2005-08-20 06:55:24','2006-02-15 22:21:01'), - (14112,524,2,14046,'4.99','2005-08-20 21:53:21','2006-02-15 22:21:01'), - (14113,524,1,14178,'2.99','2005-08-21 03:13:45','2006-02-15 22:21:01'), - (14114,524,1,14366,'2.99','2005-08-21 09:31:39','2006-02-15 22:21:02'), - (14115,524,2,14680,'1.99','2005-08-21 20:19:52','2006-02-15 22:21:02'), - (14116,524,2,15206,'6.99','2005-08-22 16:33:39','2006-02-15 22:21:02'), - (14117,525,1,437,'5.99','2005-05-27 17:47:22','2006-02-15 22:21:02'), - (14118,525,2,1772,'2.99','2005-06-16 18:12:54','2006-02-15 22:21:02'), - (14119,525,1,3993,'6.99','2005-07-06 23:37:06','2006-02-15 22:21:02'), - (14120,525,1,5841,'2.99','2005-07-10 17:11:31','2006-02-15 22:21:02'), - (14121,525,2,6098,'7.99','2005-07-11 06:23:28','2006-02-15 22:21:02'), - (14122,525,2,6388,'6.99','2005-07-11 22:17:16','2006-02-15 22:21:02'), - (14123,525,1,6689,'1.99','2005-07-12 12:22:13','2006-02-15 22:21:02'), - (14124,525,2,7337,'4.99','2005-07-27 14:12:04','2006-02-15 22:21:02'), - (14125,525,2,7591,'4.99','2005-07-27 23:25:54','2006-02-15 22:21:02'), - (14126,525,1,8007,'0.99','2005-07-28 15:22:27','2006-02-15 22:21:02'), - (14127,525,1,8960,'4.99','2005-07-30 03:36:31','2006-02-15 22:21:02'), - (14128,525,2,9507,'5.99','2005-07-31 00:22:29','2006-02-15 22:21:02'), - (14129,525,1,9702,'0.99','2005-07-31 07:34:07','2006-02-15 22:21:02'), - (14130,525,1,10496,'2.99','2005-08-01 10:53:16','2006-02-15 22:21:03'), - (14131,525,2,11406,'2.99','2005-08-02 19:16:10','2006-02-15 22:21:03'), - (14132,525,1,11660,'1.99','2005-08-17 05:22:42','2006-02-15 22:21:03'), - (14133,525,1,15159,'0.99','2005-08-22 14:32:25','2006-02-15 22:21:03'), - (14134,525,2,15623,'3.99','2005-08-23 07:23:29','2006-02-15 22:21:03'), - (14135,525,1,14954,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:03'), - (14136,526,1,495,'4.99','2005-05-28 00:40:48','2006-02-15 22:21:03'), - (14137,526,2,679,'4.99','2005-05-28 23:24:57','2006-02-15 22:21:03'), - (14138,526,2,1015,'2.99','2005-05-31 02:44:57','2006-02-15 22:21:03'), - (14139,526,1,1255,'4.99','2005-06-15 06:13:45','2006-02-15 22:21:03'), - (14140,526,2,1848,'0.99','2005-06-17 00:07:07','2006-02-15 22:21:03'), - (14141,526,2,1865,'7.99','2005-06-17 01:49:36','2006-02-15 22:21:03'), - (14142,526,2,1972,'2.99','2005-06-17 09:25:49','2006-02-15 22:21:03'), - (14143,526,1,1981,'2.99','2005-06-17 10:03:34','2006-02-15 22:21:03'), - (14144,526,2,2398,'4.99','2005-06-18 15:56:53','2006-02-15 22:21:03'), - (14145,526,1,2828,'2.99','2005-06-19 20:51:33','2006-02-15 22:21:04'), - (14146,526,2,2932,'6.99','2005-06-20 04:51:19','2006-02-15 22:21:04'), - (14147,526,1,3339,'6.99','2005-06-21 10:37:11','2006-02-15 22:21:04'), - (14148,526,1,3619,'1.99','2005-07-06 05:59:44','2006-02-15 22:21:04'), - (14149,526,2,3905,'5.99','2005-07-06 19:33:34','2006-02-15 22:21:04'), - (14150,526,1,4423,'6.99','2005-07-07 22:11:28','2006-02-15 22:21:04'), - (14151,526,2,5056,'2.99','2005-07-09 04:13:45','2006-02-15 22:21:04'), - (14152,526,2,5121,'3.99','2005-07-09 07:18:31','2006-02-15 22:21:04'), - (14153,526,1,6316,'7.99','2005-07-11 18:44:52','2006-02-15 22:21:04'), - (14154,526,1,6404,'4.99','2005-07-11 22:49:50','2006-02-15 22:21:04'), - (14155,526,2,6650,'2.99','2005-07-12 10:57:10','2006-02-15 22:21:04'), - (14156,526,1,6671,'3.99','2005-07-12 11:48:48','2006-02-15 22:21:04'), - (14157,526,2,7270,'7.99','2005-07-27 11:29:02','2006-02-15 22:21:04'), - (14158,526,2,7343,'0.99','2005-07-27 14:27:13','2006-02-15 22:21:04'), - (14159,526,2,7399,'1.99','2005-07-27 16:16:02','2006-02-15 22:21:04'), - (14160,526,2,7543,'5.99','2005-07-27 21:44:28','2006-02-15 22:21:04'), - (14161,526,2,7883,'2.99','2005-07-28 10:37:20','2006-02-15 22:21:05'), - (14162,526,1,8053,'4.99','2005-07-28 16:59:41','2006-02-15 22:21:05'), - (14163,526,1,8232,'4.99','2005-07-29 00:14:37','2006-02-15 22:21:05'), - (14164,526,1,8441,'2.99','2005-07-29 07:33:05','2006-02-15 22:21:05'), - (14165,526,2,9577,'6.99','2005-07-31 02:53:33','2006-02-15 22:21:05'), - (14166,526,2,10020,'4.99','2005-07-31 18:21:08','2006-02-15 22:21:05'), - (14167,526,2,10199,'2.99','2005-08-01 00:38:55','2006-02-15 22:21:05'), - (14168,526,2,11046,'4.99','2005-08-02 06:08:34','2006-02-15 22:21:05'), - (14169,526,1,11503,'10.99','2005-08-16 23:10:34','2006-02-15 22:21:05'), - (14170,526,1,11612,'2.99','2005-08-17 03:48:51','2006-02-15 22:21:05'), - (14171,526,2,11702,'4.99','2005-08-17 07:18:56','2006-02-15 22:21:05'), - (14172,526,1,12607,'0.99','2005-08-18 17:03:49','2006-02-15 22:21:05'), - (14173,526,2,13224,'8.99','2005-08-19 15:52:13','2006-02-15 22:21:05'), - (14174,526,2,13580,'0.99','2005-08-20 05:23:34','2006-02-15 22:21:05'), - (14175,526,1,13617,'8.99','2005-08-20 06:35:30','2006-02-15 22:21:05'), - (14176,526,2,14487,'6.99','2005-08-21 13:53:33','2006-02-15 22:21:06'), - (14177,526,1,14590,'7.99','2005-08-21 17:29:10','2006-02-15 22:21:06'), - (14178,526,1,15168,'2.99','2005-08-22 15:14:20','2006-02-15 22:21:06'), - (14179,526,1,15395,'4.99','2005-08-22 23:06:25','2006-02-15 22:21:06'), - (14180,526,1,16043,'9.99','2005-08-23 22:21:03','2006-02-15 22:21:06'), - (14181,527,1,1398,'2.99','2005-06-15 16:28:42','2006-02-15 22:21:06'), - (14182,527,1,2422,'0.99','2005-06-18 17:28:57','2006-02-15 22:21:06'), - (14183,527,2,2496,'0.99','2005-06-18 22:20:11','2006-02-15 22:21:06'), - (14184,527,1,2539,'2.99','2005-06-19 01:58:39','2006-02-15 22:21:06'), - (14185,527,1,4888,'0.99','2005-07-08 20:04:27','2006-02-15 22:21:06'), - (14186,527,1,5365,'0.99','2005-07-09 18:27:00','2006-02-15 22:21:06'), - (14187,527,2,6003,'3.99','2005-07-11 01:28:33','2006-02-15 22:21:06'), - (14188,527,2,6011,'4.99','2005-07-11 01:54:48','2006-02-15 22:21:06'), - (14189,527,1,6050,'2.99','2005-07-11 03:34:29','2006-02-15 22:21:06'), - (14190,527,2,6975,'1.99','2005-07-27 00:39:54','2006-02-15 22:21:06'), - (14191,527,1,7506,'8.99','2005-07-27 20:28:34','2006-02-15 22:21:06'), - (14192,527,1,8854,'0.99','2005-07-29 23:40:07','2006-02-15 22:21:07'), - (14193,527,2,9750,'0.99','2005-07-31 09:19:46','2006-02-15 22:21:07'), - (14194,527,2,10486,'3.99','2005-08-01 10:23:43','2006-02-15 22:21:07'), - (14195,527,2,10613,'0.99','2005-08-01 14:56:14','2006-02-15 22:21:07'), - (14196,527,1,11013,'5.99','2005-08-02 05:10:54','2006-02-15 22:21:07'), - (14197,527,1,11150,'2.99','2005-08-02 09:51:46','2006-02-15 22:21:07'), - (14198,527,1,11624,'0.99','2005-08-17 04:17:42','2006-02-15 22:21:07'), - (14199,527,1,12136,'7.99','2005-08-17 23:51:30','2006-02-15 22:21:07'), - (14200,527,1,12513,'6.99','2005-08-18 13:31:45','2006-02-15 22:21:07'), - (14201,527,1,14352,'6.99','2005-08-21 09:06:29','2006-02-15 22:21:07'), - (14202,527,1,15144,'2.99','2005-08-22 13:49:18','2006-02-15 22:21:07'), - (14203,527,1,15552,'3.99','2005-08-23 04:33:23','2006-02-15 22:21:07'), - (14204,527,1,14267,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:07'), - (14205,528,1,204,'0.99','2005-05-26 07:30:37','2006-02-15 22:21:07'), - (14206,528,2,472,'0.99','2005-05-27 21:36:15','2006-02-15 22:21:07'), - (14207,528,1,533,'5.99','2005-05-28 06:14:46','2006-02-15 22:21:08'), - (14208,528,2,695,'3.99','2005-05-29 01:50:53','2006-02-15 22:21:08'), - (14209,528,2,793,'5.99','2005-05-29 16:44:08','2006-02-15 22:21:08'), - (14210,528,2,1875,'2.99','2005-06-17 02:45:10','2006-02-15 22:21:08'), - (14211,528,1,2019,'4.99','2005-06-17 12:38:44','2006-02-15 22:21:08'), - (14212,528,2,3654,'4.99','2005-07-06 07:45:31','2006-02-15 22:21:08'), - (14213,528,1,3664,'0.99','2005-07-06 08:15:57','2006-02-15 22:21:08'), - (14214,528,2,4050,'9.99','2005-07-07 03:35:33','2006-02-15 22:21:08'), - (14215,528,1,4593,'5.99','2005-07-08 06:38:12','2006-02-15 22:21:08'), - (14216,528,2,5215,'3.99','2005-07-09 11:47:58','2006-02-15 22:21:08'), - (14217,528,2,6561,'0.99','2005-07-12 05:24:02','2006-02-15 22:21:08'), - (14218,528,1,7569,'7.99','2005-07-27 22:38:53','2006-02-15 22:21:08'), - (14219,528,2,8112,'4.99','2005-07-28 19:11:07','2006-02-15 22:21:08'), - (14220,528,1,8727,'3.99','2005-07-29 18:09:57','2006-02-15 22:21:08'), - (14221,528,2,9488,'8.99','2005-07-30 23:42:42','2006-02-15 22:21:08'), - (14222,528,1,10084,'3.99','2005-07-31 20:11:29','2006-02-15 22:21:08'), - (14223,528,1,10673,'0.99','2005-08-01 17:11:51','2006-02-15 22:21:09'), - (14224,528,1,10880,'2.99','2005-08-02 00:34:12','2006-02-15 22:21:09'), - (14225,528,1,12818,'3.99','2005-08-19 01:04:59','2006-02-15 22:21:09'), - (14226,528,2,13518,'2.99','2005-08-20 02:36:17','2006-02-15 22:21:09'), - (14227,528,1,13600,'7.99','2005-08-20 06:00:25','2006-02-15 22:21:09'), - (14228,528,2,14148,'2.99','2005-08-21 02:17:49','2006-02-15 22:21:09'), - (14229,528,2,15880,'6.99','2005-08-23 16:43:54','2006-02-15 22:21:09'), - (14230,529,1,453,'2.99','2005-05-27 19:31:16','2006-02-15 22:21:09'), - (14231,529,1,1234,'1.99','2005-06-15 04:21:52','2006-02-15 22:21:09'), - (14232,529,2,1686,'0.99','2005-06-16 12:08:20','2006-02-15 22:21:09'), - (14233,529,2,3354,'0.99','2005-06-21 11:29:49','2006-02-15 22:21:09'), - (14234,529,2,4045,'0.99','2005-07-07 03:26:14','2006-02-15 22:21:09'), - (14235,529,2,4254,'0.99','2005-07-07 14:13:52','2006-02-15 22:21:09'), - (14236,529,2,4444,'5.99','2005-07-07 23:07:44','2006-02-15 22:21:09'), - (14237,529,1,4553,'0.99','2005-07-08 04:43:41','2006-02-15 22:21:09'), - (14238,529,1,5993,'4.99','2005-07-11 01:06:41','2006-02-15 22:21:10'), - (14239,529,2,6538,'6.99','2005-07-12 04:50:26','2006-02-15 22:21:10'), - (14240,529,2,6541,'5.99','2005-07-12 04:53:41','2006-02-15 22:21:10'), - (14241,529,1,6908,'7.99','2005-07-12 22:08:46','2006-02-15 22:21:10'), - (14242,529,1,7128,'3.99','2005-07-27 06:14:36','2006-02-15 22:21:10'), - (14243,529,2,8708,'2.99','2005-07-29 17:24:13','2006-02-15 22:21:10'), - (14244,529,1,8979,'5.99','2005-07-30 04:20:25','2006-02-15 22:21:10'), - (14245,529,2,9310,'4.99','2005-07-30 16:57:09','2006-02-15 22:21:10'), - (14246,529,2,9375,'0.99','2005-07-30 19:10:17','2006-02-15 22:21:10'), - (14247,529,2,10361,'10.99','2005-08-01 05:53:49','2006-02-15 22:21:10'), - (14248,529,1,11862,'2.99','2005-08-17 13:54:53','2006-02-15 22:21:10'), - (14249,529,2,12356,'2.99','2005-08-18 07:37:05','2006-02-15 22:21:10'), - (14250,529,1,12622,'3.99','2005-08-18 17:34:11','2006-02-15 22:21:10'), - (14251,529,1,13011,'4.99','2005-08-19 07:53:58','2006-02-15 22:21:10'), - (14252,529,2,13132,'3.99','2005-08-19 12:10:57','2006-02-15 22:21:10'), - (14253,529,1,13797,'2.99','2005-08-20 12:33:36','2006-02-15 22:21:11'), - (14254,529,2,13946,'9.99','2005-08-20 17:44:32','2006-02-15 22:21:11'), - (14255,529,2,14449,'4.99','2005-08-21 12:13:18','2006-02-15 22:21:11'), - (14256,529,2,14764,'0.99','2005-08-21 23:37:47','2006-02-15 22:21:11'), - (14257,529,1,14970,'5.99','2005-08-22 06:49:29','2006-02-15 22:21:11'), - (14258,529,2,15305,'2.99','2005-08-22 19:46:05','2006-02-15 22:21:11'), - (14259,530,1,851,'0.99','2005-05-30 01:35:15','2006-02-15 22:21:11'), - (14260,530,2,1273,'1.99','2005-06-15 07:52:35','2006-02-15 22:21:11'), - (14261,530,1,1516,'0.99','2005-06-15 23:11:10','2006-02-15 22:21:11'), - (14262,530,1,2158,'2.99','2005-06-17 23:36:27','2006-02-15 22:21:11'), - (14263,530,2,3669,'2.99','2005-07-06 08:38:29','2006-02-15 22:21:11'), - (14264,530,2,3887,'4.99','2005-07-06 18:46:34','2006-02-15 22:21:11'), - (14265,530,2,5663,'0.99','2005-07-10 08:01:33','2006-02-15 22:21:11'), - (14266,530,1,7031,'3.99','2005-07-27 03:02:07','2006-02-15 22:21:11'), - (14267,530,2,7075,'1.99','2005-07-27 04:11:40','2006-02-15 22:21:11'), - (14268,530,1,7218,'4.99','2005-07-27 09:34:24','2006-02-15 22:21:11'), - (14269,530,2,8208,'4.99','2005-07-28 23:26:35','2006-02-15 22:21:12'), - (14270,530,1,8736,'0.99','2005-07-29 18:31:15','2006-02-15 22:21:12'), - (14271,530,1,9914,'4.99','2005-07-31 14:51:19','2006-02-15 22:21:12'), - (14272,530,2,10211,'3.99','2005-08-01 01:01:16','2006-02-15 22:21:12'), - (14273,530,2,10504,'4.99','2005-08-01 11:10:55','2006-02-15 22:21:12'), - (14274,530,1,11326,'0.99','2005-08-02 16:34:29','2006-02-15 22:21:12'), - (14275,530,1,12220,'4.99','2005-08-18 02:50:02','2006-02-15 22:21:12'), - (14276,530,1,12387,'2.99','2005-08-18 08:46:24','2006-02-15 22:21:12'), - (14277,530,1,12649,'4.99','2005-08-18 18:31:47','2006-02-15 22:21:12'), - (14278,530,1,13998,'5.99','2005-08-20 19:52:38','2006-02-15 22:21:12'), - (14279,530,2,14707,'5.99','2005-08-21 21:06:29','2006-02-15 22:21:12'), - (14280,530,2,15066,'0.99','2005-08-22 10:49:06','2006-02-15 22:21:12'), - (14281,530,1,13561,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:12'), - (14282,531,1,233,'4.99','2005-05-26 11:43:44','2006-02-15 22:21:12'), - (14283,531,1,681,'2.99','2005-05-28 23:39:44','2006-02-15 22:21:12'), - (14284,531,2,2972,'2.99','2005-06-20 07:57:54','2006-02-15 22:21:13'), - (14285,531,2,3921,'5.99','2005-07-06 20:29:48','2006-02-15 22:21:13'), - (14286,531,1,5587,'5.99','2005-07-10 04:17:25','2006-02-15 22:21:13'), - (14287,531,2,5850,'0.99','2005-07-10 17:36:27','2006-02-15 22:21:13'), - (14288,531,2,5904,'4.99','2005-07-10 20:39:44','2006-02-15 22:21:13'), - (14289,531,1,6756,'4.99','2005-07-12 15:08:28','2006-02-15 22:21:13'), - (14290,531,1,6876,'4.99','2005-07-12 20:32:50','2006-02-15 22:21:13'), - (14291,531,2,7204,'2.99','2005-07-27 09:02:31','2006-02-15 22:21:13'), - (14292,531,1,7391,'6.99','2005-07-27 16:00:00','2006-02-15 22:21:13'), - (14293,531,2,7444,'2.99','2005-07-27 17:49:16','2006-02-15 22:21:13'), - (14294,531,2,7753,'6.99','2005-07-28 06:09:19','2006-02-15 22:21:13'), - (14295,531,2,8359,'5.99','2005-07-29 05:02:12','2006-02-15 22:21:13'), - (14296,531,2,8860,'4.99','2005-07-29 23:45:57','2006-02-15 22:21:13'), - (14297,531,2,8943,'0.99','2005-07-30 03:06:48','2006-02-15 22:21:13'), - (14298,531,2,9107,'4.99','2005-07-30 08:52:45','2006-02-15 22:21:13'), - (14299,531,2,10920,'4.99','2005-08-02 02:14:10','2006-02-15 22:21:14'), - (14300,531,1,10941,'5.99','2005-08-02 03:11:33','2006-02-15 22:21:14'), - (14301,531,2,11026,'4.99','2005-08-02 05:46:05','2006-02-15 22:21:14'), - (14302,531,1,11265,'10.99','2005-08-02 14:05:42','2006-02-15 22:21:14'), - (14303,531,1,11666,'2.99','2005-08-17 05:45:10','2006-02-15 22:21:14'), - (14304,531,1,12923,'2.99','2005-08-19 04:50:20','2006-02-15 22:21:14'), - (14305,531,2,13300,'8.99','2005-08-19 18:46:56','2006-02-15 22:21:14'), - (14306,531,2,15360,'0.99','2005-08-22 21:36:51','2006-02-15 22:21:14'), - (14307,532,1,43,'2.99','2005-05-25 05:39:25','2006-02-15 22:21:14'), - (14308,532,1,1694,'4.99','2005-06-16 12:40:23','2006-02-15 22:21:14'), - (14309,532,2,2821,'3.99','2005-06-19 20:26:52','2006-02-15 22:21:14'), - (14310,532,1,4336,'2.99','2005-07-07 18:34:36','2006-02-15 22:21:14'), - (14311,532,2,4962,'4.99','2005-07-08 23:36:13','2006-02-15 22:21:14'), - (14312,532,2,5190,'2.99','2005-07-09 10:25:24','2006-02-15 22:21:14'), - (14313,532,1,5253,'7.99','2005-07-09 13:41:17','2006-02-15 22:21:14'), - (14314,532,2,5278,'4.99','2005-07-09 14:44:23','2006-02-15 22:21:14'), - (14315,532,2,5805,'8.99','2005-07-10 15:08:41','2006-02-15 22:21:15'), - (14316,532,1,5887,'2.99','2005-07-10 19:45:47','2006-02-15 22:21:15'), - (14317,532,2,6345,'7.99','2005-07-11 20:05:18','2006-02-15 22:21:15'), - (14318,532,2,6598,'4.99','2005-07-12 07:38:25','2006-02-15 22:21:15'), - (14319,532,1,6730,'3.99','2005-07-12 13:58:25','2006-02-15 22:21:15'), - (14320,532,1,7192,'4.99','2005-07-27 08:36:55','2006-02-15 22:21:15'), - (14321,532,2,7572,'2.99','2005-07-27 22:44:29','2006-02-15 22:21:15'), - (14322,532,1,8273,'5.99','2005-07-29 01:33:16','2006-02-15 22:21:15'), - (14323,532,1,9843,'2.99','2005-07-31 12:25:28','2006-02-15 22:21:15'), - (14324,532,2,10286,'6.99','2005-08-01 03:35:58','2006-02-15 22:21:15'), - (14325,532,2,10712,'5.99','2005-08-01 18:47:56','2006-02-15 22:21:15'), - (14326,532,1,10945,'5.99','2005-08-02 03:20:23','2006-02-15 22:21:15'), - (14327,532,2,11251,'2.99','2005-08-02 13:40:49','2006-02-15 22:21:15'), - (14328,532,2,11318,'4.99','2005-08-02 16:09:11','2006-02-15 22:21:15'), - (14329,532,2,12061,'3.99','2005-08-17 21:13:35','2006-02-15 22:21:15'), - (14330,532,2,12295,'5.99','2005-08-18 05:15:46','2006-02-15 22:21:16'), - (14331,532,2,13038,'4.99','2005-08-19 08:55:16','2006-02-15 22:21:16'), - (14332,532,1,13192,'8.99','2005-08-19 14:30:06','2006-02-15 22:21:16'), - (14333,532,1,13254,'4.99','2005-08-19 16:54:01','2006-02-15 22:21:16'), - (14334,532,1,13908,'4.99','2005-08-20 16:21:40','2006-02-15 22:21:16'), - (14335,532,2,15180,'0.99','2005-08-22 15:42:57','2006-02-15 22:21:16'), - (14336,532,2,15414,'1.99','2005-08-22 23:43:54','2006-02-15 22:21:16'), - (14337,532,1,16014,'5.99','2005-08-23 21:18:31','2006-02-15 22:21:16'), - (14338,532,1,14616,'0.99','2006-02-14 15:16:03','2006-02-15 22:21:16'), - (14339,533,1,173,'0.99','2005-05-26 03:42:10','2006-02-15 22:21:16'), - (14340,533,2,190,'1.99','2005-05-26 06:11:28','2006-02-15 22:21:16'), - (14341,533,1,615,'5.99','2005-05-28 15:35:52','2006-02-15 22:21:16'), - (14342,533,1,1421,'5.99','2005-06-15 17:57:04','2006-02-15 22:21:16'), - (14343,533,1,1652,'0.99','2005-06-16 09:31:37','2006-02-15 22:21:16'), - (14344,533,1,1859,'0.99','2005-06-17 01:13:38','2006-02-15 22:21:16'), - (14345,533,1,1954,'2.99','2005-06-17 08:37:55','2006-02-15 22:21:17'), - (14346,533,2,2770,'6.99','2005-06-19 17:54:22','2006-02-15 22:21:17'), - (14347,533,1,2956,'0.99','2005-06-20 06:47:23','2006-02-15 22:21:17'), - (14348,533,1,4112,'8.99','2005-07-07 06:49:09','2006-02-15 22:21:17'), - (14349,533,1,4788,'4.99','2005-07-08 16:17:35','2006-02-15 22:21:17'), - (14350,533,2,6781,'2.99','2005-07-12 16:21:47','2006-02-15 22:21:17'), - (14351,533,2,6834,'0.99','2005-07-12 18:53:37','2006-02-15 22:21:17'), - (14352,533,2,6837,'9.99','2005-07-12 18:59:45','2006-02-15 22:21:17'), - (14353,533,2,7555,'4.99','2005-07-27 22:17:05','2006-02-15 22:21:17'), - (14354,533,1,8093,'8.99','2005-07-28 18:29:16','2006-02-15 22:21:17'), - (14355,533,2,8104,'2.99','2005-07-28 18:59:36','2006-02-15 22:21:17'), - (14356,533,2,8250,'2.99','2005-07-29 00:49:15','2006-02-15 22:21:17'), - (14357,533,1,8471,'2.99','2005-07-29 08:32:11','2006-02-15 22:21:17'), - (14358,533,1,8676,'1.99','2005-07-29 15:59:06','2006-02-15 22:21:17'), - (14359,533,2,8786,'1.99','2005-07-29 20:39:49','2006-02-15 22:21:17'), - (14360,533,2,10090,'3.99','2005-07-31 20:22:01','2006-02-15 22:21:17'), - (14361,533,1,10380,'2.99','2005-08-01 06:34:36','2006-02-15 22:21:18'), - (14362,533,1,10614,'6.99','2005-08-01 14:57:00','2006-02-15 22:21:18'), - (14363,533,2,11524,'7.99','2005-08-17 00:10:55','2006-02-15 22:21:18'), - (14364,533,1,11758,'8.99','2005-08-17 09:33:02','2006-02-15 22:21:18'), - (14365,533,1,11918,'2.99','2005-08-17 16:08:42','2006-02-15 22:21:18'), - (14366,533,1,12602,'0.99','2005-08-18 16:49:50','2006-02-15 22:21:18'), - (14367,533,1,12655,'6.99','2005-08-18 18:57:44','2006-02-15 22:21:18'), - (14368,533,1,14263,'7.99','2005-08-21 06:08:15','2006-02-15 22:21:18'), - (14369,533,1,14800,'4.99','2005-08-22 00:46:18','2006-02-15 22:21:18'), - (14370,533,2,16006,'0.99','2005-08-23 21:01:09','2006-02-15 22:21:18'), - (14371,533,2,14018,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:18'), - (14372,534,2,304,'5.99','2005-05-26 21:21:28','2006-02-15 22:21:18'), - (14373,534,2,940,'0.99','2005-05-30 15:01:02','2006-02-15 22:21:18'), - (14374,534,1,1610,'4.99','2005-06-16 06:36:33','2006-02-15 22:21:18'), - (14375,534,1,1673,'2.99','2005-06-16 10:40:17','2006-02-15 22:21:18'), - (14376,534,1,2436,'0.99','2005-06-18 18:13:32','2006-02-15 22:21:19'), - (14377,534,2,3213,'1.99','2005-06-21 01:05:19','2006-02-15 22:21:19'), - (14378,534,1,3216,'4.99','2005-06-21 01:19:37','2006-02-15 22:21:19'), - (14379,534,1,3735,'2.99','2005-07-06 11:42:04','2006-02-15 22:21:19'), - (14380,534,2,4998,'4.99','2005-07-09 01:07:21','2006-02-15 22:21:19'), - (14381,534,2,7113,'2.99','2005-07-27 05:41:20','2006-02-15 22:21:19'), - (14382,534,1,7662,'2.99','2005-07-28 02:16:08','2006-02-15 22:21:19'), - (14383,534,2,8633,'0.99','2005-07-29 14:19:53','2006-02-15 22:21:19'), - (14384,534,1,9456,'5.99','2005-07-30 22:22:16','2006-02-15 22:21:19'), - (14385,534,2,9464,'4.99','2005-07-30 22:31:31','2006-02-15 22:21:19'), - (14386,534,2,10465,'5.99','2005-08-01 09:45:25','2006-02-15 22:21:19'), - (14387,534,2,10725,'6.99','2005-08-01 19:11:04','2006-02-15 22:21:19'), - (14388,534,1,10796,'0.99','2005-08-01 21:56:41','2006-02-15 22:21:19'), - (14389,534,2,11180,'5.99','2005-08-02 10:54:30','2006-02-15 22:21:19'), - (14390,534,2,12305,'2.99','2005-08-18 05:46:29','2006-02-15 22:21:19'), - (14391,534,1,12691,'5.99','2005-08-18 20:07:46','2006-02-15 22:21:20'), - (14392,534,2,12798,'4.99','2005-08-19 00:24:33','2006-02-15 22:21:20'), - (14393,534,2,13294,'0.99','2005-08-19 18:36:35','2006-02-15 22:21:20'), - (14394,534,2,14816,'1.99','2005-08-22 01:15:51','2006-02-15 22:21:20'), - (14395,534,1,14526,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:20'), - (14396,535,1,37,'0.99','2005-05-25 04:44:31','2006-02-15 22:21:20'), - (14397,535,2,541,'2.99','2005-05-28 06:41:58','2006-02-15 22:21:20'), - (14398,535,1,778,'3.99','2005-05-29 14:09:53','2006-02-15 22:21:20'), - (14399,535,2,959,'4.99','2005-05-30 18:07:00','2006-02-15 22:21:20'), - (14400,535,1,1712,'4.99','2005-06-16 14:25:09','2006-02-15 22:21:20'), - (14401,535,1,3228,'4.99','2005-06-21 02:20:24','2006-02-15 22:21:20'), - (14402,535,1,4331,'4.99','2005-07-07 18:22:30','2006-02-15 22:21:20'), - (14403,535,1,4718,'6.99','2005-07-08 12:32:08','2006-02-15 22:21:20'), - (14404,535,1,4743,'2.99','2005-07-08 13:42:36','2006-02-15 22:21:20'), - (14405,535,2,4914,'6.99','2005-07-08 21:30:53','2006-02-15 22:21:20'), - (14406,535,1,5588,'0.99','2005-07-10 04:21:10','2006-02-15 22:21:21'), - (14407,535,2,5890,'8.99','2005-07-10 20:00:25','2006-02-15 22:21:21'), - (14408,535,1,6504,'2.99','2005-07-12 03:19:14','2006-02-15 22:21:21'), - (14409,535,1,8395,'2.99','2005-07-29 06:03:30','2006-02-15 22:21:21'), - (14410,535,1,8645,'4.99','2005-07-29 14:47:45','2006-02-15 22:21:21'), - (14411,535,2,9440,'0.99','2005-07-30 21:40:15','2006-02-15 22:21:21'), - (14412,535,1,9524,'4.99','2005-07-31 01:01:06','2006-02-15 22:21:21'), - (14413,535,2,10322,'5.99','2005-08-01 04:44:13','2006-02-15 22:21:21'), - (14414,535,2,10353,'3.99','2005-08-01 05:46:33','2006-02-15 22:21:21'), - (14415,535,2,11736,'8.99','2005-08-17 08:40:55','2006-02-15 22:21:21'), - (14416,535,1,11855,'7.99','2005-08-17 13:43:07','2006-02-15 22:21:21'), - (14417,535,2,12168,'2.99','2005-08-18 01:03:52','2006-02-15 22:21:21'), - (14418,535,1,12233,'0.99','2005-08-18 03:16:54','2006-02-15 22:21:21'), - (14419,535,2,12673,'4.99','2005-08-18 19:21:56','2006-02-15 22:21:21'), - (14420,535,1,12732,'0.99','2005-08-18 21:57:50','2006-02-15 22:21:21'), - (14421,535,2,12750,'1.99','2005-08-18 22:32:39','2006-02-15 22:21:21'), - (14422,535,1,13631,'4.99','2005-08-20 07:07:37','2006-02-15 22:21:22'), - (14423,535,1,13852,'0.99','2005-08-20 14:45:23','2006-02-15 22:21:22'), - (14424,535,1,14522,'4.99','2005-08-21 15:01:34','2006-02-15 22:21:22'), - (14425,535,2,15075,'5.99','2005-08-22 11:04:52','2006-02-15 22:21:22'), - (14426,535,1,15287,'6.99','2005-08-22 19:19:37','2006-02-15 22:21:22'), - (14427,535,1,16017,'0.99','2005-08-23 21:27:11','2006-02-15 22:21:22'), - (14428,536,1,237,'0.99','2005-05-26 12:15:13','2006-02-15 22:21:22'), - (14429,536,1,929,'6.99','2005-05-30 12:32:39','2006-02-15 22:21:22'), - (14430,536,1,1582,'4.99','2005-06-16 04:31:57','2006-02-15 22:21:22'), - (14431,536,2,1962,'2.99','2005-06-17 09:08:58','2006-02-15 22:21:22'), - (14432,536,2,2403,'2.99','2005-06-18 16:33:22','2006-02-15 22:21:22'), - (14433,536,1,3483,'4.99','2005-07-05 23:13:51','2006-02-15 22:21:22'), - (14434,536,1,3514,'0.99','2005-07-06 00:46:54','2006-02-15 22:21:22'), - (14435,536,1,4448,'2.99','2005-07-07 23:17:12','2006-02-15 22:21:22'), - (14436,536,2,5196,'0.99','2005-07-09 10:43:34','2006-02-15 22:21:22'), - (14437,536,1,6400,'5.99','2005-07-11 22:43:44','2006-02-15 22:21:23'), - (14438,536,1,7065,'4.99','2005-07-27 03:53:43','2006-02-15 22:21:23'), - (14439,536,2,8535,'4.99','2005-07-29 10:32:33','2006-02-15 22:21:23'), - (14440,536,1,8679,'4.99','2005-07-29 16:07:47','2006-02-15 22:21:23'), - (14441,536,1,8958,'2.99','2005-07-30 03:34:26','2006-02-15 22:21:23'), - (14442,536,1,9411,'8.99','2005-07-30 20:38:22','2006-02-15 22:21:23'), - (14443,536,1,9727,'4.99','2005-07-31 08:39:13','2006-02-15 22:21:23'), - (14444,536,2,10019,'3.99','2005-07-31 18:20:56','2006-02-15 22:21:23'), - (14445,536,1,11473,'6.99','2005-08-02 21:52:03','2006-02-15 22:21:23'), - (14446,536,1,11826,'2.99','2005-08-17 12:43:46','2006-02-15 22:21:23'), - (14447,536,2,11977,'4.99','2005-08-17 18:01:15','2006-02-15 22:21:23'), - (14448,536,2,12052,'8.99','2005-08-17 20:57:02','2006-02-15 22:21:23'), - (14449,536,2,13505,'4.99','2005-08-20 02:05:57','2006-02-15 22:21:23'), - (14450,536,1,15130,'7.99','2005-08-22 13:04:32','2006-02-15 22:21:23'), - (14451,536,1,15978,'8.99','2005-08-23 20:08:18','2006-02-15 22:21:23'), - (14452,536,1,15979,'0.99','2005-08-23 20:08:26','2006-02-15 22:21:24'), - (14453,537,2,603,'4.99','2005-05-28 14:27:51','2006-02-15 22:21:24'), - (14454,537,1,1445,'2.99','2005-06-15 19:10:07','2006-02-15 22:21:24'), - (14455,537,2,2184,'2.99','2005-06-18 01:10:36','2006-02-15 22:21:24'), - (14456,537,1,2586,'8.99','2005-06-19 05:05:11','2006-02-15 22:21:24'), - (14457,537,2,3134,'8.99','2005-06-20 19:29:09','2006-02-15 22:21:24'), - (14458,537,1,3555,'0.99','2005-07-06 02:45:35','2006-02-15 22:21:24'), - (14459,537,2,3853,'0.99','2005-07-06 16:59:20','2006-02-15 22:21:24'), - (14460,537,1,5630,'2.99','2005-07-10 06:08:14','2006-02-15 22:21:24'), - (14461,537,2,5877,'5.99','2005-07-10 19:08:51','2006-02-15 22:21:24'), - (14462,537,2,6310,'2.99','2005-07-11 18:14:05','2006-02-15 22:21:24'), - (14463,537,1,6409,'4.99','2005-07-11 23:05:49','2006-02-15 22:21:24'), - (14464,537,1,6746,'0.99','2005-07-12 14:33:01','2006-02-15 22:21:24'), - (14465,537,1,7179,'2.99','2005-07-27 08:10:29','2006-02-15 22:21:24'), - (14466,537,2,7810,'4.99','2005-07-28 08:00:38','2006-02-15 22:21:24'), - (14467,537,2,8126,'4.99','2005-07-28 19:32:41','2006-02-15 22:21:25'), - (14468,537,2,8256,'4.99','2005-07-29 01:02:42','2006-02-15 22:21:25'), - (14469,537,1,9967,'2.99','2005-07-31 16:31:17','2006-02-15 22:21:25'), - (14470,537,2,12984,'4.99','2005-08-19 07:06:51','2006-02-15 22:21:25'), - (14471,537,2,13885,'4.99','2005-08-20 15:32:09','2006-02-15 22:21:25'), - (14472,537,1,14010,'4.99','2005-08-20 20:29:46','2006-02-15 22:21:25'), - (14473,537,2,14506,'0.99','2005-08-21 14:32:27','2006-02-15 22:21:25'), - (14474,537,1,14670,'0.99','2005-08-21 19:54:11','2006-02-15 22:21:25'), - (14475,537,1,15149,'2.99','2005-08-22 14:08:06','2006-02-15 22:21:25'), - (14476,537,1,15832,'8.99','2005-08-23 15:21:35','2006-02-15 22:21:25'), - (14477,537,1,13419,'4.99','2006-02-14 15:16:03','2006-02-15 22:21:25'), - (14478,538,2,594,'2.99','2005-05-28 13:41:56','2006-02-15 22:21:25'), - (14479,538,2,734,'4.99','2005-05-29 07:38:52','2006-02-15 22:21:25'), - (14480,538,1,1314,'5.99','2005-06-15 10:21:45','2006-02-15 22:21:25'), - (14481,538,1,1912,'4.99','2005-06-17 05:18:32','2006-02-15 22:21:25'), - (14482,538,1,2682,'4.99','2005-06-19 12:18:17','2006-02-15 22:21:26'), - (14483,538,2,3189,'2.99','2005-06-20 23:19:33','2006-02-15 22:21:26'), - (14484,538,2,3554,'4.99','2005-07-06 02:37:10','2006-02-15 22:21:26'), - (14485,538,2,5135,'8.99','2005-07-09 07:53:22','2006-02-15 22:21:26'), - (14486,538,1,5369,'4.99','2005-07-09 18:42:16','2006-02-15 22:21:26'), - (14487,538,1,5486,'2.99','2005-07-09 23:57:44','2006-02-15 22:21:26'), - (14488,538,1,5898,'2.99','2005-07-10 20:18:09','2006-02-15 22:21:26'), - (14489,538,2,6130,'2.99','2005-07-11 08:19:56','2006-02-15 22:21:26'), - (14490,538,1,6332,'0.99','2005-07-11 19:19:06','2006-02-15 22:21:26'), - (14491,538,2,6936,'0.99','2005-07-26 23:13:34','2006-02-15 22:21:26'), - (14492,538,1,7694,'0.99','2005-07-28 03:39:25','2006-02-15 22:21:26'), - (14493,538,1,8765,'0.99','2005-07-29 19:40:08','2006-02-15 22:21:26'), - (14494,538,1,9307,'0.99','2005-07-30 16:52:43','2006-02-15 22:21:26'), - (14495,538,1,9643,'4.99','2005-07-31 05:35:48','2006-02-15 22:21:26'), - (14496,538,2,9897,'4.99','2005-07-31 14:11:57','2006-02-15 22:21:26'), - (14497,538,2,9939,'8.99','2005-07-31 15:29:00','2006-02-15 22:21:27'), - (14498,538,2,10701,'3.99','2005-08-01 18:28:17','2006-02-15 22:21:27'), - (14499,538,1,10732,'5.99','2005-08-01 19:25:18','2006-02-15 22:21:27'), - (14500,538,1,10962,'4.99','2005-08-02 03:48:13','2006-02-15 22:21:27'), - (14501,538,2,12089,'5.99','2005-08-17 22:20:29','2006-02-15 22:21:27'), - (14502,538,1,13544,'1.99','2005-08-20 03:44:26','2006-02-15 22:21:27'), - (14503,538,2,13770,'4.99','2005-08-20 11:45:54','2006-02-15 22:21:27'), - (14504,538,2,14572,'2.99','2005-08-21 16:44:31','2006-02-15 22:21:27'), - (14505,538,1,14591,'0.99','2005-08-21 17:30:09','2006-02-15 22:21:27'), - (14506,538,1,15343,'6.99','2005-08-22 21:01:25','2006-02-15 22:21:27'), - (14507,539,2,250,'4.99','2005-05-26 14:30:24','2006-02-15 22:21:27'), - (14508,539,1,342,'0.99','2005-05-27 04:11:04','2006-02-15 22:21:27'), - (14509,539,2,1282,'3.99','2005-06-15 08:25:33','2006-02-15 22:21:27'), - (14510,539,1,1327,'0.99','2005-06-15 11:11:39','2006-02-15 22:21:27'), - (14511,539,2,1444,'4.99','2005-06-15 19:08:16','2006-02-15 22:21:27'), - (14512,539,1,4035,'2.99','2005-07-07 02:45:02','2006-02-15 22:21:27'), - (14513,539,1,4247,'0.99','2005-07-07 13:51:54','2006-02-15 22:21:28'), - (14514,539,2,5086,'4.99','2005-07-09 05:40:04','2006-02-15 22:21:28'), - (14515,539,2,5139,'7.99','2005-07-09 08:01:51','2006-02-15 22:21:28'), - (14516,539,2,5493,'2.99','2005-07-10 00:11:44','2006-02-15 22:21:28'), - (14517,539,2,6874,'5.99','2005-07-12 20:20:53','2006-02-15 22:21:28'), - (14518,539,1,7781,'2.99','2005-07-28 07:13:20','2006-02-15 22:21:28'), - (14519,539,2,8247,'6.99','2005-07-29 00:41:38','2006-02-15 22:21:28'), - (14520,539,2,8761,'5.99','2005-07-29 19:26:47','2006-02-15 22:21:28'), - (14521,539,2,9250,'0.99','2005-07-30 14:18:16','2006-02-15 22:21:28'), - (14522,539,1,9777,'7.99','2005-07-31 10:01:06','2006-02-15 22:21:28'), - (14523,539,1,9796,'4.99','2005-07-31 10:52:43','2006-02-15 22:21:28'), - (14524,539,2,10922,'3.99','2005-08-02 02:14:40','2006-02-15 22:21:28'), - (14525,539,1,12848,'2.99','2005-08-19 02:05:11','2006-02-15 22:21:28'), - (14526,539,2,13615,'2.99','2005-08-20 06:28:53','2006-02-15 22:21:28'), - (14527,539,2,13778,'5.99','2005-08-20 12:03:44','2006-02-15 22:21:28'), - (14528,539,1,15356,'2.99','2005-08-22 21:24:19','2006-02-15 22:21:29'), - (14529,540,2,1263,'2.99','2005-06-15 06:56:39','2006-02-15 22:21:29'), - (14530,540,2,1290,'4.99','2005-06-15 08:52:44','2006-02-15 22:21:29'), - (14531,540,2,2640,'2.99','2005-06-19 09:26:13','2006-02-15 22:21:29'), - (14532,540,1,2953,'3.99','2005-06-20 06:39:11','2006-02-15 22:21:29'), - (14533,540,1,3340,'3.99','2005-06-21 10:37:23','2006-02-15 22:21:29'), - (14534,540,2,4628,'4.99','2005-07-08 08:25:52','2006-02-15 22:21:29'), - (14535,540,2,4991,'4.99','2005-07-09 00:49:03','2006-02-15 22:21:29'), - (14536,540,1,6103,'2.99','2005-07-11 06:59:55','2006-02-15 22:21:29'), - (14537,540,2,6145,'7.99','2005-07-11 09:07:01','2006-02-15 22:21:29'), - (14538,540,2,6182,'2.99','2005-07-11 11:11:38','2006-02-15 22:21:29'), - (14539,540,1,6748,'6.99','2005-07-12 14:39:27','2006-02-15 22:21:29'), - (14540,540,1,6919,'0.99','2005-07-12 22:32:17','2006-02-15 22:21:29'), - (14541,540,2,9762,'4.99','2005-07-31 09:32:54','2006-02-15 22:21:29'), - (14542,540,2,9815,'2.99','2005-07-31 11:30:51','2006-02-15 22:21:29'), - (14543,540,1,10924,'8.99','2005-08-02 02:20:19','2006-02-15 22:21:30'), - (14544,540,1,11198,'3.99','2005-08-02 11:45:15','2006-02-15 22:21:30'), - (14545,540,2,11324,'4.99','2005-08-02 16:31:17','2006-02-15 22:21:30'), - (14546,540,2,11432,'6.99','2005-08-02 20:10:01','2006-02-15 22:21:30'), - (14547,540,2,12058,'8.99','2005-08-17 21:07:41','2006-02-15 22:21:30'), - (14548,540,2,12201,'4.99','2005-08-18 02:14:06','2006-02-15 22:21:30'), - (14549,540,1,12300,'6.99','2005-08-18 05:36:14','2006-02-15 22:21:30'), - (14550,540,2,14910,'0.99','2005-08-22 04:50:52','2006-02-15 22:21:30'), - (14551,540,2,15079,'2.99','2005-08-22 11:09:56','2006-02-15 22:21:30'), - (14552,540,2,15953,'3.99','2005-08-23 19:13:46','2006-02-15 22:21:30'), - (14553,541,1,1021,'7.99','2005-05-31 03:16:15','2006-02-15 22:21:30'), - (14554,541,1,1066,'4.99','2005-05-31 09:07:33','2006-02-15 22:21:30'), - (14555,541,2,1986,'2.99','2005-06-17 10:34:59','2006-02-15 22:21:30'), - (14556,541,1,2708,'6.99','2005-06-19 13:59:05','2006-02-15 22:21:30'), - (14557,541,1,5018,'2.99','2005-07-09 02:01:05','2006-02-15 22:21:30'), - (14558,541,2,5197,'4.99','2005-07-09 10:43:54','2006-02-15 22:21:31'), - (14559,541,2,6468,'7.99','2005-07-12 01:27:09','2006-02-15 22:21:31'), - (14560,541,2,6718,'2.99','2005-07-12 13:38:06','2006-02-15 22:21:31'), - (14561,541,1,8113,'8.99','2005-07-28 19:14:00','2006-02-15 22:21:31'), - (14562,541,1,8322,'4.99','2005-07-29 03:52:49','2006-02-15 22:21:31'), - (14563,541,2,9603,'0.99','2005-07-31 03:43:43','2006-02-15 22:21:31'), - (14564,541,1,10306,'5.99','2005-08-01 04:19:18','2006-02-15 22:21:31'), - (14565,541,2,11273,'0.99','2005-08-02 14:20:55','2006-02-15 22:21:31'), - (14566,541,1,12306,'4.99','2005-08-18 05:47:55','2006-02-15 22:21:31'), - (14567,541,2,12395,'4.99','2005-08-18 09:06:30','2006-02-15 22:21:31'), - (14568,541,1,12894,'7.99','2005-08-19 03:49:28','2006-02-15 22:21:31'), - (14569,541,2,13239,'4.99','2005-08-19 16:22:13','2006-02-15 22:21:31'), - (14570,541,2,13640,'0.99','2005-08-20 07:22:53','2006-02-15 22:21:31'), - (14571,541,2,14938,'6.99','2005-08-22 05:52:39','2006-02-15 22:21:31'), - (14572,541,1,15071,'4.99','2005-08-22 10:58:43','2006-02-15 22:21:31'), - (14573,541,2,15141,'3.99','2005-08-22 13:41:49','2006-02-15 22:21:32'), - (14574,541,1,15223,'1.99','2005-08-22 17:13:39','2006-02-15 22:21:32'), - (14575,541,1,15421,'0.99','2005-08-22 23:56:37','2006-02-15 22:21:32'), - (14576,541,2,15924,'1.99','2005-08-23 18:08:59','2006-02-15 22:21:32'), - (14577,542,1,220,'4.99','2005-05-26 10:06:49','2006-02-15 22:21:32'), - (14578,542,2,376,'4.99','2005-05-27 08:58:15','2006-02-15 22:21:32'), - (14579,542,1,2610,'4.99','2005-06-19 07:16:20','2006-02-15 22:21:32'), - (14580,542,2,2957,'10.99','2005-06-20 06:53:47','2006-02-15 22:21:32'), - (14581,542,2,5293,'0.99','2005-07-09 15:17:23','2006-02-15 22:21:32'), - (14582,542,1,5477,'6.99','2005-07-09 23:43:49','2006-02-15 22:21:32'), - (14583,542,2,6077,'5.99','2005-07-11 05:06:08','2006-02-15 22:21:32'), - (14584,542,2,6325,'5.99','2005-07-11 19:06:01','2006-02-15 22:21:32'), - (14585,542,1,6887,'9.99','2005-07-12 21:00:23','2006-02-15 22:21:32'), - (14586,542,2,7672,'8.99','2005-07-28 02:49:41','2006-02-15 22:21:32'), - (14587,542,1,8533,'4.99','2005-07-29 10:29:16','2006-02-15 22:21:32'), - (14588,542,2,8544,'3.99','2005-07-29 11:02:08','2006-02-15 22:21:33'), - (14589,542,1,10280,'4.99','2005-08-01 03:27:15','2006-02-15 22:21:33'), - (14590,542,2,11583,'0.99','2005-08-17 02:08:13','2006-02-15 22:21:33'), - (14591,542,2,11903,'2.99','2005-08-17 15:37:45','2006-02-15 22:21:33'), - (14592,542,1,12819,'0.99','2005-08-19 01:05:05','2006-02-15 22:21:33'), - (14593,542,1,13447,'0.99','2005-08-20 00:09:36','2006-02-15 22:21:33'), - (14594,542,2,14982,'9.99','2005-08-22 07:20:55','2006-02-15 22:21:33'), - (14595,543,1,243,'6.99','2005-05-26 13:06:05','2006-02-15 22:21:33'), - (14596,543,2,476,'1.99','2005-05-27 22:31:36','2006-02-15 22:21:33'), - (14597,543,2,1720,'4.99','2005-06-16 15:00:14','2006-02-15 22:21:33'), - (14598,543,1,2426,'2.99','2005-06-18 17:40:44','2006-02-15 22:21:33'), - (14599,543,2,3070,'4.99','2005-06-20 14:15:39','2006-02-15 22:21:33'), - (14600,543,1,3128,'2.99','2005-06-20 18:41:47','2006-02-15 22:21:33'), - (14601,543,2,3467,'5.99','2005-06-21 22:19:25','2006-02-15 22:21:33'), - (14602,543,1,4887,'2.99','2005-07-08 19:59:14','2006-02-15 22:21:33'), - (14603,543,2,5467,'4.99','2005-07-09 23:05:47','2006-02-15 22:21:34'), - (14604,543,2,6013,'4.99','2005-07-11 02:02:03','2006-02-15 22:21:34'), - (14605,543,2,7312,'2.99','2005-07-27 13:03:14','2006-02-15 22:21:34'), - (14606,543,1,8580,'2.99','2005-07-29 12:00:27','2006-02-15 22:21:34'), - (14607,543,2,8845,'4.99','2005-07-29 23:06:13','2006-02-15 22:21:34'), - (14608,543,1,9505,'2.99','2005-07-31 00:11:19','2006-02-15 22:21:34'), - (14609,543,1,9999,'0.99','2005-07-31 17:40:53','2006-02-15 22:21:34'), - (14610,543,2,10257,'0.99','2005-08-01 02:49:43','2006-02-15 22:21:34'), - (14611,543,1,10520,'4.99','2005-08-01 11:45:58','2006-02-15 22:21:34'), - (14612,543,2,11241,'9.99','2005-08-02 13:29:24','2006-02-15 22:21:34'), - (14613,543,1,11681,'2.99','2005-08-17 06:13:30','2006-02-15 22:21:34'), - (14614,543,1,13187,'0.99','2005-08-19 14:24:48','2006-02-15 22:21:34'), - (14615,543,2,15281,'1.99','2005-08-22 19:10:26','2006-02-15 22:21:34'), - (14616,543,1,15785,'1.99','2005-08-23 13:46:27','2006-02-15 22:21:34'), - (14617,544,1,397,'2.99','2005-05-27 12:29:02','2006-02-15 22:21:34'), - (14618,544,1,864,'2.99','2005-05-30 03:27:17','2006-02-15 22:21:35'), - (14619,544,1,1248,'1.99','2005-06-15 05:33:52','2006-02-15 22:21:35'), - (14620,544,2,1434,'10.99','2005-06-15 18:30:46','2006-02-15 22:21:35'), - (14621,544,1,2373,'0.99','2005-06-18 14:37:57','2006-02-15 22:21:35'), - (14622,544,1,2395,'2.99','2005-06-18 15:45:15','2006-02-15 22:21:35'), - (14623,544,1,4395,'0.99','2005-07-07 21:13:22','2006-02-15 22:21:35'), - (14624,544,1,4703,'2.99','2005-07-08 11:44:56','2006-02-15 22:21:35'), - (14625,544,2,4847,'6.99','2005-07-08 18:29:13','2006-02-15 22:21:35'), - (14626,544,2,8566,'2.99','2005-07-29 11:35:46','2006-02-15 22:21:35'), - (14627,544,1,8937,'5.99','2005-07-30 02:53:21','2006-02-15 22:21:35'), - (14628,544,1,8963,'9.99','2005-07-30 03:46:26','2006-02-15 22:21:35'), - (14629,544,1,10735,'0.99','2005-08-01 19:29:45','2006-02-15 22:21:35'), - (14630,544,1,11401,'3.99','2005-08-02 19:05:06','2006-02-15 22:21:35'), - (14631,544,2,11766,'2.99','2005-08-17 09:58:40','2006-02-15 22:21:35'), - (14632,544,2,12640,'3.99','2005-08-18 18:14:49','2006-02-15 22:21:36'), - (14633,544,2,14142,'4.99','2005-08-21 02:07:43','2006-02-15 22:21:36'), - (14634,544,1,14498,'4.99','2005-08-21 14:10:44','2006-02-15 22:21:36'), - (14635,544,2,14651,'8.99','2005-08-21 19:31:09','2006-02-15 22:21:36'), - (14636,544,1,14981,'2.99','2005-08-22 07:19:05','2006-02-15 22:21:36'), - (14637,544,1,15219,'6.99','2005-08-22 17:00:31','2006-02-15 22:21:36'), - (14638,544,1,15605,'4.99','2005-08-23 06:48:47','2006-02-15 22:21:36'), - (14639,545,2,248,'0.99','2005-05-26 14:07:58','2006-02-15 22:21:36'), - (14640,545,2,715,'3.99','2005-05-29 04:22:41','2006-02-15 22:21:36'), - (14641,545,1,2123,'2.99','2005-06-17 20:48:30','2006-02-15 22:21:36'), - (14642,545,2,3693,'8.99','2005-07-06 09:56:09','2006-02-15 22:21:36'), - (14643,545,1,3975,'5.99','2005-07-06 23:00:09','2006-02-15 22:21:36'), - (14644,545,1,4597,'5.99','2005-07-08 06:43:42','2006-02-15 22:21:36'), - (14645,545,1,5264,'0.99','2005-07-09 14:11:28','2006-02-15 22:21:36'), - (14646,545,1,7078,'5.99','2005-07-27 04:16:37','2006-02-15 22:21:36'), - (14647,545,2,8599,'3.99','2005-07-29 12:58:52','2006-02-15 22:21:37'), - (14648,545,2,8848,'2.99','2005-07-29 23:20:58','2006-02-15 22:21:37'), - (14649,545,2,9810,'2.99','2005-07-31 11:22:41','2006-02-15 22:21:37'), - (14650,545,2,9942,'4.99','2005-07-31 15:35:43','2006-02-15 22:21:37'), - (14651,545,2,10931,'2.99','2005-08-02 02:44:59','2006-02-15 22:21:37'), - (14652,545,2,11760,'2.99','2005-08-17 09:44:22','2006-02-15 22:21:37'), - (14653,545,1,12098,'4.99','2005-08-17 22:38:31','2006-02-15 22:21:37'), - (14654,545,1,12349,'2.99','2005-08-18 07:23:42','2006-02-15 22:21:37'), - (14655,545,2,12667,'10.99','2005-08-18 19:11:45','2006-02-15 22:21:37'), - (14656,545,1,12800,'2.99','2005-08-19 00:27:11','2006-02-15 22:21:37'), - (14657,545,1,13595,'4.99','2005-08-20 05:54:27','2006-02-15 22:21:37'), - (14658,545,1,15585,'0.99','2005-08-23 05:55:22','2006-02-15 22:21:37'), - (14659,545,2,15998,'4.99','2005-08-23 20:41:09','2006-02-15 22:21:37'), - (14660,546,1,197,'5.99','2005-05-26 06:59:21','2006-02-15 22:21:37'), - (14661,546,1,482,'6.99','2005-05-27 22:53:02','2006-02-15 22:21:37'), - (14662,546,1,1181,'1.99','2005-06-15 00:42:17','2006-02-15 22:21:38'), - (14663,546,2,1403,'0.99','2005-06-15 16:31:59','2006-02-15 22:21:38'), - (14664,546,1,1787,'3.99','2005-06-16 19:30:59','2006-02-15 22:21:38'), - (14665,546,1,2361,'5.99','2005-06-18 13:19:05','2006-02-15 22:21:38'), - (14666,546,1,3738,'4.99','2005-07-06 11:50:57','2006-02-15 22:21:38'), - (14667,546,2,4664,'0.99','2005-07-08 10:01:28','2006-02-15 22:21:38'), - (14668,546,1,4734,'0.99','2005-07-08 13:12:12','2006-02-15 22:21:38'), - (14669,546,1,5629,'0.99','2005-07-10 06:02:25','2006-02-15 22:21:38'), - (14670,546,2,6758,'9.99','2005-07-12 15:13:49','2006-02-15 22:21:38'), - (14671,546,1,6786,'2.99','2005-07-12 16:32:33','2006-02-15 22:21:38'), - (14672,546,2,6910,'6.99','2005-07-12 22:11:21','2006-02-15 22:21:38'), - (14673,546,1,8532,'4.99','2005-07-29 10:26:56','2006-02-15 22:21:38'), - (14674,546,1,9087,'4.99','2005-07-30 08:19:47','2006-02-15 22:21:38'), - (14675,546,1,NULL,'3.99','2005-07-30 21:16:20','2006-02-15 22:21:38'), - (14676,546,2,9626,'1.99','2005-07-31 04:37:41','2006-02-15 22:21:38'), - (14677,546,2,10370,'0.99','2005-08-01 06:18:04','2006-02-15 22:21:39'), - (14678,546,2,11352,'5.99','2005-08-02 17:29:39','2006-02-15 22:21:39'), - (14679,546,1,11797,'4.99','2005-08-17 11:17:21','2006-02-15 22:21:39'), - (14680,546,2,12591,'2.99','2005-08-18 16:16:41','2006-02-15 22:21:39'), - (14681,546,2,13850,'5.99','2005-08-20 14:43:03','2006-02-15 22:21:39'), - (14682,546,1,14797,'4.99','2005-08-22 00:41:24','2006-02-15 22:21:39'), - (14683,546,1,14829,'2.99','2005-08-22 01:35:37','2006-02-15 22:21:39'), - (14684,546,1,14929,'3.99','2005-08-22 05:32:38','2006-02-15 22:21:39'), - (14685,546,2,15565,'4.99','2005-08-23 05:13:09','2006-02-15 22:21:39'), - (14686,547,1,306,'0.99','2005-05-26 21:31:57','2006-02-15 22:21:39'), - (14687,547,2,443,'8.99','2005-05-27 18:35:20','2006-02-15 22:21:39'), - (14688,547,2,1094,'1.99','2005-05-31 13:03:49','2006-02-15 22:21:39'), - (14689,547,2,2022,'8.99','2005-06-17 12:44:39','2006-02-15 22:21:39'), - (14690,547,2,3679,'4.99','2005-07-06 09:15:57','2006-02-15 22:21:39'), - (14691,547,1,3765,'4.99','2005-07-06 13:01:47','2006-02-15 22:21:40'), - (14692,547,2,5327,'4.99','2005-07-09 16:39:49','2006-02-15 22:21:40'), - (14693,547,2,5854,'4.99','2005-07-10 17:47:34','2006-02-15 22:21:40'), - (14694,547,1,6605,'0.99','2005-07-12 08:01:07','2006-02-15 22:21:40'), - (14695,547,2,7420,'4.99','2005-07-27 17:09:39','2006-02-15 22:21:40'), - (14696,547,2,7547,'3.99','2005-07-27 21:51:48','2006-02-15 22:21:40'), - (14697,547,1,7835,'4.99','2005-07-28 08:49:39','2006-02-15 22:21:40'), - (14698,547,1,7859,'3.99','2005-07-28 09:57:17','2006-02-15 22:21:40'), - (14699,547,1,8828,'2.99','2005-07-29 22:32:54','2006-02-15 22:21:40'), - (14700,547,1,10903,'2.99','2005-08-02 01:41:59','2006-02-15 22:21:40'), - (14701,547,1,10980,'4.99','2005-08-02 04:17:32','2006-02-15 22:21:40'), - (14702,547,2,11170,'5.99','2005-08-02 10:21:53','2006-02-15 22:21:40'), - (14703,547,2,11361,'0.99','2005-08-02 17:46:34','2006-02-15 22:21:40'), - (14704,547,1,12579,'0.99','2005-08-18 15:47:49','2006-02-15 22:21:40'), - (14705,547,2,12943,'2.99','2005-08-19 05:46:26','2006-02-15 22:21:40'), - (14706,547,2,13307,'2.99','2005-08-19 18:58:44','2006-02-15 22:21:41'), - (14707,547,1,14510,'9.99','2005-08-21 14:44:41','2006-02-15 22:21:41'), - (14708,547,2,14884,'4.99','2005-08-22 03:57:08','2006-02-15 22:21:41'), - (14709,548,2,177,'6.99','2005-05-26 04:14:29','2006-02-15 22:21:41'), - (14710,548,1,743,'4.99','2005-05-29 08:39:02','2006-02-15 22:21:41'), - (14711,548,2,872,'3.99','2005-05-30 05:03:04','2006-02-15 22:21:41'), - (14712,548,1,1326,'1.99','2005-06-15 11:07:39','2006-02-15 22:21:41'), - (14713,548,1,2280,'2.99','2005-06-18 06:46:54','2006-02-15 22:21:41'), - (14714,548,2,2978,'0.99','2005-06-20 08:25:16','2006-02-15 22:21:41'), - (14715,548,1,3686,'2.99','2005-07-06 09:37:50','2006-02-15 22:21:41'), - (14716,548,2,3777,'2.99','2005-07-06 13:36:48','2006-02-15 22:21:41'), - (14717,548,1,4155,'7.99','2005-07-07 09:00:49','2006-02-15 22:21:41'), - (14718,548,2,5138,'4.99','2005-07-09 08:00:46','2006-02-15 22:21:41'), - (14719,548,2,6490,'4.99','2005-07-12 02:28:03','2006-02-15 22:21:41'), - (14720,548,1,9614,'5.99','2005-07-31 03:59:31','2006-02-15 22:21:41'), - (14721,548,2,10318,'0.99','2005-08-01 04:36:53','2006-02-15 22:21:42'), - (14722,548,1,12860,'5.99','2005-08-19 02:24:41','2006-02-15 22:21:42'), - (14723,548,1,13691,'3.99','2005-08-20 09:07:39','2006-02-15 22:21:42'), - (14724,548,2,13730,'7.99','2005-08-20 10:17:09','2006-02-15 22:21:42'), - (14725,548,2,14188,'0.99','2005-08-21 03:32:04','2006-02-15 22:21:42'), - (14726,548,2,14723,'6.99','2005-08-21 21:52:32','2006-02-15 22:21:42'), - (14727,548,1,13584,'0.99','2006-02-14 15:16:03','2006-02-15 22:21:42'), - (14728,549,1,6,'0.99','2005-05-24 23:08:07','2006-02-15 22:21:42'), - (14729,549,2,852,'4.99','2005-05-30 01:36:57','2006-02-15 22:21:42'), - (14730,549,1,906,'3.99','2005-05-30 10:30:38','2006-02-15 22:21:42'), - (14731,549,2,1086,'4.99','2005-05-31 11:17:37','2006-02-15 22:21:42'), - (14732,549,1,2050,'2.99','2005-06-17 15:07:30','2006-02-15 22:21:42'), - (14733,549,2,3523,'2.99','2005-07-06 01:01:38','2006-02-15 22:21:42'), - (14734,549,2,3892,'4.99','2005-07-06 18:58:58','2006-02-15 22:21:42'), - (14735,549,1,4447,'0.99','2005-07-07 23:15:28','2006-02-15 22:21:42'), - (14736,549,1,7252,'7.99','2005-07-27 10:45:28','2006-02-15 22:21:43'), - (14737,549,2,8239,'0.99','2005-07-29 00:31:39','2006-02-15 22:21:43'), - (14738,549,1,8316,'4.99','2005-07-29 03:38:49','2006-02-15 22:21:43'), - (14739,549,2,9445,'7.99','2005-07-30 21:50:42','2006-02-15 22:21:43'), - (14740,549,2,9511,'9.99','2005-07-31 00:25:05','2006-02-15 22:21:43'), - (14741,549,2,9887,'0.99','2005-07-31 14:00:32','2006-02-15 22:21:43'), - (14742,549,2,10281,'0.99','2005-08-01 03:28:33','2006-02-15 22:21:43'), - (14743,549,2,11737,'4.99','2005-08-17 08:42:08','2006-02-15 22:21:43'), - (14744,549,2,11878,'2.99','2005-08-17 14:23:52','2006-02-15 22:21:43'), - (14745,549,2,12634,'2.99','2005-08-18 17:58:14','2006-02-15 22:21:43'), - (14746,549,2,12747,'4.99','2005-08-18 22:28:22','2006-02-15 22:21:43'), - (14747,549,1,14434,'0.99','2005-08-21 11:40:46','2006-02-15 22:21:43'), - (14748,550,2,922,'7.99','2005-05-30 11:55:55','2006-02-15 22:21:43'), - (14749,550,1,1233,'6.99','2005-06-15 04:18:37','2006-02-15 22:21:43'), - (14750,550,1,1863,'3.99','2005-06-17 01:31:46','2006-02-15 22:21:43'), - (14751,550,2,1883,'4.99','2005-06-17 03:18:51','2006-02-15 22:21:44'), - (14752,550,1,3154,'2.99','2005-06-20 20:44:40','2006-02-15 22:21:44'), - (14753,550,2,3236,'9.99','2005-06-21 02:47:43','2006-02-15 22:21:44'), - (14754,550,1,3272,'10.99','2005-06-21 05:18:27','2006-02-15 22:21:44'), - (14755,550,1,3979,'4.99','2005-07-06 23:04:35','2006-02-15 22:21:44'), - (14756,550,1,5727,'4.99','2005-07-10 11:25:28','2006-02-15 22:21:44'), - (14757,550,1,6695,'2.99','2005-07-12 12:39:39','2006-02-15 22:21:44'), - (14758,550,1,7030,'0.99','2005-07-27 03:01:40','2006-02-15 22:21:44'), - (14759,550,2,7838,'2.99','2005-07-28 09:00:21','2006-02-15 22:21:44'), - (14760,550,1,8628,'6.99','2005-07-29 14:06:24','2006-02-15 22:21:44'), - (14761,550,2,8838,'2.99','2005-07-29 22:52:23','2006-02-15 22:21:44'), - (14762,550,1,8959,'8.99','2005-07-30 03:35:49','2006-02-15 22:21:44'), - (14763,550,1,9616,'2.99','2005-07-31 04:05:01','2006-02-15 22:21:44'), - (14764,550,1,9748,'0.99','2005-07-31 09:17:56','2006-02-15 22:21:44'), - (14765,550,2,10140,'4.99','2005-07-31 22:03:20','2006-02-15 22:21:44'), - (14766,550,1,11246,'2.99','2005-08-02 13:33:56','2006-02-15 22:21:45'), - (14767,550,2,11320,'0.99','2005-08-02 16:13:28','2006-02-15 22:21:45'), - (14768,550,1,11969,'4.99','2005-08-17 17:49:37','2006-02-15 22:21:45'), - (14769,550,1,12063,'2.99','2005-08-17 21:24:48','2006-02-15 22:21:45'), - (14770,550,2,12077,'4.99','2005-08-17 21:59:14','2006-02-15 22:21:45'), - (14771,550,1,13114,'10.99','2005-08-19 11:27:32','2006-02-15 22:21:45'), - (14772,550,2,14071,'2.99','2005-08-20 23:01:56','2006-02-15 22:21:45'), - (14773,550,2,14127,'4.99','2005-08-21 01:33:32','2006-02-15 22:21:45'), - (14774,550,2,14375,'6.99','2005-08-21 09:46:35','2006-02-15 22:21:45'), - (14775,550,1,14687,'4.99','2005-08-21 20:32:16','2006-02-15 22:21:45'), - (14776,550,2,15431,'9.99','2005-08-23 00:26:47','2006-02-15 22:21:45'), - (14777,550,1,15883,'0.99','2005-08-23 16:44:56','2006-02-15 22:21:45'), - (14778,550,2,15977,'4.99','2005-08-23 20:07:10','2006-02-15 22:21:45'), - (14779,550,2,11757,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:45'), - (14780,551,2,155,'7.99','2005-05-26 01:15:05','2006-02-15 22:21:45'), - (14781,551,1,728,'2.99','2005-05-29 06:12:38','2006-02-15 22:21:46'), - (14782,551,1,795,'0.99','2005-05-29 16:57:39','2006-02-15 22:21:46'), - (14783,551,2,969,'4.99','2005-05-30 19:23:48','2006-02-15 22:21:46'), - (14784,551,2,1005,'3.99','2005-05-31 00:53:25','2006-02-15 22:21:46'), - (14785,551,2,2069,'4.99','2005-06-17 16:19:39','2006-02-15 22:21:46'), - (14786,551,1,2776,'3.99','2005-06-19 18:16:24','2006-02-15 22:21:46'), - (14787,551,2,3996,'5.99','2005-07-06 23:46:43','2006-02-15 22:21:46'), - (14788,551,1,5201,'1.99','2005-07-09 10:52:53','2006-02-15 22:21:46'), - (14789,551,2,5528,'0.99','2005-07-10 02:09:21','2006-02-15 22:21:46'), - (14790,551,1,6041,'0.99','2005-07-11 03:14:58','2006-02-15 22:21:46'), - (14791,551,2,7095,'9.99','2005-07-27 04:51:15','2006-02-15 22:21:46'), - (14792,551,1,8986,'0.99','2005-07-30 04:37:20','2006-02-15 22:21:46'), - (14793,551,1,9287,'2.99','2005-07-30 15:35:39','2006-02-15 22:21:46'), - (14794,551,2,9765,'4.99','2005-07-31 09:44:40','2006-02-15 22:21:46'), - (14795,551,2,11380,'0.99','2005-08-02 18:17:32','2006-02-15 22:21:46'), - (14796,551,2,11883,'2.99','2005-08-17 14:41:28','2006-02-15 22:21:47'), - (14797,551,2,12208,'4.99','2005-08-18 02:25:25','2006-02-15 22:21:47'), - (14798,551,2,12868,'0.99','2005-08-19 02:47:19','2006-02-15 22:21:47'), - (14799,551,1,13439,'3.99','2005-08-19 23:42:16','2006-02-15 22:21:47'), - (14800,551,1,14420,'0.99','2005-08-21 11:16:15','2006-02-15 22:21:47'), - (14801,551,2,14609,'4.99','2005-08-21 17:57:26','2006-02-15 22:21:47'), - (14802,551,2,14633,'2.99','2005-08-21 18:51:10','2006-02-15 22:21:47'), - (14803,551,1,14833,'2.99','2005-08-22 01:45:18','2006-02-15 22:21:47'), - (14804,551,1,15377,'4.99','2005-08-22 22:22:33','2006-02-15 22:21:47'), - (14805,551,2,15390,'6.99','2005-08-22 22:57:25','2006-02-15 22:21:47'), - (14806,552,2,174,'0.99','2005-05-26 03:44:10','2006-02-15 22:21:47'), - (14807,552,2,2320,'0.99','2005-06-18 09:24:50','2006-02-15 22:21:47'), - (14808,552,2,3397,'4.99','2005-06-21 15:30:11','2006-02-15 22:21:47'), - (14809,552,1,4477,'6.99','2005-07-08 00:38:24','2006-02-15 22:21:47'), - (14810,552,1,5213,'7.99','2005-07-09 11:39:43','2006-02-15 22:21:48'), - (14811,552,2,6189,'4.99','2005-07-11 11:36:03','2006-02-15 22:21:48'), - (14812,552,1,7772,'2.99','2005-07-28 06:59:09','2006-02-15 22:21:48'), - (14813,552,1,8085,'2.99','2005-07-28 18:13:15','2006-02-15 22:21:48'), - (14814,552,2,8192,'2.99','2005-07-28 22:49:11','2006-02-15 22:21:48'), - (14815,552,2,8614,'5.99','2005-07-29 13:32:05','2006-02-15 22:21:48'), - (14816,552,2,8894,'4.99','2005-07-30 00:48:31','2006-02-15 22:21:48'), - (14817,552,1,9342,'8.99','2005-07-30 18:09:56','2006-02-15 22:21:48'), - (14818,552,1,11146,'1.99','2005-08-02 09:45:32','2006-02-15 22:21:48'), - (14819,552,2,11205,'4.99','2005-08-02 11:56:54','2006-02-15 22:21:48'), - (14820,552,2,11300,'7.99','2005-08-02 15:37:42','2006-02-15 22:21:48'), - (14821,552,2,12433,'4.99','2005-08-18 10:37:49','2006-02-15 22:21:48'), - (14822,552,2,12880,'2.99','2005-08-19 03:27:17','2006-02-15 22:21:48'), - (14823,552,2,13574,'2.99','2005-08-20 05:10:39','2006-02-15 22:21:48'), - (14824,552,1,13693,'0.99','2005-08-20 09:11:42','2006-02-15 22:21:48'), - (14825,552,2,14724,'4.99','2005-08-21 21:53:47','2006-02-15 22:21:49'), - (14826,552,2,15700,'2.99','2005-08-23 10:21:21','2006-02-15 22:21:49'), - (14827,553,2,789,'4.99','2005-05-29 16:17:07','2006-02-15 22:21:49'), - (14828,553,2,1862,'3.99','2005-06-17 01:29:30','2006-02-15 22:21:49'), - (14829,553,1,2460,'8.99','2005-06-18 19:54:13','2006-02-15 22:21:49'), - (14830,553,2,3103,'6.99','2005-06-20 16:58:19','2006-02-15 22:21:49'), - (14831,553,1,3495,'6.99','2005-07-05 23:50:04','2006-02-15 22:21:49'), - (14832,553,2,3793,'4.99','2005-07-06 14:32:44','2006-02-15 22:21:49'), - (14833,553,2,3859,'2.99','2005-07-06 17:18:15','2006-02-15 22:21:49'), - (14834,553,1,3890,'4.99','2005-07-06 18:58:15','2006-02-15 22:21:49'), - (14835,553,2,3891,'4.99','2005-07-06 18:58:25','2006-02-15 22:21:49'), - (14836,553,2,3942,'4.99','2005-07-06 21:21:34','2006-02-15 22:21:49'), - (14837,553,1,4257,'4.99','2005-07-07 14:18:41','2006-02-15 22:21:49'), - (14838,553,2,4662,'0.99','2005-07-08 09:58:54','2006-02-15 22:21:49'), - (14839,553,2,4845,'4.99','2005-07-08 18:28:20','2006-02-15 22:21:49'), - (14840,553,2,4941,'3.99','2005-07-08 22:39:10','2006-02-15 22:21:50'), - (14841,553,1,6069,'2.99','2005-07-11 04:44:59','2006-02-15 22:21:50'), - (14842,553,2,6657,'0.99','2005-07-12 11:11:36','2006-02-15 22:21:50'), - (14843,553,1,6812,'6.99','2005-07-12 18:03:25','2006-02-15 22:21:50'), - (14844,553,1,7890,'4.99','2005-07-28 10:43:40','2006-02-15 22:21:50'), - (14845,553,2,9272,'4.99','2005-07-30 15:05:22','2006-02-15 22:21:50'), - (14846,553,2,9601,'2.99','2005-07-31 03:42:17','2006-02-15 22:21:50'), - (14847,553,2,11710,'4.99','2005-08-17 07:29:44','2006-02-15 22:21:50'), - (14848,553,1,13972,'2.99','2005-08-20 18:52:17','2006-02-15 22:21:50'), - (14849,553,1,15042,'4.99','2005-08-22 09:47:37','2006-02-15 22:21:50'), - (14850,553,1,15506,'0.99','2005-08-23 02:48:24','2006-02-15 22:21:50'), - (14851,554,1,607,'2.99','2005-05-28 15:02:41','2006-02-15 22:21:50'), - (14852,554,1,817,'2.99','2005-05-29 20:39:14','2006-02-15 22:21:50'), - (14853,554,1,1959,'4.99','2005-06-17 08:54:10','2006-02-15 22:21:50'), - (14854,554,1,2279,'6.99','2005-06-18 06:38:22','2006-02-15 22:21:50'), - (14855,554,2,3278,'2.99','2005-06-21 05:41:30','2006-02-15 22:21:51'), - (14856,554,1,3312,'6.99','2005-06-21 08:05:32','2006-02-15 22:21:51'), - (14857,554,2,4902,'4.99','2005-07-08 20:49:30','2006-02-15 22:21:51'), - (14858,554,1,5527,'2.99','2005-07-10 02:06:01','2006-02-15 22:21:51'), - (14859,554,1,5968,'5.99','2005-07-11 00:03:11','2006-02-15 22:21:51'), - (14860,554,1,6144,'2.99','2005-07-11 09:02:53','2006-02-15 22:21:51'), - (14861,554,1,10612,'6.99','2005-08-01 14:55:31','2006-02-15 22:21:51'), - (14862,554,2,10829,'7.99','2005-08-01 23:17:06','2006-02-15 22:21:51'), - (14863,554,2,11589,'9.99','2005-08-17 02:28:22','2006-02-15 22:21:51'), - (14864,554,1,11873,'0.99','2005-08-17 14:14:39','2006-02-15 22:21:51'), - (14865,554,1,12010,'8.99','2005-08-17 19:17:54','2006-02-15 22:21:51'), - (14866,554,1,12014,'0.99','2005-08-17 19:29:44','2006-02-15 22:21:51'), - (14867,554,2,13139,'4.99','2005-08-19 12:32:10','2006-02-15 22:21:51'), - (14868,554,2,14015,'2.99','2005-08-20 20:47:43','2006-02-15 22:21:51'), - (14869,554,1,14098,'3.99','2005-08-21 00:30:32','2006-02-15 22:21:51'), - (14870,554,1,14469,'0.99','2005-08-21 13:07:24','2006-02-15 22:21:52'), - (14871,554,1,14626,'2.99','2005-08-21 18:35:44','2006-02-15 22:21:52'), - (14872,554,2,15690,'4.99','2005-08-23 09:53:30','2006-02-15 22:21:52'), - (14873,555,2,3232,'1.99','2005-06-21 02:30:37','2006-02-15 22:21:52'), - (14874,555,2,4875,'2.99','2005-07-08 19:24:17','2006-02-15 22:21:52'), - (14875,555,1,8161,'0.99','2005-07-28 21:11:00','2006-02-15 22:21:52'), - (14876,555,1,8245,'3.99','2005-07-29 00:37:09','2006-02-15 22:21:52'), - (14877,555,1,9299,'5.99','2005-07-30 16:32:51','2006-02-15 22:21:52'), - (14878,555,2,9990,'7.99','2005-07-31 17:24:21','2006-02-15 22:21:52'), - (14879,555,2,10076,'7.99','2005-07-31 20:00:34','2006-02-15 22:21:52'), - (14880,555,1,10921,'3.99','2005-08-02 02:14:33','2006-02-15 22:21:52'), - (14881,555,1,11168,'4.99','2005-08-02 10:19:42','2006-02-15 22:21:52'), - (14882,555,1,11718,'4.99','2005-08-17 07:44:42','2006-02-15 22:21:52'), - (14883,555,2,11747,'2.99','2005-08-17 09:03:31','2006-02-15 22:21:52'), - (14884,555,2,12091,'4.99','2005-08-17 22:22:50','2006-02-15 22:21:52'), - (14885,555,2,12150,'2.99','2005-08-18 00:13:55','2006-02-15 22:21:53'); -INSERT INTO payment VALUES (14886,555,2,12182,'2.99','2005-08-18 01:30:19','2006-02-15 22:21:53'), - (14887,555,1,12388,'2.99','2005-08-18 08:48:09','2006-02-15 22:21:53'), - (14888,555,1,12883,'4.99','2005-08-19 03:33:47','2006-02-15 22:21:53'), - (14889,555,2,15102,'6.99','2005-08-22 11:58:58','2006-02-15 22:21:53'), - (14890,556,1,184,'0.99','2005-05-26 05:29:49','2006-02-15 22:21:53'), - (14891,556,2,772,'5.99','2005-05-29 13:08:06','2006-02-15 22:21:53'), - (14892,556,1,1083,'3.99','2005-05-31 11:04:48','2006-02-15 22:21:53'), - (14893,556,1,2092,'6.99','2005-06-17 18:12:16','2006-02-15 22:21:53'), - (14894,556,2,2593,'5.99','2005-06-19 05:40:11','2006-02-15 22:21:53'), - (14895,556,2,2986,'0.99','2005-06-20 08:50:28','2006-02-15 22:21:53'), - (14896,556,1,3093,'4.99','2005-06-20 16:06:14','2006-02-15 22:21:53'), - (14897,556,2,3438,'6.99','2005-06-21 19:31:40','2006-02-15 22:21:53'), - (14898,556,2,4719,'2.99','2005-07-08 12:33:00','2006-02-15 22:21:53'), - (14899,556,2,4839,'3.99','2005-07-08 18:13:10','2006-02-15 22:21:54'), - (14900,556,1,4846,'0.99','2005-07-08 18:29:05','2006-02-15 22:21:54'), - (14901,556,2,5722,'0.99','2005-07-10 11:10:04','2006-02-15 22:21:54'), - (14902,556,2,6484,'2.99','2005-07-12 02:04:10','2006-02-15 22:21:54'), - (14903,556,1,8909,'5.99','2005-07-30 01:28:03','2006-02-15 22:21:54'), - (14904,556,2,10106,'4.99','2005-07-31 21:00:47','2006-02-15 22:21:54'), - (14905,556,2,10518,'6.99','2005-08-01 11:44:08','2006-02-15 22:21:54'), - (14906,556,1,11466,'1.99','2005-08-02 21:46:46','2006-02-15 22:21:54'), - (14907,556,2,11804,'3.99','2005-08-17 11:42:45','2006-02-15 22:21:54'), - (14908,556,1,12045,'4.99','2005-08-17 20:40:46','2006-02-15 22:21:54'), - (14909,556,1,14176,'2.99','2005-08-21 03:09:23','2006-02-15 22:21:54'), - (14910,556,1,15568,'2.99','2005-08-23 05:24:09','2006-02-15 22:21:54'), - (14911,557,2,467,'4.99','2005-05-27 21:10:03','2006-02-15 22:21:54'), - (14912,557,1,478,'4.99','2005-05-27 22:38:20','2006-02-15 22:21:54'), - (14913,557,1,1666,'0.99','2005-06-16 10:17:19','2006-02-15 22:21:54'), - (14914,557,2,2988,'6.99','2005-06-20 08:59:08','2006-02-15 22:21:55'), - (14915,557,1,3050,'3.99','2005-06-20 13:03:03','2006-02-15 22:21:55'), - (14916,557,1,4651,'0.99','2005-07-08 09:39:39','2006-02-15 22:21:55'), - (14917,557,1,4851,'1.99','2005-07-08 18:40:05','2006-02-15 22:21:55'), - (14918,557,1,6459,'0.99','2005-07-12 01:12:03','2006-02-15 22:21:55'), - (14919,557,2,6713,'3.99','2005-07-12 13:27:36','2006-02-15 22:21:55'), - (14920,557,2,6823,'4.99','2005-07-12 18:24:31','2006-02-15 22:21:55'), - (14921,557,2,6898,'0.99','2005-07-12 21:39:04','2006-02-15 22:21:55'), - (14922,557,1,9336,'0.99','2005-07-30 18:01:15','2006-02-15 22:21:55'), - (14923,557,1,9341,'2.99','2005-07-30 18:07:58','2006-02-15 22:21:55'), - (14924,557,2,9366,'1.99','2005-07-30 18:48:57','2006-02-15 22:21:55'), - (14925,557,2,9367,'6.99','2005-07-30 18:49:58','2006-02-15 22:21:55'), - (14926,557,1,11181,'0.99','2005-08-02 10:55:03','2006-02-15 22:21:55'), - (14927,557,1,12555,'1.99','2005-08-18 14:49:22','2006-02-15 22:21:55'), - (14928,557,1,12789,'2.99','2005-08-19 00:16:19','2006-02-15 22:21:55'), - (14929,557,1,13540,'2.99','2005-08-20 03:41:23','2006-02-15 22:21:56'), - (14930,557,2,13794,'2.99','2005-08-20 12:25:32','2006-02-15 22:21:56'), - (14931,557,2,15236,'0.99','2005-08-22 17:44:27','2006-02-15 22:21:56'), - (14932,557,2,15570,'5.99','2005-08-23 05:24:55','2006-02-15 22:21:56'), - (14933,557,2,15914,'0.99','2005-08-23 17:49:26','2006-02-15 22:21:56'), - (14934,557,1,14278,'4.99','2006-02-14 15:16:03','2006-02-15 22:21:56'), - (14935,558,2,1967,'4.99','2005-06-17 09:19:52','2006-02-15 22:21:56'), - (14936,558,1,2411,'1.99','2005-06-18 16:55:54','2006-02-15 22:21:56'), - (14937,558,2,2544,'4.99','2005-06-19 02:16:17','2006-02-15 22:21:56'), - (14938,558,2,3016,'4.99','2005-06-20 10:55:08','2006-02-15 22:21:56'), - (14939,558,2,3451,'10.99','2005-06-21 21:10:39','2006-02-15 22:21:56'), - (14940,558,1,3731,'9.99','2005-07-06 11:33:36','2006-02-15 22:21:56'), - (14941,558,1,3954,'0.99','2005-07-06 21:57:44','2006-02-15 22:21:56'), - (14942,558,1,3990,'3.99','2005-07-06 23:32:44','2006-02-15 22:21:56'), - (14943,558,1,4192,'5.99','2005-07-07 10:57:06','2006-02-15 22:21:57'), - (14944,558,1,4932,'2.99','2005-07-08 22:17:40','2006-02-15 22:21:57'), - (14945,558,2,5375,'6.99','2005-07-09 18:52:55','2006-02-15 22:21:57'), - (14946,558,1,5492,'3.99','2005-07-10 00:11:09','2006-02-15 22:21:57'), - (14947,558,2,6278,'7.99','2005-07-11 16:20:02','2006-02-15 22:21:57'), - (14948,558,2,6479,'9.99','2005-07-12 01:49:00','2006-02-15 22:21:57'), - (14949,558,2,6742,'4.99','2005-07-12 14:25:31','2006-02-15 22:21:57'), - (14950,558,1,6757,'0.99','2005-07-12 15:09:48','2006-02-15 22:21:57'), - (14951,558,1,7424,'0.99','2005-07-27 17:14:19','2006-02-15 22:21:57'), - (14952,558,1,8523,'2.99','2005-07-29 10:18:27','2006-02-15 22:21:57'), - (14953,558,1,8858,'4.99','2005-07-29 23:44:35','2006-02-15 22:21:57'), - (14954,558,1,8889,'2.99','2005-07-30 00:39:43','2006-02-15 22:21:57'), - (14955,558,2,10707,'0.99','2005-08-01 18:41:34','2006-02-15 22:21:57'), - (14956,558,1,11268,'0.99','2005-08-02 14:10:39','2006-02-15 22:21:57'), - (14957,558,2,11567,'5.99','2005-08-17 01:28:43','2006-02-15 22:21:57'), - (14958,558,2,12040,'6.99','2005-08-17 20:29:56','2006-02-15 22:21:58'), - (14959,558,1,12194,'1.99','2005-08-18 02:04:47','2006-02-15 22:21:58'), - (14960,558,2,13566,'5.99','2005-08-20 04:45:32','2006-02-15 22:21:58'), - (14961,558,2,14235,'7.99','2005-08-21 05:08:42','2006-02-15 22:21:58'), - (14962,558,1,14286,'5.99','2005-08-21 06:53:53','2006-02-15 22:21:58'), - (14963,559,2,2576,'4.99','2005-06-19 04:34:15','2006-02-15 22:21:58'), - (14964,559,1,2706,'0.99','2005-06-19 13:56:51','2006-02-15 22:21:58'), - (14965,559,2,3046,'4.99','2005-06-20 12:42:59','2006-02-15 22:21:58'), - (14966,559,1,3370,'1.99','2005-06-21 13:27:01','2006-02-15 22:21:58'), - (14967,559,1,3674,'5.99','2005-07-06 09:03:13','2006-02-15 22:21:58'), - (14968,559,1,4120,'4.99','2005-07-07 07:07:03','2006-02-15 22:21:58'), - (14969,559,1,4370,'7.99','2005-07-07 20:05:36','2006-02-15 22:21:58'), - (14970,559,2,5396,'1.99','2005-07-09 19:42:52','2006-02-15 22:21:58'), - (14971,559,1,6201,'4.99','2005-07-11 12:18:07','2006-02-15 22:21:58'), - (14972,559,1,6915,'2.99','2005-07-12 22:28:09','2006-02-15 22:21:58'), - (14973,559,1,7169,'1.99','2005-07-27 07:51:39','2006-02-15 22:21:59'), - (14974,559,1,7680,'1.99','2005-07-28 02:59:08','2006-02-15 22:21:59'), - (14975,559,1,8631,'1.99','2005-07-29 14:08:06','2006-02-15 22:21:59'), - (14976,559,2,9134,'0.99','2005-07-30 10:00:21','2006-02-15 22:21:59'), - (14977,559,1,9877,'2.99','2005-07-31 13:41:57','2006-02-15 22:21:59'), - (14978,559,2,10146,'2.99','2005-07-31 22:17:56','2006-02-15 22:21:59'), - (14979,559,1,10377,'3.99','2005-08-01 06:28:28','2006-02-15 22:21:59'), - (14980,559,1,10669,'8.99','2005-08-01 17:03:28','2006-02-15 22:21:59'), - (14981,559,2,10876,'0.99','2005-08-02 00:31:58','2006-02-15 22:21:59'), - (14982,559,2,11136,'1.99','2005-08-02 09:22:57','2006-02-15 22:21:59'), - (14983,559,1,13234,'1.99','2005-08-19 16:17:15','2006-02-15 22:21:59'), - (14984,559,2,13248,'6.99','2005-08-19 16:47:41','2006-02-15 22:21:59'), - (14985,559,2,13322,'4.99','2005-08-19 19:43:08','2006-02-15 22:21:59'), - (14986,559,1,13845,'5.99','2005-08-20 14:31:21','2006-02-15 22:21:59'), - (14987,559,1,14342,'4.99','2005-08-21 08:39:26','2006-02-15 22:22:00'), - (14988,559,2,14622,'4.99','2005-08-21 18:25:59','2006-02-15 22:22:00'), - (14989,559,2,15440,'4.99','2005-08-23 00:37:21','2006-02-15 22:22:00'), - (14990,559,1,15877,'4.99','2005-08-23 16:33:33','2006-02-15 22:22:00'), - (14991,560,1,137,'2.99','2005-05-25 22:25:18','2006-02-15 22:22:00'), - (14992,560,1,1271,'4.99','2005-06-15 07:32:24','2006-02-15 22:22:00'), - (14993,560,2,1572,'1.99','2005-06-16 03:23:22','2006-02-15 22:22:00'), - (14994,560,1,3941,'4.99','2005-07-06 21:20:37','2006-02-15 22:22:00'), - (14995,560,1,4298,'2.99','2005-07-07 16:27:25','2006-02-15 22:22:00'), - (14996,560,2,4375,'9.99','2005-07-07 20:20:29','2006-02-15 22:22:00'), - (14997,560,1,4453,'0.99','2005-07-07 23:32:39','2006-02-15 22:22:00'), - (14998,560,2,5208,'2.99','2005-07-09 11:16:56','2006-02-15 22:22:00'), - (14999,560,1,6410,'4.99','2005-07-11 23:08:06','2006-02-15 22:22:00'), - (15000,560,1,6945,'2.99','2005-07-26 23:35:29','2006-02-15 22:22:00'), - (15001,560,2,7202,'4.99','2005-07-27 09:00:20','2006-02-15 22:22:00'), - (15002,560,1,7891,'3.99','2005-07-28 10:43:56','2006-02-15 22:22:01'), - (15003,560,1,8753,'2.99','2005-07-29 19:15:50','2006-02-15 22:22:01'), - (15004,560,2,8861,'5.99','2005-07-29 23:47:29','2006-02-15 22:22:01'), - (15005,560,2,8906,'4.99','2005-07-30 01:21:39','2006-02-15 22:22:01'), - (15006,560,1,9265,'0.99','2005-07-30 14:55:25','2006-02-15 22:22:01'), - (15007,560,2,9895,'5.99','2005-07-31 14:07:56','2006-02-15 22:22:01'), - (15008,560,2,10480,'4.99','2005-08-01 10:13:41','2006-02-15 22:22:01'), - (15009,560,1,10702,'4.99','2005-08-01 18:34:59','2006-02-15 22:22:01'), - (15010,560,1,10733,'7.99','2005-08-01 19:28:01','2006-02-15 22:22:01'), - (15011,560,1,11334,'7.99','2005-08-02 16:53:20','2006-02-15 22:22:01'), - (15012,560,1,11788,'4.99','2005-08-17 10:59:18','2006-02-15 22:22:01'), - (15013,560,2,14008,'5.99','2005-08-20 20:26:00','2006-02-15 22:22:01'), - (15014,560,1,14341,'1.99','2005-08-21 08:38:24','2006-02-15 22:22:01'), - (15015,560,2,14363,'4.99','2005-08-21 09:20:03','2006-02-15 22:22:01'), - (15016,560,1,14436,'2.99','2005-08-21 11:48:27','2006-02-15 22:22:01'), - (15017,560,2,14785,'2.99','2005-08-22 00:24:37','2006-02-15 22:22:02'), - (15018,560,1,15352,'6.99','2005-08-22 21:16:54','2006-02-15 22:22:02'), - (15019,560,2,12116,'5.98','2006-02-14 15:16:03','2006-02-15 22:22:02'), - (15020,560,2,14425,'0.00','2006-02-14 15:16:03','2006-02-15 22:22:02'), - (15021,561,1,902,'4.99','2005-05-30 09:53:36','2006-02-15 22:22:02'), - (15022,561,2,971,'4.99','2005-05-30 20:10:52','2006-02-15 22:22:02'), - (15023,561,2,1193,'2.99','2005-06-15 01:24:20','2006-02-15 22:22:02'), - (15024,561,2,1505,'2.99','2005-06-15 22:12:50','2006-02-15 22:22:02'), - (15025,561,2,1620,'4.99','2005-06-16 07:21:30','2006-02-15 22:22:02'), - (15026,561,1,2119,'4.99','2005-06-17 20:34:42','2006-02-15 22:22:02'), - (15027,561,1,2357,'5.99','2005-06-18 12:59:41','2006-02-15 22:22:02'), - (15028,561,1,2548,'0.99','2005-06-19 02:45:35','2006-02-15 22:22:02'), - (15029,561,1,2950,'4.99','2005-06-20 06:08:36','2006-02-15 22:22:02'), - (15030,561,1,3160,'4.99','2005-06-20 21:20:51','2006-02-15 22:22:02'), - (15031,561,1,3427,'0.99','2005-06-21 18:31:09','2006-02-15 22:22:03'), - (15032,561,2,6361,'2.99','2005-07-11 21:09:14','2006-02-15 22:22:03'), - (15033,561,1,6435,'0.99','2005-07-12 00:16:19','2006-02-15 22:22:03'), - (15034,561,1,6621,'0.99','2005-07-12 08:57:30','2006-02-15 22:22:03'), - (15035,561,1,6843,'4.99','2005-07-12 19:14:05','2006-02-15 22:22:03'), - (15036,561,1,7698,'0.99','2005-07-28 03:44:14','2006-02-15 22:22:03'), - (15037,561,1,8504,'10.99','2005-07-29 09:20:16','2006-02-15 22:22:03'), - (15038,561,2,9839,'7.99','2005-07-31 12:21:16','2006-02-15 22:22:03'), - (15039,561,2,10317,'2.99','2005-08-01 04:35:34','2006-02-15 22:22:03'), - (15040,561,1,10907,'4.99','2005-08-02 01:51:48','2006-02-15 22:22:03'), - (15041,561,1,11371,'2.99','2005-08-02 18:07:36','2006-02-15 22:22:03'), - (15042,561,2,11402,'2.99','2005-08-02 19:07:21','2006-02-15 22:22:03'), - (15043,561,2,12441,'2.99','2005-08-18 10:47:57','2006-02-15 22:22:03'), - (15044,561,2,14139,'0.99','2005-08-21 02:04:33','2006-02-15 22:22:03'), - (15045,561,1,15573,'0.99','2005-08-23 05:28:36','2006-02-15 22:22:03'), - (15046,561,1,15946,'2.99','2005-08-23 18:54:07','2006-02-15 22:22:04'), - (15047,561,1,14415,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:04'), - (15048,562,2,788,'2.99','2005-05-29 16:13:55','2006-02-15 22:22:04'), - (15049,562,1,941,'2.99','2005-05-30 15:02:25','2006-02-15 22:22:04'), - (15050,562,1,1139,'5.99','2005-05-31 19:34:52','2006-02-15 22:22:04'), - (15051,562,1,1998,'3.99','2005-06-17 11:24:57','2006-02-15 22:22:04'), - (15052,562,1,2705,'4.99','2005-06-19 13:54:30','2006-02-15 22:22:04'), - (15053,562,1,2746,'3.99','2005-06-19 16:21:40','2006-02-15 22:22:04'), - (15054,562,2,3242,'4.99','2005-06-21 02:56:24','2006-02-15 22:22:04'), - (15055,562,2,4732,'5.99','2005-07-08 13:09:45','2006-02-15 22:22:04'), - (15056,562,1,4802,'4.99','2005-07-08 16:55:17','2006-02-15 22:22:04'), - (15057,562,2,5360,'0.99','2005-07-09 18:14:03','2006-02-15 22:22:04'), - (15058,562,2,6065,'6.99','2005-07-11 04:25:51','2006-02-15 22:22:04'), - (15059,562,1,6607,'8.99','2005-07-12 08:08:50','2006-02-15 22:22:04'), - (15060,562,2,7166,'3.99','2005-07-27 07:36:56','2006-02-15 22:22:04'), - (15061,562,1,7430,'2.99','2005-07-27 17:26:14','2006-02-15 22:22:05'), - (15062,562,2,7560,'2.99','2005-07-27 22:20:17','2006-02-15 22:22:05'), - (15063,562,2,8132,'0.99','2005-07-28 19:57:31','2006-02-15 22:22:05'), - (15064,562,2,10868,'6.99','2005-08-02 00:25:15','2006-02-15 22:22:05'), - (15065,562,2,12008,'4.99','2005-08-17 19:16:18','2006-02-15 22:22:05'), - (15066,562,1,12248,'5.99','2005-08-18 03:53:18','2006-02-15 22:22:05'), - (15067,562,2,13225,'2.99','2005-08-19 15:54:33','2006-02-15 22:22:05'), - (15068,562,2,13347,'10.99','2005-08-19 20:28:48','2006-02-15 22:22:05'), - (15069,562,2,13639,'0.99','2005-08-20 07:22:07','2006-02-15 22:22:05'), - (15070,562,1,15212,'2.99','2005-08-22 16:44:26','2006-02-15 22:22:05'), - (15071,562,2,15475,'2.99','2005-08-23 01:44:43','2006-02-15 22:22:05'), - (15072,562,1,15900,'1.99','2005-08-23 17:16:30','2006-02-15 22:22:05'), - (15073,563,1,758,'4.99','2005-05-29 10:31:56','2006-02-15 22:22:05'), - (15074,563,2,773,'5.99','2005-05-29 13:18:05','2006-02-15 22:22:05'), - (15075,563,2,1545,'4.99','2005-06-16 01:31:23','2006-02-15 22:22:06'), - (15076,563,2,2573,'0.99','2005-06-19 04:23:18','2006-02-15 22:22:06'), - (15077,563,1,4106,'1.99','2005-07-07 06:33:35','2006-02-15 22:22:06'), - (15078,563,2,4436,'0.99','2005-07-07 22:52:04','2006-02-15 22:22:06'), - (15079,563,1,4565,'3.99','2005-07-08 05:12:28','2006-02-15 22:22:06'), - (15080,563,2,4629,'6.99','2005-07-08 08:31:26','2006-02-15 22:22:06'), - (15081,563,2,4711,'2.99','2005-07-08 12:06:58','2006-02-15 22:22:06'), - (15082,563,2,4776,'5.99','2005-07-08 15:44:20','2006-02-15 22:22:06'), - (15083,563,2,4808,'3.99','2005-07-08 17:02:49','2006-02-15 22:22:06'), - (15084,563,2,4825,'4.99','2005-07-08 17:43:01','2006-02-15 22:22:06'), - (15085,563,1,4883,'0.99','2005-07-08 19:46:58','2006-02-15 22:22:06'), - (15086,563,1,5406,'0.99','2005-07-09 20:13:23','2006-02-15 22:22:06'), - (15087,563,2,6326,'2.99','2005-07-11 19:06:55','2006-02-15 22:22:06'), - (15088,563,2,7612,'0.99','2005-07-28 00:11:55','2006-02-15 22:22:06'), - (15089,563,1,8262,'1.99','2005-07-29 01:11:18','2006-02-15 22:22:06'), - (15090,563,1,8610,'5.99','2005-07-29 13:25:02','2006-02-15 22:22:07'), - (15091,563,2,8632,'6.99','2005-07-29 14:11:25','2006-02-15 22:22:07'), - (15092,563,2,8812,'7.99','2005-07-29 21:47:40','2006-02-15 22:22:07'), - (15093,563,2,11829,'0.99','2005-08-17 12:52:04','2006-02-15 22:22:07'), - (15094,563,1,12039,'1.99','2005-08-17 20:29:08','2006-02-15 22:22:07'), - (15095,563,1,12202,'1.99','2005-08-18 02:14:08','2006-02-15 22:22:07'), - (15096,563,1,12832,'2.99','2005-08-19 01:41:44','2006-02-15 22:22:07'), - (15097,563,2,13863,'9.99','2005-08-20 14:57:50','2006-02-15 22:22:07'), - (15098,563,2,14592,'4.99','2005-08-21 17:30:17','2006-02-15 22:22:07'), - (15099,563,2,15507,'0.99','2005-08-23 02:48:26','2006-02-15 22:22:07'), - (15100,563,2,15638,'3.99','2005-08-23 07:54:54','2006-02-15 22:22:07'), - (15101,563,1,15850,'4.99','2005-08-23 15:45:42','2006-02-15 22:22:07'), - (15102,564,2,195,'5.99','2005-05-26 06:52:36','2006-02-15 22:22:07'), - (15103,564,1,985,'2.99','2005-05-30 22:18:35','2006-02-15 22:22:07'), - (15104,564,2,1705,'2.99','2005-06-16 13:59:42','2006-02-15 22:22:07'), - (15105,564,1,4196,'2.99','2005-07-07 11:06:33','2006-02-15 22:22:08'), - (15106,564,2,4385,'0.99','2005-07-07 20:48:38','2006-02-15 22:22:08'), - (15107,564,1,6973,'2.99','2005-07-27 00:32:04','2006-02-15 22:22:08'), - (15108,564,2,7470,'10.99','2005-07-27 19:01:03','2006-02-15 22:22:08'), - (15109,564,2,8426,'4.99','2005-07-29 07:07:48','2006-02-15 22:22:08'), - (15110,564,1,8874,'0.99','2005-07-30 00:14:45','2006-02-15 22:22:08'), - (15111,564,2,9063,'3.99','2005-07-30 07:24:34','2006-02-15 22:22:08'), - (15112,564,2,9929,'2.99','2005-07-31 15:17:24','2006-02-15 22:22:08'), - (15113,564,1,10129,'6.99','2005-07-31 21:41:35','2006-02-15 22:22:08'), - (15114,564,2,10352,'1.99','2005-08-01 05:44:36','2006-02-15 22:22:08'), - (15115,564,2,10401,'4.99','2005-08-01 07:27:09','2006-02-15 22:22:08'), - (15116,564,1,10528,'2.99','2005-08-01 11:56:22','2006-02-15 22:22:08'), - (15117,564,2,11768,'2.99','2005-08-17 10:02:29','2006-02-15 22:22:08'), - (15118,564,2,12197,'6.99','2005-08-18 02:08:58','2006-02-15 22:22:08'), - (15119,564,2,12617,'2.99','2005-08-18 17:22:48','2006-02-15 22:22:09'), - (15120,564,2,13324,'0.99','2005-08-19 19:51:00','2006-02-15 22:22:09'), - (15121,564,2,13558,'0.99','2005-08-20 04:13:17','2006-02-15 22:22:09'), - (15122,564,1,13701,'0.99','2005-08-20 09:27:05','2006-02-15 22:22:09'), - (15123,564,2,14439,'5.99','2005-08-21 11:52:41','2006-02-15 22:22:09'), - (15124,564,1,14593,'0.99','2005-08-21 17:33:18','2006-02-15 22:22:09'), - (15125,564,2,15059,'8.99','2005-08-22 10:22:00','2006-02-15 22:22:09'), - (15126,565,1,458,'6.99','2005-05-27 19:58:36','2006-02-15 22:22:09'), - (15127,565,1,1004,'0.99','2005-05-31 00:48:36','2006-02-15 22:22:09'), - (15128,565,2,1460,'4.99','2005-06-15 20:27:02','2006-02-15 22:22:09'), - (15129,565,1,2321,'5.99','2005-06-18 09:42:42','2006-02-15 22:22:09'), - (15130,565,1,3300,'5.99','2005-06-21 07:25:01','2006-02-15 22:22:09'), - (15131,565,2,3470,'0.99','2005-07-05 22:49:24','2006-02-15 22:22:09'), - (15132,565,1,3838,'2.99','2005-07-06 16:29:43','2006-02-15 22:22:09'), - (15133,565,1,4413,'2.99','2005-07-07 22:00:04','2006-02-15 22:22:09'), - (15134,565,2,5020,'0.99','2005-07-09 02:07:56','2006-02-15 22:22:10'), - (15135,565,1,5124,'4.99','2005-07-09 07:25:19','2006-02-15 22:22:10'), - (15136,565,1,6264,'2.99','2005-07-11 15:42:35','2006-02-15 22:22:10'), - (15137,565,1,6627,'2.99','2005-07-12 09:16:46','2006-02-15 22:22:10'), - (15138,565,1,6699,'0.99','2005-07-12 12:45:21','2006-02-15 22:22:10'), - (15139,565,2,7242,'5.99','2005-07-27 10:25:51','2006-02-15 22:22:10'), - (15140,565,1,9628,'2.99','2005-07-31 04:51:11','2006-02-15 22:22:10'), - (15141,565,1,10025,'5.99','2005-07-31 18:29:09','2006-02-15 22:22:10'), - (15142,565,2,10776,'10.99','2005-08-01 20:59:58','2006-02-15 22:22:10'), - (15143,565,2,10913,'3.99','2005-08-02 02:04:03','2006-02-15 22:22:10'), - (15144,565,2,11189,'6.99','2005-08-02 11:17:23','2006-02-15 22:22:10'), - (15145,565,1,11399,'3.99','2005-08-02 18:56:28','2006-02-15 22:22:10'), - (15146,565,2,11506,'4.99','2005-08-16 23:25:48','2006-02-15 22:22:10'), - (15147,565,1,11588,'3.99','2005-08-17 02:26:23','2006-02-15 22:22:10'), - (15148,565,1,11795,'2.99','2005-08-17 11:13:38','2006-02-15 22:22:10'), - (15149,565,2,12743,'5.99','2005-08-18 22:22:31','2006-02-15 22:22:11'), - (15150,565,2,13195,'4.99','2005-08-19 14:39:14','2006-02-15 22:22:11'), - (15151,565,2,13217,'4.99','2005-08-19 15:38:39','2006-02-15 22:22:11'), - (15152,565,1,13362,'0.99','2005-08-19 21:07:54','2006-02-15 22:22:11'), - (15153,565,1,13925,'8.99','2005-08-20 17:05:34','2006-02-15 22:22:11'), - (15154,565,1,15885,'2.99','2005-08-23 16:50:43','2006-02-15 22:22:11'), - (15155,566,2,234,'5.99','2005-05-26 11:47:20','2006-02-15 22:22:11'), - (15156,566,2,768,'4.99','2005-05-29 12:30:46','2006-02-15 22:22:11'), - (15157,566,1,1635,'5.99','2005-06-16 08:26:56','2006-02-15 22:22:11'), - (15158,566,2,1982,'4.99','2005-06-17 10:12:15','2006-02-15 22:22:11'), - (15159,566,1,2367,'0.99','2005-06-18 14:00:31','2006-02-15 22:22:11'), - (15160,566,1,3379,'4.99','2005-06-21 13:54:58','2006-02-15 22:22:11'), - (15161,566,2,3663,'4.99','2005-07-06 08:15:47','2006-02-15 22:22:11'), - (15162,566,1,3943,'0.99','2005-07-06 21:22:17','2006-02-15 22:22:11'), - (15163,566,1,3998,'3.99','2005-07-06 23:49:20','2006-02-15 22:22:12'), - (15164,566,1,5079,'9.99','2005-07-09 05:20:40','2006-02-15 22:22:12'), - (15165,566,2,6365,'2.99','2005-07-11 21:17:40','2006-02-15 22:22:12'), - (15166,566,1,7677,'2.99','2005-07-28 02:56:37','2006-02-15 22:22:12'), - (15167,566,2,7941,'0.99','2005-07-28 12:47:20','2006-02-15 22:22:12'), - (15168,566,2,8118,'2.99','2005-07-28 19:22:22','2006-02-15 22:22:12'), - (15169,566,1,8157,'6.99','2005-07-28 21:06:45','2006-02-15 22:22:12'), - (15170,566,1,8257,'2.99','2005-07-29 01:03:20','2006-02-15 22:22:12'), - (15171,566,2,8305,'1.99','2005-07-29 03:08:47','2006-02-15 22:22:12'), - (15172,566,2,8660,'6.99','2005-07-29 15:26:59','2006-02-15 22:22:12'), - (15173,566,1,8710,'0.99','2005-07-29 17:26:03','2006-02-15 22:22:12'), - (15174,566,1,8797,'4.99','2005-07-29 21:10:37','2006-02-15 22:22:12'), - (15175,566,2,9101,'4.99','2005-07-30 08:47:13','2006-02-15 22:22:12'), - (15176,566,2,9470,'4.99','2005-07-30 23:01:31','2006-02-15 22:22:12'), - (15177,566,1,9688,'3.99','2005-07-31 06:56:08','2006-02-15 22:22:12'), - (15178,566,2,9915,'2.99','2005-07-31 14:52:26','2006-02-15 22:22:13'), - (15179,566,2,10259,'2.99','2005-08-01 02:52:05','2006-02-15 22:22:13'), - (15180,566,2,10289,'6.99','2005-08-01 03:39:48','2006-02-15 22:22:13'), - (15181,566,2,11129,'2.99','2005-08-02 09:08:44','2006-02-15 22:22:13'), - (15182,566,1,11717,'0.99','2005-08-17 07:44:09','2006-02-15 22:22:13'), - (15183,566,1,11941,'1.99','2005-08-17 16:56:57','2006-02-15 22:22:13'), - (15184,566,2,12382,'8.99','2005-08-18 08:32:33','2006-02-15 22:22:13'), - (15185,566,2,12995,'4.99','2005-08-19 07:26:30','2006-02-15 22:22:13'), - (15186,566,2,13762,'4.99','2005-08-20 11:29:32','2006-02-15 22:22:13'), - (15187,566,1,14277,'3.99','2005-08-21 06:34:41','2006-02-15 22:22:13'), - (15188,566,1,14297,'2.99','2005-08-21 07:13:46','2006-02-15 22:22:13'), - (15189,567,2,2689,'4.99','2005-06-19 12:58:53','2006-02-15 22:22:13'), - (15190,567,1,3010,'2.99','2005-06-20 10:29:59','2006-02-15 22:22:13'), - (15191,567,1,3769,'5.99','2005-07-06 13:11:33','2006-02-15 22:22:13'), - (15192,567,2,4457,'0.99','2005-07-07 23:45:38','2006-02-15 22:22:14'), - (15193,567,2,4576,'0.99','2005-07-08 05:51:19','2006-02-15 22:22:14'), - (15194,567,1,4949,'4.99','2005-07-08 22:57:10','2006-02-15 22:22:14'), - (15195,567,2,6358,'2.99','2005-07-11 21:03:12','2006-02-15 22:22:14'), - (15196,567,2,6551,'0.99','2005-07-12 05:03:43','2006-02-15 22:22:14'), - (15197,567,2,7340,'2.99','2005-07-27 14:18:10','2006-02-15 22:22:14'), - (15198,567,1,8201,'2.99','2005-07-28 23:10:48','2006-02-15 22:22:14'), - (15199,567,1,8629,'2.99','2005-07-29 14:06:35','2006-02-15 22:22:14'), - (15200,567,1,9279,'7.99','2005-07-30 15:15:21','2006-02-15 22:22:14'), - (15201,567,1,9475,'6.99','2005-07-30 23:06:33','2006-02-15 22:22:14'), - (15202,567,2,10708,'7.99','2005-08-01 18:43:28','2006-02-15 22:22:14'), - (15203,567,2,11749,'2.99','2005-08-17 09:04:03','2006-02-15 22:22:14'), - (15204,567,1,12119,'2.99','2005-08-17 23:16:44','2006-02-15 22:22:14'), - (15205,567,2,13031,'2.99','2005-08-19 08:30:04','2006-02-15 22:22:14'), - (15206,567,2,14839,'2.99','2005-08-22 01:58:15','2006-02-15 22:22:14'), - (15207,567,2,15074,'5.99','2005-08-22 11:02:52','2006-02-15 22:22:15'), - (15208,567,2,15594,'10.99','2005-08-23 06:18:43','2006-02-15 22:22:15'), - (15209,568,2,1658,'4.99','2005-06-16 10:07:10','2006-02-15 22:22:15'), - (15210,568,2,2382,'4.99','2005-06-18 15:03:52','2006-02-15 22:22:15'), - (15211,568,2,2668,'0.99','2005-06-19 11:28:47','2006-02-15 22:22:15'), - (15212,568,1,3227,'4.99','2005-06-21 02:18:25','2006-02-15 22:22:15'), - (15213,568,2,3462,'1.99','2005-06-21 21:52:52','2006-02-15 22:22:15'), - (15214,568,1,4322,'2.99','2005-07-07 17:54:37','2006-02-15 22:22:15'), - (15215,568,2,5332,'2.99','2005-07-09 16:59:23','2006-02-15 22:22:15'), - (15216,568,1,5622,'0.99','2005-07-10 05:39:37','2006-02-15 22:22:15'), - (15217,568,1,5776,'4.99','2005-07-10 13:35:22','2006-02-15 22:22:15'), - (15218,568,2,7068,'2.99','2005-07-27 03:57:50','2006-02-15 22:22:15'), - (15219,568,2,8185,'0.99','2005-07-28 22:23:49','2006-02-15 22:22:15'), - (15220,568,2,9583,'6.99','2005-07-31 03:05:21','2006-02-15 22:22:15'), - (15221,568,1,9738,'0.99','2005-07-31 09:04:14','2006-02-15 22:22:16'), - (15222,568,1,10340,'2.99','2005-08-01 05:07:03','2006-02-15 22:22:16'), - (15223,568,2,10689,'0.99','2005-08-01 18:04:18','2006-02-15 22:22:16'), - (15224,568,2,10869,'0.99','2005-08-02 00:26:54','2006-02-15 22:22:16'), - (15225,568,1,11331,'2.99','2005-08-02 16:49:01','2006-02-15 22:22:16'), - (15226,568,1,13883,'4.99','2005-08-20 15:28:53','2006-02-15 22:22:16'), - (15227,568,2,15069,'5.99','2005-08-22 10:55:42','2006-02-15 22:22:16'), - (15228,568,1,15203,'2.99','2005-08-22 16:28:00','2006-02-15 22:22:16'), - (15229,568,2,14531,'2.99','2006-02-14 15:16:03','2006-02-15 22:22:16'), - (15230,569,2,53,'4.99','2005-05-25 07:19:16','2006-02-15 22:22:16'), - (15231,569,1,487,'4.99','2005-05-28 00:00:30','2006-02-15 22:22:16'), - (15232,569,1,624,'4.99','2005-05-28 16:13:22','2006-02-15 22:22:16'), - (15233,569,1,647,'1.99','2005-05-28 19:22:52','2006-02-15 22:22:16'), - (15234,569,2,1037,'3.99','2005-05-31 05:22:25','2006-02-15 22:22:16'), - (15235,569,1,1463,'6.99','2005-06-15 20:37:51','2006-02-15 22:22:16'), - (15236,569,2,1668,'5.99','2005-06-16 10:19:52','2006-02-15 22:22:17'), - (15237,569,1,4204,'5.99','2005-07-07 11:24:18','2006-02-15 22:22:17'), - (15238,569,2,5003,'0.99','2005-07-09 01:19:03','2006-02-15 22:22:17'), - (15239,569,2,6046,'5.99','2005-07-11 03:21:49','2006-02-15 22:22:17'), - (15240,569,1,8910,'2.99','2005-07-30 01:29:48','2006-02-15 22:22:17'), - (15241,569,2,9220,'1.99','2005-07-30 13:17:27','2006-02-15 22:22:17'), - (15242,569,1,9399,'4.99','2005-07-30 20:14:50','2006-02-15 22:22:17'), - (15243,569,2,9960,'1.99','2005-07-31 16:05:52','2006-02-15 22:22:17'), - (15244,569,2,10192,'2.99','2005-08-01 00:33:00','2006-02-15 22:22:17'), - (15245,569,2,10884,'0.99','2005-08-02 00:47:33','2006-02-15 22:22:17'), - (15246,569,1,11030,'1.99','2005-08-02 05:51:20','2006-02-15 22:22:17'), - (15247,569,2,11255,'4.99','2005-08-02 13:44:30','2006-02-15 22:22:17'), - (15248,569,1,11354,'6.99','2005-08-02 17:35:10','2006-02-15 22:22:17'), - (15249,569,1,11946,'4.99','2005-08-17 17:05:53','2006-02-15 22:22:17'), - (15250,569,1,12157,'2.99','2005-08-18 00:33:45','2006-02-15 22:22:18'), - (15251,569,2,12308,'0.99','2005-08-18 05:48:53','2006-02-15 22:22:18'), - (15252,569,1,12568,'3.99','2005-08-18 15:15:44','2006-02-15 22:22:18'), - (15253,569,2,12958,'2.99','2005-08-19 06:19:21','2006-02-15 22:22:18'), - (15254,569,1,13287,'7.99','2005-08-19 18:28:24','2006-02-15 22:22:18'), - (15255,569,2,13554,'9.99','2005-08-20 04:08:39','2006-02-15 22:22:18'), - (15256,569,2,14207,'4.99','2005-08-21 04:08:19','2006-02-15 22:22:18'), - (15257,569,2,14400,'0.99','2005-08-21 10:33:45','2006-02-15 22:22:18'), - (15258,569,1,14896,'8.99','2005-08-22 04:20:55','2006-02-15 22:22:18'), - (15259,569,1,14959,'2.99','2005-08-22 06:30:28','2006-02-15 22:22:18'), - (15260,569,2,15617,'0.99','2005-08-23 07:07:22','2006-02-15 22:22:18'), - (15261,569,2,16025,'4.99','2005-08-23 21:48:54','2006-02-15 22:22:18'), - (15262,570,2,1060,'7.99','2005-05-31 08:21:43','2006-02-15 22:22:18'), - (15263,570,1,1259,'4.99','2005-06-15 06:37:55','2006-02-15 22:22:18'), - (15264,570,2,1417,'4.99','2005-06-15 17:45:51','2006-02-15 22:22:18'), - (15265,570,2,1804,'2.99','2005-06-16 20:33:15','2006-02-15 22:22:19'), - (15266,570,2,2008,'5.99','2005-06-17 11:48:05','2006-02-15 22:22:19'), - (15267,570,2,2031,'6.99','2005-06-17 13:14:03','2006-02-15 22:22:19'), - (15268,570,2,2261,'3.99','2005-06-18 05:46:15','2006-02-15 22:22:19'), - (15269,570,2,3138,'2.99','2005-06-20 19:43:45','2006-02-15 22:22:19'), - (15270,570,2,3984,'0.99','2005-07-06 23:22:36','2006-02-15 22:22:19'), - (15271,570,1,4069,'0.99','2005-07-07 04:35:06','2006-02-15 22:22:19'), - (15272,570,1,4698,'0.99','2005-07-08 11:19:31','2006-02-15 22:22:19'), - (15273,570,2,5638,'4.99','2005-07-10 06:32:49','2006-02-15 22:22:19'), - (15274,570,1,6253,'4.99','2005-07-11 15:07:19','2006-02-15 22:22:19'), - (15275,570,1,6556,'0.99','2005-07-12 05:10:16','2006-02-15 22:22:19'), - (15276,570,2,7174,'4.99','2005-07-27 08:00:36','2006-02-15 22:22:19'), - (15277,570,2,8735,'4.99','2005-07-29 18:28:54','2006-02-15 22:22:19'), - (15278,570,1,9385,'7.99','2005-07-30 19:25:49','2006-02-15 22:22:19'), - (15279,570,1,9398,'0.99','2005-07-30 20:09:00','2006-02-15 22:22:20'), - (15280,570,2,9432,'2.99','2005-07-30 21:26:18','2006-02-15 22:22:20'), - (15281,570,1,9766,'4.99','2005-07-31 09:46:29','2006-02-15 22:22:20'), - (15282,570,1,10004,'0.99','2005-07-31 17:51:23','2006-02-15 22:22:20'), - (15283,570,2,10168,'2.99','2005-07-31 23:25:24','2006-02-15 22:22:20'), - (15284,570,1,11098,'3.99','2005-08-02 08:06:18','2006-02-15 22:22:20'), - (15285,570,2,12042,'4.99','2005-08-17 20:36:37','2006-02-15 22:22:20'), - (15286,570,2,14768,'3.99','2005-08-21 23:44:53','2006-02-15 22:22:20'), - (15287,570,1,12716,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:20'), - (15288,571,1,228,'9.99','2005-05-26 10:54:28','2006-02-15 22:22:20'), - (15289,571,2,689,'3.99','2005-05-29 00:46:53','2006-02-15 22:22:20'), - (15290,571,1,1254,'4.99','2005-06-15 06:11:16','2006-02-15 22:22:20'), - (15291,571,2,1400,'3.99','2005-06-15 16:29:56','2006-02-15 22:22:20'), - (15292,571,1,1756,'4.99','2005-06-16 17:22:33','2006-02-15 22:22:20'), - (15293,571,2,1990,'4.99','2005-06-17 10:48:44','2006-02-15 22:22:20'), - (15294,571,1,2327,'2.99','2005-06-18 10:16:40','2006-02-15 22:22:21'), - (15295,571,1,2977,'10.99','2005-06-20 08:15:27','2006-02-15 22:22:21'), - (15296,571,2,3616,'2.99','2005-07-06 05:52:13','2006-02-15 22:22:21'), - (15297,571,1,4162,'4.99','2005-07-07 09:17:26','2006-02-15 22:22:21'), - (15298,571,2,5789,'4.99','2005-07-10 14:11:26','2006-02-15 22:22:21'), - (15299,571,2,6676,'8.99','2005-07-12 11:53:40','2006-02-15 22:22:21'), - (15300,571,1,6792,'8.99','2005-07-12 16:37:28','2006-02-15 22:22:21'), - (15301,571,1,8084,'5.99','2005-07-28 18:11:58','2006-02-15 22:22:21'), - (15302,571,1,8638,'4.99','2005-07-29 14:30:23','2006-02-15 22:22:21'), - (15303,571,2,9300,'1.99','2005-07-30 16:33:12','2006-02-15 22:22:21'), - (15304,571,1,9408,'4.99','2005-07-30 20:32:09','2006-02-15 22:22:21'), - (15305,571,1,10227,'2.99','2005-08-01 01:42:22','2006-02-15 22:22:21'), - (15306,571,2,11080,'2.99','2005-08-02 07:29:56','2006-02-15 22:22:21'), - (15307,571,2,11191,'7.99','2005-08-02 11:24:07','2006-02-15 22:22:21'), - (15308,571,1,13228,'2.99','2005-08-19 16:08:16','2006-02-15 22:22:22'), - (15309,571,2,13266,'2.99','2005-08-19 17:31:20','2006-02-15 22:22:22'), - (15310,571,1,14956,'0.99','2005-08-22 06:26:16','2006-02-15 22:22:22'), - (15311,571,1,15841,'4.99','2005-08-23 15:35:59','2006-02-15 22:22:22'), - (15312,572,2,559,'7.99','2005-05-28 08:39:02','2006-02-15 22:22:22'), - (15313,572,2,1889,'10.99','2005-06-17 04:05:12','2006-02-15 22:22:22'), - (15314,572,1,2007,'0.99','2005-06-17 11:47:17','2006-02-15 22:22:22'), - (15315,572,1,2458,'0.99','2005-06-18 19:39:05','2006-02-15 22:22:22'), - (15316,572,1,4601,'2.99','2005-07-08 06:49:10','2006-02-15 22:22:22'), - (15317,572,1,5595,'4.99','2005-07-10 04:33:45','2006-02-15 22:22:22'), - (15318,572,1,5713,'6.99','2005-07-10 10:46:15','2006-02-15 22:22:22'), - (15319,572,2,6108,'2.99','2005-07-11 07:19:24','2006-02-15 22:22:22'), - (15320,572,1,7161,'4.99','2005-07-27 07:26:32','2006-02-15 22:22:22'), - (15321,572,1,7345,'4.99','2005-07-27 14:29:53','2006-02-15 22:22:22'), - (15322,572,2,7713,'6.99','2005-07-28 04:32:14','2006-02-15 22:22:23'), - (15323,572,2,8342,'0.99','2005-07-29 04:45:05','2006-02-15 22:22:23'), - (15324,572,1,8432,'0.99','2005-07-29 07:13:33','2006-02-15 22:22:23'), - (15325,572,1,9081,'3.99','2005-07-30 08:09:58','2006-02-15 22:22:23'), - (15326,572,2,9950,'5.99','2005-07-31 15:50:22','2006-02-15 22:22:23'), - (15327,572,2,10204,'4.99','2005-08-01 00:47:39','2006-02-15 22:22:23'), - (15328,572,1,11114,'0.99','2005-08-02 08:26:45','2006-02-15 22:22:23'), - (15329,572,1,11121,'4.99','2005-08-02 08:48:31','2006-02-15 22:22:23'), - (15330,572,2,11415,'2.99','2005-08-02 19:43:38','2006-02-15 22:22:23'), - (15331,572,1,11426,'4.99','2005-08-02 20:00:09','2006-02-15 22:22:23'), - (15332,572,1,11526,'4.99','2005-08-17 00:17:38','2006-02-15 22:22:23'), - (15333,572,1,12256,'1.99','2005-08-18 04:09:39','2006-02-15 22:22:23'), - (15334,572,2,13377,'1.99','2005-08-19 21:32:23','2006-02-15 22:22:23'), - (15335,572,2,13523,'6.99','2005-08-20 02:47:03','2006-02-15 22:22:23'), - (15336,572,1,13688,'5.99','2005-08-20 08:59:38','2006-02-15 22:22:23'), - (15337,573,2,827,'2.99','2005-05-29 21:58:43','2006-02-15 22:22:24'), - (15338,573,1,1613,'4.99','2005-06-16 06:55:10','2006-02-15 22:22:24'), - (15339,573,2,2622,'5.99','2005-06-19 08:10:41','2006-02-15 22:22:24'), - (15340,573,1,2995,'1.99','2005-06-20 09:18:22','2006-02-15 22:22:24'), - (15341,573,1,3295,'7.99','2005-06-21 07:04:17','2006-02-15 22:22:24'), - (15342,573,2,3768,'0.99','2005-07-06 13:07:30','2006-02-15 22:22:24'), - (15343,573,1,3930,'2.99','2005-07-06 20:54:07','2006-02-15 22:22:24'), - (15344,573,2,4023,'4.99','2005-07-07 01:55:25','2006-02-15 22:22:24'), - (15345,573,1,4085,'0.99','2005-07-07 05:25:39','2006-02-15 22:22:24'), - (15346,573,1,4609,'0.99','2005-07-08 07:22:29','2006-02-15 22:22:24'), - (15347,573,1,4770,'2.99','2005-07-08 15:29:46','2006-02-15 22:22:24'), - (15348,573,1,5036,'5.99','2005-07-09 02:58:41','2006-02-15 22:22:24'), - (15349,573,2,5522,'9.99','2005-07-10 01:46:29','2006-02-15 22:22:24'), - (15350,573,2,5903,'2.99','2005-07-10 20:39:04','2006-02-15 22:22:24'), - (15351,573,1,6693,'7.99','2005-07-12 12:37:00','2006-02-15 22:22:25'), - (15352,573,1,8400,'4.99','2005-07-29 06:23:56','2006-02-15 22:22:25'), - (15353,573,2,9837,'10.99','2005-07-31 12:14:19','2006-02-15 22:22:25'), - (15354,573,2,9846,'4.99','2005-07-31 12:30:12','2006-02-15 22:22:25'), - (15355,573,2,9963,'2.99','2005-07-31 16:16:46','2006-02-15 22:22:25'), - (15356,573,2,9971,'5.99','2005-07-31 16:42:16','2006-02-15 22:22:25'), - (15357,573,1,10296,'0.99','2005-08-01 04:04:37','2006-02-15 22:22:25'), - (15358,573,1,10887,'2.99','2005-08-02 00:52:35','2006-02-15 22:22:25'), - (15359,573,1,11043,'0.99','2005-08-02 06:04:44','2006-02-15 22:22:25'), - (15360,573,2,11912,'5.99','2005-08-17 15:51:49','2006-02-15 22:22:25'), - (15361,573,1,12017,'1.99','2005-08-17 19:33:49','2006-02-15 22:22:25'), - (15362,573,1,12125,'1.99','2005-08-17 23:24:25','2006-02-15 22:22:25'), - (15363,573,1,12269,'6.99','2005-08-18 04:27:54','2006-02-15 22:22:25'), - (15364,573,1,12791,'0.99','2005-08-19 00:17:09','2006-02-15 22:22:25'), - (15365,573,2,13113,'2.99','2005-08-19 11:27:20','2006-02-15 22:22:25'), - (15366,574,2,433,'0.99','2005-05-27 16:40:40','2006-02-15 22:22:26'), - (15367,574,1,1559,'0.99','2005-06-16 02:35:03','2006-02-15 22:22:26'), - (15368,574,2,1636,'5.99','2005-06-16 08:28:54','2006-02-15 22:22:26'), - (15369,574,1,1817,'0.99','2005-06-16 21:20:52','2006-02-15 22:22:26'), - (15370,574,1,2632,'0.99','2005-06-19 08:51:47','2006-02-15 22:22:26'), - (15371,574,1,3220,'6.99','2005-06-21 01:46:25','2006-02-15 22:22:26'), - (15372,574,1,3583,'7.99','2005-07-06 04:10:43','2006-02-15 22:22:26'), - (15373,574,1,4004,'4.99','2005-07-07 00:20:51','2006-02-15 22:22:26'), - (15374,574,1,4212,'4.99','2005-07-07 11:53:14','2006-02-15 22:22:26'), - (15375,574,2,4890,'2.99','2005-07-08 20:05:38','2006-02-15 22:22:26'), - (15376,574,2,5010,'4.99','2005-07-09 01:33:23','2006-02-15 22:22:26'), - (15377,574,1,5076,'3.99','2005-07-09 05:13:22','2006-02-15 22:22:26'), - (15378,574,1,5077,'3.99','2005-07-09 05:18:01','2006-02-15 22:22:26'), - (15379,574,1,5640,'2.99','2005-07-10 06:38:00','2006-02-15 22:22:26'), - (15380,574,1,6523,'2.99','2005-07-12 04:14:19','2006-02-15 22:22:27'), - (15381,574,1,7093,'1.99','2005-07-27 04:47:00','2006-02-15 22:22:27'), - (15382,574,1,7134,'2.99','2005-07-27 06:33:06','2006-02-15 22:22:27'), - (15383,574,1,7964,'2.99','2005-07-28 13:49:58','2006-02-15 22:22:27'), - (15384,574,1,8303,'4.99','2005-07-29 03:05:56','2006-02-15 22:22:27'), - (15385,574,1,9589,'7.99','2005-07-31 03:13:29','2006-02-15 22:22:27'), - (15386,574,1,9759,'3.99','2005-07-31 09:25:57','2006-02-15 22:22:27'), - (15387,574,1,10347,'4.99','2005-08-01 05:20:03','2006-02-15 22:22:27'), - (15388,574,2,11775,'3.99','2005-08-17 10:25:53','2006-02-15 22:22:27'), - (15389,574,1,12462,'2.99','2005-08-18 11:28:55','2006-02-15 22:22:27'), - (15390,574,1,13589,'4.99','2005-08-20 05:47:25','2006-02-15 22:22:27'), - (15391,574,1,14076,'4.99','2005-08-20 23:20:10','2006-02-15 22:22:27'), - (15392,574,2,14941,'2.99','2005-08-22 05:58:23','2006-02-15 22:22:27'), - (15393,574,2,15214,'2.99','2005-08-22 16:53:29','2006-02-15 22:22:27'), - (15394,575,1,17,'2.99','2005-05-25 01:06:36','2006-02-15 22:22:27'), - (15395,575,1,395,'0.99','2005-05-27 11:45:49','2006-02-15 22:22:28'), - (15396,575,2,454,'4.99','2005-05-27 19:31:36','2006-02-15 22:22:28'), - (15397,575,2,769,'2.99','2005-05-29 12:51:44','2006-02-15 22:22:28'), - (15398,575,1,774,'4.99','2005-05-29 13:19:43','2006-02-15 22:22:28'), - (15399,575,2,1494,'2.99','2005-06-15 21:54:20','2006-02-15 22:22:28'), - (15400,575,1,1824,'2.99','2005-06-16 21:51:04','2006-02-15 22:22:28'), - (15401,575,2,1866,'4.99','2005-06-17 01:53:19','2006-02-15 22:22:28'), - (15402,575,1,3558,'6.99','2005-07-06 02:49:06','2006-02-15 22:22:28'), - (15403,575,2,5875,'8.99','2005-07-10 19:06:47','2006-02-15 22:22:28'), - (15404,575,2,6907,'2.99','2005-07-12 22:03:49','2006-02-15 22:22:28'), - (15405,575,1,7083,'0.99','2005-07-27 04:28:39','2006-02-15 22:22:28'), - (15406,575,1,7139,'2.99','2005-07-27 06:52:21','2006-02-15 22:22:28'), - (15407,575,2,8711,'2.99','2005-07-29 17:27:15','2006-02-15 22:22:28'), - (15408,575,2,8904,'0.99','2005-07-30 01:08:33','2006-02-15 22:22:28'), - (15409,575,2,8989,'4.99','2005-07-30 04:39:19','2006-02-15 22:22:29'), - (15410,575,1,9733,'4.99','2005-07-31 08:57:35','2006-02-15 22:22:29'), - (15411,575,1,10331,'4.99','2005-08-01 04:57:14','2006-02-15 22:22:29'), - (15412,575,2,10629,'7.99','2005-08-01 15:33:32','2006-02-15 22:22:29'), - (15413,575,1,11097,'3.99','2005-08-02 08:05:46','2006-02-15 22:22:29'), - (15414,575,1,11458,'4.99','2005-08-02 21:24:02','2006-02-15 22:22:29'), - (15415,575,1,12204,'7.99','2005-08-18 02:20:35','2006-02-15 22:22:29'), - (15416,575,2,12289,'8.99','2005-08-18 05:05:28','2006-02-15 22:22:29'), - (15417,575,2,12770,'5.99','2005-08-18 23:29:00','2006-02-15 22:22:29'), - (15418,575,2,13408,'4.99','2005-08-19 22:34:51','2006-02-15 22:22:29'), - (15419,575,2,13465,'2.99','2005-08-20 00:54:14','2006-02-15 22:22:29'), - (15420,575,2,14952,'2.99','2005-08-22 06:20:07','2006-02-15 22:22:29'), - (15421,575,2,15749,'4.99','2005-08-23 12:33:41','2006-02-15 22:22:29'), - (15422,575,2,15857,'0.99','2005-08-23 15:59:51','2006-02-15 22:22:29'), - (15423,576,2,755,'2.99','2005-05-29 10:26:29','2006-02-15 22:22:30'), - (15424,576,1,968,'0.99','2005-05-30 19:20:03','2006-02-15 22:22:30'), - (15425,576,1,1366,'4.99','2005-06-15 14:21:00','2006-02-15 22:22:30'), - (15426,576,2,1742,'2.99','2005-06-16 16:37:48','2006-02-15 22:22:30'), - (15427,576,1,2309,'0.99','2005-06-18 08:43:24','2006-02-15 22:22:30'), - (15428,576,2,2444,'8.99','2005-06-18 18:58:12','2006-02-15 22:22:30'), - (15429,576,1,2651,'3.99','2005-06-19 10:22:56','2006-02-15 22:22:30'), - (15430,576,2,2799,'4.99','2005-06-19 19:15:21','2006-02-15 22:22:30'), - (15431,576,2,3226,'6.99','2005-06-21 02:18:14','2006-02-15 22:22:30'), - (15432,576,1,3877,'4.99','2005-07-06 18:22:10','2006-02-15 22:22:30'), - (15433,576,2,3889,'0.99','2005-07-06 18:56:25','2006-02-15 22:22:30'), - (15434,576,2,3934,'4.99','2005-07-06 21:07:23','2006-02-15 22:22:30'), - (15435,576,1,4514,'4.99','2005-07-08 02:41:25','2006-02-15 22:22:30'), - (15436,576,2,5597,'3.99','2005-07-10 04:47:57','2006-02-15 22:22:30'), - (15437,576,1,5934,'4.99','2005-07-10 22:07:59','2006-02-15 22:22:30'), - (15438,576,2,7319,'1.99','2005-07-27 13:31:25','2006-02-15 22:22:31'), - (15439,576,1,7605,'3.99','2005-07-27 23:57:01','2006-02-15 22:22:31'), - (15440,576,1,8907,'4.99','2005-07-30 01:25:03','2006-02-15 22:22:31'), - (15441,576,1,9133,'5.99','2005-07-30 09:59:00','2006-02-15 22:22:31'), - (15442,576,2,9548,'5.99','2005-07-31 01:54:19','2006-02-15 22:22:31'), - (15443,576,2,9620,'8.99','2005-07-31 04:19:18','2006-02-15 22:22:31'), - (15444,576,2,9962,'0.99','2005-07-31 16:10:36','2006-02-15 22:22:31'), - (15445,576,1,9979,'2.99','2005-07-31 17:00:07','2006-02-15 22:22:31'), - (15446,576,1,10000,'2.99','2005-07-31 17:41:05','2006-02-15 22:22:31'), - (15447,576,2,10724,'3.99','2005-08-01 19:10:59','2006-02-15 22:22:31'), - (15448,576,2,12112,'5.99','2005-08-17 23:00:31','2006-02-15 22:22:31'), - (15449,576,1,12245,'4.99','2005-08-18 03:46:40','2006-02-15 22:22:31'), - (15450,576,1,13061,'4.99','2005-08-19 09:43:39','2006-02-15 22:22:31'), - (15451,576,1,13326,'4.99','2005-08-19 19:52:52','2006-02-15 22:22:31'), - (15452,576,1,14501,'4.99','2005-08-21 14:14:38','2006-02-15 22:22:32'), - (15453,576,1,14541,'0.99','2005-08-21 15:34:32','2006-02-15 22:22:32'), - (15454,576,1,15634,'0.99','2005-08-23 07:34:18','2006-02-15 22:22:32'), - (15455,576,2,11942,'5.98','2006-02-14 15:16:03','2006-02-15 22:22:32'), - (15456,576,1,13464,'0.00','2006-02-14 15:16:03','2006-02-15 22:22:32'), - (15457,577,2,291,'5.99','2005-05-26 20:20:47','2006-02-15 22:22:32'), - (15458,577,2,NULL,'0.99','2005-05-27 00:46:39','2006-02-15 22:22:32'), - (15459,577,2,2399,'3.99','2005-06-18 16:06:14','2006-02-15 22:22:32'), - (15460,577,2,3286,'2.99','2005-06-21 06:31:29','2006-02-15 22:22:32'), - (15461,577,2,3401,'6.99','2005-06-21 15:52:43','2006-02-15 22:22:32'), - (15462,577,2,3599,'0.99','2005-07-06 05:16:36','2006-02-15 22:22:32'), - (15463,577,1,3785,'7.99','2005-07-06 14:00:13','2006-02-15 22:22:32'), - (15464,577,1,4922,'2.99','2005-07-08 21:44:00','2006-02-15 22:22:32'), - (15465,577,1,6500,'2.99','2005-07-12 03:11:23','2006-02-15 22:22:32'), - (15466,577,2,6534,'2.99','2005-07-12 04:39:43','2006-02-15 22:22:33'), - (15467,577,2,7197,'0.99','2005-07-27 08:49:32','2006-02-15 22:22:33'), - (15468,577,1,7371,'4.99','2005-07-27 15:18:42','2006-02-15 22:22:33'), - (15469,577,2,7876,'8.99','2005-07-28 10:24:22','2006-02-15 22:22:33'), - (15470,577,1,8043,'5.99','2005-07-28 16:45:44','2006-02-15 22:22:33'), - (15471,577,1,8060,'6.99','2005-07-28 17:10:02','2006-02-15 22:22:33'), - (15472,577,2,8671,'6.99','2005-07-29 15:49:37','2006-02-15 22:22:33'), - (15473,577,2,10323,'4.99','2005-08-01 04:44:58','2006-02-15 22:22:33'), - (15474,577,1,10487,'0.99','2005-08-01 10:26:34','2006-02-15 22:22:33'), - (15475,577,1,10782,'4.99','2005-08-01 21:23:25','2006-02-15 22:22:33'), - (15476,577,1,11054,'7.99','2005-08-02 06:33:07','2006-02-15 22:22:33'), - (15477,577,2,11464,'0.99','2005-08-02 21:42:07','2006-02-15 22:22:33'), - (15478,577,1,12664,'4.99','2005-08-18 19:10:54','2006-02-15 22:22:33'), - (15479,577,2,12671,'0.99','2005-08-18 19:19:59','2006-02-15 22:22:33'), - (15480,577,2,13200,'3.99','2005-08-19 14:55:58','2006-02-15 22:22:33'), - (15481,577,2,13500,'3.99','2005-08-20 01:54:39','2006-02-15 22:22:34'), - (15482,577,2,15480,'2.99','2005-08-23 01:57:20','2006-02-15 22:22:34'), - (15483,577,2,15873,'2.99','2005-08-23 16:27:59','2006-02-15 22:22:34'), - (15484,577,2,16003,'4.99','2005-08-23 20:47:28','2006-02-15 22:22:34'), - (15485,578,2,660,'0.99','2005-05-28 20:53:31','2006-02-15 22:22:34'), - (15486,578,2,1826,'6.99','2005-06-16 21:53:52','2006-02-15 22:22:34'), - (15487,578,2,2615,'4.99','2005-06-19 07:29:13','2006-02-15 22:22:34'), - (15488,578,1,3305,'2.99','2005-06-21 07:46:57','2006-02-15 22:22:34'), - (15489,578,2,4496,'4.99','2005-07-08 01:44:19','2006-02-15 22:22:34'), - (15490,578,1,5377,'4.99','2005-07-09 19:04:30','2006-02-15 22:22:34'), - (15491,578,1,5445,'0.99','2005-07-09 21:59:41','2006-02-15 22:22:34'), - (15492,578,2,5876,'4.99','2005-07-10 19:07:15','2006-02-15 22:22:34'), - (15493,578,1,6784,'4.99','2005-07-12 16:28:49','2006-02-15 22:22:34'), - (15494,578,1,6830,'0.99','2005-07-12 18:42:55','2006-02-15 22:22:34'), - (15495,578,2,7059,'5.99','2005-07-27 03:51:02','2006-02-15 22:22:35'), - (15496,578,1,8179,'2.99','2005-07-28 22:05:13','2006-02-15 22:22:35'), - (15497,578,1,8218,'2.99','2005-07-28 23:45:41','2006-02-15 22:22:35'), - (15498,578,2,9970,'4.99','2005-07-31 16:38:24','2006-02-15 22:22:35'), - (15499,578,1,10029,'6.99','2005-07-31 18:37:47','2006-02-15 22:22:35'), - (15500,578,2,10182,'2.99','2005-08-01 00:08:01','2006-02-15 22:22:35'), - (15501,578,1,10779,'7.99','2005-08-01 21:11:54','2006-02-15 22:22:35'), - (15502,578,1,11199,'7.99','2005-08-02 11:47:40','2006-02-15 22:22:35'), - (15503,578,2,13071,'5.99','2005-08-19 10:01:07','2006-02-15 22:22:35'), - (15504,578,2,13498,'5.99','2005-08-20 01:51:23','2006-02-15 22:22:35'), - (15505,578,2,13552,'2.99','2005-08-20 04:03:51','2006-02-15 22:22:35'), - (15506,578,1,15652,'0.99','2005-08-23 08:34:10','2006-02-15 22:22:35'), - (15507,579,2,2425,'5.99','2005-06-18 17:37:45','2006-02-15 22:22:35'), - (15508,579,1,2522,'3.99','2005-06-19 00:43:42','2006-02-15 22:22:35'), - (15509,579,1,3111,'2.99','2005-06-20 17:46:47','2006-02-15 22:22:36'), - (15510,579,1,4619,'9.99','2005-07-08 08:01:09','2006-02-15 22:22:36'), - (15511,579,1,4933,'2.99','2005-07-08 22:18:29','2006-02-15 22:22:36'), - (15512,579,1,6304,'4.99','2005-07-11 18:02:16','2006-02-15 22:22:36'), - (15513,579,2,6814,'1.99','2005-07-12 18:11:58','2006-02-15 22:22:36'), - (15514,579,2,6824,'6.99','2005-07-12 18:26:46','2006-02-15 22:22:36'), - (15515,579,2,6969,'8.99','2005-07-27 00:23:54','2006-02-15 22:22:36'), - (15516,579,2,7221,'2.99','2005-07-27 09:37:35','2006-02-15 22:22:36'), - (15517,579,1,8354,'0.99','2005-07-29 04:56:26','2006-02-15 22:22:36'), - (15518,579,1,8876,'0.99','2005-07-30 00:15:09','2006-02-15 22:22:36'), - (15519,579,1,8996,'0.99','2005-07-30 04:53:23','2006-02-15 22:22:36'), - (15520,579,2,9349,'9.99','2005-07-30 18:20:08','2006-02-15 22:22:36'), - (15521,579,2,9553,'5.99','2005-07-31 02:06:34','2006-02-15 22:22:36'), - (15522,579,2,9976,'2.99','2005-07-31 16:57:49','2006-02-15 22:22:36'), - (15523,579,2,9997,'4.99','2005-07-31 17:37:30','2006-02-15 22:22:37'), - (15524,579,1,11494,'3.99','2005-08-02 22:51:23','2006-02-15 22:22:37'), - (15525,579,2,12051,'6.99','2005-08-17 20:56:15','2006-02-15 22:22:37'), - (15526,579,2,12315,'5.99','2005-08-18 06:15:06','2006-02-15 22:22:37'), - (15527,579,2,14047,'2.99','2005-08-20 22:00:43','2006-02-15 22:22:37'), - (15528,579,1,14185,'0.99','2005-08-21 03:28:37','2006-02-15 22:22:37'), - (15529,579,1,14543,'1.99','2005-08-21 15:39:01','2006-02-15 22:22:37'), - (15530,579,2,14560,'2.99','2005-08-21 16:13:47','2006-02-15 22:22:37'), - (15531,579,2,15601,'0.99','2005-08-23 06:33:26','2006-02-15 22:22:37'), - (15532,579,1,15838,'4.99','2005-08-23 15:30:48','2006-02-15 22:22:37'), - (15533,579,2,15794,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:37'), - (15534,580,1,611,'0.99','2005-05-28 15:18:18','2006-02-15 22:22:37'), - (15535,580,1,1469,'0.99','2005-06-15 20:52:36','2006-02-15 22:22:37'), - (15536,580,2,3571,'1.99','2005-07-06 03:32:31','2006-02-15 22:22:37'), - (15537,580,2,3867,'1.99','2005-07-06 17:52:19','2006-02-15 22:22:38'), - (15538,580,2,4169,'1.99','2005-07-07 09:39:18','2006-02-15 22:22:38'), - (15539,580,2,4590,'3.99','2005-07-08 06:27:48','2006-02-15 22:22:38'), - (15540,580,1,5937,'6.99','2005-07-10 22:16:08','2006-02-15 22:22:38'), - (15541,580,1,6089,'2.99','2005-07-11 05:45:59','2006-02-15 22:22:38'), - (15542,580,2,6170,'2.99','2005-07-11 10:29:21','2006-02-15 22:22:38'), - (15543,580,1,7620,'0.99','2005-07-28 00:27:17','2006-02-15 22:22:38'), - (15544,580,2,8784,'4.99','2005-07-29 20:35:37','2006-02-15 22:22:38'), - (15545,580,1,8839,'3.99','2005-07-29 22:52:34','2006-02-15 22:22:38'), - (15546,580,1,9199,'0.99','2005-07-30 12:38:00','2006-02-15 22:22:38'), - (15547,580,1,9239,'3.99','2005-07-30 13:50:52','2006-02-15 22:22:38'), - (15548,580,1,9460,'5.99','2005-07-30 22:25:39','2006-02-15 22:22:38'), - (15549,580,2,9604,'4.99','2005-07-31 03:47:12','2006-02-15 22:22:38'), - (15550,580,2,9865,'0.99','2005-07-31 13:10:45','2006-02-15 22:22:38'), - (15551,580,1,10723,'3.99','2005-08-01 19:10:49','2006-02-15 22:22:38'), - (15552,580,2,10965,'3.99','2005-08-02 04:00:19','2006-02-15 22:22:39'), - (15553,580,1,11164,'8.99','2005-08-02 10:10:56','2006-02-15 22:22:39'), - (15554,580,2,12670,'2.99','2005-08-18 19:17:58','2006-02-15 22:22:39'), - (15555,580,2,13313,'2.99','2005-08-19 19:11:41','2006-02-15 22:22:39'), - (15556,580,2,13742,'2.99','2005-08-20 10:49:15','2006-02-15 22:22:39'), - (15557,580,2,14818,'2.99','2005-08-22 01:17:18','2006-02-15 22:22:39'), - (15558,580,1,15157,'6.99','2005-08-22 14:30:09','2006-02-15 22:22:39'), - (15559,580,1,15630,'6.99','2005-08-23 07:29:13','2006-02-15 22:22:39'), - (15560,580,1,15947,'4.99','2005-08-23 18:54:32','2006-02-15 22:22:39'), - (15561,581,1,976,'4.99','2005-05-30 21:11:19','2006-02-15 22:22:39'), - (15562,581,1,1151,'4.99','2005-05-31 21:29:00','2006-02-15 22:22:39'), - (15563,581,2,1958,'3.99','2005-06-17 08:52:01','2006-02-15 22:22:39'), - (15564,581,2,2101,'2.99','2005-06-17 18:57:02','2006-02-15 22:22:39'), - (15565,581,1,2137,'4.99','2005-06-17 21:18:28','2006-02-15 22:22:39'), - (15566,581,2,4210,'2.99','2005-07-07 11:36:20','2006-02-15 22:22:40'), - (15567,581,2,4244,'2.99','2005-07-07 13:41:58','2006-02-15 22:22:40'), - (15568,581,1,4338,'4.99','2005-07-07 18:39:56','2006-02-15 22:22:40'), - (15569,581,2,4613,'0.99','2005-07-08 07:44:49','2006-02-15 22:22:40'), - (15570,581,1,4669,'5.99','2005-07-08 10:13:08','2006-02-15 22:22:40'), - (15571,581,1,4815,'8.99','2005-07-08 17:12:51','2006-02-15 22:22:40'), - (15572,581,1,4833,'1.99','2005-07-08 18:07:35','2006-02-15 22:22:40'), - (15573,581,1,5516,'4.99','2005-07-10 01:13:52','2006-02-15 22:22:40'), - (15574,581,1,5707,'4.99','2005-07-10 10:26:14','2006-02-15 22:22:40'), - (15575,581,2,5812,'2.99','2005-07-10 15:27:56','2006-02-15 22:22:40'), - (15576,581,2,7048,'7.99','2005-07-27 03:31:48','2006-02-15 22:22:40'), - (15577,581,1,7783,'2.99','2005-07-28 07:14:43','2006-02-15 22:22:40'), - (15578,581,1,9278,'2.99','2005-07-30 15:15:19','2006-02-15 22:22:40'), - (15579,581,1,9449,'1.99','2005-07-30 22:02:34','2006-02-15 22:22:40'), - (15580,581,2,11443,'2.99','2005-08-02 20:29:30','2006-02-15 22:22:41'), - (15581,581,2,11707,'2.99','2005-08-17 07:24:59','2006-02-15 22:22:41'), - (15582,581,2,13621,'0.99','2005-08-20 06:43:44','2006-02-15 22:22:41'), - (15583,581,2,13712,'2.99','2005-08-20 09:38:04','2006-02-15 22:22:41'), - (15584,581,2,14070,'8.99','2005-08-20 22:56:34','2006-02-15 22:22:41'), - (15585,581,1,14976,'2.99','2005-08-22 07:10:26','2006-02-15 22:22:41'), - (15586,581,1,15403,'0.99','2005-08-22 23:18:10','2006-02-15 22:22:41'), - (15587,581,2,15792,'4.99','2005-08-23 14:05:37','2006-02-15 22:22:41'), - (15588,582,1,281,'0.99','2005-05-26 18:49:35','2006-02-15 22:22:41'), - (15589,582,1,1719,'2.99','2005-06-16 14:55:53','2006-02-15 22:22:41'), - (15590,582,1,2337,'7.99','2005-06-18 11:15:27','2006-02-15 22:22:41'), - (15591,582,2,3071,'0.99','2005-06-20 14:20:42','2006-02-15 22:22:41'), - (15592,582,1,3767,'0.99','2005-07-06 13:07:27','2006-02-15 22:22:41'), - (15593,582,2,6629,'5.99','2005-07-12 09:18:35','2006-02-15 22:22:41'), - (15594,582,2,7126,'4.99','2005-07-27 06:13:13','2006-02-15 22:22:42'), - (15595,582,2,7311,'6.99','2005-07-27 13:02:54','2006-02-15 22:22:42'), - (15596,582,2,7412,'5.99','2005-07-27 16:44:34','2006-02-15 22:22:42'), - (15597,582,1,7575,'2.99','2005-07-27 22:53:52','2006-02-15 22:22:42'), - (15598,582,2,8308,'5.99','2005-07-29 03:22:15','2006-02-15 22:22:42'), - (15599,582,1,8554,'2.99','2005-07-29 11:16:29','2006-02-15 22:22:42'), - (15600,582,1,8778,'6.99','2005-07-29 20:14:25','2006-02-15 22:22:42'), - (15601,582,1,9768,'9.99','2005-07-31 09:48:41','2006-02-15 22:22:42'), - (15602,582,2,11290,'7.99','2005-08-02 14:57:44','2006-02-15 22:22:42'), - (15603,582,1,11667,'5.99','2005-08-17 05:46:55','2006-02-15 22:22:42'), - (15604,582,1,11708,'2.99','2005-08-17 07:26:47','2006-02-15 22:22:42'), - (15605,582,2,13815,'5.99','2005-08-20 13:08:53','2006-02-15 22:22:42'), - (15606,582,1,14376,'4.99','2005-08-21 09:48:56','2006-02-15 22:22:42'), - (15607,582,1,14568,'0.99','2005-08-21 16:30:48','2006-02-15 22:22:42'), - (15608,582,1,15090,'5.99','2005-08-22 11:34:33','2006-02-15 22:22:43'), - (15609,582,1,15503,'2.99','2005-08-23 02:44:49','2006-02-15 22:22:43'), - (15610,582,1,15539,'0.99','2005-08-23 04:09:03','2006-02-15 22:22:43'), - (15611,582,2,15911,'4.99','2005-08-23 17:44:53','2006-02-15 22:22:43'), - (15612,582,2,12127,'2.99','2006-02-14 15:16:03','2006-02-15 22:22:43'), - (15613,583,1,1428,'3.99','2005-06-15 18:19:30','2006-02-15 22:22:43'), - (15614,583,1,2429,'9.99','2005-06-18 17:48:28','2006-02-15 22:22:43'), - (15615,583,2,2663,'4.99','2005-06-19 10:54:00','2006-02-15 22:22:43'), - (15616,583,2,2845,'5.99','2005-06-19 22:46:37','2006-02-15 22:22:43'), - (15617,583,2,2879,'3.99','2005-06-20 01:24:10','2006-02-15 22:22:43'), - (15618,583,1,3424,'0.99','2005-06-21 17:42:51','2006-02-15 22:22:43'), - (15619,583,1,3779,'2.99','2005-07-06 13:46:36','2006-02-15 22:22:43'), - (15620,583,1,3842,'4.99','2005-07-06 16:34:32','2006-02-15 22:22:43'), - (15621,583,2,3991,'9.99','2005-07-06 23:33:41','2006-02-15 22:22:43'), - (15622,583,1,4464,'4.99','2005-07-08 00:07:18','2006-02-15 22:22:43'), - (15623,583,1,5462,'0.99','2005-07-09 22:56:53','2006-02-15 22:22:44'), - (15624,583,1,5478,'5.99','2005-07-09 23:45:15','2006-02-15 22:22:44'), - (15625,583,2,5747,'7.99','2005-07-10 12:15:33','2006-02-15 22:22:44'), - (15626,583,2,6684,'6.99','2005-07-12 12:14:42','2006-02-15 22:22:44'), - (15627,583,1,7401,'5.99','2005-07-27 16:17:55','2006-02-15 22:22:44'), - (15628,583,2,8568,'7.99','2005-07-29 11:38:22','2006-02-15 22:22:44'), - (15629,583,1,9550,'7.99','2005-07-31 01:57:34','2006-02-15 22:22:44'), - (15630,583,2,9808,'1.99','2005-07-31 11:17:22','2006-02-15 22:22:44'), - (15631,583,2,10301,'4.99','2005-08-01 04:09:37','2006-02-15 22:22:44'), - (15632,583,2,10586,'2.99','2005-08-01 14:00:59','2006-02-15 22:22:44'), - (15633,583,2,10800,'4.99','2005-08-01 22:07:44','2006-02-15 22:22:44'), - (15634,583,2,11002,'4.99','2005-08-02 05:02:56','2006-02-15 22:22:44'), - (15635,583,1,14259,'0.99','2005-08-21 06:00:22','2006-02-15 22:22:44'), - (15636,584,2,379,'4.99','2005-05-27 09:25:32','2006-02-15 22:22:44'), - (15637,584,1,626,'4.99','2005-05-28 16:58:09','2006-02-15 22:22:45'), - (15638,584,1,920,'4.99','2005-05-30 11:44:01','2006-02-15 22:22:45'), - (15639,584,2,1436,'3.99','2005-06-15 18:35:40','2006-02-15 22:22:45'), - (15640,584,2,3317,'6.99','2005-06-21 08:22:32','2006-02-15 22:22:45'), - (15641,584,2,3741,'2.99','2005-07-06 12:00:18','2006-02-15 22:22:45'), - (15642,584,2,3895,'7.99','2005-07-06 19:04:24','2006-02-15 22:22:45'), - (15643,584,1,4410,'0.99','2005-07-07 21:48:16','2006-02-15 22:22:45'), - (15644,584,1,4977,'0.99','2005-07-09 00:15:50','2006-02-15 22:22:45'), - (15645,584,2,6954,'0.99','2005-07-26 23:55:13','2006-02-15 22:22:45'), - (15646,584,1,7186,'2.99','2005-07-27 08:26:12','2006-02-15 22:22:45'), - (15647,584,1,7372,'4.99','2005-07-27 15:18:42','2006-02-15 22:22:45'), - (15648,584,1,7659,'4.99','2005-07-28 02:09:45','2006-02-15 22:22:45'), - (15649,584,2,8879,'4.99','2005-07-30 00:16:02','2006-02-15 22:22:45'), - (15650,584,2,9451,'3.99','2005-07-30 22:10:17','2006-02-15 22:22:45'), - (15651,584,1,9719,'5.99','2005-07-31 08:25:13','2006-02-15 22:22:46'), - (15652,584,2,10073,'2.99','2005-07-31 19:53:15','2006-02-15 22:22:46'), - (15653,584,1,10914,'4.99','2005-08-02 02:04:43','2006-02-15 22:22:46'), - (15654,584,2,10966,'0.99','2005-08-02 04:00:47','2006-02-15 22:22:46'), - (15655,584,1,11213,'4.99','2005-08-02 12:18:35','2006-02-15 22:22:46'), - (15656,584,2,11500,'6.99','2005-08-16 23:01:22','2006-02-15 22:22:46'), - (15657,584,2,12507,'8.99','2005-08-18 13:19:13','2006-02-15 22:22:46'), - (15658,584,2,12541,'2.99','2005-08-18 14:18:30','2006-02-15 22:22:46'), - (15659,584,2,12693,'5.99','2005-08-18 20:10:19','2006-02-15 22:22:46'), - (15660,584,1,12844,'2.99','2005-08-19 01:59:08','2006-02-15 22:22:46'), - (15661,584,2,14102,'5.99','2005-08-21 00:35:21','2006-02-15 22:22:46'), - (15662,584,2,14230,'5.99','2005-08-21 04:57:29','2006-02-15 22:22:46'), - (15663,584,2,14447,'4.99','2005-08-21 12:12:05','2006-02-15 22:22:46'), - (15664,584,1,14930,'1.99','2005-08-22 05:38:32','2006-02-15 22:22:46'), - (15665,584,1,15615,'0.99','2005-08-23 07:06:00','2006-02-15 22:22:47'), - (15666,585,1,1344,'0.99','2005-06-15 12:29:41','2006-02-15 22:22:47'), - (15667,585,2,1346,'7.99','2005-06-15 12:39:52','2006-02-15 22:22:47'), - (15668,585,1,2674,'0.99','2005-06-19 11:47:59','2006-02-15 22:22:47'), - (15669,585,1,2930,'3.99','2005-06-20 04:50:29','2006-02-15 22:22:47'), - (15670,585,2,4156,'4.99','2005-07-07 09:03:51','2006-02-15 22:22:47'), - (15671,585,2,4579,'4.99','2005-07-08 06:01:56','2006-02-15 22:22:47'), - (15672,585,1,4684,'9.99','2005-07-08 10:41:06','2006-02-15 22:22:47'), - (15673,585,2,5284,'2.99','2005-07-09 15:08:21','2006-02-15 22:22:47'), - (15674,585,2,5950,'4.99','2005-07-10 23:13:45','2006-02-15 22:22:47'), - (15675,585,2,6733,'6.99','2005-07-12 14:04:01','2006-02-15 22:22:47'), - (15676,585,1,7131,'2.99','2005-07-27 06:25:06','2006-02-15 22:22:47'), - (15677,585,1,7384,'4.99','2005-07-27 15:49:45','2006-02-15 22:22:47'), - (15678,585,2,7409,'4.99','2005-07-27 16:38:24','2006-02-15 22:22:47'), - (15679,585,2,8353,'2.99','2005-07-29 04:52:10','2006-02-15 22:22:48'), - (15680,585,2,9407,'8.99','2005-07-30 20:25:24','2006-02-15 22:22:48'), - (15681,585,1,9590,'3.99','2005-07-31 03:17:16','2006-02-15 22:22:48'), - (15682,585,1,9860,'6.99','2005-07-31 13:03:24','2006-02-15 22:22:48'), - (15683,585,2,10573,'0.99','2005-08-01 13:27:24','2006-02-15 22:22:48'), - (15684,585,1,11285,'9.99','2005-08-02 14:44:02','2006-02-15 22:22:48'), - (15685,585,2,13593,'3.99','2005-08-20 05:50:52','2006-02-15 22:22:48'), - (15686,585,2,13939,'0.99','2005-08-20 17:28:01','2006-02-15 22:22:48'), - (15687,585,1,15804,'4.99','2005-08-23 14:29:16','2006-02-15 22:22:48'), - (15688,585,1,15896,'6.99','2005-08-23 17:09:56','2006-02-15 22:22:48'), - (15689,585,2,14604,'4.99','2006-02-14 15:16:03','2006-02-15 22:22:48'), - (15690,586,1,138,'4.99','2005-05-25 22:48:22','2006-02-15 22:22:48'), - (15691,586,1,900,'8.99','2005-05-30 09:38:41','2006-02-15 22:22:48'), - (15692,586,1,1260,'2.99','2005-06-15 06:42:25','2006-02-15 22:22:48'), - (15693,586,2,1540,'0.99','2005-06-16 01:14:56','2006-02-15 22:22:49'), - (15694,586,2,3487,'6.99','2005-07-05 23:30:36','2006-02-15 22:22:49'), - (15695,586,2,3733,'4.99','2005-07-06 11:33:55','2006-02-15 22:22:49'), - (15696,586,2,5382,'2.99','2005-07-09 19:12:57','2006-02-15 22:22:49'), - (15697,586,1,6679,'2.99','2005-07-12 12:01:07','2006-02-15 22:22:49'), - (15698,586,2,9786,'2.99','2005-07-31 10:25:21','2006-02-15 22:22:49'), - (15699,586,2,9896,'2.99','2005-07-31 14:09:48','2006-02-15 22:22:49'), - (15700,586,1,11034,'2.99','2005-08-02 05:54:53','2006-02-15 22:22:49'), - (15701,586,1,11763,'0.99','2005-08-17 09:51:39','2006-02-15 22:22:49'), - (15702,586,1,12013,'4.99','2005-08-17 19:23:02','2006-02-15 22:22:49'), - (15703,586,1,12898,'0.99','2005-08-19 03:54:34','2006-02-15 22:22:50'), - (15704,586,2,14043,'2.99','2005-08-20 21:46:43','2006-02-15 22:22:50'), - (15705,586,1,14392,'1.99','2005-08-21 10:19:25','2006-02-15 22:22:50'), - (15706,586,2,14533,'2.99','2005-08-21 15:15:19','2006-02-15 22:22:50'), - (15707,586,1,15666,'3.99','2005-08-23 09:01:10','2006-02-15 22:22:51'), - (15708,586,2,15684,'0.99','2005-08-23 09:40:04','2006-02-15 22:22:51'), - (15709,587,1,181,'4.99','2005-05-26 04:47:06','2006-02-15 22:22:51'), - (15710,587,1,361,'0.99','2005-05-27 07:03:28','2006-02-15 22:22:51'), - (15711,587,2,1330,'2.99','2005-06-15 11:29:17','2006-02-15 22:22:52'), - (15712,587,2,2034,'4.99','2005-06-17 13:27:16','2006-02-15 22:22:52'), - (15713,587,1,2220,'2.99','2005-06-18 03:21:36','2006-02-15 22:22:52'), - (15714,587,1,2329,'4.99','2005-06-18 10:22:52','2006-02-15 22:22:52'), - (15715,587,2,3562,'2.99','2005-07-06 02:54:36','2006-02-15 22:22:53'), - (15716,587,2,3969,'0.99','2005-07-06 22:47:59','2006-02-15 22:22:53'), - (15717,587,2,5243,'3.99','2005-07-09 13:22:08','2006-02-15 22:22:53'), - (15718,587,1,6639,'0.99','2005-07-12 10:00:44','2006-02-15 22:22:53'), - (15719,587,2,6665,'6.99','2005-07-12 11:29:14','2006-02-15 22:22:53'), - (15720,587,1,7501,'8.99','2005-07-27 20:16:59','2006-02-15 22:22:54'), - (15721,587,2,8776,'5.99','2005-07-29 20:07:06','2006-02-15 22:22:54'), - (15722,587,2,9720,'6.99','2005-07-31 08:25:21','2006-02-15 22:22:54'), - (15723,587,2,9785,'4.99','2005-07-31 10:22:15','2006-02-15 22:22:54'), - (15724,587,2,9909,'5.99','2005-07-31 14:43:34','2006-02-15 22:22:55'), - (15725,587,2,10224,'4.99','2005-08-01 01:31:56','2006-02-15 22:22:55'), - (15726,587,1,10825,'2.99','2005-08-01 23:05:33','2006-02-15 22:22:55'), - (15727,587,1,11078,'2.99','2005-08-02 07:26:58','2006-02-15 22:22:55'), - (15728,587,2,11403,'4.99','2005-08-02 19:10:21','2006-02-15 22:22:56'), - (15729,587,2,12164,'4.99','2005-08-18 00:46:38','2006-02-15 22:22:56'), - (15730,587,2,12330,'6.99','2005-08-18 06:46:33','2006-02-15 22:22:56'), - (15731,587,2,14710,'4.99','2005-08-21 21:15:23','2006-02-15 22:22:56'), - (15732,587,2,15348,'2.99','2005-08-22 21:13:46','2006-02-15 22:22:57'), - (15733,587,2,15349,'0.99','2005-08-22 21:13:51','2006-02-15 22:22:57'), - (15734,587,1,12144,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:57'), - (15735,588,1,576,'2.99','2005-05-28 10:56:10','2006-02-15 22:22:57'), - (15736,588,1,961,'4.99','2005-05-30 18:16:44','2006-02-15 22:22:58'), - (15737,588,2,1885,'2.99','2005-06-17 03:35:59','2006-02-15 22:22:58'), - (15738,588,2,1903,'6.99','2005-06-17 04:37:20','2006-02-15 22:22:58'), - (15739,588,2,2270,'7.99','2005-06-18 06:29:01','2006-02-15 22:22:58'), - (15740,588,1,2453,'2.99','2005-06-18 19:30:53','2006-02-15 22:22:59'), - (15741,588,2,2920,'3.99','2005-06-20 04:12:46','2006-02-15 22:22:59'), - (15742,588,1,3628,'4.99','2005-07-06 06:19:43','2006-02-15 22:22:59'), - (15743,588,1,4101,'0.99','2005-07-07 06:25:11','2006-02-15 22:22:59'), - (15744,588,2,4207,'5.99','2005-07-07 11:32:45','2006-02-15 22:23:00'), - (15745,588,2,5203,'2.99','2005-07-09 10:53:59','2006-02-15 22:23:00'), - (15746,588,1,5335,'4.99','2005-07-09 17:00:49','2006-02-15 22:23:00'), - (15747,588,1,6368,'4.99','2005-07-11 21:19:01','2006-02-15 22:23:00'), - (15748,588,2,7377,'2.99','2005-07-27 15:31:28','2006-02-15 22:23:01'), - (15749,588,2,7903,'2.99','2005-07-28 11:20:36','2006-02-15 22:23:01'), - (15750,588,1,8421,'4.99','2005-07-29 07:00:47','2006-02-15 22:23:01'), - (15751,588,1,8429,'2.99','2005-07-29 07:11:49','2006-02-15 22:23:01'), - (15752,588,2,8519,'2.99','2005-07-29 10:09:43','2006-02-15 22:23:02'), - (15753,588,1,8769,'2.99','2005-07-29 19:45:33','2006-02-15 22:23:02'), - (15754,588,2,9326,'2.99','2005-07-30 17:30:03','2006-02-15 22:23:02'), - (15755,588,2,9370,'4.99','2005-07-30 18:57:29','2006-02-15 22:23:02'), - (15756,588,2,10373,'4.99','2005-08-01 06:24:26','2006-02-15 22:23:02'), - (15757,588,1,12185,'2.99','2005-08-18 01:40:14','2006-02-15 22:23:03'), - (15758,588,2,12815,'4.99','2005-08-19 00:59:42','2006-02-15 22:23:03'), - (15759,588,1,13064,'4.99','2005-08-19 09:46:53','2006-02-15 22:23:03'), - (15760,588,1,13923,'1.99','2005-08-20 17:05:02','2006-02-15 22:23:03'), - (15761,588,1,15109,'1.99','2005-08-22 12:12:58','2006-02-15 22:23:04'), - (15762,588,1,15158,'2.99','2005-08-22 14:30:39','2006-02-15 22:23:04'), - (15763,588,1,15209,'4.99','2005-08-22 16:37:32','2006-02-15 22:23:04'), - (15764,589,1,531,'0.99','2005-05-28 05:23:38','2006-02-15 22:23:04'), - (15765,589,1,596,'4.99','2005-05-28 14:00:03','2006-02-15 22:23:05'), - (15766,589,1,737,'4.99','2005-05-29 08:11:31','2006-02-15 22:23:05'), - (15767,589,1,1439,'4.99','2005-06-15 18:45:32','2006-02-15 22:23:05'), - (15768,589,2,1703,'4.99','2005-06-16 13:28:44','2006-02-15 22:23:05'), - (15769,589,2,2652,'8.99','2005-06-19 10:35:26','2006-02-15 22:23:06'), - (15770,589,1,2707,'8.99','2005-06-19 13:57:08','2006-02-15 22:23:06'), - (15771,589,1,2979,'2.99','2005-06-20 08:31:05','2006-02-15 22:23:06'), - (15772,589,2,4986,'2.99','2005-07-09 00:44:33','2006-02-15 22:23:06'), - (15773,589,1,5951,'0.99','2005-07-10 23:14:29','2006-02-15 22:23:07'), - (15774,589,2,6177,'4.99','2005-07-11 10:53:49','2006-02-15 22:23:07'), - (15775,589,2,6247,'3.99','2005-07-11 15:00:05','2006-02-15 22:23:07'), - (15776,589,2,7250,'0.99','2005-07-27 10:44:09','2006-02-15 22:23:07'), - (15777,589,2,7431,'3.99','2005-07-27 17:27:27','2006-02-15 22:23:08'), - (15778,589,2,7948,'9.99','2005-07-28 13:06:16','2006-02-15 22:23:08'), - (15779,589,2,8056,'0.99','2005-07-28 17:04:15','2006-02-15 22:23:08'), - (15780,589,1,8374,'3.99','2005-07-29 05:24:02','2006-02-15 22:23:08'), - (15781,589,1,9153,'4.99','2005-07-30 10:58:16','2006-02-15 22:23:09'), - (15782,589,2,10544,'4.99','2005-08-01 12:36:21','2006-02-15 22:23:09'), - (15783,589,1,11980,'4.99','2005-08-17 18:10:18','2006-02-15 22:23:09'), - (15784,589,1,12738,'7.99','2005-08-18 22:11:47','2006-02-15 22:23:09'), - (15785,589,2,12933,'8.99','2005-08-19 05:18:20','2006-02-15 22:23:10'), - (15786,589,1,14038,'6.99','2005-08-20 21:39:23','2006-02-15 22:23:10'), - (15787,589,1,14254,'6.99','2005-08-21 05:51:28','2006-02-15 22:23:10'), - (15788,589,1,14544,'0.99','2005-08-21 15:41:01','2006-02-15 22:23:10'), - (15789,589,2,14706,'0.99','2005-08-21 21:04:42','2006-02-15 22:23:10'), - (15790,589,2,15917,'5.99','2005-08-23 17:57:28','2006-02-15 22:23:11'), - (15791,589,2,15992,'0.99','2005-08-23 20:28:32','2006-02-15 22:23:11'), - (15792,590,1,602,'3.99','2005-05-28 14:15:54','2006-02-15 22:23:11'), - (15793,590,2,1456,'7.99','2005-06-15 20:00:11','2006-02-15 22:23:11'), - (15794,590,2,2352,'2.99','2005-06-18 12:40:15','2006-02-15 22:23:12'), - (15795,590,2,2775,'2.99','2005-06-19 18:14:20','2006-02-15 22:23:12'), - (15796,590,1,2916,'6.99','2005-06-20 04:01:04','2006-02-15 22:23:12'), - (15797,590,1,2964,'9.99','2005-06-20 07:33:29','2006-02-15 22:23:12'), - (15798,590,2,4685,'4.99','2005-07-08 10:45:13','2006-02-15 22:23:13'), - (15799,590,1,4710,'2.99','2005-07-08 12:04:53','2006-02-15 22:23:13'), - (15800,590,2,4722,'4.99','2005-07-08 12:42:27','2006-02-15 22:23:13'), - (15801,590,1,5165,'0.99','2005-07-09 09:08:53','2006-02-15 22:23:13'), - (15802,590,1,5529,'2.99','2005-07-10 02:11:13','2006-02-15 22:23:14'), - (15803,590,1,5991,'4.99','2005-07-11 01:03:38','2006-02-15 22:23:14'), - (15804,590,2,6232,'4.99','2005-07-11 14:08:27','2006-02-15 22:23:14'), - (15805,590,2,6492,'4.99','2005-07-12 02:28:40','2006-02-15 22:23:14'), - (15806,590,1,7010,'4.99','2005-07-27 01:56:01','2006-02-15 22:23:15'), - (15807,590,2,7665,'2.99','2005-07-28 02:28:30','2006-02-15 22:23:15'), - (15808,590,1,8195,'5.99','2005-07-28 22:52:58','2006-02-15 22:23:15'), - (15809,590,1,8801,'4.99','2005-07-29 21:25:22','2006-02-15 22:23:15'), - (15810,590,2,9126,'0.99','2005-07-30 09:44:15','2006-02-15 22:23:16'), - (15811,590,1,9884,'4.99','2005-07-31 13:56:24','2006-02-15 22:23:16'), - (15812,590,1,10657,'4.99','2005-08-01 16:38:44','2006-02-15 22:23:16'), - (15813,590,2,11578,'5.99','2005-08-17 01:54:13','2006-02-15 22:23:16'), - (15814,590,2,11713,'3.99','2005-08-17 07:34:05','2006-02-15 22:23:17'), - (15815,590,1,14830,'2.99','2005-08-22 01:37:19','2006-02-15 22:23:17'), - (15816,590,2,15458,'2.99','2006-02-14 15:16:03','2006-02-15 22:23:17'), - (15817,591,1,1418,'0.99','2005-06-15 17:51:27','2006-02-15 22:23:17'), - (15818,591,2,3341,'2.99','2005-06-21 10:37:25','2006-02-15 22:23:17'), - (15819,591,2,3435,'4.99','2005-06-21 19:14:58','2006-02-15 22:23:18'), - (15820,591,1,3636,'0.99','2005-07-06 07:03:52','2006-02-15 22:23:18'), - (15821,591,2,4383,'11.99','2005-07-07 20:45:51','2006-02-15 22:23:18'), - (15822,591,1,4581,'6.99','2005-07-08 06:05:06','2006-02-15 22:23:18'), - (15823,591,1,5704,'5.99','2005-07-10 10:06:29','2006-02-15 22:23:19'), - (15824,591,1,5759,'6.99','2005-07-10 12:43:22','2006-02-15 22:23:19'), - (15825,591,1,7118,'8.99','2005-07-27 05:53:50','2006-02-15 22:23:19'), - (15826,591,1,7212,'2.99','2005-07-27 09:21:22','2006-02-15 22:23:19'), - (15827,591,2,7511,'4.99','2005-07-27 20:38:40','2006-02-15 22:23:20'), - (15828,591,1,7549,'3.99','2005-07-27 21:53:21','2006-02-15 22:23:20'), - (15829,591,2,7741,'0.99','2005-07-28 05:25:55','2006-02-15 22:23:20'), - (15830,591,1,7997,'4.99','2005-07-28 15:02:25','2006-02-15 22:23:20'), - (15831,591,1,8149,'3.99','2005-07-28 20:48:12','2006-02-15 22:23:21'), - (15832,591,2,8666,'5.99','2005-07-29 15:39:38','2006-02-15 22:23:21'), - (15833,591,2,8819,'4.99','2005-07-29 22:14:26','2006-02-15 22:23:21'), - (15834,591,1,9684,'0.99','2005-07-31 06:48:33','2006-02-15 22:23:21'), - (15835,591,1,10415,'4.99','2005-08-01 08:05:59','2006-02-15 22:23:22'), - (15836,591,2,12203,'5.99','2005-08-18 02:18:52','2006-02-15 22:23:22'), - (15837,591,2,12227,'4.99','2005-08-18 03:04:28','2006-02-15 22:23:22'), - (15838,591,1,12547,'4.99','2005-08-18 14:29:39','2006-02-15 22:23:22'), - (15839,591,1,12571,'5.99','2005-08-18 15:31:18','2006-02-15 22:23:23'), - (15840,591,1,12934,'5.99','2005-08-19 05:18:42','2006-02-15 22:23:23'), - (15841,591,2,13104,'2.99','2005-08-19 11:06:06','2006-02-15 22:23:23'), - (15842,591,2,13343,'3.99','2005-08-19 20:22:08','2006-02-15 22:23:23'), - (15843,591,1,13867,'9.99','2005-08-20 15:05:42','2006-02-15 22:23:23'), - (15844,592,2,1163,'6.99','2005-06-14 23:12:46','2006-02-15 22:23:24'), - (15845,592,2,1423,'5.99','2005-06-15 18:08:12','2006-02-15 22:23:24'), - (15846,592,1,1479,'2.99','2005-06-15 21:13:38','2006-02-15 22:23:24'), - (15847,592,1,2627,'0.99','2005-06-19 08:32:00','2006-02-15 22:23:24'), - (15848,592,1,3158,'7.99','2005-06-20 21:08:19','2006-02-15 22:23:25'), - (15849,592,2,3560,'2.99','2005-07-06 02:51:37','2006-02-15 22:23:25'), - (15850,592,1,3973,'11.99','2005-07-06 22:58:31','2006-02-15 22:23:25'), - (15851,592,1,4129,'1.99','2005-07-07 07:37:03','2006-02-15 22:23:25'), - (15852,592,1,4145,'9.99','2005-07-07 08:26:39','2006-02-15 22:23:26'), - (15853,592,1,4460,'0.99','2005-07-07 23:50:14','2006-02-15 22:23:26'), - (15854,592,1,4518,'2.99','2005-07-08 02:48:36','2006-02-15 22:23:26'), - (15855,592,1,6937,'0.99','2005-07-26 23:15:50','2006-02-15 22:23:26'), - (15856,592,2,7173,'0.99','2005-07-27 07:59:24','2006-02-15 22:23:27'), - (15857,592,1,7278,'3.99','2005-07-27 11:50:34','2006-02-15 22:23:27'), - (15858,592,2,7364,'4.99','2005-07-27 14:58:40','2006-02-15 22:23:27'), - (15859,592,1,8730,'2.99','2005-07-29 18:23:34','2006-02-15 22:23:27'), - (15860,592,2,8773,'0.99','2005-07-29 19:55:34','2006-02-15 22:23:28'), - (15861,592,1,9268,'4.99','2005-07-30 15:02:30','2006-02-15 22:23:28'), - (15862,592,1,9437,'3.99','2005-07-30 21:36:04','2006-02-15 22:23:28'), - (15863,592,2,9666,'6.99','2005-07-31 06:20:58','2006-02-15 22:23:28'), - (15864,592,2,10383,'0.99','2005-08-01 06:37:16','2006-02-15 22:23:29'), - (15865,592,2,10634,'2.99','2005-08-01 15:37:48','2006-02-15 22:23:29'), - (15866,592,1,11410,'8.99','2005-08-02 19:29:01','2006-02-15 22:23:29'), - (15867,592,2,12043,'0.99','2005-08-17 20:38:21','2006-02-15 22:23:29'), - (15868,592,2,12619,'0.99','2005-08-18 17:24:15','2006-02-15 22:23:30'), - (15869,592,1,12976,'1.99','2005-08-19 06:52:58','2006-02-15 22:23:30'), - (15870,592,1,13157,'2.99','2005-08-19 13:12:28','2006-02-15 22:23:30'), - (15871,592,2,13662,'3.99','2005-08-20 08:11:58','2006-02-15 22:23:30'), - (15872,592,2,14606,'0.99','2006-02-14 15:16:03','2006-02-15 22:23:30'), - (15873,593,1,790,'2.99','2005-05-29 16:19:29','2006-02-15 22:23:31'), - (15874,593,1,991,'8.99','2005-05-30 23:29:22','2006-02-15 22:23:31'), - (15875,593,2,2055,'5.99','2005-06-17 15:27:03','2006-02-15 22:23:31'), - (15876,593,2,2205,'4.99','2005-06-18 02:14:34','2006-02-15 22:23:31'), - (15877,593,1,2441,'4.99','2005-06-18 18:45:11','2006-02-15 22:23:32'), - (15878,593,1,2832,'4.99','2005-06-19 21:21:53','2006-02-15 22:23:32'), - (15879,593,2,3542,'2.99','2005-07-06 01:51:42','2006-02-15 22:23:32'), - (15880,593,2,4075,'2.99','2005-07-07 04:51:44','2006-02-15 22:23:32'), - (15881,593,2,4280,'3.99','2005-07-07 15:09:31','2006-02-15 22:23:33'), - (15882,593,2,4623,'0.99','2005-07-08 08:03:22','2006-02-15 22:23:33'), - (15883,593,2,4781,'4.99','2005-07-08 16:06:55','2006-02-15 22:23:33'), - (15884,593,2,4867,'0.99','2005-07-08 19:10:52','2006-02-15 22:23:33'), - (15885,593,1,6386,'2.99','2005-07-11 22:14:57','2006-02-15 22:23:34'), - (15886,593,1,6731,'2.99','2005-07-12 13:58:27','2006-02-15 22:23:34'), - (15887,593,2,7958,'4.99','2005-07-28 13:34:34','2006-02-15 22:23:34'), - (15888,593,1,8497,'2.99','2005-07-29 09:07:03','2006-02-15 22:23:34'), - (15889,593,2,9329,'6.99','2005-07-30 17:42:38','2006-02-15 22:23:35'), - (15890,593,1,9483,'6.99','2005-07-30 23:31:31','2006-02-15 22:23:35'), - (15891,593,1,10368,'3.99','2005-08-01 06:13:38','2006-02-15 22:23:35'), - (15892,593,2,10533,'3.99','2005-08-01 12:14:16','2006-02-15 22:23:35'), - (15893,593,1,10840,'5.99','2005-08-01 23:38:34','2006-02-15 22:23:36'), - (15894,593,2,10904,'4.99','2005-08-02 01:43:02','2006-02-15 22:23:36'), - (15895,593,2,12744,'2.99','2005-08-18 22:22:36','2006-02-15 22:23:36'), - (15896,593,1,13524,'6.99','2005-08-20 02:48:43','2006-02-15 22:23:36'), - (15897,593,1,14408,'5.99','2005-08-21 10:47:24','2006-02-15 22:23:36'), - (15898,593,1,14653,'0.99','2005-08-21 19:35:59','2006-02-15 22:23:37'), - (15899,594,1,313,'4.99','2005-05-26 22:56:19','2006-02-15 22:23:37'), - (15900,594,1,360,'8.99','2005-05-27 06:51:14','2006-02-15 22:23:37'), - (15901,594,2,1018,'0.99','2005-05-31 02:53:42','2006-02-15 22:23:37'), - (15902,594,1,1045,'6.99','2005-05-31 06:29:01','2006-02-15 22:23:38'), - (15903,594,2,1537,'5.99','2005-06-16 00:52:51','2006-02-15 22:23:38'), - (15904,594,1,1816,'4.99','2005-06-16 21:20:41','2006-02-15 22:23:38'), - (15905,594,1,1950,'2.99','2005-06-17 08:26:52','2006-02-15 22:23:38'), - (15906,594,1,2276,'6.99','2005-06-18 06:33:48','2006-02-15 22:23:39'), - (15907,594,2,2786,'0.99','2005-06-19 18:46:43','2006-02-15 22:23:39'), - (15908,594,2,3302,'1.99','2005-06-21 07:33:40','2006-02-15 22:23:39'), - (15909,594,2,3474,'0.99','2005-07-05 22:59:53','2006-02-15 22:23:39'), - (15910,594,1,3546,'4.99','2005-07-06 02:17:54','2006-02-15 22:23:40'), - (15911,594,2,3960,'2.99','2005-07-06 22:08:53','2006-02-15 22:23:40'), - (15912,594,1,4037,'5.99','2005-07-07 02:52:52','2006-02-15 22:23:40'), - (15913,594,1,4154,'3.99','2005-07-07 08:58:23','2006-02-15 22:23:40'), - (15914,594,2,5386,'2.99','2005-07-09 19:19:09','2006-02-15 22:23:41'), - (15915,594,1,6473,'6.99','2005-07-12 01:35:40','2006-02-15 22:23:41'), - (15916,594,1,7533,'8.99','2005-07-27 21:24:33','2006-02-15 22:23:41'), - (15917,594,1,8567,'1.99','2005-07-29 11:37:30','2006-02-15 22:23:41'), - (15918,594,1,8603,'2.99','2005-07-29 13:07:07','2006-02-15 22:23:42'), - (15919,594,2,8820,'5.99','2005-07-29 22:14:56','2006-02-15 22:23:42'), - (15920,594,1,9545,'7.99','2005-07-31 01:46:24','2006-02-15 22:23:42'), - (15921,594,1,9698,'3.99','2005-07-31 07:24:35','2006-02-15 22:23:42'), - (15922,594,2,9802,'4.99','2005-07-31 11:04:20','2006-02-15 22:23:42'), - (15923,594,2,10704,'8.99','2005-08-01 18:38:02','2006-02-15 22:23:43'), - (15924,594,2,14824,'4.99','2005-08-22 01:27:51','2006-02-15 22:23:43'), - (15925,594,1,14999,'4.99','2005-08-22 07:54:47','2006-02-15 22:23:43'), - (15926,595,1,613,'6.99','2005-05-28 15:27:22','2006-02-15 22:23:43'), - (15927,595,2,1170,'2.99','2005-06-14 23:47:35','2006-02-15 22:23:44'), - (15928,595,2,3371,'4.99','2005-06-21 13:27:22','2006-02-15 22:23:44'), - (15929,595,1,3789,'9.99','2005-07-06 14:02:26','2006-02-15 22:23:44'), - (15930,595,1,4017,'4.99','2005-07-07 01:08:18','2006-02-15 22:23:44'), - (15931,595,1,4241,'4.99','2005-07-07 13:39:00','2006-02-15 22:23:45'), - (15932,595,2,4775,'2.99','2005-07-08 15:44:05','2006-02-15 22:23:45'), - (15933,595,1,5631,'1.99','2005-07-10 06:15:45','2006-02-15 22:23:45'), - (15934,595,1,5952,'1.99','2005-07-10 23:18:20','2006-02-15 22:23:45'), - (15935,595,1,6105,'6.99','2005-07-11 07:03:19','2006-02-15 22:23:46'), - (15936,595,1,6704,'6.99','2005-07-12 12:50:24','2006-02-15 22:23:46'), - (15937,595,1,7086,'4.99','2005-07-27 04:39:46','2006-02-15 22:23:46'), - (15938,595,2,7307,'0.99','2005-07-27 12:59:10','2006-02-15 22:23:46'), - (15939,595,1,7396,'4.99','2005-07-27 16:03:53','2006-02-15 22:23:47'), - (15940,595,2,7490,'3.99','2005-07-27 19:48:12','2006-02-15 22:23:47'), - (15941,595,1,9152,'2.99','2005-07-30 10:51:27','2006-02-15 22:23:47'), - (15942,595,2,9223,'2.99','2005-07-30 13:23:20','2006-02-15 22:23:47'), - (15943,595,1,9354,'4.99','2005-07-30 18:32:51','2006-02-15 22:23:48'), - (15944,595,2,9497,'0.99','2005-07-30 23:56:54','2006-02-15 22:23:48'), - (15945,595,2,9542,'4.99','2005-07-31 01:41:48','2006-02-15 22:23:48'), - (15946,595,1,9631,'2.99','2005-07-31 05:02:00','2006-02-15 22:23:48'), - (15947,595,2,9826,'10.99','2005-07-31 11:51:46','2006-02-15 22:23:48'), - (15948,595,1,10729,'2.99','2005-08-01 19:21:11','2006-02-15 22:23:49'), - (15949,595,1,10932,'2.99','2005-08-02 02:46:22','2006-02-15 22:23:49'), - (15950,595,2,11748,'0.99','2005-08-17 09:04:02','2006-02-15 22:23:49'), - (15951,595,1,12235,'0.99','2005-08-18 03:17:50','2006-02-15 22:23:49'), - (15952,595,1,14334,'0.99','2005-08-21 08:32:32','2006-02-15 22:23:50'), - (15953,595,2,15576,'2.99','2005-08-23 05:32:03','2006-02-15 22:23:50'), - (15954,595,2,15994,'0.99','2005-08-23 20:29:10','2006-02-15 22:23:50'), - (15955,595,2,16016,'2.99','2005-08-23 21:26:35','2006-02-15 22:23:50'), - (15956,596,2,303,'4.99','2005-05-26 21:16:52','2006-02-15 22:23:51'), - (15957,596,2,625,'0.99','2005-05-28 16:35:46','2006-02-15 22:23:51'), - (15958,596,2,667,'4.99','2005-05-28 21:49:02','2006-02-15 22:23:51'), - (15959,596,2,782,'1.99','2005-05-29 14:38:57','2006-02-15 22:23:51'), - (15960,596,1,914,'2.99','2005-05-30 11:06:00','2006-02-15 22:23:52'), - (15961,596,1,974,'6.99','2005-05-30 20:28:42','2006-02-15 22:23:52'), - (15962,596,1,1644,'1.99','2005-06-16 08:58:18','2006-02-15 22:23:52'), - (15963,596,1,2767,'1.99','2005-06-19 17:46:35','2006-02-15 22:23:52'), - (15964,596,2,5742,'3.99','2005-07-10 11:56:18','2006-02-15 22:23:53'), - (15965,596,1,6015,'2.99','2005-07-11 02:04:12','2006-02-15 22:23:53'), - (15966,596,1,6017,'0.99','2005-07-11 02:05:32','2006-02-15 22:23:53'), - (15967,596,1,6197,'4.99','2005-07-11 12:09:51','2006-02-15 22:23:53'), - (15968,596,2,6883,'4.99','2005-07-12 20:50:48','2006-02-15 22:23:53'), - (15969,596,1,10094,'3.99','2005-07-31 20:31:18','2006-02-15 22:23:54'), - (15970,596,2,10692,'4.99','2005-08-01 18:12:35','2006-02-15 22:23:54'), - (15971,596,1,10756,'2.99','2005-08-01 20:17:03','2006-02-15 22:23:54'), - (15972,596,2,10804,'0.99','2005-08-01 22:22:11','2006-02-15 22:23:54'), - (15973,596,2,11009,'4.99','2005-08-02 05:06:23','2006-02-15 22:23:55'), - (15974,596,2,11852,'3.99','2005-08-17 13:38:27','2006-02-15 22:23:55'), - (15975,596,1,11934,'0.99','2005-08-17 16:40:00','2006-02-15 22:23:55'), - (15976,596,2,12560,'4.99','2005-08-18 14:54:19','2006-02-15 22:23:55'), - (15977,596,1,12878,'4.99','2005-08-19 03:17:08','2006-02-15 22:23:56'), - (15978,596,1,13648,'4.99','2005-08-20 07:48:10','2006-02-15 22:23:56'), - (15979,596,1,14050,'3.99','2005-08-20 22:09:04','2006-02-15 22:23:56'), - (15980,596,1,14417,'0.99','2005-08-21 11:13:35','2006-02-15 22:23:56'), - (15981,596,1,15405,'0.99','2005-08-22 23:20:41','2006-02-15 22:23:57'), - (15982,596,1,15899,'6.99','2005-08-23 17:16:28','2006-02-15 22:23:57'), - (15983,596,1,15423,'0.99','2006-02-14 15:16:03','2006-02-15 22:23:57'), - (15984,597,2,34,'2.99','2005-05-25 04:19:28','2006-02-15 22:23:57'), - (15985,597,2,514,'8.99','2005-05-28 03:09:28','2006-02-15 22:23:58'), - (15986,597,1,2379,'0.99','2005-06-18 14:59:39','2006-02-15 22:23:58'), - (15987,597,1,2696,'4.99','2005-06-19 13:28:42','2006-02-15 22:23:58'), - (15988,597,1,3201,'1.99','2005-06-21 00:30:26','2006-02-15 22:23:58'), - (15989,597,1,5093,'0.99','2005-07-09 05:59:12','2006-02-15 22:23:59'), - (15990,597,1,5348,'4.99','2005-07-09 17:34:11','2006-02-15 22:23:59'), - (15991,597,2,5732,'2.99','2005-07-10 11:36:32','2006-02-15 22:23:59'), - (15992,597,1,6508,'2.99','2005-07-12 03:34:50','2006-02-15 22:23:59'), - (15993,597,2,7968,'4.99','2005-07-28 13:57:35','2006-02-15 22:23:59'), - (15994,597,2,8948,'4.99','2005-07-30 03:16:18','2006-02-15 22:24:00'), - (15995,597,2,10021,'4.99','2005-07-31 18:24:39','2006-02-15 22:24:00'), - (15996,597,1,10214,'0.99','2005-08-01 01:04:15','2006-02-15 22:24:00'), - (15997,597,2,10986,'5.99','2005-08-02 04:35:24','2006-02-15 22:24:00'), - (15998,597,2,11147,'4.99','2005-08-02 09:45:54','2006-02-15 22:24:01'), - (15999,597,2,11223,'2.99','2005-08-02 12:34:27','2006-02-15 22:24:01'), - (16000,597,1,11240,'2.99','2005-08-02 13:28:30','2006-02-15 22:24:01'), - (16001,597,1,11880,'5.99','2005-08-17 14:28:28','2006-02-15 22:24:01'), - (16002,597,1,12081,'4.99','2005-08-17 22:10:46','2006-02-15 22:24:02'), - (16003,597,1,12992,'0.99','2005-08-19 07:23:06','2006-02-15 22:24:02'), - (16004,597,2,13019,'2.99','2005-08-19 08:07:43','2006-02-15 22:24:02'), - (16005,597,1,13152,'6.99','2005-08-19 13:09:32','2006-02-15 22:24:02'), - (16006,597,2,15275,'2.99','2005-08-22 18:57:39','2006-02-15 22:24:03'), - (16007,597,1,15469,'4.99','2005-08-23 01:29:59','2006-02-15 22:24:03'), - (16008,597,1,11652,'4.99','2006-02-14 15:16:03','2006-02-15 22:24:03'), - (16009,598,1,3005,'2.99','2005-06-20 10:10:29','2006-02-15 22:24:03'), - (16010,598,1,3648,'0.99','2005-07-06 07:30:41','2006-02-15 22:24:04'), - (16011,598,2,3950,'6.99','2005-07-06 21:48:44','2006-02-15 22:24:04'), - (16012,598,1,3972,'4.99','2005-07-06 22:53:57','2006-02-15 22:24:04'), - (16013,598,1,4181,'4.99','2005-07-07 10:27:54','2006-02-15 22:24:04'), - (16014,598,2,5688,'5.99','2005-07-10 09:16:08','2006-02-15 22:24:04'), - (16015,598,1,6519,'4.99','2005-07-12 04:00:36','2006-02-15 22:24:05'), - (16016,598,2,6528,'4.99','2005-07-12 04:29:44','2006-02-15 22:24:05'), - (16017,598,2,6575,'0.99','2005-07-12 06:12:53','2006-02-15 22:24:05'), - (16018,598,2,6660,'3.99','2005-07-12 11:20:12','2006-02-15 22:24:05'), - (16019,598,2,7201,'6.99','2005-07-27 08:57:40','2006-02-15 22:24:06'), - (16020,598,2,7354,'0.99','2005-07-27 14:42:11','2006-02-15 22:24:06'), - (16021,598,1,7998,'0.99','2005-07-28 15:08:48','2006-02-15 22:24:06'), - (16022,598,2,8436,'0.99','2005-07-29 07:21:20','2006-02-15 22:24:06'), - (16023,598,1,8511,'5.99','2005-07-29 09:42:42','2006-02-15 22:24:07'), - (16024,598,1,8939,'4.99','2005-07-30 02:56:53','2006-02-15 22:24:07'), - (16025,598,1,10054,'4.99','2005-07-31 19:15:52','2006-02-15 22:24:07'), - (16026,598,2,11350,'0.99','2005-08-02 17:22:59','2006-02-15 22:24:07'), - (16027,598,2,12601,'2.99','2005-08-18 16:47:52','2006-02-15 22:24:08'), - (16028,598,2,14345,'0.99','2005-08-21 08:41:15','2006-02-15 22:24:08'), - (16029,598,2,15307,'2.99','2005-08-22 19:54:26','2006-02-15 22:24:08'), - (16030,598,1,15443,'7.99','2005-08-23 00:44:15','2006-02-15 22:24:08'), - (16031,599,2,1008,'4.99','2005-05-31 01:18:56','2006-02-15 22:24:09'), - (16032,599,1,2272,'1.99','2005-06-18 06:29:53','2006-02-15 22:24:09'), - (16033,599,2,3043,'6.99','2005-06-20 12:38:35','2006-02-15 22:24:09'), - (16034,599,2,3398,'4.99','2005-06-21 15:34:38','2006-02-15 22:24:09'), - (16035,599,1,3429,'6.99','2005-06-21 18:46:05','2006-02-15 22:24:09'), - (16036,599,1,5065,'0.99','2005-07-09 04:42:00','2006-02-15 22:24:10'), - (16037,599,1,5843,'2.99','2005-07-10 17:14:27','2006-02-15 22:24:10'), - (16038,599,2,6800,'9.99','2005-07-12 17:03:56','2006-02-15 22:24:10'), - (16039,599,2,6895,'2.99','2005-07-12 21:23:59','2006-02-15 22:24:10'), - (16040,599,1,8965,'6.99','2005-07-30 03:52:37','2006-02-15 22:24:11'), - (16041,599,2,9630,'2.99','2005-07-31 04:57:07','2006-02-15 22:24:11'), - (16042,599,2,9679,'2.99','2005-07-31 06:41:19','2006-02-15 22:24:11'), - (16043,599,2,11522,'3.99','2005-08-17 00:05:05','2006-02-15 22:24:11'), - (16044,599,1,14233,'1.99','2005-08-21 05:07:08','2006-02-15 22:24:12'), - (16045,599,1,14599,'4.99','2005-08-21 17:43:42','2006-02-15 22:24:12'), - (16046,599,1,14719,'1.99','2005-08-21 21:41:57','2006-02-15 22:24:12'), - (16047,599,2,15590,'8.99','2005-08-23 06:09:44','2006-02-15 22:24:12'), - (16048,599,2,15719,'2.99','2005-08-23 11:08:46','2006-02-15 22:24:13'), - (16049,599,2,15725,'2.99','2005-08-23 11:25:00','2006-02-15 22:24:13'); -COMMIT; - --- --- Trigger to enforce payment_date during INSERT --- - -CREATE TRIGGER payment_date BEFORE INSERT ON payment - FOR EACH ROW SET NEW.payment_date = NOW(); - --- --- Dumping data for table rental --- - -SET AUTOCOMMIT=0; -INSERT INTO rental VALUES (1,'2005-05-24 22:53:30',367,130,'2005-05-26 22:04:30',1,'2006-02-15 21:30:53'), - (2,'2005-05-24 22:54:33',1525,459,'2005-05-28 19:40:33',1,'2006-02-15 21:30:53'), - (3,'2005-05-24 23:03:39',1711,408,'2005-06-01 22:12:39',1,'2006-02-15 21:30:53'), - (4,'2005-05-24 23:04:41',2452,333,'2005-06-03 01:43:41',2,'2006-02-15 21:30:53'), - (5,'2005-05-24 23:05:21',2079,222,'2005-06-02 04:33:21',1,'2006-02-15 21:30:53'), - (6,'2005-05-24 23:08:07',2792,549,'2005-05-27 01:32:07',1,'2006-02-15 21:30:53'), - (7,'2005-05-24 23:11:53',3995,269,'2005-05-29 20:34:53',2,'2006-02-15 21:30:53'), - (8,'2005-05-24 23:31:46',2346,239,'2005-05-27 23:33:46',2,'2006-02-15 21:30:53'), - (9,'2005-05-25 00:00:40',2580,126,'2005-05-28 00:22:40',1,'2006-02-15 21:30:53'), - (10,'2005-05-25 00:02:21',1824,399,'2005-05-31 22:44:21',2,'2006-02-15 21:30:53'), - (11,'2005-05-25 00:09:02',4443,142,'2005-06-02 20:56:02',2,'2006-02-15 21:30:53'), - (12,'2005-05-25 00:19:27',1584,261,'2005-05-30 05:44:27',2,'2006-02-15 21:30:53'), - (13,'2005-05-25 00:22:55',2294,334,'2005-05-30 04:28:55',1,'2006-02-15 21:30:53'), - (14,'2005-05-25 00:31:15',2701,446,'2005-05-26 02:56:15',1,'2006-02-15 21:30:53'), - (15,'2005-05-25 00:39:22',3049,319,'2005-06-03 03:30:22',1,'2006-02-15 21:30:53'), - (16,'2005-05-25 00:43:11',389,316,'2005-05-26 04:42:11',2,'2006-02-15 21:30:53'), - (17,'2005-05-25 01:06:36',830,575,'2005-05-27 00:43:36',1,'2006-02-15 21:30:53'), - (18,'2005-05-25 01:10:47',3376,19,'2005-05-31 06:35:47',2,'2006-02-15 21:30:53'), - (19,'2005-05-25 01:17:24',1941,456,'2005-05-31 06:00:24',1,'2006-02-15 21:30:53'), - (20,'2005-05-25 01:48:41',3517,185,'2005-05-27 02:20:41',2,'2006-02-15 21:30:53'), - (21,'2005-05-25 01:59:46',146,388,'2005-05-26 01:01:46',2,'2006-02-15 21:30:53'), - (22,'2005-05-25 02:19:23',727,509,'2005-05-26 04:52:23',2,'2006-02-15 21:30:53'), - (23,'2005-05-25 02:40:21',4441,438,'2005-05-29 06:34:21',1,'2006-02-15 21:30:53'), - (24,'2005-05-25 02:53:02',3273,350,'2005-05-27 01:15:02',1,'2006-02-15 21:30:53'), - (25,'2005-05-25 03:21:20',3961,37,'2005-05-27 21:25:20',2,'2006-02-15 21:30:53'), - (26,'2005-05-25 03:36:50',4371,371,'2005-05-31 00:34:50',1,'2006-02-15 21:30:53'), - (27,'2005-05-25 03:41:50',1225,301,'2005-05-30 01:13:50',2,'2006-02-15 21:30:53'), - (28,'2005-05-25 03:42:37',4068,232,'2005-05-26 09:26:37',2,'2006-02-15 21:30:53'), - (29,'2005-05-25 03:47:12',611,44,'2005-05-30 00:31:12',2,'2006-02-15 21:30:53'), - (30,'2005-05-25 04:01:32',3744,430,'2005-05-30 03:12:32',1,'2006-02-15 21:30:53'), - (31,'2005-05-25 04:05:17',4482,369,'2005-05-30 07:15:17',1,'2006-02-15 21:30:53'), - (32,'2005-05-25 04:06:21',3832,230,'2005-05-25 23:55:21',1,'2006-02-15 21:30:53'), - (33,'2005-05-25 04:18:51',1681,272,'2005-05-27 03:58:51',1,'2006-02-15 21:30:53'), - (34,'2005-05-25 04:19:28',2613,597,'2005-05-29 00:10:28',2,'2006-02-15 21:30:53'), - (35,'2005-05-25 04:24:36',1286,484,'2005-05-27 07:02:36',2,'2006-02-15 21:30:53'), - (36,'2005-05-25 04:36:26',1308,88,'2005-05-29 00:31:26',1,'2006-02-15 21:30:53'), - (37,'2005-05-25 04:44:31',403,535,'2005-05-29 01:03:31',1,'2006-02-15 21:30:53'), - (38,'2005-05-25 04:47:44',2540,302,'2005-06-01 00:58:44',1,'2006-02-15 21:30:53'), - (39,'2005-05-25 04:51:46',4466,207,'2005-05-31 03:14:46',2,'2006-02-15 21:30:53'), - (40,'2005-05-25 05:09:04',2638,413,'2005-05-27 23:12:04',1,'2006-02-15 21:30:53'), - (41,'2005-05-25 05:12:29',1761,174,'2005-06-02 00:28:29',1,'2006-02-15 21:30:53'), - (42,'2005-05-25 05:24:58',380,523,'2005-05-31 02:47:58',2,'2006-02-15 21:30:53'), - (43,'2005-05-25 05:39:25',2578,532,'2005-05-26 06:54:25',2,'2006-02-15 21:30:53'), - (44,'2005-05-25 05:53:23',3098,207,'2005-05-29 10:56:23',2,'2006-02-15 21:30:53'), - (45,'2005-05-25 05:59:39',1853,436,'2005-06-02 09:56:39',2,'2006-02-15 21:30:53'), - (46,'2005-05-25 06:04:08',3318,7,'2005-06-02 08:18:08',2,'2006-02-15 21:30:53'), - (47,'2005-05-25 06:05:20',2211,35,'2005-05-30 03:04:20',1,'2006-02-15 21:30:53'), - (48,'2005-05-25 06:20:46',1780,282,'2005-06-02 05:42:46',1,'2006-02-15 21:30:53'), - (49,'2005-05-25 06:39:35',2965,498,'2005-05-30 10:12:35',2,'2006-02-15 21:30:53'), - (50,'2005-05-25 06:44:53',1983,18,'2005-05-28 11:28:53',2,'2006-02-15 21:30:53'), - (51,'2005-05-25 06:49:10',1257,256,'2005-05-26 06:42:10',1,'2006-02-15 21:30:53'), - (52,'2005-05-25 06:51:29',4017,507,'2005-05-31 01:27:29',2,'2006-02-15 21:30:53'), - (53,'2005-05-25 07:19:16',1255,569,'2005-05-27 05:19:16',2,'2006-02-15 21:30:53'), - (54,'2005-05-25 07:23:25',2787,291,'2005-06-01 05:05:25',2,'2006-02-15 21:30:53'), - (55,'2005-05-25 08:26:13',1139,131,'2005-05-30 10:57:13',1,'2006-02-15 21:30:53'), - (56,'2005-05-25 08:28:11',1352,511,'2005-05-26 14:21:11',1,'2006-02-15 21:30:53'), - (57,'2005-05-25 08:43:32',3938,6,'2005-05-29 06:42:32',2,'2006-02-15 21:30:53'), - (58,'2005-05-25 08:53:14',3050,323,'2005-05-28 14:40:14',1,'2006-02-15 21:30:53'), - (59,'2005-05-25 08:56:42',2884,408,'2005-06-01 09:52:42',1,'2006-02-15 21:30:53'), - (60,'2005-05-25 08:58:25',330,470,'2005-05-30 14:14:25',1,'2006-02-15 21:30:53'), - (61,'2005-05-25 09:01:57',4210,250,'2005-06-02 07:22:57',2,'2006-02-15 21:30:53'), - (62,'2005-05-25 09:18:52',261,419,'2005-05-30 10:55:52',1,'2006-02-15 21:30:53'), - (63,'2005-05-25 09:19:16',4008,383,'2005-05-27 04:24:16',1,'2006-02-15 21:30:53'), - (64,'2005-05-25 09:21:29',79,368,'2005-06-03 11:31:29',1,'2006-02-15 21:30:53'), - (65,'2005-05-25 09:32:03',3552,346,'2005-05-29 14:21:03',1,'2006-02-15 21:30:53'), - (66,'2005-05-25 09:35:12',1162,86,'2005-05-29 04:16:12',2,'2006-02-15 21:30:53'), - (67,'2005-05-25 09:41:01',239,119,'2005-05-27 13:46:01',2,'2006-02-15 21:30:53'), - (68,'2005-05-25 09:47:31',4029,120,'2005-05-31 10:20:31',2,'2006-02-15 21:30:53'), - (69,'2005-05-25 10:10:14',3207,305,'2005-05-27 14:02:14',2,'2006-02-15 21:30:53'), - (70,'2005-05-25 10:15:23',2168,73,'2005-05-27 05:56:23',2,'2006-02-15 21:30:53'), - (71,'2005-05-25 10:26:39',2408,100,'2005-05-28 04:59:39',1,'2006-02-15 21:30:53'), - (72,'2005-05-25 10:52:13',2260,48,'2005-05-28 05:52:13',2,'2006-02-15 21:30:53'), - (73,'2005-05-25 11:00:07',517,391,'2005-06-01 13:56:07',2,'2006-02-15 21:30:53'), - (74,'2005-05-25 11:09:48',1744,265,'2005-05-26 12:23:48',2,'2006-02-15 21:30:53'), - (75,'2005-05-25 11:13:34',3393,510,'2005-06-03 12:58:34',1,'2006-02-15 21:30:53'), - (76,'2005-05-25 11:30:37',3021,1,'2005-06-03 12:00:37',2,'2006-02-15 21:30:53'), - (77,'2005-05-25 11:31:59',1303,451,'2005-05-26 16:53:59',2,'2006-02-15 21:30:53'), - (78,'2005-05-25 11:35:18',4067,135,'2005-05-31 12:48:18',2,'2006-02-15 21:30:53'), - (79,'2005-05-25 12:11:07',3299,245,'2005-06-03 10:54:07',2,'2006-02-15 21:30:53'), - (80,'2005-05-25 12:12:07',2478,314,'2005-05-31 17:46:07',2,'2006-02-15 21:30:53'), - (81,'2005-05-25 12:15:19',2610,286,'2005-06-02 14:08:19',2,'2006-02-15 21:30:53'), - (82,'2005-05-25 12:17:46',1388,427,'2005-06-01 10:48:46',1,'2006-02-15 21:30:53'), - (83,'2005-05-25 12:30:15',466,131,'2005-05-27 15:40:15',1,'2006-02-15 21:30:53'), - (84,'2005-05-25 12:36:30',1829,492,'2005-05-29 18:33:30',1,'2006-02-15 21:30:53'), - (85,'2005-05-25 13:05:34',470,414,'2005-05-29 16:53:34',1,'2006-02-15 21:30:53'), - (86,'2005-05-25 13:36:12',2275,266,'2005-05-30 14:53:12',1,'2006-02-15 21:30:53'), - (87,'2005-05-25 13:52:43',1586,331,'2005-05-29 11:12:43',2,'2006-02-15 21:30:53'), - (88,'2005-05-25 14:13:54',2221,53,'2005-05-29 09:32:54',2,'2006-02-15 21:30:53'), - (89,'2005-05-25 14:28:29',2181,499,'2005-05-29 14:33:29',1,'2006-02-15 21:30:53'), - (90,'2005-05-25 14:31:25',2984,25,'2005-06-01 10:07:25',1,'2006-02-15 21:30:53'), - (91,'2005-05-25 14:57:22',139,267,'2005-06-01 18:32:22',1,'2006-02-15 21:30:53'), - (92,'2005-05-25 15:38:46',775,302,'2005-05-31 13:40:46',2,'2006-02-15 21:30:53'), - (93,'2005-05-25 15:54:16',4360,288,'2005-06-03 20:18:16',1,'2006-02-15 21:30:53'), - (94,'2005-05-25 16:03:42',1675,197,'2005-05-30 14:23:42',1,'2006-02-15 21:30:53'), - (95,'2005-05-25 16:12:52',178,400,'2005-06-02 18:55:52',2,'2006-02-15 21:30:53'), - (96,'2005-05-25 16:32:19',3418,49,'2005-05-30 10:47:19',2,'2006-02-15 21:30:53'), - (97,'2005-05-25 16:34:24',1283,263,'2005-05-28 12:13:24',2,'2006-02-15 21:30:53'), - (98,'2005-05-25 16:48:24',2970,269,'2005-05-27 11:29:24',2,'2006-02-15 21:30:53'), - (99,'2005-05-25 16:50:20',535,44,'2005-05-28 18:52:20',1,'2006-02-15 21:30:53'), - (100,'2005-05-25 16:50:28',2599,208,'2005-06-02 22:11:28',1,'2006-02-15 21:30:53'), - (101,'2005-05-25 17:17:04',617,468,'2005-05-31 19:47:04',1,'2006-02-15 21:30:53'), - (102,'2005-05-25 17:22:10',373,343,'2005-05-31 19:47:10',1,'2006-02-15 21:30:53'), - (103,'2005-05-25 17:30:42',3343,384,'2005-06-03 22:36:42',1,'2006-02-15 21:30:53'), - (104,'2005-05-25 17:46:33',4281,310,'2005-05-27 15:20:33',1,'2006-02-15 21:30:53'), - (105,'2005-05-25 17:54:12',794,108,'2005-05-30 12:03:12',2,'2006-02-15 21:30:53'), - (106,'2005-05-25 18:18:19',3627,196,'2005-06-04 00:01:19',2,'2006-02-15 21:30:53'), - (107,'2005-05-25 18:28:09',2833,317,'2005-06-03 22:46:09',2,'2006-02-15 21:30:53'), - (108,'2005-05-25 18:30:05',3289,242,'2005-05-30 19:40:05',1,'2006-02-15 21:30:53'), - (109,'2005-05-25 18:40:20',1044,503,'2005-05-29 20:39:20',2,'2006-02-15 21:30:53'), - (110,'2005-05-25 18:43:49',4108,19,'2005-06-03 18:13:49',2,'2006-02-15 21:30:53'), - (111,'2005-05-25 18:45:19',3725,227,'2005-05-28 17:18:19',1,'2006-02-15 21:30:53'), - (112,'2005-05-25 18:57:24',2153,500,'2005-06-02 20:44:24',1,'2006-02-15 21:30:53'), - (113,'2005-05-25 19:07:40',2963,93,'2005-05-27 22:16:40',2,'2006-02-15 21:30:53'), - (114,'2005-05-25 19:12:42',4502,506,'2005-06-01 23:10:42',1,'2006-02-15 21:30:53'), - (115,'2005-05-25 19:13:25',749,455,'2005-05-29 20:17:25',1,'2006-02-15 21:30:53'), - (116,'2005-05-25 19:27:51',4453,18,'2005-05-26 16:23:51',1,'2006-02-15 21:30:53'), - (117,'2005-05-25 19:30:46',4278,7,'2005-05-31 23:59:46',2,'2006-02-15 21:30:53'), - (118,'2005-05-25 19:31:18',872,524,'2005-05-31 15:00:18',1,'2006-02-15 21:30:53'), - (119,'2005-05-25 19:37:02',1359,51,'2005-05-29 23:51:02',2,'2006-02-15 21:30:53'), - (120,'2005-05-25 19:37:47',37,365,'2005-06-01 23:29:47',2,'2006-02-15 21:30:53'), - (121,'2005-05-25 19:41:29',1053,405,'2005-05-29 21:31:29',1,'2006-02-15 21:30:53'), - (122,'2005-05-25 19:46:21',2908,273,'2005-06-02 19:07:21',1,'2006-02-15 21:30:53'), - (123,'2005-05-25 20:26:42',1795,43,'2005-05-26 19:41:42',1,'2006-02-15 21:30:53'), - (124,'2005-05-25 20:46:11',212,246,'2005-05-30 00:47:11',2,'2006-02-15 21:30:53'), - (125,'2005-05-25 20:48:50',952,368,'2005-06-02 21:39:50',1,'2006-02-15 21:30:53'), - (126,'2005-05-25 21:07:59',2047,439,'2005-05-28 18:51:59',1,'2006-02-15 21:30:53'), - (127,'2005-05-25 21:10:40',2026,94,'2005-06-02 21:38:40',1,'2006-02-15 21:30:53'), - (128,'2005-05-25 21:19:53',4322,40,'2005-05-29 23:34:53',1,'2006-02-15 21:30:53'), - (129,'2005-05-25 21:20:03',4154,23,'2005-06-04 01:25:03',2,'2006-02-15 21:30:53'), - (130,'2005-05-25 21:21:56',3990,56,'2005-05-30 22:41:56',2,'2006-02-15 21:30:53'), - (131,'2005-05-25 21:42:46',815,325,'2005-05-30 23:25:46',2,'2006-02-15 21:30:53'), - (132,'2005-05-25 21:46:54',3367,479,'2005-05-31 21:02:54',1,'2006-02-15 21:30:53'), - (133,'2005-05-25 21:48:30',399,237,'2005-05-30 00:26:30',2,'2006-02-15 21:30:53'), - (134,'2005-05-25 21:48:41',2272,222,'2005-06-02 18:28:41',1,'2006-02-15 21:30:53'), - (135,'2005-05-25 21:58:58',103,304,'2005-06-03 17:50:58',1,'2006-02-15 21:30:53'), - (136,'2005-05-25 22:02:30',2296,504,'2005-05-31 18:06:30',1,'2006-02-15 21:30:53'), - (137,'2005-05-25 22:25:18',2591,560,'2005-06-01 02:30:18',2,'2006-02-15 21:30:53'), - (138,'2005-05-25 22:48:22',4134,586,'2005-05-29 20:21:22',2,'2006-02-15 21:30:53'), - (139,'2005-05-25 23:00:21',327,257,'2005-05-29 17:12:21',1,'2006-02-15 21:30:53'), - (140,'2005-05-25 23:34:22',655,354,'2005-05-27 01:10:22',1,'2006-02-15 21:30:53'), - (141,'2005-05-25 23:34:53',811,89,'2005-06-02 01:57:53',1,'2006-02-15 21:30:53'), - (142,'2005-05-25 23:43:47',4407,472,'2005-05-29 00:46:47',2,'2006-02-15 21:30:53'), - (143,'2005-05-25 23:45:52',847,297,'2005-05-27 21:41:52',2,'2006-02-15 21:30:53'), - (144,'2005-05-25 23:49:56',1689,357,'2005-06-01 21:41:56',2,'2006-02-15 21:30:53'), - (145,'2005-05-25 23:59:03',3905,82,'2005-05-31 02:56:03',1,'2006-02-15 21:30:53'), - (146,'2005-05-26 00:07:11',1431,433,'2005-06-04 00:20:11',2,'2006-02-15 21:30:53'), - (147,'2005-05-26 00:17:50',633,274,'2005-05-29 23:21:50',2,'2006-02-15 21:30:53'), - (148,'2005-05-26 00:25:23',4252,142,'2005-06-01 19:29:23',2,'2006-02-15 21:30:53'), - (149,'2005-05-26 00:28:05',1084,319,'2005-06-02 21:30:05',2,'2006-02-15 21:30:53'), - (150,'2005-05-26 00:28:39',909,429,'2005-06-01 02:10:39',2,'2006-02-15 21:30:53'), - (151,'2005-05-26 00:37:28',2942,14,'2005-05-30 06:28:28',1,'2006-02-15 21:30:53'), - (152,'2005-05-26 00:41:10',2622,57,'2005-06-03 06:05:10',1,'2006-02-15 21:30:53'), - (153,'2005-05-26 00:47:47',3888,348,'2005-05-27 21:28:47',1,'2006-02-15 21:30:53'), - (154,'2005-05-26 00:55:56',1354,185,'2005-05-29 23:18:56',2,'2006-02-15 21:30:53'), - (155,'2005-05-26 01:15:05',288,551,'2005-06-01 00:03:05',1,'2006-02-15 21:30:53'), - (156,'2005-05-26 01:19:05',3193,462,'2005-05-27 23:43:05',1,'2006-02-15 21:30:53'), - (157,'2005-05-26 01:25:21',887,344,'2005-05-26 21:17:21',2,'2006-02-15 21:30:53'), - (158,'2005-05-26 01:27:11',2395,354,'2005-06-03 00:30:11',2,'2006-02-15 21:30:53'), - (159,'2005-05-26 01:34:28',3453,505,'2005-05-29 04:00:28',1,'2006-02-15 21:30:53'), - (160,'2005-05-26 01:46:20',1885,290,'2005-06-01 05:45:20',1,'2006-02-15 21:30:53'), - (161,'2005-05-26 01:51:48',2941,182,'2005-05-27 05:42:48',1,'2006-02-15 21:30:53'), - (162,'2005-05-26 02:02:05',1229,296,'2005-05-27 03:38:05',2,'2006-02-15 21:30:53'), - (163,'2005-05-26 02:26:23',2306,104,'2005-06-04 06:36:23',1,'2006-02-15 21:30:53'), - (164,'2005-05-26 02:26:49',1070,151,'2005-05-28 00:32:49',1,'2006-02-15 21:30:53'), - (165,'2005-05-26 02:28:36',2735,33,'2005-06-02 03:21:36',1,'2006-02-15 21:30:53'), - (166,'2005-05-26 02:49:11',3894,322,'2005-05-31 01:28:11',1,'2006-02-15 21:30:53'), - (167,'2005-05-26 02:50:31',865,401,'2005-05-27 03:07:31',1,'2006-02-15 21:30:53'), - (168,'2005-05-26 03:07:43',2714,469,'2005-06-02 02:09:43',2,'2006-02-15 21:30:53'), - (169,'2005-05-26 03:09:30',1758,381,'2005-05-27 01:37:30',2,'2006-02-15 21:30:53'), - (170,'2005-05-26 03:11:12',3688,107,'2005-06-02 03:53:12',1,'2006-02-15 21:30:53'), - (171,'2005-05-26 03:14:15',4483,400,'2005-06-03 00:24:15',2,'2006-02-15 21:30:53'), - (172,'2005-05-26 03:17:42',2873,176,'2005-05-29 04:11:42',2,'2006-02-15 21:30:53'), - (173,'2005-05-26 03:42:10',3596,533,'2005-05-28 01:37:10',2,'2006-02-15 21:30:53'), - (174,'2005-05-26 03:44:10',3954,552,'2005-05-28 07:13:10',2,'2006-02-15 21:30:53'), - (175,'2005-05-26 03:46:26',4346,47,'2005-06-03 06:01:26',2,'2006-02-15 21:30:53'), - (176,'2005-05-26 03:47:39',851,250,'2005-06-01 02:36:39',2,'2006-02-15 21:30:53'), - (177,'2005-05-26 04:14:29',3545,548,'2005-06-01 08:16:29',2,'2006-02-15 21:30:53'), - (178,'2005-05-26 04:21:46',1489,196,'2005-06-04 07:09:46',2,'2006-02-15 21:30:53'), - (179,'2005-05-26 04:26:06',2575,19,'2005-06-03 10:06:06',1,'2006-02-15 21:30:53'), - (180,'2005-05-26 04:46:23',2752,75,'2005-06-01 09:58:23',1,'2006-02-15 21:30:53'), - (181,'2005-05-26 04:47:06',2417,587,'2005-05-29 06:34:06',2,'2006-02-15 21:30:53'), - (182,'2005-05-26 04:49:17',4396,237,'2005-06-01 05:43:17',2,'2006-02-15 21:30:53'), - (183,'2005-05-26 05:01:18',2877,254,'2005-06-01 09:04:18',1,'2006-02-15 21:30:53'), - (184,'2005-05-26 05:29:49',1970,556,'2005-05-28 10:10:49',1,'2006-02-15 21:30:53'), - (185,'2005-05-26 05:30:03',2598,125,'2005-06-02 09:48:03',2,'2006-02-15 21:30:53'), - (186,'2005-05-26 05:32:52',1799,468,'2005-06-03 07:19:52',2,'2006-02-15 21:30:53'), - (187,'2005-05-26 05:42:37',4004,515,'2005-06-04 00:38:37',1,'2006-02-15 21:30:53'), - (188,'2005-05-26 05:47:12',3342,243,'2005-05-26 23:48:12',1,'2006-02-15 21:30:53'), - (189,'2005-05-26 06:01:41',984,247,'2005-05-27 06:11:41',1,'2006-02-15 21:30:53'), - (190,'2005-05-26 06:11:28',3962,533,'2005-06-01 09:44:28',1,'2006-02-15 21:30:53'), - (191,'2005-05-26 06:14:06',4365,412,'2005-05-28 05:33:06',1,'2006-02-15 21:30:53'), - (192,'2005-05-26 06:20:37',1897,437,'2005-06-02 10:57:37',1,'2006-02-15 21:30:53'), - (193,'2005-05-26 06:41:48',3900,270,'2005-05-30 06:21:48',2,'2006-02-15 21:30:53'), - (194,'2005-05-26 06:52:33',1337,29,'2005-05-30 04:08:33',2,'2006-02-15 21:30:53'), - (195,'2005-05-26 06:52:36',506,564,'2005-05-31 02:47:36',2,'2006-02-15 21:30:53'), - (196,'2005-05-26 06:55:58',190,184,'2005-05-27 10:54:58',1,'2006-02-15 21:30:53'), - (197,'2005-05-26 06:59:21',4212,546,'2005-06-03 05:04:21',2,'2006-02-15 21:30:53'), - (198,'2005-05-26 07:03:49',1789,54,'2005-06-04 11:45:49',1,'2006-02-15 21:30:53'), - (199,'2005-05-26 07:11:58',2135,71,'2005-05-28 09:06:58',1,'2006-02-15 21:30:53'), - (200,'2005-05-26 07:12:21',3926,321,'2005-05-31 12:07:21',1,'2006-02-15 21:30:53'), - (201,'2005-05-26 07:13:45',776,444,'2005-06-04 02:02:45',2,'2006-02-15 21:30:53'), - (202,'2005-05-26 07:27:36',674,20,'2005-06-02 03:52:36',1,'2006-02-15 21:30:53'), - (203,'2005-05-26 07:27:57',3374,109,'2005-06-03 12:52:57',1,'2006-02-15 21:30:53'), - (204,'2005-05-26 07:30:37',1842,528,'2005-05-30 08:11:37',1,'2006-02-15 21:30:53'), - (205,'2005-05-26 07:59:37',303,114,'2005-05-29 09:43:37',2,'2006-02-15 21:30:53'), - (206,'2005-05-26 08:01:54',1717,345,'2005-05-27 06:26:54',1,'2006-02-15 21:30:53'), - (207,'2005-05-26 08:04:38',102,47,'2005-05-27 09:32:38',2,'2006-02-15 21:30:53'), - (208,'2005-05-26 08:10:22',3669,274,'2005-05-27 03:55:22',1,'2006-02-15 21:30:53'), - (209,'2005-05-26 08:14:01',729,379,'2005-05-27 09:00:01',1,'2006-02-15 21:30:53'), - (210,'2005-05-26 08:14:15',1801,391,'2005-05-27 12:12:15',2,'2006-02-15 21:30:53'), - (211,'2005-05-26 08:33:10',4005,170,'2005-05-28 14:09:10',1,'2006-02-15 21:30:53'), - (212,'2005-05-26 08:34:41',764,59,'2005-05-30 12:46:41',2,'2006-02-15 21:30:53'), - (213,'2005-05-26 08:44:08',1505,394,'2005-05-31 12:33:08',2,'2006-02-15 21:30:53'), - (214,'2005-05-26 08:48:49',1453,98,'2005-05-31 04:06:49',2,'2006-02-15 21:30:53'), - (215,'2005-05-26 09:02:47',679,197,'2005-05-28 09:45:47',2,'2006-02-15 21:30:53'), - (216,'2005-05-26 09:17:43',1398,91,'2005-06-03 08:21:43',1,'2006-02-15 21:30:53'), - (217,'2005-05-26 09:24:26',4395,121,'2005-05-31 03:24:26',2,'2006-02-15 21:30:53'), - (218,'2005-05-26 09:27:09',2291,309,'2005-06-04 11:53:09',2,'2006-02-15 21:30:53'), - (219,'2005-05-26 09:41:45',3074,489,'2005-05-28 04:40:45',1,'2006-02-15 21:30:53'), - (220,'2005-05-26 10:06:49',1259,542,'2005-06-01 07:43:49',1,'2006-02-15 21:30:53'), - (221,'2005-05-26 10:14:09',3578,143,'2005-05-29 05:57:09',1,'2006-02-15 21:30:53'), - (222,'2005-05-26 10:14:38',2745,83,'2005-05-31 08:36:38',2,'2006-02-15 21:30:53'), - (223,'2005-05-26 10:15:23',3121,460,'2005-05-30 11:43:23',1,'2006-02-15 21:30:53'), - (224,'2005-05-26 10:18:27',4285,318,'2005-06-04 06:59:27',1,'2006-02-15 21:30:53'), - (225,'2005-05-26 10:27:50',651,467,'2005-06-01 07:01:50',2,'2006-02-15 21:30:53'), - (226,'2005-05-26 10:44:04',4181,221,'2005-05-31 13:26:04',2,'2006-02-15 21:30:53'), - (227,'2005-05-26 10:51:46',214,301,'2005-05-30 07:24:46',1,'2006-02-15 21:30:53'), - (228,'2005-05-26 10:54:28',511,571,'2005-06-04 09:39:28',1,'2006-02-15 21:30:53'), - (229,'2005-05-26 11:19:20',1131,312,'2005-05-31 11:56:20',2,'2006-02-15 21:30:53'), - (230,'2005-05-26 11:31:50',1085,58,'2005-05-30 15:22:50',1,'2006-02-15 21:30:53'), - (231,'2005-05-26 11:31:59',4032,365,'2005-05-27 07:27:59',1,'2006-02-15 21:30:53'), - (232,'2005-05-26 11:38:05',2945,256,'2005-05-27 08:42:05',2,'2006-02-15 21:30:53'), - (233,'2005-05-26 11:43:44',715,531,'2005-05-28 17:28:44',2,'2006-02-15 21:30:53'), - (234,'2005-05-26 11:47:20',1321,566,'2005-06-03 10:39:20',2,'2006-02-15 21:30:53'), - (235,'2005-05-26 11:51:09',3537,119,'2005-06-04 09:36:09',1,'2006-02-15 21:30:53'), - (236,'2005-05-26 11:53:49',1265,446,'2005-05-28 13:55:49',1,'2006-02-15 21:30:53'), - (237,'2005-05-26 12:15:13',241,536,'2005-05-29 18:10:13',1,'2006-02-15 21:30:53'), - (238,'2005-05-26 12:30:22',503,211,'2005-05-27 06:49:22',1,'2006-02-15 21:30:53'), - (239,'2005-05-26 12:30:26',131,49,'2005-06-01 13:26:26',2,'2006-02-15 21:30:53'), - (240,'2005-05-26 12:40:23',3420,103,'2005-06-04 07:22:23',1,'2006-02-15 21:30:53'), - (241,'2005-05-26 12:49:01',4438,245,'2005-05-28 11:43:01',2,'2006-02-15 21:30:53'), - (242,'2005-05-26 13:05:08',2095,214,'2005-06-02 15:26:08',1,'2006-02-15 21:30:53'), - (243,'2005-05-26 13:06:05',1721,543,'2005-06-03 17:28:05',2,'2006-02-15 21:30:53'), - (244,'2005-05-26 13:40:40',1041,257,'2005-05-31 11:58:40',1,'2006-02-15 21:30:53'), - (245,'2005-05-26 13:46:59',3045,158,'2005-05-27 09:58:59',2,'2006-02-15 21:30:53'), - (246,'2005-05-26 13:57:07',2829,240,'2005-05-29 10:12:07',2,'2006-02-15 21:30:53'), - (247,'2005-05-26 14:01:05',4095,102,'2005-05-28 13:38:05',2,'2006-02-15 21:30:53'), - (248,'2005-05-26 14:07:58',1913,545,'2005-05-31 14:03:58',2,'2006-02-15 21:30:53'), - (249,'2005-05-26 14:19:09',2428,472,'2005-05-28 17:47:09',2,'2006-02-15 21:30:53'), - (250,'2005-05-26 14:30:24',368,539,'2005-05-27 08:50:24',1,'2006-02-15 21:30:53'), - (251,'2005-05-26 14:35:40',4352,204,'2005-05-29 17:17:40',1,'2006-02-15 21:30:53'), - (252,'2005-05-26 14:39:53',1203,187,'2005-06-02 14:48:53',1,'2006-02-15 21:30:53'), - (253,'2005-05-26 14:43:14',2969,416,'2005-05-27 12:21:14',1,'2006-02-15 21:30:53'), - (254,'2005-05-26 14:43:48',1835,390,'2005-05-31 09:19:48',2,'2006-02-15 21:30:53'), - (255,'2005-05-26 14:52:15',3264,114,'2005-05-27 12:45:15',1,'2006-02-15 21:30:53'), - (256,'2005-05-26 15:20:58',3194,436,'2005-05-31 15:58:58',1,'2006-02-15 21:30:53'), - (257,'2005-05-26 15:27:05',2570,373,'2005-05-29 16:25:05',2,'2006-02-15 21:30:53'), - (258,'2005-05-26 15:28:14',3534,502,'2005-05-30 18:38:14',2,'2006-02-15 21:30:53'), - (259,'2005-05-26 15:32:46',30,482,'2005-06-04 15:27:46',2,'2006-02-15 21:30:53'), - (260,'2005-05-26 15:42:20',435,21,'2005-05-31 13:21:20',2,'2006-02-15 21:30:53'), - (261,'2005-05-26 15:44:23',1369,414,'2005-06-02 09:47:23',2,'2006-02-15 21:30:53'), - (262,'2005-05-26 15:46:56',4261,236,'2005-05-28 15:49:56',2,'2006-02-15 21:30:53'), - (263,'2005-05-26 15:47:40',1160,449,'2005-05-30 10:07:40',2,'2006-02-15 21:30:53'), - (264,'2005-05-26 16:00:49',2069,251,'2005-05-27 10:12:49',2,'2006-02-15 21:30:53'), - (265,'2005-05-26 16:07:38',2276,303,'2005-06-01 14:20:38',1,'2006-02-15 21:30:53'), - (266,'2005-05-26 16:08:05',3303,263,'2005-05-27 10:55:05',2,'2006-02-15 21:30:53'), - (267,'2005-05-26 16:16:21',1206,417,'2005-05-30 16:53:21',2,'2006-02-15 21:30:53'), - (268,'2005-05-26 16:19:08',1714,75,'2005-05-27 14:35:08',1,'2006-02-15 21:30:53'), - (269,'2005-05-26 16:19:46',3501,322,'2005-05-27 15:59:46',2,'2006-02-15 21:30:53'), - (270,'2005-05-26 16:20:56',207,200,'2005-06-03 12:40:56',2,'2006-02-15 21:30:53'), - (271,'2005-05-26 16:22:01',2388,92,'2005-06-03 17:30:01',2,'2006-02-15 21:30:53'), - (272,'2005-05-26 16:27:11',971,71,'2005-06-03 13:10:11',2,'2006-02-15 21:30:53'), - (273,'2005-05-26 16:29:36',1590,193,'2005-05-29 18:49:36',2,'2006-02-15 21:30:53'), - (274,'2005-05-26 16:48:51',656,311,'2005-06-03 18:17:51',1,'2006-02-15 21:30:53'), - (275,'2005-05-26 17:09:53',1718,133,'2005-06-04 22:35:53',1,'2006-02-15 21:30:53'), - (276,'2005-05-26 17:16:07',1221,58,'2005-06-03 12:59:07',1,'2006-02-15 21:30:53'), - (277,'2005-05-26 17:32:11',1409,45,'2005-05-28 22:54:11',1,'2006-02-15 21:30:53'), - (278,'2005-05-26 17:40:58',182,214,'2005-06-02 16:43:58',2,'2006-02-15 21:30:53'), - (279,'2005-05-26 18:02:50',661,384,'2005-06-03 18:48:50',2,'2006-02-15 21:30:53'), - (280,'2005-05-26 18:36:58',1896,167,'2005-05-27 23:42:58',1,'2006-02-15 21:30:53'), - (281,'2005-05-26 18:49:35',1208,582,'2005-05-27 18:11:35',2,'2006-02-15 21:30:53'), - (282,'2005-05-26 18:56:26',4486,282,'2005-06-01 16:32:26',2,'2006-02-15 21:30:53'), - (283,'2005-05-26 19:05:05',3530,242,'2005-05-31 19:19:05',1,'2006-02-15 21:30:53'), - (284,'2005-05-26 19:21:44',350,359,'2005-06-04 14:18:44',2,'2006-02-15 21:30:53'), - (285,'2005-05-26 19:41:40',2486,162,'2005-05-31 16:58:40',2,'2006-02-15 21:30:53'), - (286,'2005-05-26 19:44:51',314,371,'2005-06-04 18:00:51',2,'2006-02-15 21:30:53'), - (287,'2005-05-26 19:44:54',3631,17,'2005-06-02 01:10:54',1,'2006-02-15 21:30:53'), - (288,'2005-05-26 19:47:49',3546,82,'2005-06-03 20:53:49',2,'2006-02-15 21:30:53'), - (289,'2005-05-26 20:01:09',2449,81,'2005-05-28 15:09:09',1,'2006-02-15 21:30:53'), - (290,'2005-05-26 20:08:33',2776,429,'2005-05-30 00:32:33',1,'2006-02-15 21:30:53'), - (291,'2005-05-26 20:20:47',485,577,'2005-06-03 02:06:47',2,'2006-02-15 21:30:53'), - (292,'2005-05-26 20:22:12',4264,515,'2005-06-05 00:58:12',1,'2006-02-15 21:30:53'), - (293,'2005-05-26 20:27:02',1828,158,'2005-06-03 16:45:02',2,'2006-02-15 21:30:53'), - (294,'2005-05-26 20:29:57',2751,369,'2005-05-28 17:20:57',1,'2006-02-15 21:30:53'), - (295,'2005-05-26 20:33:20',4030,65,'2005-05-27 18:23:20',2,'2006-02-15 21:30:53'), - (296,'2005-05-26 20:35:19',3878,468,'2005-06-04 02:31:19',2,'2006-02-15 21:30:53'), - (297,'2005-05-26 20:48:48',1594,48,'2005-05-27 19:52:48',2,'2006-02-15 21:30:53'), - (298,'2005-05-26 20:52:26',1083,460,'2005-05-29 22:08:26',2,'2006-02-15 21:30:53'), - (299,'2005-05-26 20:55:36',4376,448,'2005-05-28 00:25:36',2,'2006-02-15 21:30:53'), - (300,'2005-05-26 20:57:00',249,47,'2005-06-05 01:34:00',2,'2006-02-15 21:30:53'), - (301,'2005-05-26 21:06:14',3448,274,'2005-06-01 01:54:14',2,'2006-02-15 21:30:53'), - (302,'2005-05-26 21:13:46',2921,387,'2005-06-03 15:49:46',2,'2006-02-15 21:30:53'), - (303,'2005-05-26 21:16:52',1111,596,'2005-05-27 23:41:52',2,'2006-02-15 21:30:53'), - (304,'2005-05-26 21:21:28',1701,534,'2005-06-02 00:05:28',1,'2006-02-15 21:30:53'), - (305,'2005-05-26 21:22:07',2665,464,'2005-06-02 22:33:07',2,'2006-02-15 21:30:53'), - (306,'2005-05-26 21:31:57',2781,547,'2005-05-28 19:37:57',1,'2006-02-15 21:30:53'), - (307,'2005-05-26 21:48:13',1097,375,'2005-06-04 22:24:13',1,'2006-02-15 21:30:53'), - (308,'2005-05-26 22:01:39',187,277,'2005-06-04 20:24:39',2,'2006-02-15 21:30:53'), - (309,'2005-05-26 22:38:10',1946,251,'2005-06-02 03:10:10',2,'2006-02-15 21:30:53'), - (310,'2005-05-26 22:41:07',593,409,'2005-06-02 04:09:07',1,'2006-02-15 21:30:53'), - (311,'2005-05-26 22:51:37',2830,201,'2005-06-01 00:02:37',1,'2006-02-15 21:30:53'), - (312,'2005-05-26 22:52:19',2008,143,'2005-06-02 18:14:19',2,'2006-02-15 21:30:53'), - (313,'2005-05-26 22:56:19',4156,594,'2005-05-29 01:29:19',2,'2006-02-15 21:30:53'), - (314,'2005-05-26 23:09:41',2851,203,'2005-05-28 22:49:41',2,'2006-02-15 21:30:53'), - (315,'2005-05-26 23:12:55',2847,238,'2005-05-29 23:33:55',1,'2006-02-15 21:30:53'), - (316,'2005-05-26 23:22:55',3828,249,'2005-05-29 23:25:55',2,'2006-02-15 21:30:53'), - (317,'2005-05-26 23:23:56',26,391,'2005-06-01 19:56:56',2,'2006-02-15 21:30:53'), - (318,'2005-05-26 23:37:39',2559,60,'2005-06-03 04:31:39',2,'2006-02-15 21:30:53'), - (319,'2005-05-26 23:52:13',3024,77,'2005-05-30 18:55:13',1,'2006-02-15 21:30:53'), - (320,'2005-05-27 00:09:24',1090,2,'2005-05-28 04:30:24',2,'2006-02-15 21:30:53'), - (322,'2005-05-27 00:47:35',4556,496,'2005-06-02 00:32:35',1,'2006-02-15 21:30:53'), - (323,'2005-05-27 00:49:27',2362,144,'2005-05-30 03:12:27',1,'2006-02-15 21:30:53'), - (324,'2005-05-27 01:00:04',3364,292,'2005-05-30 04:27:04',1,'2006-02-15 21:30:53'), - (325,'2005-05-27 01:09:55',2510,449,'2005-05-31 07:01:55',2,'2006-02-15 21:30:53'), - (326,'2005-05-27 01:10:11',3979,432,'2005-06-04 20:25:11',2,'2006-02-15 21:30:53'), - (327,'2005-05-27 01:18:57',2678,105,'2005-06-04 04:06:57',1,'2006-02-15 21:30:53'), - (328,'2005-05-27 01:29:31',2524,451,'2005-06-01 02:27:31',1,'2006-02-15 21:30:53'), - (329,'2005-05-27 01:57:14',2659,231,'2005-05-31 04:19:14',2,'2006-02-15 21:30:53'), - (330,'2005-05-27 02:15:30',1536,248,'2005-06-04 05:09:30',2,'2006-02-15 21:30:53'), - (331,'2005-05-27 02:22:26',1872,67,'2005-06-05 00:25:26',1,'2006-02-15 21:30:53'), - (332,'2005-05-27 02:27:10',1529,299,'2005-06-03 01:26:10',2,'2006-02-15 21:30:53'), - (333,'2005-05-27 02:52:21',4001,412,'2005-06-01 00:55:21',2,'2006-02-15 21:30:53'), - (334,'2005-05-27 03:03:07',3973,194,'2005-05-29 03:54:07',1,'2006-02-15 21:30:53'), - (335,'2005-05-27 03:07:10',1411,16,'2005-06-05 00:15:10',2,'2006-02-15 21:30:53'), - (336,'2005-05-27 03:15:23',1811,275,'2005-05-29 22:43:23',1,'2006-02-15 21:30:53'), - (337,'2005-05-27 03:22:30',751,19,'2005-06-02 03:27:30',1,'2006-02-15 21:30:53'), - (338,'2005-05-27 03:42:52',2596,165,'2005-06-01 05:23:52',2,'2006-02-15 21:30:53'), - (339,'2005-05-27 03:47:18',2410,516,'2005-06-04 05:46:18',2,'2006-02-15 21:30:53'), - (340,'2005-05-27 03:55:25',946,209,'2005-06-04 07:57:25',2,'2006-02-15 21:30:53'), - (341,'2005-05-27 04:01:42',4168,56,'2005-06-05 08:51:42',1,'2006-02-15 21:30:53'), - (342,'2005-05-27 04:11:04',4019,539,'2005-05-29 01:28:04',2,'2006-02-15 21:30:53'), - (343,'2005-05-27 04:13:41',3301,455,'2005-05-28 08:34:41',1,'2006-02-15 21:30:53'), - (344,'2005-05-27 04:30:22',2327,236,'2005-05-29 10:13:22',2,'2006-02-15 21:30:53'), - (345,'2005-05-27 04:32:25',1396,144,'2005-05-31 09:50:25',1,'2006-02-15 21:30:53'), - (346,'2005-05-27 04:34:41',4319,14,'2005-06-05 04:24:41',2,'2006-02-15 21:30:53'), - (347,'2005-05-27 04:40:33',1625,378,'2005-05-28 09:56:33',2,'2006-02-15 21:30:53'), - (348,'2005-05-27 04:50:56',1825,473,'2005-06-01 04:43:56',1,'2006-02-15 21:30:53'), - (349,'2005-05-27 04:53:11',2920,36,'2005-05-28 06:33:11',2,'2006-02-15 21:30:53'), - (350,'2005-05-27 05:01:28',2756,9,'2005-06-04 05:01:28',2,'2006-02-15 21:30:53'), - (351,'2005-05-27 05:39:03',3371,118,'2005-06-01 11:10:03',1,'2006-02-15 21:30:53'), - (352,'2005-05-27 05:48:19',4369,157,'2005-05-29 09:05:19',1,'2006-02-15 21:30:53'), - (353,'2005-05-27 06:03:39',3989,503,'2005-06-03 04:39:39',2,'2006-02-15 21:30:53'), - (354,'2005-05-27 06:12:26',2058,452,'2005-06-01 06:48:26',1,'2006-02-15 21:30:53'), - (355,'2005-05-27 06:15:33',141,446,'2005-06-01 02:50:33',2,'2006-02-15 21:30:53'), - (356,'2005-05-27 06:32:30',2868,382,'2005-05-30 06:24:30',2,'2006-02-15 21:30:53'), - (357,'2005-05-27 06:37:15',4417,198,'2005-05-30 07:04:15',2,'2006-02-15 21:30:53'), - (358,'2005-05-27 06:43:59',1925,102,'2005-05-29 11:28:59',2,'2006-02-15 21:30:53'), - (359,'2005-05-27 06:48:33',1156,152,'2005-05-29 03:55:33',1,'2006-02-15 21:30:53'), - (360,'2005-05-27 06:51:14',3489,594,'2005-06-03 01:58:14',1,'2006-02-15 21:30:53'), - (361,'2005-05-27 07:03:28',6,587,'2005-05-31 08:01:28',1,'2006-02-15 21:30:53'), - (362,'2005-05-27 07:10:25',2324,147,'2005-06-01 08:34:25',1,'2006-02-15 21:30:53'), - (363,'2005-05-27 07:14:00',4282,345,'2005-05-28 12:22:00',2,'2006-02-15 21:30:53'), - (364,'2005-05-27 07:20:12',833,430,'2005-05-31 10:44:12',2,'2006-02-15 21:30:53'), - (365,'2005-05-27 07:31:20',2887,167,'2005-06-04 04:46:20',1,'2006-02-15 21:30:53'), - (366,'2005-05-27 07:33:54',360,134,'2005-06-04 01:55:54',2,'2006-02-15 21:30:53'), - (367,'2005-05-27 07:37:02',3437,439,'2005-05-30 05:43:02',2,'2006-02-15 21:30:53'), - (368,'2005-05-27 07:42:29',1247,361,'2005-06-04 11:20:29',2,'2006-02-15 21:30:53'), - (369,'2005-05-27 07:46:49',944,508,'2005-06-01 06:20:49',2,'2006-02-15 21:30:53'), - (370,'2005-05-27 07:49:43',3347,22,'2005-06-05 06:39:43',2,'2006-02-15 21:30:53'), - (371,'2005-05-27 08:08:18',1235,295,'2005-06-05 03:05:18',2,'2006-02-15 21:30:53'), - (372,'2005-05-27 08:13:58',4089,510,'2005-06-04 03:50:58',2,'2006-02-15 21:30:53'), - (373,'2005-05-27 08:16:25',1649,464,'2005-06-01 11:41:25',1,'2006-02-15 21:30:53'), - (374,'2005-05-27 08:26:30',4420,337,'2005-06-05 07:13:30',1,'2006-02-15 21:30:53'), - (375,'2005-05-27 08:49:21',1815,306,'2005-06-04 14:11:21',1,'2006-02-15 21:30:53'), - (376,'2005-05-27 08:58:15',3197,542,'2005-06-02 04:48:15',1,'2006-02-15 21:30:53'), - (377,'2005-05-27 09:04:05',3012,170,'2005-06-02 03:36:05',2,'2006-02-15 21:30:53'), - (378,'2005-05-27 09:23:22',2242,53,'2005-05-29 15:20:22',1,'2006-02-15 21:30:53'), - (379,'2005-05-27 09:25:32',3462,584,'2005-06-02 06:19:32',1,'2006-02-15 21:30:53'), - (380,'2005-05-27 09:34:39',1777,176,'2005-06-04 11:45:39',1,'2006-02-15 21:30:53'), - (381,'2005-05-27 09:43:25',2748,371,'2005-05-31 12:00:25',1,'2006-02-15 21:30:53'), - (382,'2005-05-27 10:12:00',4358,183,'2005-05-31 15:03:00',1,'2006-02-15 21:30:53'), - (383,'2005-05-27 10:12:20',955,298,'2005-06-03 10:37:20',1,'2006-02-15 21:30:53'), - (384,'2005-05-27 10:18:20',910,371,'2005-06-02 09:21:20',2,'2006-02-15 21:30:53'), - (385,'2005-05-27 10:23:25',1565,213,'2005-05-30 15:27:25',2,'2006-02-15 21:30:53'), - (386,'2005-05-27 10:26:31',1288,109,'2005-05-30 08:32:31',1,'2006-02-15 21:30:53'), - (387,'2005-05-27 10:35:27',2684,506,'2005-06-01 13:37:27',2,'2006-02-15 21:30:53'), - (388,'2005-05-27 10:37:27',434,28,'2005-05-30 05:45:27',1,'2006-02-15 21:30:53'), - (389,'2005-05-27 10:45:41',691,500,'2005-06-05 06:22:41',2,'2006-02-15 21:30:53'), - (390,'2005-05-27 11:02:26',3759,48,'2005-06-02 16:09:26',2,'2006-02-15 21:30:53'), - (391,'2005-05-27 11:03:55',2193,197,'2005-06-01 11:59:55',2,'2006-02-15 21:30:53'), - (392,'2005-05-27 11:14:42',263,359,'2005-06-01 14:28:42',2,'2006-02-15 21:30:53'), - (393,'2005-05-27 11:18:25',145,251,'2005-05-28 07:10:25',2,'2006-02-15 21:30:53'), - (394,'2005-05-27 11:26:11',1890,274,'2005-06-03 16:44:11',2,'2006-02-15 21:30:53'), - (395,'2005-05-27 11:45:49',752,575,'2005-05-31 13:42:49',1,'2006-02-15 21:30:53'), - (396,'2005-05-27 11:47:04',1020,112,'2005-05-29 10:14:04',1,'2006-02-15 21:30:53'), - (397,'2005-05-27 12:29:02',4193,544,'2005-05-28 17:36:02',2,'2006-02-15 21:30:53'), - (398,'2005-05-27 12:44:03',1686,422,'2005-06-02 08:19:03',1,'2006-02-15 21:30:53'), - (399,'2005-05-27 12:48:38',553,204,'2005-05-29 15:27:38',1,'2006-02-15 21:30:53'), - (400,'2005-05-27 12:51:44',258,249,'2005-05-31 08:34:44',2,'2006-02-15 21:30:53'), - (401,'2005-05-27 12:57:55',2179,46,'2005-05-29 17:55:55',2,'2006-02-15 21:30:53'), - (402,'2005-05-27 13:17:18',461,354,'2005-05-30 08:53:18',2,'2006-02-15 21:30:53'), - (403,'2005-05-27 13:28:52',3983,424,'2005-05-29 11:47:52',2,'2006-02-15 21:30:53'), - (404,'2005-05-27 13:31:51',1293,168,'2005-05-30 16:58:51',1,'2006-02-15 21:30:53'), - (405,'2005-05-27 13:32:39',4090,272,'2005-06-05 18:53:39',2,'2006-02-15 21:30:53'), - (406,'2005-05-27 13:46:46',2136,381,'2005-05-30 12:43:46',1,'2006-02-15 21:30:53'), - (407,'2005-05-27 13:57:38',1077,44,'2005-05-31 18:23:38',1,'2006-02-15 21:30:53'), - (408,'2005-05-27 13:57:39',1438,84,'2005-05-28 11:57:39',1,'2006-02-15 21:30:53'), - (409,'2005-05-27 14:10:58',3652,220,'2005-06-02 10:40:58',2,'2006-02-15 21:30:53'), - (410,'2005-05-27 14:11:22',4010,506,'2005-06-02 20:06:22',2,'2006-02-15 21:30:53'), - (411,'2005-05-27 14:14:14',1434,388,'2005-06-03 17:39:14',1,'2006-02-15 21:30:53'), - (412,'2005-05-27 14:17:23',1400,375,'2005-05-29 15:07:23',2,'2006-02-15 21:30:53'), - (413,'2005-05-27 14:45:37',3516,307,'2005-06-03 11:11:37',1,'2006-02-15 21:30:53'), - (414,'2005-05-27 14:48:20',1019,219,'2005-05-31 14:39:20',2,'2006-02-15 21:30:53'), - (415,'2005-05-27 14:51:45',3698,304,'2005-05-28 19:07:45',2,'2006-02-15 21:30:53'), - (416,'2005-05-27 15:02:10',2371,222,'2005-05-29 10:34:10',2,'2006-02-15 21:30:53'), - (417,'2005-05-27 15:07:27',2253,475,'2005-05-29 20:01:27',2,'2006-02-15 21:30:53'), - (418,'2005-05-27 15:13:17',3063,151,'2005-06-04 12:05:17',2,'2006-02-15 21:30:53'), - (419,'2005-05-27 15:15:11',2514,77,'2005-06-02 11:53:11',1,'2006-02-15 21:30:53'), - (420,'2005-05-27 15:19:38',619,93,'2005-06-03 15:07:38',2,'2006-02-15 21:30:53'), - (421,'2005-05-27 15:30:13',2985,246,'2005-06-04 13:19:13',2,'2006-02-15 21:30:53'), - (422,'2005-05-27 15:31:55',1152,150,'2005-06-01 11:47:55',2,'2006-02-15 21:30:53'), - (423,'2005-05-27 15:32:57',1783,284,'2005-06-02 19:03:57',1,'2006-02-15 21:30:53'), - (424,'2005-05-27 15:34:01',2815,35,'2005-06-05 09:44:01',1,'2006-02-15 21:30:53'), - (425,'2005-05-27 15:51:30',1518,182,'2005-06-03 16:52:30',2,'2006-02-15 21:30:53'), - (426,'2005-05-27 15:56:57',1103,522,'2005-06-05 11:45:57',1,'2006-02-15 21:30:53'), - (427,'2005-05-27 16:10:04',1677,288,'2005-06-05 13:22:04',2,'2006-02-15 21:30:53'), - (428,'2005-05-27 16:10:58',3349,161,'2005-05-31 17:24:58',2,'2006-02-15 21:30:53'), - (429,'2005-05-27 16:21:26',129,498,'2005-06-05 20:23:26',2,'2006-02-15 21:30:53'), - (430,'2005-05-27 16:22:10',1920,190,'2005-06-05 13:10:10',1,'2006-02-15 21:30:53'), - (431,'2005-05-27 16:31:05',4507,334,'2005-06-05 11:29:05',1,'2006-02-15 21:30:53'), - (432,'2005-05-27 16:40:29',1119,46,'2005-05-29 16:20:29',1,'2006-02-15 21:30:53'), - (433,'2005-05-27 16:40:40',4364,574,'2005-05-30 19:55:40',2,'2006-02-15 21:30:53'), - (434,'2005-05-27 16:54:27',3360,246,'2005-06-04 22:26:27',1,'2006-02-15 21:30:53'), - (435,'2005-05-27 17:17:09',3328,3,'2005-06-02 11:20:09',2,'2006-02-15 21:30:53'), - (436,'2005-05-27 17:21:04',4317,267,'2005-05-30 21:26:04',2,'2006-02-15 21:30:53'), - (437,'2005-05-27 17:47:22',1800,525,'2005-06-05 14:22:22',2,'2006-02-15 21:30:53'), - (438,'2005-05-27 17:52:34',4260,249,'2005-06-05 22:23:34',2,'2006-02-15 21:30:53'), - (439,'2005-05-27 17:54:48',354,319,'2005-06-02 23:01:48',2,'2006-02-15 21:30:53'), - (440,'2005-05-27 18:00:35',4452,314,'2005-05-29 16:15:35',1,'2006-02-15 21:30:53'), - (441,'2005-05-27 18:11:05',1578,54,'2005-05-30 22:45:05',1,'2006-02-15 21:30:53'), - (442,'2005-05-27 18:12:13',1457,403,'2005-05-30 12:30:13',2,'2006-02-15 21:30:53'), - (443,'2005-05-27 18:35:20',2021,547,'2005-06-04 18:58:20',1,'2006-02-15 21:30:53'), - (444,'2005-05-27 18:39:15',723,239,'2005-06-01 15:56:15',1,'2006-02-15 21:30:53'), - (445,'2005-05-27 18:42:57',1757,293,'2005-05-30 22:35:57',2,'2006-02-15 21:30:53'), - (446,'2005-05-27 18:48:41',1955,401,'2005-06-03 16:42:41',2,'2006-02-15 21:30:53'), - (447,'2005-05-27 18:57:02',3890,133,'2005-06-05 18:38:02',1,'2006-02-15 21:30:53'), - (448,'2005-05-27 19:03:08',2671,247,'2005-06-03 20:28:08',2,'2006-02-15 21:30:53'), - (449,'2005-05-27 19:13:15',2469,172,'2005-06-04 01:08:15',2,'2006-02-15 21:30:53'), - (450,'2005-05-27 19:18:54',1343,247,'2005-06-05 23:52:54',1,'2006-02-15 21:30:53'), - (451,'2005-05-27 19:27:54',205,87,'2005-05-29 01:07:54',2,'2006-02-15 21:30:53'), - (452,'2005-05-27 19:30:33',2993,127,'2005-05-30 20:53:33',2,'2006-02-15 21:30:53'), - (453,'2005-05-27 19:31:16',4425,529,'2005-05-29 23:06:16',1,'2006-02-15 21:30:53'), - (454,'2005-05-27 19:31:36',3499,575,'2005-05-30 15:46:36',1,'2006-02-15 21:30:53'), - (455,'2005-05-27 19:43:29',3344,343,'2005-06-04 23:40:29',2,'2006-02-15 21:30:53'), - (456,'2005-05-27 19:50:06',1699,92,'2005-06-02 22:14:06',1,'2006-02-15 21:30:53'), - (457,'2005-05-27 19:52:29',2368,300,'2005-06-02 17:17:29',2,'2006-02-15 21:30:53'), - (458,'2005-05-27 19:58:36',3350,565,'2005-06-06 00:51:36',1,'2006-02-15 21:30:53'), - (459,'2005-05-27 20:00:04',597,468,'2005-05-29 22:47:04',1,'2006-02-15 21:30:53'), - (460,'2005-05-27 20:02:03',4238,240,'2005-05-28 16:14:03',1,'2006-02-15 21:30:53'), - (461,'2005-05-27 20:08:55',2077,447,'2005-06-01 14:32:55',1,'2006-02-15 21:30:53'), - (462,'2005-05-27 20:10:36',2314,364,'2005-06-03 21:12:36',2,'2006-02-15 21:30:53'), - (463,'2005-05-27 20:11:47',826,21,'2005-06-04 21:18:47',1,'2006-02-15 21:30:53'), - (464,'2005-05-27 20:42:44',1313,193,'2005-05-30 00:49:44',2,'2006-02-15 21:30:53'), - (465,'2005-05-27 20:44:36',20,261,'2005-06-02 02:43:36',1,'2006-02-15 21:30:53'), - (466,'2005-05-27 20:57:07',1786,442,'2005-05-29 15:52:07',1,'2006-02-15 21:30:53'), - (467,'2005-05-27 21:10:03',339,557,'2005-06-01 16:08:03',1,'2006-02-15 21:30:53'), - (468,'2005-05-27 21:13:10',2656,101,'2005-06-04 15:26:10',2,'2006-02-15 21:30:53'), - (469,'2005-05-27 21:14:26',4463,154,'2005-06-05 21:51:26',1,'2006-02-15 21:30:53'), - (470,'2005-05-27 21:17:08',1613,504,'2005-06-04 17:47:08',1,'2006-02-15 21:30:53'), - (471,'2005-05-27 21:32:42',2872,209,'2005-05-31 00:39:42',2,'2006-02-15 21:30:53'), - (472,'2005-05-27 21:36:15',1338,528,'2005-05-29 21:07:15',1,'2006-02-15 21:30:53'), - (473,'2005-05-27 21:36:34',802,105,'2005-06-05 17:02:34',1,'2006-02-15 21:30:53'), - (474,'2005-05-27 22:11:56',1474,274,'2005-05-31 19:07:56',1,'2006-02-15 21:30:53'), - (475,'2005-05-27 22:16:26',2520,159,'2005-05-28 19:58:26',1,'2006-02-15 21:30:53'), - (476,'2005-05-27 22:31:36',2451,543,'2005-06-03 19:12:36',1,'2006-02-15 21:30:53'), - (477,'2005-05-27 22:33:33',2437,161,'2005-06-02 18:35:33',2,'2006-02-15 21:30:53'), - (478,'2005-05-27 22:38:20',424,557,'2005-05-31 18:39:20',2,'2006-02-15 21:30:53'), - (479,'2005-05-27 22:39:10',2060,231,'2005-06-05 22:46:10',2,'2006-02-15 21:30:53'), - (480,'2005-05-27 22:47:39',2108,220,'2005-06-04 21:17:39',2,'2006-02-15 21:30:53'), - (481,'2005-05-27 22:49:27',72,445,'2005-05-30 17:46:27',2,'2006-02-15 21:30:53'), - (482,'2005-05-27 22:53:02',4178,546,'2005-06-01 22:53:02',2,'2006-02-15 21:30:53'), - (483,'2005-05-27 23:00:25',1510,32,'2005-05-28 21:30:25',1,'2006-02-15 21:30:53'), - (484,'2005-05-27 23:26:45',3115,491,'2005-05-29 21:16:45',2,'2006-02-15 21:30:53'), - (485,'2005-05-27 23:40:52',2392,105,'2005-05-28 22:40:52',2,'2006-02-15 21:30:53'), - (486,'2005-05-27 23:51:12',1822,398,'2005-05-28 20:26:12',1,'2006-02-15 21:30:53'), - (487,'2005-05-28 00:00:30',3774,569,'2005-05-28 19:18:30',2,'2006-02-15 21:30:53'), - (488,'2005-05-28 00:07:50',393,168,'2005-06-03 22:30:50',2,'2006-02-15 21:30:53'), - (489,'2005-05-28 00:09:12',1940,476,'2005-05-31 04:44:12',2,'2006-02-15 21:30:53'), - (490,'2005-05-28 00:09:56',3524,95,'2005-05-30 22:32:56',2,'2006-02-15 21:30:53'), - (491,'2005-05-28 00:13:35',1326,196,'2005-05-29 00:11:35',2,'2006-02-15 21:30:53'), - (492,'2005-05-28 00:24:58',1999,228,'2005-05-28 22:34:58',1,'2006-02-15 21:30:53'), - (493,'2005-05-28 00:34:11',184,501,'2005-05-30 18:40:11',1,'2006-02-15 21:30:53'), - (494,'2005-05-28 00:39:31',1850,64,'2005-06-02 19:35:31',1,'2006-02-15 21:30:53'), - (495,'2005-05-28 00:40:48',1007,526,'2005-05-29 06:07:48',1,'2006-02-15 21:30:53'), - (496,'2005-05-28 00:43:41',1785,56,'2005-06-04 03:56:41',1,'2006-02-15 21:30:53'), - (497,'2005-05-28 00:54:39',2636,20,'2005-06-03 20:47:39',2,'2006-02-15 21:30:53'), - (498,'2005-05-28 01:01:21',458,287,'2005-05-30 21:20:21',2,'2006-02-15 21:30:53'), - (499,'2005-05-28 01:05:07',2381,199,'2005-06-05 19:54:07',2,'2006-02-15 21:30:53'), - (500,'2005-05-28 01:05:25',4500,145,'2005-05-31 20:04:25',1,'2006-02-15 21:30:53'), - (501,'2005-05-28 01:09:36',601,162,'2005-05-30 06:14:36',2,'2006-02-15 21:30:53'), - (502,'2005-05-28 01:34:43',3131,179,'2005-05-31 01:02:43',2,'2006-02-15 21:30:53'), - (503,'2005-05-28 01:35:25',3005,288,'2005-05-28 22:12:25',2,'2006-02-15 21:30:53'), - (504,'2005-05-28 02:05:34',2086,170,'2005-05-30 23:03:34',1,'2006-02-15 21:30:53'), - (505,'2005-05-28 02:06:37',71,111,'2005-05-29 06:57:37',1,'2006-02-15 21:30:53'), - (506,'2005-05-28 02:09:19',667,469,'2005-06-05 20:34:19',1,'2006-02-15 21:30:53'), - (507,'2005-05-28 02:31:19',3621,421,'2005-06-02 05:07:19',2,'2006-02-15 21:30:53'), - (508,'2005-05-28 02:40:50',4179,434,'2005-06-05 03:05:50',1,'2006-02-15 21:30:53'), - (509,'2005-05-28 02:51:12',3416,147,'2005-05-31 06:27:12',1,'2006-02-15 21:30:53'), - (510,'2005-05-28 02:52:14',4338,113,'2005-05-30 21:20:14',2,'2006-02-15 21:30:53'), - (511,'2005-05-28 03:04:04',3827,296,'2005-06-03 04:58:04',1,'2006-02-15 21:30:53'), - (512,'2005-05-28 03:07:50',2176,231,'2005-06-05 02:12:50',2,'2006-02-15 21:30:53'), - (513,'2005-05-28 03:08:10',225,489,'2005-05-29 07:22:10',1,'2006-02-15 21:30:53'), - (514,'2005-05-28 03:09:28',1697,597,'2005-06-05 00:49:28',2,'2006-02-15 21:30:53'), - (515,'2005-05-28 03:10:10',3369,110,'2005-06-04 02:18:10',2,'2006-02-15 21:30:53'), - (516,'2005-05-28 03:11:47',4357,400,'2005-06-04 02:19:47',1,'2006-02-15 21:30:53'), - (517,'2005-05-28 03:17:57',234,403,'2005-05-29 06:33:57',1,'2006-02-15 21:30:53'), - (518,'2005-05-28 03:18:02',4087,480,'2005-05-30 05:32:02',1,'2006-02-15 21:30:53'), - (519,'2005-05-28 03:22:33',3564,245,'2005-06-03 05:06:33',1,'2006-02-15 21:30:53'), - (520,'2005-05-28 03:27:37',3845,161,'2005-06-04 05:47:37',1,'2006-02-15 21:30:53'), - (521,'2005-05-28 03:32:22',2397,374,'2005-05-28 22:37:22',1,'2006-02-15 21:30:53'), - (522,'2005-05-28 03:33:20',3195,382,'2005-05-31 04:23:20',1,'2006-02-15 21:30:53'), - (523,'2005-05-28 03:53:26',1905,138,'2005-05-31 05:58:26',2,'2006-02-15 21:30:53'), - (524,'2005-05-28 03:57:28',1962,223,'2005-05-31 05:20:28',1,'2006-02-15 21:30:53'), - (525,'2005-05-28 04:25:33',1817,14,'2005-06-06 04:18:33',1,'2006-02-15 21:30:53'), - (526,'2005-05-28 04:27:37',1387,408,'2005-05-30 07:52:37',1,'2006-02-15 21:30:53'), - (527,'2005-05-28 04:28:38',266,169,'2005-06-02 08:19:38',1,'2006-02-15 21:30:53'), - (528,'2005-05-28 04:30:05',1655,359,'2005-06-03 10:01:05',2,'2006-02-15 21:30:53'), - (529,'2005-05-28 04:34:17',2624,469,'2005-05-30 00:35:17',1,'2006-02-15 21:30:53'), - (530,'2005-05-28 05:13:01',3332,312,'2005-06-01 10:21:01',2,'2006-02-15 21:30:53'), - (531,'2005-05-28 05:23:38',1113,589,'2005-05-29 08:00:38',2,'2006-02-15 21:30:53'), - (532,'2005-05-28 05:36:58',2793,120,'2005-06-02 01:50:58',1,'2006-02-15 21:30:53'), - (533,'2005-05-28 06:14:46',4306,528,'2005-06-01 06:26:46',2,'2006-02-15 21:30:53'), - (534,'2005-05-28 06:15:25',992,184,'2005-06-06 07:51:25',1,'2006-02-15 21:30:53'), - (535,'2005-05-28 06:16:32',4209,307,'2005-05-31 02:48:32',1,'2006-02-15 21:30:53'), - (536,'2005-05-28 06:17:33',2962,514,'2005-06-03 10:02:33',2,'2006-02-15 21:30:53'), - (537,'2005-05-28 06:20:55',3095,315,'2005-06-05 11:48:55',2,'2006-02-15 21:30:53'), - (538,'2005-05-28 06:21:05',2262,110,'2005-06-02 01:22:05',2,'2006-02-15 21:30:53'), - (539,'2005-05-28 06:26:16',3427,161,'2005-05-30 02:02:16',1,'2006-02-15 21:30:53'), - (540,'2005-05-28 06:40:25',3321,119,'2005-06-06 00:47:25',1,'2006-02-15 21:30:53'), - (541,'2005-05-28 06:41:58',1662,535,'2005-06-02 09:12:58',2,'2006-02-15 21:30:53'), - (542,'2005-05-28 06:42:13',4444,261,'2005-06-03 09:05:13',1,'2006-02-15 21:30:53'), - (543,'2005-05-28 06:43:34',530,493,'2005-06-06 07:16:34',2,'2006-02-15 21:30:53'), - (544,'2005-05-28 07:03:00',2964,311,'2005-06-06 06:23:00',1,'2006-02-15 21:30:53'), - (545,'2005-05-28 07:10:20',1086,54,'2005-06-04 01:47:20',2,'2006-02-15 21:30:53'), - (546,'2005-05-28 07:16:25',487,20,'2005-06-01 08:36:25',1,'2006-02-15 21:30:53'), - (547,'2005-05-28 07:24:28',2065,506,'2005-06-06 01:31:28',2,'2006-02-15 21:30:53'), - (548,'2005-05-28 07:34:56',3704,450,'2005-06-05 03:14:56',2,'2006-02-15 21:30:53'), - (549,'2005-05-28 07:35:37',1818,159,'2005-06-02 09:08:37',1,'2006-02-15 21:30:53'), - (550,'2005-05-28 07:39:16',3632,432,'2005-06-06 12:20:16',2,'2006-02-15 21:30:53'), - (551,'2005-05-28 07:44:18',3119,315,'2005-06-02 12:55:18',2,'2006-02-15 21:30:53'), - (552,'2005-05-28 07:53:38',23,106,'2005-06-04 12:45:38',2,'2006-02-15 21:30:53'), - (553,'2005-05-28 08:14:44',1349,176,'2005-06-02 03:01:44',2,'2006-02-15 21:30:53'), - (554,'2005-05-28 08:23:16',1951,376,'2005-05-31 03:29:16',2,'2006-02-15 21:30:53'), - (555,'2005-05-28 08:31:14',4397,55,'2005-05-30 07:34:14',2,'2006-02-15 21:30:53'), - (556,'2005-05-28 08:31:36',1814,22,'2005-06-06 07:29:36',2,'2006-02-15 21:30:53'), - (557,'2005-05-28 08:36:22',158,444,'2005-06-03 10:42:22',2,'2006-02-15 21:30:53'), - (558,'2005-05-28 08:38:43',4163,442,'2005-06-06 13:52:43',1,'2006-02-15 21:30:53'), - (559,'2005-05-28 08:39:02',1227,572,'2005-06-05 08:38:02',2,'2006-02-15 21:30:53'), - (560,'2005-05-28 08:53:02',644,463,'2005-06-04 12:27:02',2,'2006-02-15 21:30:53'), - (561,'2005-05-28 08:54:06',928,77,'2005-06-05 05:54:06',1,'2006-02-15 21:30:53'), - (562,'2005-05-28 09:01:21',3390,102,'2005-06-02 05:26:21',2,'2006-02-15 21:30:53'), - (563,'2005-05-28 09:10:49',53,324,'2005-06-06 11:32:49',1,'2006-02-15 21:30:53'), - (564,'2005-05-28 09:12:09',2973,282,'2005-05-29 05:07:09',1,'2006-02-15 21:30:53'), - (565,'2005-05-28 09:26:31',1494,288,'2005-06-01 07:28:31',1,'2006-02-15 21:30:53'), - (566,'2005-05-28 09:51:39',4330,253,'2005-06-05 09:35:39',1,'2006-02-15 21:30:53'), - (567,'2005-05-28 09:56:20',3308,184,'2005-06-01 06:41:20',2,'2006-02-15 21:30:53'), - (568,'2005-05-28 09:57:36',2232,155,'2005-05-31 15:44:36',1,'2006-02-15 21:30:53'), - (569,'2005-05-28 10:12:41',4534,56,'2005-06-03 10:08:41',2,'2006-02-15 21:30:53'), - (570,'2005-05-28 10:15:04',1122,21,'2005-05-30 08:32:04',1,'2006-02-15 21:30:53'), - (571,'2005-05-28 10:17:41',4250,516,'2005-06-05 07:56:41',1,'2006-02-15 21:30:53'), - (572,'2005-05-28 10:30:13',1899,337,'2005-06-02 05:04:13',2,'2006-02-15 21:30:53'), - (573,'2005-05-28 10:35:23',4020,1,'2005-06-03 06:32:23',1,'2006-02-15 21:30:53'), - (574,'2005-05-28 10:44:28',3883,76,'2005-06-04 11:42:28',1,'2006-02-15 21:30:53'), - (575,'2005-05-28 10:56:09',4451,142,'2005-06-05 15:39:09',1,'2006-02-15 21:30:53'), - (576,'2005-05-28 10:56:10',1866,588,'2005-06-04 13:15:10',2,'2006-02-15 21:30:53'), - (577,'2005-05-28 11:09:14',375,6,'2005-06-01 13:27:14',2,'2006-02-15 21:30:53'), - (578,'2005-05-28 11:15:48',2938,173,'2005-06-02 09:59:48',1,'2006-02-15 21:30:53'), - (579,'2005-05-28 11:19:23',3481,181,'2005-06-02 13:51:23',1,'2006-02-15 21:30:53'), - (580,'2005-05-28 11:19:53',3515,17,'2005-06-01 10:44:53',2,'2006-02-15 21:30:53'), - (581,'2005-05-28 11:20:29',1380,186,'2005-06-04 12:37:29',2,'2006-02-15 21:30:53'), - (582,'2005-05-28 11:33:46',4579,198,'2005-05-29 08:33:46',1,'2006-02-15 21:30:53'), - (583,'2005-05-28 11:48:55',2679,386,'2005-06-04 07:09:55',2,'2006-02-15 21:30:53'), - (584,'2005-05-28 11:49:00',1833,69,'2005-06-01 11:54:00',1,'2006-02-15 21:30:53'), - (585,'2005-05-28 11:50:45',3544,490,'2005-06-03 15:35:45',2,'2006-02-15 21:30:53'), - (586,'2005-05-28 12:03:00',898,77,'2005-05-29 13:16:00',1,'2006-02-15 21:30:53'), - (587,'2005-05-28 12:05:33',1413,64,'2005-05-30 13:45:33',2,'2006-02-15 21:30:53'), - (588,'2005-05-28 12:08:37',95,89,'2005-05-29 16:25:37',2,'2006-02-15 21:30:53'), - (589,'2005-05-28 12:27:50',4231,308,'2005-06-03 07:15:50',2,'2006-02-15 21:30:53'), - (590,'2005-05-28 13:06:50',473,462,'2005-06-02 09:18:50',1,'2006-02-15 21:30:53'), - (591,'2005-05-28 13:11:04',377,19,'2005-05-29 17:20:04',2,'2006-02-15 21:30:53'), - (592,'2005-05-28 13:21:08',638,244,'2005-05-29 16:55:08',1,'2006-02-15 21:30:53'), - (593,'2005-05-28 13:33:23',1810,16,'2005-05-30 17:10:23',2,'2006-02-15 21:30:53'), - (594,'2005-05-28 13:41:56',2766,538,'2005-05-30 12:00:56',1,'2006-02-15 21:30:53'), - (595,'2005-05-28 13:59:54',595,294,'2005-06-05 15:16:54',1,'2006-02-15 21:30:53'), - (596,'2005-05-28 14:00:03',821,589,'2005-05-29 17:10:03',1,'2006-02-15 21:30:53'), - (597,'2005-05-28 14:01:02',4469,249,'2005-06-06 19:06:02',2,'2006-02-15 21:30:53'), - (598,'2005-05-28 14:04:50',599,159,'2005-06-03 18:00:50',2,'2006-02-15 21:30:53'), - (599,'2005-05-28 14:05:57',4136,393,'2005-06-01 16:41:57',2,'2006-02-15 21:30:53'), - (600,'2005-05-28 14:08:19',1567,332,'2005-06-03 11:57:19',2,'2006-02-15 21:30:53'), - (601,'2005-05-28 14:08:22',3225,429,'2005-06-04 10:50:22',1,'2006-02-15 21:30:53'), - (602,'2005-05-28 14:15:54',1300,590,'2005-06-05 15:16:54',2,'2006-02-15 21:30:53'), - (603,'2005-05-28 14:27:51',3248,537,'2005-05-29 13:13:51',1,'2006-02-15 21:30:53'), - (604,'2005-05-28 14:37:07',1585,426,'2005-06-03 11:03:07',2,'2006-02-15 21:30:53'), - (605,'2005-05-28 14:39:10',4232,501,'2005-06-01 09:28:10',2,'2006-02-15 21:30:53'), - (606,'2005-05-28 14:48:39',3509,299,'2005-06-04 09:44:39',2,'2006-02-15 21:30:53'), - (607,'2005-05-28 15:02:41',2561,554,'2005-05-30 12:54:41',2,'2006-02-15 21:30:53'), - (608,'2005-05-28 15:03:44',4254,494,'2005-06-04 17:14:44',2,'2006-02-15 21:30:53'), - (609,'2005-05-28 15:04:02',2944,150,'2005-06-05 14:47:02',2,'2006-02-15 21:30:53'), - (610,'2005-05-28 15:15:25',3642,500,'2005-06-02 12:30:25',2,'2006-02-15 21:30:53'), - (611,'2005-05-28 15:18:18',1230,580,'2005-05-31 20:15:18',2,'2006-02-15 21:30:53'), - (612,'2005-05-28 15:24:54',2180,161,'2005-05-30 14:22:54',2,'2006-02-15 21:30:53'), - (613,'2005-05-28 15:27:22',270,595,'2005-06-02 20:01:22',1,'2006-02-15 21:30:53'), - (614,'2005-05-28 15:33:28',280,307,'2005-06-04 12:27:28',2,'2006-02-15 21:30:53'), - (615,'2005-05-28 15:35:52',3397,533,'2005-06-03 17:35:52',2,'2006-02-15 21:30:53'), - (616,'2005-05-28 15:45:39',989,471,'2005-06-02 09:55:39',1,'2006-02-15 21:30:53'), - (617,'2005-05-28 15:49:14',4142,372,'2005-05-31 14:29:14',2,'2006-02-15 21:30:53'), - (618,'2005-05-28 15:50:07',4445,248,'2005-06-01 19:45:07',1,'2006-02-15 21:30:53'), - (619,'2005-05-28 15:52:26',2482,407,'2005-06-06 17:55:26',2,'2006-02-15 21:30:53'), - (620,'2005-05-28 15:54:45',2444,321,'2005-06-04 20:26:45',1,'2006-02-15 21:30:53'), - (621,'2005-05-28 15:58:12',1144,239,'2005-05-30 21:54:12',1,'2006-02-15 21:30:53'), - (622,'2005-05-28 15:58:22',2363,109,'2005-06-04 10:13:22',1,'2006-02-15 21:30:53'), - (623,'2005-05-28 16:01:28',1222,495,'2005-05-30 11:19:28',1,'2006-02-15 21:30:53'), - (624,'2005-05-28 16:13:22',3660,569,'2005-06-06 20:35:22',1,'2006-02-15 21:30:53'), - (625,'2005-05-28 16:35:46',2889,596,'2005-06-01 14:19:46',1,'2006-02-15 21:30:53'), - (626,'2005-05-28 16:58:09',452,584,'2005-06-01 14:02:09',2,'2006-02-15 21:30:53'), - (627,'2005-05-28 17:04:43',425,241,'2005-06-04 19:58:43',2,'2006-02-15 21:30:53'), - (628,'2005-05-28 17:05:46',2513,173,'2005-06-06 16:29:46',2,'2006-02-15 21:30:53'), - (629,'2005-05-28 17:19:15',1527,94,'2005-06-02 20:01:15',2,'2006-02-15 21:30:53'), - (630,'2005-05-28 17:24:51',1254,417,'2005-06-05 20:05:51',2,'2006-02-15 21:30:53'), - (631,'2005-05-28 17:36:32',2465,503,'2005-06-03 14:56:32',2,'2006-02-15 21:30:53'), - (632,'2005-05-28 17:37:50',1287,442,'2005-06-03 16:04:50',1,'2006-02-15 21:30:53'), - (633,'2005-05-28 17:37:59',58,360,'2005-06-03 22:49:59',2,'2006-02-15 21:30:53'), - (634,'2005-05-28 17:40:35',2630,428,'2005-06-05 16:18:35',2,'2006-02-15 21:30:53'), - (635,'2005-05-28 17:46:57',1648,42,'2005-06-06 18:24:57',1,'2006-02-15 21:30:53'), - (636,'2005-05-28 17:47:58',4213,239,'2005-06-04 16:32:58',1,'2006-02-15 21:30:53'), - (637,'2005-05-28 18:14:29',1581,250,'2005-05-29 23:48:29',2,'2006-02-15 21:30:53'), - (638,'2005-05-28 18:24:43',2685,372,'2005-06-02 19:03:43',2,'2006-02-15 21:30:53'), - (639,'2005-05-28 18:25:02',4204,198,'2005-05-29 18:22:02',1,'2006-02-15 21:30:53'), - (640,'2005-05-28 18:43:26',495,465,'2005-05-30 13:39:26',1,'2006-02-15 21:30:53'), - (641,'2005-05-28 18:45:47',3548,396,'2005-06-04 15:24:47',1,'2006-02-15 21:30:53'), - (642,'2005-05-28 18:49:12',140,157,'2005-06-01 20:50:12',2,'2006-02-15 21:30:53'), - (643,'2005-05-28 18:52:11',3105,240,'2005-05-31 15:15:11',2,'2006-02-15 21:30:53'), - (644,'2005-05-28 18:59:12',4304,316,'2005-06-04 18:06:12',1,'2006-02-15 21:30:53'), - (645,'2005-05-28 19:14:09',3128,505,'2005-06-05 14:01:09',1,'2006-02-15 21:30:53'), - (646,'2005-05-28 19:16:14',1922,185,'2005-05-31 16:50:14',2,'2006-02-15 21:30:53'), - (647,'2005-05-28 19:22:52',3435,569,'2005-06-01 00:10:52',1,'2006-02-15 21:30:53'), - (648,'2005-05-28 19:25:54',3476,253,'2005-06-03 15:57:54',2,'2006-02-15 21:30:53'), - (649,'2005-05-28 19:35:45',1781,197,'2005-06-05 16:00:45',1,'2006-02-15 21:30:53'), - (650,'2005-05-28 19:45:40',4384,281,'2005-05-29 21:02:40',1,'2006-02-15 21:30:53'), - (651,'2005-05-28 19:46:50',739,266,'2005-05-30 16:29:50',1,'2006-02-15 21:30:53'), - (652,'2005-05-28 20:08:47',1201,43,'2005-05-29 14:57:47',2,'2006-02-15 21:30:53'), - (653,'2005-05-28 20:12:20',126,327,'2005-06-04 14:44:20',2,'2006-02-15 21:30:53'), - (654,'2005-05-28 20:15:30',2312,23,'2005-05-30 22:02:30',2,'2006-02-15 21:30:53'), - (655,'2005-05-28 20:16:20',331,287,'2005-05-31 16:46:20',2,'2006-02-15 21:30:53'), - (656,'2005-05-28 20:18:24',2846,437,'2005-05-30 16:19:24',1,'2006-02-15 21:30:53'), - (657,'2005-05-28 20:23:09',848,65,'2005-06-01 02:11:09',1,'2006-02-15 21:30:53'), - (658,'2005-05-28 20:23:23',3226,103,'2005-06-06 19:31:23',2,'2006-02-15 21:30:53'), - (659,'2005-05-28 20:27:53',1382,207,'2005-05-31 01:36:53',2,'2006-02-15 21:30:53'), - (660,'2005-05-28 20:53:31',1414,578,'2005-05-30 15:26:31',1,'2006-02-15 21:30:53'), - (661,'2005-05-28 21:01:25',2247,51,'2005-06-02 01:22:25',2,'2006-02-15 21:30:53'), - (662,'2005-05-28 21:09:31',2968,166,'2005-06-01 19:00:31',2,'2006-02-15 21:30:53'), - (663,'2005-05-28 21:23:02',3997,176,'2005-06-02 17:39:02',2,'2006-02-15 21:30:53'), - (664,'2005-05-28 21:31:08',87,523,'2005-06-02 20:56:08',2,'2006-02-15 21:30:53'), - (665,'2005-05-28 21:38:39',1012,415,'2005-05-29 21:37:39',1,'2006-02-15 21:30:53'), - (666,'2005-05-28 21:48:51',3075,437,'2005-06-05 16:45:51',2,'2006-02-15 21:30:53'), - (667,'2005-05-28 21:49:02',797,596,'2005-05-31 03:07:02',1,'2006-02-15 21:30:53'), - (668,'2005-05-28 21:54:45',3528,484,'2005-05-29 22:32:45',1,'2006-02-15 21:30:53'), - (669,'2005-05-28 22:03:25',3677,313,'2005-06-03 03:39:25',1,'2006-02-15 21:30:53'), - (670,'2005-05-28 22:04:03',227,201,'2005-06-06 22:43:03',2,'2006-02-15 21:30:53'), - (671,'2005-05-28 22:04:30',1027,14,'2005-06-03 01:21:30',2,'2006-02-15 21:30:53'), - (672,'2005-05-28 22:05:29',697,306,'2005-06-06 02:10:29',2,'2006-02-15 21:30:53'), - (673,'2005-05-28 22:07:30',1769,468,'2005-06-01 23:42:30',1,'2006-02-15 21:30:53'), - (674,'2005-05-28 22:11:35',1150,87,'2005-06-01 23:58:35',2,'2006-02-15 21:30:53'), - (675,'2005-05-28 22:22:44',1273,338,'2005-06-01 02:57:44',2,'2006-02-15 21:30:53'), - (676,'2005-05-28 22:27:51',2329,490,'2005-05-29 20:36:51',2,'2006-02-15 21:30:53'), - (677,'2005-05-28 23:00:08',4558,194,'2005-06-05 19:11:08',2,'2006-02-15 21:30:53'), - (678,'2005-05-28 23:15:48',3741,269,'2005-06-03 04:43:48',2,'2006-02-15 21:30:53'), - (679,'2005-05-28 23:24:57',907,526,'2005-06-06 21:59:57',2,'2006-02-15 21:30:53'), - (680,'2005-05-28 23:27:26',4147,482,'2005-06-02 02:28:26',2,'2006-02-15 21:30:53'), - (681,'2005-05-28 23:39:44',3346,531,'2005-06-01 01:42:44',1,'2006-02-15 21:30:53'), - (682,'2005-05-28 23:53:18',3160,148,'2005-05-29 19:14:18',2,'2006-02-15 21:30:53'), - (683,'2005-05-29 00:09:48',2038,197,'2005-06-02 04:27:48',1,'2006-02-15 21:30:53'), - (684,'2005-05-29 00:13:15',3242,461,'2005-06-04 21:26:15',2,'2006-02-15 21:30:53'), - (685,'2005-05-29 00:17:51',1385,172,'2005-06-05 05:32:51',2,'2006-02-15 21:30:53'), - (686,'2005-05-29 00:27:10',2441,411,'2005-05-30 02:29:10',1,'2006-02-15 21:30:53'), - (687,'2005-05-29 00:32:09',1731,250,'2005-05-31 23:53:09',1,'2006-02-15 21:30:53'), - (688,'2005-05-29 00:45:24',4135,162,'2005-06-02 01:30:24',1,'2006-02-15 21:30:53'), - (689,'2005-05-29 00:46:53',742,571,'2005-06-03 23:48:53',2,'2006-02-15 21:30:53'), - (690,'2005-05-29 00:54:53',2646,85,'2005-06-06 00:45:53',1,'2006-02-15 21:30:53'), - (691,'2005-05-29 01:01:26',4034,433,'2005-06-07 06:21:26',1,'2006-02-15 21:30:53'), - (692,'2005-05-29 01:32:10',800,18,'2005-06-02 03:54:10',2,'2006-02-15 21:30:53'), - (693,'2005-05-29 01:42:31',635,190,'2005-06-03 02:29:31',2,'2006-02-15 21:30:53'), - (694,'2005-05-29 01:49:43',592,399,'2005-06-05 06:52:43',1,'2006-02-15 21:30:53'), - (695,'2005-05-29 01:50:53',4276,528,'2005-06-03 02:28:53',1,'2006-02-15 21:30:53'), - (696,'2005-05-29 01:59:10',2076,19,'2005-06-01 02:45:10',1,'2006-02-15 21:30:53'), - (697,'2005-05-29 02:04:04',3949,387,'2005-06-04 00:47:04',2,'2006-02-15 21:30:53'), - (698,'2005-05-29 02:10:52',1412,109,'2005-06-01 21:52:52',1,'2006-02-15 21:30:53'), - (699,'2005-05-29 02:11:44',130,246,'2005-06-04 20:23:44',2,'2006-02-15 21:30:53'), - (700,'2005-05-29 02:18:54',500,117,'2005-05-30 05:54:54',1,'2006-02-15 21:30:53'), - (701,'2005-05-29 02:26:27',372,112,'2005-06-03 04:59:27',1,'2006-02-15 21:30:53'), - (702,'2005-05-29 02:27:30',2556,475,'2005-05-30 01:52:30',2,'2006-02-15 21:30:53'), - (703,'2005-05-29 02:29:36',1123,269,'2005-06-03 04:54:36',2,'2006-02-15 21:30:53'), - (704,'2005-05-29 02:44:43',2628,330,'2005-06-06 01:51:43',2,'2006-02-15 21:30:53'), - (705,'2005-05-29 02:48:52',2809,257,'2005-05-30 06:21:52',1,'2006-02-15 21:30:53'), - (706,'2005-05-29 03:05:49',2278,60,'2005-06-04 22:48:49',1,'2006-02-15 21:30:53'), - (707,'2005-05-29 03:18:19',819,252,'2005-05-30 02:45:19',1,'2006-02-15 21:30:53'), - (708,'2005-05-29 03:23:47',3133,127,'2005-05-31 21:27:47',2,'2006-02-15 21:30:53'), - (709,'2005-05-29 03:48:01',2459,479,'2005-06-06 05:21:01',1,'2006-02-15 21:30:53'), - (710,'2005-05-29 03:48:36',194,518,'2005-06-03 05:03:36',1,'2006-02-15 21:30:53'), - (711,'2005-05-29 03:49:03',4581,215,'2005-05-31 08:29:03',2,'2006-02-15 21:30:53'), - (712,'2005-05-29 04:02:24',4191,313,'2005-05-30 03:09:24',2,'2006-02-15 21:30:53'), - (713,'2005-05-29 04:10:17',3664,507,'2005-06-07 07:13:17',1,'2006-02-15 21:30:53'), - (714,'2005-05-29 04:15:21',2010,452,'2005-06-01 23:05:21',2,'2006-02-15 21:30:53'), - (715,'2005-05-29 04:22:41',2030,545,'2005-06-05 09:28:41',1,'2006-02-15 21:30:53'), - (716,'2005-05-29 04:35:29',85,36,'2005-06-01 07:42:29',2,'2006-02-15 21:30:53'), - (717,'2005-05-29 04:37:44',1383,412,'2005-05-30 05:48:44',2,'2006-02-15 21:30:53'), - (718,'2005-05-29 04:52:23',1736,498,'2005-06-02 02:27:23',1,'2006-02-15 21:30:53'), - (719,'2005-05-29 05:16:05',267,245,'2005-06-01 07:53:05',2,'2006-02-15 21:30:53'), - (720,'2005-05-29 05:17:30',3687,480,'2005-06-06 02:47:30',2,'2006-02-15 21:30:53'), - (721,'2005-05-29 05:28:47',1116,44,'2005-05-31 11:24:47',1,'2006-02-15 21:30:53'), - (722,'2005-05-29 05:30:31',4540,259,'2005-06-06 04:51:31',1,'2006-02-15 21:30:53'), - (723,'2005-05-29 05:34:44',3407,309,'2005-05-30 05:50:44',1,'2006-02-15 21:30:53'), - (724,'2005-05-29 05:53:23',3770,416,'2005-06-05 04:01:23',2,'2006-02-15 21:30:53'), - (725,'2005-05-29 06:03:41',4088,245,'2005-06-03 08:52:41',2,'2006-02-15 21:30:53'), - (726,'2005-05-29 06:05:29',933,452,'2005-06-05 04:40:29',2,'2006-02-15 21:30:53'), - (727,'2005-05-29 06:08:15',1629,484,'2005-05-30 07:16:15',1,'2006-02-15 21:30:53'), - (728,'2005-05-29 06:12:38',242,551,'2005-06-03 07:41:38',1,'2006-02-15 21:30:53'), - (729,'2005-05-29 06:35:13',1688,323,'2005-06-04 03:23:13',2,'2006-02-15 21:30:53'), - (730,'2005-05-29 07:00:59',3473,197,'2005-06-06 01:17:59',1,'2006-02-15 21:30:53'), - (731,'2005-05-29 07:25:16',4124,5,'2005-05-30 05:21:16',1,'2006-02-15 21:30:53'), - (732,'2005-05-29 07:32:51',2530,447,'2005-05-30 10:08:51',2,'2006-02-15 21:30:53'), - (733,'2005-05-29 07:35:21',2951,363,'2005-06-05 09:14:21',1,'2006-02-15 21:30:53'), - (734,'2005-05-29 07:38:52',3084,538,'2005-06-03 10:17:52',2,'2006-02-15 21:30:53'), - (735,'2005-05-29 08:08:13',3421,454,'2005-06-07 13:35:13',1,'2006-02-15 21:30:53'), - (736,'2005-05-29 08:10:07',3689,276,'2005-06-05 10:21:07',2,'2006-02-15 21:30:53'), - (737,'2005-05-29 08:11:31',769,589,'2005-06-04 11:18:31',2,'2006-02-15 21:30:53'), - (738,'2005-05-29 08:20:08',2284,256,'2005-06-06 08:59:08',2,'2006-02-15 21:30:53'), - (739,'2005-05-29 08:28:18',1183,84,'2005-06-06 09:21:18',2,'2006-02-15 21:30:53'), - (740,'2005-05-29 08:30:36',600,89,'2005-06-04 12:47:36',2,'2006-02-15 21:30:53'), - (741,'2005-05-29 08:35:49',3189,495,'2005-06-04 11:55:49',1,'2006-02-15 21:30:53'), - (742,'2005-05-29 08:36:30',273,483,'2005-06-05 11:30:30',1,'2006-02-15 21:30:53'), - (743,'2005-05-29 08:39:02',2528,548,'2005-06-06 08:42:02',2,'2006-02-15 21:30:53'), - (744,'2005-05-29 09:13:08',3722,420,'2005-06-01 07:05:08',2,'2006-02-15 21:30:53'), - (745,'2005-05-29 09:22:57',581,152,'2005-06-01 09:10:57',1,'2006-02-15 21:30:53'), - (746,'2005-05-29 09:25:10',4272,130,'2005-06-02 04:20:10',2,'2006-02-15 21:30:53'), - (747,'2005-05-29 09:26:34',1993,291,'2005-06-05 07:28:34',1,'2006-02-15 21:30:53'), - (748,'2005-05-29 09:27:00',2803,7,'2005-06-03 04:25:00',1,'2006-02-15 21:30:53'), - (749,'2005-05-29 09:33:33',1146,375,'2005-05-31 11:45:33',2,'2006-02-15 21:30:53'), - (750,'2005-05-29 09:41:40',730,269,'2005-05-30 13:31:40',1,'2006-02-15 21:30:53'), - (751,'2005-05-29 09:55:43',2711,53,'2005-06-02 04:54:43',1,'2006-02-15 21:30:53'), - (752,'2005-05-29 10:14:15',1720,126,'2005-06-04 06:30:15',1,'2006-02-15 21:30:53'), - (753,'2005-05-29 10:16:42',1021,135,'2005-06-05 08:52:42',2,'2006-02-15 21:30:53'), - (754,'2005-05-29 10:18:59',734,281,'2005-06-04 05:03:59',2,'2006-02-15 21:30:53'), - (755,'2005-05-29 10:26:29',3090,576,'2005-06-01 10:25:29',2,'2006-02-15 21:30:53'), - (756,'2005-05-29 10:28:45',3152,201,'2005-06-04 12:50:45',1,'2006-02-15 21:30:53'), - (757,'2005-05-29 10:29:47',1067,435,'2005-06-07 15:27:47',1,'2006-02-15 21:30:53'), - (758,'2005-05-29 10:31:56',1191,563,'2005-06-01 14:53:56',2,'2006-02-15 21:30:53'), - (759,'2005-05-29 10:57:57',2367,179,'2005-06-07 16:23:57',2,'2006-02-15 21:30:53'), - (760,'2005-05-29 11:07:25',3250,77,'2005-06-02 14:16:25',1,'2006-02-15 21:30:53'), - (761,'2005-05-29 11:09:01',2342,58,'2005-06-03 16:18:01',2,'2006-02-15 21:30:53'), - (762,'2005-05-29 11:15:51',3683,146,'2005-06-06 07:48:51',1,'2006-02-15 21:30:53'), - (763,'2005-05-29 11:32:15',2022,50,'2005-05-31 17:31:15',1,'2006-02-15 21:30:53'), - (764,'2005-05-29 11:37:35',1069,149,'2005-05-31 16:47:35',1,'2006-02-15 21:30:53'), - (765,'2005-05-29 11:38:34',515,69,'2005-06-02 17:04:34',1,'2006-02-15 21:30:53'), - (766,'2005-05-29 11:47:02',2154,383,'2005-06-06 07:14:02',1,'2006-02-15 21:30:53'), - (767,'2005-05-29 12:20:19',687,67,'2005-06-02 14:15:19',2,'2006-02-15 21:30:53'), - (768,'2005-05-29 12:30:46',2895,566,'2005-06-07 09:00:46',2,'2006-02-15 21:30:53'), - (769,'2005-05-29 12:51:44',1523,575,'2005-06-01 17:43:44',1,'2006-02-15 21:30:53'), - (770,'2005-05-29 12:56:50',2491,405,'2005-06-07 15:54:50',2,'2006-02-15 21:30:53'), - (771,'2005-05-29 12:59:14',353,476,'2005-06-01 16:05:14',2,'2006-02-15 21:30:53'), - (772,'2005-05-29 13:08:06',3319,556,'2005-06-06 08:19:06',1,'2006-02-15 21:30:53'), - (773,'2005-05-29 13:18:05',245,563,'2005-06-07 17:22:05',1,'2006-02-15 21:30:53'), - (774,'2005-05-29 13:19:43',1188,575,'2005-06-01 18:51:43',1,'2006-02-15 21:30:53'), - (775,'2005-05-29 13:23:26',1197,124,'2005-05-30 07:53:26',2,'2006-02-15 21:30:53'), - (776,'2005-05-29 13:35:35',4339,113,'2005-06-03 17:33:35',1,'2006-02-15 21:30:53'), - (777,'2005-05-29 14:07:58',451,360,'2005-06-03 08:41:58',2,'2006-02-15 21:30:53'), - (778,'2005-05-29 14:09:53',1816,535,'2005-06-05 20:05:53',1,'2006-02-15 21:30:53'), - (779,'2005-05-29 14:17:17',533,105,'2005-06-06 16:46:17',1,'2006-02-15 21:30:53'), - (780,'2005-05-29 14:18:32',1919,300,'2005-06-06 20:14:32',1,'2006-02-15 21:30:53'), - (781,'2005-05-29 14:23:58',88,313,'2005-05-30 17:44:58',1,'2006-02-15 21:30:53'), - (782,'2005-05-29 14:38:57',2255,596,'2005-06-02 13:18:57',2,'2006-02-15 21:30:53'), - (783,'2005-05-29 14:41:18',3046,53,'2005-06-06 10:39:18',2,'2006-02-15 21:30:53'), - (784,'2005-05-29 14:44:22',2936,352,'2005-06-01 17:28:22',2,'2006-02-15 21:30:53'), - (785,'2005-05-29 15:08:41',39,72,'2005-05-30 15:51:41',1,'2006-02-15 21:30:53'), - (786,'2005-05-29 15:17:28',2637,439,'2005-06-07 10:07:28',2,'2006-02-15 21:30:53'), - (787,'2005-05-29 16:03:03',3919,27,'2005-06-07 11:07:03',2,'2006-02-15 21:30:53'), - (788,'2005-05-29 16:13:55',763,562,'2005-05-31 16:40:55',1,'2006-02-15 21:30:53'), - (789,'2005-05-29 16:17:07',708,553,'2005-06-06 18:15:07',1,'2006-02-15 21:30:53'), - (790,'2005-05-29 16:19:29',2858,593,'2005-06-02 17:22:29',2,'2006-02-15 21:30:53'), - (791,'2005-05-29 16:30:42',1554,284,'2005-06-01 19:11:42',1,'2006-02-15 21:30:53'), - (792,'2005-05-29 16:32:10',2841,261,'2005-05-31 18:01:10',1,'2006-02-15 21:30:53'), - (793,'2005-05-29 16:44:08',379,528,'2005-06-06 19:21:08',2,'2006-02-15 21:30:53'), - (794,'2005-05-29 16:44:11',1995,50,'2005-06-05 16:11:11',1,'2006-02-15 21:30:53'), - (795,'2005-05-29 16:57:39',609,551,'2005-06-01 11:33:39',2,'2006-02-15 21:30:53'), - (796,'2005-05-29 16:59:44',2697,26,'2005-06-03 16:22:44',2,'2006-02-15 21:30:53'), - (797,'2005-05-29 17:12:17',1446,244,'2005-06-03 16:06:17',1,'2006-02-15 21:30:53'), - (798,'2005-05-29 17:23:43',1102,134,'2005-06-01 13:06:43',2,'2006-02-15 21:30:53'), - (799,'2005-05-29 17:24:48',1713,429,'2005-06-05 12:25:48',1,'2006-02-15 21:30:53'), - (800,'2005-05-29 17:28:12',441,472,'2005-05-30 14:59:12',1,'2006-02-15 21:30:53'), - (801,'2005-05-29 17:35:50',1642,402,'2005-06-04 17:05:50',2,'2006-02-15 21:30:53'), - (802,'2005-05-29 17:38:59',785,350,'2005-05-31 22:42:59',2,'2006-02-15 21:30:53'), - (803,'2005-05-29 17:52:30',1602,32,'2005-05-30 14:35:30',2,'2006-02-15 21:30:53'), - (804,'2005-05-29 18:10:24',3909,171,'2005-06-06 22:53:24',1,'2006-02-15 21:30:53'), - (805,'2005-05-29 18:18:18',3132,232,'2005-06-07 15:11:18',2,'2006-02-15 21:30:53'), - (806,'2005-05-29 18:31:30',2386,435,'2005-05-31 00:18:30',2,'2006-02-15 21:30:53'), - (807,'2005-05-29 18:50:50',2195,235,'2005-06-03 18:36:50',2,'2006-02-15 21:30:53'), - (808,'2005-05-29 19:08:20',1928,104,'2005-06-06 20:32:20',2,'2006-02-15 21:30:53'), - (809,'2005-05-29 19:10:20',2114,222,'2005-06-05 19:05:20',2,'2006-02-15 21:30:53'), - (810,'2005-05-29 19:12:04',2533,346,'2005-06-04 21:12:04',2,'2006-02-15 21:30:53'), - (811,'2005-05-29 19:30:42',4419,401,'2005-06-02 16:19:42',2,'2006-02-15 21:30:53'), - (812,'2005-05-29 20:00:30',1099,225,'2005-05-30 19:43:30',2,'2006-02-15 21:30:53'), - (813,'2005-05-29 20:14:34',4554,344,'2005-06-05 20:56:34',1,'2006-02-15 21:30:53'), - (814,'2005-05-29 20:16:12',1572,134,'2005-06-07 17:47:12',1,'2006-02-15 21:30:53'), - (815,'2005-05-29 20:24:28',3757,14,'2005-06-03 15:32:28',1,'2006-02-15 21:30:53'), - (816,'2005-05-29 20:26:39',630,474,'2005-06-06 22:31:39',2,'2006-02-15 21:30:53'), - (817,'2005-05-29 20:39:14',186,554,'2005-05-31 18:24:14',1,'2006-02-15 21:30:53'), - (818,'2005-05-29 20:47:53',4106,321,'2005-06-02 23:18:53',2,'2006-02-15 21:30:53'), - (819,'2005-05-29 21:00:32',623,511,'2005-06-02 15:15:32',2,'2006-02-15 21:30:53'), - (820,'2005-05-29 21:07:22',2584,22,'2005-06-07 00:22:22',2,'2006-02-15 21:30:53'), - (821,'2005-05-29 21:31:12',3380,348,'2005-06-04 22:49:12',1,'2006-02-15 21:30:53'), - (822,'2005-05-29 21:36:00',2634,480,'2005-06-07 17:24:00',1,'2006-02-15 21:30:53'), - (823,'2005-05-29 21:39:37',3249,441,'2005-05-30 22:06:37',1,'2006-02-15 21:30:53'), - (824,'2005-05-29 21:45:32',3518,357,'2005-05-31 19:01:32',1,'2006-02-15 21:30:53'), - (825,'2005-05-29 21:49:41',712,371,'2005-06-04 20:27:41',2,'2006-02-15 21:30:53'), - (826,'2005-05-29 21:56:15',2263,207,'2005-06-08 03:18:15',1,'2006-02-15 21:30:53'), - (827,'2005-05-29 21:58:43',62,573,'2005-06-06 00:54:43',1,'2006-02-15 21:30:53'), - (828,'2005-05-29 22:14:55',2468,217,'2005-05-30 17:22:55',1,'2006-02-15 21:30:53'), - (829,'2005-05-29 22:16:42',1684,371,'2005-06-06 01:38:42',1,'2006-02-15 21:30:53'), - (830,'2005-05-29 22:43:55',3464,3,'2005-06-01 17:43:55',1,'2006-02-15 21:30:53'), - (831,'2005-05-29 22:50:25',3912,509,'2005-06-06 02:27:25',1,'2006-02-15 21:30:53'), - (832,'2005-05-29 22:51:20',1381,159,'2005-06-07 17:37:20',2,'2006-02-15 21:30:53'), - (833,'2005-05-29 23:21:56',2898,417,'2005-06-02 18:40:56',1,'2006-02-15 21:30:53'), - (834,'2005-05-29 23:24:30',3628,84,'2005-05-30 22:00:30',2,'2006-02-15 21:30:53'), - (835,'2005-05-29 23:37:00',299,381,'2005-06-02 23:38:00',1,'2006-02-15 21:30:53'), - (836,'2005-05-29 23:56:42',3140,368,'2005-05-31 04:11:42',2,'2006-02-15 21:30:53'), - (837,'2005-05-30 00:02:08',977,172,'2005-06-02 05:31:08',2,'2006-02-15 21:30:53'), - (838,'2005-05-30 00:27:57',2859,504,'2005-06-06 22:19:57',2,'2006-02-15 21:30:53'), - (839,'2005-05-30 00:28:12',1886,337,'2005-06-08 02:43:12',1,'2006-02-15 21:30:53'), - (840,'2005-05-30 00:28:41',4049,79,'2005-05-31 20:39:41',2,'2006-02-15 21:30:53'), - (841,'2005-05-30 00:31:17',4318,387,'2005-06-02 19:14:17',1,'2006-02-15 21:30:53'), - (842,'2005-05-30 00:32:04',2328,238,'2005-06-01 02:21:04',1,'2006-02-15 21:30:53'), - (843,'2005-05-30 00:44:24',2214,313,'2005-05-31 00:58:24',2,'2006-02-15 21:30:53'), - (844,'2005-05-30 00:58:20',536,429,'2005-06-01 00:38:20',1,'2006-02-15 21:30:53'), - (845,'2005-05-30 01:17:25',2001,72,'2005-06-07 02:00:25',1,'2006-02-15 21:30:53'), - (846,'2005-05-30 01:17:45',938,49,'2005-06-01 00:56:45',2,'2006-02-15 21:30:53'), - (847,'2005-05-30 01:18:15',4387,380,'2005-06-06 20:20:15',2,'2006-02-15 21:30:53'), - (848,'2005-05-30 01:19:53',1363,436,'2005-06-05 23:40:53',1,'2006-02-15 21:30:53'), - (849,'2005-05-30 01:23:07',2424,449,'2005-06-07 01:50:07',1,'2006-02-15 21:30:53'), - (850,'2005-05-30 01:35:12',2390,517,'2005-05-31 01:51:12',1,'2006-02-15 21:30:53'), - (851,'2005-05-30 01:35:15',2780,530,'2005-06-06 07:27:15',1,'2006-02-15 21:30:53'), - (852,'2005-05-30 01:36:57',1622,549,'2005-06-01 22:44:57',1,'2006-02-15 21:30:53'), - (853,'2005-05-30 01:43:31',3693,122,'2005-06-01 02:05:31',1,'2006-02-15 21:30:53'), - (854,'2005-05-30 01:56:11',921,369,'2005-06-01 06:34:11',2,'2006-02-15 21:30:53'), - (855,'2005-05-30 02:00:28',2527,406,'2005-06-03 20:16:28',2,'2006-02-15 21:30:53'), - (856,'2005-05-30 02:01:21',3969,53,'2005-06-07 03:25:21',1,'2006-02-15 21:30:53'), - (857,'2005-05-30 02:01:23',2569,204,'2005-06-02 06:07:23',2,'2006-02-15 21:30:53'), - (858,'2005-05-30 02:10:32',1258,358,'2005-06-01 04:42:32',1,'2006-02-15 21:30:53'), - (859,'2005-05-30 02:36:20',3032,79,'2005-06-02 07:49:20',2,'2006-02-15 21:30:53'), - (860,'2005-05-30 02:45:16',578,276,'2005-06-08 07:28:16',1,'2006-02-15 21:30:53'), - (861,'2005-05-30 02:48:32',3711,502,'2005-06-06 05:43:32',1,'2006-02-15 21:30:53'), - (862,'2005-05-30 03:09:11',1186,328,'2005-06-03 21:27:11',1,'2006-02-15 21:30:53'), - (863,'2005-05-30 03:14:59',3999,379,'2005-06-05 04:34:59',2,'2006-02-15 21:30:53'), - (864,'2005-05-30 03:27:17',2777,544,'2005-06-06 08:28:17',1,'2006-02-15 21:30:53'), - (865,'2005-05-30 03:39:44',3183,154,'2005-06-07 08:10:44',2,'2006-02-15 21:30:53'), - (866,'2005-05-30 03:43:54',2867,8,'2005-06-08 04:28:54',1,'2006-02-15 21:30:53'), - (867,'2005-05-30 03:54:43',3389,99,'2005-06-01 22:59:43',1,'2006-02-15 21:30:53'), - (868,'2005-05-30 04:19:55',3604,28,'2005-05-31 02:28:55',1,'2006-02-15 21:30:53'), - (869,'2005-05-30 04:22:06',3399,296,'2005-06-03 09:18:06',2,'2006-02-15 21:30:53'), - (870,'2005-05-30 04:25:47',2903,391,'2005-06-06 04:32:47',1,'2006-02-15 21:30:53'), - (871,'2005-05-30 05:01:30',4573,303,'2005-06-04 06:22:30',2,'2006-02-15 21:30:53'), - (872,'2005-05-30 05:03:04',3904,548,'2005-06-06 10:35:04',1,'2006-02-15 21:30:53'), - (873,'2005-05-30 05:15:20',4568,375,'2005-06-07 00:49:20',2,'2006-02-15 21:30:53'), - (874,'2005-05-30 05:36:21',363,52,'2005-06-01 09:32:21',1,'2006-02-15 21:30:53'), - (875,'2005-05-30 05:38:24',1428,326,'2005-06-06 00:34:24',2,'2006-02-15 21:30:53'), - (876,'2005-05-30 05:41:22',1471,339,'2005-06-07 09:06:22',2,'2006-02-15 21:30:53'), - (877,'2005-05-30 05:48:59',886,9,'2005-06-02 09:30:59',1,'2006-02-15 21:30:53'), - (878,'2005-05-30 05:49:13',4265,323,'2005-06-07 04:35:13',1,'2006-02-15 21:30:53'), - (879,'2005-05-30 05:49:42',4021,482,'2005-06-05 01:45:42',2,'2006-02-15 21:30:53'), - (880,'2005-05-30 06:12:33',1819,460,'2005-06-02 04:35:33',2,'2006-02-15 21:30:53'), - (881,'2005-05-30 06:15:36',602,242,'2005-06-02 10:21:36',1,'2006-02-15 21:30:53'), - (882,'2005-05-30 06:16:06',3841,477,'2005-06-02 11:57:06',1,'2006-02-15 21:30:53'), - (883,'2005-05-30 06:21:05',2271,399,'2005-06-07 04:50:05',2,'2006-02-15 21:30:53'), - (884,'2005-05-30 06:41:32',4079,17,'2005-05-31 07:39:32',1,'2006-02-15 21:30:53'), - (885,'2005-05-30 06:54:28',646,62,'2005-06-03 07:03:28',2,'2006-02-15 21:30:53'), - (886,'2005-05-30 06:54:51',4356,393,'2005-06-01 06:04:51',2,'2006-02-15 21:30:53'), - (887,'2005-05-30 07:10:00',2727,16,'2005-06-01 06:48:00',2,'2006-02-15 21:30:53'), - (888,'2005-05-30 07:13:14',387,128,'2005-06-06 09:50:14',1,'2006-02-15 21:30:53'), - (889,'2005-05-30 07:14:53',1299,114,'2005-05-31 07:56:53',2,'2006-02-15 21:30:53'), - (890,'2005-05-30 07:43:04',1464,349,'2005-06-01 11:26:04',1,'2006-02-15 21:30:53'), - (891,'2005-05-30 07:43:12',2611,391,'2005-06-08 09:21:12',1,'2006-02-15 21:30:53'), - (892,'2005-05-30 08:02:56',471,274,'2005-06-05 12:51:56',1,'2006-02-15 21:30:53'), - (893,'2005-05-30 08:06:59',3260,502,'2005-06-07 08:23:59',2,'2006-02-15 21:30:53'), - (894,'2005-05-30 08:31:31',1118,400,'2005-06-07 12:39:31',1,'2006-02-15 21:30:53'), - (895,'2005-05-30 08:50:43',2744,192,'2005-06-05 10:58:43',1,'2006-02-15 21:30:53'), - (896,'2005-05-30 09:03:52',2817,207,'2005-06-05 07:37:52',2,'2006-02-15 21:30:53'), - (897,'2005-05-30 09:10:01',1334,432,'2005-06-08 03:43:01',1,'2006-02-15 21:30:53'), - (898,'2005-05-30 09:26:19',3497,384,'2005-06-01 10:45:19',2,'2006-02-15 21:30:53'), - (899,'2005-05-30 09:29:30',1096,156,'2005-06-06 12:39:30',2,'2006-02-15 21:30:53'), - (900,'2005-05-30 09:38:41',3543,586,'2005-06-07 11:54:41',1,'2006-02-15 21:30:53'), - (901,'2005-05-30 09:40:40',760,259,'2005-06-02 10:32:40',1,'2006-02-15 21:30:53'), - (902,'2005-05-30 09:53:36',1514,561,'2005-06-07 12:10:36',1,'2006-02-15 21:30:53'), - (903,'2005-05-30 10:11:29',2423,197,'2005-06-03 09:33:29',1,'2006-02-15 21:30:53'), - (904,'2005-05-30 10:19:42',2466,44,'2005-06-05 04:58:42',2,'2006-02-15 21:30:53'), - (905,'2005-05-30 10:25:00',4372,50,'2005-06-06 06:23:00',1,'2006-02-15 21:30:53'), - (906,'2005-05-30 10:30:38',1862,549,'2005-06-07 06:44:38',2,'2006-02-15 21:30:53'), - (907,'2005-05-30 10:37:27',3320,506,'2005-06-02 09:51:27',1,'2006-02-15 21:30:53'), - (908,'2005-05-30 10:38:37',4427,85,'2005-06-03 09:56:37',1,'2006-02-15 21:30:53'), - (909,'2005-05-30 10:43:38',3775,486,'2005-06-08 12:07:38',1,'2006-02-15 21:30:53'), - (910,'2005-05-30 10:46:16',2601,374,'2005-06-04 13:32:16',1,'2006-02-15 21:30:53'), - (911,'2005-05-30 10:50:22',1404,366,'2005-06-07 12:26:22',2,'2006-02-15 21:30:53'), - (912,'2005-05-30 10:58:33',3200,390,'2005-05-31 09:31:33',2,'2006-02-15 21:30:53'), - (913,'2005-05-30 11:04:58',3213,369,'2005-06-07 13:22:58',2,'2006-02-15 21:30:53'), - (914,'2005-05-30 11:06:00',1393,596,'2005-06-04 06:07:00',2,'2006-02-15 21:30:53'), - (915,'2005-05-30 11:20:27',1859,115,'2005-06-02 11:55:27',1,'2006-02-15 21:30:53'), - (916,'2005-05-30 11:25:01',1290,6,'2005-05-31 09:06:01',1,'2006-02-15 21:30:53'), - (917,'2005-05-30 11:27:06',3629,385,'2005-06-02 08:31:06',1,'2006-02-15 21:30:53'), - (918,'2005-05-30 11:32:24',818,197,'2005-05-31 07:55:24',2,'2006-02-15 21:30:53'), - (919,'2005-05-30 11:35:06',4052,374,'2005-06-02 13:16:06',2,'2006-02-15 21:30:53'), - (920,'2005-05-30 11:44:01',3860,584,'2005-06-02 08:19:01',2,'2006-02-15 21:30:53'), - (921,'2005-05-30 11:53:09',1827,508,'2005-06-03 10:00:09',2,'2006-02-15 21:30:53'), - (922,'2005-05-30 11:55:55',2442,550,'2005-06-08 10:12:55',2,'2006-02-15 21:30:53'), - (923,'2005-05-30 11:58:50',1884,37,'2005-06-05 09:57:50',1,'2006-02-15 21:30:53'), - (924,'2005-05-30 12:10:59',3279,293,'2005-06-04 17:28:59',1,'2006-02-15 21:30:53'), - (925,'2005-05-30 12:13:52',3203,137,'2005-06-02 14:41:52',2,'2006-02-15 21:30:53'), - (926,'2005-05-30 12:15:54',4327,76,'2005-06-01 08:53:54',2,'2006-02-15 21:30:53'), - (927,'2005-05-30 12:16:40',1158,167,'2005-05-31 16:20:40',2,'2006-02-15 21:30:53'), - (928,'2005-05-30 12:27:14',246,79,'2005-06-05 13:56:14',2,'2006-02-15 21:30:53'), - (929,'2005-05-30 12:32:39',4296,536,'2005-06-06 12:17:39',1,'2006-02-15 21:30:53'), - (930,'2005-05-30 12:44:57',2835,141,'2005-06-04 10:53:57',2,'2006-02-15 21:30:53'), - (931,'2005-05-30 12:53:01',3384,421,'2005-05-31 14:28:01',1,'2006-02-15 21:30:53'), - (932,'2005-05-30 12:55:36',719,198,'2005-05-31 10:30:36',2,'2006-02-15 21:30:53'), - (933,'2005-05-30 13:08:45',3672,66,'2005-06-01 18:56:45',1,'2006-02-15 21:30:53'), - (934,'2005-05-30 13:24:46',3595,60,'2005-06-08 16:44:46',2,'2006-02-15 21:30:53'), - (935,'2005-05-30 13:29:36',2421,256,'2005-06-02 11:08:36',1,'2006-02-15 21:30:53'), - (936,'2005-05-30 13:52:49',901,469,'2005-06-07 16:56:49',1,'2006-02-15 21:30:53'), - (937,'2005-05-30 14:47:31',1054,304,'2005-06-05 09:53:31',2,'2006-02-15 21:30:53'), - (938,'2005-05-30 14:47:31',1521,46,'2005-06-04 10:10:31',2,'2006-02-15 21:30:53'), - (939,'2005-05-30 14:49:34',1314,367,'2005-06-01 19:00:34',1,'2006-02-15 21:30:53'), - (940,'2005-05-30 15:01:02',1278,534,'2005-06-01 18:26:02',1,'2006-02-15 21:30:53'), - (941,'2005-05-30 15:02:25',3630,562,'2005-06-01 17:19:25',1,'2006-02-15 21:30:53'), - (942,'2005-05-30 15:05:47',4279,473,'2005-06-08 15:59:47',2,'2006-02-15 21:30:53'), - (943,'2005-05-30 15:20:19',3737,57,'2005-06-06 18:53:19',1,'2006-02-15 21:30:53'), - (944,'2005-05-30 15:26:24',151,131,'2005-06-07 18:09:24',2,'2006-02-15 21:30:53'), - (945,'2005-05-30 15:33:17',1441,357,'2005-06-02 15:02:17',2,'2006-02-15 21:30:53'), - (946,'2005-05-30 15:35:08',1264,486,'2005-06-08 11:38:08',1,'2006-02-15 21:30:53'), - (947,'2005-05-30 15:36:57',4478,62,'2005-06-04 18:48:57',1,'2006-02-15 21:30:53'), - (948,'2005-05-30 15:44:27',585,245,'2005-06-08 17:30:27',2,'2006-02-15 21:30:53'), - (949,'2005-05-30 15:50:39',2202,368,'2005-06-03 14:25:39',1,'2006-02-15 21:30:53'), - (950,'2005-05-30 16:06:08',491,83,'2005-06-01 11:43:08',1,'2006-02-15 21:30:53'), - (951,'2005-05-30 16:10:35',1395,59,'2005-05-31 19:01:35',2,'2006-02-15 21:30:53'), - (952,'2005-05-30 16:28:07',4389,311,'2005-06-02 16:12:07',2,'2006-02-15 21:30:53'), - (953,'2005-05-30 16:34:02',2194,210,'2005-05-31 20:34:02',1,'2006-02-15 21:30:53'), - (954,'2005-05-30 16:57:29',1231,297,'2005-06-08 13:30:29',2,'2006-02-15 21:30:53'), - (955,'2005-05-30 16:59:03',4140,301,'2005-05-31 11:58:03',2,'2006-02-15 21:30:53'), - (956,'2005-05-30 17:30:28',647,296,'2005-06-07 13:54:28',2,'2006-02-15 21:30:53'), - (957,'2005-05-30 17:53:29',4428,440,'2005-06-03 15:31:29',2,'2006-02-15 21:30:53'), - (958,'2005-05-30 17:58:03',548,186,'2005-06-01 19:17:03',2,'2006-02-15 21:30:53'), - (959,'2005-05-30 18:07:00',3108,535,'2005-06-02 14:37:00',2,'2006-02-15 21:30:53'), - (960,'2005-05-30 18:13:23',1966,445,'2005-06-04 00:12:23',2,'2006-02-15 21:30:53'), - (961,'2005-05-30 18:16:44',3293,588,'2005-06-04 23:40:44',2,'2006-02-15 21:30:53'), - (962,'2005-05-30 18:45:17',4535,520,'2005-06-05 22:47:17',1,'2006-02-15 21:30:53'), - (963,'2005-05-30 18:52:53',1921,225,'2005-06-07 16:19:53',2,'2006-02-15 21:30:53'), - (964,'2005-05-30 18:53:21',657,287,'2005-06-04 22:32:21',2,'2006-02-15 21:30:53'), - (965,'2005-05-30 19:00:14',3363,502,'2005-05-31 17:10:14',2,'2006-02-15 21:30:53'), - (966,'2005-05-30 19:00:37',1294,496,'2005-05-31 23:51:37',1,'2006-02-15 21:30:53'), - (967,'2005-05-30 19:12:06',1954,330,'2005-06-09 00:02:06',2,'2006-02-15 21:30:53'), - (968,'2005-05-30 19:20:03',119,576,'2005-05-31 18:17:03',2,'2006-02-15 21:30:53'), - (969,'2005-05-30 19:23:48',443,551,'2005-05-31 21:14:48',1,'2006-02-15 21:30:53'), - (970,'2005-05-30 19:50:28',1520,307,'2005-06-09 01:19:28',1,'2006-02-15 21:30:53'), - (971,'2005-05-30 20:10:52',2911,561,'2005-06-06 20:47:52',1,'2006-02-15 21:30:53'), - (972,'2005-05-30 20:21:07',2,411,'2005-06-06 00:36:07',1,'2006-02-15 21:30:53'), - (973,'2005-05-30 20:27:45',1914,473,'2005-06-08 22:47:45',2,'2006-02-15 21:30:53'), - (974,'2005-05-30 20:28:42',2617,596,'2005-06-08 23:45:42',2,'2006-02-15 21:30:53'), - (975,'2005-05-30 21:07:15',3109,7,'2005-06-03 01:48:15',2,'2006-02-15 21:30:53'), - (976,'2005-05-30 21:11:19',2290,581,'2005-06-06 02:16:19',2,'2006-02-15 21:30:53'), - (977,'2005-05-30 21:22:26',2029,394,'2005-06-04 22:32:26',2,'2006-02-15 21:30:53'), - (978,'2005-05-30 21:30:52',407,154,'2005-06-07 16:22:52',1,'2006-02-15 21:30:53'), - (979,'2005-05-30 21:37:11',3917,279,'2005-06-08 00:24:11',2,'2006-02-15 21:30:53'), - (980,'2005-05-30 21:45:19',4169,273,'2005-06-01 20:32:19',1,'2006-02-15 21:30:53'), - (981,'2005-05-30 21:52:42',2913,326,'2005-06-01 03:15:42',2,'2006-02-15 21:30:53'), - (982,'2005-05-30 22:15:24',3560,524,'2005-06-02 16:18:24',1,'2006-02-15 21:30:53'), - (983,'2005-05-30 22:15:51',63,115,'2005-06-02 22:56:51',1,'2006-02-15 21:30:53'), - (984,'2005-05-30 22:17:17',2305,262,'2005-06-01 20:15:17',2,'2006-02-15 21:30:53'), - (985,'2005-05-30 22:18:35',1573,564,'2005-06-04 23:36:35',1,'2006-02-15 21:30:53'), - (986,'2005-05-30 22:22:52',4045,253,'2005-06-01 02:24:52',1,'2006-02-15 21:30:53'), - (987,'2005-05-30 22:59:12',390,11,'2005-06-07 20:56:12',1,'2006-02-15 21:30:53'), - (988,'2005-05-30 23:08:03',1364,12,'2005-06-07 00:22:03',1,'2006-02-15 21:30:53'), - (989,'2005-05-30 23:11:51',4388,83,'2005-06-03 20:36:51',2,'2006-02-15 21:30:53'), - (990,'2005-05-30 23:25:14',4171,311,'2005-06-06 18:41:14',2,'2006-02-15 21:30:53'), - (991,'2005-05-30 23:29:22',2863,593,'2005-06-07 23:16:22',1,'2006-02-15 21:30:53'), - (992,'2005-05-30 23:47:56',3572,123,'2005-06-05 19:01:56',1,'2006-02-15 21:30:53'), - (993,'2005-05-30 23:54:19',2080,513,'2005-06-04 21:27:19',1,'2006-02-15 21:30:53'), - (994,'2005-05-30 23:55:36',2798,472,'2005-06-04 01:00:36',2,'2006-02-15 21:30:53'), - (995,'2005-05-31 00:06:02',17,150,'2005-06-06 02:30:02',2,'2006-02-15 21:30:53'), - (996,'2005-05-31 00:06:20',2075,331,'2005-05-31 21:29:20',2,'2006-02-15 21:30:53'), - (997,'2005-05-31 00:08:25',4243,216,'2005-06-02 00:17:25',2,'2006-02-15 21:30:53'), - (998,'2005-05-31 00:16:57',3395,389,'2005-06-01 22:41:57',1,'2006-02-15 21:30:53'), - (999,'2005-05-31 00:25:10',4433,413,'2005-06-03 06:05:10',2,'2006-02-15 21:30:53'), - (1000,'2005-05-31 00:25:56',1774,332,'2005-06-08 19:42:56',2,'2006-02-15 21:30:53'), - (1001,'2005-05-31 00:46:31',1498,64,'2005-06-06 06:14:31',2,'2006-02-15 21:30:53'), - (1002,'2005-05-31 00:47:56',709,397,'2005-06-06 19:51:56',1,'2006-02-15 21:30:53'), - (1003,'2005-05-31 00:48:20',133,161,'2005-06-02 04:53:20',2,'2006-02-15 21:30:53'), - (1004,'2005-05-31 00:48:36',1588,565,'2005-06-01 20:56:36',1,'2006-02-15 21:30:53'), - (1005,'2005-05-31 00:53:25',4006,551,'2005-06-04 01:21:25',2,'2006-02-15 21:30:53'), - (1006,'2005-05-31 00:57:08',3461,222,'2005-06-02 22:35:08',1,'2006-02-15 21:30:53'), - (1007,'2005-05-31 01:02:28',3185,24,'2005-06-07 01:36:28',2,'2006-02-15 21:30:53'), - (1008,'2005-05-31 01:18:56',914,599,'2005-06-01 01:24:56',2,'2006-02-15 21:30:53'), - (1009,'2005-05-31 01:47:35',2523,485,'2005-06-03 20:26:35',1,'2006-02-15 21:30:53'), - (1010,'2005-05-31 01:57:32',4038,49,'2005-06-01 06:50:32',2,'2006-02-15 21:30:53'), - (1011,'2005-05-31 02:05:39',118,164,'2005-06-04 21:27:39',2,'2006-02-15 21:30:53'), - (1012,'2005-05-31 02:18:05',688,291,'2005-06-03 06:47:05',1,'2006-02-15 21:30:53'), - (1013,'2005-05-31 02:37:00',4522,384,'2005-06-02 06:39:00',2,'2006-02-15 21:30:53'), - (1014,'2005-05-31 02:39:16',766,280,'2005-06-01 06:03:16',2,'2006-02-15 21:30:53'), - (1015,'2005-05-31 02:44:57',3702,526,'2005-06-07 23:01:57',2,'2006-02-15 21:30:53'), - (1016,'2005-05-31 02:49:43',3423,204,'2005-06-04 03:48:43',1,'2006-02-15 21:30:53'), - (1017,'2005-05-31 02:53:36',1242,16,'2005-06-03 05:04:36',1,'2006-02-15 21:30:53'), - (1018,'2005-05-31 02:53:42',1930,594,'2005-06-03 00:47:42',2,'2006-02-15 21:30:53'), - (1019,'2005-05-31 03:05:07',3975,279,'2005-06-03 08:34:07',1,'2006-02-15 21:30:53'), - (1020,'2005-05-31 03:06:08',3402,138,'2005-06-02 08:57:08',2,'2006-02-15 21:30:53'), - (1021,'2005-05-31 03:16:15',2724,541,'2005-06-08 06:43:15',2,'2006-02-15 21:30:53'), - (1022,'2005-05-31 03:16:45',842,239,'2005-06-08 09:04:45',1,'2006-02-15 21:30:53'), - (1023,'2005-05-31 03:26:50',2483,227,'2005-06-05 08:19:50',2,'2006-02-15 21:30:53'), - (1024,'2005-05-31 03:30:19',2310,457,'2005-06-09 05:52:19',2,'2006-02-15 21:30:53'), - (1025,'2005-05-31 03:41:37',1618,93,'2005-06-08 07:05:37',2,'2006-02-15 21:30:53'), - (1026,'2005-05-31 03:45:26',632,107,'2005-06-06 22:30:26',2,'2006-02-15 21:30:53'), - (1027,'2005-05-31 03:46:19',2718,55,'2005-06-09 03:50:19',1,'2006-02-15 21:30:53'), - (1028,'2005-05-31 03:48:05',4479,51,'2005-06-01 03:51:05',1,'2006-02-15 21:30:53'), - (1029,'2005-05-31 03:52:02',2082,50,'2005-06-06 08:10:02',1,'2006-02-15 21:30:53'), - (1030,'2005-05-31 04:06:47',3948,267,'2005-06-02 02:59:47',1,'2006-02-15 21:30:53'), - (1031,'2005-05-31 04:23:01',917,416,'2005-06-06 08:35:01',1,'2006-02-15 21:30:53'), - (1032,'2005-05-31 04:28:43',2937,236,'2005-06-02 02:00:43',2,'2006-02-15 21:30:53'), - (1033,'2005-05-31 04:50:07',14,25,'2005-06-02 01:53:07',1,'2006-02-15 21:30:53'), - (1034,'2005-05-31 04:53:40',4117,293,'2005-06-09 08:25:40',2,'2006-02-15 21:30:53'), - (1035,'2005-05-31 05:01:09',949,362,'2005-06-02 03:59:09',1,'2006-02-15 21:30:53'), - (1036,'2005-05-31 05:21:10',2164,438,'2005-06-04 04:19:10',1,'2006-02-15 21:30:53'), - (1037,'2005-05-31 05:22:25',810,569,'2005-06-09 04:52:25',1,'2006-02-15 21:30:53'), - (1038,'2005-05-31 05:23:47',1253,385,'2005-06-02 03:57:47',2,'2006-02-15 21:30:53'), - (1039,'2005-05-31 05:32:29',2479,124,'2005-06-01 06:04:29',2,'2006-02-15 21:30:53'), - (1040,'2005-05-31 05:35:16',2546,270,'2005-06-09 04:14:16',1,'2006-02-15 21:30:53'), - (1041,'2005-05-31 05:46:23',4432,272,'2005-06-06 09:50:23',2,'2006-02-15 21:30:53'), - (1042,'2005-05-31 05:53:00',3155,506,'2005-06-01 05:24:00',1,'2006-02-15 21:30:53'), - (1043,'2005-05-31 06:11:40',2322,412,'2005-06-08 09:15:40',2,'2006-02-15 21:30:53'), - (1044,'2005-05-31 06:24:44',2574,70,'2005-06-03 04:51:44',1,'2006-02-15 21:30:53'), - (1045,'2005-05-31 06:29:01',3470,594,'2005-06-09 04:31:01',1,'2006-02-15 21:30:53'), - (1046,'2005-05-31 06:42:30',468,179,'2005-06-03 04:33:30',2,'2006-02-15 21:30:53'), - (1047,'2005-05-31 06:45:57',1366,72,'2005-06-04 09:49:57',2,'2006-02-15 21:30:53'), - (1048,'2005-05-31 06:49:53',2811,55,'2005-06-02 11:33:53',1,'2006-02-15 21:30:53'), - (1049,'2005-05-31 06:57:04',3913,312,'2005-06-02 11:32:04',2,'2006-02-15 21:30:53'), - (1050,'2005-05-31 07:01:27',726,303,'2005-06-03 07:50:27',2,'2006-02-15 21:30:53'), - (1051,'2005-05-31 07:02:09',1025,246,'2005-06-03 01:32:09',1,'2006-02-15 21:30:53'), - (1052,'2005-05-31 07:07:03',2157,156,'2005-06-05 09:38:03',1,'2006-02-15 21:30:53'), - (1053,'2005-05-31 07:12:44',3734,196,'2005-06-04 12:33:44',1,'2006-02-15 21:30:53'), - (1054,'2005-05-31 07:33:25',1575,126,'2005-06-02 01:40:25',2,'2006-02-15 21:30:53'), - (1055,'2005-05-31 07:47:18',1639,108,'2005-06-03 01:57:18',1,'2006-02-15 21:30:53'), - (1056,'2005-05-31 07:48:07',1591,519,'2005-06-05 08:51:07',2,'2006-02-15 21:30:53'), - (1057,'2005-05-31 07:58:06',497,124,'2005-06-06 03:21:06',1,'2006-02-15 21:30:53'), - (1058,'2005-05-31 08:04:17',40,116,'2005-06-03 11:12:17',2,'2006-02-15 21:30:53'), - (1059,'2005-05-31 08:20:43',3041,241,'2005-06-04 09:05:43',2,'2006-02-15 21:30:53'), - (1060,'2005-05-31 08:21:43',2676,570,'2005-06-09 04:02:43',2,'2006-02-15 21:30:53'), - (1061,'2005-05-31 08:27:58',965,109,'2005-06-07 02:34:58',1,'2006-02-15 21:30:53'), - (1062,'2005-05-31 08:38:20',2223,176,'2005-06-09 08:23:20',2,'2006-02-15 21:30:53'), - (1063,'2005-05-31 08:44:29',2484,7,'2005-06-09 08:00:29',1,'2006-02-15 21:30:53'), - (1064,'2005-05-31 08:50:07',2373,460,'2005-06-02 14:47:07',2,'2006-02-15 21:30:53'), - (1065,'2005-05-31 08:54:56',3379,316,'2005-06-08 09:21:56',1,'2006-02-15 21:30:53'), - (1066,'2005-05-31 09:07:33',2383,541,'2005-06-09 05:34:33',2,'2006-02-15 21:30:53'), - (1067,'2005-05-31 09:12:13',2345,32,'2005-06-01 06:15:13',1,'2006-02-15 21:30:53'), - (1068,'2005-05-31 09:32:15',150,443,'2005-06-01 11:20:15',1,'2006-02-15 21:30:53'), - (1069,'2005-05-31 09:32:31',3057,251,'2005-06-08 10:19:31',2,'2006-02-15 21:30:53'), - (1070,'2005-05-31 09:39:56',3170,228,'2005-06-05 10:23:56',1,'2006-02-15 21:30:53'), - (1071,'2005-05-31 09:48:56',469,174,'2005-06-02 03:52:56',2,'2006-02-15 21:30:53'), - (1072,'2005-05-31 09:52:50',2557,272,'2005-06-05 05:39:50',1,'2006-02-15 21:30:53'), - (1073,'2005-05-31 09:55:04',522,146,'2005-06-07 03:55:04',1,'2006-02-15 21:30:53'), - (1074,'2005-05-31 10:04:42',2508,503,'2005-06-02 15:27:42',2,'2006-02-15 21:30:53'), - (1075,'2005-05-31 10:13:34',2279,9,'2005-06-09 08:11:34',1,'2006-02-15 21:30:53'), - (1076,'2005-05-31 10:14:31',2551,214,'2005-06-05 10:13:31',2,'2006-02-15 21:30:53'), - (1077,'2005-05-31 10:22:54',1986,24,'2005-06-02 12:21:54',1,'2006-02-15 21:30:53'), - (1078,'2005-05-31 10:28:33',3682,230,'2005-06-03 14:45:33',2,'2006-02-15 21:30:53'), - (1079,'2005-05-31 10:48:17',268,312,'2005-06-08 12:30:17',1,'2006-02-15 21:30:53'), - (1080,'2005-05-31 10:55:26',3491,215,'2005-06-03 13:13:26',2,'2006-02-15 21:30:53'), - (1081,'2005-05-31 10:56:32',4524,404,'2005-06-06 11:31:32',1,'2006-02-15 21:30:53'), - (1082,'2005-05-31 11:02:01',4510,239,'2005-06-05 08:43:01',1,'2006-02-15 21:30:53'), - (1083,'2005-05-31 11:04:48',2393,556,'2005-06-05 13:32:48',1,'2006-02-15 21:30:53'), - (1084,'2005-05-31 11:10:17',4577,12,'2005-06-01 11:15:17',1,'2006-02-15 21:30:53'), - (1085,'2005-05-31 11:15:43',301,5,'2005-06-07 12:02:43',1,'2006-02-15 21:30:53'), - (1086,'2005-05-31 11:17:37',2909,549,'2005-06-06 13:58:37',2,'2006-02-15 21:30:53'), - (1087,'2005-05-31 11:18:08',431,169,'2005-06-04 08:33:08',1,'2006-02-15 21:30:53'), - (1088,'2005-05-31 11:35:13',3988,356,'2005-06-06 16:01:13',2,'2006-02-15 21:30:53'), - (1089,'2005-05-31 11:38:29',3784,367,'2005-06-02 08:06:29',1,'2006-02-15 21:30:53'), - (1090,'2005-05-31 12:03:44',3329,23,'2005-06-02 15:54:44',2,'2006-02-15 21:30:53'), - (1091,'2005-05-31 12:11:04',3853,251,'2005-06-04 11:42:04',1,'2006-02-15 21:30:53'), - (1092,'2005-05-31 12:15:57',4412,278,'2005-06-03 15:39:57',2,'2006-02-15 21:30:53'), - (1093,'2005-05-31 12:32:26',2189,214,'2005-06-03 07:51:26',2,'2006-02-15 21:30:53'), - (1094,'2005-05-31 13:03:49',3810,547,'2005-06-05 14:30:49',2,'2006-02-15 21:30:53'), - (1095,'2005-05-31 13:15:41',4546,252,'2005-06-05 12:10:41',1,'2006-02-15 21:30:53'), - (1096,'2005-05-31 13:30:49',1066,271,'2005-06-09 13:53:49',1,'2006-02-15 21:30:53'), - (1097,'2005-05-31 13:38:42',2285,491,'2005-06-01 13:54:42',2,'2006-02-15 21:30:53'), - (1098,'2005-05-31 13:51:48',1050,425,'2005-06-09 18:42:48',2,'2006-02-15 21:30:53'), - (1099,'2005-05-31 13:54:48',924,269,'2005-06-05 13:04:48',2,'2006-02-15 21:30:53'), - (1100,'2005-05-31 14:03:21',316,497,'2005-06-06 16:08:21',1,'2006-02-15 21:30:53'), - (1101,'2005-05-31 14:13:59',1174,260,'2005-06-07 15:49:59',1,'2006-02-15 21:30:53'), - (1102,'2005-05-31 14:20:29',2052,115,'2005-06-04 17:38:29',2,'2006-02-15 21:30:53'), - (1103,'2005-05-31 14:24:18',3154,353,'2005-06-09 10:27:18',1,'2006-02-15 21:30:53'), - (1104,'2005-05-31 14:30:01',1619,466,'2005-06-05 12:07:01',1,'2006-02-15 21:30:53'), - (1105,'2005-05-31 14:33:56',1708,26,'2005-06-07 11:30:56',1,'2006-02-15 21:30:53'), - (1106,'2005-05-31 14:36:52',4185,109,'2005-06-01 14:33:52',2,'2006-02-15 21:30:53'), - (1107,'2005-05-31 15:04:05',3449,53,'2005-06-07 16:42:05',2,'2006-02-15 21:30:53'), - (1108,'2005-05-31 15:05:12',2562,254,'2005-06-09 19:48:12',2,'2006-02-15 21:30:53'), - (1109,'2005-05-31 15:12:15',2031,481,'2005-06-09 16:21:15',1,'2006-02-15 21:30:53'), - (1110,'2005-05-31 15:22:51',2085,355,'2005-06-07 14:32:51',1,'2006-02-15 21:30:53'), - (1111,'2005-05-31 15:24:19',1137,300,'2005-06-08 21:18:19',1,'2006-02-15 21:30:53'), - (1112,'2005-05-31 15:51:39',2453,214,'2005-06-03 14:04:39',1,'2006-02-15 21:30:53'), - (1113,'2005-05-31 15:58:44',2078,451,'2005-06-05 18:05:44',2,'2006-02-15 21:30:53'), - (1114,'2005-05-31 16:00:33',2287,117,'2005-06-01 19:05:33',1,'2006-02-15 21:30:53'), - (1115,'2005-05-31 16:07:09',2140,109,'2005-06-04 18:51:09',1,'2006-02-15 21:30:53'), - (1116,'2005-05-31 16:10:46',1356,256,'2005-06-01 20:27:46',2,'2006-02-15 21:30:53'), - (1117,'2005-05-31 16:15:31',4125,189,'2005-06-04 17:20:31',1,'2006-02-15 21:30:53'), - (1118,'2005-05-31 16:23:02',213,510,'2005-06-03 20:00:02',1,'2006-02-15 21:30:53'), - (1119,'2005-05-31 16:34:27',4401,469,'2005-06-02 10:54:27',1,'2006-02-15 21:30:53'), - (1120,'2005-05-31 16:37:14',2897,361,'2005-06-04 12:53:14',1,'2006-02-15 21:30:53'), - (1121,'2005-05-31 16:37:36',1691,74,'2005-06-06 21:02:36',1,'2006-02-15 21:30:53'), - (1122,'2005-05-31 16:39:33',1392,180,'2005-06-04 17:25:33',1,'2006-02-15 21:30:53'), - (1123,'2005-05-31 16:48:43',142,448,'2005-06-02 19:17:43',2,'2006-02-15 21:30:53'), - (1124,'2005-05-31 16:49:34',4560,134,'2005-06-04 19:32:34',2,'2006-02-15 21:30:53'), - (1125,'2005-05-31 17:23:44',1172,234,'2005-06-01 15:02:44',1,'2006-02-15 21:30:53'), - (1126,'2005-05-31 17:27:45',2765,431,'2005-06-04 20:06:45',2,'2006-02-15 21:30:53'), - (1127,'2005-05-31 17:45:49',2412,387,'2005-06-08 22:41:49',2,'2006-02-15 21:30:53'), - (1128,'2005-05-31 17:49:26',1496,311,'2005-06-05 19:51:26',2,'2006-02-15 21:30:53'), - (1129,'2005-05-31 18:00:48',386,486,'2005-06-04 23:05:48',1,'2006-02-15 21:30:53'), - (1130,'2005-05-31 18:13:57',3186,124,'2005-06-06 22:50:57',2,'2006-02-15 21:30:53'), - (1131,'2005-05-31 18:44:19',2654,128,'2005-06-01 20:13:19',1,'2006-02-15 21:30:53'), - (1132,'2005-05-31 18:44:53',1763,198,'2005-06-07 22:02:53',2,'2006-02-15 21:30:53'), - (1133,'2005-05-31 19:12:21',4271,73,'2005-06-02 20:12:21',1,'2006-02-15 21:30:53'), - (1134,'2005-05-31 19:14:15',143,191,'2005-06-02 17:13:15',2,'2006-02-15 21:30:53'), - (1135,'2005-05-31 19:15:11',3118,122,'2005-06-01 14:44:11',2,'2006-02-15 21:30:53'), - (1136,'2005-05-31 19:19:36',3963,50,'2005-06-09 16:04:36',2,'2006-02-15 21:30:53'), - (1137,'2005-05-31 19:20:14',3259,351,'2005-06-07 16:10:14',1,'2006-02-15 21:30:53'), - (1138,'2005-05-31 19:30:27',3944,438,'2005-06-05 21:42:27',1,'2006-02-15 21:30:53'), - (1139,'2005-05-31 19:34:52',666,562,'2005-06-06 17:40:52',1,'2006-02-15 21:30:53'), - (1140,'2005-05-31 19:36:30',3731,10,'2005-06-07 18:33:30',2,'2006-02-15 21:30:53'), - (1141,'2005-05-31 19:42:02',4128,217,'2005-06-07 00:59:02',2,'2006-02-15 21:30:53'), - (1142,'2005-05-31 19:46:38',3998,5,'2005-06-05 14:03:38',1,'2006-02-15 21:30:53'), - (1143,'2005-05-31 19:53:03',2632,209,'2005-06-06 20:56:03',2,'2006-02-15 21:30:53'), - (1144,'2005-05-31 20:04:10',2450,207,'2005-06-09 16:34:10',1,'2006-02-15 21:30:53'), - (1145,'2005-05-31 20:13:45',1133,284,'2005-06-08 02:10:45',1,'2006-02-15 21:30:53'), - (1146,'2005-05-31 20:34:45',3134,250,'2005-06-03 18:12:45',2,'2006-02-15 21:30:53'), - (1147,'2005-05-31 20:37:52',622,259,'2005-06-06 19:23:52',2,'2006-02-15 21:30:53'), - (1148,'2005-05-31 20:38:40',3307,235,'2005-06-02 18:35:40',2,'2006-02-15 21:30:53'), - (1149,'2005-05-31 21:03:17',352,326,'2005-06-08 19:58:17',2,'2006-02-15 21:30:53'), - (1150,'2005-05-31 21:20:09',1632,136,'2005-06-03 19:15:09',2,'2006-02-15 21:30:53'), - (1151,'2005-05-31 21:29:00',1281,581,'2005-06-03 23:24:00',1,'2006-02-15 21:30:53'), - (1152,'2005-05-31 21:32:17',210,191,'2005-06-04 21:07:17',2,'2006-02-15 21:30:53'), - (1153,'2005-05-31 21:36:44',2725,506,'2005-06-10 01:26:44',2,'2006-02-15 21:30:53'), - (1154,'2005-05-31 21:42:09',2732,59,'2005-06-08 16:40:09',1,'2006-02-15 21:30:53'), - (1155,'2005-05-31 22:17:11',2048,251,'2005-06-04 20:27:11',2,'2006-02-15 21:30:53'), - (1156,'2005-05-31 22:37:34',460,106,'2005-06-01 23:02:34',2,'2006-02-15 21:30:53'), - (1157,'2005-05-31 22:47:45',1449,61,'2005-06-02 18:01:45',1,'2006-02-15 21:30:53'), - (1158,'2005-06-14 22:53:33',1632,416,'2005-06-18 21:37:33',2,'2006-02-15 21:30:53'), - (1159,'2005-06-14 22:55:13',4395,516,'2005-06-17 02:11:13',1,'2006-02-15 21:30:53'), - (1160,'2005-06-14 23:00:34',2795,239,'2005-06-18 01:58:34',2,'2006-02-15 21:30:53'), - (1161,'2005-06-14 23:07:08',1690,285,'2005-06-21 17:12:08',1,'2006-02-15 21:30:53'), - (1162,'2005-06-14 23:09:38',987,310,'2005-06-23 22:00:38',1,'2006-02-15 21:30:53'), - (1163,'2005-06-14 23:12:46',4209,592,'2005-06-23 21:53:46',1,'2006-02-15 21:30:53'), - (1164,'2005-06-14 23:16:26',3691,49,'2005-06-16 21:00:26',1,'2006-02-15 21:30:53'), - (1165,'2005-06-14 23:16:27',2855,264,'2005-06-20 02:40:27',2,'2006-02-15 21:30:53'), - (1166,'2005-06-14 23:17:03',2508,46,'2005-06-15 20:43:03',1,'2006-02-15 21:30:53'), - (1167,'2005-06-14 23:25:58',4021,323,'2005-06-18 05:18:58',2,'2006-02-15 21:30:53'), - (1168,'2005-06-14 23:35:09',4368,481,'2005-06-19 03:20:09',1,'2006-02-15 21:30:53'), - (1169,'2005-06-14 23:42:56',1062,139,'2005-06-16 04:02:56',2,'2006-02-15 21:30:53'), - (1170,'2005-06-14 23:47:35',2444,595,'2005-06-17 05:28:35',2,'2006-02-15 21:30:53'), - (1171,'2005-06-14 23:50:11',4082,284,'2005-06-17 21:44:11',2,'2006-02-15 21:30:53'), - (1172,'2005-06-14 23:54:34',2685,306,'2005-06-16 02:26:34',1,'2006-02-15 21:30:53'), - (1173,'2005-06-14 23:54:46',1050,191,'2005-06-19 23:26:46',2,'2006-02-15 21:30:53'), - (1174,'2005-06-15 00:12:51',2653,95,'2005-06-21 02:10:51',2,'2006-02-15 21:30:53'), - (1175,'2005-06-15 00:15:15',3255,197,'2005-06-20 19:23:15',2,'2006-02-15 21:30:53'), - (1176,'2005-06-15 00:28:37',2715,512,'2005-06-21 21:42:37',1,'2006-02-15 21:30:53'), - (1177,'2005-06-15 00:33:04',1897,210,'2005-06-16 03:47:04',2,'2006-02-15 21:30:53'), - (1178,'2005-06-15 00:36:40',2553,279,'2005-06-21 00:27:40',2,'2006-02-15 21:30:53'), - (1179,'2005-06-15 00:36:50',816,119,'2005-06-22 22:09:50',1,'2006-02-15 21:30:53'), - (1180,'2005-06-15 00:39:01',3119,432,'2005-06-21 22:44:01',2,'2006-02-15 21:30:53'), - (1181,'2005-06-15 00:42:17',2973,546,'2005-06-19 03:36:17',2,'2006-02-15 21:30:53'), - (1182,'2005-06-15 00:45:21',1061,196,'2005-06-22 03:52:21',1,'2006-02-15 21:30:53'), - (1183,'2005-06-15 00:49:19',706,329,'2005-06-20 04:33:19',1,'2006-02-15 21:30:53'), - (1184,'2005-06-15 00:49:36',473,295,'2005-06-22 23:39:36',2,'2006-02-15 21:30:53'), - (1185,'2005-06-15 00:54:12',2785,1,'2005-06-23 02:42:12',2,'2006-02-15 21:30:53'), - (1186,'2005-06-15 00:56:45',1556,368,'2005-06-16 02:23:45',1,'2006-02-15 21:30:53'), - (1187,'2005-06-15 00:58:50',1108,334,'2005-06-23 02:19:50',1,'2006-02-15 21:30:53'), - (1188,'2005-06-15 01:04:07',246,173,'2005-06-19 03:48:07',1,'2006-02-15 21:30:53'), - (1189,'2005-06-15 01:04:22',142,244,'2005-06-24 06:48:22',1,'2006-02-15 21:30:53'), - (1190,'2005-06-15 01:05:32',2572,370,'2005-06-23 02:34:32',2,'2006-02-15 21:30:53'), - (1191,'2005-06-15 01:10:35',2221,291,'2005-06-17 20:36:35',2,'2006-02-15 21:30:53'), - (1192,'2005-06-15 01:18:39',4134,186,'2005-06-19 22:46:39',1,'2006-02-15 21:30:53'), - (1193,'2005-06-15 01:24:20',4504,561,'2005-06-21 02:29:20',2,'2006-02-15 21:30:53'), - (1194,'2005-06-15 01:25:08',3774,402,'2005-06-21 01:16:08',2,'2006-02-15 21:30:53'), - (1195,'2005-06-15 01:37:38',2272,84,'2005-06-17 21:50:38',1,'2006-02-15 21:30:53'), - (1196,'2005-06-15 01:38:31',994,52,'2005-06-18 06:55:31',1,'2006-02-15 21:30:53'), - (1197,'2005-06-15 01:42:46',3812,349,'2005-06-20 00:22:46',1,'2006-02-15 21:30:53'), - (1198,'2005-06-15 01:48:58',1138,491,'2005-06-20 01:07:58',2,'2006-02-15 21:30:53'), - (1199,'2005-06-15 01:58:50',253,238,'2005-06-16 20:30:50',2,'2006-02-15 21:30:53'), - (1200,'2005-06-15 01:59:51',3329,516,'2005-06-21 21:33:51',1,'2006-02-15 21:30:53'), - (1201,'2005-06-15 02:06:28',2679,209,'2005-06-16 21:38:28',2,'2006-02-15 21:30:53'), - (1202,'2005-06-15 02:08:04',2821,451,'2005-06-16 21:56:04',1,'2006-02-15 21:30:53'), - (1203,'2005-06-15 02:09:02',2223,452,'2005-06-21 00:04:02',1,'2006-02-15 21:30:53'), - (1204,'2005-06-15 02:21:46',2450,249,'2005-06-20 07:14:46',2,'2006-02-15 21:30:53'), - (1205,'2005-06-15 02:25:56',470,340,'2005-06-22 23:19:56',1,'2006-02-15 21:30:53'), - (1206,'2005-06-15 02:27:07',1097,264,'2005-06-18 22:46:07',2,'2006-02-15 21:30:53'), - (1207,'2005-06-15 02:27:08',2277,430,'2005-06-19 08:18:08',2,'2006-02-15 21:30:53'), - (1208,'2005-06-15 02:30:03',750,376,'2005-06-18 00:04:03',1,'2006-02-15 21:30:53'), - (1209,'2005-06-15 02:31:12',1494,146,'2005-06-21 07:39:12',1,'2006-02-15 21:30:53'), - (1210,'2005-06-15 02:57:51',7,345,'2005-06-20 01:41:51',2,'2006-02-15 21:30:53'), - (1211,'2005-06-15 03:01:20',3360,122,'2005-06-18 07:52:20',2,'2006-02-15 21:30:53'), - (1212,'2005-06-15 03:03:33',3611,371,'2005-06-17 06:31:33',1,'2006-02-15 21:30:53'), - (1213,'2005-06-15 03:14:05',3191,94,'2005-06-15 21:41:05',2,'2006-02-15 21:30:53'), - (1214,'2005-06-15 03:18:40',4482,46,'2005-06-20 07:32:40',1,'2006-02-15 21:30:53'), - (1215,'2005-06-15 03:21:00',242,102,'2005-06-19 03:39:00',1,'2006-02-15 21:30:53'), - (1216,'2005-06-15 03:23:48',3973,100,'2005-06-18 03:35:48',1,'2006-02-15 21:30:53'), - (1217,'2005-06-15 03:24:14',600,203,'2005-06-18 22:37:14',2,'2006-02-15 21:30:53'), - (1218,'2005-06-15 03:24:44',239,371,'2005-06-21 22:45:44',2,'2006-02-15 21:30:53'), - (1219,'2005-06-15 03:25:59',3005,330,'2005-06-20 00:37:59',1,'2006-02-15 21:30:53'), - (1220,'2005-06-15 03:26:15',1621,290,'2005-06-23 08:17:15',1,'2006-02-15 21:30:53'), - (1221,'2005-06-15 03:35:16',2124,403,'2005-06-18 03:11:16',1,'2006-02-15 21:30:53'), - (1222,'2005-06-15 03:38:49',2799,168,'2005-06-17 22:30:49',1,'2006-02-15 21:30:53'), - (1223,'2005-06-15 03:38:53',1299,50,'2005-06-20 01:00:53',2,'2006-02-15 21:30:53'), - (1224,'2005-06-15 03:44:25',1572,369,'2005-06-17 03:49:25',2,'2006-02-15 21:30:53'), - (1225,'2005-06-15 03:45:35',1929,434,'2005-06-19 02:03:35',1,'2006-02-15 21:30:53'), - (1226,'2005-06-15 03:46:10',2290,409,'2005-06-23 02:00:10',1,'2006-02-15 21:30:53'), - (1227,'2005-06-15 03:50:03',654,428,'2005-06-21 23:48:03',2,'2006-02-15 21:30:53'), - (1228,'2005-06-15 03:50:36',4473,398,'2005-06-17 22:41:36',1,'2006-02-15 21:30:53'), - (1229,'2005-06-15 03:53:13',2140,468,'2005-06-18 04:09:13',1,'2006-02-15 21:30:53'), - (1230,'2005-06-15 04:04:09',2324,447,'2005-06-16 02:21:09',1,'2006-02-15 21:30:53'), - (1231,'2005-06-15 04:04:41',3003,302,'2005-06-20 23:52:41',2,'2006-02-15 21:30:53'), - (1232,'2005-06-15 04:18:10',2743,391,'2005-06-17 06:02:10',2,'2006-02-15 21:30:53'), - (1233,'2005-06-15 04:18:37',4214,550,'2005-06-22 03:36:37',1,'2006-02-15 21:30:53'), - (1234,'2005-06-15 04:21:52',709,529,'2005-06-22 03:25:52',1,'2006-02-15 21:30:53'), - (1235,'2005-06-15 04:31:28',1000,255,'2005-06-22 10:08:28',1,'2006-02-15 21:30:53'), - (1236,'2005-06-15 04:34:27',3182,66,'2005-06-18 08:15:27',1,'2006-02-15 21:30:53'), - (1237,'2005-06-15 04:44:10',3249,49,'2005-06-23 07:00:10',2,'2006-02-15 21:30:53'), - (1238,'2005-06-15 04:49:08',3534,205,'2005-06-20 00:06:08',1,'2006-02-15 21:30:53'), - (1239,'2005-06-15 04:53:01',3731,444,'2005-06-16 07:03:01',1,'2006-02-15 21:30:53'), - (1240,'2005-06-15 04:58:07',3841,28,'2005-06-17 23:56:07',1,'2006-02-15 21:30:53'), - (1241,'2005-06-15 04:59:43',4377,62,'2005-06-24 03:32:43',2,'2006-02-15 21:30:53'), - (1242,'2005-06-15 05:05:07',821,141,'2005-06-22 04:57:07',1,'2006-02-15 21:30:53'), - (1243,'2005-06-15 05:07:32',2629,107,'2005-06-21 08:17:32',2,'2006-02-15 21:30:53'), - (1244,'2005-06-15 05:08:40',1026,515,'2005-06-20 10:41:40',1,'2006-02-15 21:30:53'), - (1245,'2005-06-15 05:09:01',1314,234,'2005-06-22 06:55:01',2,'2006-02-15 21:30:53'), - (1246,'2005-06-15 05:11:19',431,357,'2005-06-21 02:21:19',1,'2006-02-15 21:30:53'), - (1247,'2005-06-15 05:16:40',4049,287,'2005-06-23 11:01:40',1,'2006-02-15 21:30:53'), - (1248,'2005-06-15 05:33:52',3878,544,'2005-06-19 06:56:52',2,'2006-02-15 21:30:53'), - (1249,'2005-06-15 05:38:09',2120,403,'2005-06-22 10:29:09',1,'2006-02-15 21:30:53'), - (1250,'2005-06-15 05:55:40',4360,38,'2005-06-23 03:11:40',2,'2006-02-15 21:30:53'), - (1251,'2005-06-15 05:58:55',3307,442,'2005-06-23 02:45:55',2,'2006-02-15 21:30:53'), - (1252,'2005-06-15 06:05:18',1147,89,'2005-06-24 07:40:18',1,'2006-02-15 21:30:53'), - (1253,'2005-06-15 06:06:33',3242,498,'2005-06-21 04:13:33',2,'2006-02-15 21:30:53'), - (1254,'2005-06-15 06:11:16',3986,571,'2005-06-21 06:40:16',2,'2006-02-15 21:30:53'), - (1255,'2005-06-15 06:13:45',1433,526,'2005-06-16 03:59:45',2,'2006-02-15 21:30:53'), - (1256,'2005-06-15 06:13:57',1437,470,'2005-06-16 06:54:57',2,'2006-02-15 21:30:53'), - (1257,'2005-06-15 06:15:36',1938,267,'2005-06-21 01:04:36',2,'2006-02-15 21:30:53'), - (1258,'2005-06-15 06:21:30',4530,320,'2005-06-18 05:43:30',2,'2006-02-15 21:30:53'), - (1259,'2005-06-15 06:37:55',4460,570,'2005-06-23 04:02:55',2,'2006-02-15 21:30:53'), - (1260,'2005-06-15 06:42:25',330,586,'2005-06-16 10:44:25',2,'2006-02-15 21:30:53'), - (1261,'2005-06-15 06:52:57',2447,95,'2005-06-21 01:47:57',2,'2006-02-15 21:30:53'), - (1262,'2005-06-15 06:54:53',4495,236,'2005-06-22 08:09:53',2,'2006-02-15 21:30:53'), - (1263,'2005-06-15 06:56:39',4144,540,'2005-06-16 11:08:39',1,'2006-02-15 21:30:53'), - (1264,'2005-06-15 06:59:39',4176,439,'2005-06-18 08:10:39',2,'2006-02-15 21:30:53'), - (1265,'2005-06-15 07:00:50',982,163,'2005-06-19 12:27:50',1,'2006-02-15 21:30:53'), - (1266,'2005-06-15 07:11:39',2230,96,'2005-06-21 02:59:39',2,'2006-02-15 21:30:53'), - (1267,'2005-06-15 07:21:21',4246,509,'2005-06-17 08:12:21',2,'2006-02-15 21:30:53'), - (1268,'2005-06-15 07:29:30',3641,142,'2005-06-23 12:36:30',1,'2006-02-15 21:30:53'), - (1269,'2005-06-15 07:29:59',108,59,'2005-06-16 13:26:59',2,'2006-02-15 21:30:53'), - (1270,'2005-06-15 07:30:22',62,395,'2005-06-18 11:31:22',2,'2006-02-15 21:30:53'), - (1271,'2005-06-15 07:32:24',379,560,'2005-06-21 05:12:24',1,'2006-02-15 21:30:53'), - (1272,'2005-06-15 07:42:58',3128,135,'2005-06-18 12:00:58',1,'2006-02-15 21:30:53'), - (1273,'2005-06-15 07:52:35',361,530,'2005-06-21 04:55:35',1,'2006-02-15 21:30:53'), - (1274,'2005-06-15 07:52:52',2765,430,'2005-06-20 10:01:52',1,'2006-02-15 21:30:53'), - (1275,'2005-06-15 07:55:43',950,214,'2005-06-20 06:30:43',1,'2006-02-15 21:30:53'), - (1276,'2005-06-15 08:00:13',1508,388,'2005-06-24 02:55:13',2,'2006-02-15 21:30:53'), - (1277,'2005-06-15 08:01:29',76,464,'2005-06-22 07:16:29',2,'2006-02-15 21:30:53'), - (1278,'2005-06-15 08:09:12',4471,191,'2005-06-17 04:05:12',2,'2006-02-15 21:30:53'), - (1279,'2005-06-15 08:13:57',698,183,'2005-06-18 09:36:57',2,'2006-02-15 21:30:53'), - (1280,'2005-06-15 08:16:06',2597,266,'2005-06-21 04:10:06',2,'2006-02-15 21:30:53'), - (1281,'2005-06-15 08:21:39',2963,511,'2005-06-17 11:03:39',1,'2006-02-15 21:30:53'), - (1282,'2005-06-15 08:25:33',186,539,'2005-06-21 04:02:33',1,'2006-02-15 21:30:53'), - (1283,'2005-06-15 08:27:30',3177,470,'2005-06-16 09:46:30',2,'2006-02-15 21:30:53'), - (1284,'2005-06-15 08:27:33',1387,463,'2005-06-17 03:58:33',1,'2006-02-15 21:30:53'), - (1285,'2005-06-15 08:33:06',1054,254,'2005-06-19 07:36:06',1,'2006-02-15 21:30:53'), - (1286,'2005-06-15 08:41:13',774,179,'2005-06-23 13:13:13',2,'2006-02-15 21:30:53'), - (1287,'2005-06-15 08:41:38',4204,104,'2005-06-22 14:02:38',1,'2006-02-15 21:30:53'), - (1288,'2005-06-15 08:41:52',830,456,'2005-06-19 05:30:52',2,'2006-02-15 21:30:53'), - (1289,'2005-06-15 08:44:09',3154,522,'2005-06-21 06:04:09',1,'2006-02-15 21:30:53'), - (1290,'2005-06-15 08:52:44',1921,540,'2005-06-24 13:36:44',2,'2006-02-15 21:30:53'), - (1291,'2005-06-15 08:55:01',3090,176,'2005-06-24 04:22:01',1,'2006-02-15 21:30:53'), - (1292,'2005-06-15 09:03:52',4535,178,'2005-06-21 07:53:52',1,'2006-02-15 21:30:53'), - (1293,'2005-06-15 09:06:24',2882,127,'2005-06-18 06:58:24',1,'2006-02-15 21:30:53'), - (1294,'2005-06-15 09:09:27',339,327,'2005-06-19 04:43:27',1,'2006-02-15 21:30:53'), - (1295,'2005-06-15 09:17:20',2897,449,'2005-06-18 10:14:20',2,'2006-02-15 21:30:53'), - (1296,'2005-06-15 09:23:59',1760,200,'2005-06-19 03:44:59',2,'2006-02-15 21:30:53'), - (1297,'2005-06-15 09:31:28',1075,4,'2005-06-19 04:33:28',1,'2006-02-15 21:30:53'), - (1298,'2005-06-15 09:32:53',4163,334,'2005-06-16 12:40:53',2,'2006-02-15 21:30:53'), - (1299,'2005-06-15 09:34:50',1584,91,'2005-06-21 12:07:50',1,'2006-02-15 21:30:53'), - (1300,'2005-06-15 09:36:19',2524,186,'2005-06-17 13:54:19',2,'2006-02-15 21:30:53'), - (1301,'2005-06-15 09:46:33',1484,33,'2005-06-24 08:56:33',2,'2006-02-15 21:30:53'), - (1302,'2005-06-15 09:48:37',324,285,'2005-06-22 06:18:37',1,'2006-02-15 21:30:53'), - (1303,'2005-06-15 09:55:57',2001,365,'2005-06-20 14:26:57',2,'2006-02-15 21:30:53'), - (1304,'2005-06-15 09:56:02',1304,242,'2005-06-24 07:00:02',1,'2006-02-15 21:30:53'), - (1305,'2005-06-15 09:59:16',187,8,'2005-06-19 09:48:16',2,'2006-02-15 21:30:53'), - (1306,'2005-06-15 09:59:24',2132,524,'2005-06-19 09:37:24',2,'2006-02-15 21:30:53'), - (1307,'2005-06-15 10:06:15',368,507,'2005-06-20 04:50:15',2,'2006-02-15 21:30:53'), - (1308,'2005-06-15 10:07:48',220,236,'2005-06-24 15:24:48',1,'2006-02-15 21:30:53'), - (1309,'2005-06-15 10:10:49',2356,200,'2005-06-16 12:44:49',1,'2006-02-15 21:30:53'), - (1310,'2005-06-15 10:11:42',2045,27,'2005-06-16 15:00:42',1,'2006-02-15 21:30:53'), - (1311,'2005-06-15 10:11:59',3114,326,'2005-06-17 08:44:59',2,'2006-02-15 21:30:53'), - (1312,'2005-06-15 10:16:27',3608,313,'2005-06-20 06:53:27',1,'2006-02-15 21:30:53'), - (1313,'2005-06-15 10:18:34',1657,448,'2005-06-23 06:25:34',1,'2006-02-15 21:30:53'), - (1314,'2005-06-15 10:21:45',1359,538,'2005-06-21 14:10:45',1,'2006-02-15 21:30:53'), - (1315,'2005-06-15 10:23:08',3844,405,'2005-06-21 15:06:08',1,'2006-02-15 21:30:53'), - (1316,'2005-06-15 10:26:23',3891,138,'2005-06-21 09:25:23',2,'2006-02-15 21:30:53'), - (1317,'2005-06-15 10:30:19',3696,316,'2005-06-24 08:18:19',1,'2006-02-15 21:30:53'), - (1318,'2005-06-15 10:34:26',2760,341,'2005-06-20 16:20:26',1,'2006-02-15 21:30:53'), - (1319,'2005-06-15 10:39:05',4296,190,'2005-06-18 05:25:05',1,'2006-02-15 21:30:53'), - (1320,'2005-06-15 10:42:13',4484,84,'2005-06-17 13:44:13',1,'2006-02-15 21:30:53'), - (1321,'2005-06-15 10:49:17',3516,204,'2005-06-16 15:30:17',1,'2006-02-15 21:30:53'), - (1322,'2005-06-15 10:55:09',2076,217,'2005-06-18 15:14:09',2,'2006-02-15 21:30:53'), - (1323,'2005-06-15 10:55:17',3273,187,'2005-06-24 09:51:17',1,'2006-02-15 21:30:53'), - (1324,'2005-06-15 11:02:45',764,394,'2005-06-17 07:14:45',1,'2006-02-15 21:30:53'), - (1325,'2005-06-15 11:03:24',52,193,'2005-06-20 10:54:24',1,'2006-02-15 21:30:53'), - (1326,'2005-06-15 11:07:39',59,548,'2005-06-22 05:55:39',2,'2006-02-15 21:30:53'), - (1327,'2005-06-15 11:11:39',403,539,'2005-06-22 10:45:39',1,'2006-02-15 21:30:53'), - (1328,'2005-06-15 11:23:27',3665,295,'2005-06-19 12:42:27',2,'2006-02-15 21:30:53'), - (1329,'2005-06-15 11:25:06',1154,359,'2005-06-17 16:10:06',2,'2006-02-15 21:30:53'), - (1330,'2005-06-15 11:29:17',1219,587,'2005-06-24 13:36:17',2,'2006-02-15 21:30:53'), - (1331,'2005-06-15 11:34:33',3089,277,'2005-06-21 09:46:33',1,'2006-02-15 21:30:53'), - (1332,'2005-06-15 11:36:01',1412,116,'2005-06-17 14:29:01',1,'2006-02-15 21:30:53'), - (1333,'2005-06-15 11:37:08',448,310,'2005-06-16 10:13:08',2,'2006-02-15 21:30:53'), - (1334,'2005-06-15 11:43:09',1242,269,'2005-06-20 15:45:09',2,'2006-02-15 21:30:53'), - (1335,'2005-06-15 11:51:30',1713,64,'2005-06-16 16:42:30',2,'2006-02-15 21:30:53'), - (1336,'2005-06-15 12:01:34',1696,290,'2005-06-23 12:05:34',1,'2006-02-15 21:30:53'), - (1337,'2005-06-15 12:12:42',4014,465,'2005-06-20 12:38:42',2,'2006-02-15 21:30:53'), - (1338,'2005-06-15 12:17:34',1206,25,'2005-06-19 07:40:34',2,'2006-02-15 21:30:53'), - (1339,'2005-06-15 12:21:56',424,162,'2005-06-19 07:46:56',1,'2006-02-15 21:30:53'), - (1340,'2005-06-15 12:24:15',251,100,'2005-06-22 13:02:15',1,'2006-02-15 21:30:53'), - (1341,'2005-06-15 12:26:18',3363,344,'2005-06-21 07:26:18',2,'2006-02-15 21:30:53'), - (1342,'2005-06-15 12:26:21',4429,427,'2005-06-22 11:23:21',1,'2006-02-15 21:30:53'), - (1343,'2005-06-15 12:27:19',2393,416,'2005-06-21 16:57:19',1,'2006-02-15 21:30:53'), - (1344,'2005-06-15 12:29:41',1625,585,'2005-06-22 12:45:41',2,'2006-02-15 21:30:53'), - (1345,'2005-06-15 12:32:13',1041,270,'2005-06-24 14:02:13',1,'2006-02-15 21:30:53'), - (1346,'2005-06-15 12:39:52',4540,585,'2005-06-24 17:43:52',1,'2006-02-15 21:30:53'), - (1347,'2005-06-15 12:43:43',374,190,'2005-06-16 09:55:43',1,'2006-02-15 21:30:53'), - (1348,'2005-06-15 12:45:30',2078,196,'2005-06-17 17:12:30',1,'2006-02-15 21:30:53'), - (1349,'2005-06-15 12:49:02',1131,267,'2005-06-17 15:20:02',1,'2006-02-15 21:30:53'), - (1350,'2005-06-15 12:50:25',4261,316,'2005-06-23 11:35:25',1,'2006-02-15 21:30:53'), - (1351,'2005-06-15 12:51:03',2364,484,'2005-06-22 07:23:03',1,'2006-02-15 21:30:53'), - (1352,'2005-06-15 12:58:27',4352,276,'2005-06-18 10:57:27',1,'2006-02-15 21:30:53'), - (1353,'2005-06-15 13:13:36',2711,480,'2005-06-21 08:46:36',2,'2006-02-15 21:30:53'), - (1354,'2005-06-15 13:13:49',1294,83,'2005-06-23 13:08:49',2,'2006-02-15 21:30:53'), - (1355,'2005-06-15 13:13:59',4203,499,'2005-06-20 12:23:59',1,'2006-02-15 21:30:53'), - (1356,'2005-06-15 13:17:01',1318,212,'2005-06-19 16:22:01',1,'2006-02-15 21:30:53'), - (1357,'2005-06-15 13:26:23',2285,205,'2005-06-23 14:12:23',1,'2006-02-15 21:30:53'), - (1358,'2005-06-15 13:28:48',2025,442,'2005-06-21 13:40:48',1,'2006-02-15 21:30:53'), - (1359,'2005-06-15 13:30:30',3140,353,'2005-06-17 14:55:30',1,'2006-02-15 21:30:53'), - (1360,'2005-06-15 13:32:15',4107,14,'2005-06-18 10:59:15',2,'2006-02-15 21:30:53'), - (1361,'2005-06-15 13:37:38',4338,115,'2005-06-19 17:08:38',1,'2006-02-15 21:30:53'), - (1362,'2005-06-15 13:53:32',4524,98,'2005-06-19 16:05:32',1,'2006-02-15 21:30:53'), - (1363,'2005-06-15 14:05:11',771,197,'2005-06-17 19:53:11',2,'2006-02-15 21:30:53'), - (1364,'2005-06-15 14:05:32',115,400,'2005-06-16 15:31:32',1,'2006-02-15 21:30:53'), - (1365,'2005-06-15 14:09:55',3813,25,'2005-06-19 18:11:55',2,'2006-02-15 21:30:53'), - (1366,'2005-06-15 14:21:00',4238,576,'2005-06-24 17:36:00',1,'2006-02-15 21:30:53'), - (1367,'2005-06-15 14:25:17',1505,94,'2005-06-21 19:15:17',1,'2006-02-15 21:30:53'), - (1368,'2005-06-15 14:27:47',2020,222,'2005-06-23 18:07:47',2,'2006-02-15 21:30:53'), - (1369,'2005-06-15 14:29:14',679,221,'2005-06-16 13:01:14',1,'2006-02-15 21:30:53'), - (1370,'2005-06-15 14:31:05',644,396,'2005-06-22 19:23:05',2,'2006-02-15 21:30:53'), - (1371,'2005-06-15 14:38:15',760,491,'2005-06-23 15:36:15',1,'2006-02-15 21:30:53'), - (1372,'2005-06-15 14:45:48',3740,108,'2005-06-17 18:02:48',2,'2006-02-15 21:30:53'), - (1373,'2005-06-15 14:48:04',284,51,'2005-06-22 09:48:04',1,'2006-02-15 21:30:53'), - (1374,'2005-06-15 14:49:54',3353,120,'2005-06-22 12:30:54',1,'2006-02-15 21:30:53'), - (1375,'2005-06-15 14:54:56',3555,500,'2005-06-21 14:48:56',2,'2006-02-15 21:30:53'), - (1376,'2005-06-15 14:59:06',4271,215,'2005-06-19 17:34:06',1,'2006-02-15 21:30:53'), - (1377,'2005-06-15 15:02:03',3410,245,'2005-06-22 14:54:03',2,'2006-02-15 21:30:53'), - (1378,'2005-06-15 15:03:15',4372,253,'2005-06-19 16:50:15',1,'2006-02-15 21:30:53'), - (1379,'2005-06-15 15:05:10',810,212,'2005-06-18 12:11:10',1,'2006-02-15 21:30:53'), - (1380,'2005-06-15 15:13:10',3376,158,'2005-06-18 12:42:10',2,'2006-02-15 21:30:53'), - (1381,'2005-06-15 15:17:21',3262,300,'2005-06-20 17:07:21',2,'2006-02-15 21:30:53'), - (1382,'2005-06-15 15:18:08',3133,455,'2005-06-22 09:22:08',2,'2006-02-15 21:30:53'), - (1383,'2005-06-15 15:20:06',1281,379,'2005-06-24 18:42:06',2,'2006-02-15 21:30:53'), - (1384,'2005-06-15 15:22:03',4242,242,'2005-06-18 18:11:03',1,'2006-02-15 21:30:53'), - (1385,'2005-06-15 15:28:23',4073,396,'2005-06-18 18:37:23',1,'2006-02-15 21:30:53'), - (1386,'2005-06-15 15:38:58',1296,322,'2005-06-20 16:28:58',2,'2006-02-15 21:30:53'), - (1387,'2005-06-15 15:40:56',515,278,'2005-06-17 10:39:56',1,'2006-02-15 21:30:53'), - (1388,'2005-06-15 15:48:41',3987,500,'2005-06-22 17:51:41',1,'2006-02-15 21:30:53'), - (1389,'2005-06-15 15:49:01',965,472,'2005-06-19 11:08:01',2,'2006-02-15 21:30:53'), - (1390,'2005-06-15 16:06:29',4502,254,'2005-06-19 13:11:29',1,'2006-02-15 21:30:53'), - (1391,'2005-06-15 16:11:21',4213,273,'2005-06-22 21:32:21',1,'2006-02-15 21:30:53'), - (1392,'2005-06-15 16:12:27',363,460,'2005-06-16 17:30:27',2,'2006-02-15 21:30:53'), - (1393,'2005-06-15 16:12:50',2767,177,'2005-06-19 10:40:50',2,'2006-02-15 21:30:53'), - (1394,'2005-06-15 16:17:21',2802,268,'2005-06-21 20:44:21',2,'2006-02-15 21:30:53'), - (1395,'2005-06-15 16:21:04',753,252,'2005-06-23 12:52:04',2,'2006-02-15 21:30:53'), - (1396,'2005-06-15 16:22:38',1007,103,'2005-06-17 15:53:38',2,'2006-02-15 21:30:53'), - (1397,'2005-06-15 16:25:26',1830,444,'2005-06-21 20:45:26',1,'2006-02-15 21:30:53'), - (1398,'2005-06-15 16:28:42',4402,527,'2005-06-16 12:11:42',1,'2006-02-15 21:30:53'), - (1399,'2005-06-15 16:29:51',1435,469,'2005-06-18 14:06:51',1,'2006-02-15 21:30:53'), - (1400,'2005-06-15 16:29:56',230,571,'2005-06-21 14:43:56',2,'2006-02-15 21:30:53'), - (1401,'2005-06-15 16:30:22',4081,366,'2005-06-21 11:07:22',2,'2006-02-15 21:30:53'), - (1402,'2005-06-15 16:31:08',1951,381,'2005-06-24 19:31:08',1,'2006-02-15 21:30:53'), - (1403,'2005-06-15 16:31:59',3380,546,'2005-06-22 14:23:59',2,'2006-02-15 21:30:53'), - (1404,'2005-06-15 16:38:53',2776,375,'2005-06-16 20:37:53',1,'2006-02-15 21:30:53'), - (1405,'2005-06-15 16:41:26',3184,243,'2005-06-21 18:16:26',1,'2006-02-15 21:30:53'), - (1406,'2005-06-15 16:44:00',3118,199,'2005-06-21 11:22:00',2,'2006-02-15 21:30:53'), - (1407,'2005-06-15 16:45:07',1286,89,'2005-06-23 14:01:07',1,'2006-02-15 21:30:53'), - (1408,'2005-06-15 16:57:58',2655,396,'2005-06-22 21:08:58',1,'2006-02-15 21:30:53'), - (1409,'2005-06-15 16:58:12',1398,297,'2005-06-21 11:21:12',2,'2006-02-15 21:30:53'), - (1410,'2005-06-15 16:59:46',809,356,'2005-06-21 16:38:46',1,'2006-02-15 21:30:53'), - (1411,'2005-06-15 17:05:36',2276,520,'2005-06-21 14:05:36',1,'2006-02-15 21:30:53'), - (1412,'2005-06-15 17:09:48',4236,166,'2005-06-18 17:05:48',2,'2006-02-15 21:30:53'), - (1413,'2005-06-15 17:25:07',3625,96,'2005-06-21 17:17:07',2,'2006-02-15 21:30:53'), - (1414,'2005-06-15 17:26:32',4005,304,'2005-06-22 22:30:32',1,'2006-02-15 21:30:53'), - (1415,'2005-06-15 17:31:57',1885,331,'2005-06-16 22:22:57',2,'2006-02-15 21:30:53'), - (1416,'2005-06-15 17:44:57',3816,167,'2005-06-22 20:53:57',2,'2006-02-15 21:30:53'), - (1417,'2005-06-15 17:45:51',1334,570,'2005-06-19 14:00:51',2,'2006-02-15 21:30:53'), - (1418,'2005-06-15 17:51:27',2974,591,'2005-06-18 23:20:27',2,'2006-02-15 21:30:53'), - (1419,'2005-06-15 17:54:50',1208,312,'2005-06-17 19:44:50',2,'2006-02-15 21:30:53'), - (1420,'2005-06-15 17:56:14',4149,255,'2005-06-24 15:45:14',2,'2006-02-15 21:30:53'), - (1421,'2005-06-15 17:57:04',2439,533,'2005-06-21 20:38:04',2,'2006-02-15 21:30:53'), - (1422,'2005-06-15 18:02:53',1021,1,'2005-06-19 15:54:53',2,'2006-02-15 21:30:53'), - (1423,'2005-06-15 18:08:12',1396,592,'2005-06-24 19:13:12',1,'2006-02-15 21:30:53'), - (1424,'2005-06-15 18:08:14',887,224,'2005-06-24 23:16:14',2,'2006-02-15 21:30:53'), - (1425,'2005-06-15 18:13:46',1308,108,'2005-06-18 22:50:46',2,'2006-02-15 21:30:53'), - (1426,'2005-06-15 18:16:24',4412,363,'2005-06-18 22:15:24',2,'2006-02-15 21:30:53'), - (1427,'2005-06-15 18:17:28',14,100,'2005-06-16 15:47:28',1,'2006-02-15 21:30:53'), - (1428,'2005-06-15 18:19:30',3689,583,'2005-06-22 23:05:30',2,'2006-02-15 21:30:53'), - (1429,'2005-06-15 18:24:10',4116,362,'2005-06-18 16:30:10',1,'2006-02-15 21:30:53'), - (1430,'2005-06-15 18:24:55',3412,194,'2005-06-16 12:26:55',1,'2006-02-15 21:30:53'), - (1431,'2005-06-15 18:26:29',3193,438,'2005-06-21 17:33:29',1,'2006-02-15 21:30:53'), - (1432,'2005-06-15 18:27:24',523,339,'2005-06-21 14:03:24',2,'2006-02-15 21:30:53'), - (1433,'2005-06-15 18:30:00',2310,88,'2005-06-16 15:14:00',1,'2006-02-15 21:30:53'), - (1434,'2005-06-15 18:30:46',4228,544,'2005-06-24 17:51:46',1,'2006-02-15 21:30:53'), - (1435,'2005-06-15 18:32:30',2769,510,'2005-06-24 12:44:30',2,'2006-02-15 21:30:53'), - (1436,'2005-06-15 18:35:40',924,584,'2005-06-21 15:04:40',1,'2006-02-15 21:30:53'), - (1437,'2005-06-15 18:37:04',3263,96,'2005-06-20 12:56:04',1,'2006-02-15 21:30:53'), - (1438,'2005-06-15 18:38:51',1816,82,'2005-06-17 23:50:51',1,'2006-02-15 21:30:53'), - (1439,'2005-06-15 18:45:32',3155,589,'2005-06-22 15:57:32',2,'2006-02-15 21:30:53'), - (1440,'2005-06-15 18:53:14',2921,26,'2005-06-24 15:28:14',1,'2006-02-15 21:30:53'), - (1441,'2005-06-15 18:54:21',2095,444,'2005-06-22 22:48:21',2,'2006-02-15 21:30:53'), - (1442,'2005-06-15 18:55:34',3912,122,'2005-06-22 20:41:34',2,'2006-02-15 21:30:53'), - (1443,'2005-06-15 18:57:51',2485,435,'2005-06-18 14:18:51',2,'2006-02-15 21:30:53'), - (1444,'2005-06-15 19:08:16',1303,539,'2005-06-24 15:20:16',2,'2006-02-15 21:30:53'), - (1445,'2005-06-15 19:10:07',3189,537,'2005-06-19 20:27:07',2,'2006-02-15 21:30:53'), - (1446,'2005-06-15 19:13:45',1989,506,'2005-06-23 19:43:45',2,'2006-02-15 21:30:53'), - (1447,'2005-06-15 19:13:51',984,471,'2005-06-21 22:56:51',1,'2006-02-15 21:30:53'), - (1448,'2005-06-15 19:17:16',2781,246,'2005-06-23 21:56:16',2,'2006-02-15 21:30:53'), - (1449,'2005-06-15 19:19:16',1525,471,'2005-06-18 15:24:16',2,'2006-02-15 21:30:53'), - (1450,'2005-06-15 19:22:08',4132,268,'2005-06-16 17:53:08',2,'2006-02-15 21:30:53'), - (1451,'2005-06-15 19:30:18',3560,18,'2005-06-19 19:22:18',2,'2006-02-15 21:30:53'), - (1452,'2005-06-15 19:32:52',4348,243,'2005-06-16 13:45:52',1,'2006-02-15 21:30:53'), - (1453,'2005-06-15 19:36:39',3274,457,'2005-06-19 00:16:39',2,'2006-02-15 21:30:53'), - (1454,'2005-06-15 19:49:41',102,298,'2005-06-17 15:17:41',2,'2006-02-15 21:30:53'), - (1455,'2005-06-15 19:51:06',2194,358,'2005-06-18 21:54:06',2,'2006-02-15 21:30:53'), - (1456,'2005-06-15 20:00:11',632,590,'2005-06-23 18:03:11',2,'2006-02-15 21:30:53'), - (1457,'2005-06-15 20:05:49',730,345,'2005-06-19 15:35:49',1,'2006-02-15 21:30:53'), - (1458,'2005-06-15 20:24:05',3546,178,'2005-06-21 01:22:05',1,'2006-02-15 21:30:53'), - (1459,'2005-06-15 20:25:53',1862,218,'2005-06-22 23:34:53',2,'2006-02-15 21:30:53'), - (1460,'2005-06-15 20:27:02',1405,565,'2005-06-16 16:21:02',1,'2006-02-15 21:30:53'), - (1461,'2005-06-15 20:32:08',4479,216,'2005-06-23 01:08:08',1,'2006-02-15 21:30:53'), - (1462,'2005-06-15 20:37:40',653,187,'2005-06-18 19:36:40',2,'2006-02-15 21:30:53'), - (1463,'2005-06-15 20:37:51',2984,569,'2005-06-21 16:46:51',2,'2006-02-15 21:30:53'), - (1464,'2005-06-15 20:38:14',4113,387,'2005-06-17 14:52:14',2,'2006-02-15 21:30:53'), - (1465,'2005-06-15 20:43:08',609,387,'2005-06-18 23:00:08',1,'2006-02-15 21:30:53'), - (1466,'2005-06-15 20:46:04',1057,288,'2005-06-24 22:46:04',1,'2006-02-15 21:30:53'), - (1467,'2005-06-15 20:47:10',688,506,'2005-06-22 00:30:10',1,'2006-02-15 21:30:53'), - (1468,'2005-06-15 20:48:22',228,230,'2005-06-21 19:48:22',1,'2006-02-15 21:30:53'), - (1469,'2005-06-15 20:52:36',2451,580,'2005-06-21 19:55:36',1,'2006-02-15 21:30:53'), - (1470,'2005-06-15 20:53:07',4044,11,'2005-06-25 02:12:07',1,'2006-02-15 21:30:53'), - (1471,'2005-06-15 20:53:26',565,428,'2005-06-24 18:25:26',2,'2006-02-15 21:30:53'), - (1472,'2005-06-15 20:54:55',4233,373,'2005-06-24 21:52:55',2,'2006-02-15 21:30:53'), - (1473,'2005-06-15 20:55:20',2377,249,'2005-06-21 16:40:20',2,'2006-02-15 21:30:53'), - (1474,'2005-06-15 20:55:42',164,202,'2005-06-19 02:41:42',2,'2006-02-15 21:30:53'), - (1475,'2005-06-15 21:08:01',1834,344,'2005-06-18 22:33:01',2,'2006-02-15 21:30:53'), - (1476,'2005-06-15 21:08:46',1407,1,'2005-06-25 02:26:46',1,'2006-02-15 21:30:53'), - (1477,'2005-06-15 21:11:18',418,51,'2005-06-19 02:05:18',1,'2006-02-15 21:30:53'), - (1478,'2005-06-15 21:12:13',435,336,'2005-06-18 21:43:13',2,'2006-02-15 21:30:53'), - (1479,'2005-06-15 21:13:38',172,592,'2005-06-17 01:26:38',2,'2006-02-15 21:30:53'), - (1480,'2005-06-15 21:17:17',2598,27,'2005-06-23 22:01:17',1,'2006-02-15 21:30:53'), - (1481,'2005-06-15 21:17:58',3041,125,'2005-06-18 17:53:58',2,'2006-02-15 21:30:53'), - (1482,'2005-06-15 21:18:16',3980,60,'2005-06-16 17:07:16',1,'2006-02-15 21:30:53'), - (1483,'2005-06-15 21:21:58',1926,242,'2005-06-24 00:44:58',2,'2006-02-15 21:30:53'), - (1484,'2005-06-15 21:22:35',1589,320,'2005-06-20 02:27:35',2,'2006-02-15 21:30:53'), - (1485,'2005-06-15 21:24:10',194,281,'2005-06-24 23:03:10',1,'2006-02-15 21:30:53'), - (1486,'2005-06-15 21:25:30',847,62,'2005-06-16 16:36:30',1,'2006-02-15 21:30:53'), - (1487,'2005-06-15 21:27:42',3791,76,'2005-06-22 03:09:42',2,'2006-02-15 21:30:53'), - (1488,'2005-06-15 21:39:54',1081,355,'2005-06-16 20:33:54',1,'2006-02-15 21:30:53'), - (1489,'2005-06-15 21:41:38',699,213,'2005-06-22 17:00:38',1,'2006-02-15 21:30:53'), - (1490,'2005-06-15 21:42:17',3515,123,'2005-06-22 02:01:17',2,'2006-02-15 21:30:53'), - (1491,'2005-06-15 21:48:18',848,354,'2005-06-20 16:40:18',1,'2006-02-15 21:30:53'), - (1492,'2005-06-15 21:48:35',4148,360,'2005-06-17 17:18:35',1,'2006-02-15 21:30:53'), - (1493,'2005-06-15 21:50:32',4581,235,'2005-06-17 01:02:32',2,'2006-02-15 21:30:53'), - (1494,'2005-06-15 21:54:20',244,575,'2005-06-19 18:46:20',1,'2006-02-15 21:30:53'), - (1495,'2005-06-15 21:54:31',1842,175,'2005-06-19 00:08:31',2,'2006-02-15 21:30:53'), - (1496,'2005-06-15 21:55:58',3915,290,'2005-06-17 02:28:58',2,'2006-02-15 21:30:53'), - (1497,'2005-06-15 21:56:39',2958,44,'2005-06-20 20:32:39',1,'2006-02-15 21:30:53'), - (1498,'2005-06-15 21:58:00',3690,352,'2005-06-17 21:50:00',1,'2006-02-15 21:30:53'), - (1499,'2005-06-15 21:58:07',165,375,'2005-06-22 19:37:07',2,'2006-02-15 21:30:53'), - (1500,'2005-06-15 22:00:45',2652,237,'2005-06-18 16:19:45',2,'2006-02-15 21:30:53'), - (1501,'2005-06-15 22:02:35',1780,148,'2005-06-23 18:59:35',1,'2006-02-15 21:30:53'), - (1502,'2005-06-15 22:03:14',3277,5,'2005-06-23 18:42:14',2,'2006-02-15 21:30:53'), - (1503,'2005-06-15 22:07:09',763,197,'2005-06-20 23:15:09',1,'2006-02-15 21:30:53'), - (1504,'2005-06-15 22:08:06',3621,423,'2005-06-24 01:16:06',2,'2006-02-15 21:30:53'), - (1505,'2005-06-15 22:12:50',2961,561,'2005-06-17 21:37:50',2,'2006-02-15 21:30:53'), - (1506,'2005-06-15 22:19:37',4085,404,'2005-06-22 18:28:37',1,'2006-02-15 21:30:53'), - (1507,'2005-06-15 22:25:26',2514,172,'2005-06-19 17:00:26',1,'2006-02-15 21:30:53'), - (1508,'2005-06-15 22:33:24',1141,511,'2005-06-18 02:27:24',2,'2006-02-15 21:30:53'), - (1509,'2005-06-15 22:35:53',655,167,'2005-06-23 17:09:53',2,'2006-02-15 21:30:53'), - (1510,'2005-06-15 22:39:34',989,338,'2005-06-24 19:21:34',2,'2006-02-15 21:30:53'), - (1511,'2005-06-15 22:45:06',1135,330,'2005-06-22 22:48:06',1,'2006-02-15 21:30:53'), - (1512,'2005-06-15 22:53:03',1628,452,'2005-06-23 18:56:03',1,'2006-02-15 21:30:53'), - (1513,'2005-06-15 22:53:30',1173,368,'2005-06-23 01:00:30',1,'2006-02-15 21:30:53'), - (1514,'2005-06-15 22:57:34',2937,410,'2005-06-19 20:27:34',1,'2006-02-15 21:30:53'), - (1515,'2005-06-15 23:07:50',3244,115,'2005-06-20 02:33:50',2,'2006-02-15 21:30:53'), - (1516,'2005-06-15 23:11:10',3702,530,'2005-06-17 20:37:10',1,'2006-02-15 21:30:53'), - (1517,'2005-06-15 23:20:26',3728,148,'2005-06-23 23:23:26',1,'2006-02-15 21:30:53'), - (1518,'2005-06-15 23:36:37',4537,237,'2005-06-16 18:24:37',2,'2006-02-15 21:30:53'), - (1519,'2005-06-15 23:55:27',1553,155,'2005-06-21 04:06:27',2,'2006-02-15 21:30:53'), - (1520,'2005-06-15 23:57:20',3419,341,'2005-06-24 23:46:20',1,'2006-02-15 21:30:53'), - (1521,'2005-06-15 23:58:53',4299,149,'2005-06-18 03:10:53',1,'2006-02-15 21:30:53'), - (1522,'2005-06-16 00:17:39',235,133,'2005-06-22 05:38:39',1,'2006-02-15 21:30:53'), - (1523,'2005-06-16 00:18:40',681,349,'2005-06-17 02:50:40',2,'2006-02-15 21:30:53'), - (1524,'2005-06-16 00:25:52',3439,177,'2005-06-19 03:32:52',1,'2006-02-15 21:30:53'), - (1525,'2005-06-16 00:26:07',1467,304,'2005-06-19 22:37:07',2,'2006-02-15 21:30:53'), - (1526,'2005-06-16 00:27:51',1940,499,'2005-06-19 00:19:51',1,'2006-02-15 21:30:53'), - (1527,'2005-06-16 00:31:40',296,188,'2005-06-21 05:20:40',1,'2006-02-15 21:30:53'), - (1528,'2005-06-16 00:32:52',4297,110,'2005-06-25 01:07:52',2,'2006-02-15 21:30:53'), - (1529,'2005-06-16 00:37:35',1688,362,'2005-06-22 18:58:35',2,'2006-02-15 21:30:53'), - (1530,'2005-06-16 00:38:07',2421,392,'2005-06-24 02:45:07',2,'2006-02-15 21:30:53'), - (1531,'2005-06-16 00:40:34',1388,515,'2005-06-22 02:44:34',1,'2006-02-15 21:30:53'), - (1532,'2005-06-16 00:41:31',3793,290,'2005-06-20 21:36:31',1,'2006-02-15 21:30:53'), - (1533,'2005-06-16 00:46:02',2452,116,'2005-06-17 20:11:02',1,'2006-02-15 21:30:53'), - (1534,'2005-06-16 00:49:32',3124,42,'2005-06-18 02:41:32',1,'2006-02-15 21:30:53'), - (1535,'2005-06-16 00:52:04',1096,202,'2005-06-20 22:47:04',2,'2006-02-15 21:30:53'), - (1536,'2005-06-16 00:52:22',3248,339,'2005-06-17 21:43:22',1,'2006-02-15 21:30:53'), - (1537,'2005-06-16 00:52:51',4577,594,'2005-06-20 19:33:51',2,'2006-02-15 21:30:53'), - (1538,'2005-06-16 01:05:50',708,430,'2005-06-18 19:48:50',1,'2006-02-15 21:30:53'), - (1539,'2005-06-16 01:11:25',267,390,'2005-06-23 03:43:25',2,'2006-02-15 21:30:53'), - (1540,'2005-06-16 01:14:56',2707,586,'2005-06-20 23:31:56',2,'2006-02-15 21:30:53'), - (1541,'2005-06-16 01:15:59',1911,189,'2005-06-22 21:26:59',2,'2006-02-15 21:30:53'), - (1542,'2005-06-16 01:20:05',1714,182,'2005-06-22 03:59:05',1,'2006-02-15 21:30:53'), - (1543,'2005-06-16 01:24:08',1188,28,'2005-06-18 06:24:08',2,'2006-02-15 21:30:53'), - (1544,'2005-06-16 01:28:22',269,43,'2005-06-17 06:57:22',2,'2006-02-15 21:30:53'), - (1545,'2005-06-16 01:31:23',762,563,'2005-06-24 05:50:23',1,'2006-02-15 21:30:53'), - (1546,'2005-06-16 01:34:05',3913,3,'2005-06-24 04:27:05',1,'2006-02-15 21:30:53'), - (1547,'2005-06-16 01:42:24',2909,343,'2005-06-19 01:13:24',1,'2006-02-15 21:30:53'), - (1548,'2005-06-16 01:43:33',2094,374,'2005-06-23 22:04:33',2,'2006-02-15 21:30:53'), - (1549,'2005-06-16 01:57:15',266,69,'2005-06-18 23:30:15',1,'2006-02-15 21:30:53'), - (1550,'2005-06-16 01:58:35',2003,345,'2005-06-18 23:56:35',1,'2006-02-15 21:30:53'), - (1551,'2005-06-16 02:01:15',4088,268,'2005-06-22 07:33:15',1,'2006-02-15 21:30:53'), - (1552,'2005-06-16 02:01:37',819,518,'2005-06-21 00:59:37',2,'2006-02-15 21:30:53'), - (1553,'2005-06-16 02:02:44',4026,416,'2005-06-19 07:50:44',1,'2006-02-15 21:30:53'), - (1554,'2005-06-16 02:16:47',715,155,'2005-06-22 05:15:47',1,'2006-02-15 21:30:53'), - (1555,'2005-06-16 02:17:07',4168,256,'2005-06-22 06:28:07',1,'2006-02-15 21:30:53'), - (1556,'2005-06-16 02:19:02',533,54,'2005-06-17 22:36:02',2,'2006-02-15 21:30:53'), - (1557,'2005-06-16 02:28:35',2617,439,'2005-06-16 22:11:35',2,'2006-02-15 21:30:53'), - (1558,'2005-06-16 02:33:53',4350,20,'2005-06-19 20:50:53',2,'2006-02-15 21:30:53'), - (1559,'2005-06-16 02:35:03',716,574,'2005-06-19 21:22:03',1,'2006-02-15 21:30:53'), - (1560,'2005-06-16 02:36:43',3418,239,'2005-06-24 23:10:43',2,'2006-02-15 21:30:53'), - (1561,'2005-06-16 02:41:30',2263,431,'2005-06-22 05:19:30',1,'2006-02-15 21:30:53'), - (1562,'2005-06-16 02:46:27',595,395,'2005-06-23 00:56:27',2,'2006-02-15 21:30:53'), - (1563,'2005-06-16 02:46:28',1516,262,'2005-06-18 02:37:28',1,'2006-02-15 21:30:53'), - (1564,'2005-06-16 02:47:07',145,343,'2005-06-24 03:12:07',1,'2006-02-15 21:30:53'), - (1565,'2005-06-16 03:13:09',3833,506,'2005-06-16 22:42:09',2,'2006-02-15 21:30:53'), - (1566,'2005-06-16 03:13:20',3215,174,'2005-06-24 01:59:20',2,'2006-02-15 21:30:53'), - (1567,'2005-06-16 03:13:30',3098,320,'2005-06-21 23:56:30',1,'2006-02-15 21:30:53'), - (1568,'2005-06-16 03:14:01',635,178,'2005-06-19 21:17:01',2,'2006-02-15 21:30:53'), - (1569,'2005-06-16 03:19:09',3927,363,'2005-06-18 21:55:09',2,'2006-02-15 21:30:53'), - (1570,'2005-06-16 03:21:33',3711,82,'2005-06-22 22:03:33',2,'2006-02-15 21:30:53'), - (1571,'2005-06-16 03:22:00',1019,54,'2005-06-22 23:27:00',1,'2006-02-15 21:30:53'), - (1572,'2005-06-16 03:23:22',4179,560,'2005-06-20 06:03:22',2,'2006-02-15 21:30:53'), - (1573,'2005-06-16 03:31:39',4536,371,'2005-06-25 04:04:39',1,'2006-02-15 21:30:53'), - (1574,'2005-06-16 03:39:56',161,305,'2005-06-22 05:40:56',2,'2006-02-15 21:30:53'), - (1575,'2005-06-16 03:41:38',3317,6,'2005-06-22 03:01:38',2,'2006-02-15 21:30:53'), - (1576,'2005-06-16 03:54:39',1014,442,'2005-06-24 21:55:39',2,'2006-02-15 21:30:53'), - (1577,'2005-06-16 04:03:28',367,327,'2005-06-24 22:40:28',2,'2006-02-15 21:30:53'), - (1578,'2005-06-16 04:08:16',3397,365,'2005-06-23 07:57:16',1,'2006-02-15 21:30:53'), - (1579,'2005-06-16 04:09:08',158,35,'2005-06-21 05:21:08',2,'2006-02-15 21:30:53'), - (1580,'2005-06-16 04:12:25',2479,87,'2005-06-20 06:53:25',1,'2006-02-15 21:30:53'), - (1581,'2005-06-16 04:28:45',4004,109,'2005-06-18 07:07:45',1,'2006-02-15 21:30:53'), - (1582,'2005-06-16 04:31:57',163,536,'2005-06-22 01:25:57',1,'2006-02-15 21:30:53'), - (1583,'2005-06-16 04:44:23',270,37,'2005-06-18 03:44:23',1,'2006-02-15 21:30:53'), - (1584,'2005-06-16 04:50:50',3545,434,'2005-06-21 22:51:50',2,'2006-02-15 21:30:53'), - (1585,'2005-06-16 04:51:13',1708,386,'2005-06-24 00:23:13',2,'2006-02-15 21:30:53'), - (1586,'2005-06-16 04:51:18',769,140,'2005-06-21 06:54:18',2,'2006-02-15 21:30:53'), - (1587,'2005-06-16 04:52:28',1781,62,'2005-06-23 07:36:28',1,'2006-02-15 21:30:53'), - (1588,'2005-06-16 04:53:21',4472,322,'2005-06-25 07:29:21',2,'2006-02-15 21:30:53'), - (1589,'2005-06-16 04:58:03',4307,293,'2005-06-24 08:36:03',1,'2006-02-15 21:30:53'), - (1590,'2005-06-16 05:11:41',3685,98,'2005-06-23 10:11:41',1,'2006-02-15 21:30:53'), - (1591,'2005-06-16 05:12:37',1648,83,'2005-06-25 06:28:37',2,'2006-02-15 21:30:53'), - (1592,'2005-06-16 05:14:37',3798,187,'2005-06-20 10:52:37',2,'2006-02-15 21:30:53'), - (1593,'2005-06-16 05:14:52',766,111,'2005-06-24 08:00:52',2,'2006-02-15 21:30:53'), - (1594,'2005-06-16 05:15:12',3858,470,'2005-06-25 00:38:12',1,'2006-02-15 21:30:53'), - (1595,'2005-06-16 05:23:46',1481,244,'2005-06-20 00:37:46',1,'2006-02-15 21:30:53'), - (1596,'2005-06-16 05:30:58',2552,416,'2005-06-21 04:18:58',2,'2006-02-15 21:30:53'), - (1597,'2005-06-16 05:47:03',743,432,'2005-06-18 04:21:03',1,'2006-02-15 21:30:53'), - (1598,'2005-06-16 06:02:39',4171,314,'2005-06-23 09:09:39',1,'2006-02-15 21:30:53'), - (1599,'2005-06-16 06:03:33',1476,215,'2005-06-21 07:46:33',2,'2006-02-15 21:30:53'), - (1600,'2005-06-16 06:04:12',2264,196,'2005-06-19 09:39:12',2,'2006-02-15 21:30:53'), - (1601,'2005-06-16 06:11:13',3115,428,'2005-06-21 08:57:13',2,'2006-02-15 21:30:53'), - (1602,'2005-06-16 06:12:40',1777,441,'2005-06-19 03:50:40',2,'2006-02-15 21:30:53'), - (1603,'2005-06-16 06:14:03',3308,395,'2005-06-17 06:04:03',2,'2006-02-15 21:30:53'), - (1604,'2005-06-16 06:14:25',3226,272,'2005-06-17 03:53:25',2,'2006-02-15 21:30:53'), - (1605,'2005-06-16 06:17:55',593,197,'2005-06-25 01:25:55',1,'2006-02-15 21:30:53'), - (1606,'2005-06-16 06:18:31',4290,253,'2005-06-25 09:15:31',1,'2006-02-15 21:30:53'), - (1607,'2005-06-16 06:25:35',3289,513,'2005-06-20 02:50:35',2,'2006-02-15 21:30:53'), - (1608,'2005-06-16 06:28:57',2581,386,'2005-06-24 05:20:57',2,'2006-02-15 21:30:53'), - (1609,'2005-06-16 06:34:59',2279,174,'2005-06-17 09:41:59',2,'2006-02-15 21:30:53'), - (1610,'2005-06-16 06:36:33',3551,534,'2005-06-19 07:12:33',1,'2006-02-15 21:30:53'), - (1611,'2005-06-16 06:41:35',1739,393,'2005-06-25 06:13:35',2,'2006-02-15 21:30:53'), - (1612,'2005-06-16 06:52:05',3025,355,'2005-06-19 01:51:05',1,'2006-02-15 21:30:53'), - (1613,'2005-06-16 06:55:10',4462,573,'2005-06-24 12:08:10',1,'2006-02-15 21:30:53'), - (1614,'2005-06-16 06:58:02',23,489,'2005-06-23 11:24:02',1,'2006-02-15 21:30:53'), - (1615,'2005-06-16 07:00:28',3894,362,'2005-06-25 08:53:28',1,'2006-02-15 21:30:53'), - (1616,'2005-06-16 07:04:52',2296,204,'2005-06-24 04:06:52',1,'2006-02-15 21:30:53'), - (1617,'2005-06-16 07:06:06',1382,83,'2005-06-25 03:35:06',1,'2006-02-15 21:30:53'), - (1618,'2005-06-16 07:08:38',3741,134,'2005-06-25 05:26:38',2,'2006-02-15 21:30:53'), - (1619,'2005-06-16 07:14:13',4258,232,'2005-06-19 05:50:13',2,'2006-02-15 21:30:53'), - (1620,'2005-06-16 07:21:30',389,561,'2005-06-17 09:46:30',1,'2006-02-15 21:30:53'), - (1621,'2005-06-16 07:24:12',3677,177,'2005-06-19 02:35:12',1,'2006-02-15 21:30:53'), - (1622,'2005-06-16 07:33:18',1774,311,'2005-06-21 07:23:18',1,'2006-02-15 21:30:53'), - (1623,'2005-06-16 07:48:50',4485,378,'2005-06-17 03:53:50',2,'2006-02-15 21:30:53'), - (1624,'2005-06-16 07:48:57',1066,314,'2005-06-17 05:52:57',1,'2006-02-15 21:30:53'), - (1625,'2005-06-16 07:49:08',3367,39,'2005-06-24 09:08:08',2,'2006-02-15 21:30:53'), - (1626,'2005-06-16 07:49:47',694,260,'2005-06-22 13:32:47',2,'2006-02-15 21:30:53'), - (1627,'2005-06-16 07:51:09',4135,468,'2005-06-24 02:24:09',1,'2006-02-15 21:30:53'), - (1628,'2005-06-16 07:52:55',868,427,'2005-06-25 11:09:55',1,'2006-02-15 21:30:53'), - (1629,'2005-06-16 07:53:47',4375,339,'2005-06-22 13:03:47',1,'2006-02-15 21:30:53'), - (1630,'2005-06-16 07:55:01',2413,130,'2005-06-19 06:38:01',1,'2006-02-15 21:30:53'), - (1631,'2005-06-16 08:01:02',2466,5,'2005-06-19 09:04:02',1,'2006-02-15 21:30:53'), - (1632,'2005-06-16 08:03:42',1518,319,'2005-06-17 03:40:42',1,'2006-02-15 21:30:53'), - (1633,'2005-06-16 08:08:40',280,4,'2005-06-17 11:12:40',1,'2006-02-15 21:30:53'), - (1634,'2005-06-16 08:16:05',3990,121,'2005-06-17 04:49:05',1,'2006-02-15 21:30:53'), - (1635,'2005-06-16 08:26:56',1187,566,'2005-06-25 06:17:56',2,'2006-02-15 21:30:53'), - (1636,'2005-06-16 08:28:54',2052,574,'2005-06-24 09:23:54',1,'2006-02-15 21:30:53'), - (1637,'2005-06-16 08:29:58',906,212,'2005-06-23 04:55:58',2,'2006-02-15 21:30:53'), - (1638,'2005-06-16 08:32:36',1905,181,'2005-06-18 07:11:36',2,'2006-02-15 21:30:53'), - (1639,'2005-06-16 08:33:39',176,450,'2005-06-25 07:51:39',1,'2006-02-15 21:30:53'), - (1640,'2005-06-16 08:35:39',443,86,'2005-06-17 05:37:39',2,'2006-02-15 21:30:53'), - (1641,'2005-06-16 08:46:26',2925,259,'2005-06-24 14:39:26',2,'2006-02-15 21:30:53'), - (1642,'2005-06-16 08:54:15',3875,287,'2005-06-18 12:36:15',1,'2006-02-15 21:30:53'), - (1643,'2005-06-16 08:55:35',1352,484,'2005-06-21 05:36:35',2,'2006-02-15 21:30:53'), - (1644,'2005-06-16 08:58:18',749,596,'2005-06-21 06:47:18',1,'2006-02-15 21:30:53'), - (1645,'2005-06-16 09:10:06',4434,234,'2005-06-23 04:36:06',2,'2006-02-15 21:30:53'), - (1646,'2005-06-16 09:12:53',4037,131,'2005-06-24 08:03:53',2,'2006-02-15 21:30:53'), - (1647,'2005-06-16 09:14:58',1936,454,'2005-06-17 10:46:58',1,'2006-02-15 21:30:53'), - (1648,'2005-06-16 09:17:07',457,427,'2005-06-24 06:31:07',2,'2006-02-15 21:30:53'), - (1649,'2005-06-16 09:20:33',390,352,'2005-06-18 13:42:33',1,'2006-02-15 21:30:53'), - (1650,'2005-06-16 09:23:20',4125,299,'2005-06-23 11:25:20',1,'2006-02-15 21:30:53'), - (1651,'2005-06-16 09:24:38',4444,524,'2005-06-17 09:50:38',2,'2006-02-15 21:30:53'), - (1652,'2005-06-16 09:31:37',3416,533,'2005-06-19 14:02:37',2,'2006-02-15 21:30:53'), - (1653,'2005-06-16 09:34:45',2294,517,'2005-06-18 09:13:45',1,'2006-02-15 21:30:53'), - (1654,'2005-06-16 09:42:48',1039,348,'2005-06-20 14:28:48',2,'2006-02-15 21:30:53'), - (1655,'2005-06-16 09:51:39',3693,488,'2005-06-23 14:53:39',2,'2006-02-15 21:30:53'), - (1656,'2005-06-16 10:05:40',2253,31,'2005-06-22 06:26:40',1,'2006-02-15 21:30:53'), - (1657,'2005-06-16 10:06:49',953,209,'2005-06-22 10:34:49',2,'2006-02-15 21:30:53'), - (1658,'2005-06-16 10:07:10',272,568,'2005-06-21 09:23:10',2,'2006-02-15 21:30:53'), - (1659,'2005-06-16 10:11:46',1182,296,'2005-06-20 13:51:46',1,'2006-02-15 21:30:53'), - (1660,'2005-06-16 10:12:55',2374,238,'2005-06-18 05:56:55',2,'2006-02-15 21:30:53'), - (1661,'2005-06-16 10:12:57',2403,508,'2005-06-24 09:23:57',2,'2006-02-15 21:30:53'), - (1662,'2005-06-16 10:13:35',3552,378,'2005-06-23 13:54:35',1,'2006-02-15 21:30:53'), - (1663,'2005-06-16 10:14:15',1558,186,'2005-06-23 08:34:15',2,'2006-02-15 21:30:53'), - (1664,'2005-06-16 10:15:20',2464,216,'2005-06-18 12:11:20',2,'2006-02-15 21:30:53'), - (1665,'2005-06-16 10:16:02',2613,490,'2005-06-23 09:32:02',1,'2006-02-15 21:30:53'), - (1666,'2005-06-16 10:17:19',4019,557,'2005-06-21 05:50:19',1,'2006-02-15 21:30:53'), - (1667,'2005-06-16 10:18:59',2362,333,'2005-06-22 14:45:59',2,'2006-02-15 21:30:53'), - (1668,'2005-06-16 10:19:52',2483,569,'2005-06-23 12:22:52',2,'2006-02-15 21:30:53'), - (1669,'2005-06-16 10:20:20',360,73,'2005-06-18 04:26:20',1,'2006-02-15 21:30:53'), - (1670,'2005-06-16 10:26:33',2066,328,'2005-06-19 07:15:33',1,'2006-02-15 21:30:53'), - (1671,'2005-06-16 10:30:22',3805,135,'2005-06-22 11:08:22',2,'2006-02-15 21:30:53'), - (1672,'2005-06-16 10:37:34',4206,216,'2005-06-23 05:30:34',1,'2006-02-15 21:30:53'), - (1673,'2005-06-16 10:40:17',907,534,'2005-06-18 16:13:17',1,'2006-02-15 21:30:53'), - (1674,'2005-06-16 10:57:00',3606,234,'2005-06-18 07:31:00',2,'2006-02-15 21:30:53'), - (1675,'2005-06-16 11:04:47',3048,371,'2005-06-24 06:56:47',2,'2006-02-15 21:30:53'), - (1676,'2005-06-16 11:06:09',931,171,'2005-06-21 05:17:09',1,'2006-02-15 21:30:53'), - (1677,'2005-06-16 11:07:11',240,191,'2005-06-23 10:50:11',1,'2006-02-15 21:30:53'), - (1678,'2005-06-16 11:08:28',1856,352,'2005-06-19 15:44:28',1,'2006-02-15 21:30:53'), - (1679,'2005-06-16 11:11:01',3959,227,'2005-06-23 08:11:01',1,'2006-02-15 21:30:53'), - (1680,'2005-06-16 11:17:22',4441,469,'2005-06-25 15:55:22',2,'2006-02-15 21:30:53'), - (1681,'2005-06-16 11:38:17',530,255,'2005-06-19 13:05:17',1,'2006-02-15 21:30:53'), - (1682,'2005-06-16 11:54:25',2165,476,'2005-06-22 11:09:25',2,'2006-02-15 21:30:53'), - (1683,'2005-06-16 11:54:55',2361,494,'2005-06-18 08:51:55',2,'2006-02-15 21:30:53'), - (1684,'2005-06-16 11:57:34',806,485,'2005-06-19 09:12:34',1,'2006-02-15 21:30:53'), - (1685,'2005-06-16 12:06:57',2754,85,'2005-06-21 16:53:57',2,'2006-02-15 21:30:53'), - (1686,'2005-06-16 12:08:20',3883,529,'2005-06-20 10:59:20',1,'2006-02-15 21:30:53'), - (1687,'2005-06-16 12:09:20',3686,140,'2005-06-18 06:18:20',2,'2006-02-15 21:30:53'), - (1688,'2005-06-16 12:11:20',383,49,'2005-06-18 08:39:20',2,'2006-02-15 21:30:53'), - (1689,'2005-06-16 12:18:41',4036,48,'2005-06-24 13:33:41',2,'2006-02-15 21:30:53'), - (1690,'2005-06-16 12:24:18',1099,286,'2005-06-25 15:00:18',1,'2006-02-15 21:30:53'), - (1691,'2005-06-16 12:24:28',4438,492,'2005-06-24 08:24:28',1,'2006-02-15 21:30:53'), - (1692,'2005-06-16 12:30:19',3544,514,'2005-06-17 17:31:19',2,'2006-02-15 21:30:53'), - (1693,'2005-06-16 12:39:51',2386,421,'2005-06-19 16:19:51',2,'2006-02-15 21:30:53'), - (1694,'2005-06-16 12:40:23',147,532,'2005-06-20 09:18:23',2,'2006-02-15 21:30:53'), - (1695,'2005-06-16 12:40:28',4436,159,'2005-06-22 13:41:28',1,'2006-02-15 21:30:53'), - (1696,'2005-06-16 12:50:01',3928,502,'2005-06-24 12:08:01',2,'2006-02-15 21:30:53'), - (1697,'2005-06-16 12:55:20',1801,340,'2005-06-23 17:41:20',2,'2006-02-15 21:30:53'), - (1698,'2005-06-16 13:04:42',1474,407,'2005-06-21 15:54:42',1,'2006-02-15 21:30:53'), - (1699,'2005-06-16 13:05:09',4507,27,'2005-06-17 09:53:09',2,'2006-02-15 21:30:53'), - (1700,'2005-06-16 13:18:23',4251,456,'2005-06-21 16:46:23',2,'2006-02-15 21:30:53'), - (1701,'2005-06-16 13:18:48',3000,315,'2005-06-22 15:00:48',1,'2006-02-15 21:30:53'), - (1702,'2005-06-16 13:21:05',1822,242,'2005-06-19 10:13:05',2,'2006-02-15 21:30:53'), - (1703,'2005-06-16 13:28:44',2346,589,'2005-06-17 11:03:44',1,'2006-02-15 21:30:53'), - (1704,'2005-06-16 13:45:56',4425,488,'2005-06-24 18:12:56',1,'2006-02-15 21:30:53'), - (1705,'2005-06-16 13:59:42',123,564,'2005-06-18 19:54:42',2,'2006-02-15 21:30:53'), - (1706,'2005-06-16 14:01:02',2935,26,'2005-06-25 19:29:02',1,'2006-02-15 21:30:53'), - (1707,'2005-06-16 14:01:27',185,4,'2005-06-18 09:35:27',1,'2006-02-15 21:30:53'), - (1708,'2005-06-16 14:08:44',2259,478,'2005-06-19 08:35:44',1,'2006-02-15 21:30:53'), - (1709,'2005-06-16 14:10:15',3501,426,'2005-06-24 16:38:15',2,'2006-02-15 21:30:53'), - (1710,'2005-06-16 14:11:24',144,77,'2005-06-22 15:26:24',1,'2006-02-15 21:30:53'), - (1711,'2005-06-16 14:11:52',273,347,'2005-06-25 08:49:52',1,'2006-02-15 21:30:53'), - (1712,'2005-06-16 14:25:09',1363,535,'2005-06-17 17:55:09',1,'2006-02-15 21:30:53'), - (1713,'2005-06-16 14:28:33',2580,164,'2005-06-18 09:02:33',1,'2006-02-15 21:30:53'), - (1714,'2005-06-16 14:29:59',535,477,'2005-06-24 17:27:59',2,'2006-02-15 21:30:53'), - (1715,'2005-06-16 14:37:12',1594,203,'2005-06-20 19:36:12',1,'2006-02-15 21:30:53'), - (1716,'2005-06-16 14:39:31',20,24,'2005-06-19 15:37:31',1,'2006-02-15 21:30:53'), - (1717,'2005-06-16 14:47:16',3007,277,'2005-06-19 10:11:16',2,'2006-02-15 21:30:53'), - (1718,'2005-06-16 14:52:02',288,516,'2005-06-25 10:53:02',2,'2006-02-15 21:30:53'), - (1719,'2005-06-16 14:55:53',2699,582,'2005-06-18 14:12:53',1,'2006-02-15 21:30:53'), - (1720,'2005-06-16 15:00:14',3500,543,'2005-06-21 13:57:14',2,'2006-02-15 21:30:53'), - (1721,'2005-06-16 15:01:36',3521,485,'2005-06-23 10:48:36',1,'2006-02-15 21:30:53'), - (1722,'2005-06-16 15:12:52',2142,364,'2005-06-19 13:01:52',2,'2006-02-15 21:30:53'), - (1723,'2005-06-16 15:14:18',2417,259,'2005-06-23 15:45:18',2,'2006-02-15 21:30:53'), - (1724,'2005-06-16 15:15:43',61,146,'2005-06-23 10:14:43',2,'2006-02-15 21:30:53'), - (1725,'2005-06-16 15:18:57',726,1,'2005-06-17 21:05:57',1,'2006-02-15 21:30:53'), - (1726,'2005-06-16 15:19:10',116,3,'2005-06-25 11:39:10',2,'2006-02-15 21:30:53'), - (1727,'2005-06-16 15:21:47',2951,457,'2005-06-17 14:12:47',1,'2006-02-15 21:30:53'), - (1728,'2005-06-16 15:29:29',1366,59,'2005-06-23 12:47:29',1,'2006-02-15 21:30:53'), - (1729,'2005-06-16 15:29:47',3364,523,'2005-06-25 20:55:47',2,'2006-02-15 21:30:53'), - (1730,'2005-06-16 15:30:01',1372,390,'2005-06-19 12:56:01',1,'2006-02-15 21:30:53'), - (1731,'2005-06-16 15:32:12',3698,344,'2005-06-19 18:58:12',2,'2006-02-15 21:30:53'), - (1732,'2005-06-16 15:34:41',2287,129,'2005-06-18 13:05:41',1,'2006-02-15 21:30:53'), - (1733,'2005-06-16 15:37:07',542,480,'2005-06-23 15:53:07',2,'2006-02-15 21:30:53'), - (1734,'2005-06-16 15:49:30',1113,94,'2005-06-22 13:52:30',2,'2006-02-15 21:30:53'), - (1735,'2005-06-16 15:51:52',97,4,'2005-06-20 13:27:52',1,'2006-02-15 21:30:53'), - (1736,'2005-06-16 15:52:32',3771,139,'2005-06-21 14:39:32',2,'2006-02-15 21:30:53'), - (1737,'2005-06-16 15:59:44',4029,467,'2005-06-23 12:22:44',1,'2006-02-15 21:30:53'), - (1738,'2005-06-16 16:07:27',3260,177,'2005-06-20 15:22:27',1,'2006-02-15 21:30:53'), - (1739,'2005-06-16 16:09:38',2557,450,'2005-06-22 18:04:38',2,'2006-02-15 21:30:53'), - (1740,'2005-06-16 16:29:00',2282,324,'2005-06-20 14:07:00',2,'2006-02-15 21:30:53'), - (1741,'2005-06-16 16:31:37',3722,176,'2005-06-25 21:38:37',1,'2006-02-15 21:30:53'), - (1742,'2005-06-16 16:37:48',2772,576,'2005-06-17 19:47:48',2,'2006-02-15 21:30:53'), - (1743,'2005-06-16 16:38:10',2777,258,'2005-06-17 13:13:10',1,'2006-02-15 21:30:53'), - (1744,'2005-06-16 16:39:58',3075,230,'2005-06-18 19:50:58',2,'2006-02-15 21:30:53'), - (1745,'2005-06-16 16:41:16',2812,178,'2005-06-23 21:02:16',2,'2006-02-15 21:30:53'), - (1746,'2005-06-16 16:41:19',4272,385,'2005-06-19 11:28:19',2,'2006-02-15 21:30:53'), - (1747,'2005-06-16 16:53:33',1661,273,'2005-06-25 21:48:33',2,'2006-02-15 21:30:53'), - (1748,'2005-06-16 16:54:03',2434,473,'2005-06-18 20:11:03',1,'2006-02-15 21:30:53'), - (1749,'2005-06-16 16:56:00',1554,283,'2005-06-21 21:02:00',2,'2006-02-15 21:30:53'), - (1750,'2005-06-16 16:57:36',1103,321,'2005-06-25 21:51:36',1,'2006-02-15 21:30:53'), - (1751,'2005-06-16 17:00:14',138,123,'2005-06-17 12:12:14',2,'2006-02-15 21:30:53'), - (1752,'2005-06-16 17:02:55',3529,12,'2005-06-23 19:09:55',2,'2006-02-15 21:30:53'), - (1753,'2005-06-16 17:08:17',3817,249,'2005-06-21 21:47:17',2,'2006-02-15 21:30:53'), - (1754,'2005-06-16 17:13:23',4106,25,'2005-06-22 20:46:23',1,'2006-02-15 21:30:53'), - (1755,'2005-06-16 17:18:44',1721,117,'2005-06-17 16:54:44',1,'2006-02-15 21:30:53'), - (1756,'2005-06-16 17:22:33',1401,571,'2005-06-21 16:52:33',1,'2006-02-15 21:30:53'), - (1757,'2005-06-16 17:32:24',4491,510,'2005-06-18 13:12:24',1,'2006-02-15 21:30:53'), - (1758,'2005-06-16 17:39:39',2654,474,'2005-06-25 13:06:39',1,'2006-02-15 21:30:53'), - (1759,'2005-06-16 17:46:37',1402,430,'2005-06-24 19:40:37',2,'2006-02-15 21:30:53'), - (1760,'2005-06-16 17:48:37',3929,261,'2005-06-18 16:01:37',2,'2006-02-15 21:30:53'), - (1761,'2005-06-16 17:49:57',1570,521,'2005-06-17 21:03:57',2,'2006-02-15 21:30:53'), - (1762,'2005-06-16 17:50:19',3050,116,'2005-06-19 21:35:19',2,'2006-02-15 21:30:53'), - (1763,'2005-06-16 17:51:01',1941,389,'2005-06-20 17:27:01',1,'2006-02-15 21:30:53'), - (1764,'2005-06-16 17:51:54',705,392,'2005-06-21 20:36:54',2,'2006-02-15 21:30:53'), - (1765,'2005-06-16 17:56:10',822,273,'2005-06-19 23:40:10',2,'2006-02-15 21:30:53'), - (1766,'2005-06-16 17:59:37',2041,118,'2005-06-18 16:32:37',2,'2006-02-15 21:30:53'), - (1767,'2005-06-16 18:01:36',1162,205,'2005-06-18 12:39:36',2,'2006-02-15 21:30:53'), - (1768,'2005-06-16 18:02:06',2131,131,'2005-06-23 17:19:06',2,'2006-02-15 21:30:53'), - (1769,'2005-06-16 18:07:48',1229,397,'2005-06-22 12:39:48',1,'2006-02-15 21:30:53'), - (1770,'2005-06-16 18:07:55',1681,359,'2005-06-23 23:49:55',2,'2006-02-15 21:30:53'), - (1771,'2005-06-16 18:12:17',1769,416,'2005-06-18 16:11:17',1,'2006-02-15 21:30:53'), - (1772,'2005-06-16 18:12:54',1269,525,'2005-06-24 19:55:54',1,'2006-02-15 21:30:53'), - (1773,'2005-06-16 18:13:43',4396,462,'2005-06-24 17:43:43',2,'2006-02-15 21:30:53'), - (1774,'2005-06-16 18:27:52',3058,442,'2005-06-21 13:35:52',2,'2006-02-15 21:30:53'), - (1775,'2005-06-16 18:28:19',1922,123,'2005-06-25 13:09:19',2,'2006-02-15 21:30:53'), - (1776,'2005-06-16 18:46:58',1404,472,'2005-06-24 16:01:58',1,'2006-02-15 21:30:53'), - (1777,'2005-06-16 18:52:12',3325,49,'2005-06-25 13:55:12',1,'2006-02-15 21:30:53'), - (1778,'2005-06-16 18:54:48',2512,341,'2005-06-22 16:08:48',2,'2006-02-15 21:30:53'), - (1779,'2005-06-16 18:55:11',1044,438,'2005-06-17 20:11:11',1,'2006-02-15 21:30:53'), - (1780,'2005-06-16 19:11:45',146,352,'2005-06-19 15:34:45',2,'2006-02-15 21:30:53'), - (1781,'2005-06-16 19:20:24',2841,429,'2005-06-25 17:02:24',2,'2006-02-15 21:30:53'), - (1782,'2005-06-16 19:21:12',1820,498,'2005-06-22 16:03:12',2,'2006-02-15 21:30:53'), - (1783,'2005-06-16 19:23:23',50,18,'2005-06-18 00:57:23',1,'2006-02-15 21:30:53'), - (1784,'2005-06-16 19:25:32',3792,134,'2005-06-20 00:00:32',2,'2006-02-15 21:30:53'), - (1785,'2005-06-16 19:27:12',3413,50,'2005-06-24 19:25:12',1,'2006-02-15 21:30:53'), - (1786,'2005-06-16 19:30:54',263,323,'2005-06-19 14:24:54',1,'2006-02-15 21:30:53'), - (1787,'2005-06-16 19:30:59',3823,546,'2005-06-21 18:25:59',2,'2006-02-15 21:30:53'), - (1788,'2005-06-16 19:47:18',3794,357,'2005-06-22 23:10:18',1,'2006-02-15 21:30:53'), - (1789,'2005-06-16 19:49:18',4264,105,'2005-06-23 17:07:18',2,'2006-02-15 21:30:53'), - (1790,'2005-06-16 19:58:40',1070,158,'2005-06-17 19:31:40',2,'2006-02-15 21:30:53'), - (1791,'2005-06-16 20:04:28',301,76,'2005-06-23 22:30:28',1,'2006-02-15 21:30:53'), - (1792,'2005-06-16 20:04:50',3800,351,'2005-06-26 00:57:50',1,'2006-02-15 21:30:53'), - (1793,'2005-06-16 20:07:27',4356,230,'2005-06-19 20:55:27',1,'2006-02-15 21:30:53'), - (1794,'2005-06-16 20:08:37',497,452,'2005-06-22 01:54:37',1,'2006-02-15 21:30:53'), - (1795,'2005-06-16 20:09:01',536,56,'2005-06-24 17:50:01',2,'2006-02-15 21:30:53'), - (1796,'2005-06-16 20:10:43',3229,283,'2005-06-20 19:12:43',1,'2006-02-15 21:30:53'), - (1797,'2005-06-16 20:13:03',3435,275,'2005-06-22 22:56:03',1,'2006-02-15 21:30:53'), - (1798,'2005-06-16 20:16:15',1654,429,'2005-06-20 22:23:15',2,'2006-02-15 21:30:53'), - (1799,'2005-06-16 20:17:20',2847,505,'2005-06-20 23:55:20',1,'2006-02-15 21:30:53'), - (1800,'2005-06-16 20:18:46',2058,149,'2005-06-20 17:12:46',1,'2006-02-15 21:30:53'), - (1801,'2005-06-16 20:21:53',1015,10,'2005-06-18 23:18:53',1,'2006-02-15 21:30:53'), - (1802,'2005-06-16 20:23:30',4174,455,'2005-06-21 20:02:30',1,'2006-02-15 21:30:53'), - (1803,'2005-06-16 20:32:47',3784,127,'2005-06-21 02:03:47',1,'2006-02-15 21:30:53'), - (1804,'2005-06-16 20:33:15',1152,570,'2005-06-18 02:31:15',2,'2006-02-15 21:30:53'), - (1805,'2005-06-16 20:36:00',3962,208,'2005-06-17 16:27:00',1,'2006-02-15 21:30:53'), - (1806,'2005-06-16 20:41:57',2053,45,'2005-06-18 19:25:57',2,'2006-02-15 21:30:53'), - (1807,'2005-06-16 20:58:59',1174,338,'2005-06-20 21:31:59',2,'2006-02-15 21:30:53'), - (1808,'2005-06-16 20:59:35',2424,466,'2005-06-24 15:31:35',1,'2006-02-15 21:30:53'), - (1809,'2005-06-16 21:00:20',1071,517,'2005-06-25 20:25:20',1,'2006-02-15 21:30:53'), - (1810,'2005-06-16 21:06:00',2368,7,'2005-06-21 21:24:00',1,'2006-02-15 21:30:53'), - (1811,'2005-06-16 21:06:20',3700,235,'2005-06-21 21:59:20',2,'2006-02-15 21:30:53'), - (1812,'2005-06-16 21:08:46',751,37,'2005-06-21 15:44:46',2,'2006-02-15 21:30:53'), - (1813,'2005-06-16 21:11:00',1236,259,'2005-06-24 15:30:00',1,'2006-02-15 21:30:53'), - (1814,'2005-06-16 21:15:22',39,144,'2005-06-23 17:00:22',1,'2006-02-15 21:30:53'), - (1815,'2005-06-16 21:16:07',1551,84,'2005-06-17 16:37:07',2,'2006-02-15 21:30:53'), - (1816,'2005-06-16 21:20:41',2861,594,'2005-06-18 02:21:41',1,'2006-02-15 21:30:53'), - (1817,'2005-06-16 21:20:52',1354,574,'2005-06-19 16:24:52',2,'2006-02-15 21:30:53'), - (1818,'2005-06-16 21:30:34',1218,63,'2005-06-20 03:27:34',2,'2006-02-15 21:30:53'), - (1819,'2005-06-16 21:32:50',1689,386,'2005-06-26 01:11:50',1,'2006-02-15 21:30:53'), - (1820,'2005-06-16 21:34:50',3672,120,'2005-06-20 16:50:50',1,'2006-02-15 21:30:53'), - (1821,'2005-06-16 21:42:49',3207,468,'2005-06-20 16:25:49',2,'2006-02-15 21:30:53'), - (1822,'2005-06-16 21:43:45',674,86,'2005-06-17 21:37:45',1,'2006-02-15 21:30:53'), - (1823,'2005-06-16 21:48:16',3871,448,'2005-06-22 03:09:16',1,'2006-02-15 21:30:53'), - (1824,'2005-06-16 21:51:04',2269,575,'2005-06-18 18:12:04',1,'2006-02-15 21:30:53'), - (1825,'2005-06-16 21:53:05',2908,55,'2005-06-20 17:22:05',2,'2006-02-15 21:30:53'), - (1826,'2005-06-16 21:53:52',421,578,'2005-06-25 18:46:52',2,'2006-02-15 21:30:53'), - (1827,'2005-06-16 21:54:40',3804,423,'2005-06-19 21:28:40',2,'2006-02-15 21:30:53'), - (1828,'2005-06-16 22:04:34',316,68,'2005-06-20 21:07:34',2,'2006-02-15 21:30:53'), - (1829,'2005-06-16 22:14:21',617,293,'2005-06-21 16:51:21',1,'2006-02-15 21:30:53'), - (1830,'2005-06-16 22:18:43',4010,499,'2005-06-23 21:14:43',2,'2006-02-15 21:30:53'), - (1831,'2005-06-16 22:22:17',2610,383,'2005-06-25 23:23:17',2,'2006-02-15 21:30:53'), - (1832,'2005-06-16 22:35:20',500,220,'2005-06-19 03:09:20',1,'2006-02-15 21:30:53'), - (1833,'2005-06-16 22:45:03',1337,121,'2005-06-20 22:02:03',2,'2006-02-15 21:30:53'), - (1834,'2005-06-16 22:49:08',4018,189,'2005-06-22 21:08:08',1,'2006-02-15 21:30:53'), - (1835,'2005-06-16 23:05:36',1482,112,'2005-06-19 04:46:36',1,'2006-02-15 21:30:53'), - (1836,'2005-06-16 23:13:05',2753,176,'2005-06-24 01:40:05',2,'2006-02-15 21:30:53'), - (1837,'2005-06-16 23:16:15',1259,309,'2005-06-21 21:54:15',1,'2006-02-15 21:30:53'), - (1838,'2005-06-16 23:20:16',513,31,'2005-06-20 02:34:16',1,'2006-02-15 21:30:53'), - (1839,'2005-06-16 23:22:22',2750,223,'2005-06-23 00:33:22',1,'2006-02-15 21:30:53'), - (1840,'2005-06-16 23:39:34',340,404,'2005-06-21 23:36:34',1,'2006-02-15 21:30:53'), - (1841,'2005-06-16 23:44:13',2363,6,'2005-06-22 04:09:13',1,'2006-02-15 21:30:53'), - (1842,'2005-06-16 23:45:59',1472,426,'2005-06-26 05:31:59',1,'2006-02-15 21:30:53'), - (1843,'2005-06-16 23:53:42',2714,132,'2005-06-22 18:33:42',2,'2006-02-15 21:30:53'), - (1844,'2005-06-16 23:53:53',2307,454,'2005-06-22 02:19:53',2,'2006-02-15 21:30:53'), - (1845,'2005-06-16 23:56:11',3395,215,'2005-06-19 01:41:11',2,'2006-02-15 21:30:53'), - (1846,'2005-06-17 00:02:44',1725,422,'2005-06-18 23:47:44',2,'2006-02-15 21:30:53'), - (1847,'2005-06-17 00:05:22',1189,363,'2005-06-20 21:09:22',1,'2006-02-15 21:30:53'), - (1848,'2005-06-17 00:07:07',3797,526,'2005-06-21 21:41:07',2,'2006-02-15 21:30:53'), - (1849,'2005-06-17 00:13:19',2507,341,'2005-06-23 18:37:19',2,'2006-02-15 21:30:53'), - (1850,'2005-06-17 00:31:35',761,517,'2005-06-25 05:19:35',1,'2006-02-15 21:30:53'), - (1851,'2005-06-17 00:32:26',1121,451,'2005-06-22 19:54:26',2,'2006-02-15 21:30:53'), - (1852,'2005-06-17 00:38:20',4122,271,'2005-06-22 20:04:20',2,'2006-02-15 21:30:53'), - (1853,'2005-06-17 00:39:54',2949,301,'2005-06-19 00:22:54',2,'2006-02-15 21:30:53'), - (1854,'2005-06-17 00:43:57',119,37,'2005-06-23 05:49:57',1,'2006-02-15 21:30:53'), - (1855,'2005-06-17 00:54:58',4457,492,'2005-06-20 19:29:58',1,'2006-02-15 21:30:53'), - (1856,'2005-06-17 01:02:00',3034,161,'2005-06-19 21:29:00',2,'2006-02-15 21:30:53'), - (1857,'2005-06-17 01:12:58',4257,427,'2005-06-21 04:49:58',1,'2006-02-15 21:30:53'), - (1858,'2005-06-17 01:13:11',3200,99,'2005-06-18 21:33:11',2,'2006-02-15 21:30:53'), - (1859,'2005-06-17 01:13:38',3405,533,'2005-06-18 03:13:38',1,'2006-02-15 21:30:53'), - (1860,'2005-06-17 01:17:12',1853,293,'2005-06-21 22:35:12',1,'2006-02-15 21:30:53'), - (1861,'2005-06-17 01:17:31',135,454,'2005-06-25 02:11:31',1,'2006-02-15 21:30:53'), - (1862,'2005-06-17 01:29:30',3299,553,'2005-06-25 20:43:30',1,'2006-02-15 21:30:53'), - (1863,'2005-06-17 01:31:46',4466,550,'2005-06-26 02:09:46',2,'2006-02-15 21:30:53'), - (1864,'2005-06-17 01:39:47',1815,130,'2005-06-24 19:39:47',2,'2006-02-15 21:30:53'), - (1865,'2005-06-17 01:49:36',2657,526,'2005-06-23 21:13:36',1,'2006-02-15 21:30:53'), - (1866,'2005-06-17 01:53:19',2579,575,'2005-06-19 06:14:19',2,'2006-02-15 21:30:53'), - (1867,'2005-06-17 02:01:37',3537,415,'2005-06-25 04:52:37',2,'2006-02-15 21:30:53'), - (1868,'2005-06-17 02:03:22',2412,380,'2005-06-25 04:38:22',1,'2006-02-15 21:30:53'), - (1869,'2005-06-17 02:08:00',871,351,'2005-06-19 21:43:00',1,'2006-02-15 21:30:53'), - (1870,'2005-06-17 02:24:36',895,191,'2005-06-17 23:04:36',2,'2006-02-15 21:30:53'), - (1871,'2005-06-17 02:25:12',481,204,'2005-06-23 03:16:12',2,'2006-02-15 21:30:53'), - (1872,'2005-06-17 02:27:03',3596,206,'2005-06-20 22:41:03',2,'2006-02-15 21:30:53'), - (1873,'2005-06-17 02:38:28',2933,71,'2005-06-23 04:39:28',1,'2006-02-15 21:30:53'), - (1874,'2005-06-17 02:39:20',3884,30,'2005-06-24 04:41:20',2,'2006-02-15 21:30:53'), - (1875,'2005-06-17 02:45:10',1652,528,'2005-06-22 22:54:10',2,'2006-02-15 21:30:53'), - (1876,'2005-06-17 02:50:51',384,459,'2005-06-18 07:21:51',1,'2006-02-15 21:30:53'), - (1877,'2005-06-17 02:54:16',3404,261,'2005-06-25 21:51:16',2,'2006-02-15 21:30:53'), - (1878,'2005-06-17 02:55:32',3319,381,'2005-06-21 03:44:32',1,'2006-02-15 21:30:53'), - (1879,'2005-06-17 02:57:34',3983,343,'2005-06-19 00:00:34',1,'2006-02-15 21:30:53'), - (1880,'2005-06-17 03:08:59',1133,289,'2005-06-19 07:16:59',1,'2006-02-15 21:30:53'), - (1881,'2005-06-17 03:09:56',159,134,'2005-06-18 01:49:56',1,'2006-02-15 21:30:53'), - (1882,'2005-06-17 03:17:21',1400,47,'2005-06-19 22:23:21',2,'2006-02-15 21:30:53'), - (1883,'2005-06-17 03:18:51',3504,550,'2005-06-18 05:46:51',1,'2006-02-15 21:30:53'), - (1884,'2005-06-17 03:19:20',4567,305,'2005-06-21 00:19:20',1,'2006-02-15 21:30:53'), - (1885,'2005-06-17 03:35:59',740,588,'2005-06-21 05:57:59',2,'2006-02-15 21:30:53'), - (1886,'2005-06-17 03:36:02',2367,505,'2005-06-19 08:12:02',2,'2006-02-15 21:30:53'), - (1887,'2005-06-17 03:53:18',3591,32,'2005-06-25 07:37:18',2,'2006-02-15 21:30:53'), - (1888,'2005-06-17 03:58:36',2872,405,'2005-06-22 09:28:36',1,'2006-02-15 21:30:53'), - (1889,'2005-06-17 04:05:12',3909,572,'2005-06-26 04:13:12',1,'2006-02-15 21:30:53'), - (1890,'2005-06-17 04:06:13',1764,447,'2005-06-22 07:46:13',2,'2006-02-15 21:30:53'), - (1891,'2005-06-17 04:16:44',3576,109,'2005-06-24 07:20:44',1,'2006-02-15 21:30:53'), - (1892,'2005-06-17 04:17:33',139,319,'2005-06-20 00:06:33',1,'2006-02-15 21:30:53'), - (1893,'2005-06-17 04:18:37',3346,390,'2005-06-23 23:35:37',2,'2006-02-15 21:30:53'), - (1894,'2005-06-17 04:18:48',3707,204,'2005-06-26 00:07:48',1,'2006-02-15 21:30:53'), - (1895,'2005-06-17 04:25:12',680,30,'2005-06-26 08:44:12',1,'2006-02-15 21:30:53'), - (1896,'2005-06-17 04:25:46',2077,270,'2005-06-26 09:37:46',1,'2006-02-15 21:30:53'), - (1897,'2005-06-17 04:26:23',4142,422,'2005-06-25 09:32:23',2,'2006-02-15 21:30:53'), - (1898,'2005-06-17 04:28:11',2873,143,'2005-06-25 07:04:11',2,'2006-02-15 21:30:53'), - (1899,'2005-06-17 04:29:15',858,200,'2005-06-26 08:39:15',1,'2006-02-15 21:30:53'), - (1900,'2005-06-17 04:29:58',1425,34,'2005-06-21 05:58:58',1,'2006-02-15 21:30:53'), - (1901,'2005-06-17 04:35:19',2469,292,'2005-06-25 06:09:19',2,'2006-02-15 21:30:53'), - (1902,'2005-06-17 04:35:52',2905,479,'2005-06-20 06:52:52',2,'2006-02-15 21:30:53'), - (1903,'2005-06-17 04:37:20',1939,588,'2005-06-26 09:05:20',2,'2006-02-15 21:30:53'), - (1904,'2005-06-17 04:45:41',2472,87,'2005-06-17 23:56:41',2,'2006-02-15 21:30:53'), - (1905,'2005-06-17 04:51:43',1043,39,'2005-06-24 09:35:43',1,'2006-02-15 21:30:53'), - (1906,'2005-06-17 04:53:35',1049,455,'2005-06-21 01:16:35',2,'2006-02-15 21:30:53'), - (1907,'2005-06-17 05:08:27',988,66,'2005-06-23 09:13:27',1,'2006-02-15 21:30:53'), - (1908,'2005-06-17 05:10:36',399,358,'2005-06-19 03:52:36',1,'2006-02-15 21:30:53'), - (1909,'2005-06-17 05:11:04',2599,269,'2005-06-19 04:33:04',2,'2006-02-15 21:30:53'), - (1910,'2005-06-17 05:11:27',3903,199,'2005-06-23 23:16:27',1,'2006-02-15 21:30:53'), - (1911,'2005-06-17 05:15:15',910,3,'2005-06-24 11:05:15',2,'2006-02-15 21:30:53'), - (1912,'2005-06-17 05:18:32',4136,538,'2005-06-20 10:01:32',2,'2006-02-15 21:30:53'), - (1913,'2005-06-17 05:19:47',1825,116,'2005-06-21 03:39:47',1,'2006-02-15 21:30:53'), - (1914,'2005-06-17 05:25:54',3406,450,'2005-06-24 04:25:54',2,'2006-02-15 21:30:53'), - (1915,'2005-06-17 05:28:28',2620,393,'2005-06-21 07:12:28',2,'2006-02-15 21:30:53'), - (1916,'2005-06-17 05:29:59',4428,429,'2005-06-26 05:35:59',2,'2006-02-15 21:30:53'), - (1917,'2005-06-17 05:36:07',2667,400,'2005-06-24 01:44:07',1,'2006-02-15 21:30:53'), - (1918,'2005-06-17 05:40:14',3749,310,'2005-06-21 08:53:14',2,'2006-02-15 21:30:53'), - (1919,'2005-06-17 05:40:52',3855,197,'2005-06-23 05:58:52',1,'2006-02-15 21:30:53'), - (1920,'2005-06-17 06:00:23',2199,75,'2005-06-24 04:49:23',1,'2006-02-15 21:30:53'), - (1921,'2005-06-17 06:04:16',4369,417,'2005-06-23 05:26:16',2,'2006-02-15 21:30:53'), - (1922,'2005-06-17 06:04:25',2484,343,'2005-06-18 09:15:25',2,'2006-02-15 21:30:53'), - (1923,'2005-06-17 06:06:10',691,400,'2005-06-24 04:29:10',2,'2006-02-15 21:30:53'), - (1924,'2005-06-17 06:13:34',2577,86,'2005-06-18 01:51:34',1,'2006-02-15 21:30:53'), - (1925,'2005-06-17 06:16:47',3995,510,'2005-06-21 06:03:47',1,'2006-02-15 21:30:53'), - (1926,'2005-06-17 06:24:30',3509,462,'2005-06-25 03:39:30',2,'2006-02-15 21:30:53'), - (1927,'2005-06-17 06:48:19',3304,188,'2005-06-21 03:23:19',1,'2006-02-15 21:30:53'), - (1928,'2005-06-17 06:48:31',3454,353,'2005-06-26 08:17:31',1,'2006-02-15 21:30:53'), - (1929,'2005-06-17 06:49:30',573,327,'2005-06-22 12:07:30',2,'2006-02-15 21:30:53'), - (1930,'2005-06-17 06:50:46',79,112,'2005-06-19 08:51:46',2,'2006-02-15 21:30:53'), - (1931,'2005-06-17 06:51:56',1411,391,'2005-06-22 08:27:56',1,'2006-02-15 21:30:53'), - (1932,'2005-06-17 06:54:41',3185,120,'2005-06-19 05:12:41',2,'2006-02-15 21:30:53'), - (1933,'2005-06-17 06:54:42',980,13,'2005-06-26 02:00:42',1,'2006-02-15 21:30:53'), - (1934,'2005-06-17 07:04:57',4000,16,'2005-06-25 12:21:57',2,'2006-02-15 21:30:53'), - (1935,'2005-06-17 07:14:15',1962,295,'2005-06-20 05:59:15',1,'2006-02-15 21:30:53'), - (1936,'2005-06-17 07:15:41',3037,213,'2005-06-18 11:37:41',2,'2006-02-15 21:30:53'), - (1937,'2005-06-17 07:16:46',1266,385,'2005-06-21 04:22:46',2,'2006-02-15 21:30:53'), - (1938,'2005-06-17 07:18:36',570,454,'2005-06-19 01:43:36',2,'2006-02-15 21:30:53'), - (1939,'2005-06-17 07:26:45',605,11,'2005-06-25 13:06:45',2,'2006-02-15 21:30:53'), - (1940,'2005-06-17 07:42:22',105,451,'2005-06-22 11:59:22',1,'2006-02-15 21:30:53'), - (1941,'2005-06-17 07:42:45',1063,519,'2005-06-20 07:12:45',1,'2006-02-15 21:30:53'), - (1942,'2005-06-17 07:43:39',261,143,'2005-06-25 02:24:39',1,'2006-02-15 21:30:53'), - (1943,'2005-06-17 07:49:17',4327,144,'2005-06-20 03:47:17',1,'2006-02-15 21:30:53'), - (1944,'2005-06-17 07:50:53',318,16,'2005-06-23 02:52:53',2,'2006-02-15 21:30:53'), - (1945,'2005-06-17 07:51:26',3366,207,'2005-06-23 13:22:26',2,'2006-02-15 21:30:53'), - (1946,'2005-06-17 07:58:39',2335,389,'2005-06-25 06:49:39',2,'2006-02-15 21:30:53'), - (1947,'2005-06-17 08:02:20',3344,479,'2005-06-25 10:25:20',1,'2006-02-15 21:30:53'), - (1948,'2005-06-17 08:06:53',46,89,'2005-06-21 05:00:53',1,'2006-02-15 21:30:53'), - (1949,'2005-06-17 08:19:22',1478,208,'2005-06-25 08:43:22',1,'2006-02-15 21:30:53'), - (1950,'2005-06-17 08:26:52',723,594,'2005-06-22 08:08:52',2,'2006-02-15 21:30:53'), - (1951,'2005-06-17 08:30:35',955,123,'2005-06-20 10:43:35',2,'2006-02-15 21:30:53'), - (1952,'2005-06-17 08:33:02',1823,338,'2005-06-21 14:00:02',2,'2006-02-15 21:30:53'), - (1953,'2005-06-17 08:34:57',3549,405,'2005-06-24 09:38:57',2,'2006-02-15 21:30:53'), - (1954,'2005-06-17 08:37:55',3203,533,'2005-06-20 02:55:55',2,'2006-02-15 21:30:53'), - (1955,'2005-06-17 08:40:22',811,311,'2005-06-19 10:47:22',1,'2006-02-15 21:30:53'), - (1956,'2005-06-17 08:43:32',1403,492,'2005-06-21 11:08:32',1,'2006-02-15 21:30:53'), - (1957,'2005-06-17 08:50:58',2496,68,'2005-06-26 13:39:58',2,'2006-02-15 21:30:53'), - (1958,'2005-06-17 08:52:01',1843,581,'2005-06-23 07:55:01',2,'2006-02-15 21:30:53'), - (1959,'2005-06-17 08:54:10',1464,554,'2005-06-20 05:02:10',2,'2006-02-15 21:30:53'), - (1960,'2005-06-17 08:59:57',2202,27,'2005-06-23 14:38:57',2,'2006-02-15 21:30:53'), - (1961,'2005-06-17 09:02:58',2851,384,'2005-06-20 03:07:58',1,'2006-02-15 21:30:53'), - (1962,'2005-06-17 09:08:58',4386,536,'2005-06-23 14:55:58',1,'2006-02-15 21:30:53'), - (1963,'2005-06-17 09:09:31',1943,154,'2005-06-24 13:16:31',2,'2006-02-15 21:30:53'), - (1964,'2005-06-17 09:10:09',3390,53,'2005-06-21 15:08:09',1,'2006-02-15 21:30:53'), - (1965,'2005-06-17 09:17:39',480,256,'2005-06-18 12:35:39',2,'2006-02-15 21:30:53'), - (1966,'2005-06-17 09:19:45',2085,6,'2005-06-20 11:19:45',1,'2006-02-15 21:30:53'), - (1967,'2005-06-17 09:19:52',3225,558,'2005-06-21 03:35:52',1,'2006-02-15 21:30:53'), - (1968,'2005-06-17 09:20:36',1139,246,'2005-06-18 11:06:36',2,'2006-02-15 21:30:53'), - (1969,'2005-06-17 09:22:22',4450,337,'2005-06-21 05:31:22',2,'2006-02-15 21:30:53'), - (1970,'2005-06-17 09:23:16',1358,303,'2005-06-22 09:40:16',2,'2006-02-15 21:30:53'), - (1971,'2005-06-17 09:23:59',2870,357,'2005-06-25 13:20:59',2,'2006-02-15 21:30:53'), - (1972,'2005-06-17 09:25:49',2758,526,'2005-06-24 09:59:49',2,'2006-02-15 21:30:53'), - (1973,'2005-06-17 09:26:15',3669,256,'2005-06-21 10:18:15',1,'2006-02-15 21:30:53'), - (1974,'2005-06-17 09:30:05',1979,111,'2005-06-21 12:10:05',1,'2006-02-15 21:30:53'), - (1975,'2005-06-17 09:32:10',2520,468,'2005-06-23 03:50:10',2,'2006-02-15 21:30:53'), - (1976,'2005-06-17 09:38:08',3631,184,'2005-06-23 07:23:08',2,'2006-02-15 21:30:53'), - (1977,'2005-06-17 09:38:22',2468,459,'2005-06-23 14:19:22',2,'2006-02-15 21:30:53'), - (1978,'2005-06-17 09:42:34',1590,278,'2005-06-20 09:13:34',2,'2006-02-15 21:30:53'), - (1979,'2005-06-17 09:45:30',3470,45,'2005-06-20 10:52:30',1,'2006-02-15 21:30:53'), - (1980,'2005-06-17 09:48:05',2985,328,'2005-06-23 14:43:05',1,'2006-02-15 21:30:53'), - (1981,'2005-06-17 10:03:34',3186,526,'2005-06-20 13:14:34',2,'2006-02-15 21:30:53'), - (1982,'2005-06-17 10:12:15',1091,566,'2005-06-20 13:56:15',1,'2006-02-15 21:30:53'), - (1983,'2005-06-17 10:22:13',1955,365,'2005-06-24 05:04:13',1,'2006-02-15 21:30:53'), - (1984,'2005-06-17 10:25:28',3417,380,'2005-06-23 08:18:28',2,'2006-02-15 21:30:53'), - (1985,'2005-06-17 10:31:37',87,411,'2005-06-22 11:17:37',1,'2006-02-15 21:30:53'), - (1986,'2005-06-17 10:34:59',2894,541,'2005-06-24 04:57:59',2,'2006-02-15 21:30:53'), - (1987,'2005-06-17 10:40:36',110,479,'2005-06-23 14:23:36',1,'2006-02-15 21:30:53'), - (1988,'2005-06-17 10:42:34',3054,261,'2005-06-25 11:47:34',2,'2006-02-15 21:30:53'), - (1989,'2005-06-17 10:47:24',634,35,'2005-06-19 05:12:24',1,'2006-02-15 21:30:53'), - (1990,'2005-06-17 10:48:44',1471,571,'2005-06-24 08:11:44',1,'2006-02-15 21:30:53'), - (1991,'2005-06-17 10:49:23',3963,105,'2005-06-25 10:48:23',1,'2006-02-15 21:30:53'), - (1992,'2005-06-17 10:58:53',636,233,'2005-06-19 08:42:53',2,'2006-02-15 21:30:53'), - (1993,'2005-06-17 10:59:24',168,234,'2005-06-23 07:30:24',2,'2006-02-15 21:30:53'), - (1994,'2005-06-17 11:07:06',2203,346,'2005-06-25 08:32:06',2,'2006-02-15 21:30:53'), - (1995,'2005-06-17 11:11:14',1866,10,'2005-06-26 16:37:14',1,'2006-02-15 21:30:53'), - (1996,'2005-06-17 11:17:45',3074,149,'2005-06-26 09:42:45',1,'2006-02-15 21:30:53'), - (1997,'2005-06-17 11:19:43',846,411,'2005-06-19 14:18:43',1,'2006-02-15 21:30:53'), - (1998,'2005-06-17 11:24:57',4365,562,'2005-06-26 09:48:57',1,'2006-02-15 21:30:53'), - (1999,'2005-06-17 11:30:08',3704,111,'2005-06-23 08:36:08',1,'2006-02-15 21:30:53'), - (2000,'2005-06-17 11:32:30',323,163,'2005-06-22 13:37:30',1,'2006-02-15 21:30:53'), - (2001,'2005-06-17 11:35:09',2069,260,'2005-06-21 14:52:09',2,'2006-02-15 21:30:53'), - (2002,'2005-06-17 11:39:58',2406,514,'2005-06-24 15:41:58',2,'2006-02-15 21:30:53'), - (2003,'2005-06-17 11:40:35',1581,515,'2005-06-19 08:30:35',2,'2006-02-15 21:30:53'), - (2004,'2005-06-17 11:43:38',1342,171,'2005-06-24 08:05:38',2,'2006-02-15 21:30:53'), - (2005,'2005-06-17 11:44:54',4177,234,'2005-06-19 10:53:54',1,'2006-02-15 21:30:53'), - (2006,'2005-06-17 11:47:03',992,215,'2005-06-19 13:47:03',2,'2006-02-15 21:30:53'), - (2007,'2005-06-17 11:47:17',1123,572,'2005-06-21 07:19:17',1,'2006-02-15 21:30:53'), - (2008,'2005-06-17 11:48:05',2081,570,'2005-06-25 13:16:05',1,'2006-02-15 21:30:53'), - (2009,'2005-06-17 11:48:31',1902,119,'2005-06-18 09:34:31',2,'2006-02-15 21:30:53'), - (2010,'2005-06-17 11:54:15',2845,329,'2005-06-21 05:55:15',1,'2006-02-15 21:30:53'), - (2011,'2005-06-17 11:56:09',734,350,'2005-06-24 06:47:09',2,'2006-02-15 21:30:53'), - (2012,'2005-06-17 11:57:15',3588,84,'2005-06-24 17:18:15',1,'2006-02-15 21:30:53'), - (2013,'2005-06-17 12:03:01',3256,165,'2005-06-24 10:04:01',1,'2006-02-15 21:30:53'), - (2014,'2005-06-17 12:03:28',2969,337,'2005-06-25 16:00:28',2,'2006-02-15 21:30:53'), - (2015,'2005-06-17 12:16:29',3776,484,'2005-06-18 14:40:29',2,'2006-02-15 21:30:53'), - (2016,'2005-06-17 12:18:36',4265,282,'2005-06-20 12:13:36',1,'2006-02-15 21:30:53'), - (2017,'2005-06-17 12:33:30',1434,516,'2005-06-19 10:08:30',2,'2006-02-15 21:30:53'), - (2018,'2005-06-17 12:35:58',1278,380,'2005-06-26 13:16:58',2,'2006-02-15 21:30:53'), - (2019,'2005-06-17 12:38:44',2314,528,'2005-06-23 17:38:44',2,'2006-02-15 21:30:53'), - (2020,'2005-06-17 12:39:50',1914,384,'2005-06-19 14:59:50',1,'2006-02-15 21:30:53'), - (2021,'2005-06-17 12:41:18',2852,319,'2005-06-23 17:17:18',2,'2006-02-15 21:30:53'), - (2022,'2005-06-17 12:44:39',3053,547,'2005-06-25 12:32:39',1,'2006-02-15 21:30:53'), - (2023,'2005-06-17 12:52:58',787,169,'2005-06-23 11:07:58',1,'2006-02-15 21:30:53'), - (2024,'2005-06-17 13:00:51',2566,329,'2005-06-22 07:03:51',1,'2006-02-15 21:30:53'), - (2025,'2005-06-17 13:04:00',1203,447,'2005-06-18 18:45:00',2,'2006-02-15 21:30:53'), - (2026,'2005-06-17 13:05:38',3681,491,'2005-06-21 17:19:38',1,'2006-02-15 21:30:53'), - (2027,'2005-06-17 13:06:56',4309,265,'2005-06-23 13:46:56',1,'2006-02-15 21:30:53'), - (2028,'2005-06-17 13:08:08',4451,155,'2005-06-23 10:54:08',1,'2006-02-15 21:30:53'), - (2029,'2005-06-17 13:10:59',914,512,'2005-06-19 18:15:59',1,'2006-02-15 21:30:53'), - (2030,'2005-06-17 13:13:27',4024,457,'2005-06-19 10:44:27',1,'2006-02-15 21:30:53'), - (2031,'2005-06-17 13:14:03',4275,570,'2005-06-25 10:06:03',2,'2006-02-15 21:30:53'), - (2032,'2005-06-17 13:24:07',425,316,'2005-06-18 18:18:07',1,'2006-02-15 21:30:53'), - (2033,'2005-06-17 13:24:43',58,90,'2005-06-20 12:34:43',1,'2006-02-15 21:30:53'), - (2034,'2005-06-17 13:27:16',1512,587,'2005-06-22 08:53:16',2,'2006-02-15 21:30:53'), - (2035,'2005-06-17 13:45:09',4371,158,'2005-06-26 15:30:09',2,'2006-02-15 21:30:53'), - (2036,'2005-06-17 13:46:52',100,486,'2005-06-18 15:42:52',2,'2006-02-15 21:30:53'), - (2037,'2005-06-17 13:54:20',2582,308,'2005-06-20 14:49:20',2,'2006-02-15 21:30:53'), - (2038,'2005-06-17 14:00:51',4231,138,'2005-06-19 11:54:51',2,'2006-02-15 21:30:53'), - (2039,'2005-06-17 14:03:43',1514,304,'2005-06-24 09:21:43',1,'2006-02-15 21:30:53'), - (2040,'2005-06-17 14:18:37',227,260,'2005-06-22 19:08:37',1,'2006-02-15 21:30:53'), - (2041,'2005-06-17 14:19:00',782,348,'2005-06-26 08:38:00',2,'2006-02-15 21:30:53'), - (2042,'2005-06-17 14:31:02',3102,84,'2005-06-18 14:43:02',1,'2006-02-15 21:30:53'), - (2043,'2005-06-17 14:31:12',2495,4,'2005-06-19 11:04:12',2,'2006-02-15 21:30:53'), - (2044,'2005-06-17 14:37:57',2418,484,'2005-06-22 17:15:57',2,'2006-02-15 21:30:53'), - (2045,'2005-06-17 14:38:11',561,391,'2005-06-26 13:44:11',2,'2006-02-15 21:30:53'), - (2046,'2005-06-17 14:39:50',872,374,'2005-06-24 16:02:50',1,'2006-02-15 21:30:53'), - (2047,'2005-06-17 14:40:58',2371,201,'2005-06-21 08:52:58',1,'2006-02-15 21:30:53'), - (2048,'2005-06-17 14:55:29',2055,454,'2005-06-23 16:29:29',2,'2006-02-15 21:30:53'), - (2049,'2005-06-17 14:58:36',1053,182,'2005-06-22 14:53:36',2,'2006-02-15 21:30:53'), - (2050,'2005-06-17 15:07:30',1963,549,'2005-06-18 14:43:30',1,'2006-02-15 21:30:53'), - (2051,'2005-06-17 15:10:16',2366,191,'2005-06-19 20:45:16',1,'2006-02-15 21:30:53'), - (2052,'2005-06-17 15:14:43',1686,172,'2005-06-21 11:08:43',1,'2006-02-15 21:30:53'), - (2053,'2005-06-17 15:19:34',4279,521,'2005-06-19 10:06:34',2,'2006-02-15 21:30:53'), - (2054,'2005-06-17 15:26:37',1588,295,'2005-06-26 14:22:37',1,'2006-02-15 21:30:53'), - (2055,'2005-06-17 15:27:03',1399,593,'2005-06-25 13:44:03',1,'2006-02-15 21:30:53'), - (2056,'2005-06-17 15:27:33',229,42,'2005-06-20 13:04:33',2,'2006-02-15 21:30:53'), - (2057,'2005-06-17 15:31:58',2803,190,'2005-06-25 09:39:58',1,'2006-02-15 21:30:53'), - (2058,'2005-06-17 15:34:41',1324,57,'2005-06-25 14:50:41',1,'2006-02-15 21:30:53'), - (2059,'2005-06-17 15:36:12',739,114,'2005-06-18 19:01:12',2,'2006-02-15 21:30:53'), - (2060,'2005-06-17 15:42:42',1523,64,'2005-06-22 16:39:42',1,'2006-02-15 21:30:53'), - (2061,'2005-06-17 15:47:00',4575,108,'2005-06-24 16:36:00',2,'2006-02-15 21:30:53'), - (2062,'2005-06-17 15:56:43',1749,55,'2005-06-20 21:37:43',2,'2006-02-15 21:30:53'), - (2063,'2005-06-17 15:56:53',4323,5,'2005-06-21 14:19:53',1,'2006-02-15 21:30:53'), - (2064,'2005-06-17 15:57:56',1970,67,'2005-06-23 21:04:56',2,'2006-02-15 21:30:53'), - (2065,'2005-06-17 16:03:46',844,266,'2005-06-22 16:41:46',2,'2006-02-15 21:30:53'), - (2066,'2005-06-17 16:07:08',2561,248,'2005-06-24 15:20:08',2,'2006-02-15 21:30:53'), - (2067,'2005-06-17 16:11:08',1711,297,'2005-06-22 13:01:08',2,'2006-02-15 21:30:53'), - (2068,'2005-06-17 16:11:46',4252,387,'2005-06-20 11:28:46',1,'2006-02-15 21:30:53'), - (2069,'2005-06-17 16:19:39',2746,551,'2005-06-26 16:48:39',1,'2006-02-15 21:30:53'), - (2070,'2005-06-17 16:27:51',2609,24,'2005-06-20 20:46:51',1,'2006-02-15 21:30:53'), - (2071,'2005-06-17 16:33:17',2867,479,'2005-06-23 21:51:17',1,'2006-02-15 21:30:53'), - (2072,'2005-06-17 16:33:32',86,261,'2005-06-23 13:22:32',1,'2006-02-15 21:30:53'), - (2073,'2005-06-17 16:33:59',3530,410,'2005-06-19 11:57:59',1,'2006-02-15 21:30:53'), - (2074,'2005-06-17 16:40:03',71,495,'2005-06-20 21:34:03',1,'2006-02-15 21:30:53'), - (2075,'2005-06-17 16:40:33',2415,459,'2005-06-19 13:55:33',2,'2006-02-15 21:30:53'), - (2076,'2005-06-17 16:43:47',2242,217,'2005-06-24 11:12:47',1,'2006-02-15 21:30:53'), - (2077,'2005-06-17 16:46:11',4478,113,'2005-06-19 15:10:11',1,'2006-02-15 21:30:53'), - (2078,'2005-06-17 16:48:55',2021,278,'2005-06-19 18:01:55',1,'2006-02-15 21:30:53'), - (2079,'2005-06-17 16:49:45',3853,465,'2005-06-18 18:10:45',1,'2006-02-15 21:30:53'), - (2080,'2005-06-17 16:59:40',1231,476,'2005-06-21 11:28:40',2,'2006-02-15 21:30:53'), - (2081,'2005-06-17 17:05:02',917,253,'2005-06-26 20:26:02',1,'2006-02-15 21:30:53'), - (2082,'2005-06-17 17:13:32',434,254,'2005-06-19 16:16:32',1,'2006-02-15 21:30:53'), - (2083,'2005-06-17 17:14:00',2423,97,'2005-06-18 18:31:00',2,'2006-02-15 21:30:53'), - (2084,'2005-06-17 17:17:19',428,92,'2005-06-22 14:57:19',1,'2006-02-15 21:30:53'), - (2085,'2005-06-17 17:30:56',2275,214,'2005-06-23 12:13:56',1,'2006-02-15 21:30:53'), - (2086,'2005-06-17 17:32:07',898,326,'2005-06-21 20:19:07',2,'2006-02-15 21:30:53'), - (2087,'2005-06-17 17:35:10',466,398,'2005-06-26 13:52:10',1,'2006-02-15 21:30:53'), - (2088,'2005-06-17 17:35:30',506,310,'2005-06-23 20:13:30',2,'2006-02-15 21:30:53'), - (2089,'2005-06-17 17:45:09',4030,156,'2005-06-25 16:41:09',1,'2006-02-15 21:30:53'), - (2090,'2005-06-17 18:06:14',17,197,'2005-06-22 23:52:14',1,'2006-02-15 21:30:53'), - (2091,'2005-06-17 18:09:04',4033,260,'2005-06-26 12:11:04',1,'2006-02-15 21:30:53'), - (2092,'2005-06-17 18:12:16',4427,556,'2005-06-25 15:06:16',2,'2006-02-15 21:30:53'), - (2093,'2005-06-17 18:14:08',814,26,'2005-06-26 18:10:08',1,'2006-02-15 21:30:53'), - (2094,'2005-06-17 18:18:56',2205,308,'2005-06-18 19:36:56',1,'2006-02-15 21:30:53'), - (2095,'2005-06-17 18:21:35',1907,8,'2005-06-23 23:49:35',2,'2006-02-15 21:30:53'), - (2096,'2005-06-17 18:33:04',1069,431,'2005-06-21 17:29:04',2,'2006-02-15 21:30:53'), - (2097,'2005-06-17 18:40:04',569,439,'2005-06-23 13:49:04',1,'2006-02-15 21:30:53'), - (2098,'2005-06-17 18:42:09',3951,274,'2005-06-19 20:40:09',1,'2006-02-15 21:30:53'), - (2099,'2005-06-17 18:47:26',3660,146,'2005-06-24 22:31:26',2,'2006-02-15 21:30:53'), - (2100,'2005-06-17 18:53:21',2267,387,'2005-06-19 21:49:21',2,'2006-02-15 21:30:53'), - (2101,'2005-06-17 18:57:02',2137,581,'2005-06-20 15:38:02',2,'2006-02-15 21:30:53'), - (2102,'2005-06-17 19:05:22',2316,486,'2005-06-23 23:21:22',2,'2006-02-15 21:30:53'), - (2103,'2005-06-17 19:13:10',1469,456,'2005-06-21 21:32:10',2,'2006-02-15 21:30:53'), - (2104,'2005-06-17 19:14:30',3084,136,'2005-06-19 16:26:30',1,'2006-02-15 21:30:53'), - (2105,'2005-06-17 19:15:45',4090,57,'2005-06-20 16:00:45',1,'2006-02-15 21:30:53'), - (2106,'2005-06-17 19:29:03',643,66,'2005-06-23 18:17:03',2,'2006-02-15 21:30:53'), - (2107,'2005-06-17 19:31:16',1270,104,'2005-06-18 23:33:16',1,'2006-02-15 21:30:53'), - (2108,'2005-06-17 19:35:26',1395,503,'2005-06-25 15:45:26',1,'2006-02-15 21:30:53'), - (2109,'2005-06-17 19:41:42',2292,493,'2005-06-25 17:03:42',2,'2006-02-15 21:30:53'), - (2110,'2005-06-17 19:45:49',3592,163,'2005-06-26 18:59:49',2,'2006-02-15 21:30:53'), - (2111,'2005-06-17 19:47:21',2108,76,'2005-06-19 22:46:21',2,'2006-02-15 21:30:53'), - (2112,'2005-06-17 19:52:42',1629,18,'2005-06-25 00:00:42',2,'2006-02-15 21:30:53'), - (2113,'2005-06-17 19:57:46',1509,406,'2005-06-24 00:22:46',1,'2006-02-15 21:30:53'), - (2114,'2005-06-17 20:00:25',3541,358,'2005-06-23 18:51:25',1,'2006-02-15 21:30:53'), - (2115,'2005-06-17 20:02:16',3448,270,'2005-06-25 16:56:16',2,'2006-02-15 21:30:53'), - (2116,'2005-06-17 20:16:12',2373,24,'2005-06-18 17:03:12',2,'2006-02-15 21:30:53'), - (2117,'2005-06-17 20:24:00',2,170,'2005-06-23 17:45:00',2,'2006-02-15 21:30:53'), - (2118,'2005-06-17 20:28:29',1261,103,'2005-06-23 22:47:29',1,'2006-02-15 21:30:53'), - (2119,'2005-06-17 20:34:42',2104,561,'2005-06-22 00:05:42',1,'2006-02-15 21:30:53'), - (2120,'2005-06-17 20:36:50',1498,182,'2005-06-27 01:18:50',2,'2006-02-15 21:30:53'), - (2121,'2005-06-17 20:38:54',141,467,'2005-06-22 23:06:54',2,'2006-02-15 21:30:53'), - (2122,'2005-06-17 20:48:27',2932,245,'2005-06-23 00:58:27',2,'2006-02-15 21:30:53'), - (2123,'2005-06-17 20:48:30',2497,545,'2005-06-18 19:17:30',2,'2006-02-15 21:30:53'), - (2124,'2005-06-17 20:49:14',1273,178,'2005-06-23 17:44:14',1,'2006-02-15 21:30:53'), - (2125,'2005-06-17 20:53:42',4303,473,'2005-06-19 01:53:42',2,'2006-02-15 21:30:53'), - (2126,'2005-06-17 20:54:36',4276,263,'2005-06-27 02:16:36',1,'2006-02-15 21:30:53'), - (2127,'2005-06-17 20:54:48',3757,187,'2005-06-18 16:28:48',2,'2006-02-15 21:30:53'), - (2128,'2005-06-17 20:54:58',352,2,'2005-06-24 00:41:58',2,'2006-02-15 21:30:53'), - (2129,'2005-06-17 20:58:32',1930,249,'2005-06-23 22:22:32',1,'2006-02-15 21:30:53'), - (2130,'2005-06-17 21:00:44',1369,413,'2005-06-26 00:05:44',2,'2006-02-15 21:30:53'), - (2131,'2005-06-17 21:02:25',4424,85,'2005-06-25 18:45:25',1,'2006-02-15 21:30:53'), - (2132,'2005-06-17 21:05:06',2636,186,'2005-06-20 18:10:06',1,'2006-02-15 21:30:53'), - (2133,'2005-06-17 21:10:05',932,268,'2005-06-23 22:41:05',1,'2006-02-15 21:30:53'), - (2134,'2005-06-17 21:13:44',1699,378,'2005-06-26 16:28:44',2,'2006-02-15 21:30:53'), - (2135,'2005-06-17 21:14:02',4091,39,'2005-06-19 00:59:02',1,'2006-02-15 21:30:53'), - (2136,'2005-06-17 21:16:41',2651,20,'2005-06-24 22:42:41',2,'2006-02-15 21:30:53'), - (2137,'2005-06-17 21:18:28',1158,581,'2005-06-20 21:05:28',1,'2006-02-15 21:30:53'), - (2138,'2005-06-17 21:28:14',512,254,'2005-06-22 01:16:14',2,'2006-02-15 21:30:53'), - (2139,'2005-06-17 21:29:34',807,236,'2005-06-26 21:05:34',1,'2006-02-15 21:30:53'), - (2140,'2005-06-17 21:40:29',2395,56,'2005-06-19 00:42:29',1,'2006-02-15 21:30:53'), - (2141,'2005-06-17 21:41:34',2176,86,'2005-06-19 00:15:34',1,'2006-02-15 21:30:53'), - (2142,'2005-06-17 21:55:43',1787,253,'2005-06-26 19:41:43',2,'2006-02-15 21:30:53'), - (2143,'2005-06-17 21:58:13',1257,507,'2005-06-19 23:59:13',2,'2006-02-15 21:30:53'), - (2144,'2005-06-17 22:05:40',3303,46,'2005-06-21 02:53:40',1,'2006-02-15 21:30:53'), - (2145,'2005-06-17 22:10:36',238,388,'2005-06-18 21:07:36',2,'2006-02-15 21:30:53'), - (2146,'2005-06-17 22:26:23',326,456,'2005-06-26 17:10:23',1,'2006-02-15 21:30:53'), - (2147,'2005-06-17 22:28:13',2752,279,'2005-06-22 20:50:13',1,'2006-02-15 21:30:53'), - (2148,'2005-06-17 22:44:35',315,338,'2005-06-26 19:43:35',1,'2006-02-15 21:30:53'), - (2149,'2005-06-17 22:50:00',3365,333,'2005-06-26 18:40:00',1,'2006-02-15 21:30:53'), - (2150,'2005-06-17 22:50:36',1910,406,'2005-06-21 19:33:36',1,'2006-02-15 21:30:53'), - (2151,'2005-06-17 22:52:37',407,329,'2005-06-20 22:00:37',1,'2006-02-15 21:30:53'), - (2152,'2005-06-17 22:53:27',2665,307,'2005-06-23 19:19:27',1,'2006-02-15 21:30:53'), - (2153,'2005-06-17 22:58:04',2440,357,'2005-06-24 19:38:04',2,'2006-02-15 21:30:53'), - (2154,'2005-06-17 22:59:42',1655,30,'2005-06-24 04:11:42',1,'2006-02-15 21:30:53'), - (2155,'2005-06-17 23:07:29',3640,227,'2005-06-25 03:23:29',2,'2006-02-15 21:30:53'), - (2156,'2005-06-17 23:08:12',623,237,'2005-06-22 19:44:12',2,'2006-02-15 21:30:53'), - (2157,'2005-06-17 23:30:52',1619,201,'2005-06-24 01:56:52',2,'2006-02-15 21:30:53'), - (2158,'2005-06-17 23:36:27',243,530,'2005-06-19 19:25:27',2,'2006-02-15 21:30:53'), - (2159,'2005-06-17 23:37:29',3095,465,'2005-06-25 00:18:29',2,'2006-02-15 21:30:53'), - (2160,'2005-06-17 23:39:11',1644,32,'2005-06-22 20:04:11',1,'2006-02-15 21:30:53'), - (2161,'2005-06-17 23:39:50',3149,75,'2005-06-26 23:28:50',2,'2006-02-15 21:30:53'), - (2162,'2005-06-17 23:45:47',1790,277,'2005-06-21 21:03:47',1,'2006-02-15 21:30:53'), - (2163,'2005-06-17 23:46:16',2600,130,'2005-06-22 22:48:16',2,'2006-02-15 21:30:53'), - (2164,'2005-06-17 23:46:21',3442,227,'2005-06-24 19:10:21',2,'2006-02-15 21:30:53'), - (2165,'2005-06-17 23:51:10',2392,471,'2005-06-21 23:54:10',1,'2006-02-15 21:30:53'), - (2166,'2005-06-17 23:51:21',4343,305,'2005-06-27 01:06:21',2,'2006-02-15 21:30:53'), - (2167,'2005-06-17 23:51:28',3796,307,'2005-06-21 00:43:28',2,'2006-02-15 21:30:53'), - (2168,'2005-06-17 23:53:24',802,308,'2005-06-20 01:11:24',1,'2006-02-15 21:30:53'), - (2169,'2005-06-17 23:57:23',785,120,'2005-06-19 20:14:23',2,'2006-02-15 21:30:53'), - (2170,'2005-06-17 23:57:34',3989,42,'2005-06-22 03:37:34',2,'2006-02-15 21:30:53'), - (2171,'2005-06-18 00:06:04',1768,147,'2005-06-24 18:09:04',2,'2006-02-15 21:30:53'), - (2172,'2005-06-18 00:06:16',2912,457,'2005-06-26 00:50:16',1,'2006-02-15 21:30:53'), - (2173,'2005-06-18 00:08:20',995,65,'2005-06-25 05:30:20',1,'2006-02-15 21:30:53'), - (2174,'2005-06-18 00:09:01',3279,520,'2005-06-25 23:14:01',1,'2006-02-15 21:30:53'), - (2175,'2005-06-18 00:17:58',4038,17,'2005-06-22 23:18:58',2,'2006-02-15 21:30:53'), - (2176,'2005-06-18 00:29:51',4201,282,'2005-06-21 01:41:51',1,'2006-02-15 21:30:53'), - (2177,'2005-06-18 00:34:45',492,340,'2005-06-26 18:40:45',1,'2006-02-15 21:30:53'), - (2178,'2005-06-18 00:38:35',2950,260,'2005-06-21 02:56:35',1,'2006-02-15 21:30:53'), - (2179,'2005-06-18 00:41:36',4334,338,'2005-06-19 02:17:36',1,'2006-02-15 21:30:53'), - (2180,'2005-06-18 00:47:43',3564,497,'2005-06-25 04:12:43',2,'2006-02-15 21:30:53'), - (2181,'2005-06-18 00:48:31',3481,176,'2005-06-25 06:43:31',2,'2006-02-15 21:30:53'), - (2182,'2005-06-18 00:56:18',3494,454,'2005-06-26 20:01:18',1,'2006-02-15 21:30:53'), - (2183,'2005-06-18 01:06:01',1776,340,'2005-06-22 01:20:01',1,'2006-02-15 21:30:53'), - (2184,'2005-06-18 01:10:36',3468,537,'2005-06-21 05:59:36',2,'2006-02-15 21:30:53'), - (2185,'2005-06-18 01:12:22',4326,198,'2005-06-20 20:41:22',1,'2006-02-15 21:30:53'), - (2186,'2005-06-18 01:15:27',2050,204,'2005-06-21 06:16:27',1,'2006-02-15 21:30:53'), - (2187,'2005-06-18 01:17:27',1385,477,'2005-06-20 22:18:27',1,'2006-02-15 21:30:53'), - (2188,'2005-06-18 01:19:04',712,183,'2005-06-25 03:59:04',2,'2006-02-15 21:30:53'), - (2189,'2005-06-18 01:20:26',249,500,'2005-06-25 00:30:26',1,'2006-02-15 21:30:53'), - (2190,'2005-06-18 01:29:51',4398,342,'2005-06-26 04:31:51',2,'2006-02-15 21:30:53'), - (2191,'2005-06-18 01:33:09',3369,58,'2005-06-19 20:18:09',1,'2006-02-15 21:30:53'), - (2192,'2005-06-18 01:35:47',1886,456,'2005-06-23 23:38:47',2,'2006-02-15 21:30:53'), - (2193,'2005-06-18 01:38:45',1013,112,'2005-06-22 19:51:45',1,'2006-02-15 21:30:53'), - (2194,'2005-06-18 01:41:37',1827,149,'2005-06-25 04:27:37',1,'2006-02-15 21:30:53'), - (2195,'2005-06-18 01:44:46',2247,286,'2005-06-25 20:50:46',1,'2006-02-15 21:30:53'), - (2196,'2005-06-18 01:47:07',1925,240,'2005-06-26 03:18:07',2,'2006-02-15 21:30:53'), - (2197,'2005-06-18 01:50:27',3350,103,'2005-06-19 01:31:27',2,'2006-02-15 21:30:53'), - (2198,'2005-06-18 01:51:22',1983,109,'2005-06-26 06:57:22',2,'2006-02-15 21:30:53'), - (2199,'2005-06-18 01:57:56',99,171,'2005-06-23 20:34:56',2,'2006-02-15 21:30:53'), - (2200,'2005-06-18 01:59:16',1085,229,'2005-06-26 23:25:16',2,'2006-02-15 21:30:53'), - (2201,'2005-06-18 02:08:27',1864,489,'2005-06-23 01:40:27',1,'2006-02-15 21:30:53'), - (2202,'2005-06-18 02:09:24',815,297,'2005-06-26 07:17:24',2,'2006-02-15 21:30:53'), - (2203,'2005-06-18 02:10:42',1347,46,'2005-06-22 06:25:42',2,'2006-02-15 21:30:53'), - (2204,'2005-06-18 02:11:38',1137,426,'2005-06-24 00:28:38',1,'2006-02-15 21:30:53'), - (2205,'2005-06-18 02:14:34',1245,593,'2005-06-25 05:11:34',1,'2006-02-15 21:30:53'), - (2206,'2005-06-18 02:14:45',3651,438,'2005-06-24 23:20:45',2,'2006-02-15 21:30:53'), - (2207,'2005-06-18 02:19:21',182,78,'2005-06-24 02:25:21',2,'2006-02-15 21:30:53'), - (2208,'2005-06-18 02:22:07',2345,132,'2005-06-23 07:24:07',2,'2006-02-15 21:30:53'), - (2209,'2005-06-18 02:24:01',2441,13,'2005-06-22 04:13:01',2,'2006-02-15 21:30:53'), - (2210,'2005-06-18 02:27:01',219,108,'2005-06-21 00:45:01',1,'2006-02-15 21:30:53'), - (2211,'2005-06-18 02:29:10',4114,166,'2005-06-22 02:02:10',1,'2006-02-15 21:30:53'), - (2212,'2005-06-18 02:36:10',2458,336,'2005-06-19 21:21:10',1,'2006-02-15 21:30:53'), - (2213,'2005-06-18 02:36:47',949,98,'2005-06-23 05:02:47',1,'2006-02-15 21:30:53'), - (2214,'2005-06-18 02:44:37',2430,366,'2005-06-18 23:37:37',2,'2006-02-15 21:30:53'), - (2215,'2005-06-18 02:48:21',2060,239,'2005-06-22 01:03:21',2,'2006-02-15 21:30:53'), - (2216,'2005-06-18 03:08:17',1428,320,'2005-06-19 08:13:17',1,'2006-02-15 21:30:53'), - (2217,'2005-06-18 03:12:29',2260,118,'2005-06-20 06:08:29',1,'2006-02-15 21:30:53'), - (2218,'2005-06-18 03:13:13',3577,176,'2005-06-18 21:16:13',1,'2006-02-15 21:30:53'), - (2219,'2005-06-18 03:16:54',1881,393,'2005-06-22 01:29:54',1,'2006-02-15 21:30:53'), - (2220,'2005-06-18 03:21:36',320,587,'2005-06-21 07:45:36',2,'2006-02-15 21:30:53'), - (2221,'2005-06-18 03:24:56',3905,156,'2005-06-22 08:27:56',1,'2006-02-15 21:30:53'), - (2222,'2005-06-18 03:26:23',3834,10,'2005-06-26 08:50:23',2,'2006-02-15 21:30:53'), - (2223,'2005-06-18 03:27:03',4068,303,'2005-06-27 09:19:03',2,'2006-02-15 21:30:53'), - (2224,'2005-06-18 03:33:58',1336,153,'2005-06-18 22:10:58',1,'2006-02-15 21:30:53'), - (2225,'2005-06-18 03:35:40',2829,503,'2005-06-23 03:05:40',1,'2006-02-15 21:30:53'), - (2226,'2005-06-18 03:39:56',3487,225,'2005-06-24 07:26:56',2,'2006-02-15 21:30:53'), - (2227,'2005-06-18 03:43:23',3623,200,'2005-06-19 05:55:23',2,'2006-02-15 21:30:53'), - (2228,'2005-06-18 03:44:50',490,383,'2005-06-23 00:28:50',1,'2006-02-15 21:30:53'), - (2229,'2005-06-18 03:50:18',2840,35,'2005-06-26 07:16:18',2,'2006-02-15 21:30:53'), - (2230,'2005-06-18 03:50:49',833,256,'2005-06-25 01:12:49',2,'2006-02-15 21:30:53'), - (2231,'2005-06-18 03:52:14',2280,35,'2005-06-23 06:52:14',1,'2006-02-15 21:30:53'), - (2232,'2005-06-18 03:54:31',2463,52,'2005-06-22 07:29:31',1,'2006-02-15 21:30:53'), - (2233,'2005-06-18 03:57:36',3063,31,'2005-06-21 09:42:36',2,'2006-02-15 21:30:53'), - (2234,'2005-06-18 04:01:28',234,182,'2005-06-24 04:55:28',2,'2006-02-15 21:30:53'), - (2235,'2005-06-18 04:08:50',3463,21,'2005-06-27 07:58:50',1,'2006-02-15 21:30:53'), - (2236,'2005-06-18 04:12:33',4001,375,'2005-06-23 04:07:33',1,'2006-02-15 21:30:53'), - (2237,'2005-06-18 04:17:44',1821,205,'2005-06-27 09:08:44',1,'2006-02-15 21:30:53'), - (2238,'2005-06-18 04:22:06',2859,251,'2005-06-27 03:29:06',2,'2006-02-15 21:30:53'), - (2239,'2005-06-18 04:23:54',4419,437,'2005-06-26 00:12:54',2,'2006-02-15 21:30:53'), - (2240,'2005-06-18 04:28:27',1409,122,'2005-06-22 07:48:27',2,'2006-02-15 21:30:53'), - (2241,'2005-06-18 04:31:41',921,406,'2005-06-24 22:34:41',2,'2006-02-15 21:30:53'), - (2242,'2005-06-18 04:32:28',1995,146,'2005-06-24 03:26:28',2,'2006-02-15 21:30:53'), - (2243,'2005-06-18 04:33:03',1254,328,'2005-06-23 04:14:03',2,'2006-02-15 21:30:53'), - (2244,'2005-06-18 04:46:33',3629,233,'2005-06-20 04:28:33',1,'2006-02-15 21:30:53'), - (2245,'2005-06-18 04:52:59',1496,194,'2005-06-24 05:07:59',2,'2006-02-15 21:30:53'), - (2246,'2005-06-18 04:54:29',4287,414,'2005-06-22 09:14:29',1,'2006-02-15 21:30:53'), - (2248,'2005-06-18 04:59:48',1999,446,'2005-06-19 08:51:48',2,'2006-02-15 21:30:53'), - (2249,'2005-06-18 05:03:08',117,285,'2005-06-26 05:43:08',2,'2006-02-15 21:30:53'), - (2250,'2005-06-18 05:03:36',4042,7,'2005-06-22 02:25:36',2,'2006-02-15 21:30:53'), - (2251,'2005-06-18 05:05:08',1458,143,'2005-06-23 08:34:08',1,'2006-02-15 21:30:53'), - (2252,'2005-06-18 05:05:18',1987,383,'2005-06-21 08:19:18',1,'2006-02-15 21:30:53'), - (2253,'2005-06-18 05:11:43',3719,122,'2005-06-25 03:30:43',2,'2006-02-15 21:30:53'), - (2254,'2005-06-18 05:15:14',1084,281,'2005-06-27 04:10:14',2,'2006-02-15 21:30:53'), - (2255,'2005-06-18 05:21:12',24,410,'2005-06-26 09:19:12',1,'2006-02-15 21:30:53'), - (2256,'2005-06-18 05:21:56',1863,93,'2005-06-27 02:06:56',2,'2006-02-15 21:30:53'), - (2257,'2005-06-18 05:29:52',2846,34,'2005-06-22 00:19:52',1,'2006-02-15 21:30:53'), - (2258,'2005-06-18 05:30:36',4573,292,'2005-06-24 09:09:36',1,'2006-02-15 21:30:53'), - (2259,'2005-06-18 05:37:45',4103,491,'2005-06-21 01:51:45',1,'2006-02-15 21:30:53'), - (2260,'2005-06-18 05:38:36',2773,297,'2005-06-20 08:08:36',1,'2006-02-15 21:30:53'), - (2261,'2005-06-18 05:46:15',1763,570,'2005-06-24 05:06:15',1,'2006-02-15 21:30:53'), - (2262,'2005-06-18 05:49:46',4172,218,'2005-06-20 00:25:46',2,'2006-02-15 21:30:53'), - (2263,'2005-06-18 05:57:47',3259,452,'2005-06-20 06:13:47',1,'2006-02-15 21:30:53'), - (2264,'2005-06-18 05:58:45',150,240,'2005-06-19 00:57:45',1,'2006-02-15 21:30:53'), - (2265,'2005-06-18 06:03:27',3069,267,'2005-06-20 01:16:27',1,'2006-02-15 21:30:53'), - (2266,'2005-06-18 06:05:02',2596,452,'2005-06-20 06:54:02',1,'2006-02-15 21:30:53'), - (2267,'2005-06-18 06:10:23',2086,218,'2005-06-20 00:39:23',2,'2006-02-15 21:30:53'), - (2268,'2005-06-18 06:13:41',4380,21,'2005-06-22 08:53:41',2,'2006-02-15 21:30:53'), - (2269,'2005-06-18 06:20:54',3088,431,'2005-06-25 04:51:54',2,'2006-02-15 21:30:53'), - (2270,'2005-06-18 06:29:01',3447,588,'2005-06-26 07:21:01',2,'2006-02-15 21:30:53'), - (2271,'2005-06-18 06:29:52',2416,145,'2005-06-21 09:46:52',2,'2006-02-15 21:30:53'), - (2272,'2005-06-18 06:29:53',1364,599,'2005-06-23 10:58:53',1,'2006-02-15 21:30:53'), - (2273,'2005-06-18 06:30:02',4456,327,'2005-06-20 07:07:02',1,'2006-02-15 21:30:53'), - (2274,'2005-06-18 06:31:15',3021,347,'2005-06-21 01:24:15',2,'2006-02-15 21:30:53'), - (2275,'2005-06-18 06:31:29',2805,354,'2005-06-24 10:04:29',2,'2006-02-15 21:30:53'), - (2276,'2005-06-18 06:33:48',1145,594,'2005-06-25 00:50:48',2,'2006-02-15 21:30:53'), - (2277,'2005-06-18 06:35:03',3770,224,'2005-06-19 01:26:03',1,'2006-02-15 21:30:53'), - (2278,'2005-06-18 06:37:57',1166,450,'2005-06-22 10:57:57',1,'2006-02-15 21:30:53'), - (2279,'2005-06-18 06:38:22',1953,554,'2005-06-27 07:16:22',1,'2006-02-15 21:30:53'), - (2280,'2005-06-18 06:46:54',4568,548,'2005-06-26 09:48:54',2,'2006-02-15 21:30:53'), - (2281,'2005-06-18 06:47:29',4212,431,'2005-06-20 10:27:29',2,'2006-02-15 21:30:53'), - (2282,'2005-06-18 06:48:23',4388,113,'2005-06-24 11:04:23',2,'2006-02-15 21:30:53'), - (2283,'2005-06-18 06:56:06',2056,507,'2005-06-19 05:11:06',2,'2006-02-15 21:30:53'), - (2284,'2005-06-18 06:59:51',2682,228,'2005-06-24 04:58:51',2,'2006-02-15 21:30:53'), - (2285,'2005-06-18 07:00:54',755,447,'2005-06-25 08:58:54',2,'2006-02-15 21:30:53'), - (2286,'2005-06-18 07:02:32',618,287,'2005-06-27 12:33:32',1,'2006-02-15 21:30:53'), - (2287,'2005-06-18 07:04:36',1473,317,'2005-06-27 03:00:36',2,'2006-02-15 21:30:53'), - (2288,'2005-06-18 07:23:17',877,247,'2005-06-26 07:44:17',2,'2006-02-15 21:30:53'), - (2289,'2005-06-18 07:29:43',2030,392,'2005-06-24 11:16:43',2,'2006-02-15 21:30:53'), - (2290,'2005-06-18 07:34:37',200,513,'2005-06-26 11:45:37',1,'2006-02-15 21:30:53'), - (2291,'2005-06-18 07:36:46',3949,436,'2005-06-26 04:57:46',2,'2006-02-15 21:30:53'), - (2292,'2005-06-18 07:37:48',173,130,'2005-06-20 02:45:48',2,'2006-02-15 21:30:53'), - (2293,'2005-06-18 07:45:03',3209,178,'2005-06-24 08:12:03',1,'2006-02-15 21:30:53'), - (2294,'2005-06-18 07:46:34',2096,72,'2005-06-22 12:34:34',2,'2006-02-15 21:30:53'), - (2295,'2005-06-18 07:56:18',3250,106,'2005-06-21 07:10:18',1,'2006-02-15 21:30:53'), - (2296,'2005-06-18 08:10:42',4558,481,'2005-06-20 12:26:42',2,'2006-02-15 21:30:53'), - (2297,'2005-06-18 08:17:41',2262,111,'2005-06-26 05:08:41',2,'2006-02-15 21:30:53'), - (2298,'2005-06-18 08:18:29',1227,497,'2005-06-24 11:51:29',1,'2006-02-15 21:30:53'), - (2299,'2005-06-18 08:18:52',4339,28,'2005-06-26 11:48:52',1,'2006-02-15 21:30:53'), - (2300,'2005-06-18 08:22:34',1617,291,'2005-06-24 04:51:34',2,'2006-02-15 21:30:53'), - (2301,'2005-06-18 08:24:03',869,273,'2005-06-25 10:31:03',2,'2006-02-15 21:30:53'), - (2302,'2005-06-18 08:27:33',1852,42,'2005-06-22 02:46:33',2,'2006-02-15 21:30:53'), - (2303,'2005-06-18 08:27:59',1524,329,'2005-06-22 10:58:59',1,'2006-02-15 21:30:53'), - (2304,'2005-06-18 08:30:15',3543,327,'2005-06-23 06:17:15',1,'2006-02-15 21:30:53'), - (2305,'2005-06-18 08:31:18',622,149,'2005-06-24 06:18:18',2,'2006-02-15 21:30:53'), - (2306,'2005-06-18 08:33:23',208,477,'2005-06-27 10:01:23',2,'2006-02-15 21:30:53'), - (2307,'2005-06-18 08:34:59',4576,47,'2005-06-23 04:42:59',1,'2006-02-15 21:30:53'), - (2308,'2005-06-18 08:41:48',197,1,'2005-06-22 03:36:48',2,'2006-02-15 21:30:53'), - (2309,'2005-06-18 08:43:24',611,576,'2005-06-20 03:56:24',1,'2006-02-15 21:30:53'), - (2310,'2005-06-18 08:45:59',2590,409,'2005-06-26 05:06:59',2,'2006-02-15 21:30:53'), - (2311,'2005-06-18 08:51:29',4506,236,'2005-06-25 07:51:29',1,'2006-02-15 21:30:53'), - (2312,'2005-06-18 08:55:46',402,184,'2005-06-24 04:34:46',2,'2006-02-15 21:30:53'), - (2313,'2005-06-18 08:56:45',3134,379,'2005-06-26 10:30:45',2,'2006-02-15 21:30:53'), - (2314,'2005-06-18 09:03:19',2157,160,'2005-06-19 12:14:19',1,'2006-02-15 21:30:53'), - (2315,'2005-06-18 09:03:39',2766,372,'2005-06-22 11:18:39',1,'2006-02-15 21:30:53'), - (2316,'2005-06-18 09:04:59',372,289,'2005-06-20 09:39:59',2,'2006-02-15 21:30:53'), - (2317,'2005-06-18 09:12:18',1602,326,'2005-06-21 05:50:18',2,'2006-02-15 21:30:53'), - (2318,'2005-06-18 09:13:54',2328,383,'2005-06-23 07:19:54',1,'2006-02-15 21:30:53'), - (2319,'2005-06-18 09:24:22',1521,393,'2005-06-26 14:12:22',2,'2006-02-15 21:30:53'), - (2320,'2005-06-18 09:24:50',597,552,'2005-06-24 07:59:50',1,'2006-02-15 21:30:53'), - (2321,'2005-06-18 09:42:42',1160,565,'2005-06-25 14:28:42',1,'2006-02-15 21:30:53'), - (2322,'2005-06-18 09:44:21',1893,213,'2005-06-25 09:29:21',1,'2006-02-15 21:30:53'), - (2323,'2005-06-18 09:55:02',207,54,'2005-06-23 07:19:02',1,'2006-02-15 21:30:53'), - (2324,'2005-06-18 10:00:33',2987,268,'2005-06-23 14:10:33',1,'2006-02-15 21:30:53'), - (2325,'2005-06-18 10:08:07',752,406,'2005-06-21 15:07:07',1,'2006-02-15 21:30:53'), - (2326,'2005-06-18 10:14:22',3829,174,'2005-06-24 07:01:22',2,'2006-02-15 21:30:53'), - (2327,'2005-06-18 10:16:40',1351,571,'2005-06-20 15:06:40',1,'2006-02-15 21:30:53'), - (2328,'2005-06-18 10:17:21',2304,441,'2005-06-21 04:18:21',1,'2006-02-15 21:30:53'), - (2329,'2005-06-18 10:22:52',4156,587,'2005-06-20 12:03:52',2,'2006-02-15 21:30:53'), - (2330,'2005-06-18 10:41:19',4285,390,'2005-06-25 10:48:19',1,'2006-02-15 21:30:53'), - (2331,'2005-06-18 10:50:09',1546,221,'2005-06-25 14:30:09',1,'2006-02-15 21:30:53'), - (2332,'2005-06-18 10:53:51',2152,140,'2005-06-24 12:06:51',2,'2006-02-15 21:30:53'), - (2333,'2005-06-18 10:55:54',2323,283,'2005-06-25 07:09:54',2,'2006-02-15 21:30:53'), - (2334,'2005-06-18 10:56:24',3076,223,'2005-06-22 10:38:24',2,'2006-02-15 21:30:53'), - (2335,'2005-06-18 10:59:36',3968,446,'2005-06-26 06:42:36',2,'2006-02-15 21:30:53'), - (2336,'2005-06-18 11:00:05',3888,124,'2005-06-25 06:02:05',2,'2006-02-15 21:30:53'), - (2337,'2005-06-18 11:15:27',4522,582,'2005-06-26 06:59:27',2,'2006-02-15 21:30:53'), - (2338,'2005-06-18 11:24:54',3165,316,'2005-06-19 07:34:54',1,'2006-02-15 21:30:53'), - (2339,'2005-06-18 11:29:22',313,297,'2005-06-21 10:29:22',1,'2006-02-15 21:30:53'), - (2340,'2005-06-18 11:30:56',1913,157,'2005-06-23 06:00:56',1,'2006-02-15 21:30:53'), - (2341,'2005-06-18 11:35:30',638,31,'2005-06-27 11:56:30',2,'2006-02-15 21:30:53'), - (2342,'2005-06-18 11:42:40',2169,146,'2005-06-20 14:40:40',1,'2006-02-15 21:30:53'), - (2343,'2005-06-18 11:46:26',4554,20,'2005-06-22 11:37:26',2,'2006-02-15 21:30:53'), - (2344,'2005-06-18 12:01:47',2015,498,'2005-06-19 11:56:47',2,'2006-02-15 21:30:53'), - (2345,'2005-06-18 12:03:23',1818,6,'2005-06-22 14:25:23',2,'2006-02-15 21:30:53'), - (2346,'2005-06-18 12:08:16',2575,308,'2005-06-27 15:02:16',1,'2006-02-15 21:30:53'), - (2347,'2005-06-18 12:12:29',4516,194,'2005-06-23 14:03:29',1,'2006-02-15 21:30:53'), - (2348,'2005-06-18 12:15:43',3622,449,'2005-06-24 14:03:43',2,'2006-02-15 21:30:53'), - (2349,'2005-06-18 12:25:14',1536,495,'2005-06-19 11:24:14',2,'2006-02-15 21:30:53'), - (2350,'2005-06-18 12:25:29',1179,471,'2005-06-23 11:35:29',1,'2006-02-15 21:30:53'), - (2351,'2005-06-18 12:27:57',2942,216,'2005-06-23 16:14:57',1,'2006-02-15 21:30:53'), - (2352,'2005-06-18 12:40:15',2141,590,'2005-06-22 07:07:15',2,'2006-02-15 21:30:53'), - (2353,'2005-06-18 12:53:25',3223,361,'2005-06-19 13:53:25',1,'2006-02-15 21:30:53'), - (2354,'2005-06-18 12:54:18',2793,77,'2005-06-26 07:23:18',2,'2006-02-15 21:30:53'), - (2355,'2005-06-18 12:57:06',3613,125,'2005-06-26 07:32:06',1,'2006-02-15 21:30:53'), - (2356,'2005-06-18 12:59:23',2207,455,'2005-06-21 10:12:23',2,'2006-02-15 21:30:53'), - (2357,'2005-06-18 12:59:41',1323,561,'2005-06-26 16:40:41',1,'2006-02-15 21:30:53'), - (2358,'2005-06-18 13:00:51',1728,478,'2005-06-26 12:58:51',1,'2006-02-15 21:30:53'), - (2359,'2005-06-18 13:04:42',3087,201,'2005-06-25 11:52:42',1,'2006-02-15 21:30:53'), - (2360,'2005-06-18 13:11:13',37,57,'2005-06-23 15:32:13',2,'2006-02-15 21:30:53'), - (2361,'2005-06-18 13:19:05',3547,546,'2005-06-23 07:59:05',1,'2006-02-15 21:30:53'), - (2362,'2005-06-18 13:31:15',2815,514,'2005-06-19 12:35:15',1,'2006-02-15 21:30:53'), - (2363,'2005-06-18 13:33:59',3497,1,'2005-06-19 17:40:59',1,'2006-02-15 21:30:53'), - (2364,'2005-06-18 13:37:32',2856,512,'2005-06-23 14:18:32',1,'2006-02-15 21:30:53'), - (2365,'2005-06-18 13:45:34',3109,493,'2005-06-21 12:12:34',2,'2006-02-15 21:30:53'), - (2366,'2005-06-18 13:46:39',1413,162,'2005-06-23 18:49:39',2,'2006-02-15 21:30:53'), - (2367,'2005-06-18 14:00:31',4086,566,'2005-06-22 14:45:31',2,'2006-02-15 21:30:53'), - (2368,'2005-06-18 14:10:27',1058,99,'2005-06-23 10:49:27',1,'2006-02-15 21:30:53'), - (2369,'2005-06-18 14:25:29',1515,44,'2005-06-23 18:45:29',2,'2006-02-15 21:30:53'), - (2370,'2005-06-18 14:29:54',2656,489,'2005-06-24 10:23:54',1,'2006-02-15 21:30:53'), - (2371,'2005-06-18 14:35:29',178,248,'2005-06-22 09:38:29',2,'2006-02-15 21:30:53'), - (2372,'2005-06-18 14:37:37',1567,96,'2005-06-21 08:40:37',2,'2006-02-15 21:30:53'), - (2373,'2005-06-18 14:37:57',2780,544,'2005-06-23 19:29:57',2,'2006-02-15 21:30:53'), - (2374,'2005-06-18 14:44:06',2634,71,'2005-06-22 17:14:06',1,'2006-02-15 21:30:53'), - (2375,'2005-06-18 14:47:29',2175,259,'2005-06-26 13:52:29',2,'2006-02-15 21:30:53'), - (2376,'2005-06-18 14:55:30',3664,479,'2005-06-25 17:40:30',1,'2006-02-15 21:30:53'), - (2377,'2005-06-18 14:56:23',3568,193,'2005-06-27 12:36:23',1,'2006-02-15 21:30:53'), - (2378,'2005-06-18 14:57:49',2796,384,'2005-06-26 18:23:49',2,'2006-02-15 21:30:53'), - (2379,'2005-06-18 14:59:39',2708,597,'2005-06-24 13:26:39',2,'2006-02-15 21:30:53'), - (2380,'2005-06-18 15:00:04',4413,256,'2005-06-24 13:29:04',2,'2006-02-15 21:30:53'), - (2381,'2005-06-18 15:00:30',1491,167,'2005-06-22 11:38:30',1,'2006-02-15 21:30:53'), - (2382,'2005-06-18 15:03:52',915,568,'2005-06-20 10:16:52',2,'2006-02-15 21:30:53'), - (2383,'2005-06-18 15:17:59',2459,149,'2005-06-26 18:42:59',2,'2006-02-15 21:30:53'), - (2384,'2005-06-18 15:18:49',3378,132,'2005-06-21 18:10:49',1,'2006-02-15 21:30:53'), - (2385,'2005-06-18 15:22:40',1641,298,'2005-06-26 10:02:40',1,'2006-02-15 21:30:53'), - (2386,'2005-06-18 15:22:51',1361,293,'2005-06-22 20:01:51',1,'2006-02-15 21:30:53'), - (2387,'2005-06-18 15:24:19',692,289,'2005-06-25 17:41:19',2,'2006-02-15 21:30:53'), - (2388,'2005-06-18 15:26:30',2923,53,'2005-06-20 20:24:30',1,'2006-02-15 21:30:53'), - (2389,'2005-06-18 15:27:47',731,382,'2005-06-21 12:26:47',1,'2006-02-15 21:30:53'), - (2390,'2005-06-18 15:29:26',2748,239,'2005-06-23 17:50:26',1,'2006-02-15 21:30:53'), - (2391,'2005-06-18 15:33:30',2850,491,'2005-06-25 14:30:30',1,'2006-02-15 21:30:53'), - (2392,'2005-06-18 15:34:18',2213,261,'2005-06-19 16:22:18',1,'2006-02-15 21:30:53'), - (2393,'2005-06-18 15:37:55',3143,21,'2005-06-25 17:11:55',1,'2006-02-15 21:30:53'), - (2394,'2005-06-18 15:42:30',2669,60,'2005-06-26 16:12:30',1,'2006-02-15 21:30:53'), - (2395,'2005-06-18 15:45:15',899,544,'2005-06-27 19:11:15',2,'2006-02-15 21:30:53'), - (2396,'2005-06-18 15:49:48',1986,31,'2005-06-27 20:31:48',2,'2006-02-15 21:30:53'), - (2397,'2005-06-18 15:51:25',2895,76,'2005-06-24 15:52:25',1,'2006-02-15 21:30:53'), - (2398,'2005-06-18 15:56:53',3001,526,'2005-06-27 14:25:53',2,'2006-02-15 21:30:53'), - (2399,'2005-06-18 16:06:14',2492,577,'2005-06-26 16:56:14',2,'2006-02-15 21:30:53'), - (2400,'2005-06-18 16:10:46',3194,410,'2005-06-25 20:34:46',1,'2006-02-15 21:30:53'), - (2401,'2005-06-18 16:22:03',85,359,'2005-06-19 13:49:03',2,'2006-02-15 21:30:53'), - (2402,'2005-06-18 16:24:45',2833,360,'2005-06-27 14:39:45',1,'2006-02-15 21:30:53'), - (2403,'2005-06-18 16:33:22',2697,536,'2005-06-23 19:25:22',1,'2006-02-15 21:30:53'), - (2404,'2005-06-18 16:33:48',4138,456,'2005-06-23 20:39:48',2,'2006-02-15 21:30:53'), - (2405,'2005-06-18 16:36:38',3604,356,'2005-06-21 19:15:38',1,'2006-02-15 21:30:53'), - (2406,'2005-06-18 16:39:37',1321,497,'2005-06-23 12:04:37',1,'2006-02-15 21:30:53'), - (2407,'2005-06-18 16:50:41',2547,421,'2005-06-24 15:29:41',2,'2006-02-15 21:30:53'), - (2408,'2005-06-18 16:50:44',258,87,'2005-06-19 20:11:44',1,'2006-02-15 21:30:53'), - (2409,'2005-06-18 16:53:33',656,84,'2005-06-20 18:23:33',1,'2006-02-15 21:30:53'), - (2410,'2005-06-18 16:55:08',265,381,'2005-06-20 12:40:08',2,'2006-02-15 21:30:53'), - (2411,'2005-06-18 16:55:54',3302,558,'2005-06-25 12:44:54',1,'2006-02-15 21:30:53'), - (2412,'2005-06-18 16:58:58',1946,127,'2005-06-27 22:57:58',1,'2006-02-15 21:30:53'), - (2413,'2005-06-18 16:59:34',1851,170,'2005-06-27 16:10:34',2,'2006-02-15 21:30:53'), - (2414,'2005-06-18 17:01:55',4500,275,'2005-06-20 17:42:55',1,'2006-02-15 21:30:53'), - (2415,'2005-06-18 17:02:42',3105,434,'2005-06-25 13:16:42',2,'2006-02-15 21:30:53'), - (2416,'2005-06-18 17:07:34',2868,26,'2005-06-24 19:16:34',1,'2006-02-15 21:30:53'), - (2417,'2005-06-18 17:12:01',1956,219,'2005-06-26 13:32:01',1,'2006-02-15 21:30:53'), - (2418,'2005-06-18 17:14:42',2756,381,'2005-06-26 16:33:42',1,'2006-02-15 21:30:53'), - (2419,'2005-06-18 17:21:24',1255,102,'2005-06-26 18:25:24',1,'2006-02-15 21:30:53'), - (2420,'2005-06-18 17:22:28',241,502,'2005-06-23 17:45:28',1,'2006-02-15 21:30:53'), - (2421,'2005-06-18 17:25:05',3524,26,'2005-06-23 21:09:05',2,'2006-02-15 21:30:53'), - (2422,'2005-06-18 17:28:57',3170,527,'2005-06-23 15:22:57',1,'2006-02-15 21:30:53'), - (2423,'2005-06-18 17:32:08',1744,231,'2005-06-21 11:58:08',1,'2006-02-15 21:30:53'), - (2424,'2005-06-18 17:35:08',1884,233,'2005-06-23 15:33:08',1,'2006-02-15 21:30:53'), - (2425,'2005-06-18 17:37:45',2630,579,'2005-06-27 18:40:45',2,'2006-02-15 21:30:53'), - (2426,'2005-06-18 17:40:44',474,543,'2005-06-22 14:30:44',2,'2006-02-15 21:30:53'), - (2427,'2005-06-18 17:45:00',4278,176,'2005-06-27 20:07:00',2,'2006-02-15 21:30:53'), - (2428,'2005-06-18 17:47:34',3892,241,'2005-06-19 14:39:34',2,'2006-02-15 21:30:53'), - (2429,'2005-06-18 17:48:28',3238,583,'2005-06-27 15:52:28',1,'2006-02-15 21:30:53'), - (2430,'2005-06-18 17:51:46',1984,434,'2005-06-23 19:17:46',1,'2006-02-15 21:30:53'), - (2431,'2005-06-18 17:53:03',1383,295,'2005-06-25 15:08:03',2,'2006-02-15 21:30:53'), - (2432,'2005-06-18 17:59:18',4420,250,'2005-06-25 15:19:18',2,'2006-02-15 21:30:53'), - (2433,'2005-06-18 18:10:17',937,356,'2005-06-23 14:46:17',2,'2006-02-15 21:30:53'), - (2434,'2005-06-18 18:11:51',3739,12,'2005-06-23 12:52:51',2,'2006-02-15 21:30:53'), - (2435,'2005-06-18 18:12:26',3548,173,'2005-06-22 13:43:26',2,'2006-02-15 21:30:53'), - (2436,'2005-06-18 18:13:32',3328,534,'2005-06-21 13:33:32',2,'2006-02-15 21:30:53'), - (2437,'2005-06-18 18:30:26',1799,454,'2005-06-21 18:36:26',1,'2006-02-15 21:30:53'), - (2438,'2005-06-18 18:34:21',184,31,'2005-06-19 16:50:21',1,'2006-02-15 21:30:53'), - (2439,'2005-06-18 18:35:04',909,39,'2005-06-21 19:47:04',2,'2006-02-15 21:30:53'), - (2440,'2005-06-18 18:41:09',2866,380,'2005-06-22 12:46:09',1,'2006-02-15 21:30:53'), - (2441,'2005-06-18 18:45:11',3148,593,'2005-06-20 00:42:11',1,'2006-02-15 21:30:53'), - (2442,'2005-06-18 18:49:18',4045,364,'2005-06-22 16:18:18',1,'2006-02-15 21:30:53'), - (2443,'2005-06-18 18:52:30',1622,233,'2005-06-24 21:27:30',1,'2006-02-15 21:30:53'), - (2444,'2005-06-18 18:58:12',2233,576,'2005-06-27 20:48:12',1,'2006-02-15 21:30:53'), - (2445,'2005-06-18 19:02:11',2887,98,'2005-06-23 22:25:11',1,'2006-02-15 21:30:53'), - (2446,'2005-06-18 19:04:41',1283,466,'2005-06-27 17:10:41',2,'2006-02-15 21:30:53'), - (2447,'2005-06-18 19:10:55',2353,523,'2005-06-27 16:35:55',1,'2006-02-15 21:30:53'), - (2448,'2005-06-18 19:13:45',1642,308,'2005-06-27 14:43:45',1,'2006-02-15 21:30:53'), - (2449,'2005-06-18 19:18:36',3630,498,'2005-06-27 23:49:36',1,'2006-02-15 21:30:53'), - (2450,'2005-06-18 19:25:47',863,230,'2005-06-27 15:54:47',1,'2006-02-15 21:30:53'), - (2451,'2005-06-18 19:28:02',835,24,'2005-06-23 16:41:02',1,'2006-02-15 21:30:53'), - (2452,'2005-06-18 19:29:21',4318,77,'2005-06-26 22:27:21',1,'2006-02-15 21:30:53'), - (2453,'2005-06-18 19:30:53',2562,588,'2005-06-20 17:22:53',1,'2006-02-15 21:30:53'), - (2454,'2005-06-18 19:32:51',314,253,'2005-06-24 20:03:51',2,'2006-02-15 21:30:53'), - (2455,'2005-06-18 19:33:06',870,241,'2005-06-21 15:21:06',1,'2006-02-15 21:30:53'), - (2456,'2005-06-18 19:36:50',553,147,'2005-06-23 22:48:50',1,'2006-02-15 21:30:53'), - (2457,'2005-06-18 19:38:20',1277,91,'2005-06-26 20:48:20',1,'2006-02-15 21:30:53'), - (2458,'2005-06-18 19:39:05',599,572,'2005-06-21 13:54:05',2,'2006-02-15 21:30:53'), - (2459,'2005-06-18 19:44:08',1024,185,'2005-06-23 19:14:08',2,'2006-02-15 21:30:53'), - (2460,'2005-06-18 19:54:13',3933,553,'2005-06-27 22:36:13',2,'2006-02-15 21:30:53'), - (2461,'2005-06-18 19:58:12',78,343,'2005-06-28 01:35:12',2,'2006-02-15 21:30:53'), - (2462,'2005-06-18 20:00:15',2151,468,'2005-06-21 21:54:15',2,'2006-02-15 21:30:53'), - (2463,'2005-06-18 20:01:43',1186,194,'2005-06-25 15:04:43',2,'2006-02-15 21:30:53'), - (2464,'2005-06-18 20:06:05',463,380,'2005-06-20 19:22:05',1,'2006-02-15 21:30:53'), - (2465,'2005-06-18 20:07:02',3783,160,'2005-06-25 20:55:02',1,'2006-02-15 21:30:53'), - (2466,'2005-06-18 20:18:42',1356,427,'2005-06-20 01:32:42',1,'2006-02-15 21:30:53'), - (2467,'2005-06-18 20:20:05',4387,177,'2005-06-20 17:01:05',1,'2006-02-15 21:30:53'), - (2468,'2005-06-18 20:23:52',1833,382,'2005-06-23 14:34:52',1,'2006-02-15 21:30:53'), - (2469,'2005-06-18 20:24:23',1993,137,'2005-06-27 15:39:23',1,'2006-02-15 21:30:53'), - (2470,'2005-06-18 20:28:31',4319,40,'2005-06-25 18:48:31',1,'2006-02-15 21:30:53'), - (2471,'2005-06-18 20:31:00',3399,183,'2005-06-24 18:01:00',2,'2006-02-15 21:30:53'), - (2472,'2005-06-18 20:32:40',4556,70,'2005-06-20 00:40:40',2,'2006-02-15 21:30:53'), - (2473,'2005-06-18 20:42:45',3876,221,'2005-06-19 20:17:45',1,'2006-02-15 21:30:53'), - (2474,'2005-06-18 20:51:34',3450,151,'2005-06-25 01:39:34',1,'2006-02-15 21:30:53'), - (2475,'2005-06-18 20:52:46',889,336,'2005-06-21 19:40:46',2,'2006-02-15 21:30:53'), - (2476,'2005-06-18 20:57:12',3998,334,'2005-06-20 15:42:12',1,'2006-02-15 21:30:53'), - (2477,'2005-06-18 20:58:46',2510,206,'2005-06-22 21:49:46',1,'2006-02-15 21:30:53'), - (2478,'2005-06-18 21:01:21',2798,241,'2005-06-24 00:20:21',1,'2006-02-15 21:30:53'), - (2479,'2005-06-18 21:03:08',1624,408,'2005-06-22 16:49:08',1,'2006-02-15 21:30:53'), - (2480,'2005-06-18 21:04:09',4078,310,'2005-06-22 16:24:09',1,'2006-02-15 21:30:53'), - (2481,'2005-06-18 21:08:30',800,322,'2005-06-23 02:35:30',2,'2006-02-15 21:30:53'), - (2482,'2005-06-18 21:10:44',452,122,'2005-06-19 20:39:44',1,'2006-02-15 21:30:53'), - (2483,'2005-06-18 21:22:23',4225,88,'2005-06-25 01:14:23',1,'2006-02-15 21:30:53'), - (2484,'2005-06-18 21:25:23',1511,515,'2005-06-24 16:03:23',2,'2006-02-15 21:30:53'), - (2485,'2005-06-18 21:26:03',1562,56,'2005-06-21 22:09:03',2,'2006-02-15 21:30:53'), - (2486,'2005-06-18 21:26:56',268,15,'2005-06-22 23:42:56',1,'2006-02-15 21:30:53'), - (2487,'2005-06-18 21:32:54',3683,374,'2005-06-23 21:11:54',2,'2006-02-15 21:30:53'), - (2488,'2005-06-18 21:38:26',1338,403,'2005-06-24 02:08:26',2,'2006-02-15 21:30:53'), - (2489,'2005-06-18 22:00:44',4012,382,'2005-06-22 02:06:44',2,'2006-02-15 21:30:53'), - (2490,'2005-06-18 22:00:50',1934,402,'2005-06-19 23:45:50',2,'2006-02-15 21:30:53'), - (2491,'2005-06-18 22:01:31',1779,316,'2005-06-26 02:46:31',1,'2006-02-15 21:30:53'), - (2492,'2005-06-18 22:04:15',2858,237,'2005-06-23 21:58:15',1,'2006-02-15 21:30:53'), - (2493,'2005-06-18 22:12:09',4121,269,'2005-06-27 23:44:09',1,'2006-02-15 21:30:53'), - (2494,'2005-06-18 22:15:09',1313,434,'2005-06-25 17:23:09',1,'2006-02-15 21:30:53'), - (2495,'2005-06-18 22:15:42',3826,338,'2005-06-21 23:21:42',1,'2006-02-15 21:30:53'), - (2496,'2005-06-18 22:20:11',646,527,'2005-06-20 03:08:11',2,'2006-02-15 21:30:53'), - (2497,'2005-06-18 22:50:40',2327,171,'2005-06-26 22:39:40',1,'2006-02-15 21:30:53'), - (2498,'2005-06-18 22:56:26',2291,74,'2005-06-22 20:02:26',1,'2006-02-15 21:30:53'), - (2499,'2005-06-18 23:01:36',3172,348,'2005-06-20 21:50:36',2,'2006-02-15 21:30:53'), - (2500,'2005-06-18 23:07:12',4241,12,'2005-06-26 17:27:12',1,'2006-02-15 21:30:53'), - (2501,'2005-06-18 23:10:11',1185,450,'2005-06-24 18:40:11',2,'2006-02-15 21:30:53'), - (2502,'2005-06-18 23:12:13',2622,325,'2005-06-20 04:19:13',2,'2006-02-15 21:30:53'), - (2503,'2005-06-18 23:17:19',2486,176,'2005-06-23 03:57:19',2,'2006-02-15 21:30:53'), - (2504,'2005-06-18 23:19:53',1684,452,'2005-06-21 04:43:53',2,'2006-02-15 21:30:53'), - (2505,'2005-06-18 23:28:27',1670,519,'2005-06-26 01:36:27',1,'2006-02-15 21:30:53'), - (2506,'2005-06-18 23:29:53',2308,82,'2005-06-25 18:11:53',2,'2006-02-15 21:30:53'), - (2507,'2005-06-18 23:39:22',3121,325,'2005-06-21 19:23:22',1,'2006-02-15 21:30:53'), - (2508,'2005-06-18 23:43:58',4322,476,'2005-06-20 19:26:58',2,'2006-02-15 21:30:53'), - (2509,'2005-06-18 23:44:08',4469,213,'2005-06-20 01:36:08',2,'2006-02-15 21:30:53'), - (2510,'2005-06-18 23:44:21',3827,384,'2005-06-24 00:31:21',1,'2006-02-15 21:30:53'), - (2511,'2005-06-18 23:45:30',1824,234,'2005-06-24 01:21:30',2,'2006-02-15 21:30:53'), - (2512,'2005-06-18 23:48:47',4515,27,'2005-06-21 04:58:47',2,'2006-02-15 21:30:53'), - (2513,'2005-06-18 23:53:15',3379,515,'2005-06-24 21:16:15',2,'2006-02-15 21:30:53'), - (2514,'2005-06-18 23:56:44',2559,382,'2005-06-23 21:10:44',1,'2006-02-15 21:30:53'), - (2515,'2005-06-18 23:57:31',3213,188,'2005-06-22 05:31:31',2,'2006-02-15 21:30:53'), - (2516,'2005-06-19 00:03:28',2678,87,'2005-06-21 00:30:28',2,'2006-02-15 21:30:53'), - (2517,'2005-06-19 00:11:26',53,74,'2005-06-25 02:19:26',1,'2006-02-15 21:30:53'), - (2518,'2005-06-19 00:16:23',3503,86,'2005-06-25 19:28:23',2,'2006-02-15 21:30:53'), - (2519,'2005-06-19 00:19:21',1172,128,'2005-06-25 01:46:21',1,'2006-02-15 21:30:53'), - (2520,'2005-06-19 00:29:00',4181,446,'2005-06-28 04:36:00',1,'2006-02-15 21:30:53'), - (2521,'2005-06-19 00:41:08',132,92,'2005-06-22 00:40:08',1,'2006-02-15 21:30:53'), - (2522,'2005-06-19 00:43:42',550,579,'2005-06-28 04:26:42',1,'2006-02-15 21:30:53'), - (2523,'2005-06-19 00:45:56',460,89,'2005-06-21 00:54:56',2,'2006-02-15 21:30:53'), - (2524,'2005-06-19 00:48:11',441,465,'2005-06-25 01:46:11',2,'2006-02-15 21:30:53'), - (2525,'2005-06-19 00:48:22',1307,365,'2005-06-24 19:10:22',2,'2006-02-15 21:30:53'), - (2526,'2005-06-19 01:03:07',3309,500,'2005-06-28 06:57:07',1,'2006-02-15 21:30:53'), - (2527,'2005-06-19 01:10:31',387,463,'2005-06-20 05:37:31',2,'2006-02-15 21:30:53'), - (2528,'2005-06-19 01:14:12',1836,331,'2005-06-26 05:08:12',2,'2006-02-15 21:30:53'), - (2529,'2005-06-19 01:18:27',2306,478,'2005-06-24 00:26:27',1,'2006-02-15 21:30:53'), - (2530,'2005-06-19 01:20:00',4166,31,'2005-06-23 04:10:00',1,'2006-02-15 21:30:53'), - (2531,'2005-06-19 01:20:49',768,368,'2005-06-22 01:50:49',2,'2006-02-15 21:30:53'), - (2532,'2005-06-19 01:27:46',1870,26,'2005-06-20 02:15:46',1,'2006-02-15 21:30:53'), - (2533,'2005-06-19 01:34:26',4564,187,'2005-06-22 20:19:26',1,'2006-02-15 21:30:53'), - (2534,'2005-06-19 01:38:39',2540,517,'2005-06-23 00:16:39',1,'2006-02-15 21:30:53'), - (2535,'2005-06-19 01:39:04',901,130,'2005-06-28 01:33:04',2,'2006-02-15 21:30:53'), - (2536,'2005-06-19 01:41:34',4232,163,'2005-06-27 03:11:34',1,'2006-02-15 21:30:53'), - (2537,'2005-06-19 01:52:21',3499,388,'2005-06-26 02:09:21',1,'2006-02-15 21:30:53'), - (2538,'2005-06-19 01:56:59',1287,472,'2005-06-25 00:54:59',2,'2006-02-15 21:30:53'), - (2539,'2005-06-19 01:58:39',4474,527,'2005-06-19 22:17:39',2,'2006-02-15 21:30:53'), - (2540,'2005-06-19 02:04:48',4305,363,'2005-06-20 22:42:48',2,'2006-02-15 21:30:53'), - (2541,'2005-06-19 02:08:10',129,360,'2005-06-23 23:32:10',1,'2006-02-15 21:30:53'), - (2542,'2005-06-19 02:08:39',1446,67,'2005-06-26 20:25:39',1,'2006-02-15 21:30:53'), - (2543,'2005-06-19 02:14:11',1729,58,'2005-06-21 00:40:11',2,'2006-02-15 21:30:53'), - (2544,'2005-06-19 02:16:17',1465,558,'2005-06-22 21:45:17',1,'2006-02-15 21:30:53'), - (2545,'2005-06-19 02:23:36',3237,413,'2005-06-20 03:17:36',2,'2006-02-15 21:30:53'), - (2546,'2005-06-19 02:39:39',971,272,'2005-06-23 03:56:39',2,'2006-02-15 21:30:53'), - (2547,'2005-06-19 02:44:17',4560,162,'2005-06-24 08:01:17',2,'2006-02-15 21:30:53'), - (2548,'2005-06-19 02:45:35',4292,561,'2005-06-22 06:52:35',2,'2006-02-15 21:30:53'), - (2549,'2005-06-19 02:46:39',3854,495,'2005-06-26 22:30:39',2,'2006-02-15 21:30:53'), - (2550,'2005-06-19 02:49:55',1370,38,'2005-06-24 01:37:55',1,'2006-02-15 21:30:53'), - (2551,'2005-06-19 02:51:04',2007,444,'2005-06-28 05:02:04',1,'2006-02-15 21:30:53'), - (2552,'2005-06-19 03:01:29',664,389,'2005-06-28 04:13:29',1,'2006-02-15 21:30:53'), - (2553,'2005-06-19 03:04:59',923,473,'2005-06-26 02:36:59',2,'2006-02-15 21:30:53'), - (2554,'2005-06-19 03:05:38',3916,322,'2005-06-25 23:03:38',1,'2006-02-15 21:30:53'), - (2555,'2005-06-19 03:07:02',260,191,'2005-06-25 05:25:02',2,'2006-02-15 21:30:53'), - (2556,'2005-06-19 03:07:32',125,377,'2005-06-23 23:09:32',1,'2006-02-15 21:30:53'), - (2557,'2005-06-19 03:08:51',4546,257,'2005-06-20 07:59:51',1,'2006-02-15 21:30:53'), - (2558,'2005-06-19 03:09:16',2920,361,'2005-06-24 05:29:16',1,'2006-02-15 21:30:53'), - (2559,'2005-06-19 03:09:46',4433,414,'2005-06-28 07:49:46',1,'2006-02-15 21:30:53'), - (2560,'2005-06-19 03:12:42',3340,309,'2005-06-28 02:28:42',1,'2006-02-15 21:30:53'), - (2561,'2005-06-19 03:14:52',4128,256,'2005-06-21 02:42:52',2,'2006-02-15 21:30:53'), - (2562,'2005-06-19 03:15:05',51,265,'2005-06-21 08:26:05',2,'2006-02-15 21:30:53'), - (2563,'2005-06-19 03:24:17',1935,41,'2005-06-23 04:08:17',2,'2006-02-15 21:30:53'), - (2564,'2005-06-19 03:41:10',4008,408,'2005-06-24 03:10:10',1,'2006-02-15 21:30:53'), - (2565,'2005-06-19 03:44:03',2347,128,'2005-06-24 01:26:03',2,'2006-02-15 21:30:53'), - (2566,'2005-06-19 03:45:39',495,486,'2005-06-25 08:43:39',2,'2006-02-15 21:30:53'), - (2567,'2005-06-19 04:04:46',216,496,'2005-06-19 23:39:46',2,'2006-02-15 21:30:53'), - (2568,'2005-06-19 04:09:03',3032,190,'2005-06-24 23:24:03',1,'2006-02-15 21:30:53'), - (2569,'2005-06-19 04:19:04',30,213,'2005-06-26 04:31:04',1,'2006-02-15 21:30:53'), - (2570,'2005-06-19 04:20:13',1105,5,'2005-06-25 07:00:13',1,'2006-02-15 21:30:53'), - (2571,'2005-06-19 04:20:14',1800,66,'2005-06-21 07:28:14',2,'2006-02-15 21:30:53'), - (2572,'2005-06-19 04:21:26',2449,159,'2005-06-23 09:22:26',2,'2006-02-15 21:30:53'), - (2573,'2005-06-19 04:23:18',3354,563,'2005-06-23 06:04:18',1,'2006-02-15 21:30:53'), - (2574,'2005-06-19 04:23:52',3320,143,'2005-06-20 05:24:52',1,'2006-02-15 21:30:53'), - (2575,'2005-06-19 04:32:52',354,336,'2005-06-24 09:37:52',1,'2006-02-15 21:30:53'), - (2576,'2005-06-19 04:34:15',2928,559,'2005-06-28 10:02:15',2,'2006-02-15 21:30:53'), - (2577,'2005-06-19 04:36:03',447,66,'2005-06-28 00:38:03',2,'2006-02-15 21:30:53'), - (2578,'2005-06-19 04:40:06',1695,267,'2005-06-26 09:37:06',2,'2006-02-15 21:30:53'), - (2579,'2005-06-19 04:40:44',3836,493,'2005-06-22 09:22:44',1,'2006-02-15 21:30:53'), - (2580,'2005-06-19 04:44:30',2527,219,'2005-06-23 04:15:30',1,'2006-02-15 21:30:53'), - (2581,'2005-06-19 04:54:13',376,456,'2005-06-23 23:28:13',2,'2006-02-15 21:30:53'), - (2582,'2005-06-19 04:56:27',201,267,'2005-06-26 08:56:27',2,'2006-02-15 21:30:53'), - (2583,'2005-06-19 05:01:40',3999,523,'2005-06-28 00:04:40',1,'2006-02-15 21:30:53'), - (2584,'2005-06-19 05:02:36',3733,90,'2005-06-28 04:52:36',2,'2006-02-15 21:30:53'), - (2585,'2005-06-19 05:05:03',91,406,'2005-06-20 09:28:03',1,'2006-02-15 21:30:53'), - (2586,'2005-06-19 05:05:11',4104,537,'2005-06-27 00:23:11',1,'2006-02-15 21:30:53'), - (2587,'2005-06-19 05:06:14',2188,331,'2005-06-24 10:50:14',2,'2006-02-15 21:30:53'), - (2588,'2005-06-19 05:20:31',3626,143,'2005-06-22 04:20:31',2,'2006-02-15 21:30:53'), - (2589,'2005-06-19 05:21:27',225,164,'2005-06-21 09:55:27',2,'2006-02-15 21:30:53'), - (2590,'2005-06-19 05:31:40',3572,324,'2005-06-20 07:58:40',2,'2006-02-15 21:30:53'), - (2591,'2005-06-19 05:32:22',4481,438,'2005-06-25 23:42:22',1,'2006-02-15 21:30:53'), - (2592,'2005-06-19 05:36:54',282,208,'2005-06-21 08:44:54',1,'2006-02-15 21:30:53'), - (2593,'2005-06-19 05:40:11',2031,556,'2005-06-28 08:11:11',1,'2006-02-15 21:30:53'), - (2594,'2005-06-19 05:43:43',829,123,'2005-06-25 03:41:43',2,'2006-02-15 21:30:53'), - (2595,'2005-06-19 05:43:55',3197,122,'2005-06-25 10:20:55',1,'2006-02-15 21:30:53'), - (2596,'2005-06-19 05:48:26',2229,80,'2005-06-24 10:16:26',1,'2006-02-15 21:30:53'), - (2597,'2005-06-19 05:53:46',2278,407,'2005-06-20 05:14:46',1,'2006-02-15 21:30:53'), - (2598,'2005-06-19 05:59:57',2079,265,'2005-06-24 11:44:57',2,'2006-02-15 21:30:53'), - (2599,'2005-06-19 06:06:07',461,171,'2005-06-27 01:10:07',1,'2006-02-15 21:30:53'), - (2600,'2005-06-19 06:07:25',469,423,'2005-06-28 03:37:25',2,'2006-02-15 21:30:53'), - (2601,'2005-06-19 06:09:44',2898,98,'2005-06-20 08:03:44',1,'2006-02-15 21:30:53'), - (2602,'2005-06-19 06:10:08',4124,173,'2005-06-24 00:39:08',2,'2006-02-15 21:30:53'), - (2603,'2005-06-19 06:21:25',587,222,'2005-06-26 03:19:25',1,'2006-02-15 21:30:53'), - (2604,'2005-06-19 06:30:10',2889,28,'2005-06-25 11:16:10',2,'2006-02-15 21:30:53'), - (2605,'2005-06-19 06:48:01',2342,38,'2005-06-25 07:00:01',1,'2006-02-15 21:30:53'), - (2606,'2005-06-19 06:51:32',4133,364,'2005-06-21 03:15:32',2,'2006-02-15 21:30:53'), - (2607,'2005-06-19 06:55:01',3922,340,'2005-06-25 03:21:01',2,'2006-02-15 21:30:53'), - (2608,'2005-06-19 07:10:36',1618,132,'2005-06-24 13:09:36',1,'2006-02-15 21:30:53'), - (2609,'2005-06-19 07:13:12',2254,383,'2005-06-28 12:30:12',2,'2006-02-15 21:30:53'), - (2610,'2005-06-19 07:16:20',3845,542,'2005-06-25 09:39:20',2,'2006-02-15 21:30:53'), - (2611,'2005-06-19 07:18:17',3682,301,'2005-06-21 10:19:17',1,'2006-02-15 21:30:53'), - (2612,'2005-06-19 07:19:41',1691,287,'2005-06-25 11:10:41',1,'2006-02-15 21:30:53'), - (2613,'2005-06-19 07:25:50',3830,179,'2005-06-21 03:04:50',1,'2006-02-15 21:30:53'), - (2614,'2005-06-19 07:28:11',4147,145,'2005-06-22 12:33:11',1,'2006-02-15 21:30:53'), - (2615,'2005-06-19 07:29:13',3810,578,'2005-06-27 12:50:13',1,'2006-02-15 21:30:53'), - (2616,'2005-06-19 07:33:00',581,478,'2005-06-28 03:05:00',1,'2006-02-15 21:30:53'), - (2617,'2005-06-19 07:48:31',204,313,'2005-06-27 11:56:31',1,'2006-02-15 21:30:53'), - (2618,'2005-06-19 08:03:01',2465,310,'2005-06-24 03:23:01',2,'2006-02-15 21:30:53'), - (2619,'2005-06-19 08:03:12',1848,350,'2005-06-21 05:02:12',2,'2006-02-15 21:30:53'), - (2620,'2005-06-19 08:06:29',3183,94,'2005-06-24 11:42:29',1,'2006-02-15 21:30:53'), - (2621,'2005-06-19 08:07:31',1746,439,'2005-06-28 05:36:31',1,'2006-02-15 21:30:53'), - (2622,'2005-06-19 08:10:41',1393,573,'2005-06-28 10:44:41',2,'2006-02-15 21:30:53'), - (2623,'2005-06-19 08:11:51',4477,12,'2005-06-26 12:28:51',2,'2006-02-15 21:30:53'), - (2624,'2005-06-19 08:22:09',3071,32,'2005-06-27 11:13:09',1,'2006-02-15 21:30:53'), - (2625,'2005-06-19 08:23:11',3946,25,'2005-06-26 09:52:11',2,'2006-02-15 21:30:53'), - (2626,'2005-06-19 08:28:44',2816,450,'2005-06-24 03:58:44',1,'2006-02-15 21:30:53'), - (2627,'2005-06-19 08:32:00',2779,592,'2005-06-24 04:31:00',2,'2006-02-15 21:30:53'), - (2628,'2005-06-19 08:34:53',3917,3,'2005-06-28 04:19:53',2,'2006-02-15 21:30:53'), - (2629,'2005-06-19 08:42:12',1810,458,'2005-06-28 03:38:12',2,'2006-02-15 21:30:53'), - (2630,'2005-06-19 08:47:21',3904,236,'2005-06-25 09:31:21',1,'2006-02-15 21:30:53'), - (2631,'2005-06-19 08:49:53',3471,39,'2005-06-26 03:25:53',1,'2006-02-15 21:30:53'), - (2632,'2005-06-19 08:51:47',2274,574,'2005-06-23 07:13:47',2,'2006-02-15 21:30:53'), - (2633,'2005-06-19 08:53:10',3462,68,'2005-06-20 07:56:10',1,'2006-02-15 21:30:53'), - (2634,'2005-06-19 08:55:17',3687,318,'2005-06-20 11:44:17',2,'2006-02-15 21:30:53'), - (2635,'2005-06-19 09:08:45',3332,105,'2005-06-26 09:20:45',1,'2006-02-15 21:30:53'), - (2636,'2005-06-19 09:13:06',2102,253,'2005-06-25 07:47:06',2,'2006-02-15 21:30:53'), - (2637,'2005-06-19 09:20:56',2736,327,'2005-06-27 10:09:56',2,'2006-02-15 21:30:53'), - (2638,'2005-06-19 09:23:30',2944,295,'2005-06-26 14:56:30',1,'2006-02-15 21:30:53'), - (2639,'2005-06-19 09:24:02',3971,116,'2005-06-21 14:16:02',2,'2006-02-15 21:30:53'), - (2640,'2005-06-19 09:26:13',721,540,'2005-06-20 14:38:13',1,'2006-02-15 21:30:53'), - (2641,'2005-06-19 09:38:33',231,374,'2005-06-22 09:55:33',1,'2006-02-15 21:30:53'), - (2642,'2005-06-19 09:39:01',2065,4,'2005-06-25 08:33:01',1,'2006-02-15 21:30:53'), - (2643,'2005-06-19 09:39:27',1928,318,'2005-06-26 10:27:27',2,'2006-02-15 21:30:53'), - (2644,'2005-06-19 09:42:30',1923,309,'2005-06-27 07:23:30',2,'2006-02-15 21:30:53'), - (2645,'2005-06-19 09:50:35',2284,181,'2005-06-28 06:47:35',2,'2006-02-15 21:30:53'), - (2646,'2005-06-19 09:56:01',3511,275,'2005-06-21 04:15:01',2,'2006-02-15 21:30:53'), - (2647,'2005-06-19 09:57:56',1954,54,'2005-06-22 15:55:56',1,'2006-02-15 21:30:53'), - (2648,'2005-06-19 10:06:20',1620,31,'2005-06-21 04:30:20',2,'2006-02-15 21:30:53'), - (2649,'2005-06-19 10:20:09',98,153,'2005-06-21 10:05:09',1,'2006-02-15 21:30:53'), - (2650,'2005-06-19 10:21:45',4211,209,'2005-06-21 08:01:45',1,'2006-02-15 21:30:53'), - (2651,'2005-06-19 10:22:56',2181,576,'2005-06-27 13:37:56',1,'2006-02-15 21:30:53'), - (2652,'2005-06-19 10:35:26',3108,589,'2005-06-28 08:03:26',1,'2006-02-15 21:30:53'), - (2653,'2005-06-19 10:36:53',3528,340,'2005-06-26 15:15:53',1,'2006-02-15 21:30:53'), - (2654,'2005-06-19 10:37:54',3697,405,'2005-06-27 11:44:54',2,'2006-02-15 21:30:53'), - (2655,'2005-06-19 10:38:42',1649,29,'2005-06-23 14:20:42',1,'2006-02-15 21:30:53'), - (2656,'2005-06-19 10:42:33',559,280,'2005-06-24 08:31:33',2,'2006-02-15 21:30:53'), - (2657,'2005-06-19 10:42:59',3595,19,'2005-06-28 12:37:59',1,'2006-02-15 21:30:53'), - (2658,'2005-06-19 10:43:42',3281,156,'2005-06-24 16:23:42',1,'2006-02-15 21:30:53'), - (2659,'2005-06-19 10:47:42',66,139,'2005-06-23 14:03:42',1,'2006-02-15 21:30:53'), - (2660,'2005-06-19 10:50:02',4341,221,'2005-06-28 12:49:02',1,'2006-02-15 21:30:53'), - (2661,'2005-06-19 10:50:52',3652,452,'2005-06-25 08:44:52',2,'2006-02-15 21:30:53'), - (2662,'2005-06-19 10:53:42',3936,68,'2005-06-20 11:41:42',1,'2006-02-15 21:30:53'), - (2663,'2005-06-19 10:54:00',1012,583,'2005-06-20 16:48:00',1,'2006-02-15 21:30:53'), - (2664,'2005-06-19 11:11:23',3496,299,'2005-06-28 08:30:23',2,'2006-02-15 21:30:53'), - (2665,'2005-06-19 11:12:35',4531,133,'2005-06-26 11:55:35',2,'2006-02-15 21:30:53'), - (2666,'2005-06-19 11:17:12',1872,454,'2005-06-28 12:47:12',1,'2006-02-15 21:30:53'), - (2667,'2005-06-19 11:28:46',1028,200,'2005-06-27 11:48:46',2,'2006-02-15 21:30:53'), - (2668,'2005-06-19 11:28:47',3127,568,'2005-06-24 10:12:47',2,'2006-02-15 21:30:53'), - (2669,'2005-06-19 11:28:52',2734,523,'2005-06-20 16:43:52',1,'2006-02-15 21:30:53'), - (2670,'2005-06-19 11:30:16',3518,457,'2005-06-21 17:25:16',2,'2006-02-15 21:30:53'), - (2671,'2005-06-19 11:33:11',2164,451,'2005-06-26 14:30:11',2,'2006-02-15 21:30:53'), - (2672,'2005-06-19 11:42:04',1164,420,'2005-06-25 09:14:04',2,'2006-02-15 21:30:53'), - (2673,'2005-06-19 11:42:20',2487,29,'2005-06-23 07:16:20',1,'2006-02-15 21:30:53'), - (2674,'2005-06-19 11:47:59',3744,585,'2005-06-20 08:09:59',1,'2006-02-15 21:30:53'), - (2675,'2005-06-19 11:52:15',3078,230,'2005-06-23 16:45:15',1,'2006-02-15 21:30:53'), - (2676,'2005-06-19 11:54:57',3938,477,'2005-06-24 15:34:57',2,'2006-02-15 21:30:53'), - (2677,'2005-06-19 12:01:59',4384,428,'2005-06-21 06:15:59',2,'2006-02-15 21:30:53'), - (2678,'2005-06-19 12:12:23',4230,258,'2005-06-21 16:28:23',2,'2006-02-15 21:30:53'), - (2679,'2005-06-19 12:12:30',1994,109,'2005-06-27 08:27:30',1,'2006-02-15 21:30:53'), - (2680,'2005-06-19 12:13:37',865,114,'2005-06-27 15:15:37',1,'2006-02-15 21:30:53'), - (2681,'2005-06-19 12:15:27',2704,196,'2005-06-21 16:48:27',2,'2006-02-15 21:30:53'), - (2682,'2005-06-19 12:18:17',3609,538,'2005-06-28 14:09:17',1,'2006-02-15 21:30:53'), - (2683,'2005-06-19 12:27:19',2860,241,'2005-06-21 16:26:19',2,'2006-02-15 21:30:53'), - (2684,'2005-06-19 12:29:08',1225,17,'2005-06-28 08:50:08',2,'2006-02-15 21:30:53'), - (2685,'2005-06-19 12:35:21',1170,283,'2005-06-22 16:58:21',1,'2006-02-15 21:30:53'), - (2686,'2005-06-19 12:44:20',2686,68,'2005-06-20 16:00:20',1,'2006-02-15 21:30:53'), - (2687,'2005-06-19 12:46:52',3152,254,'2005-06-23 06:58:52',2,'2006-02-15 21:30:53'), - (2688,'2005-06-19 12:50:56',4281,309,'2005-06-28 17:58:56',2,'2006-02-15 21:30:53'), - (2689,'2005-06-19 12:58:53',2478,567,'2005-06-24 17:35:53',1,'2006-02-15 21:30:53'), - (2690,'2005-06-19 13:00:02',1381,391,'2005-06-27 14:29:02',1,'2006-02-15 21:30:53'), - (2691,'2005-06-19 13:06:50',3469,242,'2005-06-26 15:56:50',1,'2006-02-15 21:30:53'), - (2692,'2005-06-19 13:08:19',3162,388,'2005-06-21 16:45:19',1,'2006-02-15 21:30:53'), - (2693,'2005-06-19 13:11:47',2570,107,'2005-06-27 11:17:47',1,'2006-02-15 21:30:53'), - (2694,'2005-06-19 13:17:21',380,368,'2005-06-24 15:09:21',1,'2006-02-15 21:30:53'), - (2695,'2005-06-19 13:25:53',190,208,'2005-06-24 17:12:53',2,'2006-02-15 21:30:53'), - (2696,'2005-06-19 13:28:42',2110,597,'2005-06-28 14:06:42',2,'2006-02-15 21:30:53'), - (2697,'2005-06-19 13:29:08',2271,448,'2005-06-23 13:21:08',1,'2006-02-15 21:30:53'), - (2698,'2005-06-19 13:29:11',3900,420,'2005-06-20 07:31:11',2,'2006-02-15 21:30:53'), - (2699,'2005-06-19 13:29:28',72,267,'2005-06-24 11:15:28',2,'2006-02-15 21:30:53'), - (2700,'2005-06-19 13:31:52',928,180,'2005-06-27 19:30:52',1,'2006-02-15 21:30:53'), - (2701,'2005-06-19 13:33:06',1623,29,'2005-06-28 15:11:06',2,'2006-02-15 21:30:53'), - (2702,'2005-06-19 13:35:56',1736,329,'2005-06-20 14:07:56',2,'2006-02-15 21:30:53'), - (2703,'2005-06-19 13:36:06',4080,319,'2005-06-28 08:26:06',2,'2006-02-15 21:30:53'), - (2704,'2005-06-19 13:50:10',2026,246,'2005-06-26 18:25:10',2,'2006-02-15 21:30:53'), - (2705,'2005-06-19 13:54:30',1191,562,'2005-06-20 12:31:30',1,'2006-02-15 21:30:53'), - (2706,'2005-06-19 13:56:51',373,559,'2005-06-21 17:23:51',2,'2006-02-15 21:30:53'), - (2707,'2005-06-19 13:57:08',4486,589,'2005-06-27 11:09:08',2,'2006-02-15 21:30:53'), - (2708,'2005-06-19 13:59:05',2659,541,'2005-06-24 10:02:05',2,'2006-02-15 21:30:53'), - (2709,'2005-06-19 14:00:26',2877,7,'2005-06-23 14:56:26',2,'2006-02-15 21:30:53'), - (2710,'2005-06-19 14:03:56',2965,446,'2005-06-21 16:15:56',1,'2006-02-15 21:30:53'), - (2711,'2005-06-19 14:12:22',3944,313,'2005-06-21 09:29:22',1,'2006-02-15 21:30:53'), - (2712,'2005-06-19 14:20:13',3132,411,'2005-06-22 19:08:13',1,'2006-02-15 21:30:53'), - (2713,'2005-06-19 14:23:09',3979,378,'2005-06-20 17:55:09',1,'2006-02-15 21:30:53'), - (2714,'2005-06-19 14:26:09',2853,81,'2005-06-23 17:24:09',2,'2006-02-15 21:30:53'), - (2715,'2005-06-19 14:29:35',2082,404,'2005-06-26 08:44:35',2,'2006-02-15 21:30:53'), - (2716,'2005-06-19 14:40:17',944,252,'2005-06-27 17:45:17',2,'2006-02-15 21:30:53'), - (2717,'2005-06-19 14:46:10',140,200,'2005-06-22 20:17:10',1,'2006-02-15 21:30:53'), - (2718,'2005-06-19 14:49:42',4443,139,'2005-06-26 19:37:42',1,'2006-02-15 21:30:53'), - (2719,'2005-06-19 14:50:19',1200,336,'2005-06-20 14:33:19',2,'2006-02-15 21:30:53'), - (2720,'2005-06-19 14:51:55',3597,504,'2005-06-27 13:06:55',1,'2006-02-15 21:30:53'), - (2721,'2005-06-19 14:53:24',3786,358,'2005-06-21 18:22:24',2,'2006-02-15 21:30:53'), - (2722,'2005-06-19 14:55:17',952,45,'2005-06-25 13:11:17',2,'2006-02-15 21:30:53'), - (2723,'2005-06-19 14:55:23',4317,277,'2005-06-20 14:28:23',1,'2006-02-15 21:30:53'), - (2724,'2005-06-19 14:57:54',3879,103,'2005-06-22 16:31:54',2,'2006-02-15 21:30:53'), - (2725,'2005-06-19 15:01:23',63,246,'2005-06-22 09:08:23',1,'2006-02-15 21:30:53'), - (2726,'2005-06-19 15:02:20',2970,420,'2005-06-21 15:38:20',1,'2006-02-15 21:30:53'), - (2727,'2005-06-19 15:02:39',3261,129,'2005-06-28 17:49:39',1,'2006-02-15 21:30:53'), - (2728,'2005-06-19 15:04:04',775,408,'2005-06-22 12:22:04',2,'2006-02-15 21:30:53'), - (2729,'2005-06-19 15:06:15',4449,510,'2005-06-27 17:58:15',2,'2006-02-15 21:30:53'), - (2730,'2005-06-19 15:10:09',1264,30,'2005-06-28 13:05:09',1,'2006-02-15 21:30:53'), - (2731,'2005-06-19 15:14:55',4218,138,'2005-06-27 14:30:55',2,'2006-02-15 21:30:53'), - (2732,'2005-06-19 15:19:39',610,386,'2005-06-25 19:39:39',2,'2006-02-15 21:30:53'), - (2733,'2005-06-19 15:21:53',1535,188,'2005-06-23 11:58:53',2,'2006-02-15 21:30:53'), - (2734,'2005-06-19 15:36:27',794,204,'2005-06-20 13:44:27',2,'2006-02-15 21:30:53'), - (2735,'2005-06-19 15:42:07',4550,29,'2005-06-22 17:28:07',1,'2006-02-15 21:30:53'), - (2736,'2005-06-19 15:43:20',4510,359,'2005-06-21 13:03:20',1,'2006-02-15 21:30:53'), - (2737,'2005-06-19 15:48:33',3131,513,'2005-06-26 18:44:33',2,'2006-02-15 21:30:53'), - (2738,'2005-06-19 15:56:30',350,75,'2005-06-20 16:14:30',2,'2006-02-15 21:30:53'), - (2739,'2005-06-19 15:58:38',213,212,'2005-06-27 15:01:38',2,'2006-02-15 21:30:53'), - (2740,'2005-06-19 15:59:04',1534,92,'2005-06-28 12:18:04',2,'2006-02-15 21:30:53'), - (2741,'2005-06-19 16:05:41',1662,36,'2005-06-20 20:48:41',1,'2006-02-15 21:30:53'), - (2742,'2005-06-19 16:05:47',4154,187,'2005-06-26 21:34:47',1,'2006-02-15 21:30:53'), - (2743,'2005-06-19 16:15:56',2611,35,'2005-06-23 12:30:56',1,'2006-02-15 21:30:53'), - (2744,'2005-06-19 16:20:40',4511,368,'2005-06-22 11:44:40',2,'2006-02-15 21:30:53'), - (2745,'2005-06-19 16:21:19',1253,26,'2005-06-21 22:07:19',2,'2006-02-15 21:30:53'), - (2746,'2005-06-19 16:21:40',933,562,'2005-06-28 11:56:40',2,'2006-02-15 21:30:53'), - (2747,'2005-06-19 16:22:07',1374,422,'2005-06-24 19:28:07',1,'2006-02-15 21:30:53'), - (2748,'2005-06-19 16:22:26',511,473,'2005-06-21 21:55:26',1,'2006-02-15 21:30:53'), - (2749,'2005-06-19 16:27:35',1540,358,'2005-06-25 21:06:35',2,'2006-02-15 21:30:53'), - (2750,'2005-06-19 16:37:24',3775,197,'2005-06-20 13:55:24',2,'2006-02-15 21:30:53'), - (2751,'2005-06-19 16:39:23',1291,148,'2005-06-25 13:57:23',1,'2006-02-15 21:30:53'), - (2752,'2005-06-19 16:44:18',386,149,'2005-06-22 12:40:18',2,'2006-02-15 21:30:53'), - (2753,'2005-06-19 16:44:35',2408,23,'2005-06-24 13:45:35',1,'2006-02-15 21:30:53'), - (2754,'2005-06-19 16:55:59',1761,267,'2005-06-26 18:11:59',1,'2006-02-15 21:30:53'), - (2755,'2005-06-19 16:56:31',946,506,'2005-06-27 12:02:31',2,'2006-02-15 21:30:53'), - (2756,'2005-06-19 16:57:42',3264,144,'2005-06-26 15:30:42',2,'2006-02-15 21:30:53'), - (2757,'2005-06-19 17:01:14',3814,243,'2005-06-28 11:38:14',1,'2006-02-15 21:30:53'), - (2758,'2005-06-19 17:04:35',3558,423,'2005-06-26 14:45:35',2,'2006-02-15 21:30:53'), - (2759,'2005-06-19 17:10:24',687,351,'2005-06-24 21:56:24',2,'2006-02-15 21:30:53'), - (2760,'2005-06-19 17:16:33',2602,192,'2005-06-26 14:58:33',1,'2006-02-15 21:30:53'), - (2761,'2005-06-19 17:22:17',2134,431,'2005-06-20 20:20:17',2,'2006-02-15 21:30:53'), - (2762,'2005-06-19 17:22:31',3431,457,'2005-06-25 22:43:31',2,'2006-02-15 21:30:53'), - (2763,'2005-06-19 17:23:34',3096,276,'2005-06-21 21:37:34',2,'2006-02-15 21:30:53'), - (2764,'2005-06-19 17:27:25',1718,479,'2005-06-28 17:18:25',2,'2006-02-15 21:30:53'), - (2765,'2005-06-19 17:34:39',1017,478,'2005-06-27 23:26:39',1,'2006-02-15 21:30:53'), - (2766,'2005-06-19 17:45:15',3421,345,'2005-06-23 20:11:15',2,'2006-02-15 21:30:53'), - (2767,'2005-06-19 17:46:35',4052,596,'2005-06-24 22:42:35',1,'2006-02-15 21:30:53'), - (2768,'2005-06-19 17:46:52',3018,129,'2005-06-25 21:49:52',1,'2006-02-15 21:30:53'), - (2769,'2005-06-19 17:52:14',1222,354,'2005-06-26 20:30:14',2,'2006-02-15 21:30:53'), - (2770,'2005-06-19 17:54:22',3042,533,'2005-06-26 23:09:22',2,'2006-02-15 21:30:53'), - (2771,'2005-06-19 17:54:48',40,262,'2005-06-27 17:14:48',1,'2006-02-15 21:30:53'), - (2772,'2005-06-19 17:59:27',1221,520,'2005-06-23 17:52:27',1,'2006-02-15 21:30:53'), - (2773,'2005-06-19 18:04:18',4155,505,'2005-06-28 23:52:18',1,'2006-02-15 21:30:53'), - (2774,'2005-06-19 18:05:11',2809,299,'2005-06-21 16:21:11',2,'2006-02-15 21:30:53'), - (2775,'2005-06-19 18:14:20',672,590,'2005-06-26 19:52:20',1,'2006-02-15 21:30:53'), - (2776,'2005-06-19 18:16:24',1726,551,'2005-06-26 14:43:24',2,'2006-02-15 21:30:53'), - (2777,'2005-06-19 18:16:26',4092,230,'2005-06-20 13:43:26',2,'2006-02-15 21:30:53'), - (2778,'2005-06-19 18:18:12',3357,422,'2005-06-28 21:43:12',1,'2006-02-15 21:30:53'), - (2779,'2005-06-19 18:19:07',1020,376,'2005-06-23 18:25:07',2,'2006-02-15 21:30:53'), - (2780,'2005-06-19 18:19:33',1513,360,'2005-06-28 22:29:33',1,'2006-02-15 21:30:53'), - (2781,'2005-06-19 18:24:42',1230,197,'2005-06-27 17:02:42',2,'2006-02-15 21:30:53'), - (2782,'2005-06-19 18:25:07',3644,156,'2005-06-22 14:10:07',1,'2006-02-15 21:30:53'), - (2783,'2005-06-19 18:29:10',2778,113,'2005-06-21 22:09:10',1,'2006-02-15 21:30:53'), - (2784,'2005-06-19 18:40:29',2305,289,'2005-06-28 15:27:29',1,'2006-02-15 21:30:53'), - (2785,'2005-06-19 18:43:57',826,137,'2005-06-24 15:36:57',2,'2006-02-15 21:30:53'), - (2786,'2005-06-19 18:46:43',2255,594,'2005-06-22 16:52:43',1,'2006-02-15 21:30:53'), - (2787,'2005-06-19 18:47:00',3371,307,'2005-06-22 20:22:00',2,'2006-02-15 21:30:53'), - (2788,'2005-06-19 18:48:11',1457,171,'2005-06-21 13:32:11',1,'2006-02-15 21:30:53'), - (2789,'2005-06-19 18:48:21',2398,514,'2005-06-21 21:50:21',1,'2006-02-15 21:30:53'), - (2790,'2005-06-19 18:49:45',202,97,'2005-06-21 00:13:45',1,'2006-02-15 21:30:53'), - (2791,'2005-06-19 18:51:27',2174,299,'2005-06-22 19:35:27',2,'2006-02-15 21:30:53'), - (2792,'2005-06-19 18:52:25',3057,437,'2005-06-23 17:39:25',1,'2006-02-15 21:30:53'), - (2793,'2005-06-19 18:52:37',732,419,'2005-06-25 19:45:37',2,'2006-02-15 21:30:53'), - (2794,'2005-06-19 18:53:05',1957,85,'2005-06-22 13:15:05',1,'2006-02-15 21:30:53'), - (2795,'2005-06-19 18:58:53',3694,129,'2005-06-28 18:56:53',1,'2006-02-15 21:30:53'), - (2796,'2005-06-19 19:00:37',2337,209,'2005-06-25 17:18:37',2,'2006-02-15 21:30:53'), - (2797,'2005-06-19 19:04:32',3222,486,'2005-06-20 22:43:32',1,'2006-02-15 21:30:53'), - (2798,'2005-06-19 19:07:48',1343,180,'2005-06-23 00:09:48',2,'2006-02-15 21:30:53'), - (2799,'2005-06-19 19:15:21',4579,576,'2005-06-21 21:35:21',1,'2006-02-15 21:30:53'), - (2800,'2005-06-19 19:15:56',183,146,'2005-06-23 00:15:56',1,'2006-02-15 21:30:53'), - (2801,'2005-06-19 19:18:09',4572,29,'2005-06-20 20:11:09',2,'2006-02-15 21:30:53'), - (2802,'2005-06-19 19:18:17',4067,489,'2005-06-21 17:58:17',2,'2006-02-15 21:30:53'), - (2803,'2005-06-19 19:18:27',103,120,'2005-06-27 21:48:27',1,'2006-02-15 21:30:53'), - (2804,'2005-06-19 19:24:54',88,426,'2005-06-25 01:19:54',2,'2006-02-15 21:30:53'), - (2805,'2005-06-19 19:29:17',2153,80,'2005-06-27 23:14:17',2,'2006-02-15 21:30:53'), - (2806,'2005-06-19 19:30:48',2114,510,'2005-06-20 19:42:48',2,'2006-02-15 21:30:53'), - (2807,'2005-06-19 19:32:53',2825,194,'2005-06-25 00:30:53',2,'2006-02-15 21:30:53'), - (2808,'2005-06-19 19:34:45',65,325,'2005-06-27 14:49:45',1,'2006-02-15 21:30:53'), - (2809,'2005-06-19 19:40:27',1786,44,'2005-06-27 15:28:27',2,'2006-02-15 21:30:53'), - (2810,'2005-06-19 19:44:12',2558,67,'2005-06-20 19:41:12',2,'2006-02-15 21:30:53'), - (2811,'2005-06-19 19:53:30',3890,457,'2005-06-22 23:21:30',2,'2006-02-15 21:30:53'), - (2812,'2005-06-19 19:58:16',3016,211,'2005-06-26 15:26:16',1,'2006-02-15 21:30:53'), - (2813,'2005-06-19 20:01:47',3420,284,'2005-06-27 01:51:47',1,'2006-02-15 21:30:53'), - (2814,'2005-06-19 20:01:59',1783,10,'2005-06-26 01:28:59',2,'2006-02-15 21:30:53'), - (2815,'2005-06-19 20:03:29',3046,27,'2005-06-25 22:50:29',2,'2006-02-15 21:30:53'), - (2816,'2005-06-19 20:04:23',2180,94,'2005-06-20 21:09:23',2,'2006-02-15 21:30:53'), - (2817,'2005-06-19 20:05:22',3476,510,'2005-06-24 23:29:22',1,'2006-02-15 21:30:53'), - (2818,'2005-06-19 20:05:52',2376,497,'2005-06-22 01:01:52',2,'2006-02-15 21:30:53'), - (2819,'2005-06-19 20:13:33',4100,82,'2005-06-26 16:44:33',1,'2006-02-15 21:30:53'), - (2820,'2005-06-19 20:20:33',851,316,'2005-06-26 20:32:33',1,'2006-02-15 21:30:53'), - (2821,'2005-06-19 20:26:52',2551,532,'2005-06-27 23:48:52',1,'2006-02-15 21:30:53'), - (2822,'2005-06-19 20:29:24',3599,48,'2005-06-23 02:21:24',1,'2006-02-15 21:30:53'), - (2823,'2005-06-19 20:30:21',3566,260,'2005-06-26 17:58:21',1,'2006-02-15 21:30:53'), - (2824,'2005-06-19 20:31:45',2878,506,'2005-06-29 00:40:45',2,'2006-02-15 21:30:53'), - (2825,'2005-06-19 20:32:19',2601,418,'2005-06-22 22:32:19',1,'2006-02-15 21:30:53'), - (2826,'2005-06-19 20:41:35',2980,125,'2005-06-25 17:23:35',1,'2006-02-15 21:30:53'), - (2827,'2005-06-19 20:50:01',2745,23,'2005-06-20 18:54:01',2,'2006-02-15 21:30:53'), - (2828,'2005-06-19 20:51:33',3230,526,'2005-06-25 17:38:33',1,'2006-02-15 21:30:53'), - (2829,'2005-06-19 21:11:30',2047,341,'2005-06-24 18:10:30',1,'2006-02-15 21:30:53'), - (2830,'2005-06-19 21:14:33',2080,21,'2005-06-21 17:46:33',1,'2006-02-15 21:30:53'), - (2831,'2005-06-19 21:17:06',4089,468,'2005-06-22 16:56:06',2,'2006-02-15 21:30:53'), - (2832,'2005-06-19 21:21:53',828,593,'2005-06-28 23:00:53',1,'2006-02-15 21:30:53'), - (2833,'2005-06-19 21:34:54',1976,232,'2005-06-28 16:21:54',1,'2006-02-15 21:30:53'), - (2834,'2005-06-19 21:41:46',2876,122,'2005-06-24 20:47:46',1,'2006-02-15 21:30:53'), - (2835,'2005-06-19 21:44:11',4411,89,'2005-06-26 16:46:11',2,'2006-02-15 21:30:53'), - (2836,'2005-06-19 21:58:21',1453,306,'2005-06-27 00:41:21',2,'2006-02-15 21:30:53'), - (2837,'2005-06-19 22:03:50',417,371,'2005-06-20 21:24:50',1,'2006-02-15 21:30:53'), - (2838,'2005-06-19 22:06:06',143,292,'2005-06-25 22:30:06',1,'2006-02-15 21:30:53'), - (2839,'2005-06-19 22:07:24',3856,256,'2005-06-23 16:37:24',2,'2006-02-15 21:30:53'), - (2840,'2005-06-19 22:17:44',1102,236,'2005-06-26 00:36:44',2,'2006-02-15 21:30:53'), - (2841,'2005-06-19 22:21:06',614,193,'2005-06-28 00:56:06',1,'2006-02-15 21:30:53'), - (2842,'2005-06-19 22:34:20',4183,217,'2005-06-22 03:46:20',2,'2006-02-15 21:30:53'), - (2843,'2005-06-19 22:36:39',1520,148,'2005-06-26 22:33:39',2,'2006-02-15 21:30:53'), - (2844,'2005-06-19 22:40:12',4452,178,'2005-06-24 03:58:12',2,'2006-02-15 21:30:53'), - (2845,'2005-06-19 22:46:37',3948,583,'2005-06-23 03:31:37',1,'2006-02-15 21:30:53'), - (2846,'2005-06-19 22:52:14',651,193,'2005-06-22 17:12:14',1,'2006-02-15 21:30:53'), - (2847,'2005-06-19 22:54:01',1247,148,'2005-06-27 23:05:01',2,'2006-02-15 21:30:53'), - (2848,'2005-06-19 22:55:37',3449,19,'2005-06-25 23:10:37',1,'2006-02-15 21:30:53'), - (2849,'2005-06-19 23:06:00',3628,283,'2005-06-25 18:36:00',1,'2006-02-15 21:30:53'), - (2850,'2005-06-19 23:06:28',206,262,'2005-06-28 03:30:28',2,'2006-02-15 21:30:53'), - (2851,'2005-06-19 23:07:03',2168,361,'2005-06-22 17:26:03',1,'2006-02-15 21:30:53'), - (2852,'2005-06-19 23:08:50',2695,453,'2005-06-26 04:00:50',1,'2006-02-15 21:30:53'), - (2853,'2005-06-19 23:09:41',2578,453,'2005-06-28 00:51:41',2,'2006-02-15 21:30:53'), - (2854,'2005-06-19 23:11:48',4453,81,'2005-06-23 19:37:48',2,'2006-02-15 21:30:53'), - (2855,'2005-06-19 23:11:49',3495,483,'2005-06-26 21:52:49',1,'2006-02-15 21:30:53'), - (2856,'2005-06-19 23:13:04',1859,210,'2005-06-23 22:47:04',1,'2006-02-15 21:30:53'), - (2857,'2005-06-19 23:15:15',2886,364,'2005-06-25 04:24:15',2,'2006-02-15 21:30:53'), - (2858,'2005-06-19 23:17:11',2628,268,'2005-06-21 19:07:11',1,'2006-02-15 21:30:53'), - (2859,'2005-06-19 23:18:42',126,147,'2005-06-20 22:38:42',1,'2006-02-15 21:30:53'), - (2860,'2005-06-19 23:20:40',3045,107,'2005-06-21 04:59:40',1,'2006-02-15 21:30:53'), - (2861,'2005-06-19 23:21:34',1489,116,'2005-06-26 17:32:34',1,'2006-02-15 21:30:53'), - (2862,'2005-06-19 23:47:24',4260,52,'2005-06-23 03:39:24',2,'2006-02-15 21:30:53'), - (2863,'2005-06-19 23:58:38',2410,228,'2005-06-23 23:27:38',2,'2006-02-15 21:30:53'), - (2864,'2005-06-20 00:00:52',1056,493,'2005-06-26 04:21:52',2,'2006-02-15 21:30:53'), - (2865,'2005-06-20 00:00:55',1569,10,'2005-06-21 02:20:55',1,'2006-02-15 21:30:53'), - (2866,'2005-06-20 00:01:36',2718,44,'2005-06-20 21:39:36',1,'2006-02-15 21:30:53'), - (2867,'2005-06-20 00:08:38',95,483,'2005-06-23 19:35:38',1,'2006-02-15 21:30:53'), - (2868,'2005-06-20 00:08:58',1213,214,'2005-06-25 21:23:58',2,'2006-02-15 21:30:53'), - (2869,'2005-06-20 00:09:25',1331,155,'2005-06-24 04:40:25',2,'2006-02-15 21:30:53'), - (2870,'2005-06-20 00:17:46',214,467,'2005-06-28 20:21:46',1,'2006-02-15 21:30:53'), - (2871,'2005-06-20 00:27:49',1731,443,'2005-06-29 01:36:49',1,'2006-02-15 21:30:53'), - (2872,'2005-06-20 00:38:21',3779,240,'2005-06-26 19:56:21',1,'2006-02-15 21:30:53'), - (2873,'2005-06-20 00:41:25',3321,160,'2005-06-25 02:06:25',1,'2006-02-15 21:30:53'), - (2874,'2005-06-20 00:42:26',331,166,'2005-06-28 01:37:26',2,'2006-02-15 21:30:53'), - (2875,'2005-06-20 00:47:18',3012,186,'2005-06-25 18:54:18',2,'2006-02-15 21:30:53'), - (2876,'2005-06-20 01:06:34',3117,39,'2005-06-23 04:55:34',1,'2006-02-15 21:30:53'), - (2877,'2005-06-20 01:07:16',485,267,'2005-06-24 01:05:16',1,'2006-02-15 21:30:53'), - (2878,'2005-06-20 01:09:14',4120,88,'2005-06-21 21:40:14',2,'2006-02-15 21:30:53'), - (2879,'2005-06-20 01:24:10',1920,583,'2005-06-28 20:12:10',2,'2006-02-15 21:30:53'), - (2880,'2005-06-20 01:24:54',1700,193,'2005-06-23 02:42:54',2,'2006-02-15 21:30:53'), - (2881,'2005-06-20 01:26:18',1391,307,'2005-06-26 23:42:18',1,'2006-02-15 21:30:53'), - (2882,'2005-06-20 01:26:26',205,152,'2005-06-21 19:33:26',1,'2006-02-15 21:30:53'), - (2883,'2005-06-20 01:29:10',585,320,'2005-06-28 06:12:10',1,'2006-02-15 21:30:53'), - (2884,'2005-06-20 01:31:16',3384,319,'2005-06-21 04:03:16',2,'2006-02-15 21:30:53'), - (2885,'2005-06-20 01:33:42',2701,330,'2005-06-22 22:23:42',1,'2006-02-15 21:30:53'), - (2886,'2005-06-20 01:38:39',1755,154,'2005-06-23 04:28:39',2,'2006-02-15 21:30:53'), - (2887,'2005-06-20 01:39:43',1073,453,'2005-06-25 05:22:43',2,'2006-02-15 21:30:53'), - (2888,'2005-06-20 01:50:56',468,7,'2005-06-22 05:05:56',2,'2006-02-15 21:30:53'), - (2889,'2005-06-20 01:54:08',151,213,'2005-06-23 06:33:08',1,'2006-02-15 21:30:53'), - (2890,'2005-06-20 02:00:45',3437,392,'2005-06-27 21:12:45',1,'2006-02-15 21:30:53'), - (2891,'2005-06-20 02:02:05',343,32,'2005-06-25 02:45:05',1,'2006-02-15 21:30:53'), - (2892,'2005-06-20 02:06:39',2993,430,'2005-06-21 02:50:39',2,'2006-02-15 21:30:53'), - (2893,'2005-06-20 02:22:08',397,153,'2005-06-26 21:01:08',2,'2006-02-15 21:30:53'), - (2894,'2005-06-20 02:22:42',4316,76,'2005-06-22 00:38:42',1,'2006-02-15 21:30:53'), - (2895,'2005-06-20 02:26:31',4445,141,'2005-06-27 23:42:31',2,'2006-02-15 21:30:53'), - (2896,'2005-06-20 02:33:42',1086,40,'2005-06-26 05:29:42',2,'2006-02-15 21:30:53'), - (2897,'2005-06-20 02:34:23',3464,107,'2005-06-25 05:29:23',1,'2006-02-15 21:30:53'), - (2898,'2005-06-20 02:38:06',3106,178,'2005-06-29 08:18:06',2,'2006-02-15 21:30:53'), - (2899,'2005-06-20 02:39:21',1919,459,'2005-06-23 06:47:21',1,'2006-02-15 21:30:53'), - (2900,'2005-06-20 02:40:04',3407,294,'2005-06-27 20:47:04',2,'2006-02-15 21:30:53'), - (2901,'2005-06-20 02:41:28',667,25,'2005-06-23 04:43:28',2,'2006-02-15 21:30:53'), - (2902,'2005-06-20 02:45:35',2787,304,'2005-06-26 07:51:35',1,'2006-02-15 21:30:53'), - (2903,'2005-06-20 02:49:01',3580,53,'2005-06-25 05:03:01',2,'2006-02-15 21:30:53'), - (2904,'2005-06-20 02:54:06',2195,55,'2005-06-21 06:57:06',2,'2006-02-15 21:30:53'), - (2905,'2005-06-20 02:56:16',3898,189,'2005-06-24 23:51:16',2,'2006-02-15 21:30:53'), - (2906,'2005-06-20 03:04:56',1087,58,'2005-06-23 05:57:56',2,'2006-02-15 21:30:53'), - (2907,'2005-06-20 03:15:09',2516,208,'2005-06-20 21:56:09',2,'2006-02-15 21:30:53'), - (2908,'2005-06-20 03:16:52',517,91,'2005-06-22 08:46:52',1,'2006-02-15 21:30:53'), - (2909,'2005-06-20 03:19:10',1701,451,'2005-06-25 06:06:10',2,'2006-02-15 21:30:53'), - (2910,'2005-06-20 03:31:18',630,57,'2005-06-28 00:35:18',1,'2006-02-15 21:30:53'), - (2911,'2005-06-20 03:32:37',3645,502,'2005-06-22 22:06:37',1,'2006-02-15 21:30:53'), - (2912,'2005-06-20 03:32:45',1076,196,'2005-06-21 23:32:45',1,'2006-02-15 21:30:53'), - (2913,'2005-06-20 03:42:27',3456,402,'2005-06-23 04:47:27',1,'2006-02-15 21:30:53'), - (2914,'2005-06-20 03:43:18',2419,342,'2005-06-25 03:44:18',2,'2006-02-15 21:30:53'), - (2915,'2005-06-20 03:57:17',1293,262,'2005-06-24 05:59:17',2,'2006-02-15 21:30:53'), - (2916,'2005-06-20 04:01:04',3086,590,'2005-06-27 22:40:04',2,'2006-02-15 21:30:53'), - (2917,'2005-06-20 04:08:35',647,451,'2005-06-24 01:17:35',1,'2006-02-15 21:30:53'), - (2918,'2005-06-20 04:09:04',1985,215,'2005-06-21 10:07:04',1,'2006-02-15 21:30:53'), - (2919,'2005-06-20 04:10:16',2835,509,'2005-06-27 06:34:16',1,'2006-02-15 21:30:53'), - (2920,'2005-06-20 04:12:46',487,588,'2005-06-26 23:34:46',2,'2006-02-15 21:30:53'), - (2921,'2005-06-20 04:13:04',1785,59,'2005-06-28 01:28:04',1,'2006-02-15 21:30:53'), - (2922,'2005-06-20 04:13:47',1671,176,'2005-06-22 04:38:47',2,'2006-02-15 21:30:53'), - (2923,'2005-06-20 04:16:07',109,29,'2005-06-21 05:04:07',1,'2006-02-15 21:30:53'), - (2924,'2005-06-20 04:20:14',580,132,'2005-06-21 01:13:14',1,'2006-02-15 21:30:53'), - (2925,'2005-06-20 04:23:49',804,301,'2005-06-22 04:37:49',2,'2006-02-15 21:30:53'), - (2926,'2005-06-20 04:37:45',1055,379,'2005-06-26 02:17:45',1,'2006-02-15 21:30:53'), - (2927,'2005-06-20 04:41:41',393,403,'2005-06-23 01:59:41',1,'2006-02-15 21:30:53'), - (2928,'2005-06-20 04:43:45',1265,104,'2005-06-21 06:58:45',2,'2006-02-15 21:30:53'), - (2929,'2005-06-20 04:47:39',3389,333,'2005-06-25 23:16:39',2,'2006-02-15 21:30:53'), - (2930,'2005-06-20 04:50:29',3615,585,'2005-06-28 06:00:29',2,'2006-02-15 21:30:53'), - (2931,'2005-06-20 04:50:45',3122,258,'2005-06-29 09:18:45',1,'2006-02-15 21:30:53'), - (2932,'2005-06-20 04:51:19',4418,526,'2005-06-29 08:31:19',1,'2006-02-15 21:30:53'), - (2933,'2005-06-20 04:52:23',4483,323,'2005-06-26 07:12:23',2,'2006-02-15 21:30:53'), - (2934,'2005-06-20 05:05:53',697,228,'2005-06-22 02:44:53',1,'2006-02-15 21:30:53'), - (2935,'2005-06-20 05:07:24',2735,384,'2005-06-28 09:17:24',2,'2006-02-15 21:30:53'), - (2936,'2005-06-20 05:09:27',2675,330,'2005-06-26 10:16:27',2,'2006-02-15 21:30:53'), - (2937,'2005-06-20 05:15:37',1998,15,'2005-06-27 02:45:37',1,'2006-02-15 21:30:53'), - (2938,'2005-06-20 05:17:22',1795,504,'2005-06-26 09:38:22',1,'2006-02-15 21:30:53'), - (2939,'2005-06-20 05:18:16',2638,203,'2005-06-26 06:56:16',1,'2006-02-15 21:30:53'), - (2940,'2005-06-20 05:20:01',2504,73,'2005-06-28 06:11:01',2,'2006-02-15 21:30:53'), - (2941,'2005-06-20 05:22:18',3632,135,'2005-06-26 07:40:18',2,'2006-02-15 21:30:53'), - (2942,'2005-06-20 05:27:31',999,242,'2005-06-29 00:35:31',1,'2006-02-15 21:30:53'), - (2943,'2005-06-20 05:43:05',2591,418,'2005-06-25 04:31:05',1,'2006-02-15 21:30:53'), - (2944,'2005-06-20 05:43:42',1550,474,'2005-06-29 09:40:42',2,'2006-02-15 21:30:53'), - (2945,'2005-06-20 05:49:27',4193,153,'2005-06-26 09:48:27',1,'2006-02-15 21:30:53'), - (2946,'2005-06-20 05:50:40',3737,213,'2005-06-21 00:42:40',2,'2006-02-15 21:30:53'), - (2947,'2005-06-20 06:00:21',4302,151,'2005-06-23 10:04:21',2,'2006-02-15 21:30:53'), - (2948,'2005-06-20 06:02:35',4254,289,'2005-06-29 09:12:35',2,'2006-02-15 21:30:53'), - (2949,'2005-06-20 06:05:53',375,78,'2005-06-29 03:19:53',2,'2006-02-15 21:30:53'), - (2950,'2005-06-20 06:08:36',1438,561,'2005-06-27 07:45:36',2,'2006-02-15 21:30:53'), - (2951,'2005-06-20 06:23:01',2903,404,'2005-06-24 00:26:01',2,'2006-02-15 21:30:53'), - (2952,'2005-06-20 06:26:57',3759,13,'2005-06-22 11:51:57',1,'2006-02-15 21:30:53'), - (2953,'2005-06-20 06:39:11',1829,540,'2005-06-26 06:19:11',1,'2006-02-15 21:30:53'), - (2954,'2005-06-20 06:45:00',377,336,'2005-06-23 11:43:00',1,'2006-02-15 21:30:53'), - (2955,'2005-06-20 06:46:35',2312,244,'2005-06-25 05:34:35',2,'2006-02-15 21:30:53'), - (2956,'2005-06-20 06:47:23',2684,533,'2005-06-22 07:24:23',2,'2006-02-15 21:30:53'), - (2957,'2005-06-20 06:53:47',4034,542,'2005-06-29 09:21:47',2,'2006-02-15 21:30:53'), - (2958,'2005-06-20 06:56:20',1380,260,'2005-06-29 02:33:20',2,'2006-02-15 21:30:53'), - (2959,'2005-06-20 07:07:54',4185,372,'2005-06-27 03:31:54',1,'2006-02-15 21:30:53'), - (2960,'2005-06-20 07:10:09',3970,16,'2005-06-26 08:14:09',2,'2006-02-15 21:30:53'), - (2961,'2005-06-20 07:29:15',4539,399,'2005-06-24 08:05:15',1,'2006-02-15 21:30:53'), - (2962,'2005-06-20 07:31:55',2978,364,'2005-06-26 04:43:55',1,'2006-02-15 21:30:53'), - (2963,'2005-06-20 07:33:09',1444,24,'2005-06-28 09:23:09',1,'2006-02-15 21:30:53'), - (2964,'2005-06-20 07:33:29',1201,590,'2005-06-29 12:48:29',1,'2006-02-15 21:30:53'), - (2965,'2005-06-20 07:33:38',27,46,'2005-06-29 11:45:38',1,'2006-02-15 21:30:53'), - (2966,'2005-06-20 07:39:33',3483,511,'2005-06-29 07:48:33',1,'2006-02-15 21:30:53'), - (2967,'2005-06-20 07:40:35',4243,311,'2005-06-29 05:50:35',2,'2006-02-15 21:30:53'), - (2968,'2005-06-20 07:41:47',4415,252,'2005-06-23 04:27:47',1,'2006-02-15 21:30:53'), - (2969,'2005-06-20 07:44:27',1748,418,'2005-06-22 06:12:27',2,'2006-02-15 21:30:53'), - (2970,'2005-06-20 07:51:51',1167,449,'2005-06-28 10:14:51',2,'2006-02-15 21:30:53'), - (2971,'2005-06-20 07:56:00',1585,410,'2005-06-27 11:38:00',2,'2006-02-15 21:30:53'), - (2972,'2005-06-20 07:57:54',2232,531,'2005-06-21 12:48:54',1,'2006-02-15 21:30:53'), - (2973,'2005-06-20 07:59:27',2626,96,'2005-06-24 12:31:27',1,'2006-02-15 21:30:53'), - (2974,'2005-06-20 08:00:24',2322,472,'2005-06-25 05:10:24',2,'2006-02-15 21:30:53'), - (2975,'2005-06-20 08:06:18',4534,46,'2005-06-21 08:01:18',1,'2006-02-15 21:30:53'), - (2976,'2005-06-20 08:09:11',4210,55,'2005-06-21 10:45:11',1,'2006-02-15 21:30:53'), - (2977,'2005-06-20 08:15:27',2645,571,'2005-06-29 04:30:27',2,'2006-02-15 21:30:53'), - (2978,'2005-06-20 08:25:16',4364,548,'2005-06-23 05:42:16',1,'2006-02-15 21:30:53'), - (2979,'2005-06-20 08:31:05',3961,589,'2005-06-27 12:25:05',1,'2006-02-15 21:30:53'), - (2980,'2005-06-20 08:35:03',310,343,'2005-06-29 07:57:03',2,'2006-02-15 21:30:53'), - (2981,'2005-06-20 08:35:17',522,387,'2005-06-28 09:14:17',1,'2006-02-15 21:30:53'), - (2982,'2005-06-20 08:38:29',2574,130,'2005-06-28 13:21:29',1,'2006-02-15 21:30:53'), - (2983,'2005-06-20 08:41:42',1349,322,'2005-06-29 04:02:42',2,'2006-02-15 21:30:53'), - (2984,'2005-06-20 08:43:44',1819,435,'2005-06-22 03:08:44',2,'2006-02-15 21:30:53'), - (2985,'2005-06-20 08:45:08',122,154,'2005-06-22 04:26:08',2,'2006-02-15 21:30:53'), - (2986,'2005-06-20 08:50:28',478,556,'2005-06-26 05:24:28',2,'2006-02-15 21:30:53'), - (2987,'2005-06-20 08:55:50',1531,349,'2005-06-28 13:02:50',2,'2006-02-15 21:30:53'), - (2988,'2005-06-20 08:59:08',3160,557,'2005-06-28 04:31:08',2,'2006-02-15 21:30:53'), - (2989,'2005-06-20 08:59:37',1586,56,'2005-06-22 03:27:37',2,'2006-02-15 21:30:53'), - (2990,'2005-06-20 09:02:51',4559,18,'2005-06-29 13:19:51',2,'2006-02-15 21:30:53'), - (2991,'2005-06-20 09:10:43',4308,472,'2005-06-23 13:04:43',1,'2006-02-15 21:30:53'), - (2992,'2005-06-20 09:11:51',3347,439,'2005-06-24 05:59:51',1,'2006-02-15 21:30:53'), - (2993,'2005-06-20 09:12:12',1527,40,'2005-06-22 13:36:12',2,'2006-02-15 21:30:53'), - (2994,'2005-06-20 09:17:05',1290,163,'2005-06-29 04:41:05',1,'2006-02-15 21:30:53'), - (2995,'2005-06-20 09:18:22',4544,573,'2005-06-26 14:31:22',1,'2006-02-15 21:30:53'), - (2996,'2005-06-20 09:20:29',4064,500,'2005-06-27 09:18:29',1,'2006-02-15 21:30:53'), - (2997,'2005-06-20 09:23:45',1449,519,'2005-06-29 08:15:45',1,'2006-02-15 21:30:53'), - (2998,'2005-06-20 09:30:22',1288,380,'2005-06-24 06:31:22',2,'2006-02-15 21:30:53'), - (2999,'2005-06-20 09:30:34',735,295,'2005-06-26 05:51:34',2,'2006-02-15 21:30:53'), - (3000,'2005-06-20 09:32:33',549,50,'2005-06-22 07:45:33',1,'2006-02-15 21:30:53'), - (3001,'2005-06-20 09:50:16',2941,393,'2005-06-28 05:13:16',2,'2006-02-15 21:30:53'), - (3002,'2005-06-20 09:56:12',2749,266,'2005-06-24 12:15:12',2,'2006-02-15 21:30:53'), - (3003,'2005-06-20 10:00:51',616,38,'2005-06-22 06:28:51',2,'2006-02-15 21:30:53'), - (3004,'2005-06-20 10:04:36',2836,113,'2005-06-23 07:38:36',2,'2006-02-15 21:30:53'), - (3005,'2005-06-20 10:10:29',286,598,'2005-06-28 15:48:29',2,'2006-02-15 21:30:53'), - (3006,'2005-06-20 10:10:29',1677,133,'2005-06-22 07:26:29',2,'2006-02-15 21:30:53'), - (3007,'2005-06-20 10:11:53',1950,7,'2005-06-25 04:51:53',2,'2006-02-15 21:30:53'), - (3008,'2005-06-20 10:23:25',3383,202,'2005-06-26 11:00:25',2,'2006-02-15 21:30:53'), - (3009,'2005-06-20 10:24:44',2721,280,'2005-06-23 13:39:44',1,'2006-02-15 21:30:53'), - (3010,'2005-06-20 10:29:59',1298,567,'2005-06-27 06:52:59',1,'2006-02-15 21:30:53'), - (3011,'2005-06-20 10:39:10',4376,147,'2005-06-28 07:02:10',2,'2006-02-15 21:30:53'), - (3012,'2005-06-20 10:43:13',1392,206,'2005-06-28 10:07:13',2,'2006-02-15 21:30:53'), - (3013,'2005-06-20 10:45:09',4146,290,'2005-06-26 04:55:09',1,'2006-02-15 21:30:53'), - (3014,'2005-06-20 10:45:20',2179,434,'2005-06-23 06:29:20',1,'2006-02-15 21:30:53'), - (3015,'2005-06-20 10:48:56',1311,23,'2005-06-26 11:30:56',2,'2006-02-15 21:30:53'), - (3016,'2005-06-20 10:55:08',3514,558,'2005-06-24 14:05:08',1,'2006-02-15 21:30:53'), - (3017,'2005-06-20 11:08:56',2513,151,'2005-06-28 16:26:56',1,'2006-02-15 21:30:53'), - (3018,'2005-06-20 11:10:35',4150,112,'2005-06-25 07:17:35',2,'2006-02-15 21:30:53'), - (3019,'2005-06-20 11:11:52',491,144,'2005-06-27 08:30:52',2,'2006-02-15 21:30:53'), - (3020,'2005-06-20 11:12:04',4363,74,'2005-06-27 07:31:04',2,'2006-02-15 21:30:53'), - (3021,'2005-06-20 11:13:01',120,62,'2005-06-28 16:15:01',2,'2006-02-15 21:30:53'), - (3022,'2005-06-20 11:17:20',3745,466,'2005-06-26 13:15:20',2,'2006-02-15 21:30:53'), - (3023,'2005-06-20 11:18:11',4304,106,'2005-06-21 12:43:11',1,'2006-02-15 21:30:53'), - (3024,'2005-06-20 11:29:17',1966,328,'2005-06-27 12:51:17',2,'2006-02-15 21:30:53'), - (3025,'2005-06-20 11:46:48',1309,293,'2005-06-22 08:43:48',1,'2006-02-15 21:30:53'), - (3026,'2005-06-20 11:48:00',4032,347,'2005-06-21 12:51:00',2,'2006-02-15 21:30:53'), - (3027,'2005-06-20 11:50:30',4028,397,'2005-06-25 15:58:30',2,'2006-02-15 21:30:53'), - (3028,'2005-06-20 11:50:52',886,264,'2005-06-21 11:05:52',2,'2006-02-15 21:30:53'), - (3029,'2005-06-20 11:51:30',327,317,'2005-06-25 16:42:30',1,'2006-02-15 21:30:53'), - (3030,'2005-06-20 11:51:59',1543,395,'2005-06-24 10:51:59',1,'2006-02-15 21:30:53'), - (3031,'2005-06-20 11:52:49',1184,491,'2005-06-22 07:00:49',1,'2006-02-15 21:30:53'), - (3032,'2005-06-20 11:58:30',3734,172,'2005-06-24 09:49:30',1,'2006-02-15 21:30:53'), - (3033,'2005-06-20 12:02:05',4422,107,'2005-06-26 15:58:05',1,'2006-02-15 21:30:53'), - (3034,'2005-06-20 12:15:50',2755,296,'2005-06-24 06:21:50',2,'2006-02-15 21:30:53'), - (3035,'2005-06-20 12:17:03',1223,62,'2005-06-26 17:42:03',2,'2006-02-15 21:30:53'), - (3036,'2005-06-20 12:18:31',4463,399,'2005-06-29 09:52:31',1,'2006-02-15 21:30:53'), - (3037,'2005-06-20 12:28:03',2033,434,'2005-06-21 08:21:03',1,'2006-02-15 21:30:53'), - (3038,'2005-06-20 12:28:59',2919,27,'2005-06-25 07:48:59',1,'2006-02-15 21:30:53'), - (3039,'2005-06-20 12:32:30',4098,186,'2005-06-21 07:38:30',1,'2006-02-15 21:30:53'), - (3040,'2005-06-20 12:34:13',2568,162,'2005-06-21 12:33:13',1,'2006-02-15 21:30:53'), - (3041,'2005-06-20 12:35:44',2676,459,'2005-06-23 18:28:44',2,'2006-02-15 21:30:53'), - (3042,'2005-06-20 12:38:27',3103,291,'2005-06-26 11:18:27',1,'2006-02-15 21:30:53'), - (3043,'2005-06-20 12:38:35',633,599,'2005-06-29 14:16:35',2,'2006-02-15 21:30:53'), - (3044,'2005-06-20 12:38:49',3216,424,'2005-06-25 07:49:49',1,'2006-02-15 21:30:53'), - (3045,'2005-06-20 12:42:00',3065,459,'2005-06-23 10:49:00',2,'2006-02-15 21:30:53'), - (3046,'2005-06-20 12:42:59',471,559,'2005-06-26 17:40:59',2,'2006-02-15 21:30:53'), - (3047,'2005-06-20 12:45:33',624,13,'2005-06-29 13:09:33',2,'2006-02-15 21:30:53'), - (3048,'2005-06-20 12:49:55',4389,482,'2005-06-26 11:06:55',1,'2006-02-15 21:30:53'), - (3049,'2005-06-20 12:51:01',518,403,'2005-06-29 10:53:01',1,'2006-02-15 21:30:53'), - (3050,'2005-06-20 13:03:03',2397,557,'2005-06-29 07:22:03',1,'2006-02-15 21:30:53'), - (3051,'2005-06-20 13:06:52',1408,65,'2005-06-25 13:03:52',2,'2006-02-15 21:30:53'), - (3052,'2005-06-20 13:09:19',2359,329,'2005-06-29 11:55:19',2,'2006-02-15 21:30:53'), - (3053,'2005-06-20 13:10:30',818,329,'2005-06-25 17:22:30',2,'2006-02-15 21:30:53'), - (3054,'2005-06-20 13:16:41',2817,322,'2005-06-28 13:45:41',2,'2006-02-15 21:30:53'), - (3055,'2005-06-20 13:19:58',1510,23,'2005-06-27 14:54:58',1,'2006-02-15 21:30:53'), - (3056,'2005-06-20 13:20:58',2010,95,'2005-06-26 08:35:58',2,'2006-02-15 21:30:53'), - (3057,'2005-06-20 13:22:48',1101,307,'2005-06-26 17:22:48',2,'2006-02-15 21:30:53'), - (3058,'2005-06-20 13:28:35',938,137,'2005-06-28 13:57:35',2,'2006-02-15 21:30:53'), - (3059,'2005-06-20 13:38:41',2911,266,'2005-06-21 10:13:41',2,'2006-02-15 21:30:53'), - (3060,'2005-06-20 13:47:20',2075,446,'2005-06-25 16:00:20',2,'2006-02-15 21:30:53'), - (3061,'2005-06-20 13:48:21',4202,330,'2005-06-22 17:36:21',2,'2006-02-15 21:30:53'), - (3062,'2005-06-20 13:50:00',591,75,'2005-06-27 08:18:00',1,'2006-02-15 21:30:53'), - (3063,'2005-06-20 13:52:03',3954,515,'2005-06-28 13:36:03',2,'2006-02-15 21:30:53'), - (3064,'2005-06-20 13:53:13',2624,276,'2005-06-25 16:33:13',2,'2006-02-15 21:30:53'), - (3065,'2005-06-20 13:53:53',1687,227,'2005-06-24 11:31:53',1,'2006-02-15 21:30:53'), - (3066,'2005-06-20 13:55:41',1116,268,'2005-06-26 09:38:41',2,'2006-02-15 21:30:53'), - (3067,'2005-06-20 13:59:21',3094,349,'2005-06-28 19:09:21',2,'2006-02-15 21:30:53'), - (3068,'2005-06-20 14:02:22',1958,516,'2005-06-22 12:52:22',2,'2006-02-15 21:30:53'), - (3069,'2005-06-20 14:13:00',1952,237,'2005-06-28 10:57:00',1,'2006-02-15 21:30:53'), - (3070,'2005-06-20 14:15:39',3860,543,'2005-06-25 12:52:39',2,'2006-02-15 21:30:53'), - (3071,'2005-06-20 14:20:42',1198,582,'2005-06-24 19:01:42',1,'2006-02-15 21:30:53'), - (3072,'2005-06-20 14:21:31',4131,423,'2005-06-27 18:46:31',2,'2006-02-15 21:30:53'), - (3073,'2005-06-20 14:33:26',3164,471,'2005-06-26 08:42:26',2,'2006-02-15 21:30:53'), - (3074,'2005-06-20 14:41:41',1441,299,'2005-06-21 15:56:41',1,'2006-02-15 21:30:53'), - (3075,'2005-06-20 14:52:19',4346,161,'2005-06-28 18:48:19',2,'2006-02-15 21:30:53'), - (3076,'2005-06-20 15:01:19',1344,109,'2005-06-28 16:53:19',2,'2006-02-15 21:30:53'), - (3077,'2005-06-20 15:05:18',1675,303,'2005-06-26 20:52:18',2,'2006-02-15 21:30:53'), - (3078,'2005-06-20 15:09:48',3642,367,'2005-06-24 16:54:48',1,'2006-02-15 21:30:53'), - (3079,'2005-06-20 15:13:40',2135,350,'2005-06-21 12:03:40',1,'2006-02-15 21:30:53'), - (3080,'2005-06-20 15:22:32',118,377,'2005-06-24 11:08:32',1,'2006-02-15 21:30:53'), - (3081,'2005-06-20 15:29:13',2071,342,'2005-06-24 21:00:13',2,'2006-02-15 21:30:53'), - (3082,'2005-06-20 15:32:11',4431,164,'2005-06-28 13:08:11',1,'2006-02-15 21:30:53'), - (3083,'2005-06-20 15:33:47',2896,257,'2005-06-26 16:14:47',2,'2006-02-15 21:30:53'), - (3084,'2005-06-20 15:35:24',3578,514,'2005-06-23 19:11:24',1,'2006-02-15 21:30:53'), - (3085,'2005-06-20 15:42:33',4282,166,'2005-06-21 16:51:33',2,'2006-02-15 21:30:53'), - (3086,'2005-06-20 15:42:40',4437,377,'2005-06-25 19:21:40',1,'2006-02-15 21:30:53'), - (3087,'2005-06-20 15:53:59',1305,111,'2005-06-27 10:54:59',2,'2006-02-15 21:30:53'), - (3088,'2005-06-20 15:56:05',3049,384,'2005-06-29 13:02:05',1,'2006-02-15 21:30:53'), - (3089,'2005-06-20 15:57:01',539,151,'2005-06-25 13:15:01',2,'2006-02-15 21:30:53'), - (3090,'2005-06-20 16:00:19',3301,267,'2005-06-23 14:55:19',1,'2006-02-15 21:30:53'), - (3091,'2005-06-20 16:02:59',854,383,'2005-06-22 21:30:59',2,'2006-02-15 21:30:53'), - (3092,'2005-06-20 16:04:42',4344,347,'2005-06-27 19:54:42',1,'2006-02-15 21:30:53'), - (3093,'2005-06-20 16:06:14',2534,556,'2005-06-22 13:22:14',2,'2006-02-15 21:30:53'), - (3094,'2005-06-20 16:06:51',2048,114,'2005-06-24 13:23:51',1,'2006-02-15 21:30:53'), - (3095,'2005-06-20 16:16:53',3937,298,'2005-06-22 10:35:53',2,'2006-02-15 21:30:53'), - (3096,'2005-06-20 16:17:56',3851,79,'2005-06-24 10:17:56',2,'2006-02-15 21:30:53'), - (3097,'2005-06-20 16:26:14',4337,280,'2005-06-23 14:46:14',1,'2006-02-15 21:30:53'), - (3098,'2005-06-20 16:37:01',3409,498,'2005-06-22 22:24:01',1,'2006-02-15 21:30:53'), - (3099,'2005-06-20 16:44:33',3756,380,'2005-06-27 12:17:33',2,'2006-02-15 21:30:53'), - (3100,'2005-06-20 16:47:57',2428,487,'2005-06-26 16:59:57',1,'2006-02-15 21:30:53'), - (3101,'2005-06-20 16:48:58',1738,384,'2005-06-27 18:13:58',2,'2006-02-15 21:30:53'), - (3102,'2005-06-20 16:55:55',1144,522,'2005-06-29 13:49:55',1,'2006-02-15 21:30:53'), - (3103,'2005-06-20 16:58:19',1877,553,'2005-06-25 21:18:19',1,'2006-02-15 21:30:53'), - (3104,'2005-06-20 17:06:46',1490,196,'2005-06-28 13:18:46',2,'2006-02-15 21:30:53'), - (3105,'2005-06-20 17:11:46',130,385,'2005-06-21 11:48:46',2,'2006-02-15 21:30:53'), - (3106,'2005-06-20 17:18:06',2637,201,'2005-06-24 14:50:06',2,'2006-02-15 21:30:53'), - (3107,'2005-06-20 17:26:05',4527,303,'2005-06-25 12:36:05',1,'2006-02-15 21:30:53'), - (3108,'2005-06-20 17:28:43',2218,189,'2005-06-27 21:23:43',1,'2006-02-15 21:30:53'), - (3109,'2005-06-20 17:33:55',977,93,'2005-06-22 23:09:55',1,'2006-02-15 21:30:53'), - (3110,'2005-06-20 17:40:12',2008,333,'2005-06-24 17:09:12',1,'2006-02-15 21:30:53'), - (3111,'2005-06-20 17:46:47',4494,579,'2005-06-29 19:45:47',1,'2006-02-15 21:30:53'), - (3112,'2005-06-20 17:53:30',3725,35,'2005-06-26 16:03:30',1,'2006-02-15 21:30:53'), - (3113,'2005-06-20 17:56:40',3620,517,'2005-06-23 14:45:40',1,'2006-02-15 21:30:53'), - (3114,'2005-06-20 17:57:47',2388,8,'2005-06-21 19:18:47',2,'2006-02-15 21:30:53'), - (3115,'2005-06-20 17:59:05',2193,457,'2005-06-26 13:28:05',1,'2006-02-15 21:30:53'), - (3116,'2005-06-20 18:04:55',276,108,'2005-06-21 12:12:55',2,'2006-02-15 21:30:53'), - (3117,'2005-06-20 18:05:15',2184,31,'2005-06-26 17:28:15',1,'2006-02-15 21:30:53'), - (3118,'2005-06-20 18:05:57',1258,125,'2005-06-23 23:01:57',1,'2006-02-15 21:30:53'), - (3119,'2005-06-20 18:11:44',683,296,'2005-06-27 16:14:44',2,'2006-02-15 21:30:53'), - (3120,'2005-06-20 18:19:29',2530,107,'2005-06-23 23:40:29',1,'2006-02-15 21:30:53'), - (3121,'2005-06-20 18:23:30',797,132,'2005-06-21 20:36:30',1,'2006-02-15 21:30:53'), - (3122,'2005-06-20 18:25:57',2720,87,'2005-06-29 16:08:57',1,'2006-02-15 21:30:53'), - (3123,'2005-06-20 18:26:14',1656,289,'2005-06-29 17:17:14',1,'2006-02-15 21:30:53'), - (3124,'2005-06-20 18:28:19',3342,113,'2005-06-28 21:08:19',1,'2006-02-15 21:30:53'), - (3125,'2005-06-20 18:31:58',3293,382,'2005-06-21 15:03:58',1,'2006-02-15 21:30:53'), - (3126,'2005-06-20 18:38:22',1183,5,'2005-06-26 00:00:22',1,'2006-02-15 21:30:53'), - (3127,'2005-06-20 18:39:43',1292,461,'2005-06-28 17:55:43',1,'2006-02-15 21:30:53'), - (3128,'2005-06-20 18:41:47',189,543,'2005-06-24 20:54:47',2,'2006-02-15 21:30:53'), - (3129,'2005-06-20 18:57:48',1789,495,'2005-06-28 13:45:48',1,'2006-02-15 21:30:53'), - (3130,'2005-06-20 19:03:22',2569,341,'2005-06-29 18:05:22',2,'2006-02-15 21:30:53'), - (3131,'2005-06-20 19:08:00',3678,146,'2005-06-24 20:59:00',2,'2006-02-15 21:30:53'), - (3132,'2005-06-20 19:09:46',711,90,'2005-06-24 19:42:46',1,'2006-02-15 21:30:53'), - (3133,'2005-06-20 19:18:32',4529,120,'2005-06-26 17:54:32',2,'2006-02-15 21:30:53'), - (3134,'2005-06-20 19:29:09',1389,537,'2005-06-29 19:31:09',2,'2006-02-15 21:30:53'), - (3135,'2005-06-20 19:33:52',1122,12,'2005-06-29 18:20:52',1,'2006-02-15 21:30:53'), - (3136,'2005-06-20 19:39:08',3349,377,'2005-06-22 23:35:08',2,'2006-02-15 21:30:53'), - (3137,'2005-06-20 19:41:28',786,505,'2005-06-28 00:32:28',1,'2006-02-15 21:30:53'), - (3138,'2005-06-20 19:43:45',2265,570,'2005-06-26 20:41:45',1,'2006-02-15 21:30:53'), - (3139,'2005-06-20 19:44:45',3474,354,'2005-06-23 16:24:45',1,'2006-02-15 21:30:53'), - (3140,'2005-06-20 19:47:12',2936,53,'2005-06-24 23:24:12',1,'2006-02-15 21:30:53'), - (3141,'2005-06-20 19:55:47',1806,398,'2005-06-30 00:31:47',1,'2006-02-15 21:30:53'), - (3142,'2005-06-20 19:59:28',3926,9,'2005-06-28 19:51:28',2,'2006-02-15 21:30:53'), - (3143,'2005-06-20 20:01:52',1355,215,'2005-06-26 19:26:52',2,'2006-02-15 21:30:53'), - (3144,'2005-06-20 20:14:20',1300,114,'2005-06-30 01:46:20',1,'2006-02-15 21:30:53'), - (3145,'2005-06-20 20:21:17',2211,144,'2005-06-22 14:44:17',1,'2006-02-15 21:30:53'), - (3146,'2005-06-20 20:21:48',2249,339,'2005-06-29 22:57:48',2,'2006-02-15 21:30:53'), - (3147,'2005-06-20 20:25:17',615,390,'2005-06-28 20:22:17',2,'2006-02-15 21:30:53'), - (3148,'2005-06-20 20:27:18',4490,202,'2005-06-24 20:30:18',2,'2006-02-15 21:30:53'), - (3149,'2005-06-20 20:34:55',3295,55,'2005-06-21 18:51:55',1,'2006-02-15 21:30:53'), - (3150,'2005-06-20 20:35:28',94,34,'2005-06-26 01:01:28',1,'2006-02-15 21:30:53'), - (3151,'2005-06-20 20:36:53',2976,77,'2005-06-25 18:56:53',1,'2006-02-15 21:30:53'), - (3152,'2005-06-20 20:42:41',1022,246,'2005-06-28 21:12:41',1,'2006-02-15 21:30:53'), - (3153,'2005-06-20 20:44:15',659,430,'2005-06-23 16:04:15',1,'2006-02-15 21:30:53'), - (3154,'2005-06-20 20:44:40',3195,550,'2005-06-23 19:10:40',1,'2006-02-15 21:30:53'), - (3155,'2005-06-20 21:02:38',458,450,'2005-06-27 19:34:38',1,'2006-02-15 21:30:53'), - (3156,'2005-06-20 21:03:46',2217,365,'2005-06-21 23:32:46',2,'2006-02-15 21:30:53'), - (3157,'2005-06-20 21:07:54',1899,245,'2005-06-23 16:01:54',1,'2006-02-15 21:30:53'), - (3158,'2005-06-20 21:08:19',3461,592,'2005-06-29 18:59:19',1,'2006-02-15 21:30:53'), - (3159,'2005-06-20 21:11:50',33,388,'2005-06-29 19:35:50',2,'2006-02-15 21:30:53'), - (3160,'2005-06-20 21:20:51',4333,561,'2005-06-29 18:06:51',2,'2006-02-15 21:30:53'), - (3161,'2005-06-20 21:21:01',1326,373,'2005-06-21 18:22:01',2,'2006-02-15 21:30:53'), - (3162,'2005-06-20 21:21:15',3220,113,'2005-06-29 18:42:15',1,'2006-02-15 21:30:53'), - (3163,'2005-06-20 21:22:13',2632,391,'2005-06-26 15:22:13',2,'2006-02-15 21:30:53'), - (3164,'2005-06-20 21:29:00',155,270,'2005-06-27 15:50:00',1,'2006-02-15 21:30:53'), - (3165,'2005-06-20 21:29:17',796,85,'2005-06-22 18:03:17',1,'2006-02-15 21:30:53'), - (3166,'2005-06-20 21:32:32',1850,424,'2005-06-27 20:29:32',1,'2006-02-15 21:30:53'), - (3167,'2005-06-20 21:42:29',353,464,'2005-06-22 00:36:29',2,'2006-02-15 21:30:53'), - (3168,'2005-06-20 21:46:01',2407,446,'2005-06-22 20:40:01',1,'2006-02-15 21:30:53'), - (3169,'2005-06-20 21:55:54',2437,50,'2005-06-25 19:45:54',1,'2006-02-15 21:30:53'), - (3170,'2005-06-20 22:02:54',1306,421,'2005-06-29 00:41:54',2,'2006-02-15 21:30:53'), - (3171,'2005-06-20 22:15:47',2838,140,'2005-06-24 18:14:47',1,'2006-02-15 21:30:53'), - (3172,'2005-06-20 22:19:25',1758,31,'2005-06-24 17:18:25',2,'2006-02-15 21:30:53'), - (3173,'2005-06-20 22:21:10',4306,33,'2005-06-27 19:41:10',2,'2006-02-15 21:30:53'), - (3174,'2005-06-20 22:24:00',3331,107,'2005-06-22 21:22:00',2,'2006-02-15 21:30:53'), - (3175,'2005-06-20 22:30:23',4093,249,'2005-06-30 03:28:23',2,'2006-02-15 21:30:53'), - (3176,'2005-06-20 22:31:54',1982,371,'2005-06-25 02:58:54',1,'2006-02-15 21:30:53'), - (3177,'2005-06-20 22:32:44',2546,300,'2005-06-22 23:01:44',1,'2006-02-15 21:30:53'), - (3178,'2005-06-20 22:35:12',3517,79,'2005-06-23 19:39:12',1,'2006-02-15 21:30:53'), - (3179,'2005-06-20 22:37:59',2214,163,'2005-06-26 22:26:59',2,'2006-02-15 21:30:53'), - (3180,'2005-06-20 22:48:44',3997,162,'2005-06-21 21:25:44',1,'2006-02-15 21:30:53'), - (3181,'2005-06-20 22:51:02',3473,238,'2005-06-27 21:21:02',1,'2006-02-15 21:30:53'), - (3182,'2005-06-20 22:52:18',4017,15,'2005-06-21 21:00:18',2,'2006-02-15 21:30:53'), - (3183,'2005-06-20 22:55:55',4397,129,'2005-06-23 17:22:55',1,'2006-02-15 21:30:53'), - (3184,'2005-06-20 22:57:44',3179,457,'2005-06-29 20:57:44',1,'2006-02-15 21:30:53'), - (3185,'2005-06-20 22:58:01',601,234,'2005-06-27 00:26:01',1,'2006-02-15 21:30:53'), - (3186,'2005-06-20 23:04:20',3198,406,'2005-06-29 02:56:20',2,'2006-02-15 21:30:53'), - (3187,'2005-06-20 23:06:07',4357,150,'2005-06-27 01:14:07',2,'2006-02-15 21:30:53'), - (3188,'2005-06-20 23:10:27',2471,522,'2005-06-25 19:37:27',2,'2006-02-15 21:30:53'), - (3189,'2005-06-20 23:19:33',1502,538,'2005-06-24 17:46:33',1,'2006-02-15 21:30:53'), - (3190,'2005-06-20 23:27:15',351,200,'2005-06-28 01:22:15',2,'2006-02-15 21:30:53'), - (3191,'2005-06-20 23:46:39',4358,522,'2005-06-25 03:21:39',2,'2006-02-15 21:30:53'), - (3192,'2005-06-20 23:49:12',3713,11,'2005-06-24 03:00:12',1,'2006-02-15 21:30:53'), - (3193,'2005-06-20 23:52:30',3176,260,'2005-06-22 21:21:30',1,'2006-02-15 21:30:53'), - (3194,'2005-06-20 23:59:57',1835,432,'2005-06-24 19:21:57',1,'2006-02-15 21:30:53'), - (3195,'2005-06-21 00:02:10',2383,165,'2005-06-21 23:11:10',2,'2006-02-15 21:30:53'), - (3196,'2005-06-21 00:02:28',1575,52,'2005-06-22 23:08:28',1,'2006-02-15 21:30:53'), - (3197,'2005-06-21 00:07:23',1811,362,'2005-06-23 00:53:23',2,'2006-02-15 21:30:53'), - (3198,'2005-06-21 00:08:54',1626,295,'2005-06-29 02:11:54',2,'2006-02-15 21:30:53'), - (3199,'2005-06-21 00:12:40',3824,234,'2005-06-27 23:26:40',1,'2006-02-15 21:30:53'), - (3200,'2005-06-21 00:22:47',4117,221,'2005-06-27 05:52:47',2,'2006-02-15 21:30:53'), - (3201,'2005-06-21 00:30:26',6,597,'2005-06-28 03:42:26',1,'2006-02-15 21:30:53'), - (3202,'2005-06-21 00:33:47',2725,273,'2005-06-24 04:05:47',2,'2006-02-15 21:30:53'), - (3203,'2005-06-21 00:34:56',442,158,'2005-06-29 23:30:56',1,'2006-02-15 21:30:53'), - (3204,'2005-06-21 00:37:50',2848,336,'2005-06-22 23:46:50',1,'2006-02-15 21:30:53'), - (3205,'2005-06-21 00:38:47',2964,31,'2005-06-21 22:49:47',1,'2006-02-15 21:30:53'), - (3206,'2005-06-21 00:39:39',2196,350,'2005-06-22 05:12:39',1,'2006-02-15 21:30:53'), - (3207,'2005-06-21 00:43:16',4020,86,'2005-06-24 22:13:16',1,'2006-02-15 21:30:53'), - (3208,'2005-06-21 00:50:03',3169,229,'2005-06-24 06:15:03',2,'2006-02-15 21:30:53'), - (3209,'2005-06-21 00:51:06',287,307,'2005-06-22 21:49:06',2,'2006-02-15 21:30:53'), - (3210,'2005-06-21 01:00:25',467,75,'2005-06-23 06:10:25',2,'2006-02-15 21:30:53'), - (3211,'2005-06-21 01:01:29',1150,415,'2005-06-23 04:05:29',1,'2006-02-15 21:30:53'), - (3212,'2005-06-21 01:04:35',4178,21,'2005-06-30 00:10:35',2,'2006-02-15 21:30:53'), - (3213,'2005-06-21 01:05:19',3832,534,'2005-06-27 21:55:19',2,'2006-02-15 21:30:53'), - (3214,'2005-06-21 01:08:26',776,142,'2005-06-23 03:24:26',2,'2006-02-15 21:30:53'), - (3215,'2005-06-21 01:11:32',4140,279,'2005-06-26 19:42:32',1,'2006-02-15 21:30:53'), - (3216,'2005-06-21 01:19:37',719,534,'2005-06-29 06:45:37',2,'2006-02-15 21:30:53'), - (3217,'2005-06-21 01:28:12',1027,463,'2005-06-25 02:51:12',2,'2006-02-15 21:30:53'), - (3218,'2005-06-21 01:38:09',1828,117,'2005-06-23 02:00:09',1,'2006-02-15 21:30:53'), - (3219,'2005-06-21 01:43:26',3024,129,'2005-06-28 23:50:26',2,'2006-02-15 21:30:53'), - (3220,'2005-06-21 01:46:25',1880,574,'2005-06-26 07:44:25',2,'2006-02-15 21:30:53'), - (3221,'2005-06-21 01:49:47',245,454,'2005-06-25 06:31:47',1,'2006-02-15 21:30:53'), - (3222,'2005-06-21 01:50:29',4023,501,'2005-06-27 00:52:29',2,'2006-02-15 21:30:53'), - (3223,'2005-06-21 02:06:45',1033,299,'2005-06-22 07:16:45',2,'2006-02-15 21:30:53'), - (3224,'2005-06-21 02:11:36',3318,173,'2005-06-23 21:17:36',1,'2006-02-15 21:30:53'), - (3225,'2005-06-21 02:16:55',1003,448,'2005-06-27 05:39:55',2,'2006-02-15 21:30:53'), - (3226,'2005-06-21 02:18:14',4079,576,'2005-06-26 22:32:14',2,'2006-02-15 21:30:53'), - (3227,'2005-06-21 02:18:25',1156,568,'2005-06-27 00:59:25',1,'2006-02-15 21:30:53'), - (3228,'2005-06-21 02:20:24',2489,535,'2005-06-29 00:50:24',2,'2006-02-15 21:30:53'), - (3229,'2005-06-21 02:20:41',2301,81,'2005-06-26 00:39:41',1,'2006-02-15 21:30:53'), - (3230,'2005-06-21 02:23:16',215,83,'2005-06-22 01:37:16',2,'2006-02-15 21:30:53'), - (3231,'2005-06-21 02:25:00',237,28,'2005-06-23 05:46:00',2,'2006-02-15 21:30:53'), - (3232,'2005-06-21 02:30:37',1972,555,'2005-06-29 03:10:37',1,'2006-02-15 21:30:53'), - (3233,'2005-06-21 02:39:31',3542,353,'2005-06-28 05:23:31',2,'2006-02-15 21:30:53'), - (3234,'2005-06-21 02:39:44',3252,459,'2005-06-29 07:27:44',1,'2006-02-15 21:30:53'), - (3235,'2005-06-21 02:46:17',212,49,'2005-06-22 20:58:17',1,'2006-02-15 21:30:53'), - (3236,'2005-06-21 02:47:43',1492,550,'2005-06-29 08:04:43',2,'2006-02-15 21:30:53'), - (3237,'2005-06-21 02:47:56',4399,466,'2005-06-27 03:16:56',2,'2006-02-15 21:30:53'), - (3238,'2005-06-21 02:48:21',2732,77,'2005-06-23 04:43:21',1,'2006-02-15 21:30:53'), - (3239,'2005-06-21 02:48:40',3402,328,'2005-06-22 02:49:40',2,'2006-02-15 21:30:53'), - (3240,'2005-06-21 02:53:17',2938,405,'2005-06-30 03:25:17',2,'2006-02-15 21:30:53'), - (3241,'2005-06-21 02:54:32',1442,499,'2005-06-26 21:56:32',2,'2006-02-15 21:30:53'), - (3242,'2005-06-21 02:56:24',1421,562,'2005-06-29 21:41:24',2,'2006-02-15 21:30:53'), - (3243,'2005-06-21 03:00:11',2556,426,'2005-06-25 21:53:11',1,'2006-02-15 21:30:53'), - (3244,'2005-06-21 03:01:10',291,53,'2005-06-24 06:59:10',2,'2006-02-15 21:30:53'), - (3245,'2005-06-21 03:06:11',2057,358,'2005-06-25 08:06:11',2,'2006-02-15 21:30:53'), - (3246,'2005-06-21 03:10:01',4432,41,'2005-06-28 00:46:01',1,'2006-02-15 21:30:53'), - (3247,'2005-06-21 03:12:15',1406,277,'2005-06-27 00:44:15',1,'2006-02-15 21:30:53'), - (3248,'2005-06-21 03:12:21',3656,78,'2005-06-28 03:54:21',2,'2006-02-15 21:30:53'), - (3249,'2005-06-21 03:13:19',703,410,'2005-06-29 04:04:19',2,'2006-02-15 21:30:53'), - (3250,'2005-06-21 03:16:36',736,467,'2005-06-29 00:53:36',2,'2006-02-15 21:30:53'), - (3251,'2005-06-21 03:20:37',1414,317,'2005-06-23 04:54:37',2,'2006-02-15 21:30:53'), - (3252,'2005-06-21 03:25:26',2009,213,'2005-06-24 00:38:26',2,'2006-02-15 21:30:53'), - (3253,'2005-06-21 03:25:37',1906,405,'2005-06-27 02:46:37',2,'2006-02-15 21:30:53'), - (3254,'2005-06-21 03:27:10',3893,472,'2005-06-22 22:01:10',2,'2006-02-15 21:30:53'), - (3255,'2005-06-21 03:39:52',2564,482,'2005-06-24 04:02:52',1,'2006-02-15 21:30:53'), - (3256,'2005-06-21 03:45:42',1235,319,'2005-06-30 02:51:42',2,'2006-02-15 21:30:53'), - (3257,'2005-06-21 03:47:19',3975,263,'2005-06-28 01:24:19',2,'2006-02-15 21:30:53'), - (3258,'2005-06-21 03:53:58',4417,241,'2005-06-22 22:49:58',2,'2006-02-15 21:30:53'), - (3259,'2005-06-21 03:57:15',2751,478,'2005-06-24 03:32:15',1,'2006-02-15 21:30:53'), - (3260,'2005-06-21 03:59:13',3627,380,'2005-06-23 03:29:13',1,'2006-02-15 21:30:53'), - (3261,'2005-06-21 04:07:41',2029,169,'2005-06-24 06:25:41',2,'2006-02-15 21:30:53'), - (3262,'2005-06-21 04:08:43',3773,9,'2005-06-28 02:55:43',1,'2006-02-15 21:30:53'), - (3263,'2005-06-21 04:15:52',3491,118,'2005-06-24 02:19:52',2,'2006-02-15 21:30:53'), - (3264,'2005-06-21 04:19:03',1666,340,'2005-06-23 01:29:03',1,'2006-02-15 21:30:53'), - (3265,'2005-06-21 04:23:13',3637,437,'2005-06-28 03:37:13',1,'2006-02-15 21:30:53'), - (3266,'2005-06-21 04:49:07',2533,175,'2005-06-26 05:19:07',2,'2006-02-15 21:30:53'), - (3267,'2005-06-21 04:55:21',1118,134,'2005-06-29 23:46:21',1,'2006-02-15 21:30:53'), - (3268,'2005-06-21 04:55:49',4366,329,'2005-06-30 00:23:49',2,'2006-02-15 21:30:53'), - (3269,'2005-06-21 05:06:30',3828,17,'2005-06-27 09:26:30',2,'2006-02-15 21:30:53'), - (3270,'2005-06-21 05:07:31',1578,86,'2005-06-22 07:45:31',2,'2006-02-15 21:30:53'), - (3271,'2005-06-21 05:16:10',4191,196,'2005-06-27 10:46:10',1,'2006-02-15 21:30:53'), - (3272,'2005-06-21 05:18:27',1090,550,'2005-06-30 02:51:27',1,'2006-02-15 21:30:53'), - (3273,'2005-06-21 05:24:17',3538,104,'2005-06-23 01:21:17',2,'2006-02-15 21:30:53'), - (3274,'2005-06-21 05:30:36',2156,277,'2005-06-24 05:12:36',1,'2006-02-15 21:30:53'), - (3275,'2005-06-21 05:33:04',2320,368,'2005-06-30 00:37:04',2,'2006-02-15 21:30:53'), - (3276,'2005-06-21 05:35:52',1890,425,'2005-06-29 03:26:52',2,'2006-02-15 21:30:53'), - (3277,'2005-06-21 05:36:37',1330,229,'2005-06-29 10:54:37',1,'2006-02-15 21:30:53'), - (3278,'2005-06-21 05:41:30',2832,554,'2005-06-22 03:43:30',1,'2006-02-15 21:30:53'), - (3279,'2005-06-21 06:05:53',1672,462,'2005-06-25 09:40:53',1,'2006-02-15 21:30:53'), - (3280,'2005-06-21 06:08:12',661,229,'2005-06-24 09:34:12',1,'2006-02-15 21:30:53'), - (3281,'2005-06-21 06:08:47',4006,363,'2005-06-24 11:22:47',1,'2006-02-15 21:30:53'), - (3282,'2005-06-21 06:18:42',1676,224,'2005-06-28 09:18:42',1,'2006-02-15 21:30:53'), - (3283,'2005-06-21 06:19:07',3988,372,'2005-06-26 10:59:07',2,'2006-02-15 21:30:53'), - (3284,'2005-06-21 06:24:45',4566,1,'2005-06-28 03:28:45',1,'2006-02-15 21:30:53'), - (3285,'2005-06-21 06:30:13',948,481,'2005-06-23 10:31:13',2,'2006-02-15 21:30:53'), - (3286,'2005-06-21 06:31:29',742,577,'2005-06-25 00:46:29',2,'2006-02-15 21:30:53'), - (3287,'2005-06-21 06:32:39',4406,62,'2005-06-24 09:29:39',2,'2006-02-15 21:30:53'), - (3288,'2005-06-21 06:36:59',1961,299,'2005-06-30 06:50:59',1,'2006-02-15 21:30:53'), - (3289,'2005-06-21 06:41:48',2248,115,'2005-06-30 00:54:48',1,'2006-02-15 21:30:53'), - (3290,'2005-06-21 06:45:34',2727,293,'2005-06-28 09:44:34',1,'2006-02-15 21:30:53'), - (3291,'2005-06-21 06:55:36',3866,274,'2005-06-29 03:41:36',1,'2006-02-15 21:30:53'), - (3292,'2005-06-21 06:59:11',3288,412,'2005-06-23 07:11:11',1,'2006-02-15 21:30:53'), - (3293,'2005-06-21 06:59:33',4407,481,'2005-06-25 06:54:33',2,'2006-02-15 21:30:53'), - (3294,'2005-06-21 07:03:23',2390,439,'2005-06-30 02:22:23',2,'2006-02-15 21:30:53'), - (3295,'2005-06-21 07:04:17',1703,573,'2005-06-29 01:52:17',1,'2006-02-15 21:30:53'), - (3296,'2005-06-21 07:04:53',2453,284,'2005-06-25 08:36:53',1,'2006-02-15 21:30:53'), - (3297,'2005-06-21 07:08:19',3969,193,'2005-06-28 11:53:19',2,'2006-02-15 21:30:53'), - (3298,'2005-06-21 07:09:44',444,492,'2005-06-30 11:26:44',2,'2006-02-15 21:30:53'), - (3299,'2005-06-21 07:23:34',3427,199,'2005-06-27 04:02:34',1,'2006-02-15 21:30:53'), - (3300,'2005-06-21 07:25:01',2505,565,'2005-06-25 01:47:01',1,'2006-02-15 21:30:53'), - (3301,'2005-06-21 07:32:25',503,444,'2005-06-28 06:26:25',2,'2006-02-15 21:30:53'), - (3302,'2005-06-21 07:33:40',562,594,'2005-06-29 06:02:40',1,'2006-02-15 21:30:53'), - (3303,'2005-06-21 07:34:14',1565,361,'2005-06-26 13:18:14',2,'2006-02-15 21:30:53'), - (3304,'2005-06-21 07:43:40',2154,431,'2005-06-27 08:06:40',2,'2006-02-15 21:30:53'), - (3305,'2005-06-21 07:46:57',2811,578,'2005-06-27 06:16:57',1,'2006-02-15 21:30:53'), - (3306,'2005-06-21 07:46:58',1669,406,'2005-06-26 11:22:58',2,'2006-02-15 21:30:53'), - (3307,'2005-06-21 07:52:30',462,85,'2005-06-25 02:36:30',2,'2006-02-15 21:30:53'), - (3308,'2005-06-21 07:58:36',3129,96,'2005-06-23 05:23:36',2,'2006-02-15 21:30:53'), - (3309,'2005-06-21 08:00:49',248,463,'2005-06-29 04:11:49',2,'2006-02-15 21:30:53'), - (3310,'2005-06-21 08:04:51',1717,395,'2005-06-22 04:20:51',2,'2006-02-15 21:30:53'), - (3311,'2005-06-21 08:05:27',3438,518,'2005-06-22 06:51:27',2,'2006-02-15 21:30:53'), - (3312,'2005-06-21 08:05:32',1008,554,'2005-06-27 03:34:32',2,'2006-02-15 21:30:53'), - (3313,'2005-06-21 08:11:18',4267,213,'2005-06-23 04:28:18',2,'2006-02-15 21:30:53'), - (3314,'2005-06-21 08:17:00',4332,185,'2005-06-22 06:00:00',2,'2006-02-15 21:30:53'), - (3315,'2005-06-21 08:17:04',4108,438,'2005-06-24 11:04:04',1,'2006-02-15 21:30:53'), - (3316,'2005-06-21 08:20:18',3271,451,'2005-06-28 07:44:18',1,'2006-02-15 21:30:53'), - (3317,'2005-06-21 08:22:32',4095,584,'2005-06-26 14:18:32',2,'2006-02-15 21:30:53'), - (3318,'2005-06-21 08:23:05',1111,414,'2005-06-27 14:07:05',2,'2006-02-15 21:30:53'), - (3319,'2005-06-21 08:25:46',2482,461,'2005-06-27 03:54:46',2,'2006-02-15 21:30:53'), - (3320,'2005-06-21 08:29:41',860,47,'2005-06-29 13:54:41',2,'2006-02-15 21:30:53'), - (3321,'2005-06-21 08:33:26',1750,144,'2005-06-24 10:09:26',2,'2006-02-15 21:30:53'), - (3322,'2005-06-21 08:42:37',4324,458,'2005-06-22 13:17:37',1,'2006-02-15 21:30:53'), - (3323,'2005-06-21 08:45:33',2252,272,'2005-06-28 08:17:33',2,'2006-02-15 21:30:53'), - (3324,'2005-06-21 08:49:16',2830,29,'2005-06-22 12:31:16',1,'2006-02-15 21:30:53'), - (3325,'2005-06-21 08:51:44',1720,185,'2005-06-27 06:16:44',1,'2006-02-15 21:30:53'), - (3326,'2005-06-21 09:04:50',1025,347,'2005-06-30 12:10:50',2,'2006-02-15 21:30:53'), - (3327,'2005-06-21 09:04:50',3083,62,'2005-06-30 05:45:50',1,'2006-02-15 21:30:53'), - (3328,'2005-06-21 09:08:44',2462,292,'2005-06-30 12:28:44',1,'2006-02-15 21:30:53'), - (3329,'2005-06-21 09:20:31',3506,335,'2005-06-22 10:00:31',2,'2006-02-15 21:30:53'), - (3330,'2005-06-21 09:22:37',299,294,'2005-06-23 07:16:37',2,'2006-02-15 21:30:53'), - (3331,'2005-06-21 09:37:53',2913,352,'2005-06-26 04:01:53',2,'2006-02-15 21:30:53'), - (3332,'2005-06-21 09:55:12',1975,82,'2005-06-25 08:32:12',2,'2006-02-15 21:30:53'), - (3333,'2005-06-21 10:01:36',3688,111,'2005-06-25 10:27:36',2,'2006-02-15 21:30:53'), - (3334,'2005-06-21 10:04:33',2491,66,'2005-06-29 06:09:33',2,'2006-02-15 21:30:53'), - (3335,'2005-06-21 10:09:08',3033,339,'2005-06-27 11:33:08',1,'2006-02-15 21:30:53'), - (3336,'2005-06-21 10:14:27',2122,173,'2005-06-22 09:29:27',1,'2006-02-15 21:30:53'), - (3337,'2005-06-21 10:24:35',1176,318,'2005-06-22 13:51:35',1,'2006-02-15 21:30:53'), - (3338,'2005-06-21 10:27:31',2097,171,'2005-06-30 14:15:31',2,'2006-02-15 21:30:53'), - (3339,'2005-06-21 10:37:11',312,526,'2005-06-30 05:04:11',2,'2006-02-15 21:30:53'), - (3340,'2005-06-21 10:37:23',2962,540,'2005-06-26 07:21:23',2,'2006-02-15 21:30:53'), - (3341,'2005-06-21 10:37:25',2189,591,'2005-06-26 15:38:25',1,'2006-02-15 21:30:53'), - (3342,'2005-06-21 10:46:36',2884,196,'2005-06-23 09:46:36',2,'2006-02-15 21:30:53'), - (3343,'2005-06-21 10:56:59',2038,466,'2005-06-25 16:41:59',1,'2006-02-15 21:30:53'), - (3344,'2005-06-21 10:57:27',4401,277,'2005-06-28 10:53:27',1,'2006-02-15 21:30:53'), - (3345,'2005-06-21 11:05:07',4442,71,'2005-06-26 15:14:07',2,'2006-02-15 21:30:53'), - (3346,'2005-06-21 11:06:53',4393,189,'2005-06-22 15:19:53',2,'2006-02-15 21:30:53'), - (3347,'2005-06-21 11:08:32',4330,448,'2005-06-28 09:59:32',1,'2006-02-15 21:30:53'), - (3348,'2005-06-21 11:16:42',2945,16,'2005-06-27 13:50:42',2,'2006-02-15 21:30:53'), - (3349,'2005-06-21 11:17:35',3885,336,'2005-06-22 12:51:35',2,'2006-02-15 21:30:53'), - (3350,'2005-06-21 11:21:38',3221,20,'2005-06-28 15:37:38',2,'2006-02-15 21:30:53'), - (3351,'2005-06-21 11:21:39',1591,386,'2005-06-23 07:23:39',2,'2006-02-15 21:30:53'), - (3352,'2005-06-21 11:26:29',578,510,'2005-06-28 07:26:29',1,'2006-02-15 21:30:53'), - (3353,'2005-06-21 11:29:23',3984,236,'2005-06-27 15:06:23',1,'2006-02-15 21:30:53'), - (3354,'2005-06-21 11:29:49',1083,529,'2005-06-25 07:39:49',2,'2006-02-15 21:30:53'), - (3355,'2005-06-21 11:30:47',1960,275,'2005-06-23 06:04:47',1,'2006-02-15 21:30:53'), - (3356,'2005-06-21 11:38:45',4532,403,'2005-06-26 17:18:45',1,'2006-02-15 21:30:53'), - (3357,'2005-06-21 11:55:42',2528,57,'2005-06-22 07:19:42',2,'2006-02-15 21:30:53'), - (3358,'2005-06-21 11:56:40',1772,69,'2005-06-26 08:28:40',2,'2006-02-15 21:30:53'), - (3359,'2005-06-21 12:08:18',3825,67,'2005-06-25 16:35:18',2,'2006-02-15 21:30:53'), - (3360,'2005-06-21 12:12:41',2792,498,'2005-06-26 06:32:41',1,'2006-02-15 21:30:53'), - (3361,'2005-06-21 12:14:23',2671,268,'2005-06-26 10:01:23',2,'2006-02-15 21:30:53'), - (3362,'2005-06-21 12:19:54',1284,454,'2005-06-23 06:59:54',2,'2006-02-15 21:30:53'), - (3363,'2005-06-21 12:25:07',538,261,'2005-06-27 11:52:07',2,'2006-02-15 21:30:53'), - (3364,'2005-06-21 12:37:46',2329,201,'2005-06-28 07:18:46',2,'2006-02-15 21:30:53'), - (3365,'2005-06-21 12:55:48',657,133,'2005-06-23 13:38:48',2,'2006-02-15 21:30:53'), - (3366,'2005-06-21 13:03:37',2584,511,'2005-06-26 16:29:37',1,'2006-02-15 21:30:53'), - (3367,'2005-06-21 13:08:21',2442,80,'2005-06-26 08:43:21',2,'2006-02-15 21:30:53'), - (3368,'2005-06-21 13:18:38',548,438,'2005-06-23 11:13:38',1,'2006-02-15 21:30:53'), - (3369,'2005-06-21 13:20:31',303,431,'2005-06-30 13:45:31',2,'2006-02-15 21:30:53'), - (3370,'2005-06-21 13:27:01',1573,559,'2005-06-25 09:27:01',1,'2006-02-15 21:30:53'), - (3371,'2005-06-21 13:27:22',2526,595,'2005-06-29 14:04:22',2,'2006-02-15 21:30:53'), - (3372,'2005-06-21 13:34:19',4169,346,'2005-06-27 08:41:19',2,'2006-02-15 21:30:53'), - (3373,'2005-06-21 13:35:32',2219,316,'2005-06-30 12:03:32',1,'2006-02-15 21:30:53'), - (3374,'2005-06-21 13:36:30',1067,279,'2005-06-23 15:10:30',2,'2006-02-15 21:30:53'), - (3375,'2005-06-21 13:37:18',912,279,'2005-06-22 11:26:18',2,'2006-02-15 21:30:53'), - (3376,'2005-06-21 13:43:02',3055,318,'2005-06-28 18:07:02',1,'2006-02-15 21:30:53'), - (3377,'2005-06-21 13:51:12',1845,428,'2005-06-22 18:16:12',1,'2006-02-15 21:30:53'), - (3378,'2005-06-21 13:51:28',35,387,'2005-06-25 09:21:28',1,'2006-02-15 21:30:53'), - (3379,'2005-06-21 13:54:58',2022,566,'2005-06-23 13:43:58',2,'2006-02-15 21:30:53'), - (3380,'2005-06-21 13:58:46',3212,483,'2005-06-30 09:29:46',1,'2006-02-15 21:30:53'), - (3381,'2005-06-21 14:02:59',1373,183,'2005-06-29 18:11:59',2,'2006-02-15 21:30:53'), - (3382,'2005-06-21 14:05:23',131,341,'2005-06-29 19:13:23',2,'2006-02-15 21:30:53'), - (3383,'2005-06-21 14:07:19',2968,239,'2005-06-29 17:00:19',2,'2006-02-15 21:30:53'), - (3384,'2005-06-21 14:07:35',409,91,'2005-06-26 16:34:35',1,'2006-02-15 21:30:53'), - (3385,'2005-06-21 14:16:48',2810,514,'2005-06-24 10:32:48',2,'2006-02-15 21:30:53'), - (3386,'2005-06-21 14:21:06',1224,190,'2005-06-24 08:32:06',2,'2006-02-15 21:30:53'), - (3387,'2005-06-21 14:21:49',2709,305,'2005-06-24 16:46:49',2,'2006-02-15 21:30:53'), - (3388,'2005-06-21 14:34:51',556,119,'2005-06-28 18:19:51',1,'2006-02-15 21:30:53'), - (3389,'2005-06-21 14:37:55',727,395,'2005-06-28 18:13:55',1,'2006-02-15 21:30:53'), - (3390,'2005-06-21 15:10:50',2034,151,'2005-06-26 12:38:50',1,'2006-02-15 21:30:53'), - (3391,'2005-06-21 15:11:02',26,45,'2005-06-25 14:12:02',1,'2006-02-15 21:30:53'), - (3392,'2005-06-21 15:12:44',3343,38,'2005-06-29 18:19:44',1,'2006-02-15 21:30:53'), - (3393,'2005-06-21 15:14:27',1631,362,'2005-06-25 19:54:27',2,'2006-02-15 21:30:53'), - (3394,'2005-06-21 15:17:39',3393,295,'2005-06-30 13:55:39',2,'2006-02-15 21:30:53'), - (3395,'2005-06-21 15:19:19',3764,66,'2005-06-29 14:23:19',2,'2006-02-15 21:30:53'), - (3396,'2005-06-21 15:23:08',2744,371,'2005-06-23 10:25:08',1,'2006-02-15 21:30:53'), - (3397,'2005-06-21 15:30:11',602,552,'2005-06-22 21:12:11',1,'2006-02-15 21:30:53'), - (3398,'2005-06-21 15:34:38',221,599,'2005-06-29 11:23:38',1,'2006-02-15 21:30:53'), - (3399,'2005-06-21 15:47:48',619,98,'2005-06-26 13:46:48',1,'2006-02-15 21:30:53'), - (3400,'2005-06-21 15:50:30',1697,298,'2005-06-25 18:07:30',1,'2006-02-15 21:30:53'), - (3401,'2005-06-21 15:52:43',3423,577,'2005-06-30 21:09:43',2,'2006-02-15 21:30:53'), - (3402,'2005-06-21 15:54:37',596,187,'2005-06-30 13:43:37',1,'2006-02-15 21:30:53'), - (3403,'2005-06-21 15:55:06',1741,264,'2005-06-27 12:34:06',1,'2006-02-15 21:30:53'), - (3404,'2005-06-21 15:57:52',2005,424,'2005-06-24 20:58:52',2,'2006-02-15 21:30:53'), - (3405,'2005-06-21 15:58:25',2344,155,'2005-06-23 10:58:25',1,'2006-02-15 21:30:53'), - (3406,'2005-06-21 16:00:18',2049,203,'2005-06-23 18:25:18',1,'2006-02-15 21:30:53'), - (3407,'2005-06-21 16:14:02',3919,343,'2005-06-24 15:38:02',2,'2006-02-15 21:30:53'), - (3408,'2005-06-21 16:15:11',3453,282,'2005-06-27 14:55:11',1,'2006-02-15 21:30:53'), - (3409,'2005-06-21 16:17:38',3374,429,'2005-06-22 14:16:38',1,'2006-02-15 21:30:53'), - (3410,'2005-06-21 16:20:47',1197,321,'2005-06-24 19:09:47',2,'2006-02-15 21:30:53'), - (3411,'2005-06-21 16:31:27',4250,12,'2005-06-28 12:27:27',2,'2006-02-15 21:30:53'), - (3412,'2005-06-21 16:44:31',3036,501,'2005-06-28 16:15:31',2,'2006-02-15 21:30:53'), - (3413,'2005-06-21 16:57:07',666,322,'2005-06-30 12:03:07',2,'2006-02-15 21:30:53'), - (3414,'2005-06-21 16:58:50',2929,226,'2005-06-24 17:26:50',1,'2006-02-15 21:30:53'), - (3415,'2005-06-21 16:59:49',3540,444,'2005-06-27 17:19:49',1,'2006-02-15 21:30:53'), - (3416,'2005-06-21 17:05:29',1215,76,'2005-06-23 17:58:29',2,'2006-02-15 21:30:53'), - (3417,'2005-06-21 17:06:20',874,282,'2005-06-23 17:00:20',2,'2006-02-15 21:30:53'), - (3418,'2005-06-21 17:06:38',4115,85,'2005-06-25 19:43:38',1,'2006-02-15 21:30:53'), - (3419,'2005-06-21 17:18:01',4022,22,'2005-06-22 15:08:01',1,'2006-02-15 21:30:53'), - (3420,'2005-06-21 17:22:36',2523,27,'2005-06-28 12:34:36',1,'2006-02-15 21:30:53'), - (3421,'2005-06-21 17:22:58',3930,346,'2005-06-24 18:57:58',1,'2006-02-15 21:30:53'), - (3422,'2005-06-21 17:24:40',2724,251,'2005-06-29 13:59:40',2,'2006-02-15 21:30:53'), - (3423,'2005-06-21 17:38:02',3612,19,'2005-06-23 19:47:02',1,'2006-02-15 21:30:53'), - (3424,'2005-06-21 17:42:51',1279,583,'2005-06-24 23:22:51',2,'2006-02-15 21:30:53'), - (3425,'2005-06-21 18:07:07',4548,381,'2005-06-27 22:59:07',2,'2006-02-15 21:30:53'), - (3426,'2005-06-21 18:12:10',3019,95,'2005-06-23 18:22:10',1,'2006-02-15 21:30:53'), - (3427,'2005-06-21 18:31:09',560,561,'2005-06-22 14:18:09',2,'2006-02-15 21:30:53'), - (3428,'2005-06-21 18:39:34',1959,40,'2005-06-22 18:23:34',2,'2006-02-15 21:30:53'), - (3429,'2005-06-21 18:46:05',456,599,'2005-06-30 17:28:05',1,'2006-02-15 21:30:53'), - (3430,'2005-06-21 18:46:08',1613,503,'2005-06-22 13:49:08',2,'2006-02-15 21:30:53'), - (3431,'2005-06-21 18:46:48',133,516,'2005-06-26 23:08:48',1,'2006-02-15 21:30:53'), - (3432,'2005-06-21 19:02:03',1814,216,'2005-06-25 00:57:03',2,'2006-02-15 21:30:53'), - (3433,'2005-06-21 19:07:19',1077,228,'2005-06-29 18:01:19',2,'2006-02-15 21:30:53'), - (3434,'2005-06-21 19:08:28',2295,141,'2005-06-23 14:25:28',1,'2006-02-15 21:30:53'), - (3435,'2005-06-21 19:14:58',451,591,'2005-06-24 19:58:58',1,'2006-02-15 21:30:53'), - (3436,'2005-06-21 19:16:09',2740,137,'2005-06-30 13:58:09',2,'2006-02-15 21:30:53'), - (3437,'2005-06-21 19:20:17',1798,211,'2005-07-01 01:09:17',2,'2006-02-15 21:30:53'), - (3438,'2005-06-21 19:31:40',1757,556,'2005-06-30 19:08:40',1,'2006-02-15 21:30:53'), - (3439,'2005-06-21 19:36:15',1529,46,'2005-06-23 14:54:15',2,'2006-02-15 21:30:53'), - (3440,'2005-06-21 19:58:18',853,491,'2005-06-27 22:08:18',1,'2006-02-15 21:30:53'), - (3441,'2005-06-21 20:00:12',2863,326,'2005-06-24 00:24:12',2,'2006-02-15 21:30:53'), - (3442,'2005-06-21 20:06:51',1896,255,'2005-06-25 17:35:51',2,'2006-02-15 21:30:53'), - (3443,'2005-06-21 20:19:00',1639,377,'2005-06-30 15:39:00',1,'2006-02-15 21:30:53'), - (3444,'2005-06-21 20:39:39',493,45,'2005-06-25 23:44:39',2,'2006-02-15 21:30:53'), - (3445,'2005-06-21 20:40:28',2381,74,'2005-06-29 00:47:28',2,'2006-02-15 21:30:53'), - (3446,'2005-06-21 20:45:51',1817,174,'2005-06-26 17:02:51',1,'2006-02-15 21:30:53'), - (3447,'2005-06-21 20:53:31',1146,25,'2005-06-24 02:20:31',2,'2006-02-15 21:30:53'), - (3448,'2005-06-21 20:59:20',592,476,'2005-06-24 15:40:20',1,'2006-02-15 21:30:53'), - (3449,'2005-06-21 21:01:27',210,181,'2005-06-27 21:20:27',1,'2006-02-15 21:30:53'), - (3450,'2005-06-21 21:01:57',2268,126,'2005-06-25 23:57:57',1,'2006-02-15 21:30:53'), - (3451,'2005-06-21 21:10:39',3489,558,'2005-06-30 19:03:39',2,'2006-02-15 21:30:53'), - (3452,'2005-06-21 21:11:27',2646,293,'2005-06-24 16:31:27',1,'2006-02-15 21:30:53'), - (3453,'2005-06-21 21:12:11',842,278,'2005-06-23 17:39:11',2,'2006-02-15 21:30:53'), - (3454,'2005-06-21 21:12:13',3009,524,'2005-06-25 23:23:13',1,'2006-02-15 21:30:53'), - (3455,'2005-06-21 21:17:51',4403,340,'2005-06-23 17:22:51',1,'2006-02-15 21:30:53'), - (3456,'2005-06-21 21:19:47',1119,150,'2005-06-28 18:18:47',2,'2006-02-15 21:30:53'), - (3457,'2005-06-21 21:42:33',883,312,'2005-06-30 19:54:33',2,'2006-02-15 21:30:53'), - (3458,'2005-06-21 21:42:49',2136,338,'2005-06-29 01:26:49',1,'2006-02-15 21:30:53'), - (3459,'2005-06-21 21:45:47',3080,97,'2005-06-25 00:46:47',1,'2006-02-15 21:30:53'), - (3460,'2005-06-21 21:46:56',1765,236,'2005-06-29 20:08:56',1,'2006-02-15 21:30:53'), - (3461,'2005-06-21 21:49:18',1715,23,'2005-06-26 19:51:18',1,'2006-02-15 21:30:53'), - (3462,'2005-06-21 21:52:52',547,568,'2005-06-28 21:41:52',1,'2006-02-15 21:30:53'), - (3463,'2005-06-21 22:00:00',3436,96,'2005-06-22 19:22:00',2,'2006-02-15 21:30:53'), - (3464,'2005-06-21 22:08:58',2698,251,'2005-06-26 16:23:58',2,'2006-02-15 21:30:53'), - (3465,'2005-06-21 22:10:01',1488,510,'2005-06-30 21:35:01',1,'2006-02-15 21:30:53'), - (3466,'2005-06-21 22:13:33',371,226,'2005-06-25 21:01:33',2,'2006-02-15 21:30:53'), - (3467,'2005-06-21 22:19:25',729,543,'2005-06-27 00:03:25',2,'2006-02-15 21:30:53'), - (3468,'2005-06-21 22:43:45',2899,100,'2005-06-30 01:49:45',1,'2006-02-15 21:30:53'), - (3469,'2005-06-21 22:48:59',4087,181,'2005-06-28 19:32:59',1,'2006-02-15 21:30:53'), - (3470,'2005-07-05 22:49:24',883,565,'2005-07-07 19:36:24',1,'2006-02-15 21:30:53'), - (3471,'2005-07-05 22:51:44',1724,242,'2005-07-13 01:38:44',2,'2006-02-15 21:30:53'), - (3472,'2005-07-05 22:56:33',841,37,'2005-07-13 17:18:33',2,'2006-02-15 21:30:53'), - (3473,'2005-07-05 22:57:34',2735,60,'2005-07-12 23:53:34',1,'2006-02-15 21:30:53'), - (3474,'2005-07-05 22:59:53',97,594,'2005-07-08 20:32:53',1,'2006-02-15 21:30:53'), - (3475,'2005-07-05 23:01:21',2189,8,'2005-07-13 23:07:21',2,'2006-02-15 21:30:53'), - (3476,'2005-07-05 23:02:37',3011,490,'2005-07-10 22:17:37',2,'2006-02-15 21:30:53'), - (3477,'2005-07-05 23:05:17',4289,476,'2005-07-15 02:20:17',2,'2006-02-15 21:30:53'), - (3478,'2005-07-05 23:05:44',2528,322,'2005-07-07 00:14:44',2,'2006-02-15 21:30:53'), - (3479,'2005-07-05 23:08:53',2277,298,'2005-07-11 21:42:53',1,'2006-02-15 21:30:53'), - (3480,'2005-07-05 23:11:43',1488,382,'2005-07-12 02:01:43',2,'2006-02-15 21:30:53'), - (3481,'2005-07-05 23:13:07',3575,138,'2005-07-07 20:36:07',2,'2006-02-15 21:30:53'), - (3482,'2005-07-05 23:13:22',1291,520,'2005-07-12 19:02:22',2,'2006-02-15 21:30:53'), - (3483,'2005-07-05 23:13:51',79,536,'2005-07-13 18:31:51',1,'2006-02-15 21:30:53'), - (3484,'2005-07-05 23:23:11',1934,114,'2005-07-11 00:27:11',2,'2006-02-15 21:30:53'), - (3485,'2005-07-05 23:25:54',117,111,'2005-07-09 17:38:54',1,'2006-02-15 21:30:53'), - (3486,'2005-07-05 23:29:55',4067,296,'2005-07-13 19:54:55',1,'2006-02-15 21:30:53'), - (3487,'2005-07-05 23:30:36',1575,586,'2005-07-11 04:00:36',1,'2006-02-15 21:30:53'), - (3488,'2005-07-05 23:32:49',898,349,'2005-07-15 02:01:49',2,'2006-02-15 21:30:53'), - (3489,'2005-07-05 23:33:40',2936,397,'2005-07-15 02:15:40',2,'2006-02-15 21:30:53'), - (3490,'2005-07-05 23:37:13',3041,369,'2005-07-12 22:07:13',1,'2006-02-15 21:30:53'), - (3491,'2005-07-05 23:41:08',1835,421,'2005-07-13 21:53:08',1,'2006-02-15 21:30:53'), - (3492,'2005-07-05 23:44:37',980,142,'2005-07-14 03:54:37',1,'2006-02-15 21:30:53'), - (3493,'2005-07-05 23:46:19',473,169,'2005-07-15 02:31:19',1,'2006-02-15 21:30:53'), - (3494,'2005-07-05 23:47:30',3149,348,'2005-07-11 18:10:30',1,'2006-02-15 21:30:53'), - (3495,'2005-07-05 23:50:04',2306,553,'2005-07-10 01:06:04',1,'2006-02-15 21:30:53'), - (3496,'2005-07-05 23:59:15',2430,295,'2005-07-09 19:39:15',2,'2006-02-15 21:30:53'), - (3497,'2005-07-06 00:00:03',1970,299,'2005-07-09 01:27:03',1,'2006-02-15 21:30:53'), - (3498,'2005-07-06 00:02:08',1869,444,'2005-07-10 00:19:08',1,'2006-02-15 21:30:53'), - (3499,'2005-07-06 00:04:20',1850,520,'2005-07-14 21:12:20',2,'2006-02-15 21:30:53'), - (3500,'2005-07-06 00:11:13',2447,32,'2005-07-13 19:01:13',2,'2006-02-15 21:30:53'), - (3501,'2005-07-06 00:11:28',2219,270,'2005-07-10 20:32:28',2,'2006-02-15 21:30:53'), - (3502,'2005-07-06 00:15:06',1026,126,'2005-07-13 01:35:06',1,'2006-02-15 21:30:53'), - (3503,'2005-07-06 00:17:24',2944,449,'2005-07-08 03:47:24',1,'2006-02-15 21:30:53'), - (3504,'2005-07-06 00:18:29',268,209,'2005-07-10 00:24:29',2,'2006-02-15 21:30:53'), - (3505,'2005-07-06 00:19:32',2630,331,'2005-07-14 20:14:32',2,'2006-02-15 21:30:53'), - (3506,'2005-07-06 00:22:29',19,459,'2005-07-07 22:15:29',1,'2006-02-15 21:30:53'), - (3507,'2005-07-06 00:23:43',166,480,'2005-07-15 04:19:43',1,'2006-02-15 21:30:53'), - (3508,'2005-07-06 00:24:25',2381,34,'2005-07-10 05:38:25',2,'2006-02-15 21:30:53'), - (3509,'2005-07-06 00:24:57',4394,182,'2005-07-09 18:48:57',2,'2006-02-15 21:30:53'), - (3510,'2005-07-06 00:27:41',2250,443,'2005-07-14 23:20:41',2,'2006-02-15 21:30:53'), - (3511,'2005-07-06 00:42:01',2128,494,'2005-07-09 23:08:01',1,'2006-02-15 21:30:53'), - (3512,'2005-07-06 00:43:06',371,291,'2005-07-12 06:18:06',2,'2006-02-15 21:30:53'), - (3513,'2005-07-06 00:45:57',4225,223,'2005-07-11 19:04:57',2,'2006-02-15 21:30:53'), - (3514,'2005-07-06 00:46:54',4546,536,'2005-07-09 05:47:54',1,'2006-02-15 21:30:53'), - (3515,'2005-07-06 00:48:55',3220,131,'2005-07-09 00:15:55',1,'2006-02-15 21:30:53'), - (3516,'2005-07-06 00:50:30',385,338,'2005-07-09 19:12:30',2,'2006-02-15 21:30:53'), - (3517,'2005-07-06 00:52:35',2762,314,'2005-07-08 20:10:35',2,'2006-02-15 21:30:53'), - (3518,'2005-07-06 00:56:03',2502,167,'2005-07-14 02:27:03',1,'2006-02-15 21:30:53'), - (3519,'2005-07-06 00:57:29',4314,320,'2005-07-10 21:12:29',2,'2006-02-15 21:30:53'), - (3520,'2005-07-06 00:58:27',2872,102,'2005-07-14 05:56:27',1,'2006-02-15 21:30:53'), - (3521,'2005-07-06 01:00:11',1440,262,'2005-07-11 19:15:11',2,'2006-02-15 21:30:53'), - (3522,'2005-07-06 01:00:21',4522,469,'2005-07-11 01:18:21',1,'2006-02-15 21:30:53'), - (3523,'2005-07-06 01:01:38',2171,549,'2005-07-10 20:24:38',2,'2006-02-15 21:30:53'), - (3524,'2005-07-06 01:01:51',1626,88,'2005-07-11 19:52:51',2,'2006-02-15 21:30:53'), - (3525,'2005-07-06 01:02:39',208,51,'2005-07-14 02:27:39',1,'2006-02-15 21:30:53'), - (3526,'2005-07-06 01:03:29',3871,469,'2005-07-15 01:22:29',2,'2006-02-15 21:30:53'), - (3527,'2005-07-06 01:11:08',4537,389,'2005-07-08 01:21:08',1,'2006-02-15 21:30:53'), - (3528,'2005-07-06 01:13:27',1954,201,'2005-07-06 23:45:27',2,'2006-02-15 21:30:53'), - (3529,'2005-07-06 01:15:26',4316,350,'2005-07-07 04:28:26',1,'2006-02-15 21:30:53'), - (3530,'2005-07-06 01:22:45',4542,168,'2005-07-10 03:23:45',1,'2006-02-15 21:30:53'), - (3531,'2005-07-06 01:24:08',1890,165,'2005-07-11 22:00:08',2,'2006-02-15 21:30:53'), - (3532,'2005-07-06 01:24:38',2635,274,'2005-07-11 06:42:38',2,'2006-02-15 21:30:53'), - (3533,'2005-07-06 01:26:44',2028,206,'2005-07-14 21:37:44',1,'2006-02-15 21:30:53'), - (3534,'2005-07-06 01:32:27',2055,283,'2005-07-08 23:14:27',1,'2006-02-15 21:30:53'), - (3535,'2005-07-06 01:32:46',4214,65,'2005-07-11 03:15:46',1,'2006-02-15 21:30:53'), - (3536,'2005-07-06 01:36:11',2328,339,'2005-07-12 20:00:11',2,'2006-02-15 21:30:53'), - (3537,'2005-07-06 01:36:53',4220,479,'2005-07-13 07:01:53',2,'2006-02-15 21:30:53'), - (3538,'2005-07-06 01:37:07',4361,228,'2005-07-11 06:02:07',2,'2006-02-15 21:30:53'), - (3539,'2005-07-06 01:39:08',4081,444,'2005-07-07 05:38:08',1,'2006-02-15 21:30:53'), - (3540,'2005-07-06 01:47:20',1295,97,'2005-07-08 23:48:20',2,'2006-02-15 21:30:53'), - (3541,'2005-07-06 01:50:11',1204,501,'2005-07-12 03:24:11',1,'2006-02-15 21:30:53'), - (3542,'2005-07-06 01:51:42',4391,593,'2005-07-11 03:29:42',1,'2006-02-15 21:30:53'), - (3543,'2005-07-06 02:01:08',3997,394,'2005-07-07 03:14:08',1,'2006-02-15 21:30:53'), - (3544,'2005-07-06 02:06:32',3098,115,'2005-07-09 04:35:32',2,'2006-02-15 21:30:53'), - (3545,'2005-07-06 02:16:17',3924,442,'2005-07-11 00:54:17',1,'2006-02-15 21:30:53'), - (3546,'2005-07-06 02:17:54',959,594,'2005-07-07 00:19:54',1,'2006-02-15 21:30:53'), - (3547,'2005-07-06 02:18:06',2730,239,'2005-07-08 05:24:06',1,'2006-02-15 21:30:53'), - (3548,'2005-07-06 02:23:39',4498,16,'2005-07-08 07:53:39',2,'2006-02-15 21:30:53'), - (3549,'2005-07-06 02:24:55',3921,19,'2005-07-06 21:40:55',2,'2006-02-15 21:30:53'), - (3550,'2005-07-06 02:29:21',2417,15,'2005-07-13 05:26:21',2,'2006-02-15 21:30:53'), - (3551,'2005-07-06 02:33:48',3602,111,'2005-07-13 04:38:48',1,'2006-02-15 21:30:53'), - (3552,'2005-07-06 02:34:09',1099,239,'2005-07-12 05:31:09',1,'2006-02-15 21:30:53'), - (3553,'2005-07-06 02:35:41',4510,422,'2005-07-08 06:38:41',2,'2006-02-15 21:30:53'), - (3554,'2005-07-06 02:37:10',793,538,'2005-07-09 01:58:10',1,'2006-02-15 21:30:53'), - (3555,'2005-07-06 02:45:35',869,537,'2005-07-10 07:17:35',1,'2006-02-15 21:30:53'), - (3556,'2005-07-06 02:46:13',3142,273,'2005-07-06 22:08:13',1,'2006-02-15 21:30:53'), - (3557,'2005-07-06 02:48:39',3832,292,'2005-07-08 22:52:39',2,'2006-02-15 21:30:53'), - (3558,'2005-07-06 02:49:06',1742,575,'2005-07-15 01:38:06',2,'2006-02-15 21:30:53'), - (3559,'2005-07-06 02:49:42',2211,483,'2005-07-12 04:44:42',1,'2006-02-15 21:30:53'), - (3560,'2005-07-06 02:51:37',888,592,'2005-07-10 01:35:37',2,'2006-02-15 21:30:53'), - (3561,'2005-07-06 02:54:33',213,231,'2005-07-14 07:44:33',2,'2006-02-15 21:30:53'), - (3562,'2005-07-06 02:54:36',1660,587,'2005-07-11 05:48:36',1,'2006-02-15 21:30:53'), - (3563,'2005-07-06 02:57:01',4261,210,'2005-07-14 02:25:01',2,'2006-02-15 21:30:53'), - (3564,'2005-07-06 03:02:13',1096,402,'2005-07-13 01:41:13',2,'2006-02-15 21:30:53'), - (3565,'2005-07-06 03:02:58',599,97,'2005-07-13 21:31:58',2,'2006-02-15 21:30:53'), - (3566,'2005-07-06 03:08:51',2774,392,'2005-07-12 05:04:51',1,'2006-02-15 21:30:53'), - (3567,'2005-07-06 03:09:36',27,355,'2005-07-12 02:15:36',1,'2006-02-15 21:30:53'), - (3568,'2005-07-06 03:11:57',2084,283,'2005-07-15 03:14:57',1,'2006-02-15 21:30:53'), - (3569,'2005-07-06 03:17:23',1929,496,'2005-07-14 03:58:23',1,'2006-02-15 21:30:53'), - (3570,'2005-07-06 03:23:43',1300,450,'2005-07-14 07:28:43',2,'2006-02-15 21:30:53'), - (3571,'2005-07-06 03:32:31',4166,580,'2005-07-11 06:15:31',1,'2006-02-15 21:30:53'), - (3572,'2005-07-06 03:33:23',1915,284,'2005-07-08 07:54:23',1,'2006-02-15 21:30:53'), - (3573,'2005-07-06 03:33:48',146,66,'2005-07-07 22:39:48',1,'2006-02-15 21:30:53'), - (3574,'2005-07-06 03:36:01',2799,225,'2005-07-10 01:29:01',2,'2006-02-15 21:30:53'), - (3575,'2005-07-06 03:36:19',3234,49,'2005-07-08 06:21:19',1,'2006-02-15 21:30:53'), - (3576,'2005-07-06 03:40:01',324,227,'2005-07-15 07:22:01',1,'2006-02-15 21:30:53'), - (3577,'2005-07-06 03:40:36',4390,152,'2005-07-10 05:54:36',2,'2006-02-15 21:30:53'), - (3578,'2005-07-06 03:47:05',2954,263,'2005-07-08 02:26:05',1,'2006-02-15 21:30:53'), - (3579,'2005-07-06 03:47:47',3309,485,'2005-07-08 02:16:47',2,'2006-02-15 21:30:53'), - (3580,'2005-07-06 03:48:44',3837,200,'2005-07-13 01:15:44',2,'2006-02-15 21:30:53'), - (3581,'2005-07-06 03:57:35',4520,235,'2005-07-07 08:07:35',2,'2006-02-15 21:30:53'), - (3582,'2005-07-06 04:10:35',1866,297,'2005-07-11 01:29:35',2,'2006-02-15 21:30:53'), - (3583,'2005-07-06 04:10:43',204,574,'2005-07-14 22:17:43',2,'2006-02-15 21:30:53'), - (3584,'2005-07-06 04:16:43',367,207,'2005-07-13 07:08:43',1,'2006-02-15 21:30:53'), - (3585,'2005-07-06 04:22:36',2726,266,'2005-07-09 06:16:36',2,'2006-02-15 21:30:53'), - (3586,'2005-07-06 04:24:42',616,493,'2005-07-09 02:37:42',1,'2006-02-15 21:30:53'), - (3587,'2005-07-06 04:27:52',462,110,'2005-07-13 08:19:52',1,'2006-02-15 21:30:53'), - (3588,'2005-07-06 04:29:13',3154,289,'2005-07-07 23:49:13',1,'2006-02-15 21:30:53'), - (3589,'2005-07-06 04:30:18',3740,137,'2005-07-10 09:18:18',1,'2006-02-15 21:30:53'), - (3590,'2005-07-06 04:35:12',1510,283,'2005-07-10 05:14:12',2,'2006-02-15 21:30:53'), - (3591,'2005-07-06 04:37:10',1241,53,'2005-07-09 23:32:10',1,'2006-02-15 21:30:53'), - (3592,'2005-07-06 04:38:50',1272,286,'2005-07-15 06:36:50',2,'2006-02-15 21:30:53'), - (3593,'2005-07-06 04:39:52',619,78,'2005-07-11 23:20:52',2,'2006-02-15 21:30:53'), - (3594,'2005-07-06 04:42:47',4566,522,'2005-07-10 00:49:47',1,'2006-02-15 21:30:53'), - (3595,'2005-07-06 04:59:49',1431,92,'2005-07-15 06:26:49',2,'2006-02-15 21:30:53'), - (3596,'2005-07-06 05:03:11',594,419,'2005-07-07 05:30:11',2,'2006-02-15 21:30:53'), - (3597,'2005-07-06 05:03:59',4080,35,'2005-07-13 06:49:59',2,'2006-02-15 21:30:53'), - (3598,'2005-07-06 05:11:04',1317,68,'2005-07-09 02:03:04',2,'2006-02-15 21:30:53'), - (3599,'2005-07-06 05:16:36',3262,577,'2005-07-13 07:14:36',2,'2006-02-15 21:30:53'), - (3600,'2005-07-06 05:19:42',2748,511,'2005-07-11 00:34:42',2,'2006-02-15 21:30:53'), - (3601,'2005-07-06 05:20:25',2806,205,'2005-07-15 03:13:25',1,'2006-02-15 21:30:53'), - (3602,'2005-07-06 05:23:10',2192,100,'2005-07-15 03:22:10',2,'2006-02-15 21:30:53'), - (3603,'2005-07-06 05:25:03',2442,330,'2005-07-12 08:14:03',1,'2006-02-15 21:30:53'), - (3604,'2005-07-06 05:25:22',1380,242,'2005-07-07 23:52:22',1,'2006-02-15 21:30:53'), - (3605,'2005-07-06 05:27:15',384,347,'2005-07-10 00:05:15',2,'2006-02-15 21:30:53'), - (3606,'2005-07-06 05:28:02',1737,166,'2005-07-10 04:51:02',1,'2006-02-15 21:30:53'), - (3607,'2005-07-06 05:30:09',542,335,'2005-07-08 01:36:09',2,'2006-02-15 21:30:53'), - (3608,'2005-07-06 05:35:39',3095,368,'2005-07-10 07:46:39',2,'2006-02-15 21:30:53'), - (3609,'2005-07-06 05:36:22',1064,373,'2005-07-10 05:55:22',1,'2006-02-15 21:30:53'), - (3610,'2005-07-06 05:36:59',1509,348,'2005-07-13 07:07:59',1,'2006-02-15 21:30:53'), - (3611,'2005-07-06 05:37:18',4502,86,'2005-07-10 05:14:18',1,'2006-02-15 21:30:53'), - (3612,'2005-07-06 05:37:26',2465,402,'2005-07-14 01:51:26',1,'2006-02-15 21:30:53'), - (3613,'2005-07-06 05:45:53',3776,331,'2005-07-07 10:02:53',1,'2006-02-15 21:30:53'), - (3614,'2005-07-06 05:46:05',853,502,'2005-07-11 01:24:05',2,'2006-02-15 21:30:53'), - (3615,'2005-07-06 05:47:47',711,49,'2005-07-11 05:01:47',1,'2006-02-15 21:30:53'), - (3616,'2005-07-06 05:52:13',557,571,'2005-07-10 10:24:13',1,'2006-02-15 21:30:53'), - (3617,'2005-07-06 05:58:06',1337,125,'2005-07-13 02:10:06',1,'2006-02-15 21:30:53'), - (3618,'2005-07-06 05:58:45',330,264,'2005-07-15 09:13:45',2,'2006-02-15 21:30:53'), - (3619,'2005-07-06 05:59:44',3350,526,'2005-07-11 08:58:44',2,'2006-02-15 21:30:53'), - (3620,'2005-07-06 06:01:50',1661,88,'2005-07-08 05:04:50',1,'2006-02-15 21:30:53'), - (3621,'2005-07-06 06:03:55',3132,171,'2005-07-11 09:25:55',2,'2006-02-15 21:30:53'), - (3622,'2005-07-06 06:05:04',3489,454,'2005-07-12 03:14:04',2,'2006-02-15 21:30:53'), - (3623,'2005-07-06 06:05:23',430,80,'2005-07-07 05:59:23',1,'2006-02-15 21:30:53'), - (3624,'2005-07-06 06:06:27',1778,115,'2005-07-13 08:30:27',2,'2006-02-15 21:30:53'), - (3625,'2005-07-06 06:12:52',1133,175,'2005-07-12 07:37:52',1,'2006-02-15 21:30:53'), - (3626,'2005-07-06 06:15:35',1599,337,'2005-07-10 10:18:35',2,'2006-02-15 21:30:53'), - (3627,'2005-07-06 06:19:25',1087,322,'2005-07-11 05:53:25',1,'2006-02-15 21:30:53'), - (3628,'2005-07-06 06:19:43',3509,588,'2005-07-07 02:23:43',1,'2006-02-15 21:30:53'), - (3629,'2005-07-06 06:23:22',4019,441,'2005-07-08 09:32:22',2,'2006-02-15 21:30:53'), - (3630,'2005-07-06 06:27:15',2448,102,'2005-07-12 10:36:15',1,'2006-02-15 21:30:53'), - (3631,'2005-07-06 06:36:53',4068,47,'2005-07-07 10:32:53',1,'2006-02-15 21:30:53'), - (3632,'2005-07-06 06:38:21',2583,366,'2005-07-11 03:19:21',1,'2006-02-15 21:30:53'), - (3633,'2005-07-06 06:43:26',2978,95,'2005-07-10 04:54:26',1,'2006-02-15 21:30:53'), - (3634,'2005-07-06 06:51:14',3688,245,'2005-07-10 02:30:14',1,'2006-02-15 21:30:53'), - (3635,'2005-07-06 06:55:36',421,250,'2005-07-09 07:57:36',2,'2006-02-15 21:30:53'), - (3636,'2005-07-06 07:03:52',3379,591,'2005-07-08 03:14:52',2,'2006-02-15 21:30:53'), - (3637,'2005-07-06 07:06:31',3823,380,'2005-07-10 02:11:31',2,'2006-02-15 21:30:53'), - (3638,'2005-07-06 07:08:17',190,452,'2005-07-13 12:30:17',1,'2006-02-15 21:30:53'), - (3639,'2005-07-06 07:09:17',2812,7,'2005-07-15 05:12:17',2,'2006-02-15 21:30:53'), - (3640,'2005-07-06 07:12:26',3432,271,'2005-07-10 04:54:26',2,'2006-02-15 21:30:53'), - (3641,'2005-07-06 07:17:09',3834,79,'2005-07-11 07:25:09',1,'2006-02-15 21:30:53'), - (3642,'2005-07-06 07:18:20',4204,166,'2005-07-09 01:37:20',1,'2006-02-15 21:30:53'), - (3643,'2005-07-06 07:20:08',845,176,'2005-07-11 07:01:08',1,'2006-02-15 21:30:53'), - (3644,'2005-07-06 07:20:11',4309,403,'2005-07-11 10:26:11',2,'2006-02-15 21:30:53'), - (3645,'2005-07-06 07:22:09',3390,236,'2005-07-10 11:45:09',1,'2006-02-15 21:30:53'), - (3646,'2005-07-06 07:28:59',3591,322,'2005-07-11 05:19:59',1,'2006-02-15 21:30:53'), - (3647,'2005-07-06 07:29:17',3762,145,'2005-07-13 08:32:17',1,'2006-02-15 21:30:53'), - (3648,'2005-07-06 07:30:41',2810,598,'2005-07-10 06:00:41',2,'2006-02-15 21:30:53'), - (3649,'2005-07-06 07:32:42',3564,24,'2005-07-12 09:37:42',1,'2006-02-15 21:30:53'), - (3650,'2005-07-06 07:34:15',3606,482,'2005-07-08 01:50:15',2,'2006-02-15 21:30:53'), - (3651,'2005-07-06 07:40:31',3323,170,'2005-07-08 03:39:31',2,'2006-02-15 21:30:53'), - (3652,'2005-07-06 07:44:30',1231,518,'2005-07-08 04:41:30',1,'2006-02-15 21:30:53'), - (3653,'2005-07-06 07:45:13',2513,148,'2005-07-10 11:51:13',2,'2006-02-15 21:30:53'), - (3654,'2005-07-06 07:45:31',1621,528,'2005-07-12 09:59:31',2,'2006-02-15 21:30:53'), - (3655,'2005-07-06 07:52:54',1540,493,'2005-07-15 10:49:54',2,'2006-02-15 21:30:53'), - (3656,'2005-07-06 07:55:22',4544,314,'2005-07-13 10:36:22',2,'2006-02-15 21:30:53'), - (3657,'2005-07-06 07:55:30',4134,113,'2005-07-11 07:18:30',1,'2006-02-15 21:30:53'), - (3658,'2005-07-06 08:01:08',3453,253,'2005-07-15 06:36:08',1,'2006-02-15 21:30:53'), - (3659,'2005-07-06 08:03:14',2271,330,'2005-07-12 09:50:14',1,'2006-02-15 21:30:53'), - (3660,'2005-07-06 08:07:29',1129,507,'2005-07-14 08:46:29',1,'2006-02-15 21:30:53'), - (3661,'2005-07-06 08:10:02',2600,442,'2005-07-10 10:17:02',1,'2006-02-15 21:30:53'), - (3662,'2005-07-06 08:11:48',3827,334,'2005-07-09 12:25:48',2,'2006-02-15 21:30:53'), - (3663,'2005-07-06 08:15:47',2646,566,'2005-07-07 08:57:47',1,'2006-02-15 21:30:53'), - (3664,'2005-07-06 08:15:57',3366,528,'2005-07-08 06:11:57',1,'2006-02-15 21:30:53'), - (3665,'2005-07-06 08:23:08',922,102,'2005-07-13 13:38:08',2,'2006-02-15 21:30:53'), - (3666,'2005-07-06 08:27:43',4212,347,'2005-07-09 07:37:43',2,'2006-02-15 21:30:53'), - (3667,'2005-07-06 08:36:34',447,373,'2005-07-15 04:25:34',2,'2006-02-15 21:30:53'), - (3668,'2005-07-06 08:36:48',269,514,'2005-07-10 11:31:48',1,'2006-02-15 21:30:53'), - (3669,'2005-07-06 08:38:29',1299,530,'2005-07-10 05:28:29',1,'2006-02-15 21:30:53'), - (3670,'2005-07-06 08:56:43',4271,268,'2005-07-11 09:11:43',1,'2006-02-15 21:30:53'), - (3671,'2005-07-06 09:01:29',2821,179,'2005-07-15 08:08:29',1,'2006-02-15 21:30:53'), - (3672,'2005-07-06 09:01:56',3883,283,'2005-07-11 14:18:56',1,'2006-02-15 21:30:53'), - (3673,'2005-07-06 09:02:09',1837,88,'2005-07-15 06:45:09',2,'2006-02-15 21:30:53'), - (3674,'2005-07-06 09:03:13',3686,559,'2005-07-13 08:43:13',1,'2006-02-15 21:30:53'), - (3675,'2005-07-06 09:09:19',3662,282,'2005-07-12 08:51:19',1,'2006-02-15 21:30:53'), - (3676,'2005-07-06 09:10:37',1967,137,'2005-07-14 08:24:37',1,'2006-02-15 21:30:53'), - (3677,'2005-07-06 09:11:58',600,5,'2005-07-08 10:50:58',2,'2006-02-15 21:30:53'), - (3678,'2005-07-06 09:15:15',3861,364,'2005-07-10 05:01:15',1,'2006-02-15 21:30:53'), - (3679,'2005-07-06 09:15:57',2186,547,'2005-07-08 03:20:57',1,'2006-02-15 21:30:53'), - (3680,'2005-07-06 09:16:10',2427,82,'2005-07-08 07:52:10',2,'2006-02-15 21:30:53'), - (3681,'2005-07-06 09:19:30',3325,294,'2005-07-11 09:40:30',1,'2006-02-15 21:30:53'), - (3682,'2005-07-06 09:22:48',2597,98,'2005-07-14 11:17:48',2,'2006-02-15 21:30:53'), - (3683,'2005-07-06 09:25:56',3020,43,'2005-07-14 12:10:56',1,'2006-02-15 21:30:53'), - (3684,'2005-07-06 09:29:22',3261,395,'2005-07-12 08:19:22',1,'2006-02-15 21:30:53'), - (3685,'2005-07-06 09:30:45',2015,58,'2005-07-11 15:16:45',2,'2006-02-15 21:30:53'), - (3686,'2005-07-06 09:37:50',376,548,'2005-07-09 10:15:50',2,'2006-02-15 21:30:53'), - (3687,'2005-07-06 09:38:33',2040,207,'2005-07-14 07:50:33',1,'2006-02-15 21:30:53'), - (3688,'2005-07-06 09:41:53',1102,380,'2005-07-14 10:30:53',2,'2006-02-15 21:30:53'), - (3689,'2005-07-06 09:43:01',3168,129,'2005-07-11 09:57:01',1,'2006-02-15 21:30:53'), - (3690,'2005-07-06 09:46:03',4405,435,'2005-07-07 12:12:03',1,'2006-02-15 21:30:53'), - (3691,'2005-07-06 09:46:12',1937,478,'2005-07-07 14:08:12',1,'2006-02-15 21:30:53'), - (3692,'2005-07-06 09:54:12',1237,286,'2005-07-11 09:42:12',2,'2006-02-15 21:30:53'), - (3693,'2005-07-06 09:56:09',2989,545,'2005-07-15 06:50:09',2,'2006-02-15 21:30:53'), - (3694,'2005-07-06 10:01:23',3848,419,'2005-07-08 11:44:23',2,'2006-02-15 21:30:53'), - (3695,'2005-07-06 10:02:08',2823,441,'2005-07-09 15:43:08',1,'2006-02-15 21:30:53'), - (3696,'2005-07-06 10:04:55',3244,497,'2005-07-11 15:58:55',2,'2006-02-15 21:30:53'), - (3697,'2005-07-06 10:07:22',1223,182,'2005-07-13 14:04:22',2,'2006-02-15 21:30:53'), - (3698,'2005-07-06 10:09:20',1263,461,'2005-07-08 15:49:20',1,'2006-02-15 21:30:53'), - (3699,'2005-07-06 10:11:25',418,262,'2005-07-14 05:18:25',1,'2006-02-15 21:30:53'), - (3700,'2005-07-06 10:12:19',343,72,'2005-07-07 14:21:19',2,'2006-02-15 21:30:53'), - (3701,'2005-07-06 10:12:45',3679,31,'2005-07-09 08:52:45',1,'2006-02-15 21:30:53'), - (3702,'2005-07-06 10:13:56',2204,428,'2005-07-10 08:12:56',1,'2006-02-15 21:30:53'), - (3703,'2005-07-06 10:15:26',4276,421,'2005-07-13 13:00:26',1,'2006-02-15 21:30:53'), - (3704,'2005-07-06 10:16:45',2687,323,'2005-07-13 12:44:45',2,'2006-02-15 21:30:53'), - (3705,'2005-07-06 10:17:59',65,223,'2005-07-10 15:31:59',1,'2006-02-15 21:30:53'), - (3706,'2005-07-06 10:18:01',681,132,'2005-07-09 09:07:01',2,'2006-02-15 21:30:53'), - (3707,'2005-07-06 10:21:49',1080,14,'2005-07-12 05:14:49',2,'2006-02-15 21:30:53'), - (3708,'2005-07-06 10:23:27',2105,201,'2005-07-14 09:26:27',1,'2006-02-15 21:30:53'), - (3709,'2005-07-06 10:26:56',4033,187,'2005-07-15 13:51:56',2,'2006-02-15 21:30:53'), - (3710,'2005-07-06 10:28:53',2596,228,'2005-07-15 06:17:53',2,'2006-02-15 21:30:53'), - (3711,'2005-07-06 10:46:15',1914,75,'2005-07-07 09:25:15',2,'2006-02-15 21:30:53'), - (3712,'2005-07-06 10:47:35',3741,504,'2005-07-15 09:39:35',1,'2006-02-15 21:30:53'), - (3713,'2005-07-06 10:49:30',1823,504,'2005-07-13 10:44:30',1,'2006-02-15 21:30:53'), - (3714,'2005-07-06 10:51:28',1985,276,'2005-07-09 13:57:28',2,'2006-02-15 21:30:53'), - (3715,'2005-07-06 10:51:48',4456,228,'2005-07-11 06:08:48',1,'2006-02-15 21:30:53'), - (3716,'2005-07-06 10:52:32',3271,92,'2005-07-14 08:45:32',2,'2006-02-15 21:30:53'), - (3717,'2005-07-06 10:53:34',1677,173,'2005-07-07 13:43:34',2,'2006-02-15 21:30:53'), - (3718,'2005-07-06 10:57:56',2624,56,'2005-07-12 12:54:56',1,'2006-02-15 21:30:53'), - (3719,'2005-07-06 11:05:55',3573,376,'2005-07-11 08:10:55',2,'2006-02-15 21:30:53'), - (3720,'2005-07-06 11:06:57',2958,96,'2005-07-09 14:16:57',1,'2006-02-15 21:30:53'), - (3721,'2005-07-06 11:10:09',2654,226,'2005-07-11 07:45:09',2,'2006-02-15 21:30:53'), - (3722,'2005-07-06 11:10:27',604,83,'2005-07-13 12:56:27',2,'2006-02-15 21:30:53'), - (3723,'2005-07-06 11:12:02',4554,501,'2005-07-14 16:45:02',2,'2006-02-15 21:30:53'), - (3724,'2005-07-06 11:12:48',3622,468,'2005-07-14 14:41:48',1,'2006-02-15 21:30:53'), - (3725,'2005-07-06 11:15:04',2789,126,'2005-07-09 06:39:04',1,'2006-02-15 21:30:53'), - (3726,'2005-07-06 11:15:49',742,363,'2005-07-11 05:54:49',2,'2006-02-15 21:30:53'), - (3727,'2005-07-06 11:16:43',2886,57,'2005-07-07 15:39:43',1,'2006-02-15 21:30:53'), - (3728,'2005-07-06 11:29:00',1798,298,'2005-07-11 06:28:00',1,'2006-02-15 21:30:53'), - (3729,'2005-07-06 11:30:29',3156,90,'2005-07-12 07:18:29',1,'2006-02-15 21:30:53'), - (3730,'2005-07-06 11:31:24',1665,355,'2005-07-15 06:53:24',1,'2006-02-15 21:30:53'), - (3731,'2005-07-06 11:33:36',4133,558,'2005-07-15 12:23:36',2,'2006-02-15 21:30:53'), - (3732,'2005-07-06 11:33:37',106,318,'2005-07-08 08:31:37',1,'2006-02-15 21:30:53'), - (3733,'2005-07-06 11:33:55',3242,586,'2005-07-09 10:08:55',2,'2006-02-15 21:30:53'), - (3734,'2005-07-06 11:40:27',4569,37,'2005-07-14 12:08:27',1,'2006-02-15 21:30:53'), - (3735,'2005-07-06 11:42:04',2262,534,'2005-07-12 14:33:04',2,'2006-02-15 21:30:53'), - (3736,'2005-07-06 11:43:44',1515,23,'2005-07-13 07:55:44',2,'2006-02-15 21:30:53'), - (3737,'2005-07-06 11:45:53',123,403,'2005-07-13 15:27:53',1,'2006-02-15 21:30:53'), - (3738,'2005-07-06 11:50:57',578,546,'2005-07-09 08:07:57',1,'2006-02-15 21:30:53'), - (3739,'2005-07-06 11:54:18',4333,157,'2005-07-09 10:48:18',1,'2006-02-15 21:30:53'), - (3740,'2005-07-06 11:55:35',1829,277,'2005-07-14 09:44:35',2,'2006-02-15 21:30:53'), - (3741,'2005-07-06 12:00:18',1449,584,'2005-07-12 09:02:18',2,'2006-02-15 21:30:53'), - (3742,'2005-07-06 12:01:38',2873,96,'2005-07-15 10:46:38',1,'2006-02-15 21:30:53'), - (3743,'2005-07-06 12:03:54',1012,456,'2005-07-13 10:56:54',2,'2006-02-15 21:30:53'), - (3744,'2005-07-06 12:10:02',3343,510,'2005-07-08 11:49:02',2,'2006-02-15 21:30:53'), - (3745,'2005-07-06 12:10:32',1518,171,'2005-07-12 15:20:32',1,'2006-02-15 21:30:53'), - (3746,'2005-07-06 12:10:51',3387,424,'2005-07-07 11:36:51',2,'2006-02-15 21:30:53'), - (3747,'2005-07-06 12:11:14',1093,437,'2005-07-09 17:14:14',2,'2006-02-15 21:30:53'), - (3748,'2005-07-06 12:11:22',2920,79,'2005-07-12 07:22:22',1,'2006-02-15 21:30:53'), - (3749,'2005-07-06 12:18:03',1531,170,'2005-07-11 07:25:03',1,'2006-02-15 21:30:53'), - (3750,'2005-07-06 12:19:28',2422,103,'2005-07-14 13:16:28',2,'2006-02-15 21:30:53'), - (3751,'2005-07-06 12:23:41',3652,128,'2005-07-10 06:58:41',1,'2006-02-15 21:30:53'), - (3752,'2005-07-06 12:30:12',4561,235,'2005-07-13 12:13:12',1,'2006-02-15 21:30:53'), - (3753,'2005-07-06 12:34:06',774,358,'2005-07-07 14:19:06',2,'2006-02-15 21:30:53'), - (3754,'2005-07-06 12:35:44',4042,83,'2005-07-08 16:28:44',1,'2006-02-15 21:30:53'), - (3755,'2005-07-06 12:37:16',3147,402,'2005-07-13 07:22:16',1,'2006-02-15 21:30:53'), - (3756,'2005-07-06 12:40:38',30,320,'2005-07-11 09:29:38',1,'2006-02-15 21:30:53'), - (3757,'2005-07-06 12:42:26',2816,66,'2005-07-11 10:30:26',1,'2006-02-15 21:30:53'), - (3758,'2005-07-06 12:43:11',2498,48,'2005-07-14 12:52:11',2,'2006-02-15 21:30:53'), - (3759,'2005-07-06 12:46:38',4165,378,'2005-07-10 11:31:38',1,'2006-02-15 21:30:53'), - (3760,'2005-07-06 12:49:28',1306,330,'2005-07-09 16:29:28',1,'2006-02-15 21:30:53'), - (3761,'2005-07-06 12:52:44',4304,464,'2005-07-08 17:22:44',1,'2006-02-15 21:30:53'), - (3762,'2005-07-06 12:52:49',1941,413,'2005-07-12 11:41:49',1,'2006-02-15 21:30:53'), - (3763,'2005-07-06 12:56:31',1573,189,'2005-07-09 14:49:31',1,'2006-02-15 21:30:53'), - (3764,'2005-07-06 13:01:03',3115,470,'2005-07-13 15:26:03',1,'2006-02-15 21:30:53'), - (3765,'2005-07-06 13:01:47',1805,547,'2005-07-09 07:10:47',1,'2006-02-15 21:30:53'), - (3766,'2005-07-06 13:04:35',4504,312,'2005-07-07 15:46:35',1,'2006-02-15 21:30:53'), - (3767,'2005-07-06 13:07:27',923,582,'2005-07-08 18:48:27',1,'2006-02-15 21:30:53'), - (3768,'2005-07-06 13:07:30',3995,573,'2005-07-09 16:26:30',2,'2006-02-15 21:30:53'), - (3769,'2005-07-06 13:11:33',467,567,'2005-07-14 17:54:33',2,'2006-02-15 21:30:53'), - (3770,'2005-07-06 13:14:28',3836,198,'2005-07-13 09:23:28',1,'2006-02-15 21:30:53'), - (3771,'2005-07-06 13:19:34',1373,56,'2005-07-10 10:27:34',2,'2006-02-15 21:30:53'), - (3772,'2005-07-06 13:22:53',434,338,'2005-07-10 11:54:53',2,'2006-02-15 21:30:53'), - (3773,'2005-07-06 13:23:34',2034,263,'2005-07-08 17:23:34',2,'2006-02-15 21:30:53'), - (3774,'2005-07-06 13:25:07',4044,439,'2005-07-15 12:56:07',2,'2006-02-15 21:30:53'), - (3775,'2005-07-06 13:27:33',3696,300,'2005-07-09 10:27:33',1,'2006-02-15 21:30:53'), - (3776,'2005-07-06 13:31:37',4387,278,'2005-07-10 10:53:37',2,'2006-02-15 21:30:53'), - (3777,'2005-07-06 13:36:48',2470,548,'2005-07-11 14:26:48',1,'2006-02-15 21:30:53'), - (3778,'2005-07-06 13:44:48',2181,122,'2005-07-13 09:31:48',2,'2006-02-15 21:30:53'), - (3779,'2005-07-06 13:46:36',634,583,'2005-07-10 15:49:36',2,'2006-02-15 21:30:53'), - (3780,'2005-07-06 13:52:02',1209,99,'2005-07-15 08:41:02',2,'2006-02-15 21:30:53'), - (3781,'2005-07-06 13:53:41',3894,23,'2005-07-15 10:03:41',1,'2006-02-15 21:30:53'), - (3782,'2005-07-06 13:57:03',3365,515,'2005-07-09 11:13:03',2,'2006-02-15 21:30:53'), - (3783,'2005-07-06 13:57:31',2345,386,'2005-07-14 10:44:31',2,'2006-02-15 21:30:53'), - (3784,'2005-07-06 13:57:56',2287,165,'2005-07-14 17:24:56',2,'2006-02-15 21:30:53'), - (3785,'2005-07-06 14:00:13',3279,577,'2005-07-14 10:13:13',2,'2006-02-15 21:30:53'), - (3786,'2005-07-06 14:00:41',4508,152,'2005-07-13 16:49:41',1,'2006-02-15 21:30:53'), - (3787,'2005-07-06 14:02:01',288,474,'2005-07-09 19:09:01',2,'2006-02-15 21:30:53'), - (3788,'2005-07-06 14:02:02',1363,379,'2005-07-10 18:24:02',1,'2006-02-15 21:30:53'), - (3789,'2005-07-06 14:02:26',3560,595,'2005-07-14 18:13:26',1,'2006-02-15 21:30:53'), - (3790,'2005-07-06 14:13:45',1711,10,'2005-07-14 13:35:45',1,'2006-02-15 21:30:53'), - (3791,'2005-07-06 14:24:56',3426,452,'2005-07-14 11:06:56',2,'2006-02-15 21:30:53'), - (3792,'2005-07-06 14:26:38',2651,312,'2005-07-11 16:34:38',1,'2006-02-15 21:30:53'), - (3793,'2005-07-06 14:32:44',4558,553,'2005-07-08 13:55:44',1,'2006-02-15 21:30:53'), - (3794,'2005-07-06 14:35:26',584,499,'2005-07-11 14:40:26',2,'2006-02-15 21:30:53'), - (3795,'2005-07-06 14:37:41',240,153,'2005-07-11 20:27:41',2,'2006-02-15 21:30:53'), - (3796,'2005-07-06 14:45:22',1649,228,'2005-07-07 11:01:22',2,'2006-02-15 21:30:53'), - (3797,'2005-07-06 14:54:52',1047,374,'2005-07-10 09:50:52',2,'2006-02-15 21:30:53'), - (3798,'2005-07-06 14:57:53',1942,479,'2005-07-07 10:48:53',2,'2006-02-15 21:30:53'), - (3799,'2005-07-06 15:00:14',4532,251,'2005-07-10 15:39:14',1,'2006-02-15 21:30:53'), - (3800,'2005-07-06 15:01:27',4004,100,'2005-07-15 11:12:27',2,'2006-02-15 21:30:53'), - (3801,'2005-07-06 15:05:50',4209,68,'2005-07-12 12:56:50',1,'2006-02-15 21:30:53'), - (3802,'2005-07-06 15:06:09',1017,91,'2005-07-08 09:33:09',2,'2006-02-15 21:30:53'), - (3803,'2005-07-06 15:06:55',2062,494,'2005-07-08 18:53:55',1,'2006-02-15 21:30:53'), - (3804,'2005-07-06 15:08:08',537,126,'2005-07-15 14:01:08',2,'2006-02-15 21:30:53'), - (3805,'2005-07-06 15:08:42',1716,418,'2005-07-07 14:34:42',1,'2006-02-15 21:30:53'), - (3806,'2005-07-06 15:09:41',3555,154,'2005-07-14 09:14:41',2,'2006-02-15 21:30:53'), - (3807,'2005-07-06 15:11:44',39,425,'2005-07-10 09:20:44',1,'2006-02-15 21:30:53'), - (3808,'2005-07-06 15:15:35',4339,314,'2005-07-07 16:10:35',1,'2006-02-15 21:30:53'), - (3809,'2005-07-06 15:16:37',2932,358,'2005-07-09 14:45:37',1,'2006-02-15 21:30:53'), - (3810,'2005-07-06 15:18:44',342,296,'2005-07-12 09:52:44',2,'2006-02-15 21:30:53'), - (3811,'2005-07-06 15:20:37',695,208,'2005-07-08 16:26:37',2,'2006-02-15 21:30:53'), - (3812,'2005-07-06 15:22:19',4490,381,'2005-07-08 13:04:19',1,'2006-02-15 21:30:53'), - (3813,'2005-07-06 15:23:34',4100,189,'2005-07-08 19:03:34',1,'2006-02-15 21:30:53'), - (3814,'2005-07-06 15:23:56',3826,306,'2005-07-13 20:51:56',2,'2006-02-15 21:30:53'), - (3815,'2005-07-06 15:26:36',4038,472,'2005-07-11 17:07:36',2,'2006-02-15 21:30:53'), - (3816,'2005-07-06 15:27:04',2941,489,'2005-07-14 13:12:04',1,'2006-02-15 21:30:53'), - (3817,'2005-07-06 15:31:45',2933,267,'2005-07-11 17:11:45',1,'2006-02-15 21:30:53'), - (3818,'2005-07-06 15:33:31',653,97,'2005-07-11 16:35:31',1,'2006-02-15 21:30:53'), - (3819,'2005-07-06 15:35:06',1814,74,'2005-07-14 19:08:06',1,'2006-02-15 21:30:53'), - (3820,'2005-07-06 15:35:26',4192,460,'2005-07-11 12:22:26',2,'2006-02-15 21:30:53'), - (3821,'2005-07-06 15:36:20',4385,354,'2005-07-11 20:04:20',1,'2006-02-15 21:30:53'), - (3822,'2005-07-06 15:41:15',1314,241,'2005-07-07 16:41:15',1,'2006-02-15 21:30:53'), - (3823,'2005-07-06 15:41:27',124,265,'2005-07-09 09:48:27',1,'2006-02-15 21:30:53'), - (3824,'2005-07-06 15:43:15',3107,107,'2005-07-13 16:05:15',2,'2006-02-15 21:30:53'), - (3825,'2005-07-06 15:50:03',630,132,'2005-07-09 19:20:03',1,'2006-02-15 21:30:53'), - (3826,'2005-07-06 15:51:58',73,451,'2005-07-13 12:35:58',1,'2006-02-15 21:30:53'), - (3827,'2005-07-06 15:52:03',2072,41,'2005-07-08 21:43:03',2,'2006-02-15 21:30:53'), - (3828,'2005-07-06 15:57:30',4493,498,'2005-07-10 12:17:30',2,'2006-02-15 21:30:53'), - (3829,'2005-07-06 15:59:40',4126,356,'2005-07-11 10:29:40',1,'2006-02-15 21:30:53'), - (3830,'2005-07-06 16:01:16',553,310,'2005-07-15 19:35:16',2,'2006-02-15 21:30:53'), - (3831,'2005-07-06 16:06:35',1338,206,'2005-07-08 15:14:35',2,'2006-02-15 21:30:53'), - (3832,'2005-07-06 16:12:23',4499,233,'2005-07-12 21:29:23',1,'2006-02-15 21:30:53'), - (3833,'2005-07-06 16:18:28',3232,416,'2005-07-14 20:09:28',2,'2006-02-15 21:30:53'), - (3834,'2005-07-06 16:19:56',3001,366,'2005-07-13 11:38:56',2,'2006-02-15 21:30:53'), - (3835,'2005-07-06 16:22:45',935,486,'2005-07-11 17:04:45',2,'2006-02-15 21:30:53'), - (3836,'2005-07-06 16:26:04',1148,351,'2005-07-10 15:08:04',1,'2006-02-15 21:30:53'), - (3837,'2005-07-06 16:27:43',3166,309,'2005-07-07 18:02:43',1,'2006-02-15 21:30:53'), - (3838,'2005-07-06 16:29:43',3404,565,'2005-07-11 20:50:43',1,'2006-02-15 21:30:53'), - (3839,'2005-07-06 16:30:30',3230,231,'2005-07-11 19:00:30',1,'2006-02-15 21:30:53'), - (3840,'2005-07-06 16:30:59',4384,468,'2005-07-15 22:08:59',2,'2006-02-15 21:30:53'), - (3841,'2005-07-06 16:34:00',4228,470,'2005-07-08 15:12:00',2,'2006-02-15 21:30:53'), - (3842,'2005-07-06 16:34:32',3119,583,'2005-07-08 11:55:32',2,'2006-02-15 21:30:53'), - (3843,'2005-07-06 16:35:40',3844,62,'2005-07-07 18:29:40',1,'2006-02-15 21:30:53'), - (3844,'2005-07-06 16:37:58',2814,179,'2005-07-09 19:54:58',2,'2006-02-15 21:30:53'), - (3845,'2005-07-06 16:38:14',4495,28,'2005-07-09 14:59:14',2,'2006-02-15 21:30:53'), - (3846,'2005-07-06 16:43:10',2829,88,'2005-07-14 11:09:10',2,'2006-02-15 21:30:53'), - (3847,'2005-07-06 16:44:41',782,206,'2005-07-07 21:54:41',2,'2006-02-15 21:30:53'), - (3848,'2005-07-06 16:47:32',2906,188,'2005-07-14 15:00:32',1,'2006-02-15 21:30:53'), - (3849,'2005-07-06 16:49:43',3660,60,'2005-07-12 17:20:43',1,'2006-02-15 21:30:53'), - (3850,'2005-07-06 16:51:21',1700,103,'2005-07-12 13:58:21',1,'2006-02-15 21:30:53'), - (3851,'2005-07-06 16:54:12',493,436,'2005-07-11 22:49:12',1,'2006-02-15 21:30:53'), - (3852,'2005-07-06 16:57:49',3329,511,'2005-07-11 17:11:49',1,'2006-02-15 21:30:53'), - (3853,'2005-07-06 16:59:20',1411,537,'2005-07-07 12:30:20',2,'2006-02-15 21:30:53'), - (3854,'2005-07-06 17:02:33',2054,243,'2005-07-12 17:32:33',2,'2006-02-15 21:30:53'), - (3855,'2005-07-06 17:03:48',2931,46,'2005-07-12 14:32:48',1,'2006-02-15 21:30:53'), - (3856,'2005-07-06 17:04:46',3083,498,'2005-07-14 19:23:46',2,'2006-02-15 21:30:53'), - (3857,'2005-07-06 17:07:54',1135,236,'2005-07-07 13:28:54',1,'2006-02-15 21:30:53'), - (3858,'2005-07-06 17:17:57',829,377,'2005-07-10 23:10:57',2,'2006-02-15 21:30:53'), - (3859,'2005-07-06 17:18:15',2548,553,'2005-07-09 16:48:15',1,'2006-02-15 21:30:53'), - (3860,'2005-07-06 17:20:24',144,514,'2005-07-09 22:33:24',1,'2006-02-15 21:30:53'), - (3861,'2005-07-06 17:24:49',4506,202,'2005-07-15 22:19:49',2,'2006-02-15 21:30:53'), - (3862,'2005-07-06 17:35:22',471,181,'2005-07-15 17:13:22',1,'2006-02-15 21:30:53'), - (3863,'2005-07-06 17:40:18',363,481,'2005-07-07 17:58:18',2,'2006-02-15 21:30:53'), - (3864,'2005-07-06 17:41:42',2811,68,'2005-07-08 14:17:42',1,'2006-02-15 21:30:53'), - (3865,'2005-07-06 17:46:57',3579,357,'2005-07-12 12:20:57',1,'2006-02-15 21:30:53'), - (3866,'2005-07-06 17:47:20',194,409,'2005-07-15 18:12:20',1,'2006-02-15 21:30:53'), - (3867,'2005-07-06 17:52:19',3620,580,'2005-07-13 21:48:19',1,'2006-02-15 21:30:53'), - (3868,'2005-07-06 17:54:13',1606,416,'2005-07-10 14:51:13',1,'2006-02-15 21:30:53'), - (3869,'2005-07-06 17:56:46',2540,183,'2005-07-10 20:44:46',1,'2006-02-15 21:30:53'), - (3870,'2005-07-06 17:57:54',3357,12,'2005-07-13 12:30:54',1,'2006-02-15 21:30:53'), - (3871,'2005-07-06 17:58:51',3114,331,'2005-07-15 22:18:51',2,'2006-02-15 21:30:53'), - (3872,'2005-07-06 18:00:19',1785,513,'2005-07-07 17:26:19',1,'2006-02-15 21:30:53'), - (3873,'2005-07-06 18:03:16',4148,394,'2005-07-15 23:58:16',2,'2006-02-15 21:30:53'), - (3874,'2005-07-06 18:06:12',1870,137,'2005-07-12 16:55:12',1,'2006-02-15 21:30:53'), - (3875,'2005-07-06 18:15:39',712,108,'2005-07-11 17:34:39',1,'2006-02-15 21:30:53'), - (3876,'2005-07-06 18:21:13',4039,295,'2005-07-14 16:57:13',2,'2006-02-15 21:30:53'), - (3877,'2005-07-06 18:22:10',2796,576,'2005-07-07 23:38:10',1,'2006-02-15 21:30:53'), - (3878,'2005-07-06 18:27:09',4022,385,'2005-07-15 20:13:09',2,'2006-02-15 21:30:53'), - (3879,'2005-07-06 18:31:20',1376,81,'2005-07-09 19:03:20',2,'2006-02-15 21:30:53'), - (3880,'2005-07-06 18:32:49',42,507,'2005-07-07 20:46:49',2,'2006-02-15 21:30:53'), - (3881,'2005-07-06 18:35:37',143,456,'2005-07-10 00:06:37',2,'2006-02-15 21:30:53'), - (3882,'2005-07-06 18:38:21',788,254,'2005-07-09 14:55:21',1,'2006-02-15 21:30:53'), - (3883,'2005-07-06 18:39:38',3238,69,'2005-07-14 15:59:38',2,'2006-02-15 21:30:53'), - (3884,'2005-07-06 18:41:33',1806,210,'2005-07-07 22:06:33',1,'2006-02-15 21:30:53'), - (3885,'2005-07-06 18:43:43',1820,282,'2005-07-12 19:48:43',2,'2006-02-15 21:30:53'), - (3886,'2005-07-06 18:44:24',2368,326,'2005-07-08 15:11:24',1,'2006-02-15 21:30:53'), - (3887,'2005-07-06 18:46:34',1695,530,'2005-07-07 13:15:34',1,'2006-02-15 21:30:53'), - (3888,'2005-07-06 18:54:20',1945,412,'2005-07-12 17:13:20',2,'2006-02-15 21:30:53'), - (3889,'2005-07-06 18:56:25',2005,576,'2005-07-08 21:22:25',2,'2006-02-15 21:30:53'), - (3890,'2005-07-06 18:58:15',2570,553,'2005-07-10 18:51:15',1,'2006-02-15 21:30:53'), - (3891,'2005-07-06 18:58:25',3216,553,'2005-07-09 23:20:25',2,'2006-02-15 21:30:53'), - (3892,'2005-07-06 18:58:58',778,549,'2005-07-10 19:29:58',1,'2006-02-15 21:30:53'), - (3893,'2005-07-06 18:59:31',1281,350,'2005-07-12 19:21:31',1,'2006-02-15 21:30:53'), - (3894,'2005-07-06 19:01:39',2087,149,'2005-07-12 21:35:39',2,'2006-02-15 21:30:53'), - (3895,'2005-07-06 19:04:24',145,584,'2005-07-15 17:48:24',2,'2006-02-15 21:30:53'), - (3896,'2005-07-06 19:09:15',1755,309,'2005-07-16 00:52:15',2,'2006-02-15 21:30:53'), - (3897,'2005-07-06 19:11:43',14,277,'2005-07-11 21:50:43',2,'2006-02-15 21:30:53'), - (3898,'2005-07-06 19:12:37',3858,53,'2005-07-11 15:50:37',1,'2006-02-15 21:30:53'), - (3899,'2005-07-06 19:12:40',4020,485,'2005-07-13 23:41:40',1,'2006-02-15 21:30:53'), - (3900,'2005-07-06 19:21:28',1497,129,'2005-07-15 21:06:28',2,'2006-02-15 21:30:53'), - (3901,'2005-07-06 19:24:55',3367,321,'2005-07-14 20:30:55',2,'2006-02-15 21:30:53'), - (3902,'2005-07-06 19:25:18',2868,192,'2005-07-10 17:42:18',2,'2006-02-15 21:30:53'), - (3903,'2005-07-06 19:27:32',3614,369,'2005-07-08 23:27:32',1,'2006-02-15 21:30:53'), - (3904,'2005-07-06 19:30:57',3600,485,'2005-07-11 18:47:57',2,'2006-02-15 21:30:53'), - (3905,'2005-07-06 19:33:34',3817,526,'2005-07-15 17:55:34',1,'2006-02-15 21:30:53'), - (3906,'2005-07-06 19:35:55',1383,293,'2005-07-15 22:35:55',1,'2006-02-15 21:30:53'), - (3907,'2005-07-06 19:39:14',2507,452,'2005-07-11 17:45:14',1,'2006-02-15 21:30:53'), - (3908,'2005-07-06 19:47:26',3980,116,'2005-07-13 19:59:26',1,'2006-02-15 21:30:53'), - (3909,'2005-07-06 19:54:41',3423,396,'2005-07-15 18:11:41',2,'2006-02-15 21:30:53'), - (3910,'2005-07-06 20:05:18',2085,248,'2005-07-10 18:51:18',1,'2006-02-15 21:30:53'), - (3911,'2005-07-06 20:09:11',4548,34,'2005-07-08 23:53:11',1,'2006-02-15 21:30:53'), - (3912,'2005-07-06 20:10:03',2449,154,'2005-07-08 18:39:03',2,'2006-02-15 21:30:53'), - (3913,'2005-07-06 20:11:00',752,494,'2005-07-08 14:42:00',1,'2006-02-15 21:30:53'), - (3914,'2005-07-06 20:11:10',4092,159,'2005-07-14 14:42:10',2,'2006-02-15 21:30:53'), - (3915,'2005-07-06 20:16:46',125,163,'2005-07-10 17:24:46',1,'2006-02-15 21:30:53'), - (3916,'2005-07-06 20:18:50',3198,46,'2005-07-12 21:56:50',1,'2006-02-15 21:30:53'), - (3917,'2005-07-06 20:19:29',2747,471,'2005-07-11 00:49:29',1,'2006-02-15 21:30:53'), - (3918,'2005-07-06 20:26:15',1111,435,'2005-07-15 20:32:15',1,'2006-02-15 21:30:53'), - (3919,'2005-07-06 20:26:21',2695,147,'2005-07-15 00:13:21',1,'2006-02-15 21:30:53'), - (3920,'2005-07-06 20:26:40',1551,321,'2005-07-15 15:00:40',2,'2006-02-15 21:30:53'), - (3921,'2005-07-06 20:29:48',949,531,'2005-07-14 01:44:48',1,'2006-02-15 21:30:53'), - (3922,'2005-07-06 20:32:27',2878,470,'2005-07-14 19:00:27',1,'2006-02-15 21:30:53'), - (3923,'2005-07-06 20:34:10',2039,63,'2005-07-13 19:20:10',1,'2006-02-15 21:30:53'), - (3924,'2005-07-06 20:38:02',187,114,'2005-07-11 23:35:02',2,'2006-02-15 21:30:53'), - (3925,'2005-07-06 20:41:44',2653,428,'2005-07-15 21:05:44',2,'2006-02-15 21:30:53'), - (3926,'2005-07-06 20:42:35',4241,500,'2005-07-09 16:30:35',2,'2006-02-15 21:30:53'), - (3927,'2005-07-06 20:48:14',2194,404,'2005-07-10 15:37:14',1,'2006-02-15 21:30:53'), - (3928,'2005-07-06 20:52:09',1960,411,'2005-07-08 18:51:09',1,'2006-02-15 21:30:53'), - (3929,'2005-07-06 20:52:39',1235,453,'2005-07-12 00:27:39',2,'2006-02-15 21:30:53'), - (3930,'2005-07-06 20:54:07',165,573,'2005-07-10 18:31:07',1,'2006-02-15 21:30:53'), - (3931,'2005-07-06 21:03:46',182,176,'2005-07-16 01:32:46',1,'2006-02-15 21:30:53'), - (3932,'2005-07-06 21:06:17',4396,490,'2005-07-07 19:25:17',2,'2006-02-15 21:30:53'), - (3933,'2005-07-06 21:06:37',1202,229,'2005-07-08 20:23:37',1,'2006-02-15 21:30:53'), - (3934,'2005-07-06 21:07:23',3187,576,'2005-07-10 18:20:23',2,'2006-02-15 21:30:53'), - (3935,'2005-07-06 21:08:29',3402,503,'2005-07-15 23:28:29',2,'2006-02-15 21:30:53'), - (3936,'2005-07-06 21:15:03',4258,129,'2005-07-08 17:45:03',2,'2006-02-15 21:30:53'), - (3937,'2005-07-06 21:15:38',2091,211,'2005-07-15 00:01:38',2,'2006-02-15 21:30:53'), - (3938,'2005-07-06 21:15:45',1991,341,'2005-07-13 20:02:45',2,'2006-02-15 21:30:53'), - (3939,'2005-07-06 21:16:32',3627,149,'2005-07-11 03:12:32',2,'2006-02-15 21:30:53'), - (3940,'2005-07-06 21:16:59',1502,116,'2005-07-07 19:17:59',2,'2006-02-15 21:30:53'), - (3941,'2005-07-06 21:20:37',382,560,'2005-07-09 01:35:37',2,'2006-02-15 21:30:53'), - (3942,'2005-07-06 21:21:34',677,553,'2005-07-15 02:34:34',1,'2006-02-15 21:30:53'), - (3943,'2005-07-06 21:22:17',1816,566,'2005-07-07 21:26:17',1,'2006-02-15 21:30:53'), - (3944,'2005-07-06 21:34:11',4213,436,'2005-07-08 23:46:11',2,'2006-02-15 21:30:53'), - (3945,'2005-07-06 21:35:00',754,86,'2005-07-08 00:31:00',2,'2006-02-15 21:30:53'), - (3946,'2005-07-06 21:39:24',294,13,'2005-07-11 16:10:24',1,'2006-02-15 21:30:53'), - (3947,'2005-07-06 21:42:21',4188,324,'2005-07-08 19:37:21',1,'2006-02-15 21:30:53'), - (3948,'2005-07-06 21:45:53',2254,161,'2005-07-08 19:24:53',2,'2006-02-15 21:30:53'), - (3949,'2005-07-06 21:46:36',1765,153,'2005-07-11 03:18:36',1,'2006-02-15 21:30:53'), - (3950,'2005-07-06 21:48:44',4153,598,'2005-07-14 02:25:44',1,'2006-02-15 21:30:53'), - (3951,'2005-07-06 21:50:41',2288,250,'2005-07-12 02:09:41',2,'2006-02-15 21:30:53'), - (3952,'2005-07-06 21:51:31',1719,417,'2005-07-13 15:54:31',1,'2006-02-15 21:30:53'), - (3953,'2005-07-06 21:54:55',3879,385,'2005-07-09 18:52:55',1,'2006-02-15 21:30:53'), - (3954,'2005-07-06 21:57:44',4250,558,'2005-07-08 02:37:44',2,'2006-02-15 21:30:53'), - (3955,'2005-07-06 21:58:08',2523,247,'2005-07-08 03:43:08',1,'2006-02-15 21:30:53'), - (3956,'2005-07-06 22:01:51',15,147,'2005-07-12 21:35:51',2,'2006-02-15 21:30:53'), - (3957,'2005-07-06 22:05:47',443,414,'2005-07-16 01:08:47',1,'2006-02-15 21:30:53'), - (3958,'2005-07-06 22:07:33',4117,288,'2005-07-10 19:31:33',2,'2006-02-15 21:30:53'), - (3959,'2005-07-06 22:07:58',40,448,'2005-07-13 02:30:58',1,'2006-02-15 21:30:53'), - (3960,'2005-07-06 22:08:53',2090,594,'2005-07-07 23:21:53',2,'2006-02-15 21:30:53'), - (3961,'2005-07-06 22:11:43',4320,364,'2005-07-09 03:14:43',1,'2006-02-15 21:30:53'), - (3962,'2005-07-06 22:13:45',379,307,'2005-07-15 00:22:45',2,'2006-02-15 21:30:53'), - (3963,'2005-07-06 22:19:17',3912,111,'2005-07-15 01:22:17',2,'2006-02-15 21:30:53'), - (3964,'2005-07-06 22:23:02',1853,30,'2005-07-07 22:21:02',1,'2006-02-15 21:30:53'), - (3965,'2005-07-06 22:36:20',2863,243,'2005-07-09 17:45:20',1,'2006-02-15 21:30:53'), - (3966,'2005-07-06 22:38:49',556,495,'2005-07-07 23:33:49',1,'2006-02-15 21:30:53'), - (3967,'2005-07-06 22:45:10',2510,31,'2005-07-09 23:54:10',2,'2006-02-15 21:30:53'), - (3968,'2005-07-06 22:47:09',558,235,'2005-07-12 21:01:09',1,'2006-02-15 21:30:53'), - (3969,'2005-07-06 22:47:59',383,587,'2005-07-08 02:11:59',1,'2006-02-15 21:30:53'), - (3970,'2005-07-06 22:48:17',701,381,'2005-07-15 19:07:17',1,'2006-02-15 21:30:53'), - (3971,'2005-07-06 22:50:40',4415,473,'2005-07-08 01:02:40',1,'2006-02-15 21:30:53'), - (3972,'2005-07-06 22:53:57',1895,598,'2005-07-11 01:32:57',1,'2006-02-15 21:30:53'), - (3973,'2005-07-06 22:58:31',2625,592,'2005-07-16 03:27:31',2,'2006-02-15 21:30:53'), - (3974,'2005-07-06 22:59:16',4282,318,'2005-07-11 22:30:16',1,'2006-02-15 21:30:53'), - (3975,'2005-07-06 23:00:09',4343,545,'2005-07-10 01:39:09',2,'2006-02-15 21:30:53'), - (3976,'2005-07-06 23:00:20',2424,329,'2005-07-07 21:51:20',2,'2006-02-15 21:30:53'), - (3977,'2005-07-06 23:00:49',1284,449,'2005-07-15 00:41:49',1,'2006-02-15 21:30:53'), - (3978,'2005-07-06 23:04:33',4341,343,'2005-07-10 17:45:33',2,'2006-02-15 21:30:53'), - (3979,'2005-07-06 23:04:35',794,550,'2005-07-13 01:38:35',2,'2006-02-15 21:30:53'), - (3980,'2005-07-06 23:11:11',1845,475,'2005-07-14 18:22:11',1,'2006-02-15 21:30:53'), - (3981,'2005-07-06 23:12:12',842,375,'2005-07-13 01:47:12',2,'2006-02-15 21:30:53'), - (3982,'2005-07-06 23:14:16',4327,64,'2005-07-08 21:21:16',2,'2006-02-15 21:30:53'), - (3983,'2005-07-06 23:14:21',1261,6,'2005-07-12 17:55:21',2,'2006-02-15 21:30:53'), - (3984,'2005-07-06 23:22:36',2205,570,'2005-07-08 21:40:36',2,'2006-02-15 21:30:53'), - (3985,'2005-07-06 23:24:03',2096,307,'2005-07-10 00:20:03',2,'2006-02-15 21:30:53'), - (3986,'2005-07-06 23:25:13',3737,122,'2005-07-09 21:26:13',2,'2006-02-15 21:30:53'), - (3987,'2005-07-06 23:28:24',3104,270,'2005-07-15 00:52:24',1,'2006-02-15 21:30:53'), - (3988,'2005-07-06 23:30:42',2981,421,'2005-07-13 03:06:42',2,'2006-02-15 21:30:53'), - (3989,'2005-07-06 23:30:54',2366,213,'2005-07-12 01:28:54',1,'2006-02-15 21:30:53'), - (3990,'2005-07-06 23:32:44',2009,558,'2005-07-14 01:35:44',2,'2006-02-15 21:30:53'), - (3991,'2005-07-06 23:33:41',587,583,'2005-07-16 01:31:41',1,'2006-02-15 21:30:53'), - (3992,'2005-07-06 23:36:56',3219,448,'2005-07-15 03:13:56',1,'2006-02-15 21:30:53'), - (3993,'2005-07-06 23:37:06',1061,525,'2005-07-14 19:31:06',1,'2006-02-15 21:30:53'), - (3994,'2005-07-06 23:39:01',902,487,'2005-07-14 00:33:01',1,'2006-02-15 21:30:53'), - (3995,'2005-07-06 23:43:03',3990,128,'2005-07-13 04:13:03',2,'2006-02-15 21:30:53'), - (3996,'2005-07-06 23:46:43',2857,551,'2005-07-14 22:34:43',2,'2006-02-15 21:30:53'), - (3997,'2005-07-06 23:46:52',3895,52,'2005-07-14 05:39:52',2,'2006-02-15 21:30:53'), - (3998,'2005-07-06 23:49:20',1245,566,'2005-07-12 20:39:20',1,'2006-02-15 21:30:53'), - (3999,'2005-07-06 23:50:54',707,390,'2005-07-09 22:09:54',1,'2006-02-15 21:30:53'), - (4000,'2005-07-06 23:58:37',2122,95,'2005-07-08 21:43:37',1,'2006-02-15 21:30:53'), - (4001,'2005-07-07 00:07:00',864,120,'2005-07-13 21:27:00',2,'2006-02-15 21:30:53'), - (4002,'2005-07-07 00:08:18',2790,308,'2005-07-14 01:29:18',2,'2006-02-15 21:30:53'), - (4003,'2005-07-07 00:09:02',4054,8,'2005-07-08 04:27:02',1,'2006-02-15 21:30:53'), - (4004,'2005-07-07 00:20:51',667,574,'2005-07-11 18:55:51',2,'2006-02-15 21:30:53'), - (4005,'2005-07-07 00:22:26',3677,190,'2005-07-15 04:34:26',2,'2006-02-15 21:30:53'), - (4006,'2005-07-07 00:25:29',397,473,'2005-07-08 05:30:29',2,'2006-02-15 21:30:53'), - (4007,'2005-07-07 00:26:05',2071,285,'2005-07-15 19:53:05',1,'2006-02-15 21:30:53'), - (4008,'2005-07-07 00:26:43',1107,505,'2005-07-16 03:58:43',2,'2006-02-15 21:30:53'), - (4009,'2005-07-07 00:28:55',3607,394,'2005-07-10 00:37:55',1,'2006-02-15 21:30:53'), - (4010,'2005-07-07 00:47:00',4509,476,'2005-07-12 06:23:00',2,'2006-02-15 21:30:53'), - (4011,'2005-07-07 00:48:25',2052,20,'2005-07-13 06:30:25',2,'2006-02-15 21:30:53'), - (4012,'2005-07-07 00:56:09',1400,104,'2005-07-10 21:49:09',1,'2006-02-15 21:30:53'), - (4013,'2005-07-07 00:58:00',2344,475,'2005-07-15 19:42:00',2,'2006-02-15 21:30:53'), - (4014,'2005-07-07 00:58:54',583,510,'2005-07-12 02:40:54',1,'2006-02-15 21:30:53'), - (4015,'2005-07-07 00:59:46',3032,233,'2005-07-14 03:16:46',2,'2006-02-15 21:30:53'), - (4016,'2005-07-07 01:05:50',3318,335,'2005-07-09 05:59:50',1,'2006-02-15 21:30:53'), - (4017,'2005-07-07 01:08:18',3117,595,'2005-07-09 01:47:18',2,'2006-02-15 21:30:53'), - (4018,'2005-07-07 01:10:33',906,207,'2005-07-12 20:54:33',2,'2006-02-15 21:30:53'), - (4019,'2005-07-07 01:27:44',3200,294,'2005-07-10 21:30:44',1,'2006-02-15 21:30:53'), - (4020,'2005-07-07 01:42:22',3760,471,'2005-07-10 00:53:22',1,'2006-02-15 21:30:53'), - (4021,'2005-07-07 01:46:44',1676,315,'2005-07-12 00:16:44',2,'2006-02-15 21:30:53'), - (4022,'2005-07-07 01:50:06',3914,390,'2005-07-09 21:47:06',2,'2006-02-15 21:30:53'), - (4023,'2005-07-07 01:55:25',274,573,'2005-07-08 02:43:25',2,'2006-02-15 21:30:53'), - (4024,'2005-07-07 02:11:23',3976,448,'2005-07-11 02:00:23',1,'2006-02-15 21:30:53'), - (4025,'2005-07-07 02:13:24',3908,114,'2005-07-08 00:47:24',1,'2006-02-15 21:30:53'), - (4026,'2005-07-07 02:15:48',4142,251,'2005-07-14 04:15:48',2,'2006-02-15 21:30:53'), - (4027,'2005-07-07 02:19:01',56,116,'2005-07-10 01:12:01',1,'2006-02-15 21:30:53'), - (4028,'2005-07-07 02:19:14',1651,344,'2005-07-15 08:09:14',2,'2006-02-15 21:30:53'), - (4029,'2005-07-07 02:19:44',4075,518,'2005-07-15 02:30:44',2,'2006-02-15 21:30:53'), - (4030,'2005-07-07 02:25:42',1734,300,'2005-07-08 22:53:42',2,'2006-02-15 21:30:53'), - (4031,'2005-07-07 02:32:07',3094,143,'2005-07-14 06:01:07',2,'2006-02-15 21:30:53'), - (4032,'2005-07-07 02:34:13',2628,335,'2005-07-14 22:43:13',1,'2006-02-15 21:30:53'), - (4033,'2005-07-07 02:35:46',203,453,'2005-07-16 01:12:46',1,'2006-02-15 21:30:53'), - (4034,'2005-07-07 02:36:33',1666,354,'2005-07-09 08:32:33',2,'2006-02-15 21:30:53'), - (4035,'2005-07-07 02:45:02',3611,539,'2005-07-14 01:41:02',1,'2006-02-15 21:30:53'), - (4036,'2005-07-07 02:48:00',500,397,'2005-07-07 22:46:00',1,'2006-02-15 21:30:53'), - (4037,'2005-07-07 02:52:52',3903,594,'2005-07-16 00:09:52',1,'2006-02-15 21:30:53'), - (4038,'2005-07-07 02:52:53',1264,27,'2005-07-11 22:32:53',2,'2006-02-15 21:30:53'), - (4039,'2005-07-07 02:57:59',4050,290,'2005-07-12 03:44:59',2,'2006-02-15 21:30:53'), - (4040,'2005-07-07 03:02:40',3046,103,'2005-07-16 06:05:40',2,'2006-02-15 21:30:53'), - (4041,'2005-07-07 03:03:33',2217,445,'2005-07-09 07:57:33',2,'2006-02-15 21:30:53'), - (4042,'2005-07-07 03:06:40',50,10,'2005-07-10 02:37:40',1,'2006-02-15 21:30:53'), - (4043,'2005-07-07 03:09:50',3427,204,'2005-07-10 07:49:50',2,'2006-02-15 21:30:53'), - (4044,'2005-07-07 03:22:23',3263,94,'2005-07-13 03:23:23',1,'2006-02-15 21:30:53'), - (4045,'2005-07-07 03:26:14',1422,529,'2005-07-11 06:52:14',1,'2006-02-15 21:30:53'), - (4046,'2005-07-07 03:27:59',3518,491,'2005-07-14 01:14:59',1,'2006-02-15 21:30:53'), - (4047,'2005-07-07 03:28:49',3475,364,'2005-07-09 02:42:49',2,'2006-02-15 21:30:53'), - (4048,'2005-07-07 03:30:52',659,474,'2005-07-14 05:05:52',2,'2006-02-15 21:30:53'), - (4049,'2005-07-07 03:34:53',4172,79,'2005-07-15 04:10:53',2,'2006-02-15 21:30:53'), - (4050,'2005-07-07 03:35:33',104,528,'2005-07-15 03:11:33',1,'2006-02-15 21:30:53'), - (4051,'2005-07-07 03:37:28',2715,331,'2005-07-09 01:40:28',1,'2006-02-15 21:30:53'), - (4052,'2005-07-07 03:38:22',206,442,'2005-07-13 02:56:22',2,'2006-02-15 21:30:53'), - (4053,'2005-07-07 03:39:22',2889,377,'2005-07-09 22:32:22',1,'2006-02-15 21:30:53'), - (4054,'2005-07-07 03:42:07',3885,260,'2005-07-10 03:22:07',1,'2006-02-15 21:30:53'), - (4055,'2005-07-07 03:49:13',2561,513,'2005-07-11 03:15:13',2,'2006-02-15 21:30:53'), - (4056,'2005-07-07 03:57:36',4211,360,'2005-07-09 08:53:36',2,'2006-02-15 21:30:53'), - (4057,'2005-07-07 04:00:20',2838,141,'2005-07-12 08:14:20',1,'2006-02-15 21:30:53'), - (4058,'2005-07-07 04:02:50',3877,442,'2005-07-10 04:30:50',2,'2006-02-15 21:30:53'), - (4059,'2005-07-07 04:04:26',292,401,'2005-07-10 22:35:26',1,'2006-02-15 21:30:53'), - (4060,'2005-07-07 04:10:13',2697,211,'2005-07-13 07:44:13',1,'2006-02-15 21:30:53'), - (4061,'2005-07-07 04:13:35',62,70,'2005-07-10 23:58:35',2,'2006-02-15 21:30:53'), - (4062,'2005-07-07 04:22:27',1323,410,'2005-07-09 03:27:27',1,'2006-02-15 21:30:53'), - (4063,'2005-07-07 04:23:57',1452,331,'2005-07-14 23:35:57',2,'2006-02-15 21:30:53'), - (4064,'2005-07-07 04:29:20',1402,47,'2005-07-14 05:48:20',2,'2006-02-15 21:30:53'), - (4065,'2005-07-07 04:32:28',1339,26,'2005-07-12 08:30:28',1,'2006-02-15 21:30:53'), - (4066,'2005-07-07 04:34:09',1975,368,'2005-07-10 23:54:09',1,'2006-02-15 21:30:53'), - (4067,'2005-07-07 04:34:23',2945,469,'2005-07-16 04:04:23',1,'2006-02-15 21:30:53'), - (4068,'2005-07-07 04:34:38',4152,206,'2005-07-11 09:16:38',2,'2006-02-15 21:30:53'), - (4069,'2005-07-07 04:35:06',3361,570,'2005-07-10 23:59:06',2,'2006-02-15 21:30:53'), - (4070,'2005-07-07 04:37:09',2926,496,'2005-07-08 04:19:09',2,'2006-02-15 21:30:53'), - (4071,'2005-07-07 04:37:26',2883,209,'2005-07-13 06:45:26',2,'2006-02-15 21:30:53'), - (4072,'2005-07-07 04:48:02',3130,310,'2005-07-12 10:32:02',2,'2006-02-15 21:30:53'), - (4073,'2005-07-07 04:49:13',647,290,'2005-07-10 03:20:13',2,'2006-02-15 21:30:53'), - (4074,'2005-07-07 04:49:49',2347,412,'2005-07-12 04:51:49',2,'2006-02-15 21:30:53'), - (4075,'2005-07-07 04:51:44',1989,593,'2005-07-09 03:07:44',2,'2006-02-15 21:30:53'), - (4076,'2005-07-07 04:52:15',3148,329,'2005-07-13 23:22:15',1,'2006-02-15 21:30:53'), - (4077,'2005-07-07 04:53:40',2445,377,'2005-07-09 09:56:40',2,'2006-02-15 21:30:53'), - (4078,'2005-07-07 05:05:05',1671,522,'2005-07-10 05:39:05',1,'2006-02-15 21:30:53'), - (4079,'2005-07-07 05:06:27',2202,84,'2005-07-16 08:46:27',1,'2006-02-15 21:30:53'), - (4080,'2005-07-07 05:09:54',1364,148,'2005-07-11 23:58:54',1,'2006-02-15 21:30:53'), - (4081,'2005-07-07 05:10:08',1138,284,'2005-07-12 00:47:08',1,'2006-02-15 21:30:53'), - (4082,'2005-07-07 05:11:53',2904,108,'2005-07-12 00:55:53',1,'2006-02-15 21:30:53'), - (4083,'2005-07-07 05:13:15',3454,490,'2005-07-08 09:11:15',1,'2006-02-15 21:30:53'), - (4084,'2005-07-07 05:16:00',2588,441,'2005-07-15 09:23:00',1,'2006-02-15 21:30:53'), - (4085,'2005-07-07 05:25:39',1683,573,'2005-07-12 04:30:39',1,'2006-02-15 21:30:53'), - (4086,'2005-07-07 05:26:06',253,494,'2005-07-12 00:45:06',2,'2006-02-15 21:30:53'), - (4087,'2005-07-07 05:30:56',3066,433,'2005-07-16 10:20:56',1,'2006-02-15 21:30:53'), - (4088,'2005-07-07 05:31:55',234,66,'2005-07-15 07:35:55',1,'2006-02-15 21:30:53'), - (4089,'2005-07-07 05:45:59',3431,102,'2005-07-16 07:34:59',2,'2006-02-15 21:30:53'), - (4090,'2005-07-07 05:47:33',3096,67,'2005-07-08 04:25:33',2,'2006-02-15 21:30:53'), - (4091,'2005-07-07 05:53:38',3928,337,'2005-07-14 03:12:38',2,'2006-02-15 21:30:53'), - (4092,'2005-07-07 05:54:18',1721,246,'2005-07-16 09:14:18',1,'2006-02-15 21:30:53'), - (4093,'2005-07-07 05:54:50',1534,337,'2005-07-12 00:34:50',1,'2006-02-15 21:30:53'), - (4094,'2005-07-07 06:00:21',2412,517,'2005-07-10 03:24:21',2,'2006-02-15 21:30:53'), - (4095,'2005-07-07 06:01:48',2900,33,'2005-07-15 02:52:48',2,'2006-02-15 21:30:53'), - (4096,'2005-07-07 06:09:11',3911,403,'2005-07-08 09:17:11',2,'2006-02-15 21:30:53'), - (4097,'2005-07-07 06:10:55',2454,56,'2005-07-11 02:45:55',1,'2006-02-15 21:30:53'), - (4098,'2005-07-07 06:14:51',2865,35,'2005-07-14 06:51:51',2,'2006-02-15 21:30:53'), - (4099,'2005-07-07 06:20:33',1930,76,'2005-07-16 08:39:33',1,'2006-02-15 21:30:53'), - (4100,'2005-07-07 06:20:52',2346,332,'2005-07-15 05:58:52',2,'2006-02-15 21:30:53'), - (4101,'2005-07-07 06:25:11',2891,588,'2005-07-12 07:44:11',2,'2006-02-15 21:30:53'), - (4102,'2005-07-07 06:25:19',3998,135,'2005-07-11 00:50:19',2,'2006-02-15 21:30:53'), - (4103,'2005-07-07 06:25:28',3632,91,'2005-07-12 11:18:28',1,'2006-02-15 21:30:53'), - (4104,'2005-07-07 06:25:41',1066,338,'2005-07-13 04:18:41',2,'2006-02-15 21:30:53'), - (4105,'2005-07-07 06:31:00',439,423,'2005-07-09 03:52:00',1,'2006-02-15 21:30:53'), - (4106,'2005-07-07 06:33:35',4083,563,'2005-07-13 04:03:35',1,'2006-02-15 21:30:53'), - (4107,'2005-07-07 06:36:32',4232,206,'2005-07-14 03:36:32',1,'2006-02-15 21:30:53'), - (4108,'2005-07-07 06:38:31',4535,66,'2005-07-08 10:44:31',1,'2006-02-15 21:30:53'), - (4109,'2005-07-07 06:39:43',532,517,'2005-07-10 06:30:43',1,'2006-02-15 21:30:53'), - (4110,'2005-07-07 06:44:27',226,486,'2005-07-12 05:43:27',2,'2006-02-15 21:30:53'), - (4111,'2005-07-07 06:47:56',1009,515,'2005-07-13 02:13:56',1,'2006-02-15 21:30:53'), - (4112,'2005-07-07 06:49:09',3284,533,'2005-07-16 06:53:09',2,'2006-02-15 21:30:53'), - (4113,'2005-07-07 06:49:52',915,170,'2005-07-12 04:00:52',1,'2006-02-15 21:30:53'), - (4114,'2005-07-07 06:51:12',4109,426,'2005-07-15 01:36:12',1,'2006-02-15 21:30:53'), - (4115,'2005-07-07 06:52:23',102,371,'2005-07-14 06:12:23',2,'2006-02-15 21:30:53'), - (4116,'2005-07-07 06:56:13',666,352,'2005-07-11 11:13:13',2,'2006-02-15 21:30:53'), - (4117,'2005-07-07 06:58:14',780,158,'2005-07-16 05:28:14',1,'2006-02-15 21:30:53'), - (4118,'2005-07-07 07:03:30',355,224,'2005-07-08 09:20:30',1,'2006-02-15 21:30:53'), - (4119,'2005-07-07 07:06:03',2078,319,'2005-07-13 01:56:03',2,'2006-02-15 21:30:53'), - (4120,'2005-07-07 07:07:03',987,559,'2005-07-16 04:07:03',1,'2006-02-15 21:30:53'), - (4121,'2005-07-07 07:13:50',2429,176,'2005-07-13 04:32:50',2,'2006-02-15 21:30:53'), - (4122,'2005-07-07 07:15:35',273,31,'2005-07-14 12:10:35',1,'2006-02-15 21:30:53'), - (4123,'2005-07-07 07:16:19',2707,469,'2005-07-10 05:23:19',1,'2006-02-15 21:30:53'), - (4124,'2005-07-07 07:19:54',2856,330,'2005-07-11 05:54:54',1,'2006-02-15 21:30:53'), - (4125,'2005-07-07 07:20:29',4131,269,'2005-07-15 06:41:29',2,'2006-02-15 21:30:53'), - (4126,'2005-07-07 07:24:11',3018,163,'2005-07-15 07:31:11',1,'2006-02-15 21:30:53'), - (4127,'2005-07-07 07:26:19',1774,15,'2005-07-14 07:50:19',2,'2006-02-15 21:30:53'), - (4128,'2005-07-07 07:35:25',3563,492,'2005-07-14 08:13:25',1,'2006-02-15 21:30:53'), - (4129,'2005-07-07 07:37:03',1413,592,'2005-07-14 13:31:03',1,'2006-02-15 21:30:53'), - (4130,'2005-07-07 07:51:53',4170,256,'2005-07-11 12:41:53',2,'2006-02-15 21:30:53'), - (4131,'2005-07-07 07:53:18',2621,58,'2005-07-08 04:48:18',1,'2006-02-15 21:30:53'), - (4132,'2005-07-07 08:06:07',993,154,'2005-07-10 14:04:07',1,'2006-02-15 21:30:53'), - (4133,'2005-07-07 08:12:26',3672,488,'2005-07-16 03:43:26',1,'2006-02-15 21:30:53'), - (4134,'2005-07-07 08:14:24',2917,183,'2005-07-09 10:42:24',1,'2006-02-15 21:30:53'), - (4135,'2005-07-07 08:15:03',3384,36,'2005-07-11 10:56:03',1,'2006-02-15 21:30:53'), - (4136,'2005-07-07 08:15:52',3461,203,'2005-07-10 04:22:52',2,'2006-02-15 21:30:53'), - (4137,'2005-07-07 08:17:06',2065,485,'2005-07-11 10:52:06',2,'2006-02-15 21:30:53'), - (4138,'2005-07-07 08:17:13',1588,317,'2005-07-14 05:18:13',2,'2006-02-15 21:30:53'), - (4139,'2005-07-07 08:17:35',2094,509,'2005-07-14 14:01:35',2,'2006-02-15 21:30:53'), - (4140,'2005-07-07 08:19:10',1897,190,'2005-07-14 07:27:10',2,'2006-02-15 21:30:53'), - (4141,'2005-07-07 08:19:20',1904,456,'2005-07-11 06:54:20',1,'2006-02-15 21:30:53'), - (4142,'2005-07-07 08:19:45',4045,492,'2005-07-08 13:55:45',1,'2006-02-15 21:30:53'), - (4143,'2005-07-07 08:22:07',597,238,'2005-07-13 11:42:07',1,'2006-02-15 21:30:53'), - (4144,'2005-07-07 08:25:44',550,431,'2005-07-16 13:10:44',2,'2006-02-15 21:30:53'), - (4145,'2005-07-07 08:26:39',3050,592,'2005-07-16 12:54:39',2,'2006-02-15 21:30:53'), - (4146,'2005-07-07 08:30:16',176,411,'2005-07-12 07:52:16',1,'2006-02-15 21:30:53'), - (4147,'2005-07-07 08:32:12',2776,274,'2005-07-12 10:10:12',2,'2006-02-15 21:30:53'), - (4148,'2005-07-07 08:36:58',260,59,'2005-07-09 05:51:58',1,'2006-02-15 21:30:53'), - (4149,'2005-07-07 08:40:17',3028,50,'2005-07-10 02:58:17',2,'2006-02-15 21:30:53'), - (4150,'2005-07-07 08:43:22',4424,188,'2005-07-08 05:21:22',2,'2006-02-15 21:30:53'), - (4151,'2005-07-07 08:49:02',4564,428,'2005-07-11 05:19:02',1,'2006-02-15 21:30:53'), - (4152,'2005-07-07 08:50:33',1761,89,'2005-07-14 10:56:33',2,'2006-02-15 21:30:53'), - (4153,'2005-07-07 08:53:08',2185,299,'2005-07-11 05:09:08',2,'2006-02-15 21:30:53'), - (4154,'2005-07-07 08:58:23',191,594,'2005-07-14 03:16:23',2,'2006-02-15 21:30:53'), - (4155,'2005-07-07 09:00:49',212,548,'2005-07-13 10:59:49',2,'2006-02-15 21:30:53'), - (4156,'2005-07-07 09:03:51',1259,585,'2005-07-12 09:46:51',2,'2006-02-15 21:30:53'), - (4157,'2005-07-07 09:04:26',304,183,'2005-07-08 09:55:26',1,'2006-02-15 21:30:53'), - (4158,'2005-07-07 09:05:42',291,433,'2005-07-09 04:28:42',1,'2006-02-15 21:30:53'), - (4159,'2005-07-07 09:10:57',3625,62,'2005-07-09 10:19:57',2,'2006-02-15 21:30:53'), - (4160,'2005-07-07 09:13:17',1909,326,'2005-07-15 11:50:17',2,'2006-02-15 21:30:53'), - (4161,'2005-07-07 09:15:11',4021,216,'2005-07-15 06:59:11',1,'2006-02-15 21:30:53'), - (4162,'2005-07-07 09:17:26',745,571,'2005-07-15 10:15:26',2,'2006-02-15 21:30:53'), - (4163,'2005-07-07 09:19:28',3176,376,'2005-07-10 06:47:28',2,'2006-02-15 21:30:53'), - (4164,'2005-07-07 09:20:11',3133,295,'2005-07-14 09:35:11',1,'2006-02-15 21:30:53'), - (4165,'2005-07-07 09:23:27',3845,66,'2005-07-15 06:00:27',1,'2006-02-15 21:30:53'), - (4166,'2005-07-07 09:33:30',3267,376,'2005-07-16 06:06:30',1,'2006-02-15 21:30:53'), - (4167,'2005-07-07 09:37:08',3771,175,'2005-07-16 06:16:08',2,'2006-02-15 21:30:53'), - (4168,'2005-07-07 09:37:24',1872,132,'2005-07-09 14:32:24',2,'2006-02-15 21:30:53'), - (4169,'2005-07-07 09:39:18',3360,580,'2005-07-11 13:43:18',1,'2006-02-15 21:30:53'), - (4170,'2005-07-07 09:44:36',2665,99,'2005-07-13 14:10:36',1,'2006-02-15 21:30:53'), - (4171,'2005-07-07 09:49:04',4199,476,'2005-07-14 03:58:04',2,'2006-02-15 21:30:53'), - (4172,'2005-07-07 09:49:09',1158,309,'2005-07-11 15:14:09',2,'2006-02-15 21:30:53'), - (4173,'2005-07-07 09:57:26',4272,320,'2005-07-10 04:05:26',1,'2006-02-15 21:30:53'), - (4174,'2005-07-07 09:59:49',3814,182,'2005-07-11 13:34:49',1,'2006-02-15 21:30:53'), - (4175,'2005-07-07 10:02:03',1979,8,'2005-07-10 06:09:03',2,'2006-02-15 21:30:53'), - (4176,'2005-07-07 10:03:34',2745,420,'2005-07-16 08:43:34',1,'2006-02-15 21:30:53'), - (4177,'2005-07-07 10:12:36',4106,317,'2005-07-15 15:48:36',2,'2006-02-15 21:30:53'), - (4178,'2005-07-07 10:14:31',2898,513,'2005-07-12 09:38:31',2,'2006-02-15 21:30:53'), - (4179,'2005-07-07 10:17:15',559,75,'2005-07-10 05:12:15',2,'2006-02-15 21:30:53'), - (4180,'2005-07-07 10:23:25',1704,3,'2005-07-10 13:18:25',1,'2006-02-15 21:30:53'), - (4181,'2005-07-07 10:27:54',3725,598,'2005-07-13 06:09:54',1,'2006-02-15 21:30:53'), - (4182,'2005-07-07 10:28:00',3080,256,'2005-07-08 12:50:00',1,'2006-02-15 21:30:53'), - (4183,'2005-07-07 10:28:33',3342,479,'2005-07-15 12:29:33',1,'2006-02-15 21:30:53'), - (4184,'2005-07-07 10:30:08',1022,468,'2005-07-14 12:56:08',1,'2006-02-15 21:30:53'), - (4185,'2005-07-07 10:31:05',2425,395,'2005-07-13 05:30:05',2,'2006-02-15 21:30:53'), - (4186,'2005-07-07 10:32:25',3910,185,'2005-07-15 06:22:25',1,'2006-02-15 21:30:53'), - (4187,'2005-07-07 10:41:31',2,161,'2005-07-11 06:25:31',1,'2006-02-15 21:30:53'), - (4188,'2005-07-07 10:45:29',3243,391,'2005-07-16 09:39:29',1,'2006-02-15 21:30:53'), - (4189,'2005-07-07 10:51:07',1492,386,'2005-07-14 14:46:07',2,'2006-02-15 21:30:53'), - (4190,'2005-07-07 10:52:39',826,349,'2005-07-11 13:19:39',1,'2006-02-15 21:30:53'), - (4191,'2005-07-07 10:56:14',2475,390,'2005-07-11 09:56:14',1,'2006-02-15 21:30:53'), - (4192,'2005-07-07 10:57:06',624,558,'2005-07-13 16:30:06',1,'2006-02-15 21:30:53'), - (4193,'2005-07-07 10:57:21',3791,445,'2005-07-09 07:33:21',2,'2006-02-15 21:30:53'), - (4194,'2005-07-07 10:59:39',1753,153,'2005-07-15 09:34:39',1,'2006-02-15 21:30:53'), - (4195,'2005-07-07 11:00:02',450,455,'2005-07-14 16:54:02',1,'2006-02-15 21:30:53'), - (4196,'2005-07-07 11:06:33',3407,564,'2005-07-14 13:46:33',1,'2006-02-15 21:30:53'), - (4197,'2005-07-07 11:07:52',2515,324,'2005-07-10 10:19:52',1,'2006-02-15 21:30:53'), - (4198,'2005-07-07 11:08:11',333,247,'2005-07-16 15:29:11',1,'2006-02-15 21:30:53'), - (4199,'2005-07-07 11:13:07',2120,259,'2005-07-11 07:17:07',1,'2006-02-15 21:30:53'), - (4200,'2005-07-07 11:15:11',1097,292,'2005-07-11 11:46:11',2,'2006-02-15 21:30:53'), - (4201,'2005-07-07 11:19:51',3682,145,'2005-07-16 08:48:51',1,'2006-02-15 21:30:53'), - (4202,'2005-07-07 11:23:48',2274,38,'2005-07-16 16:32:48',1,'2006-02-15 21:30:53'), - (4203,'2005-07-07 11:24:14',2743,189,'2005-07-11 16:26:14',1,'2006-02-15 21:30:53'), - (4204,'2005-07-07 11:24:18',1513,569,'2005-07-15 12:42:18',1,'2006-02-15 21:30:53'), - (4205,'2005-07-07 11:25:39',3922,486,'2005-07-11 06:12:39',1,'2006-02-15 21:30:53'), - (4206,'2005-07-07 11:32:16',1557,448,'2005-07-14 13:07:16',2,'2006-02-15 21:30:53'), - (4207,'2005-07-07 11:32:45',1119,588,'2005-07-14 05:49:45',2,'2006-02-15 21:30:53'), - (4208,'2005-07-07 11:34:22',3617,441,'2005-07-09 08:25:22',1,'2006-02-15 21:30:53'), - (4209,'2005-07-07 11:35:08',2010,100,'2005-07-10 10:58:08',1,'2006-02-15 21:30:53'), - (4210,'2005-07-07 11:36:20',1972,581,'2005-07-16 12:38:20',1,'2006-02-15 21:30:53'), - (4211,'2005-07-07 11:50:41',2001,214,'2005-07-09 13:58:41',2,'2006-02-15 21:30:53'), - (4212,'2005-07-07 11:53:14',1825,574,'2005-07-09 07:12:14',1,'2006-02-15 21:30:53'), - (4213,'2005-07-07 11:53:49',705,103,'2005-07-13 07:51:49',1,'2006-02-15 21:30:53'), - (4214,'2005-07-07 11:54:33',2534,484,'2005-07-08 10:49:33',2,'2006-02-15 21:30:53'), - (4215,'2005-07-07 12:00:52',1239,22,'2005-07-11 15:14:52',2,'2006-02-15 21:30:53'), - (4216,'2005-07-07 12:01:34',1216,467,'2005-07-08 09:59:34',1,'2006-02-15 21:30:53'), - (4217,'2005-07-07 12:08:59',3186,228,'2005-07-11 15:07:59',2,'2006-02-15 21:30:53'), - (4218,'2005-07-07 12:10:24',152,497,'2005-07-15 16:09:24',1,'2006-02-15 21:30:53'), - (4219,'2005-07-07 12:11:22',2800,16,'2005-07-11 11:05:22',1,'2006-02-15 21:30:53'), - (4220,'2005-07-07 12:12:36',821,513,'2005-07-10 13:37:36',1,'2006-02-15 21:30:53'), - (4221,'2005-07-07 12:18:57',4567,143,'2005-07-12 09:47:57',2,'2006-02-15 21:30:53'), - (4222,'2005-07-07 12:20:21',2053,467,'2005-07-11 11:09:21',2,'2006-02-15 21:30:53'), - (4223,'2005-07-07 12:23:54',2407,405,'2005-07-10 14:46:54',2,'2006-02-15 21:30:53'), - (4224,'2005-07-07 12:24:21',3659,419,'2005-07-10 11:48:21',1,'2006-02-15 21:30:53'), - (4225,'2005-07-07 12:24:37',1766,377,'2005-07-12 06:47:37',2,'2006-02-15 21:30:53'), - (4226,'2005-07-07 12:37:56',1692,57,'2005-07-09 08:48:56',2,'2006-02-15 21:30:53'), - (4227,'2005-07-07 12:41:36',4186,78,'2005-07-15 12:33:36',1,'2006-02-15 21:30:53'), - (4228,'2005-07-07 12:42:02',1020,38,'2005-07-12 10:52:02',1,'2006-02-15 21:30:53'), - (4229,'2005-07-07 12:43:23',953,106,'2005-07-13 15:00:23',2,'2006-02-15 21:30:53'), - (4230,'2005-07-07 12:46:47',353,205,'2005-07-15 06:52:47',1,'2006-02-15 21:30:53'), - (4231,'2005-07-07 12:48:19',3522,194,'2005-07-13 18:45:19',1,'2006-02-15 21:30:53'), - (4232,'2005-07-07 12:49:12',3841,347,'2005-07-15 16:45:12',1,'2006-02-15 21:30:53'), - (4233,'2005-07-07 13:00:20',1849,488,'2005-07-13 16:37:20',1,'2006-02-15 21:30:53'), - (4234,'2005-07-07 13:01:35',1179,195,'2005-07-15 13:05:35',1,'2006-02-15 21:30:53'), - (4235,'2005-07-07 13:05:52',3525,86,'2005-07-10 12:17:52',2,'2006-02-15 21:30:53'), - (4236,'2005-07-07 13:12:07',642,213,'2005-07-08 15:00:07',2,'2006-02-15 21:30:53'), - (4237,'2005-07-07 13:16:55',3773,477,'2005-07-15 16:33:55',1,'2006-02-15 21:30:53'), - (4238,'2005-07-07 13:22:20',3024,7,'2005-07-10 07:44:20',2,'2006-02-15 21:30:53'), - (4239,'2005-07-07 13:23:17',3866,122,'2005-07-13 17:49:17',1,'2006-02-15 21:30:53'), - (4240,'2005-07-07 13:33:12',1024,65,'2005-07-13 12:28:12',1,'2006-02-15 21:30:53'), - (4241,'2005-07-07 13:39:00',4154,595,'2005-07-12 17:49:00',2,'2006-02-15 21:30:53'), - (4242,'2005-07-07 13:39:01',3626,286,'2005-07-12 18:29:01',1,'2006-02-15 21:30:53'), - (4243,'2005-07-07 13:39:58',4559,339,'2005-07-12 19:27:58',1,'2006-02-15 21:30:53'), - (4244,'2005-07-07 13:41:58',592,581,'2005-07-09 15:32:58',2,'2006-02-15 21:30:53'), - (4245,'2005-07-07 13:48:33',3743,91,'2005-07-10 09:54:33',1,'2006-02-15 21:30:53'), - (4246,'2005-07-07 13:49:03',1141,411,'2005-07-09 13:01:03',1,'2006-02-15 21:30:53'), - (4247,'2005-07-07 13:51:54',808,539,'2005-07-10 09:43:54',2,'2006-02-15 21:30:53'), - (4248,'2005-07-07 13:59:20',773,161,'2005-07-14 15:18:20',2,'2006-02-15 21:30:53'), - (4249,'2005-07-07 14:05:17',4185,111,'2005-07-10 09:21:17',2,'2006-02-15 21:30:53'), - (4250,'2005-07-07 14:08:11',2556,423,'2005-07-13 08:09:11',2,'2006-02-15 21:30:53'), - (4251,'2005-07-07 14:11:55',3541,367,'2005-07-16 14:01:55',2,'2006-02-15 21:30:53'), - (4252,'2005-07-07 14:13:05',474,154,'2005-07-09 14:17:05',1,'2006-02-15 21:30:53'), - (4253,'2005-07-07 14:13:13',3355,157,'2005-07-16 18:55:13',2,'2006-02-15 21:30:53'), - (4254,'2005-07-07 14:13:52',3957,529,'2005-07-12 10:39:52',2,'2006-02-15 21:30:53'), - (4255,'2005-07-07 14:14:13',749,10,'2005-07-12 18:32:13',1,'2006-02-15 21:30:53'), - (4256,'2005-07-07 14:14:36',1386,129,'2005-07-10 09:41:36',1,'2006-02-15 21:30:53'), - (4257,'2005-07-07 14:18:41',3927,553,'2005-07-08 14:58:41',1,'2006-02-15 21:30:53'), - (4258,'2005-07-07 14:20:59',1562,492,'2005-07-16 10:03:59',1,'2006-02-15 21:30:53'), - (4259,'2005-07-07 14:22:18',4378,467,'2005-07-11 19:38:18',1,'2006-02-15 21:30:53'), - (4260,'2005-07-07 14:22:45',4575,305,'2005-07-08 15:10:45',2,'2006-02-15 21:30:53'), - (4261,'2005-07-07 14:23:56',1405,496,'2005-07-13 15:26:56',1,'2006-02-15 21:30:53'), - (4262,'2005-07-07 14:24:30',3122,29,'2005-07-14 13:12:30',1,'2006-02-15 21:30:53'), - (4263,'2005-07-07 14:24:44',2975,16,'2005-07-13 18:22:44',1,'2006-02-15 21:30:53'), - (4264,'2005-07-07 14:25:28',3499,406,'2005-07-08 08:49:28',2,'2006-02-15 21:30:53'), - (4265,'2005-07-07 14:27:51',1685,69,'2005-07-12 19:55:51',2,'2006-02-15 21:30:53'), - (4266,'2005-07-07 14:34:50',1578,509,'2005-07-08 09:23:50',2,'2006-02-15 21:30:53'), - (4267,'2005-07-07 14:35:30',136,410,'2005-07-11 10:41:30',1,'2006-02-15 21:30:53'), - (4268,'2005-07-07 14:36:05',432,80,'2005-07-16 14:36:05',1,'2006-02-15 21:30:53'), - (4269,'2005-07-07 14:38:33',415,496,'2005-07-09 10:27:33',1,'2006-02-15 21:30:53'), - (4270,'2005-07-07 14:38:41',183,210,'2005-07-10 19:07:41',2,'2006-02-15 21:30:53'), - (4271,'2005-07-07 14:38:52',533,150,'2005-07-15 12:05:52',1,'2006-02-15 21:30:53'), - (4272,'2005-07-07 14:39:20',488,120,'2005-07-13 08:57:20',2,'2006-02-15 21:30:53'), - (4273,'2005-07-07 14:40:22',4163,159,'2005-07-13 09:58:22',2,'2006-02-15 21:30:53'), - (4274,'2005-07-07 14:42:04',787,26,'2005-07-13 20:23:04',1,'2006-02-15 21:30:53'), - (4275,'2005-07-07 14:43:51',1167,393,'2005-07-15 18:04:51',2,'2006-02-15 21:30:53'), - (4276,'2005-07-07 14:50:59',221,366,'2005-07-09 15:42:59',2,'2006-02-15 21:30:53'), - (4277,'2005-07-07 14:52:12',1983,106,'2005-07-09 13:10:12',1,'2006-02-15 21:30:53'), - (4278,'2005-07-07 14:53:24',3693,6,'2005-07-13 14:21:24',2,'2006-02-15 21:30:53'), - (4279,'2005-07-07 15:01:53',581,335,'2005-07-08 09:43:53',1,'2006-02-15 21:30:53'), - (4280,'2005-07-07 15:09:31',1115,593,'2005-07-13 14:47:31',1,'2006-02-15 21:30:53'), - (4281,'2005-07-07 15:17:50',1182,321,'2005-07-08 11:42:50',2,'2006-02-15 21:30:53'), - (4282,'2005-07-07 15:26:31',3134,25,'2005-07-11 14:27:31',1,'2006-02-15 21:30:53'), - (4283,'2005-07-07 15:29:35',2807,477,'2005-07-11 17:12:35',1,'2006-02-15 21:30:53'), - (4284,'2005-07-07 15:31:57',1313,521,'2005-07-09 10:20:57',2,'2006-02-15 21:30:53'), - (4285,'2005-07-07 15:34:35',511,308,'2005-07-15 09:43:35',2,'2006-02-15 21:30:53'), - (4286,'2005-07-07 15:36:44',4496,111,'2005-07-11 13:04:44',2,'2006-02-15 21:30:53'), - (4287,'2005-07-07 15:37:31',3558,94,'2005-07-16 19:59:31',2,'2006-02-15 21:30:53'), - (4288,'2005-07-07 15:38:25',1508,64,'2005-07-13 16:23:25',2,'2006-02-15 21:30:53'), - (4289,'2005-07-07 15:45:58',3172,231,'2005-07-09 11:11:58',2,'2006-02-15 21:30:53'), - (4290,'2005-07-07 15:47:10',4174,277,'2005-07-15 15:03:10',1,'2006-02-15 21:30:53'), - (4291,'2005-07-07 15:47:47',2074,298,'2005-07-10 11:45:47',1,'2006-02-15 21:30:53'), - (4292,'2005-07-07 15:48:38',3084,401,'2005-07-15 17:53:38',1,'2006-02-15 21:30:53'), - (4293,'2005-07-07 15:53:47',984,221,'2005-07-10 18:11:47',1,'2006-02-15 21:30:53'), - (4294,'2005-07-07 15:56:23',2845,41,'2005-07-15 14:50:23',2,'2006-02-15 21:30:53'), - (4295,'2005-07-07 16:08:51',2490,319,'2005-07-13 13:06:51',2,'2006-02-15 21:30:53'), - (4296,'2005-07-07 16:16:03',977,407,'2005-07-08 20:16:03',2,'2006-02-15 21:30:53'), - (4297,'2005-07-07 16:24:09',882,141,'2005-07-13 15:08:09',2,'2006-02-15 21:30:53'), - (4298,'2005-07-07 16:27:25',1055,560,'2005-07-12 18:20:25',1,'2006-02-15 21:30:53'), - (4299,'2005-07-07 16:33:48',870,80,'2005-07-16 11:48:48',1,'2006-02-15 21:30:53'), - (4300,'2005-07-07 16:36:16',1189,38,'2005-07-10 13:59:16',2,'2006-02-15 21:30:53'), - (4301,'2005-07-07 16:37:23',1630,440,'2005-07-11 18:05:23',2,'2006-02-15 21:30:53'), - (4302,'2005-07-07 16:47:53',3669,332,'2005-07-16 22:22:53',2,'2006-02-15 21:30:53'), - (4303,'2005-07-07 16:57:32',818,108,'2005-07-14 17:42:32',2,'2006-02-15 21:30:53'), - (4304,'2005-07-07 17:01:19',3382,165,'2005-07-12 22:47:19',2,'2006-02-15 21:30:53'), - (4305,'2005-07-07 17:07:11',3926,240,'2005-07-08 16:15:11',2,'2006-02-15 21:30:53'), - (4306,'2005-07-07 17:12:32',1219,210,'2005-07-16 11:24:32',2,'2006-02-15 21:30:53'), - (4307,'2005-07-07 17:20:39',2827,394,'2005-07-16 14:42:39',1,'2006-02-15 21:30:53'), - (4308,'2005-07-07 17:29:16',1482,168,'2005-07-11 21:47:16',1,'2006-02-15 21:30:53'), - (4309,'2005-07-07 17:29:41',3549,209,'2005-07-14 22:22:41',2,'2006-02-15 21:30:53'), - (4310,'2005-07-07 17:30:56',3842,390,'2005-07-12 13:19:56',2,'2006-02-15 21:30:53'), - (4311,'2005-07-07 17:31:14',2985,498,'2005-07-11 19:21:14',2,'2006-02-15 21:30:53'), - (4312,'2005-07-07 17:34:59',3870,97,'2005-07-09 17:45:59',2,'2006-02-15 21:30:53'), - (4313,'2005-07-07 17:36:56',91,29,'2005-07-13 12:00:56',1,'2006-02-15 21:30:53'), - (4314,'2005-07-07 17:38:31',539,184,'2005-07-09 20:24:31',1,'2006-02-15 21:30:53'), - (4315,'2005-07-07 17:40:26',1472,195,'2005-07-09 22:58:26',2,'2006-02-15 21:30:53'), - (4316,'2005-07-07 17:44:22',517,301,'2005-07-14 15:12:22',2,'2006-02-15 21:30:53'), - (4317,'2005-07-07 17:44:49',2234,110,'2005-07-08 21:48:49',2,'2006-02-15 21:30:53'), - (4318,'2005-07-07 17:47:50',1607,321,'2005-07-14 12:15:50',2,'2006-02-15 21:30:53'), - (4319,'2005-07-07 17:50:27',3389,25,'2005-07-10 13:53:27',2,'2006-02-15 21:30:53'), - (4320,'2005-07-07 17:51:59',3437,376,'2005-07-13 18:39:59',1,'2006-02-15 21:30:53'), - (4321,'2005-07-07 17:52:38',612,91,'2005-07-11 23:37:38',1,'2006-02-15 21:30:53'), - (4322,'2005-07-07 17:54:37',1522,568,'2005-07-14 13:56:37',1,'2006-02-15 21:30:53'), - (4323,'2005-07-07 17:55:53',1287,336,'2005-07-13 16:43:53',2,'2006-02-15 21:30:53'), - (4324,'2005-07-07 17:57:56',952,226,'2005-07-13 22:34:56',1,'2006-02-15 21:30:53'), - (4325,'2005-07-07 17:59:24',3728,373,'2005-07-16 17:10:24',2,'2006-02-15 21:30:53'), - (4326,'2005-07-07 18:01:22',4037,331,'2005-07-16 15:45:22',1,'2006-02-15 21:30:53'), - (4327,'2005-07-07 18:01:39',860,73,'2005-07-12 22:40:39',1,'2006-02-15 21:30:53'), - (4328,'2005-07-07 18:03:17',2174,264,'2005-07-14 16:14:17',1,'2006-02-15 21:30:53'), - (4329,'2005-07-07 18:04:16',638,504,'2005-07-15 17:58:16',2,'2006-02-15 21:30:53'), - (4330,'2005-07-07 18:09:41',2408,408,'2005-07-14 22:05:41',1,'2006-02-15 21:30:53'), - (4331,'2005-07-07 18:22:30',419,535,'2005-07-13 18:20:30',1,'2006-02-15 21:30:53'), - (4332,'2005-07-07 18:25:26',1714,137,'2005-07-16 15:05:26',1,'2006-02-15 21:30:53'), - (4333,'2005-07-07 18:31:50',76,113,'2005-07-08 21:26:50',1,'2006-02-15 21:30:53'), - (4334,'2005-07-07 18:32:04',3021,210,'2005-07-08 16:19:04',1,'2006-02-15 21:30:53'), - (4335,'2005-07-07 18:33:57',1332,375,'2005-07-11 13:23:57',1,'2006-02-15 21:30:53'), - (4336,'2005-07-07 18:34:36',482,532,'2005-07-10 17:58:36',2,'2006-02-15 21:30:53'), - (4337,'2005-07-07 18:36:37',2313,464,'2005-07-14 14:59:37',2,'2006-02-15 21:30:53'), - (4338,'2005-07-07 18:39:56',3152,581,'2005-07-12 21:03:56',1,'2006-02-15 21:30:53'), - (4339,'2005-07-07 18:41:42',3215,130,'2005-07-08 13:00:42',1,'2006-02-15 21:30:53'), - (4340,'2005-07-07 18:41:46',3919,227,'2005-07-16 21:27:46',1,'2006-02-15 21:30:53'), - (4341,'2005-07-07 18:44:23',4523,124,'2005-07-15 18:13:23',1,'2006-02-15 21:30:53'), - (4342,'2005-07-07 18:47:03',1355,120,'2005-07-09 21:59:03',2,'2006-02-15 21:30:53'), - (4343,'2005-07-07 18:48:54',1926,293,'2005-07-12 15:19:54',1,'2006-02-15 21:30:53'), - (4344,'2005-07-07 18:50:47',1185,99,'2005-07-12 16:38:47',2,'2006-02-15 21:30:53'), - (4345,'2005-07-07 18:52:57',2235,225,'2005-07-15 21:24:57',2,'2006-02-15 21:30:53'), - (4346,'2005-07-07 18:58:45',1906,520,'2005-07-10 16:37:45',1,'2006-02-15 21:30:53'), - (4347,'2005-07-07 18:58:57',1964,344,'2005-07-14 16:35:57',2,'2006-02-15 21:30:53'), - (4348,'2005-07-07 19:02:05',1948,452,'2005-07-09 20:51:05',2,'2006-02-15 21:30:53'), - (4349,'2005-07-07 19:02:37',3430,182,'2005-07-09 17:25:37',2,'2006-02-15 21:30:53'), - (4350,'2005-07-07 19:02:41',2223,299,'2005-07-09 15:27:41',1,'2006-02-15 21:30:53'), - (4351,'2005-07-07 19:04:24',3567,382,'2005-07-14 00:03:24',2,'2006-02-15 21:30:53'), - (4352,'2005-07-07 19:15:58',2636,249,'2005-07-16 20:22:58',2,'2006-02-15 21:30:53'), - (4353,'2005-07-07 19:19:05',368,452,'2005-07-13 13:40:05',1,'2006-02-15 21:30:53'), - (4354,'2005-07-07 19:21:02',4423,208,'2005-07-15 17:03:02',2,'2006-02-15 21:30:53'), - (4355,'2005-07-07 19:21:19',4557,438,'2005-07-09 00:55:19',2,'2006-02-15 21:30:53'), - (4356,'2005-07-07 19:21:22',1907,318,'2005-07-16 15:57:22',1,'2006-02-15 21:30:53'), - (4357,'2005-07-07 19:24:39',3413,103,'2005-07-12 00:11:39',1,'2006-02-15 21:30:53'), - (4358,'2005-07-07 19:27:04',3136,446,'2005-07-14 23:46:04',1,'2006-02-15 21:30:53'), - (4359,'2005-07-07 19:30:20',3222,282,'2005-07-09 13:34:20',1,'2006-02-15 21:30:53'), - (4360,'2005-07-07 19:31:12',1811,92,'2005-07-10 23:11:12',2,'2006-02-15 21:30:53'), - (4361,'2005-07-07 19:33:23',116,425,'2005-07-12 22:36:23',1,'2006-02-15 21:30:53'), - (4362,'2005-07-07 19:35:30',3759,425,'2005-07-14 14:59:30',1,'2006-02-15 21:30:53'), - (4363,'2005-07-07 19:43:28',3202,168,'2005-07-13 00:15:28',2,'2006-02-15 21:30:53'), - (4364,'2005-07-07 19:46:51',10,145,'2005-07-08 21:55:51',1,'2006-02-15 21:30:53'), - (4365,'2005-07-07 19:47:46',3207,442,'2005-07-08 23:21:46',2,'2006-02-15 21:30:53'), - (4366,'2005-07-07 19:48:36',2961,524,'2005-07-14 01:14:36',1,'2006-02-15 21:30:53'), - (4367,'2005-07-07 19:52:01',4529,48,'2005-07-13 19:41:01',2,'2006-02-15 21:30:53'), - (4368,'2005-07-07 19:55:19',736,324,'2005-07-09 00:11:19',1,'2006-02-15 21:30:53'), - (4369,'2005-07-07 20:01:38',3552,517,'2005-07-13 01:19:38',2,'2006-02-15 21:30:53'), - (4370,'2005-07-07 20:05:36',1591,559,'2005-07-16 23:58:36',1,'2006-02-15 21:30:53'), - (4371,'2005-07-07 20:06:45',2533,90,'2005-07-08 18:50:45',1,'2006-02-15 21:30:53'), - (4372,'2005-07-07 20:09:01',2207,252,'2005-07-09 18:24:01',1,'2006-02-15 21:30:53'), - (4373,'2005-07-07 20:10:59',3593,470,'2005-07-12 21:30:59',2,'2006-02-15 21:30:53'), - (4374,'2005-07-07 20:13:58',4377,517,'2005-07-11 18:11:58',2,'2006-02-15 21:30:53'), - (4375,'2005-07-07 20:20:29',3035,560,'2005-07-16 19:29:29',2,'2006-02-15 21:30:53'), - (4376,'2005-07-07 20:24:33',1344,151,'2005-07-11 18:32:33',1,'2006-02-15 21:30:53'), - (4377,'2005-07-07 20:28:57',3294,205,'2005-07-16 02:13:57',2,'2006-02-15 21:30:53'), - (4378,'2005-07-07 20:29:08',1244,24,'2005-07-12 19:17:08',2,'2006-02-15 21:30:53'), - (4379,'2005-07-07 20:32:30',2773,316,'2005-07-11 20:40:30',2,'2006-02-15 21:30:53'), - (4380,'2005-07-07 20:35:00',3164,353,'2005-07-14 17:06:00',1,'2006-02-15 21:30:53'), - (4381,'2005-07-07 20:37:53',3727,486,'2005-07-10 16:54:53',1,'2006-02-15 21:30:53'), - (4382,'2005-07-07 20:41:03',657,26,'2005-07-14 15:15:03',1,'2006-02-15 21:30:53'), - (4383,'2005-07-07 20:45:51',2649,591,'2005-07-17 00:52:51',2,'2006-02-15 21:30:53'), - (4384,'2005-07-07 20:46:45',1178,59,'2005-07-16 21:54:45',1,'2006-02-15 21:30:53'), - (4385,'2005-07-07 20:48:38',849,564,'2005-07-11 17:03:38',2,'2006-02-15 21:30:53'), - (4386,'2005-07-07 20:55:19',499,314,'2005-07-10 21:51:19',1,'2006-02-15 21:30:53'), - (4387,'2005-07-07 20:56:47',591,335,'2005-07-16 00:51:47',1,'2006-02-15 21:30:53'), - (4388,'2005-07-07 20:58:03',3150,210,'2005-07-16 20:05:03',2,'2006-02-15 21:30:53'), - (4389,'2005-07-07 20:58:58',1672,166,'2005-07-13 19:57:58',2,'2006-02-15 21:30:53'), - (4390,'2005-07-07 20:59:06',6,44,'2005-07-09 00:04:06',2,'2006-02-15 21:30:53'), - (4391,'2005-07-07 21:09:38',2135,42,'2005-07-09 17:35:38',1,'2006-02-15 21:30:53'), - (4392,'2005-07-07 21:11:02',4236,491,'2005-07-13 21:52:02',1,'2006-02-15 21:30:53'), - (4393,'2005-07-07 21:12:36',4034,395,'2005-07-09 22:41:36',2,'2006-02-15 21:30:53'), - (4394,'2005-07-07 21:12:45',563,156,'2005-07-16 18:24:45',2,'2006-02-15 21:30:53'), - (4395,'2005-07-07 21:13:22',360,544,'2005-07-08 22:59:22',2,'2006-02-15 21:30:53'), - (4396,'2005-07-07 21:14:19',750,275,'2005-07-10 19:22:19',1,'2006-02-15 21:30:53'), - (4397,'2005-07-07 21:14:54',3085,494,'2005-07-13 19:24:54',2,'2006-02-15 21:30:53'), - (4398,'2005-07-07 21:18:44',3628,426,'2005-07-10 22:45:44',1,'2006-02-15 21:30:53'), - (4399,'2005-07-07 21:20:28',4515,402,'2005-07-12 20:57:28',2,'2006-02-15 21:30:53'), - (4400,'2005-07-07 21:22:26',49,370,'2005-07-16 00:59:26',2,'2006-02-15 21:30:53'), - (4401,'2005-07-07 21:26:27',2725,405,'2005-07-12 17:18:27',2,'2006-02-15 21:30:53'), - (4402,'2005-07-07 21:28:46',1198,26,'2005-07-08 17:04:46',1,'2006-02-15 21:30:53'), - (4403,'2005-07-07 21:29:40',3973,447,'2005-07-09 17:58:40',1,'2006-02-15 21:30:53'), - (4404,'2005-07-07 21:31:53',944,25,'2005-07-13 19:00:53',1,'2006-02-15 21:30:53'), - (4405,'2005-07-07 21:33:16',2102,145,'2005-07-15 00:33:16',2,'2006-02-15 21:30:53'), - (4406,'2005-07-07 21:35:16',438,448,'2005-07-15 16:13:16',2,'2006-02-15 21:30:53'), - (4407,'2005-07-07 21:39:45',267,20,'2005-07-11 23:40:45',1,'2006-02-15 21:30:53'), - (4408,'2005-07-07 21:41:06',2482,258,'2005-07-11 00:32:06',1,'2006-02-15 21:30:53'), - (4409,'2005-07-07 21:47:29',3153,8,'2005-07-11 20:14:29',2,'2006-02-15 21:30:53'), - (4410,'2005-07-07 21:48:16',2754,584,'2005-07-09 03:15:16',1,'2006-02-15 21:30:53'), - (4411,'2005-07-07 21:54:58',320,224,'2005-07-14 16:14:58',2,'2006-02-15 21:30:53'), - (4412,'2005-07-07 21:56:53',1181,282,'2005-07-11 19:28:53',1,'2006-02-15 21:30:53'), - (4413,'2005-07-07 22:00:04',1062,565,'2005-07-10 18:20:04',2,'2006-02-15 21:30:53'), - (4414,'2005-07-07 22:00:21',991,434,'2005-07-12 02:51:21',1,'2006-02-15 21:30:53'), - (4415,'2005-07-07 22:01:43',1403,329,'2005-07-13 03:09:43',2,'2006-02-15 21:30:53'), - (4416,'2005-07-07 22:04:36',1247,290,'2005-07-09 02:44:36',2,'2006-02-15 21:30:53'), - (4417,'2005-07-07 22:05:05',743,452,'2005-07-09 16:16:05',2,'2006-02-15 21:30:53'), - (4418,'2005-07-07 22:05:30',4368,417,'2005-07-11 18:42:30',1,'2006-02-15 21:30:53'), - (4419,'2005-07-07 22:06:24',783,39,'2005-07-15 23:59:24',1,'2006-02-15 21:30:53'), - (4420,'2005-07-07 22:07:31',4427,346,'2005-07-12 19:14:31',2,'2006-02-15 21:30:53'), - (4421,'2005-07-07 22:07:55',4103,417,'2005-07-16 20:21:55',1,'2006-02-15 21:30:53'), - (4422,'2005-07-07 22:09:45',1741,345,'2005-07-10 01:43:45',1,'2006-02-15 21:30:53'), - (4423,'2005-07-07 22:11:28',2721,526,'2005-07-14 18:49:28',2,'2006-02-15 21:30:53'), - (4424,'2005-07-07 22:14:43',662,384,'2005-07-11 01:17:43',1,'2006-02-15 21:30:53'), - (4425,'2005-07-07 22:22:44',877,345,'2005-07-08 22:23:44',2,'2006-02-15 21:30:53'), - (4426,'2005-07-07 22:28:32',364,242,'2005-07-16 02:04:32',1,'2006-02-15 21:30:53'), - (4427,'2005-07-07 22:28:51',1021,69,'2005-07-11 21:37:51',2,'2006-02-15 21:30:53'), - (4428,'2005-07-07 22:29:40',2575,181,'2005-07-11 02:46:40',2,'2006-02-15 21:30:53'), - (4429,'2005-07-07 22:32:47',2949,187,'2005-07-15 03:10:47',2,'2006-02-15 21:30:53'), - (4430,'2005-07-07 22:35:24',3436,278,'2005-07-14 23:49:24',1,'2006-02-15 21:30:53'), - (4431,'2005-07-07 22:39:02',936,26,'2005-07-16 19:24:02',1,'2006-02-15 21:30:53'), - (4432,'2005-07-07 22:40:02',2779,295,'2005-07-15 01:46:02',1,'2006-02-15 21:30:53'), - (4433,'2005-07-07 22:45:41',88,449,'2005-07-16 23:30:41',2,'2006-02-15 21:30:53'), - (4434,'2005-07-07 22:48:34',1801,32,'2005-07-09 18:55:34',1,'2006-02-15 21:30:53'), - (4435,'2005-07-07 22:51:04',3815,157,'2005-07-14 23:15:04',2,'2006-02-15 21:30:53'), - (4436,'2005-07-07 22:52:04',4326,563,'2005-07-10 04:51:04',1,'2006-02-15 21:30:53'), - (4437,'2005-07-07 22:55:41',3578,414,'2005-07-13 19:40:41',1,'2006-02-15 21:30:53'), - (4438,'2005-07-07 22:56:17',4371,104,'2005-07-16 17:28:17',1,'2006-02-15 21:30:53'), - (4439,'2005-07-07 22:57:30',2393,521,'2005-07-10 18:28:30',1,'2006-02-15 21:30:53'), - (4440,'2005-07-07 23:00:58',1236,507,'2005-07-08 21:31:58',2,'2006-02-15 21:30:53'), - (4441,'2005-07-07 23:04:23',3680,211,'2005-07-13 19:07:23',1,'2006-02-15 21:30:53'), - (4442,'2005-07-07 23:05:30',461,123,'2005-07-13 22:20:30',2,'2006-02-15 21:30:53'), - (4443,'2005-07-07 23:05:53',72,389,'2005-07-16 01:46:53',1,'2006-02-15 21:30:53'), - (4444,'2005-07-07 23:07:44',764,529,'2005-07-14 02:51:44',2,'2006-02-15 21:30:53'), - (4445,'2005-07-07 23:08:22',3328,327,'2005-07-16 03:49:22',1,'2006-02-15 21:30:53'), - (4446,'2005-07-07 23:12:16',2629,438,'2005-07-13 19:42:16',1,'2006-02-15 21:30:53'), - (4447,'2005-07-07 23:15:28',404,549,'2005-07-14 22:53:28',2,'2006-02-15 21:30:53'), - (4448,'2005-07-07 23:17:12',2768,536,'2005-07-13 18:26:12',1,'2006-02-15 21:30:53'), - (4449,'2005-07-07 23:18:58',2813,354,'2005-07-15 20:40:58',2,'2006-02-15 21:30:53'), - (4450,'2005-07-07 23:20:05',1252,345,'2005-07-13 19:50:05',2,'2006-02-15 21:30:53'), - (4451,'2005-07-07 23:29:54',179,85,'2005-07-10 23:29:54',2,'2006-02-15 21:30:53'), - (4452,'2005-07-07 23:31:54',2414,460,'2005-07-14 04:05:54',1,'2006-02-15 21:30:53'), - (4453,'2005-07-07 23:32:39',89,560,'2005-07-12 01:38:39',2,'2006-02-15 21:30:53'), - (4454,'2005-07-07 23:37:00',1395,9,'2005-07-11 02:30:00',1,'2006-02-15 21:30:53'), - (4455,'2005-07-07 23:43:46',1396,507,'2005-07-08 21:34:46',2,'2006-02-15 21:30:53'), - (4456,'2005-07-07 23:45:21',3395,421,'2005-07-13 23:03:21',2,'2006-02-15 21:30:53'), - (4457,'2005-07-07 23:45:38',407,567,'2005-07-09 20:02:38',1,'2006-02-15 21:30:53'), - (4458,'2005-07-07 23:47:47',1307,229,'2005-07-09 19:17:47',2,'2006-02-15 21:30:53'), - (4459,'2005-07-07 23:48:52',3987,227,'2005-07-13 19:37:52',2,'2006-02-15 21:30:53'), - (4460,'2005-07-07 23:50:14',4121,592,'2005-07-09 21:55:14',1,'2006-02-15 21:30:53'), - (4461,'2005-07-07 23:59:43',3656,286,'2005-07-16 19:44:43',2,'2006-02-15 21:30:53'), - (4462,'2005-07-08 00:02:49',4120,257,'2005-07-15 20:48:49',2,'2006-02-15 21:30:53'), - (4463,'2005-07-08 00:04:59',4356,422,'2005-07-16 01:19:59',1,'2006-02-15 21:30:53'), - (4464,'2005-07-08 00:07:18',4484,583,'2005-07-08 22:14:18',2,'2006-02-15 21:30:53'), - (4465,'2005-07-08 00:07:45',2877,329,'2005-07-13 18:08:45',2,'2006-02-15 21:30:53'), - (4466,'2005-07-08 00:12:53',3320,304,'2005-07-17 03:49:53',2,'2006-02-15 21:30:53'), - (4467,'2005-07-08 00:13:52',4466,339,'2005-07-09 00:52:52',1,'2006-02-15 21:30:53'), - (4468,'2005-07-08 00:17:59',3302,170,'2005-07-12 05:51:59',2,'2006-02-15 21:30:53'), - (4469,'2005-07-08 00:18:32',2173,192,'2005-07-12 21:17:32',2,'2006-02-15 21:30:53'), - (4470,'2005-07-08 00:20:57',3605,145,'2005-07-10 02:31:57',1,'2006-02-15 21:30:53'), - (4471,'2005-07-08 00:21:29',263,30,'2005-07-11 18:48:29',2,'2006-02-15 21:30:53'), - (4472,'2005-07-08 00:22:06',2089,343,'2005-07-16 20:16:06',1,'2006-02-15 21:30:53'), - (4473,'2005-07-08 00:22:10',1387,481,'2005-07-09 21:11:10',1,'2006-02-15 21:30:53'), - (4474,'2005-07-08 00:26:56',4474,137,'2005-07-12 23:07:56',1,'2006-02-15 21:30:53'), - (4475,'2005-07-08 00:27:30',3466,340,'2005-07-09 05:39:30',1,'2006-02-15 21:30:53'), - (4476,'2005-07-08 00:34:25',395,279,'2005-07-08 22:55:25',1,'2006-02-15 21:30:53'), - (4477,'2005-07-08 00:38:24',1602,552,'2005-07-13 05:14:24',1,'2006-02-15 21:30:53'), - (4478,'2005-07-08 00:39:08',1764,357,'2005-07-11 21:57:08',2,'2006-02-15 21:30:53'), - (4479,'2005-07-08 00:52:35',3516,211,'2005-07-09 20:19:35',2,'2006-02-15 21:30:53'), - (4480,'2005-07-08 00:56:30',4457,296,'2005-07-10 20:52:30',2,'2006-02-15 21:30:53'), - (4481,'2005-07-08 00:58:15',1669,474,'2005-07-11 23:22:15',2,'2006-02-15 21:30:53'), - (4482,'2005-07-08 01:01:18',3500,511,'2005-07-11 01:18:18',1,'2006-02-15 21:30:53'), - (4483,'2005-07-08 01:03:12',1222,425,'2005-07-17 00:20:12',1,'2006-02-15 21:30:53'), - (4484,'2005-07-08 01:05:57',2867,306,'2005-07-16 00:41:57',2,'2006-02-15 21:30:53'), - (4485,'2005-07-08 01:07:54',2614,130,'2005-07-16 03:19:54',2,'2006-02-15 21:30:53'), - (4486,'2005-07-08 01:09:09',837,197,'2005-07-16 23:40:09',1,'2006-02-15 21:30:53'), - (4487,'2005-07-08 01:20:22',2220,360,'2005-07-16 21:23:22',2,'2006-02-15 21:30:53'), - (4488,'2005-07-08 01:22:23',2108,89,'2005-07-13 21:17:23',1,'2006-02-15 21:30:53'), - (4489,'2005-07-08 01:23:58',4306,259,'2005-07-09 01:35:58',2,'2006-02-15 21:30:53'), - (4490,'2005-07-08 01:26:32',2690,161,'2005-07-09 01:13:32',1,'2006-02-15 21:30:53'), - (4491,'2005-07-08 01:30:46',1168,413,'2005-07-11 03:12:46',1,'2006-02-15 21:30:53'), - (4492,'2005-07-08 01:32:04',1152,247,'2005-07-10 22:11:04',1,'2006-02-15 21:30:53'), - (4493,'2005-07-08 01:40:24',1369,167,'2005-07-09 02:17:24',2,'2006-02-15 21:30:53'), - (4494,'2005-07-08 01:42:45',1655,349,'2005-07-16 22:29:45',2,'2006-02-15 21:30:53'), - (4495,'2005-07-08 01:43:46',3515,404,'2005-07-10 07:38:46',1,'2006-02-15 21:30:53'), - (4496,'2005-07-08 01:44:19',150,578,'2005-07-08 20:34:19',2,'2006-02-15 21:30:53'), - (4497,'2005-07-08 01:51:32',1995,142,'2005-07-15 22:56:32',1,'2006-02-15 21:30:53'), - (4498,'2005-07-08 02:07:50',4299,43,'2005-07-12 23:54:50',2,'2006-02-15 21:30:53'), - (4499,'2005-07-08 02:08:48',851,199,'2005-07-10 07:06:48',2,'2006-02-15 21:30:53'), - (4500,'2005-07-08 02:10:01',398,462,'2005-07-15 05:49:01',2,'2006-02-15 21:30:53'), - (4501,'2005-07-08 02:12:00',1412,262,'2005-07-10 02:16:00',2,'2006-02-15 21:30:53'), - (4502,'2005-07-08 02:12:04',225,470,'2005-07-15 02:19:04',2,'2006-02-15 21:30:53'), - (4503,'2005-07-08 02:17:12',1503,8,'2005-07-13 08:12:12',1,'2006-02-15 21:30:53'), - (4504,'2005-07-08 02:19:27',361,422,'2005-07-12 21:15:27',1,'2006-02-15 21:30:53'), - (4505,'2005-07-08 02:20:04',1864,481,'2005-07-14 20:28:04',2,'2006-02-15 21:30:53'), - (4506,'2005-07-08 02:22:18',1484,133,'2005-07-13 04:54:18',2,'2006-02-15 21:30:53'), - (4507,'2005-07-08 02:22:45',819,505,'2005-07-14 20:53:45',1,'2006-02-15 21:30:53'), - (4508,'2005-07-08 02:28:41',3996,97,'2005-07-16 23:59:41',1,'2006-02-15 21:30:53'), - (4509,'2005-07-08 02:32:38',1760,230,'2005-07-14 01:05:38',2,'2006-02-15 21:30:53'), - (4510,'2005-07-08 02:34:51',1085,27,'2005-07-17 06:03:51',2,'2006-02-15 21:30:53'), - (4511,'2005-07-08 02:36:21',4438,75,'2005-07-15 06:01:21',1,'2006-02-15 21:30:53'), - (4512,'2005-07-08 02:38:56',1569,424,'2005-07-10 20:46:56',1,'2006-02-15 21:30:53'), - (4513,'2005-07-08 02:39:59',3704,182,'2005-07-14 07:48:59',2,'2006-02-15 21:30:53'), - (4514,'2005-07-08 02:41:25',1938,576,'2005-07-15 06:17:25',1,'2006-02-15 21:30:53'), - (4515,'2005-07-08 02:42:03',1998,229,'2005-07-10 07:22:03',2,'2006-02-15 21:30:53'), - (4516,'2005-07-08 02:43:41',2314,497,'2005-07-14 02:20:41',1,'2006-02-15 21:30:53'), - (4517,'2005-07-08 02:45:19',453,16,'2005-07-12 03:04:19',2,'2006-02-15 21:30:53'), - (4518,'2005-07-08 02:48:36',697,592,'2005-07-13 04:53:36',2,'2006-02-15 21:30:53'), - (4519,'2005-07-08 02:51:23',4425,459,'2005-07-12 06:52:23',2,'2006-02-15 21:30:53'), - (4520,'2005-07-08 02:53:46',3505,104,'2005-07-08 22:27:46',2,'2006-02-15 21:30:53'), - (4521,'2005-07-08 02:57:56',2652,327,'2005-07-11 22:49:56',2,'2006-02-15 21:30:53'), - (4522,'2005-07-08 03:03:12',4114,307,'2005-07-10 04:49:12',1,'2006-02-15 21:30:53'), - (4523,'2005-07-08 03:06:59',2785,347,'2005-07-17 04:44:59',1,'2006-02-15 21:30:53'), - (4524,'2005-07-08 03:10:48',2218,185,'2005-07-09 07:49:48',2,'2006-02-15 21:30:53'), - (4525,'2005-07-08 03:15:00',3631,458,'2005-07-11 04:53:00',1,'2006-02-15 21:30:53'), - (4526,'2005-07-08 03:17:05',1443,1,'2005-07-14 01:19:05',2,'2006-02-15 21:30:53'), - (4527,'2005-07-08 03:20:10',2263,468,'2005-07-15 02:21:10',1,'2006-02-15 21:30:53'), - (4528,'2005-07-08 03:24:54',3209,439,'2005-07-09 03:50:54',2,'2006-02-15 21:30:53'), - (4529,'2005-07-08 03:26:20',1361,104,'2005-07-16 05:04:20',1,'2006-02-15 21:30:53'), - (4530,'2005-07-08 03:27:05',3775,79,'2005-07-11 07:44:05',1,'2006-02-15 21:30:53'), - (4531,'2005-07-08 03:27:59',3108,142,'2005-07-10 22:48:59',1,'2006-02-15 21:30:53'), - (4532,'2005-07-08 03:30:39',4012,481,'2005-07-11 21:49:39',1,'2006-02-15 21:30:53'), - (4533,'2005-07-08 03:32:01',1105,474,'2005-07-10 21:57:01',1,'2006-02-15 21:30:53'), - (4534,'2005-07-08 03:36:55',2518,132,'2005-07-16 00:49:55',2,'2006-02-15 21:30:53'), - (4535,'2005-07-08 03:40:46',561,29,'2005-07-13 06:53:46',2,'2006-02-15 21:30:53'), - (4536,'2005-07-08 03:43:22',220,26,'2005-07-15 08:44:22',1,'2006-02-15 21:30:53'), - (4537,'2005-07-08 03:48:40',1305,448,'2005-07-13 22:54:40',2,'2006-02-15 21:30:53'), - (4538,'2005-07-08 03:56:29',3638,451,'2005-07-15 08:24:29',1,'2006-02-15 21:30:53'), - (4539,'2005-07-08 04:01:02',2450,264,'2005-07-14 22:32:02',1,'2006-02-15 21:30:53'), - (4540,'2005-07-08 04:03:28',4160,309,'2005-07-13 03:31:28',2,'2006-02-15 21:30:53'), - (4541,'2005-07-08 04:04:19',1976,248,'2005-07-13 07:27:19',2,'2006-02-15 21:30:53'), - (4542,'2005-07-08 04:06:30',4169,293,'2005-07-16 06:54:30',2,'2006-02-15 21:30:53'), - (4543,'2005-07-08 04:06:55',913,41,'2005-07-12 23:17:55',2,'2006-02-15 21:30:53'), - (4544,'2005-07-08 04:11:04',4471,351,'2005-07-09 22:48:04',1,'2006-02-15 21:30:53'), - (4545,'2005-07-08 04:17:47',3658,271,'2005-07-13 07:19:47',1,'2006-02-15 21:30:53'), - (4546,'2005-07-08 04:18:36',4507,393,'2005-07-17 08:23:36',1,'2006-02-15 21:30:53'), - (4547,'2005-07-08 04:20:19',3386,255,'2005-07-09 00:28:19',2,'2006-02-15 21:30:53'), - (4548,'2005-07-08 04:21:54',765,164,'2005-07-14 23:16:54',2,'2006-02-15 21:30:53'), - (4549,'2005-07-08 04:25:03',2797,98,'2005-07-10 09:01:03',2,'2006-02-15 21:30:53'), - (4550,'2005-07-08 04:34:00',615,409,'2005-07-14 23:45:00',2,'2006-02-15 21:30:53'), - (4551,'2005-07-08 04:36:21',1160,494,'2005-07-17 10:23:21',2,'2006-02-15 21:30:53'), - (4552,'2005-07-08 04:36:35',2549,313,'2005-07-14 05:48:35',2,'2006-02-15 21:30:53'), - (4553,'2005-07-08 04:43:41',2114,529,'2005-07-09 23:55:41',1,'2006-02-15 21:30:53'), - (4554,'2005-07-08 04:48:03',3878,376,'2005-07-16 04:34:03',1,'2006-02-15 21:30:53'), - (4555,'2005-07-08 04:48:36',1757,68,'2005-07-17 07:57:36',1,'2006-02-15 21:30:53'), - (4556,'2005-07-08 04:48:41',4099,348,'2005-07-16 08:51:41',2,'2006-02-15 21:30:53'), - (4557,'2005-07-08 04:49:15',1191,132,'2005-07-14 00:00:15',2,'2006-02-15 21:30:53'), - (4558,'2005-07-08 04:55:26',828,448,'2005-07-09 10:53:26',2,'2006-02-15 21:30:53'), - (4559,'2005-07-08 04:56:49',1911,424,'2005-07-12 08:56:49',2,'2006-02-15 21:30:53'), - (4560,'2005-07-08 04:58:48',303,36,'2005-07-10 04:27:48',1,'2006-02-15 21:30:53'), - (4561,'2005-07-08 05:02:43',1643,500,'2005-07-11 04:56:43',1,'2006-02-15 21:30:53'), - (4562,'2005-07-08 05:08:32',963,454,'2005-07-12 08:16:32',2,'2006-02-15 21:30:53'), - (4563,'2005-07-08 05:08:55',287,522,'2005-07-16 05:44:55',2,'2006-02-15 21:30:53'), - (4564,'2005-07-08 05:09:38',2494,519,'2005-07-11 05:37:38',2,'2006-02-15 21:30:53'), - (4565,'2005-07-08 05:12:28',3755,563,'2005-07-17 03:38:28',2,'2006-02-15 21:30:53'), - (4566,'2005-07-08 05:18:50',4302,133,'2005-07-15 01:53:50',1,'2006-02-15 21:30:53'), - (4567,'2005-07-08 05:20:04',4073,202,'2005-07-10 01:35:04',1,'2006-02-15 21:30:53'), - (4568,'2005-07-08 05:23:59',2626,122,'2005-07-09 06:07:59',1,'2006-02-15 21:30:53'), - (4569,'2005-07-08 05:30:51',2925,366,'2005-07-14 04:14:51',2,'2006-02-15 21:30:53'), - (4570,'2005-07-08 05:33:59',2612,503,'2005-07-14 09:27:59',1,'2006-02-15 21:30:53'), - (4571,'2005-07-08 05:34:41',2416,86,'2005-07-17 02:15:41',1,'2006-02-15 21:30:53'), - (4572,'2005-07-08 05:36:59',1324,323,'2005-07-12 04:46:59',2,'2006-02-15 21:30:53'), - (4573,'2005-07-08 05:38:46',2478,400,'2005-07-15 07:07:46',1,'2006-02-15 21:30:53'), - (4574,'2005-07-08 05:39:42',536,257,'2005-07-08 23:44:42',2,'2006-02-15 21:30:53'), - (4575,'2005-07-08 05:49:14',231,41,'2005-07-11 04:08:14',2,'2006-02-15 21:30:53'), - (4576,'2005-07-08 05:51:19',1920,567,'2005-07-10 11:36:19',1,'2006-02-15 21:30:53'), - (4577,'2005-07-08 05:59:00',1688,442,'2005-07-16 06:23:00',2,'2006-02-15 21:30:53'), - (4578,'2005-07-08 06:00:17',1533,497,'2005-07-10 06:58:17',2,'2006-02-15 21:30:53'), - (4579,'2005-07-08 06:01:56',4290,585,'2005-07-13 11:24:56',1,'2006-02-15 21:30:53'), - (4580,'2005-07-08 06:04:23',3512,199,'2005-07-15 05:42:23',2,'2006-02-15 21:30:53'), - (4581,'2005-07-08 06:05:06',887,591,'2005-07-16 00:54:06',1,'2006-02-15 21:30:53'), - (4582,'2005-07-08 06:09:09',688,274,'2005-07-14 02:23:09',1,'2006-02-15 21:30:53'), - (4583,'2005-07-08 06:09:44',4151,365,'2005-07-12 03:44:44',1,'2006-02-15 21:30:53'), - (4584,'2005-07-08 06:11:02',2322,368,'2005-07-11 05:14:02',1,'2006-02-15 21:30:53'), - (4585,'2005-07-08 06:11:58',1622,143,'2005-07-17 01:58:58',1,'2006-02-15 21:30:53'), - (4586,'2005-07-08 06:12:33',1374,461,'2005-07-13 11:06:33',2,'2006-02-15 21:30:53'), - (4587,'2005-07-08 06:16:26',3502,63,'2005-07-13 00:59:26',1,'2006-02-15 21:30:53'), - (4588,'2005-07-08 06:18:01',3629,198,'2005-07-10 08:59:01',1,'2006-02-15 21:30:53'), - (4589,'2005-07-08 06:26:04',1192,99,'2005-07-09 10:31:04',2,'2006-02-15 21:30:53'), - (4590,'2005-07-08 06:27:48',4233,580,'2005-07-14 07:46:48',1,'2006-02-15 21:30:53'), - (4591,'2005-07-08 06:29:43',2276,182,'2005-07-17 07:20:43',1,'2006-02-15 21:30:53'), - (4592,'2005-07-08 06:31:28',2141,235,'2005-07-10 06:08:28',2,'2006-02-15 21:30:53'), - (4593,'2005-07-08 06:38:12',2897,528,'2005-07-16 10:48:12',2,'2006-02-15 21:30:53'), - (4594,'2005-07-08 06:40:06',26,506,'2005-07-16 05:51:06',2,'2006-02-15 21:30:53'), - (4595,'2005-07-08 06:40:25',760,336,'2005-07-14 08:54:25',1,'2006-02-15 21:30:53'), - (4596,'2005-07-08 06:41:25',2280,306,'2005-07-14 01:36:25',1,'2006-02-15 21:30:53'), - (4597,'2005-07-08 06:43:42',3767,545,'2005-07-13 01:32:42',1,'2006-02-15 21:30:53'), - (4598,'2005-07-08 06:46:26',258,82,'2005-07-16 01:21:26',1,'2006-02-15 21:30:53'), - (4599,'2005-07-08 06:48:26',2098,356,'2005-07-11 07:06:26',1,'2006-02-15 21:30:53'), - (4600,'2005-07-08 06:48:37',1526,457,'2005-07-15 10:11:37',1,'2006-02-15 21:30:53'), - (4601,'2005-07-08 06:49:10',3184,572,'2005-07-09 07:43:10',1,'2006-02-15 21:30:53'), - (4602,'2005-07-08 06:52:40',3616,129,'2005-07-10 06:30:40',1,'2006-02-15 21:30:53'), - (4603,'2005-07-08 06:57:07',755,334,'2005-07-17 04:32:07',1,'2006-02-15 21:30:53'), - (4604,'2005-07-08 06:58:43',4230,402,'2005-07-14 06:41:43',1,'2006-02-15 21:30:53'), - (4605,'2005-07-08 07:00:14',1139,523,'2005-07-16 08:38:14',1,'2006-02-15 21:30:53'), - (4606,'2005-07-08 07:05:50',1946,502,'2005-07-16 09:11:50',2,'2006-02-15 21:30:53'), - (4607,'2005-07-08 07:15:14',1193,281,'2005-07-11 01:32:14',1,'2006-02-15 21:30:53'), - (4608,'2005-07-08 07:19:11',758,11,'2005-07-11 01:37:11',1,'2006-02-15 21:30:53'), - (4609,'2005-07-08 07:22:29',3711,573,'2005-07-10 08:06:29',1,'2006-02-15 21:30:53'), - (4610,'2005-07-08 07:28:05',1279,265,'2005-07-14 02:10:05',1,'2006-02-15 21:30:53'), - (4611,'2005-07-08 07:33:56',3486,1,'2005-07-12 13:25:56',2,'2006-02-15 21:30:53'), - (4612,'2005-07-08 07:40:44',82,371,'2005-07-12 03:48:44',1,'2006-02-15 21:30:53'), - (4613,'2005-07-08 07:44:49',476,581,'2005-07-09 04:47:49',1,'2006-02-15 21:30:53'), - (4614,'2005-07-08 07:45:17',2579,71,'2005-07-12 02:10:17',2,'2006-02-15 21:30:53'), - (4615,'2005-07-08 07:46:53',1200,404,'2005-07-16 12:43:53',2,'2006-02-15 21:30:53'), - (4616,'2005-07-08 07:48:12',2580,280,'2005-07-10 08:13:12',2,'2006-02-15 21:30:53'), - (4617,'2005-07-08 07:55:08',3784,475,'2005-07-17 02:49:08',2,'2006-02-15 21:30:53'), - (4618,'2005-07-08 08:00:20',3691,179,'2005-07-14 05:59:20',1,'2006-02-15 21:30:53'), - (4619,'2005-07-08 08:01:09',2127,579,'2005-07-16 05:52:09',2,'2006-02-15 21:30:53'), - (4620,'2005-07-08 08:01:44',3467,210,'2005-07-16 07:43:44',2,'2006-02-15 21:30:53'), - (4621,'2005-07-08 08:02:18',1594,297,'2005-07-12 08:53:18',2,'2006-02-15 21:30:53'), - (4622,'2005-07-08 08:02:42',2710,289,'2005-07-10 07:46:42',2,'2006-02-15 21:30:53'), - (4623,'2005-07-08 08:03:22',4171,593,'2005-07-12 09:11:22',2,'2006-02-15 21:30:53'), - (4624,'2005-07-08 08:12:17',1548,341,'2005-07-15 12:24:17',2,'2006-02-15 21:30:53'), - (4625,'2005-07-08 08:14:26',318,473,'2005-07-09 03:45:26',1,'2006-02-15 21:30:53'), - (4626,'2005-07-08 08:18:21',37,268,'2005-07-10 11:36:21',1,'2006-02-15 21:30:53'), - (4627,'2005-07-08 08:24:39',2383,78,'2005-07-13 11:04:39',2,'2006-02-15 21:30:53'), - (4628,'2005-07-08 08:25:52',1888,540,'2005-07-10 11:22:52',1,'2006-02-15 21:30:53'), - (4629,'2005-07-08 08:31:26',228,563,'2005-07-17 12:07:26',1,'2006-02-15 21:30:53'), - (4630,'2005-07-08 08:33:38',3446,319,'2005-07-09 13:09:38',2,'2006-02-15 21:30:53'), - (4631,'2005-07-08 08:38:22',470,59,'2005-07-11 03:33:22',2,'2006-02-15 21:30:53'), - (4632,'2005-07-08 08:38:57',4330,393,'2005-07-15 09:33:57',1,'2006-02-15 21:30:53'), - (4633,'2005-07-08 08:39:39',3178,348,'2005-07-15 10:23:39',1,'2006-02-15 21:30:53'), - (4634,'2005-07-08 08:40:02',811,275,'2005-07-12 04:45:02',2,'2006-02-15 21:30:53'), - (4635,'2005-07-08 08:42:40',2434,65,'2005-07-14 10:31:40',1,'2006-02-15 21:30:53'), - (4636,'2005-07-08 08:44:32',1858,228,'2005-07-10 08:59:32',2,'2006-02-15 21:30:53'), - (4637,'2005-07-08 08:49:54',1917,263,'2005-07-11 13:12:54',2,'2006-02-15 21:30:53'), - (4638,'2005-07-08 08:57:20',2240,305,'2005-07-10 05:08:20',2,'2006-02-15 21:30:53'), - (4639,'2005-07-08 08:57:21',2459,75,'2005-07-14 11:22:21',2,'2006-02-15 21:30:53'), - (4640,'2005-07-08 08:59:34',1147,506,'2005-07-15 03:31:34',1,'2006-02-15 21:30:53'), - (4641,'2005-07-08 09:09:46',2436,26,'2005-07-17 03:54:46',2,'2006-02-15 21:30:53'), - (4642,'2005-07-08 09:13:28',1962,30,'2005-07-10 06:17:28',2,'2006-02-15 21:30:53'), - (4643,'2005-07-08 09:13:56',239,436,'2005-07-10 12:09:56',2,'2006-02-15 21:30:53'), - (4644,'2005-07-08 09:14:29',3239,38,'2005-07-10 07:20:29',2,'2006-02-15 21:30:53'), - (4645,'2005-07-08 09:20:09',687,400,'2005-07-09 06:07:09',2,'2006-02-15 21:30:53'), - (4646,'2005-07-08 09:23:26',618,362,'2005-07-16 04:03:26',1,'2006-02-15 21:30:53'), - (4647,'2005-07-08 09:27:36',674,312,'2005-07-16 14:56:36',2,'2006-02-15 21:30:53'), - (4648,'2005-07-08 09:31:27',3490,444,'2005-07-13 03:55:27',2,'2006-02-15 21:30:53'), - (4649,'2005-07-08 09:32:05',1116,221,'2005-07-15 08:37:05',2,'2006-02-15 21:30:53'), - (4650,'2005-07-08 09:32:08',2850,108,'2005-07-15 15:20:08',1,'2006-02-15 21:30:53'), - (4651,'2005-07-08 09:39:39',4064,557,'2005-07-09 12:14:39',2,'2006-02-15 21:30:53'), - (4652,'2005-07-08 09:47:51',4198,127,'2005-07-16 04:09:51',2,'2006-02-15 21:30:53'), - (4653,'2005-07-08 09:48:01',2511,404,'2005-07-17 05:18:01',1,'2006-02-15 21:30:53'), - (4654,'2005-07-08 09:48:03',4210,434,'2005-07-17 13:17:03',1,'2006-02-15 21:30:53'), - (4655,'2005-07-08 09:49:22',4078,213,'2005-07-15 13:08:22',1,'2006-02-15 21:30:53'), - (4656,'2005-07-08 09:50:10',839,141,'2005-07-13 15:00:10',1,'2006-02-15 21:30:53'), - (4657,'2005-07-08 09:51:02',1002,54,'2005-07-09 09:29:02',2,'2006-02-15 21:30:53'), - (4658,'2005-07-08 09:51:11',3131,166,'2005-07-10 12:30:11',2,'2006-02-15 21:30:53'), - (4659,'2005-07-08 09:53:28',4389,425,'2005-07-14 14:56:28',2,'2006-02-15 21:30:53'), - (4660,'2005-07-08 09:54:47',1208,139,'2005-07-11 15:19:47',2,'2006-02-15 21:30:53'), - (4661,'2005-07-08 09:55:06',2641,518,'2005-07-11 08:26:06',1,'2006-02-15 21:30:53'), - (4662,'2005-07-08 09:58:54',1370,553,'2005-07-10 12:51:54',1,'2006-02-15 21:30:53'), - (4663,'2005-07-08 09:59:18',2959,139,'2005-07-10 11:25:18',1,'2006-02-15 21:30:53'), - (4664,'2005-07-08 10:01:28',1318,546,'2005-07-12 10:37:28',2,'2006-02-15 21:30:53'), - (4665,'2005-07-08 10:04:24',575,106,'2005-07-14 15:13:24',1,'2006-02-15 21:30:53'), - (4666,'2005-07-08 10:05:02',4576,120,'2005-07-16 07:28:02',1,'2006-02-15 21:30:53'), - (4667,'2005-07-08 10:06:26',3348,485,'2005-07-14 04:48:26',1,'2006-02-15 21:30:53'), - (4668,'2005-07-08 10:11:45',3971,481,'2005-07-17 13:01:45',2,'2006-02-15 21:30:53'), - (4669,'2005-07-08 10:13:08',3494,581,'2005-07-16 07:52:08',1,'2006-02-15 21:30:53'), - (4670,'2005-07-08 10:14:18',3317,153,'2005-07-16 15:10:18',2,'2006-02-15 21:30:53'), - (4671,'2005-07-08 10:15:32',2139,55,'2005-07-14 08:19:32',2,'2006-02-15 21:30:53'), - (4672,'2005-07-08 10:15:38',1922,18,'2005-07-16 05:06:38',1,'2006-02-15 21:30:53'), - (4673,'2005-07-08 10:16:00',2792,91,'2005-07-17 10:03:00',2,'2006-02-15 21:30:53'), - (4674,'2005-07-08 10:19:28',1617,329,'2005-07-12 12:54:28',2,'2006-02-15 21:30:53'), - (4675,'2005-07-08 10:24:22',1309,380,'2005-07-14 11:09:22',1,'2006-02-15 21:30:53'), - (4676,'2005-07-08 10:26:02',2590,302,'2005-07-10 13:38:02',2,'2006-02-15 21:30:53'), - (4677,'2005-07-08 10:30:36',1226,258,'2005-07-14 12:40:36',1,'2006-02-15 21:30:53'), - (4678,'2005-07-08 10:30:40',241,219,'2005-07-13 11:08:40',1,'2006-02-15 21:30:53'), - (4679,'2005-07-08 10:33:14',3610,423,'2005-07-15 14:30:14',2,'2006-02-15 21:30:53'), - (4680,'2005-07-08 10:35:28',4043,227,'2005-07-14 08:42:28',1,'2006-02-15 21:30:53'), - (4681,'2005-07-08 10:36:03',1025,133,'2005-07-16 09:21:03',2,'2006-02-15 21:30:53'), - (4682,'2005-07-08 10:38:27',873,263,'2005-07-11 06:29:27',2,'2006-02-15 21:30:53'), - (4683,'2005-07-08 10:38:28',3464,283,'2005-07-09 12:07:28',1,'2006-02-15 21:30:53'), - (4684,'2005-07-08 10:41:06',503,585,'2005-07-17 10:35:06',1,'2006-02-15 21:30:53'), - (4685,'2005-07-08 10:45:13',602,590,'2005-07-12 08:29:13',1,'2006-02-15 21:30:53'), - (4686,'2005-07-08 10:53:39',1398,234,'2005-07-10 05:34:39',2,'2006-02-15 21:30:53'), - (4687,'2005-07-08 10:54:19',1156,169,'2005-07-10 08:00:19',2,'2006-02-15 21:30:53'), - (4688,'2005-07-08 11:03:29',3574,80,'2005-07-17 15:41:29',2,'2006-02-15 21:30:53'), - (4689,'2005-07-08 11:03:47',2519,364,'2005-07-16 06:07:47',2,'2006-02-15 21:30:53'), - (4690,'2005-07-08 11:04:02',3304,64,'2005-07-15 10:27:02',2,'2006-02-15 21:30:53'), - (4691,'2005-07-08 11:04:53',596,126,'2005-07-09 07:48:53',1,'2006-02-15 21:30:53'), - (4692,'2005-07-08 11:07:06',1490,288,'2005-07-09 14:08:06',1,'2006-02-15 21:30:53'), - (4693,'2005-07-08 11:07:36',1694,221,'2005-07-14 08:40:36',1,'2006-02-15 21:30:53'), - (4694,'2005-07-08 11:07:37',3637,229,'2005-07-12 06:53:37',2,'2006-02-15 21:30:53'), - (4695,'2005-07-08 11:07:59',805,39,'2005-07-17 16:35:59',1,'2006-02-15 21:30:53'), - (4696,'2005-07-08 11:12:27',1358,424,'2005-07-14 05:41:27',1,'2006-02-15 21:30:53'), - (4697,'2005-07-08 11:19:14',4143,224,'2005-07-12 07:14:14',2,'2006-02-15 21:30:53'), - (4698,'2005-07-08 11:19:31',3963,570,'2005-07-13 13:45:31',2,'2006-02-15 21:30:53'), - (4699,'2005-07-08 11:36:56',2462,348,'2005-07-14 11:35:56',2,'2006-02-15 21:30:53'), - (4700,'2005-07-08 11:37:21',3889,317,'2005-07-12 15:41:21',1,'2006-02-15 21:30:53'), - (4701,'2005-07-08 11:38:48',3012,522,'2005-07-13 15:59:48',2,'2006-02-15 21:30:53'), - (4702,'2005-07-08 11:41:36',2593,56,'2005-07-10 06:55:36',1,'2006-02-15 21:30:53'), - (4703,'2005-07-08 11:44:56',2859,544,'2005-07-13 09:17:56',1,'2006-02-15 21:30:53'), - (4704,'2005-07-08 11:45:35',2291,28,'2005-07-10 09:46:35',1,'2006-02-15 21:30:53'), - (4705,'2005-07-08 11:50:38',3709,85,'2005-07-12 15:58:38',2,'2006-02-15 21:30:53'), - (4706,'2005-07-08 11:51:41',2512,380,'2005-07-17 12:58:41',1,'2006-02-15 21:30:53'), - (4707,'2005-07-08 11:57:28',52,286,'2005-07-10 17:47:28',1,'2006-02-15 21:30:53'), - (4708,'2005-07-08 11:59:19',3249,212,'2005-07-17 07:11:19',2,'2006-02-15 21:30:53'), - (4709,'2005-07-08 12:04:34',3964,124,'2005-07-15 06:48:34',1,'2006-02-15 21:30:53'), - (4710,'2005-07-08 12:04:53',248,590,'2005-07-13 11:28:53',2,'2006-02-15 21:30:53'), - (4711,'2005-07-08 12:06:58',2327,563,'2005-07-12 08:37:58',1,'2006-02-15 21:30:53'), - (4712,'2005-07-08 12:10:50',2371,39,'2005-07-17 14:54:50',2,'2006-02-15 21:30:53'), - (4713,'2005-07-08 12:12:33',1399,207,'2005-07-16 17:13:33',1,'2006-02-15 21:30:53'), - (4714,'2005-07-08 12:12:48',1932,385,'2005-07-17 08:43:48',2,'2006-02-15 21:30:53'), - (4715,'2005-07-08 12:15:37',4010,276,'2005-07-10 10:37:37',2,'2006-02-15 21:30:53'), - (4716,'2005-07-08 12:18:51',1923,391,'2005-07-11 11:06:51',2,'2006-02-15 21:30:53'), - (4717,'2005-07-08 12:22:43',1491,453,'2005-07-11 10:24:43',2,'2006-02-15 21:30:53'), - (4718,'2005-07-08 12:32:08',1653,535,'2005-07-17 17:34:08',2,'2006-02-15 21:30:53'), - (4719,'2005-07-08 12:33:00',1315,556,'2005-07-15 12:30:00',1,'2006-02-15 21:30:53'), - (4720,'2005-07-08 12:34:34',2669,452,'2005-07-09 10:28:34',1,'2006-02-15 21:30:53'), - (4721,'2005-07-08 12:39:31',3105,234,'2005-07-15 18:07:31',1,'2006-02-15 21:30:53'), - (4722,'2005-07-08 12:42:27',3738,590,'2005-07-09 09:14:27',2,'2006-02-15 21:30:53'), - (4723,'2005-07-08 12:44:59',965,44,'2005-07-17 07:22:59',2,'2006-02-15 21:30:53'), - (4724,'2005-07-08 12:46:30',3375,18,'2005-07-14 12:39:30',1,'2006-02-15 21:30:53'), - (4725,'2005-07-08 12:47:11',2058,3,'2005-07-15 09:08:11',2,'2006-02-15 21:30:53'), - (4726,'2005-07-08 12:50:54',4369,144,'2005-07-17 07:09:54',2,'2006-02-15 21:30:53'), - (4727,'2005-07-08 12:54:15',1251,39,'2005-07-17 14:32:15',2,'2006-02-15 21:30:53'), - (4728,'2005-07-08 12:59:01',3687,462,'2005-07-13 13:00:01',1,'2006-02-15 21:30:53'), - (4729,'2005-07-08 12:59:40',1429,205,'2005-07-10 13:35:40',2,'2006-02-15 21:30:53'), - (4730,'2005-07-08 12:59:49',1619,126,'2005-07-14 16:15:49',2,'2006-02-15 21:30:53'), - (4731,'2005-07-08 13:08:18',4124,241,'2005-07-09 13:16:18',2,'2006-02-15 21:30:53'), - (4732,'2005-07-08 13:09:45',308,562,'2005-07-14 10:10:45',1,'2006-02-15 21:30:53'), - (4733,'2005-07-08 13:12:07',2230,93,'2005-07-13 07:34:07',1,'2006-02-15 21:30:53'), - (4734,'2005-07-08 13:12:12',1928,546,'2005-07-10 09:01:12',2,'2006-02-15 21:30:53'), - (4735,'2005-07-08 13:12:27',4324,381,'2005-07-13 10:06:27',2,'2006-02-15 21:30:53'), - (4736,'2005-07-08 13:22:55',3009,79,'2005-07-17 07:27:55',1,'2006-02-15 21:30:53'), - (4737,'2005-07-08 13:23:53',4286,116,'2005-07-12 18:49:53',1,'2006-02-15 21:30:53'), - (4738,'2005-07-08 13:24:58',2021,31,'2005-07-17 17:44:58',2,'2006-02-15 21:30:53'), - (4739,'2005-07-08 13:25:57',140,197,'2005-07-11 17:36:57',1,'2006-02-15 21:30:53'), - (4740,'2005-07-08 13:30:35',2559,379,'2005-07-14 18:43:35',1,'2006-02-15 21:30:53'), - (4741,'2005-07-08 13:31:23',516,260,'2005-07-17 12:02:23',2,'2006-02-15 21:30:53'), - (4742,'2005-07-08 13:35:23',3022,340,'2005-07-11 10:24:23',2,'2006-02-15 21:30:53'), - (4743,'2005-07-08 13:42:36',80,535,'2005-07-11 18:54:36',2,'2006-02-15 21:30:53'), - (4744,'2005-07-08 13:43:57',2948,507,'2005-07-12 09:21:57',2,'2006-02-15 21:30:53'), - (4745,'2005-07-08 13:45:09',1351,354,'2005-07-12 18:54:09',1,'2006-02-15 21:30:53'), - (4746,'2005-07-08 13:47:55',173,148,'2005-07-11 09:06:55',2,'2006-02-15 21:30:53'), - (4747,'2005-07-08 13:53:01',3942,383,'2005-07-12 17:10:01',2,'2006-02-15 21:30:53'), - (4748,'2005-07-08 13:59:38',4279,9,'2005-07-15 16:51:38',1,'2006-02-15 21:30:53'), - (4749,'2005-07-08 14:05:58',1190,236,'2005-07-10 18:35:58',2,'2006-02-15 21:30:53'), - (4750,'2005-07-08 14:07:03',3383,198,'2005-07-13 18:05:03',1,'2006-02-15 21:30:53'), - (4751,'2005-07-08 14:07:52',3469,436,'2005-07-13 10:37:52',2,'2006-02-15 21:30:53'), - (4752,'2005-07-08 14:15:20',3250,512,'2005-07-12 13:22:20',1,'2006-02-15 21:30:53'), - (4753,'2005-07-08 14:18:41',1642,391,'2005-07-09 10:00:41',2,'2006-02-15 21:30:53'), - (4754,'2005-07-08 14:20:01',3177,108,'2005-07-11 11:50:01',1,'2006-02-15 21:30:53'), - (4755,'2005-07-08 14:23:41',661,378,'2005-07-10 19:35:41',1,'2006-02-15 21:30:53'), - (4756,'2005-07-08 14:24:00',3068,351,'2005-07-12 16:16:00',1,'2006-02-15 21:30:53'), - (4757,'2005-07-08 14:36:51',1278,504,'2005-07-12 15:28:51',1,'2006-02-15 21:30:53'), - (4758,'2005-07-08 14:38:02',3698,288,'2005-07-13 12:09:02',2,'2006-02-15 21:30:53'), - (4759,'2005-07-08 14:39:22',3999,284,'2005-07-17 15:02:22',2,'2006-02-15 21:30:53'), - (4760,'2005-07-08 14:48:07',3718,177,'2005-07-10 12:41:07',2,'2006-02-15 21:30:53'), - (4761,'2005-07-08 14:51:45',3556,351,'2005-07-14 20:28:45',1,'2006-02-15 21:30:53'), - (4762,'2005-07-08 14:54:42',390,36,'2005-07-12 18:08:42',1,'2006-02-15 21:30:53'), - (4763,'2005-07-08 14:57:32',899,465,'2005-07-15 10:00:32',2,'2006-02-15 21:30:53'), - (4764,'2005-07-08 15:01:25',1188,89,'2005-07-17 15:16:25',1,'2006-02-15 21:30:53'), - (4765,'2005-07-08 15:08:45',469,437,'2005-07-13 10:44:45',1,'2006-02-15 21:30:53'), - (4766,'2005-07-08 15:16:04',1057,149,'2005-07-15 11:04:04',2,'2006-02-15 21:30:53'), - (4767,'2005-07-08 15:18:53',3744,350,'2005-07-13 15:48:53',1,'2006-02-15 21:30:53'), - (4768,'2005-07-08 15:28:20',2787,482,'2005-07-09 11:46:20',1,'2006-02-15 21:30:53'), - (4769,'2005-07-08 15:29:16',3462,501,'2005-07-09 18:42:16',2,'2006-02-15 21:30:53'), - (4770,'2005-07-08 15:29:46',2406,573,'2005-07-14 13:31:46',1,'2006-02-15 21:30:53'), - (4771,'2005-07-08 15:33:32',1060,32,'2005-07-10 12:38:32',1,'2006-02-15 21:30:53'), - (4772,'2005-07-08 15:41:11',2156,486,'2005-07-17 15:25:11',1,'2006-02-15 21:30:53'), - (4773,'2005-07-08 15:41:39',3025,519,'2005-07-13 18:16:39',1,'2006-02-15 21:30:53'), - (4774,'2005-07-08 15:42:28',673,489,'2005-07-16 18:29:28',2,'2006-02-15 21:30:53'), - (4775,'2005-07-08 15:44:05',4277,595,'2005-07-11 20:39:05',2,'2006-02-15 21:30:53'), - (4776,'2005-07-08 15:44:20',2598,563,'2005-07-17 10:50:20',2,'2006-02-15 21:30:53'), - (4777,'2005-07-08 15:48:34',449,102,'2005-07-16 15:25:34',1,'2006-02-15 21:30:53'), - (4778,'2005-07-08 15:51:51',611,78,'2005-07-12 16:58:51',2,'2006-02-15 21:30:53'), - (4779,'2005-07-08 15:53:41',1321,338,'2005-07-15 20:30:41',1,'2006-02-15 21:30:53'), - (4780,'2005-07-08 16:06:51',2740,115,'2005-07-13 18:34:51',1,'2006-02-15 21:30:53'), - (4781,'2005-07-08 16:06:55',1818,593,'2005-07-16 11:22:55',2,'2006-02-15 21:30:53'), - (4782,'2005-07-08 16:08:51',445,436,'2005-07-17 17:56:51',1,'2006-02-15 21:30:53'), - (4783,'2005-07-08 16:09:24',3952,214,'2005-07-16 21:53:24',2,'2006-02-15 21:30:53'), - (4784,'2005-07-08 16:09:56',549,182,'2005-07-09 20:35:56',1,'2006-02-15 21:30:53'), - (4785,'2005-07-08 16:10:19',58,474,'2005-07-11 18:52:19',1,'2006-02-15 21:30:53'), - (4786,'2005-07-08 16:13:05',2724,294,'2005-07-16 15:29:05',1,'2006-02-15 21:30:53'), - (4787,'2005-07-08 16:16:04',3929,7,'2005-07-14 18:02:04',2,'2006-02-15 21:30:53'), - (4788,'2005-07-08 16:17:35',691,533,'2005-07-11 11:56:35',2,'2006-02-15 21:30:53'), - (4789,'2005-07-08 16:22:01',20,73,'2005-07-15 18:29:01',2,'2006-02-15 21:30:53'), - (4790,'2005-07-08 16:25:27',100,500,'2005-07-11 11:35:27',1,'2006-02-15 21:30:53'), - (4791,'2005-07-08 16:27:24',2505,393,'2005-07-14 21:50:24',2,'2006-02-15 21:30:53'), - (4792,'2005-07-08 16:29:38',2132,147,'2005-07-10 16:31:38',2,'2006-02-15 21:30:53'), - (4793,'2005-07-08 16:30:01',3090,427,'2005-07-15 17:56:01',1,'2006-02-15 21:30:53'), - (4794,'2005-07-08 16:30:11',2497,451,'2005-07-17 12:41:11',2,'2006-02-15 21:30:53'), - (4795,'2005-07-08 16:32:54',3409,497,'2005-07-09 14:15:54',1,'2006-02-15 21:30:53'), - (4796,'2005-07-08 16:35:44',2484,9,'2005-07-13 11:08:44',2,'2006-02-15 21:30:53'), - (4797,'2005-07-08 16:39:05',1389,265,'2005-07-09 11:41:05',1,'2006-02-15 21:30:53'), - (4798,'2005-07-08 16:45:16',3874,212,'2005-07-16 13:45:16',2,'2006-02-15 21:30:53'), - (4799,'2005-07-08 16:49:27',4112,512,'2005-07-12 19:58:27',2,'2006-02-15 21:30:53'), - (4800,'2005-07-08 16:51:08',1940,99,'2005-07-13 14:16:08',2,'2006-02-15 21:30:53'), - (4801,'2005-07-08 16:51:36',761,431,'2005-07-13 17:23:36',1,'2006-02-15 21:30:53'), - (4802,'2005-07-08 16:55:17',22,562,'2005-07-15 19:34:17',1,'2006-02-15 21:30:53'), - (4803,'2005-07-08 16:56:34',1786,174,'2005-07-14 20:16:34',1,'2006-02-15 21:30:53'), - (4804,'2005-07-08 16:57:30',3756,269,'2005-07-10 18:25:30',1,'2006-02-15 21:30:53'), - (4805,'2005-07-08 16:59:12',377,453,'2005-07-09 15:02:12',1,'2006-02-15 21:30:53'), - (4806,'2005-07-08 17:01:02',214,506,'2005-07-15 21:41:02',1,'2006-02-15 21:30:53'), - (4807,'2005-07-08 17:01:48',4511,348,'2005-07-16 22:33:48',2,'2006-02-15 21:30:53'), - (4808,'2005-07-08 17:02:49',2544,563,'2005-07-12 22:49:49',2,'2006-02-15 21:30:53'), - (4809,'2005-07-08 17:03:22',4251,474,'2005-07-17 22:39:22',1,'2006-02-15 21:30:53'), - (4810,'2005-07-08 17:04:06',4056,209,'2005-07-09 13:41:06',1,'2006-02-15 21:30:53'), - (4811,'2005-07-08 17:04:24',4032,127,'2005-07-12 16:41:24',2,'2006-02-15 21:30:53'), - (4812,'2005-07-08 17:07:11',3281,304,'2005-07-17 21:03:11',2,'2006-02-15 21:30:53'), - (4813,'2005-07-08 17:09:56',2752,439,'2005-07-09 22:29:56',1,'2006-02-15 21:30:53'), - (4814,'2005-07-08 17:11:09',3497,244,'2005-07-17 12:43:09',2,'2006-02-15 21:30:53'), - (4815,'2005-07-08 17:12:51',840,581,'2005-07-17 13:14:51',1,'2006-02-15 21:30:53'), - (4816,'2005-07-08 17:14:14',2700,207,'2005-07-11 15:03:14',1,'2006-02-15 21:30:53'), - (4817,'2005-07-08 17:17:31',1608,145,'2005-07-09 22:32:31',2,'2006-02-15 21:30:53'), - (4818,'2005-07-08 17:18:22',115,144,'2005-07-14 14:40:22',1,'2006-02-15 21:30:53'), - (4819,'2005-07-08 17:19:15',1342,64,'2005-07-16 14:32:15',1,'2006-02-15 21:30:53'), - (4820,'2005-07-08 17:25:23',2672,172,'2005-07-17 20:32:23',2,'2006-02-15 21:30:53'), - (4821,'2005-07-08 17:28:08',1690,172,'2005-07-11 17:44:08',1,'2006-02-15 21:30:53'), - (4822,'2005-07-08 17:28:47',3970,185,'2005-07-14 13:06:47',1,'2006-02-15 21:30:53'), - (4823,'2005-07-08 17:28:54',155,206,'2005-07-11 23:10:54',1,'2006-02-15 21:30:53'), - (4824,'2005-07-08 17:37:39',1855,225,'2005-07-16 18:27:39',1,'2006-02-15 21:30:53'), - (4825,'2005-07-08 17:43:01',2419,563,'2005-07-11 20:58:01',1,'2006-02-15 21:30:53'), - (4826,'2005-07-08 17:44:25',911,180,'2005-07-16 20:14:25',2,'2006-02-15 21:30:53'), - (4827,'2005-07-08 17:46:30',4455,110,'2005-07-11 14:12:30',2,'2006-02-15 21:30:53'), - (4828,'2005-07-08 17:52:29',1100,92,'2005-07-11 14:35:29',1,'2006-02-15 21:30:53'), - (4829,'2005-07-08 17:54:18',2661,133,'2005-07-11 23:41:18',1,'2006-02-15 21:30:53'), - (4830,'2005-07-08 17:56:23',1150,359,'2005-07-17 21:40:23',2,'2006-02-15 21:30:53'), - (4831,'2005-07-08 18:00:14',2739,243,'2005-07-12 15:54:14',2,'2006-02-15 21:30:53'), - (4832,'2005-07-08 18:07:05',1838,509,'2005-07-10 19:37:05',2,'2006-02-15 21:30:53'), - (4833,'2005-07-08 18:07:35',2921,581,'2005-07-13 15:29:35',2,'2006-02-15 21:30:53'), - (4834,'2005-07-08 18:07:45',1288,301,'2005-07-14 15:27:45',1,'2006-02-15 21:30:53'), - (4835,'2005-07-08 18:08:13',2499,95,'2005-07-17 16:51:13',2,'2006-02-15 21:30:53'), - (4836,'2005-07-08 18:09:08',2756,311,'2005-07-15 20:19:08',1,'2006-02-15 21:30:53'), - (4837,'2005-07-08 18:09:12',1944,149,'2005-07-11 16:40:12',1,'2006-02-15 21:30:53'), - (4838,'2005-07-08 18:11:00',3733,84,'2005-07-17 12:57:00',2,'2006-02-15 21:30:53'), - (4839,'2005-07-08 18:13:10',1810,556,'2005-07-15 12:49:10',1,'2006-02-15 21:30:53'), - (4840,'2005-07-08 18:18:16',1670,119,'2005-07-16 14:59:16',1,'2006-02-15 21:30:53'), - (4841,'2005-07-08 18:18:23',518,248,'2005-07-11 16:51:23',2,'2006-02-15 21:30:53'), - (4842,'2005-07-08 18:21:30',1438,160,'2005-07-10 22:25:30',2,'2006-02-15 21:30:53'), - (4843,'2005-07-08 18:27:28',3640,45,'2005-07-15 00:26:28',2,'2006-02-15 21:30:53'), - (4844,'2005-07-08 18:28:13',4057,237,'2005-07-09 21:17:13',2,'2006-02-15 21:30:53'), - (4845,'2005-07-08 18:28:20',2337,553,'2005-07-09 14:38:20',2,'2006-02-15 21:30:53'), - (4846,'2005-07-08 18:29:05',417,556,'2005-07-10 22:33:05',2,'2006-02-15 21:30:53'), - (4847,'2005-07-08 18:29:13',3397,544,'2005-07-15 18:12:13',2,'2006-02-15 21:30:53'), - (4848,'2005-07-08 18:30:16',2962,251,'2005-07-12 19:53:16',2,'2006-02-15 21:30:53'), - (4849,'2005-07-08 18:34:34',4323,146,'2005-07-14 20:27:34',2,'2006-02-15 21:30:53'), - (4850,'2005-07-08 18:39:31',3039,154,'2005-07-13 00:18:31',2,'2006-02-15 21:30:53'), - (4851,'2005-07-08 18:40:05',134,557,'2005-07-12 21:46:05',1,'2006-02-15 21:30:53'), - (4852,'2005-07-08 18:43:15',3545,418,'2005-07-15 18:48:15',2,'2006-02-15 21:30:53'), - (4853,'2005-07-08 18:43:18',1454,23,'2005-07-12 14:28:18',2,'2006-02-15 21:30:53'), - (4854,'2005-07-08 18:44:44',3644,487,'2005-07-13 13:37:44',1,'2006-02-15 21:30:53'), - (4855,'2005-07-08 18:45:50',1146,337,'2005-07-11 18:23:50',2,'2006-02-15 21:30:53'), - (4856,'2005-07-08 18:47:38',2441,7,'2005-07-13 15:02:38',2,'2006-02-15 21:30:53'), - (4857,'2005-07-08 18:52:07',2069,211,'2005-07-11 22:06:07',1,'2006-02-15 21:30:53'), - (4858,'2005-07-08 18:53:24',3424,447,'2005-07-17 20:32:24',2,'2006-02-15 21:30:53'), - (4859,'2005-07-08 18:54:04',1939,369,'2005-07-13 13:04:04',1,'2006-02-15 21:30:53'), - (4860,'2005-07-08 18:54:07',428,123,'2005-07-17 15:09:07',2,'2006-02-15 21:30:53'), - (4861,'2005-07-08 18:57:30',2984,455,'2005-07-16 15:12:30',2,'2006-02-15 21:30:53'), - (4862,'2005-07-08 19:02:46',293,291,'2005-07-17 20:17:46',1,'2006-02-15 21:30:53'), - (4863,'2005-07-08 19:03:15',1,431,'2005-07-11 21:29:15',2,'2006-02-15 21:30:53'), - (4864,'2005-07-08 19:05:34',2974,281,'2005-07-17 15:05:34',2,'2006-02-15 21:30:53'), - (4865,'2005-07-08 19:09:04',1614,418,'2005-07-13 21:25:04',2,'2006-02-15 21:30:53'), - (4866,'2005-07-08 19:09:59',4036,278,'2005-07-15 00:51:59',2,'2006-02-15 21:30:53'), - (4867,'2005-07-08 19:10:52',4090,593,'2005-07-09 21:43:52',2,'2006-02-15 21:30:53'), - (4868,'2005-07-08 19:13:50',1157,307,'2005-07-14 20:59:50',2,'2006-02-15 21:30:53'), - (4869,'2005-07-08 19:14:05',2860,376,'2005-07-15 22:27:05',1,'2006-02-15 21:30:53'), - (4870,'2005-07-08 19:14:45',3089,260,'2005-07-12 18:58:45',2,'2006-02-15 21:30:53'), - (4871,'2005-07-08 19:19:52',2509,210,'2005-07-13 20:27:52',2,'2006-02-15 21:30:53'), - (4872,'2005-07-08 19:23:16',1836,103,'2005-07-10 14:17:16',2,'2006-02-15 21:30:53'), - (4873,'2005-07-08 19:23:32',4500,473,'2005-07-11 15:24:32',1,'2006-02-15 21:30:53'), - (4874,'2005-07-08 19:23:38',2386,223,'2005-07-13 14:39:38',2,'2006-02-15 21:30:53'), - (4875,'2005-07-08 19:24:17',843,555,'2005-07-11 19:15:17',2,'2006-02-15 21:30:53'), - (4876,'2005-07-08 19:27:50',1959,283,'2005-07-14 15:42:50',1,'2006-02-15 21:30:53'), - (4877,'2005-07-08 19:31:02',1846,287,'2005-07-15 19:05:02',1,'2006-02-15 21:30:53'), - (4878,'2005-07-08 19:33:49',4009,172,'2005-07-17 17:47:49',1,'2006-02-15 21:30:53'), - (4879,'2005-07-08 19:34:55',1406,196,'2005-07-09 15:53:55',1,'2006-02-15 21:30:53'), - (4880,'2005-07-08 19:36:17',4178,269,'2005-07-13 00:01:17',1,'2006-02-15 21:30:53'), - (4881,'2005-07-08 19:40:34',4346,349,'2005-07-09 17:08:34',2,'2006-02-15 21:30:53'), - (4882,'2005-07-08 19:42:03',4540,184,'2005-07-16 22:24:03',1,'2006-02-15 21:30:53'), - (4883,'2005-07-08 19:46:58',1366,563,'2005-07-10 15:48:58',1,'2006-02-15 21:30:53'), - (4884,'2005-07-08 19:49:17',3543,425,'2005-07-15 23:14:17',2,'2006-02-15 21:30:53'), - (4885,'2005-07-08 19:51:17',442,233,'2005-07-12 16:02:17',2,'2006-02-15 21:30:53'), - (4886,'2005-07-08 19:53:22',3393,474,'2005-07-09 17:05:22',1,'2006-02-15 21:30:53'), - (4887,'2005-07-08 19:59:14',3613,543,'2005-07-15 22:53:14',1,'2006-02-15 21:30:53'), - (4888,'2005-07-08 20:04:27',1220,527,'2005-07-10 14:53:27',2,'2006-02-15 21:30:53'), - (4889,'2005-07-08 20:04:43',4463,5,'2005-07-13 17:57:43',2,'2006-02-15 21:30:53'), - (4890,'2005-07-08 20:05:38',3576,574,'2005-07-14 14:55:38',2,'2006-02-15 21:30:53'), - (4891,'2005-07-08 20:06:19',1787,59,'2005-07-16 18:52:19',1,'2006-02-15 21:30:53'), - (4892,'2005-07-08 20:06:25',3566,193,'2005-07-14 20:04:25',1,'2006-02-15 21:30:53'), - (4893,'2005-07-08 20:19:55',2060,210,'2005-07-15 21:28:55',2,'2006-02-15 21:30:53'), - (4894,'2005-07-08 20:21:31',1028,286,'2005-07-11 01:59:31',1,'2006-02-15 21:30:53'), - (4895,'2005-07-08 20:22:05',2620,242,'2005-07-12 20:49:05',1,'2006-02-15 21:30:53'), - (4896,'2005-07-08 20:23:15',3006,129,'2005-07-10 15:38:15',1,'2006-02-15 21:30:53'), - (4897,'2005-07-08 20:25:11',2950,258,'2005-07-09 17:16:11',1,'2006-02-15 21:30:53'), - (4898,'2005-07-08 20:31:43',3212,218,'2005-07-15 15:58:43',2,'2006-02-15 21:30:53'), - (4899,'2005-07-08 20:37:11',414,32,'2005-07-10 21:53:11',1,'2006-02-15 21:30:53'), - (4900,'2005-07-08 20:38:06',3487,426,'2005-07-09 22:45:06',2,'2006-02-15 21:30:53'), - (4901,'2005-07-08 20:44:51',2187,507,'2005-07-10 01:04:51',1,'2006-02-15 21:30:53'), - (4902,'2005-07-08 20:49:30',2238,554,'2005-07-13 16:54:30',2,'2006-02-15 21:30:53'), - (4903,'2005-07-08 20:50:05',1769,132,'2005-07-13 15:27:05',1,'2006-02-15 21:30:53'), - (4904,'2005-07-08 20:53:27',2051,173,'2005-07-18 01:16:27',1,'2006-02-15 21:30:53'), - (4905,'2005-07-08 20:56:00',4101,246,'2005-07-12 00:19:00',2,'2006-02-15 21:30:53'), - (4906,'2005-07-08 20:59:13',1527,490,'2005-07-15 01:12:13',2,'2006-02-15 21:30:53'), - (4907,'2005-07-08 21:01:41',1206,209,'2005-07-13 02:23:41',2,'2006-02-15 21:30:53'), - (4908,'2005-07-08 21:05:44',1963,160,'2005-07-17 21:33:44',2,'2006-02-15 21:30:53'), - (4909,'2005-07-08 21:07:24',1451,228,'2005-07-10 22:34:24',1,'2006-02-15 21:30:53'), - (4910,'2005-07-08 21:13:56',3675,219,'2005-07-18 02:39:56',2,'2006-02-15 21:30:53'), - (4911,'2005-07-08 21:20:26',4479,66,'2005-07-15 03:11:26',1,'2006-02-15 21:30:53'), - (4912,'2005-07-08 21:26:11',2012,275,'2005-07-18 02:19:11',1,'2006-02-15 21:30:53'), - (4913,'2005-07-08 21:27:48',982,368,'2005-07-18 02:51:48',1,'2006-02-15 21:30:53'), - (4914,'2005-07-08 21:30:53',298,535,'2005-07-17 01:29:53',1,'2006-02-15 21:30:53'), - (4915,'2005-07-08 21:31:22',2772,178,'2005-07-13 16:45:22',2,'2006-02-15 21:30:53'), - (4916,'2005-07-08 21:32:17',2680,212,'2005-07-14 20:55:17',2,'2006-02-15 21:30:53'), - (4917,'2005-07-08 21:32:30',3231,104,'2005-07-09 15:34:30',1,'2006-02-15 21:30:53'), - (4918,'2005-07-08 21:37:31',3819,220,'2005-07-11 20:16:31',2,'2006-02-15 21:30:53'), - (4919,'2005-07-08 21:41:54',2106,157,'2005-07-11 23:14:54',1,'2006-02-15 21:30:53'), - (4920,'2005-07-08 21:42:10',4285,239,'2005-07-15 03:08:10',1,'2006-02-15 21:30:53'), - (4921,'2005-07-08 21:43:21',425,109,'2005-07-10 16:06:21',2,'2006-02-15 21:30:53'), - (4922,'2005-07-08 21:44:00',2928,577,'2005-07-10 02:58:00',2,'2006-02-15 21:30:53'), - (4923,'2005-07-08 21:44:39',932,18,'2005-07-17 15:50:39',2,'2006-02-15 21:30:53'), - (4924,'2005-07-08 21:55:25',4344,180,'2005-07-16 16:52:25',1,'2006-02-15 21:30:53'), - (4925,'2005-07-08 21:56:00',2169,68,'2005-07-14 17:17:00',2,'2006-02-15 21:30:53'), - (4926,'2005-07-08 22:01:48',4155,415,'2005-07-18 03:27:48',1,'2006-02-15 21:30:53'), - (4927,'2005-07-08 22:05:35',2566,136,'2005-07-14 23:22:35',2,'2006-02-15 21:30:53'), - (4928,'2005-07-08 22:05:41',4363,77,'2005-07-09 23:09:41',2,'2006-02-15 21:30:53'), - (4929,'2005-07-08 22:06:18',734,297,'2005-07-17 18:17:18',2,'2006-02-15 21:30:53'), - (4930,'2005-07-08 22:15:48',2057,451,'2005-07-15 21:02:48',2,'2006-02-15 21:30:53'), - (4931,'2005-07-08 22:16:18',2750,284,'2005-07-17 03:42:18',1,'2006-02-15 21:30:53'), - (4932,'2005-07-08 22:17:40',4237,558,'2005-07-15 22:13:40',2,'2006-02-15 21:30:53'), - (4933,'2005-07-08 22:18:29',322,579,'2005-07-13 03:47:29',2,'2006-02-15 21:30:53'), - (4934,'2005-07-08 22:18:42',1744,517,'2005-07-10 20:44:42',2,'2006-02-15 21:30:53'), - (4935,'2005-07-08 22:20:56',2708,230,'2005-07-12 01:01:56',2,'2006-02-15 21:30:53'), - (4936,'2005-07-08 22:24:50',2033,298,'2005-07-15 03:14:50',2,'2006-02-15 21:30:53'), - (4937,'2005-07-08 22:29:59',33,273,'2005-07-15 21:51:59',2,'2006-02-15 21:30:53'), - (4938,'2005-07-08 22:32:53',2164,418,'2005-07-14 16:48:53',2,'2006-02-15 21:30:53'), - (4939,'2005-07-08 22:35:30',3201,425,'2005-07-17 22:05:30',1,'2006-02-15 21:30:53'), - (4940,'2005-07-08 22:36:06',971,215,'2005-07-15 04:28:06',1,'2006-02-15 21:30:53'), - (4941,'2005-07-08 22:39:10',3816,553,'2005-07-15 17:49:10',2,'2006-02-15 21:30:53'), - (4942,'2005-07-08 22:42:47',4467,120,'2005-07-15 04:36:47',2,'2006-02-15 21:30:53'), - (4943,'2005-07-08 22:43:05',2732,11,'2005-07-15 18:17:05',2,'2006-02-15 21:30:53'), - (4944,'2005-07-08 22:44:28',3648,293,'2005-07-17 21:51:28',2,'2006-02-15 21:30:53'), - (4945,'2005-07-08 22:45:02',2079,165,'2005-07-11 23:59:02',2,'2006-02-15 21:30:53'), - (4946,'2005-07-08 22:46:23',272,440,'2005-07-16 17:19:23',1,'2006-02-15 21:30:53'), - (4947,'2005-07-08 22:49:37',3905,388,'2005-07-17 21:03:37',1,'2006-02-15 21:30:53'), - (4948,'2005-07-08 22:54:21',2972,518,'2005-07-17 03:52:21',2,'2006-02-15 21:30:53'), - (4949,'2005-07-08 22:57:10',1184,567,'2005-07-11 01:26:10',2,'2006-02-15 21:30:53'), - (4950,'2005-07-08 22:58:07',3291,148,'2005-07-09 20:41:07',2,'2006-02-15 21:30:53'), - (4951,'2005-07-08 22:58:21',2766,28,'2005-07-16 18:58:21',1,'2006-02-15 21:30:53'), - (4952,'2005-07-08 23:00:07',459,14,'2005-07-09 21:47:07',1,'2006-02-15 21:30:53'), - (4953,'2005-07-08 23:09:48',2460,168,'2005-07-11 02:08:48',2,'2006-02-15 21:30:53'), - (4954,'2005-07-08 23:14:16',627,99,'2005-07-14 23:23:16',2,'2006-02-15 21:30:53'), - (4955,'2005-07-08 23:16:21',1103,225,'2005-07-14 02:09:21',2,'2006-02-15 21:30:53'), - (4956,'2005-07-08 23:17:10',1512,477,'2005-07-18 00:14:10',1,'2006-02-15 21:30:53'), - (4957,'2005-07-08 23:18:48',4082,399,'2005-07-09 23:13:48',1,'2006-02-15 21:30:53'), - (4958,'2005-07-08 23:19:52',2354,346,'2005-07-17 20:31:52',1,'2006-02-15 21:30:53'), - (4959,'2005-07-08 23:22:23',3898,236,'2005-07-10 03:17:23',2,'2006-02-15 21:30:53'), - (4960,'2005-07-08 23:27:16',2176,434,'2005-07-18 02:01:16',1,'2006-02-15 21:30:53'), - (4961,'2005-07-08 23:35:53',3668,96,'2005-07-14 22:46:53',2,'2006-02-15 21:30:53'), - (4962,'2005-07-08 23:36:13',4399,532,'2005-07-15 03:39:13',1,'2006-02-15 21:30:53'), - (4963,'2005-07-08 23:38:40',737,404,'2005-07-12 05:33:40',2,'2006-02-15 21:30:53'), - (4964,'2005-07-08 23:46:38',1033,455,'2005-07-09 22:19:38',2,'2006-02-15 21:30:53'), - (4965,'2005-07-08 23:46:57',535,432,'2005-07-15 18:47:57',1,'2006-02-15 21:30:53'), - (4966,'2005-07-08 23:47:25',4360,118,'2005-07-14 03:35:25',1,'2006-02-15 21:30:53'), - (4967,'2005-07-08 23:48:03',108,339,'2005-07-15 23:51:03',2,'2006-02-15 21:30:53'), - (4968,'2005-07-08 23:49:19',3204,390,'2005-07-14 02:46:19',1,'2006-02-15 21:30:53'), - (4969,'2005-07-08 23:51:26',4563,231,'2005-07-12 03:21:26',2,'2006-02-15 21:30:53'), - (4970,'2005-07-08 23:54:29',2983,100,'2005-07-16 22:47:29',1,'2006-02-15 21:30:53'), - (4971,'2005-07-08 23:54:49',460,64,'2005-07-16 00:15:49',1,'2006-02-15 21:30:53'), - (4972,'2005-07-08 23:56:09',2451,498,'2005-07-16 19:15:09',1,'2006-02-15 21:30:53'), - (4973,'2005-07-08 23:58:18',391,432,'2005-07-14 21:42:18',1,'2006-02-15 21:30:53'), - (4974,'2005-07-09 00:00:36',1071,152,'2005-07-13 21:03:36',1,'2006-02-15 21:30:53'), - (4975,'2005-07-09 00:02:46',3730,101,'2005-07-14 18:05:46',2,'2006-02-15 21:30:53'), - (4976,'2005-07-09 00:03:30',617,199,'2005-07-10 19:05:30',1,'2006-02-15 21:30:53'), - (4977,'2005-07-09 00:15:50',3310,584,'2005-07-10 00:34:50',2,'2006-02-15 21:30:53'), - (4978,'2005-07-09 00:22:02',2578,279,'2005-07-18 04:37:02',1,'2006-02-15 21:30:53'), - (4979,'2005-07-09 00:24:34',3447,204,'2005-07-12 20:04:34',1,'2006-02-15 21:30:53'), - (4980,'2005-07-09 00:26:59',2638,100,'2005-07-14 19:42:59',1,'2006-02-15 21:30:53'), - (4981,'2005-07-09 00:29:29',3363,399,'2005-07-16 19:06:29',2,'2006-02-15 21:30:53'), - (4982,'2005-07-09 00:30:52',249,162,'2005-07-15 23:50:52',1,'2006-02-15 21:30:53'), - (4983,'2005-07-09 00:34:16',1469,81,'2005-07-17 03:21:16',2,'2006-02-15 21:30:53'), - (4984,'2005-07-09 00:35:31',1303,214,'2005-07-17 03:44:31',1,'2006-02-15 21:30:53'), - (4985,'2005-07-09 00:36:02',2146,208,'2005-07-14 04:06:02',2,'2006-02-15 21:30:53'), - (4986,'2005-07-09 00:44:33',3517,589,'2005-07-09 19:45:33',2,'2006-02-15 21:30:53'), - (4987,'2005-07-09 00:45:41',996,277,'2005-07-14 03:32:41',2,'2006-02-15 21:30:53'), - (4988,'2005-07-09 00:46:14',2718,433,'2005-07-16 01:45:14',2,'2006-02-15 21:30:53'), - (4989,'2005-07-09 00:46:56',3326,210,'2005-07-17 06:24:56',1,'2006-02-15 21:30:53'), - (4990,'2005-07-09 00:48:49',3305,35,'2005-07-10 06:36:49',2,'2006-02-15 21:30:53'), - (4991,'2005-07-09 00:49:03',1856,540,'2005-07-13 05:02:03',1,'2006-02-15 21:30:53'), - (4992,'2005-07-09 00:49:37',2081,315,'2005-07-16 02:05:37',1,'2006-02-15 21:30:53'), - (4993,'2005-07-09 00:49:47',1740,517,'2005-07-11 21:19:47',1,'2006-02-15 21:30:53'), - (4994,'2005-07-09 00:54:13',2546,246,'2005-07-09 21:02:13',1,'2006-02-15 21:30:53'), - (4995,'2005-07-09 00:57:46',2063,247,'2005-07-13 03:32:46',1,'2006-02-15 21:30:53'), - (4996,'2005-07-09 00:59:46',4440,129,'2005-07-16 01:30:46',2,'2006-02-15 21:30:53'), - (4997,'2005-07-09 01:06:03',186,102,'2005-07-18 04:21:03',2,'2006-02-15 21:30:53'), - (4998,'2005-07-09 01:07:21',202,534,'2005-07-10 05:48:21',2,'2006-02-15 21:30:53'), - (4999,'2005-07-09 01:12:57',1797,196,'2005-07-17 00:12:57',1,'2006-02-15 21:30:53'), - (5000,'2005-07-09 01:16:13',668,146,'2005-07-14 21:55:13',1,'2006-02-15 21:30:53'), - (5001,'2005-07-09 01:17:04',2025,40,'2005-07-16 03:25:04',2,'2006-02-15 21:30:53'), - (5002,'2005-07-09 01:17:08',2388,430,'2005-07-15 21:53:08',1,'2006-02-15 21:30:53'), - (5003,'2005-07-09 01:19:03',3438,569,'2005-07-10 04:28:03',2,'2006-02-15 21:30:53'), - (5004,'2005-07-09 01:20:50',2637,382,'2005-07-09 19:56:50',1,'2006-02-15 21:30:53'), - (5005,'2005-07-09 01:21:44',3034,451,'2005-07-14 20:27:44',1,'2006-02-15 21:30:53'), - (5006,'2005-07-09 01:24:07',1277,486,'2005-07-18 03:56:07',1,'2006-02-15 21:30:53'), - (5007,'2005-07-09 01:26:22',3079,207,'2005-07-12 20:48:22',1,'2006-02-15 21:30:53'), - (5008,'2005-07-09 01:31:42',824,509,'2005-07-11 22:34:42',2,'2006-02-15 21:30:53'), - (5009,'2005-07-09 01:32:17',1539,102,'2005-07-18 03:39:17',2,'2006-02-15 21:30:53'), - (5010,'2005-07-09 01:33:23',1999,574,'2005-07-14 04:00:23',2,'2006-02-15 21:30:53'), - (5011,'2005-07-09 01:44:40',463,249,'2005-07-11 00:58:40',2,'2006-02-15 21:30:53'), - (5012,'2005-07-09 01:45:04',1456,251,'2005-07-12 02:13:04',1,'2006-02-15 21:30:53'), - (5013,'2005-07-09 01:46:45',3000,35,'2005-07-16 06:57:45',1,'2006-02-15 21:30:53'), - (5014,'2005-07-09 01:51:49',4095,334,'2005-07-10 04:48:49',1,'2006-02-15 21:30:53'), - (5015,'2005-07-09 01:54:24',1564,178,'2005-07-12 20:07:24',1,'2006-02-15 21:30:53'), - (5016,'2005-07-09 01:57:57',1871,5,'2005-07-09 22:07:57',1,'2006-02-15 21:30:53'), - (5017,'2005-07-09 02:00:16',3745,241,'2005-07-14 06:28:16',1,'2006-02-15 21:30:53'), - (5018,'2005-07-09 02:01:05',2317,541,'2005-07-10 04:09:05',1,'2006-02-15 21:30:53'), - (5019,'2005-07-09 02:04:32',3534,295,'2005-07-15 07:01:32',2,'2006-02-15 21:30:53'), - (5020,'2005-07-09 02:07:56',4113,565,'2005-07-09 23:59:56',1,'2006-02-15 21:30:53'), - (5021,'2005-07-09 02:09:41',3445,73,'2005-07-13 05:47:41',1,'2006-02-15 21:30:53'), - (5022,'2005-07-09 02:10:54',928,499,'2005-07-17 08:07:54',2,'2006-02-15 21:30:53'), - (5023,'2005-07-09 02:23:16',3206,358,'2005-07-15 20:37:16',1,'2006-02-15 21:30:53'), - (5024,'2005-07-09 02:25:12',2987,335,'2005-07-12 03:15:12',1,'2006-02-15 21:30:53'), - (5025,'2005-07-09 02:28:24',153,91,'2005-07-12 04:43:24',2,'2006-02-15 21:30:53'), - (5026,'2005-07-09 02:32:34',989,463,'2005-07-13 04:39:34',2,'2006-02-15 21:30:53'), - (5027,'2005-07-09 02:32:37',2179,109,'2005-07-16 23:13:37',1,'2006-02-15 21:30:53'), - (5028,'2005-07-09 02:34:45',4531,30,'2005-07-14 20:45:45',2,'2006-02-15 21:30:53'), - (5029,'2005-07-09 02:35:32',3938,265,'2005-07-17 22:46:32',1,'2006-02-15 21:30:53'), - (5030,'2005-07-09 02:35:43',25,497,'2005-07-17 02:05:43',1,'2006-02-15 21:30:53'), - (5031,'2005-07-09 02:36:37',4224,312,'2005-07-14 03:09:37',2,'2006-02-15 21:30:53'), - (5032,'2005-07-09 02:39:47',2257,333,'2005-07-10 07:45:47',1,'2006-02-15 21:30:53'), - (5033,'2005-07-09 02:42:01',2841,299,'2005-07-14 00:29:01',1,'2006-02-15 21:30:53'), - (5034,'2005-07-09 02:48:15',340,148,'2005-07-11 23:13:15',2,'2006-02-15 21:30:53'), - (5035,'2005-07-09 02:51:34',3699,99,'2005-07-16 21:38:34',1,'2006-02-15 21:30:53'), - (5036,'2005-07-09 02:58:41',75,573,'2005-07-17 04:09:41',1,'2006-02-15 21:30:53'), - (5037,'2005-07-09 02:59:10',435,524,'2005-07-15 07:54:10',2,'2006-02-15 21:30:53'), - (5038,'2005-07-09 03:12:52',3086,10,'2005-07-17 22:27:52',2,'2006-02-15 21:30:53'), - (5039,'2005-07-09 03:14:45',2020,268,'2005-07-16 06:57:45',2,'2006-02-15 21:30:53'), - (5040,'2005-07-09 03:16:34',2479,405,'2005-07-17 01:13:34',2,'2006-02-15 21:30:53'), - (5041,'2005-07-09 03:18:51',2711,305,'2005-07-13 03:08:51',1,'2006-02-15 21:30:53'), - (5042,'2005-07-09 03:20:30',3609,254,'2005-07-15 07:22:30',1,'2006-02-15 21:30:53'), - (5043,'2005-07-09 03:25:18',2979,369,'2005-07-13 00:57:18',2,'2006-02-15 21:30:53'), - (5044,'2005-07-09 03:30:25',1625,147,'2005-07-11 02:32:25',2,'2006-02-15 21:30:53'), - (5045,'2005-07-09 03:33:32',1041,230,'2005-07-18 06:15:32',1,'2006-02-15 21:30:53'), - (5046,'2005-07-09 03:34:57',1639,227,'2005-07-17 22:36:57',2,'2006-02-15 21:30:53'), - (5047,'2005-07-09 03:44:15',230,272,'2005-07-15 09:07:15',2,'2006-02-15 21:30:53'), - (5048,'2005-07-09 03:46:33',1271,466,'2005-07-15 01:14:33',1,'2006-02-15 21:30:53'), - (5049,'2005-07-09 03:54:12',3336,144,'2005-07-11 22:39:12',2,'2006-02-15 21:30:53'), - (5050,'2005-07-09 03:54:38',3876,337,'2005-07-10 02:23:38',2,'2006-02-15 21:30:53'), - (5051,'2005-07-09 03:57:53',4091,85,'2005-07-16 08:22:53',2,'2006-02-15 21:30:53'), - (5052,'2005-07-09 03:59:43',1884,305,'2005-07-12 05:48:43',1,'2006-02-15 21:30:53'), - (5053,'2005-07-09 03:59:46',570,295,'2005-07-09 23:53:46',2,'2006-02-15 21:30:53'), - (5054,'2005-07-09 04:01:02',4001,135,'2005-07-18 05:16:02',2,'2006-02-15 21:30:53'), - (5055,'2005-07-09 04:05:28',751,54,'2005-07-14 04:26:28',2,'2006-02-15 21:30:53'), - (5056,'2005-07-09 04:13:45',2599,526,'2005-07-10 06:17:45',2,'2006-02-15 21:30:53'), - (5057,'2005-07-09 04:20:29',1076,178,'2005-07-14 23:59:29',1,'2006-02-15 21:30:53'), - (5058,'2005-07-09 04:20:35',917,221,'2005-07-18 08:09:35',2,'2006-02-15 21:30:53'), - (5059,'2005-07-09 04:28:01',3951,396,'2005-07-15 22:57:01',1,'2006-02-15 21:30:53'), - (5060,'2005-07-09 04:28:03',4317,57,'2005-07-12 07:41:03',2,'2006-02-15 21:30:53'), - (5061,'2005-07-09 04:30:50',3893,230,'2005-07-12 03:24:50',1,'2006-02-15 21:30:53'), - (5062,'2005-07-09 04:36:49',2190,141,'2005-07-10 06:26:49',1,'2006-02-15 21:30:53'), - (5063,'2005-07-09 04:37:31',1027,133,'2005-07-13 09:56:31',2,'2006-02-15 21:30:53'), - (5064,'2005-07-09 04:38:51',373,512,'2005-07-18 00:33:51',2,'2006-02-15 21:30:53'), - (5065,'2005-07-09 04:42:00',1788,599,'2005-07-12 08:55:00',1,'2006-02-15 21:30:53'), - (5066,'2005-07-09 04:48:50',1702,169,'2005-07-12 22:54:50',2,'2006-02-15 21:30:53'), - (5067,'2005-07-09 04:52:35',1480,225,'2005-07-11 23:33:35',2,'2006-02-15 21:30:53'), - (5068,'2005-07-09 04:53:18',2937,10,'2005-07-13 09:21:18',1,'2006-02-15 21:30:53'), - (5069,'2005-07-09 04:56:30',4417,183,'2005-07-13 23:53:30',2,'2006-02-15 21:30:53'), - (5070,'2005-07-09 04:58:26',2305,407,'2005-07-09 23:00:26',2,'2006-02-15 21:30:53'), - (5071,'2005-07-09 05:00:39',4358,12,'2005-07-09 23:08:39',1,'2006-02-15 21:30:53'), - (5072,'2005-07-09 05:01:58',94,254,'2005-07-18 08:17:58',2,'2006-02-15 21:30:53'), - (5073,'2005-07-09 05:02:35',546,408,'2005-07-15 01:22:35',2,'2006-02-15 21:30:53'), - (5074,'2005-07-09 05:06:24',1379,12,'2005-07-12 04:37:24',1,'2006-02-15 21:30:53'), - (5075,'2005-07-09 05:12:07',903,170,'2005-07-12 08:29:07',1,'2006-02-15 21:30:53'), - (5076,'2005-07-09 05:13:22',4388,574,'2005-07-16 09:11:22',1,'2006-02-15 21:30:53'), - (5077,'2005-07-09 05:18:01',686,574,'2005-07-17 10:39:01',2,'2006-02-15 21:30:53'), - (5078,'2005-07-09 05:20:24',1994,78,'2005-07-13 06:41:24',2,'2006-02-15 21:30:53'), - (5079,'2005-07-09 05:20:40',3948,566,'2005-07-17 00:06:40',1,'2006-02-15 21:30:53'), - (5080,'2005-07-09 05:23:55',635,254,'2005-07-11 05:56:55',2,'2006-02-15 21:30:53'), - (5081,'2005-07-09 05:25:20',1953,420,'2005-07-13 23:45:20',1,'2006-02-15 21:30:53'), - (5082,'2005-07-09 05:28:38',1584,470,'2005-07-10 02:46:38',2,'2006-02-15 21:30:53'), - (5083,'2005-07-09 05:30:32',148,494,'2005-07-11 02:20:32',1,'2006-02-15 21:30:53'), - (5084,'2005-07-09 05:33:27',3113,87,'2005-07-17 08:54:27',2,'2006-02-15 21:30:53'), - (5085,'2005-07-09 05:36:49',4164,437,'2005-07-13 09:26:49',1,'2006-02-15 21:30:53'), - (5086,'2005-07-09 05:40:04',3072,539,'2005-07-16 07:51:04',1,'2006-02-15 21:30:53'), - (5087,'2005-07-09 05:44:28',3716,395,'2005-07-10 02:25:28',2,'2006-02-15 21:30:53'), - (5088,'2005-07-09 05:45:16',3324,454,'2005-07-15 00:41:16',2,'2006-02-15 21:30:53'), - (5089,'2005-07-09 05:45:40',451,289,'2005-07-15 05:31:40',1,'2006-02-15 21:30:53'), - (5090,'2005-07-09 05:48:22',1728,296,'2005-07-11 06:50:22',2,'2006-02-15 21:30:53'), - (5091,'2005-07-09 05:52:54',4572,149,'2005-07-10 02:49:54',1,'2006-02-15 21:30:53'), - (5092,'2005-07-09 05:57:39',3256,139,'2005-07-12 00:45:39',2,'2006-02-15 21:30:53'), - (5093,'2005-07-09 05:59:12',2734,597,'2005-07-10 11:45:12',2,'2006-02-15 21:30:53'), - (5094,'2005-07-09 05:59:47',4451,178,'2005-07-18 05:34:47',2,'2006-02-15 21:30:53'), - (5095,'2005-07-09 06:08:22',2788,292,'2005-07-11 10:52:22',1,'2006-02-15 21:30:53'), - (5096,'2005-07-09 06:08:23',490,231,'2005-07-14 11:36:23',1,'2006-02-15 21:30:53'), - (5097,'2005-07-09 06:09:51',3252,343,'2005-07-10 03:55:51',2,'2006-02-15 21:30:53'), - (5098,'2005-07-09 06:13:54',1772,406,'2005-07-10 04:27:54',1,'2006-02-15 21:30:53'), - (5099,'2005-07-09 06:14:30',768,393,'2005-07-12 08:23:30',2,'2006-02-15 21:30:53'), - (5100,'2005-07-09 06:16:03',3193,101,'2005-07-10 10:21:03',1,'2006-02-15 21:30:53'), - (5101,'2005-07-09 06:21:29',2737,154,'2005-07-11 02:58:29',1,'2006-02-15 21:30:53'), - (5102,'2005-07-09 06:25:48',242,316,'2005-07-16 11:32:48',2,'2006-02-15 21:30:53'), - (5103,'2005-07-09 06:34:40',2390,397,'2005-07-10 03:44:40',2,'2006-02-15 21:30:53'), - (5104,'2005-07-09 06:37:07',2109,14,'2005-07-14 12:32:07',1,'2006-02-15 21:30:53'), - (5105,'2005-07-09 06:38:59',2555,290,'2005-07-17 03:06:59',2,'2006-02-15 21:30:53'), - (5106,'2005-07-09 06:40:24',110,137,'2005-07-13 10:28:24',1,'2006-02-15 21:30:53'), - (5107,'2005-07-09 06:42:32',1697,21,'2005-07-10 08:21:32',2,'2006-02-15 21:30:53'), - (5108,'2005-07-09 06:44:30',4229,30,'2005-07-17 04:24:30',1,'2006-02-15 21:30:53'), - (5109,'2005-07-09 06:48:49',2373,102,'2005-07-14 01:17:49',1,'2006-02-15 21:30:53'), - (5110,'2005-07-09 06:57:25',195,200,'2005-07-12 05:39:25',2,'2006-02-15 21:30:53'), - (5111,'2005-07-09 07:02:19',2875,12,'2005-07-10 06:27:19',2,'2006-02-15 21:30:53'), - (5112,'2005-07-09 07:04:04',3529,285,'2005-07-13 08:42:04',1,'2006-02-15 21:30:53'), - (5113,'2005-07-09 07:06:18',3618,282,'2005-07-13 07:10:18',2,'2006-02-15 21:30:53'), - (5114,'2005-07-09 07:07:05',3734,64,'2005-07-15 03:06:05',1,'2006-02-15 21:30:53'), - (5115,'2005-07-09 07:07:18',2296,212,'2005-07-16 03:28:18',2,'2006-02-15 21:30:53'), - (5116,'2005-07-09 07:10:12',2491,332,'2005-07-14 09:16:12',2,'2006-02-15 21:30:53'), - (5117,'2005-07-09 07:11:22',2284,208,'2005-07-15 08:44:22',1,'2006-02-15 21:30:53'), - (5118,'2005-07-09 07:13:52',957,5,'2005-07-18 05:18:52',2,'2006-02-15 21:30:53'), - (5119,'2005-07-09 07:14:18',2996,301,'2005-07-18 04:07:18',1,'2006-02-15 21:30:53'), - (5120,'2005-07-09 07:14:23',4431,373,'2005-07-14 04:00:23',2,'2006-02-15 21:30:53'), - (5121,'2005-07-09 07:18:31',3321,526,'2005-07-15 01:48:31',1,'2006-02-15 21:30:53'), - (5122,'2005-07-09 07:19:35',1423,261,'2005-07-16 03:04:35',2,'2006-02-15 21:30:53'), - (5123,'2005-07-09 07:20:30',4278,219,'2005-07-14 05:24:30',1,'2006-02-15 21:30:53'), - (5124,'2005-07-09 07:25:19',1857,565,'2005-07-15 01:51:19',1,'2006-02-15 21:30:53'), - (5125,'2005-07-09 07:25:28',990,263,'2005-07-12 12:34:28',1,'2006-02-15 21:30:53'), - (5126,'2005-07-09 07:25:35',3312,315,'2005-07-18 05:05:35',1,'2006-02-15 21:30:53'), - (5127,'2005-07-09 07:25:47',3649,129,'2005-07-13 11:44:47',2,'2006-02-15 21:30:53'), - (5128,'2005-07-09 07:25:54',3757,155,'2005-07-16 04:04:54',2,'2006-02-15 21:30:53'), - (5129,'2005-07-09 07:28:33',4516,441,'2005-07-14 05:12:33',2,'2006-02-15 21:30:53'), - (5130,'2005-07-09 07:29:45',3264,93,'2005-07-13 05:56:45',1,'2006-02-15 21:30:53'), - (5131,'2005-07-09 07:35:03',3179,167,'2005-07-10 06:05:03',1,'2006-02-15 21:30:53'), - (5132,'2005-07-09 07:40:32',4158,101,'2005-07-16 02:16:32',2,'2006-02-15 21:30:53'), - (5133,'2005-07-09 07:43:22',3403,469,'2005-07-12 04:52:22',1,'2006-02-15 21:30:53'), - (5134,'2005-07-09 07:53:12',149,491,'2005-07-16 05:30:12',1,'2006-02-15 21:30:53'), - (5135,'2005-07-09 07:53:22',3005,538,'2005-07-16 04:50:22',2,'2006-02-15 21:30:53'), - (5136,'2005-07-09 07:55:01',3498,395,'2005-07-11 05:26:01',2,'2006-02-15 21:30:53'), - (5137,'2005-07-09 08:00:34',409,126,'2005-07-12 05:34:34',1,'2006-02-15 21:30:53'), - (5138,'2005-07-09 08:00:46',1283,548,'2005-07-12 09:31:46',2,'2006-02-15 21:30:53'), - (5139,'2005-07-09 08:01:51',51,539,'2005-07-18 09:16:51',2,'2006-02-15 21:30:53'), - (5140,'2005-07-09 08:04:59',947,303,'2005-07-11 08:28:59',2,'2006-02-15 21:30:53'), - (5141,'2005-07-09 08:05:14',590,488,'2005-07-18 04:36:14',1,'2006-02-15 21:30:53'), - (5142,'2005-07-09 08:05:23',369,56,'2005-07-13 12:37:23',2,'2006-02-15 21:30:53'), - (5143,'2005-07-09 08:07:07',3803,196,'2005-07-18 10:17:07',1,'2006-02-15 21:30:53'), - (5144,'2005-07-09 08:09:53',3530,89,'2005-07-18 07:11:53',2,'2006-02-15 21:30:53'), - (5145,'2005-07-09 08:13:25',2397,204,'2005-07-10 03:56:25',2,'2006-02-15 21:30:53'), - (5146,'2005-07-09 08:14:58',776,194,'2005-07-11 07:04:58',1,'2006-02-15 21:30:53'), - (5147,'2005-07-09 08:17:41',2270,326,'2005-07-18 09:45:41',2,'2006-02-15 21:30:53'), - (5148,'2005-07-09 08:22:46',456,48,'2005-07-18 04:36:46',1,'2006-02-15 21:30:53'), - (5149,'2005-07-09 08:28:23',1500,330,'2005-07-16 06:19:23',2,'2006-02-15 21:30:53'), - (5150,'2005-07-09 08:28:40',1961,410,'2005-07-16 04:47:40',1,'2006-02-15 21:30:53'), - (5151,'2005-07-09 08:31:03',224,228,'2005-07-10 08:18:03',2,'2006-02-15 21:30:53'), - (5152,'2005-07-09 08:34:44',4005,331,'2005-07-10 05:26:44',1,'2006-02-15 21:30:53'), - (5153,'2005-07-09 08:35:05',2826,504,'2005-07-18 14:21:05',1,'2006-02-15 21:30:53'), - (5154,'2005-07-09 08:46:18',3785,361,'2005-07-14 03:19:18',1,'2006-02-15 21:30:53'), - (5155,'2005-07-09 08:46:54',988,523,'2005-07-14 04:13:54',1,'2006-02-15 21:30:53'), - (5156,'2005-07-09 08:51:42',416,5,'2005-07-15 03:59:42',2,'2006-02-15 21:30:53'), - (5157,'2005-07-09 08:52:12',637,463,'2005-07-12 04:32:12',2,'2006-02-15 21:30:53'), - (5158,'2005-07-09 08:53:09',2825,272,'2005-07-10 11:05:09',1,'2006-02-15 21:30:53'), - (5159,'2005-07-09 08:55:52',3479,213,'2005-07-10 04:32:52',1,'2006-02-15 21:30:53'), - (5160,'2005-07-09 08:57:07',1925,467,'2005-07-18 06:01:07',1,'2006-02-15 21:30:53'), - (5161,'2005-07-09 08:57:56',2617,284,'2005-07-18 07:41:56',2,'2006-02-15 21:30:53'), - (5162,'2005-07-09 09:00:11',2765,43,'2005-07-17 07:26:11',1,'2006-02-15 21:30:53'), - (5163,'2005-07-09 09:00:28',1486,103,'2005-07-17 08:07:28',2,'2006-02-15 21:30:53'), - (5164,'2005-07-09 09:03:14',1170,511,'2005-07-14 04:20:14',1,'2006-02-15 21:30:53'), - (5165,'2005-07-09 09:08:53',280,590,'2005-07-14 06:01:53',1,'2006-02-15 21:30:53'), - (5166,'2005-07-09 09:15:48',2771,298,'2005-07-16 06:04:48',1,'2006-02-15 21:30:53'), - (5167,'2005-07-09 09:18:43',2485,437,'2005-07-14 12:59:43',2,'2006-02-15 21:30:53'), - (5168,'2005-07-09 09:20:01',4096,420,'2005-07-11 14:42:01',1,'2006-02-15 21:30:53'), - (5169,'2005-07-09 09:22:25',2608,116,'2005-07-10 03:48:25',1,'2006-02-15 21:30:53'), - (5170,'2005-07-09 09:24:19',66,209,'2005-07-18 04:02:19',1,'2006-02-15 21:30:53'), - (5171,'2005-07-09 09:26:55',2099,371,'2005-07-10 10:34:55',1,'2006-02-15 21:30:53'), - (5172,'2005-07-09 09:31:27',4046,214,'2005-07-13 04:03:27',1,'2006-02-15 21:30:53'), - (5173,'2005-07-09 09:31:44',2848,490,'2005-07-15 04:20:44',2,'2006-02-15 21:30:53'), - (5174,'2005-07-09 09:31:59',3621,47,'2005-07-15 03:49:59',1,'2006-02-15 21:30:53'), - (5175,'2005-07-09 09:34:28',1003,409,'2005-07-15 15:19:28',2,'2006-02-15 21:30:53'), - (5176,'2005-07-09 09:39:31',328,119,'2005-07-17 11:56:31',2,'2006-02-15 21:30:53'), - (5177,'2005-07-09 09:43:21',1675,452,'2005-07-13 07:29:21',1,'2006-02-15 21:30:53'), - (5178,'2005-07-09 09:59:52',1750,167,'2005-07-18 13:01:52',2,'2006-02-15 21:30:53'), - (5179,'2005-07-09 10:00:44',2995,256,'2005-07-11 06:52:44',1,'2006-02-15 21:30:53'), - (5180,'2005-07-09 10:06:53',3684,494,'2005-07-12 15:25:53',1,'2006-02-15 21:30:53'), - (5181,'2005-07-09 10:07:27',2569,45,'2005-07-17 10:18:27',2,'2006-02-15 21:30:53'), - (5182,'2005-07-09 10:08:10',725,197,'2005-07-16 14:36:10',2,'2006-02-15 21:30:53'), - (5183,'2005-07-09 10:13:45',2866,394,'2005-07-16 15:55:45',2,'2006-02-15 21:30:53'), - (5184,'2005-07-09 10:14:34',1101,166,'2005-07-14 16:05:34',2,'2006-02-15 21:30:53'), - (5185,'2005-07-09 10:14:39',357,53,'2005-07-10 13:31:39',1,'2006-02-15 21:30:53'), - (5186,'2005-07-09 10:18:40',2415,276,'2005-07-13 05:05:40',2,'2006-02-15 21:30:53'), - (5187,'2005-07-09 10:19:51',2631,91,'2005-07-14 10:35:51',1,'2006-02-15 21:30:53'), - (5188,'2005-07-09 10:22:31',3265,34,'2005-07-13 04:41:31',1,'2006-02-15 21:30:53'), - (5189,'2005-07-09 10:23:21',2539,113,'2005-07-14 08:06:21',1,'2006-02-15 21:30:53'), - (5190,'2005-07-09 10:25:24',2213,532,'2005-07-18 04:33:24',1,'2006-02-15 21:30:53'), - (5191,'2005-07-09 10:26:48',2131,167,'2005-07-10 15:52:48',2,'2006-02-15 21:30:53'), - (5192,'2005-07-09 10:27:09',1225,410,'2005-07-10 12:04:09',1,'2006-02-15 21:30:53'), - (5193,'2005-07-09 10:28:18',2166,485,'2005-07-12 12:18:18',1,'2006-02-15 21:30:53'), - (5194,'2005-07-09 10:31:34',3809,202,'2005-07-15 08:50:34',2,'2006-02-15 21:30:53'), - (5195,'2005-07-09 10:39:31',3399,59,'2005-07-18 13:54:31',1,'2006-02-15 21:30:53'), - (5196,'2005-07-09 10:43:34',2278,536,'2005-07-13 12:10:34',2,'2006-02-15 21:30:53'), - (5197,'2005-07-09 10:43:54',1571,541,'2005-07-16 10:19:54',1,'2006-02-15 21:30:53'), - (5198,'2005-07-09 10:49:10',218,101,'2005-07-13 04:52:10',1,'2006-02-15 21:30:53'), - (5199,'2005-07-09 10:50:56',349,42,'2005-07-10 06:43:56',1,'2006-02-15 21:30:53'), - (5200,'2005-07-09 10:52:09',4528,125,'2005-07-13 15:12:09',1,'2006-02-15 21:30:53'), - (5201,'2005-07-09 10:52:53',2453,551,'2005-07-16 12:41:53',2,'2006-02-15 21:30:53'), - (5202,'2005-07-09 10:53:48',3417,321,'2005-07-15 13:31:48',1,'2006-02-15 21:30:53'), - (5203,'2005-07-09 10:53:59',3661,588,'2005-07-15 09:45:59',2,'2006-02-15 21:30:53'), - (5204,'2005-07-09 10:54:14',1791,432,'2005-07-12 14:29:14',2,'2006-02-15 21:30:53'), - (5205,'2005-07-09 10:56:37',161,79,'2005-07-13 05:45:37',1,'2006-02-15 21:30:53'), - (5206,'2005-07-09 11:11:01',692,517,'2005-07-17 07:23:01',2,'2006-02-15 21:30:53'), - (5207,'2005-07-09 11:15:44',3496,59,'2005-07-17 06:00:44',1,'2006-02-15 21:30:53'), - (5208,'2005-07-09 11:16:56',1881,560,'2005-07-10 07:21:56',2,'2006-02-15 21:30:53'), - (5209,'2005-07-09 11:22:39',4441,222,'2005-07-17 09:31:39',1,'2006-02-15 21:30:53'), - (5210,'2005-07-09 11:24:19',4514,355,'2005-07-11 06:27:19',1,'2006-02-15 21:30:53'), - (5211,'2005-07-09 11:26:50',2216,241,'2005-07-16 15:30:50',1,'2006-02-15 21:30:53'), - (5212,'2005-07-09 11:37:47',3240,400,'2005-07-15 14:42:47',1,'2006-02-15 21:30:53'), - (5213,'2005-07-09 11:39:43',3708,552,'2005-07-18 16:20:43',2,'2006-02-15 21:30:53'), - (5214,'2005-07-09 11:43:08',1657,290,'2005-07-17 08:58:08',2,'2006-02-15 21:30:53'), - (5215,'2005-07-09 11:47:58',3888,528,'2005-07-18 09:58:58',1,'2006-02-15 21:30:53'), - (5216,'2005-07-09 11:54:58',1644,515,'2005-07-12 09:46:58',2,'2006-02-15 21:30:53'), - (5217,'2005-07-09 11:56:50',4150,430,'2005-07-17 07:10:50',1,'2006-02-15 21:30:53'), - (5218,'2005-07-09 11:57:12',1121,83,'2005-07-13 06:34:12',2,'2006-02-15 21:30:53'), - (5219,'2005-07-09 11:57:55',3933,209,'2005-07-15 09:43:55',2,'2006-02-15 21:30:53'), - (5220,'2005-07-09 11:59:04',2577,435,'2005-07-15 06:20:04',1,'2006-02-15 21:30:53'), - (5221,'2005-07-09 12:02:23',2339,84,'2005-07-16 15:43:23',1,'2006-02-15 21:30:53'), - (5222,'2005-07-09 12:05:45',2508,400,'2005-07-13 12:11:45',1,'2006-02-15 21:30:53'), - (5223,'2005-07-09 12:06:03',2335,72,'2005-07-17 15:50:03',1,'2006-02-15 21:30:53'), - (5224,'2005-07-09 12:07:27',279,311,'2005-07-17 08:59:27',1,'2006-02-15 21:30:53'), - (5225,'2005-07-09 12:10:16',703,445,'2005-07-12 09:55:16',2,'2006-02-15 21:30:53'), - (5226,'2005-07-09 12:10:44',3128,218,'2005-07-11 17:32:44',2,'2006-02-15 21:30:53'), - (5227,'2005-07-09 12:16:39',1862,362,'2005-07-18 15:38:39',2,'2006-02-15 21:30:53'), - (5228,'2005-07-09 12:26:01',622,195,'2005-07-14 13:31:01',2,'2006-02-15 21:30:53'), - (5229,'2005-07-09 12:30:18',4472,372,'2005-07-14 15:31:18',2,'2006-02-15 21:30:53'), - (5230,'2005-07-09 12:30:23',3707,51,'2005-07-13 08:41:23',1,'2006-02-15 21:30:53'), - (5231,'2005-07-09 12:35:02',1275,405,'2005-07-10 09:22:02',1,'2006-02-15 21:30:53'), - (5232,'2005-07-09 12:35:08',3353,175,'2005-07-14 14:55:08',1,'2006-02-15 21:30:53'), - (5233,'2005-07-09 12:44:26',1401,131,'2005-07-15 12:31:26',1,'2006-02-15 21:30:53'), - (5234,'2005-07-09 12:44:47',4182,398,'2005-07-17 10:02:47',1,'2006-02-15 21:30:53'), - (5235,'2005-07-09 12:54:25',1044,122,'2005-07-18 16:28:25',1,'2006-02-15 21:30:53'), - (5236,'2005-07-09 12:56:29',1215,519,'2005-07-13 08:26:29',1,'2006-02-15 21:30:53'), - (5237,'2005-07-09 12:56:58',2341,84,'2005-07-11 15:41:58',1,'2006-02-15 21:30:53'), - (5238,'2005-07-09 13:11:14',3297,100,'2005-07-10 07:27:14',2,'2006-02-15 21:30:53'), - (5239,'2005-07-09 13:12:35',380,497,'2005-07-10 13:37:35',1,'2006-02-15 21:30:53'), - (5240,'2005-07-09 13:14:48',1378,350,'2005-07-10 18:47:48',2,'2006-02-15 21:30:53'), - (5241,'2005-07-09 13:19:14',4079,314,'2005-07-11 14:32:14',1,'2006-02-15 21:30:53'), - (5242,'2005-07-09 13:20:25',848,12,'2005-07-18 07:38:25',1,'2006-02-15 21:30:53'), - (5243,'2005-07-09 13:22:08',122,587,'2005-07-16 09:25:08',1,'2006-02-15 21:30:53'), - (5244,'2005-07-09 13:24:07',3726,1,'2005-07-14 14:01:07',2,'2006-02-15 21:30:53'), - (5245,'2005-07-09 13:24:14',3547,115,'2005-07-12 11:16:14',1,'2006-02-15 21:30:53'), - (5246,'2005-07-09 13:25:18',3548,276,'2005-07-13 18:38:18',1,'2006-02-15 21:30:53'), - (5247,'2005-07-09 13:26:28',1186,298,'2005-07-12 14:00:28',2,'2006-02-15 21:30:53'), - (5248,'2005-07-09 13:29:44',246,279,'2005-07-12 18:12:44',1,'2006-02-15 21:30:53'), - (5249,'2005-07-09 13:33:53',1950,389,'2005-07-11 12:55:53',2,'2006-02-15 21:30:53'), - (5250,'2005-07-09 13:35:32',2162,384,'2005-07-13 12:19:32',1,'2006-02-15 21:30:53'), - (5251,'2005-07-09 13:36:10',478,474,'2005-07-15 11:40:10',1,'2006-02-15 21:30:53'), - (5252,'2005-07-09 13:40:44',2581,335,'2005-07-14 09:41:44',1,'2006-02-15 21:30:53'), - (5253,'2005-07-09 13:41:17',2241,532,'2005-07-17 17:09:17',1,'2006-02-15 21:30:53'), - (5254,'2005-07-09 13:50:11',654,263,'2005-07-13 09:07:11',1,'2006-02-15 21:30:53'), - (5255,'2005-07-09 13:51:08',4418,313,'2005-07-17 13:58:08',2,'2006-02-15 21:30:53'), - (5256,'2005-07-09 13:55:45',4226,273,'2005-07-15 17:02:45',1,'2006-02-15 21:30:53'), - (5257,'2005-07-09 13:56:43',286,292,'2005-07-10 14:26:43',2,'2006-02-15 21:30:53'), - (5258,'2005-07-09 13:56:56',3125,207,'2005-07-11 16:01:56',2,'2006-02-15 21:30:53'), - (5259,'2005-07-09 14:02:50',1310,207,'2005-07-11 19:13:50',2,'2006-02-15 21:30:53'), - (5260,'2005-07-09 14:05:45',3143,75,'2005-07-14 08:41:45',2,'2006-02-15 21:30:53'), - (5261,'2005-07-09 14:06:56',2899,105,'2005-07-11 14:21:56',2,'2006-02-15 21:30:53'), - (5262,'2005-07-09 14:08:01',1092,240,'2005-07-12 16:48:01',1,'2006-02-15 21:30:53'), - (5263,'2005-07-09 14:10:36',119,406,'2005-07-12 15:07:36',1,'2006-02-15 21:30:53'), - (5264,'2005-07-09 14:11:28',3307,545,'2005-07-12 18:24:28',2,'2006-02-15 21:30:53'), - (5265,'2005-07-09 14:15:01',4482,139,'2005-07-18 14:43:01',2,'2006-02-15 21:30:53'), - (5266,'2005-07-09 14:17:40',2409,222,'2005-07-16 10:42:40',1,'2006-02-15 21:30:53'), - (5267,'2005-07-09 14:21:10',2242,233,'2005-07-15 12:02:10',1,'2006-02-15 21:30:53'), - (5268,'2005-07-09 14:22:43',1083,119,'2005-07-12 08:27:43',1,'2006-02-15 21:30:53'), - (5269,'2005-07-09 14:23:05',3886,230,'2005-07-17 14:03:05',1,'2006-02-15 21:30:53'), - (5270,'2005-07-09 14:23:46',1523,128,'2005-07-13 15:04:46',1,'2006-02-15 21:30:53'), - (5271,'2005-07-09 14:25:01',2691,522,'2005-07-16 17:28:01',1,'2006-02-15 21:30:53'), - (5272,'2005-07-09 14:26:01',1547,90,'2005-07-12 20:20:01',1,'2006-02-15 21:30:53'), - (5273,'2005-07-09 14:31:24',4570,38,'2005-07-14 13:27:24',2,'2006-02-15 21:30:53'), - (5274,'2005-07-09 14:34:09',4579,108,'2005-07-14 13:02:09',1,'2006-02-15 21:30:53'), - (5275,'2005-07-09 14:34:18',729,249,'2005-07-13 12:56:18',2,'2006-02-15 21:30:53'), - (5276,'2005-07-09 14:35:13',2524,521,'2005-07-12 14:24:13',2,'2006-02-15 21:30:53'), - (5277,'2005-07-09 14:40:42',2026,332,'2005-07-16 14:18:42',2,'2006-02-15 21:30:53'), - (5278,'2005-07-09 14:44:23',2573,532,'2005-07-15 10:48:23',1,'2006-02-15 21:30:53'), - (5279,'2005-07-09 14:46:36',709,64,'2005-07-17 10:04:36',2,'2006-02-15 21:30:53'), - (5280,'2005-07-09 14:55:07',1177,351,'2005-07-12 10:05:07',2,'2006-02-15 21:30:53'), - (5281,'2005-07-09 14:55:07',1966,71,'2005-07-13 15:24:07',2,'2006-02-15 21:30:53'), - (5282,'2005-07-09 15:01:23',4386,226,'2005-07-13 11:06:23',2,'2006-02-15 21:30:53'), - (5283,'2005-07-09 15:07:17',644,295,'2005-07-17 09:52:17',2,'2006-02-15 21:30:53'), - (5284,'2005-07-09 15:08:21',1036,585,'2005-07-16 09:53:21',2,'2006-02-15 21:30:53'), - (5285,'2005-07-09 15:10:44',676,468,'2005-07-16 13:02:44',2,'2006-02-15 21:30:53'), - (5286,'2005-07-09 15:11:41',483,498,'2005-07-10 19:19:41',2,'2006-02-15 21:30:53'), - (5287,'2005-07-09 15:11:54',3110,523,'2005-07-16 16:05:54',2,'2006-02-15 21:30:53'), - (5288,'2005-07-09 15:13:07',850,120,'2005-07-16 12:39:07',1,'2006-02-15 21:30:53'), - (5289,'2005-07-09 15:14:08',4336,30,'2005-07-12 12:51:08',2,'2006-02-15 21:30:53'), - (5290,'2005-07-09 15:14:47',277,50,'2005-07-11 20:30:47',2,'2006-02-15 21:30:53'), - (5291,'2005-07-09 15:15:02',1367,194,'2005-07-15 10:22:02',2,'2006-02-15 21:30:53'), - (5292,'2005-07-09 15:16:54',3195,62,'2005-07-11 15:21:54',1,'2006-02-15 21:30:53'), - (5293,'2005-07-09 15:17:23',2880,542,'2005-07-11 11:23:23',2,'2006-02-15 21:30:53'), - (5294,'2005-07-09 15:23:42',3237,22,'2005-07-15 15:28:42',2,'2006-02-15 21:30:53'), - (5295,'2005-07-09 15:25:06',4460,86,'2005-07-10 12:40:06',1,'2006-02-15 21:30:53'), - (5296,'2005-07-09 15:26:27',495,109,'2005-07-15 10:03:27',2,'2006-02-15 21:30:53'), - (5297,'2005-07-09 15:32:29',3434,202,'2005-07-14 14:58:29',1,'2006-02-15 21:30:53'), - (5298,'2005-07-09 15:36:17',3491,149,'2005-07-18 19:07:17',2,'2006-02-15 21:30:53'), - (5299,'2005-07-09 15:38:09',4416,469,'2005-07-15 16:39:09',2,'2006-02-15 21:30:53'), - (5300,'2005-07-09 15:40:46',2520,8,'2005-07-15 13:46:46',1,'2006-02-15 21:30:53'), - (5301,'2005-07-09 15:42:10',245,459,'2005-07-16 21:27:10',2,'2006-02-15 21:30:53'), - (5302,'2005-07-09 15:42:36',4270,72,'2005-07-10 21:04:36',2,'2006-02-15 21:30:53'), - (5303,'2005-07-09 15:44:09',3572,350,'2005-07-15 18:09:09',2,'2006-02-15 21:30:53'), - (5304,'2005-07-09 15:48:06',4411,51,'2005-07-14 19:29:06',1,'2006-02-15 21:30:53'), - (5305,'2005-07-09 15:55:36',625,309,'2005-07-18 15:59:36',1,'2006-02-15 21:30:53'), - (5306,'2005-07-09 15:56:45',2221,409,'2005-07-15 19:02:45',2,'2006-02-15 21:30:53'), - (5307,'2005-07-09 15:57:15',2847,32,'2005-07-17 13:42:15',2,'2006-02-15 21:30:53'), - (5308,'2005-07-09 15:58:38',1684,52,'2005-07-15 13:55:38',2,'2006-02-15 21:30:53'), - (5309,'2005-07-09 16:00:16',4026,338,'2005-07-17 17:56:16',1,'2006-02-15 21:30:53'), - (5310,'2005-07-09 16:00:34',1565,24,'2005-07-12 12:45:34',2,'2006-02-15 21:30:53'), - (5311,'2005-07-09 16:02:54',986,107,'2005-07-18 10:44:54',1,'2006-02-15 21:30:53'), - (5312,'2005-07-09 16:03:09',2123,258,'2005-07-13 16:41:09',2,'2006-02-15 21:30:53'), - (5313,'2005-07-09 16:04:45',1885,52,'2005-07-17 18:53:45',2,'2006-02-15 21:30:53'), - (5314,'2005-07-09 16:05:28',3770,372,'2005-07-10 18:18:28',1,'2006-02-15 21:30:53'), - (5315,'2005-07-09 16:09:19',585,134,'2005-07-14 21:10:19',1,'2006-02-15 21:30:53'), - (5316,'2005-07-09 16:09:42',3856,438,'2005-07-11 15:20:42',1,'2006-02-15 21:30:53'), - (5317,'2005-07-09 16:10:25',2693,14,'2005-07-18 17:10:25',2,'2006-02-15 21:30:53'), - (5318,'2005-07-09 16:11:33',1738,472,'2005-07-14 12:49:33',2,'2006-02-15 21:30:53'), - (5319,'2005-07-09 16:17:44',1899,282,'2005-07-18 16:35:44',1,'2006-02-15 21:30:53'), - (5320,'2005-07-09 16:23:32',3140,228,'2005-07-18 18:16:32',1,'2006-02-15 21:30:53'), - (5321,'2005-07-09 16:26:33',3347,245,'2005-07-15 15:05:33',2,'2006-02-15 21:30:53'), - (5322,'2005-07-09 16:28:13',4420,432,'2005-07-18 14:53:13',1,'2006-02-15 21:30:53'), - (5323,'2005-07-09 16:34:07',1302,35,'2005-07-13 21:37:07',1,'2006-02-15 21:30:53'), - (5324,'2005-07-09 16:34:18',4024,113,'2005-07-15 12:35:18',2,'2006-02-15 21:30:53'), - (5325,'2005-07-09 16:35:47',2703,492,'2005-07-10 11:52:47',1,'2006-02-15 21:30:53'), - (5326,'2005-07-09 16:38:01',797,1,'2005-07-13 18:02:01',1,'2006-02-15 21:30:53'), - (5327,'2005-07-09 16:39:49',3657,547,'2005-07-12 18:47:49',2,'2006-02-15 21:30:53'), - (5328,'2005-07-09 16:48:29',2444,247,'2005-07-17 20:20:29',2,'2006-02-15 21:30:53'), - (5329,'2005-07-09 16:49:46',1628,402,'2005-07-16 19:05:46',1,'2006-02-15 21:30:53'), - (5330,'2005-07-09 16:53:57',3812,410,'2005-07-18 19:54:57',1,'2006-02-15 21:30:53'), - (5331,'2005-07-09 16:54:06',4181,447,'2005-07-10 19:04:06',1,'2006-02-15 21:30:53'), - (5332,'2005-07-09 16:59:23',3269,568,'2005-07-10 16:01:23',2,'2006-02-15 21:30:53'), - (5333,'2005-07-09 16:59:38',2142,419,'2005-07-16 17:23:38',2,'2006-02-15 21:30:53'), - (5334,'2005-07-09 17:00:13',3852,482,'2005-07-11 15:50:13',1,'2006-02-15 21:30:53'), - (5335,'2005-07-09 17:00:49',2353,588,'2005-07-12 12:21:49',2,'2006-02-15 21:30:53'), - (5336,'2005-07-09 17:01:08',4144,410,'2005-07-11 19:22:08',2,'2006-02-15 21:30:53'), - (5337,'2005-07-09 17:03:50',4168,343,'2005-07-16 22:25:50',2,'2006-02-15 21:30:53'), - (5338,'2005-07-09 17:07:07',3449,191,'2005-07-14 11:15:07',1,'2006-02-15 21:30:53'), - (5339,'2005-07-09 17:09:17',698,380,'2005-07-10 21:07:17',2,'2006-02-15 21:30:53'), - (5340,'2005-07-09 17:11:35',650,267,'2005-07-17 17:59:35',2,'2006-02-15 21:30:53'), - (5341,'2005-07-09 17:13:23',2522,8,'2005-07-14 18:11:23',2,'2006-02-15 21:30:53'), - (5342,'2005-07-09 17:20:03',3828,289,'2005-07-18 12:44:03',2,'2006-02-15 21:30:53'), - (5343,'2005-07-09 17:23:43',92,485,'2005-07-18 22:14:43',1,'2006-02-15 21:30:53'), - (5344,'2005-07-09 17:27:05',159,197,'2005-07-10 15:51:05',2,'2006-02-15 21:30:53'), - (5345,'2005-07-09 17:28:18',3055,348,'2005-07-11 14:30:18',2,'2006-02-15 21:30:53'), - (5346,'2005-07-09 17:29:01',2488,287,'2005-07-14 12:47:01',2,'2006-02-15 21:30:53'), - (5347,'2005-07-09 17:31:32',1293,246,'2005-07-10 21:06:32',2,'2006-02-15 21:30:53'), - (5348,'2005-07-09 17:34:11',3495,597,'2005-07-15 18:32:11',2,'2006-02-15 21:30:53'), - (5349,'2005-07-09 17:35:35',3139,161,'2005-07-18 14:05:35',1,'2006-02-15 21:30:53'), - (5350,'2005-07-09 17:39:30',724,129,'2005-07-11 16:43:30',2,'2006-02-15 21:30:53'), - (5351,'2005-07-09 17:40:52',3722,112,'2005-07-14 16:55:52',2,'2006-02-15 21:30:53'), - (5352,'2005-07-09 17:54:58',908,372,'2005-07-15 16:20:58',1,'2006-02-15 21:30:53'), - (5353,'2005-07-09 18:04:29',2994,196,'2005-07-15 17:46:29',2,'2006-02-15 21:30:53'), - (5354,'2005-07-09 18:04:33',951,354,'2005-07-15 18:19:33',1,'2006-02-15 21:30:53'), - (5355,'2005-07-09 18:07:17',2458,100,'2005-07-16 20:33:17',2,'2006-02-15 21:30:53'), - (5356,'2005-07-09 18:08:28',2905,188,'2005-07-14 14:11:28',2,'2006-02-15 21:30:53'), - (5357,'2005-07-09 18:08:59',1988,411,'2005-07-16 17:28:59',2,'2006-02-15 21:30:53'), - (5358,'2005-07-09 18:09:21',3764,71,'2005-07-14 23:59:21',2,'2006-02-15 21:30:53'), - (5359,'2005-07-09 18:10:52',4392,453,'2005-07-18 13:34:52',2,'2006-02-15 21:30:53'), - (5360,'2005-07-09 18:14:03',679,562,'2005-07-10 15:17:03',2,'2006-02-15 21:30:53'), - (5361,'2005-07-09 18:15:32',2045,279,'2005-07-17 23:32:32',2,'2006-02-15 21:30:53'), - (5362,'2005-07-09 18:16:08',24,266,'2005-07-18 18:27:08',1,'2006-02-15 21:30:53'), - (5363,'2005-07-09 18:18:49',2180,425,'2005-07-14 22:16:49',1,'2006-02-15 21:30:53'), - (5364,'2005-07-09 18:24:48',2746,366,'2005-07-10 12:30:48',1,'2006-02-15 21:30:53'), - (5365,'2005-07-09 18:27:00',4469,527,'2005-07-11 14:18:00',1,'2006-02-15 21:30:53'), - (5366,'2005-07-09 18:28:37',886,187,'2005-07-13 20:45:37',1,'2006-02-15 21:30:53'), - (5367,'2005-07-09 18:39:15',1446,485,'2005-07-16 14:19:15',2,'2006-02-15 21:30:53'), - (5368,'2005-07-09 18:41:59',4429,502,'2005-07-16 00:32:59',2,'2006-02-15 21:30:53'), - (5369,'2005-07-09 18:42:16',1550,538,'2005-07-12 18:16:16',2,'2006-02-15 21:30:53'), - (5370,'2005-07-09 18:43:19',2193,248,'2005-07-15 19:59:19',1,'2006-02-15 21:30:53'), - (5371,'2005-07-09 18:47:48',789,425,'2005-07-14 14:39:48',2,'2006-02-15 21:30:53'), - (5372,'2005-07-09 18:48:39',3551,148,'2005-07-11 17:40:39',1,'2006-02-15 21:30:53'), - (5373,'2005-07-09 18:48:57',950,428,'2005-07-10 16:34:57',1,'2006-02-15 21:30:53'), - (5374,'2005-07-09 18:52:08',946,144,'2005-07-16 16:34:08',1,'2006-02-15 21:30:53'), - (5375,'2005-07-09 18:52:55',1407,558,'2005-07-16 15:32:55',2,'2006-02-15 21:30:53'), - (5376,'2005-07-09 18:54:08',1730,104,'2005-07-17 22:01:08',1,'2006-02-15 21:30:53'), - (5377,'2005-07-09 19:04:30',3118,578,'2005-07-11 14:42:30',1,'2006-02-15 21:30:53'), - (5378,'2005-07-09 19:05:56',1570,138,'2005-07-10 18:03:56',2,'2006-02-15 21:30:53'), - (5379,'2005-07-09 19:08:03',2110,475,'2005-07-10 17:58:03',1,'2006-02-15 21:30:53'), - (5380,'2005-07-09 19:08:44',3047,166,'2005-07-11 20:09:44',1,'2006-02-15 21:30:53'), - (5381,'2005-07-09 19:11:11',3033,332,'2005-07-13 17:10:11',2,'2006-02-15 21:30:53'), - (5382,'2005-07-09 19:12:57',78,586,'2005-07-14 15:44:57',1,'2006-02-15 21:30:53'), - (5383,'2005-07-09 19:14:32',573,14,'2005-07-11 19:57:32',1,'2006-02-15 21:30:53'), - (5384,'2005-07-09 19:17:46',1729,180,'2005-07-12 13:50:46',1,'2006-02-15 21:30:53'), - (5385,'2005-07-09 19:18:11',4291,112,'2005-07-16 18:50:11',2,'2006-02-15 21:30:53'), - (5386,'2005-07-09 19:19:09',721,594,'2005-07-13 00:13:09',2,'2006-02-15 21:30:53'), - (5387,'2005-07-09 19:25:14',4452,244,'2005-07-11 21:00:14',1,'2006-02-15 21:30:53'), - (5388,'2005-07-09 19:25:25',1546,332,'2005-07-14 19:51:25',2,'2006-02-15 21:30:53'), - (5389,'2005-07-09 19:25:45',3882,484,'2005-07-17 13:31:45',1,'2006-02-15 21:30:53'), - (5390,'2005-07-09 19:26:22',715,139,'2005-07-14 22:46:22',1,'2006-02-15 21:30:53'), - (5391,'2005-07-09 19:28:34',402,132,'2005-07-18 01:07:34',1,'2006-02-15 21:30:53'), - (5392,'2005-07-09 19:32:30',2552,499,'2005-07-16 15:01:30',1,'2006-02-15 21:30:53'), - (5393,'2005-07-09 19:35:12',1417,446,'2005-07-11 14:00:12',1,'2006-02-15 21:30:53'), - (5394,'2005-07-09 19:36:15',1828,83,'2005-07-18 18:10:15',2,'2006-02-15 21:30:53'), - (5395,'2005-07-09 19:42:37',4428,131,'2005-07-10 15:39:37',1,'2006-02-15 21:30:53'), - (5396,'2005-07-09 19:42:52',3795,559,'2005-07-15 21:45:52',1,'2006-02-15 21:30:53'), - (5397,'2005-07-09 19:43:51',4376,191,'2005-07-17 00:11:51',1,'2006-02-15 21:30:53'), - (5398,'2005-07-09 19:44:58',4352,199,'2005-07-17 00:56:58',1,'2006-02-15 21:30:53'), - (5399,'2005-07-09 19:52:44',261,67,'2005-07-10 18:31:44',2,'2006-02-15 21:30:53'), - (5400,'2005-07-09 19:56:40',3435,192,'2005-07-14 20:43:40',2,'2006-02-15 21:30:53'), - (5401,'2005-07-09 19:59:10',431,43,'2005-07-11 23:21:10',2,'2006-02-15 21:30:53'), - (5402,'2005-07-09 20:01:58',4450,379,'2005-07-10 14:07:58',1,'2006-02-15 21:30:53'), - (5403,'2005-07-09 20:07:09',3991,36,'2005-07-12 18:33:09',1,'2006-02-15 21:30:53'), - (5404,'2005-07-09 20:10:43',3685,236,'2005-07-13 15:16:43',1,'2006-02-15 21:30:53'), - (5405,'2005-07-09 20:11:49',799,45,'2005-07-18 18:37:49',2,'2006-02-15 21:30:53'), - (5406,'2005-07-09 20:13:23',1322,563,'2005-07-11 22:05:23',2,'2006-02-15 21:30:53'), - (5407,'2005-07-09 20:16:07',3641,475,'2005-07-14 21:41:07',2,'2006-02-15 21:30:53'), - (5408,'2005-07-09 20:16:51',3162,144,'2005-07-18 22:19:51',1,'2006-02-15 21:30:53'), - (5409,'2005-07-09 20:17:19',3538,446,'2005-07-13 23:30:19',1,'2006-02-15 21:30:53'), - (5410,'2005-07-09 20:21:10',2261,281,'2005-07-18 21:43:10',2,'2006-02-15 21:30:53'), - (5411,'2005-07-09 20:23:38',4292,304,'2005-07-16 01:17:38',2,'2006-02-15 21:30:53'), - (5412,'2005-07-09 20:23:52',3174,458,'2005-07-18 18:40:52',1,'2006-02-15 21:30:53'), - (5413,'2005-07-09 20:28:42',2056,167,'2005-07-10 19:23:42',2,'2006-02-15 21:30:53'), - (5414,'2005-07-09 20:29:36',1201,174,'2005-07-13 01:55:36',2,'2006-02-15 21:30:53'), - (5415,'2005-07-09 20:30:03',4413,475,'2005-07-18 00:20:03',1,'2006-02-15 21:30:53'), - (5416,'2005-07-09 20:33:50',568,219,'2005-07-14 01:50:50',2,'2006-02-15 21:30:53'), - (5417,'2005-07-09 20:34:09',3569,265,'2005-07-14 00:36:09',2,'2006-02-15 21:30:53'), - (5418,'2005-07-09 20:41:35',55,114,'2005-07-14 00:15:35',1,'2006-02-15 21:30:53'), - (5419,'2005-07-09 20:47:36',1516,226,'2005-07-12 01:36:36',1,'2006-02-15 21:30:53'), - (5420,'2005-07-09 20:48:42',1739,80,'2005-07-15 21:35:42',2,'2006-02-15 21:30:53'), - (5421,'2005-07-09 20:49:12',2437,33,'2005-07-10 16:30:12',1,'2006-02-15 21:30:53'), - (5422,'2005-07-09 20:55:47',436,409,'2005-07-15 15:15:47',2,'2006-02-15 21:30:53'), - (5423,'2005-07-09 20:56:48',1952,440,'2005-07-17 14:58:48',2,'2006-02-15 21:30:53'), - (5424,'2005-07-09 20:59:09',3694,72,'2005-07-12 00:05:09',2,'2006-02-15 21:30:53'), - (5425,'2005-07-09 21:02:26',531,37,'2005-07-16 23:38:26',2,'2006-02-15 21:30:53'), - (5426,'2005-07-09 21:04:47',251,438,'2005-07-17 00:55:47',1,'2006-02-15 21:30:53'), - (5427,'2005-07-09 21:12:26',3197,499,'2005-07-14 01:02:26',1,'2006-02-15 21:30:53'), - (5428,'2005-07-09 21:12:50',3109,346,'2005-07-14 16:25:50',2,'2006-02-15 21:30:53'), - (5429,'2005-07-09 21:14:03',2467,105,'2005-07-18 01:33:03',1,'2006-02-15 21:30:53'), - (5430,'2005-07-09 21:19:54',1441,173,'2005-07-15 22:53:54',1,'2006-02-15 21:30:53'), - (5431,'2005-07-09 21:21:11',2780,213,'2005-07-10 21:16:11',1,'2006-02-15 21:30:53'), - (5432,'2005-07-09 21:21:25',1958,64,'2005-07-14 21:34:25',2,'2006-02-15 21:30:53'), - (5433,'2005-07-09 21:22:00',2679,349,'2005-07-10 21:18:00',2,'2006-02-15 21:30:53'), - (5434,'2005-07-09 21:25:20',3790,334,'2005-07-15 03:12:20',2,'2006-02-15 21:30:53'), - (5435,'2005-07-09 21:28:07',2884,273,'2005-07-18 21:16:07',2,'2006-02-15 21:30:53'), - (5436,'2005-07-09 21:31:11',2364,89,'2005-07-13 16:59:11',2,'2006-02-15 21:30:53'), - (5437,'2005-07-09 21:32:29',3532,26,'2005-07-15 00:27:29',2,'2006-02-15 21:30:53'), - (5438,'2005-07-09 21:34:32',487,241,'2005-07-16 02:21:32',2,'2006-02-15 21:30:53'), - (5439,'2005-07-09 21:39:35',1993,58,'2005-07-13 17:45:35',2,'2006-02-15 21:30:53'), - (5440,'2005-07-09 21:45:17',138,332,'2005-07-11 22:43:17',2,'2006-02-15 21:30:53'), - (5441,'2005-07-09 21:52:05',3913,7,'2005-07-17 02:54:05',1,'2006-02-15 21:30:53'), - (5442,'2005-07-09 21:55:19',3093,29,'2005-07-19 01:18:19',2,'2006-02-15 21:30:53'), - (5443,'2005-07-09 21:56:09',2951,137,'2005-07-16 00:33:09',2,'2006-02-15 21:30:53'), - (5444,'2005-07-09 21:58:57',2968,10,'2005-07-11 03:09:57',2,'2006-02-15 21:30:53'), - (5445,'2005-07-09 21:59:41',565,578,'2005-07-15 00:40:41',1,'2006-02-15 21:30:53'), - (5446,'2005-07-09 21:59:55',2769,454,'2005-07-11 01:45:55',2,'2006-02-15 21:30:53'), - (5447,'2005-07-09 22:09:28',2530,473,'2005-07-18 20:03:28',2,'2006-02-15 21:30:53'), - (5448,'2005-07-09 22:11:14',646,463,'2005-07-15 21:08:14',2,'2006-02-15 21:30:53'), - (5449,'2005-07-09 22:12:01',921,261,'2005-07-18 01:18:01',2,'2006-02-15 21:30:53'), - (5450,'2005-07-09 22:13:25',2356,328,'2005-07-13 23:28:25',1,'2006-02-15 21:30:53'), - (5451,'2005-07-09 22:22:10',3484,39,'2005-07-11 02:43:10',1,'2006-02-15 21:30:53'), - (5452,'2005-07-09 22:23:21',2036,80,'2005-07-17 00:20:21',1,'2006-02-15 21:30:53'), - (5453,'2005-07-09 22:24:11',1780,106,'2005-07-19 04:08:11',1,'2006-02-15 21:30:53'), - (5454,'2005-07-09 22:24:25',3049,97,'2005-07-11 01:52:25',1,'2006-02-15 21:30:53'), - (5455,'2005-07-09 22:28:45',1955,464,'2005-07-18 02:50:45',2,'2006-02-15 21:30:53'), - (5456,'2005-07-09 22:31:45',3003,360,'2005-07-12 03:53:45',1,'2006-02-15 21:30:53'), - (5457,'2005-07-09 22:33:14',4179,433,'2005-07-12 02:30:14',1,'2006-02-15 21:30:53'), - (5458,'2005-07-09 22:35:49',2203,521,'2005-07-16 22:55:49',1,'2006-02-15 21:30:53'), - (5459,'2005-07-09 22:43:56',1847,168,'2005-07-12 18:05:56',1,'2006-02-15 21:30:53'), - (5460,'2005-07-09 22:46:14',2410,38,'2005-07-12 21:26:14',2,'2006-02-15 21:30:53'), - (5461,'2005-07-09 22:48:04',53,244,'2005-07-10 17:56:04',2,'2006-02-15 21:30:53'), - (5462,'2005-07-09 22:56:53',871,583,'2005-07-11 21:50:53',2,'2006-02-15 21:30:53'), - (5463,'2005-07-09 22:57:02',601,374,'2005-07-11 03:10:02',1,'2006-02-15 21:30:53'), - (5464,'2005-07-09 22:58:14',3692,434,'2005-07-15 02:48:14',1,'2006-02-15 21:30:53'), - (5465,'2005-07-09 23:01:13',723,503,'2005-07-13 01:03:13',1,'2006-02-15 21:30:53'), - (5466,'2005-07-09 23:03:21',2302,482,'2005-07-10 20:11:21',2,'2006-02-15 21:30:53'), - (5467,'2005-07-09 23:05:47',374,543,'2005-07-16 17:06:47',2,'2006-02-15 21:30:53'), - (5468,'2005-07-09 23:06:09',2196,81,'2005-07-13 00:48:09',1,'2006-02-15 21:30:53'), - (5469,'2005-07-09 23:08:07',2201,475,'2005-07-13 19:13:07',1,'2006-02-15 21:30:53'), - (5470,'2005-07-09 23:10:49',3254,325,'2005-07-18 04:30:49',1,'2006-02-15 21:30:53'), - (5471,'2005-07-09 23:11:52',4086,347,'2005-07-13 02:08:52',2,'2006-02-15 21:30:53'), - (5472,'2005-07-09 23:16:40',865,165,'2005-07-10 18:43:40',2,'2006-02-15 21:30:53'), - (5473,'2005-07-09 23:19:11',4283,51,'2005-07-19 02:30:11',2,'2006-02-15 21:30:53'), - (5474,'2005-07-09 23:23:57',3608,375,'2005-07-15 03:11:57',1,'2006-02-15 21:30:53'), - (5475,'2005-07-09 23:31:38',726,219,'2005-07-12 03:51:38',1,'2006-02-15 21:30:53'), - (5476,'2005-07-09 23:37:09',1199,427,'2005-07-15 23:57:09',1,'2006-02-15 21:30:53'), - (5477,'2005-07-09 23:43:49',994,542,'2005-07-15 05:03:49',2,'2006-02-15 21:30:53'), - (5478,'2005-07-09 23:45:15',3213,583,'2005-07-15 22:48:15',1,'2006-02-15 21:30:53'), - (5479,'2005-07-09 23:47:33',216,250,'2005-07-13 01:09:33',1,'2006-02-15 21:30:53'), - (5480,'2005-07-09 23:49:07',847,452,'2005-07-12 00:15:07',1,'2006-02-15 21:30:53'), - (5481,'2005-07-09 23:51:57',562,479,'2005-07-11 05:28:57',2,'2006-02-15 21:30:53'), - (5482,'2005-07-09 23:53:04',2136,460,'2005-07-15 04:59:04',1,'2006-02-15 21:30:53'), - (5483,'2005-07-09 23:54:09',4362,89,'2005-07-17 23:36:09',1,'2006-02-15 21:30:53'), - (5484,'2005-07-09 23:54:37',3248,495,'2005-07-15 02:05:37',1,'2006-02-15 21:30:53'), - (5485,'2005-07-09 23:55:25',3930,173,'2005-07-14 04:08:25',1,'2006-02-15 21:30:53'), - (5486,'2005-07-09 23:57:44',2864,538,'2005-07-14 00:23:44',1,'2006-02-15 21:30:53'), - (5487,'2005-07-10 00:01:50',1144,341,'2005-07-10 20:43:50',1,'2006-02-15 21:30:53'), - (5488,'2005-07-10 00:02:06',4262,173,'2005-07-15 01:45:06',2,'2006-02-15 21:30:53'), - (5489,'2005-07-10 00:07:03',2319,490,'2005-07-15 19:52:03',1,'2006-02-15 21:30:53'), - (5490,'2005-07-10 00:09:11',3044,367,'2005-07-14 21:23:11',1,'2006-02-15 21:30:53'), - (5491,'2005-07-10 00:09:45',2007,49,'2005-07-11 02:25:45',1,'2006-02-15 21:30:53'), - (5492,'2005-07-10 00:11:09',4524,558,'2005-07-14 01:27:09',1,'2006-02-15 21:30:53'), - (5493,'2005-07-10 00:11:44',2037,539,'2005-07-15 19:24:44',2,'2006-02-15 21:30:53'), - (5494,'2005-07-10 00:15:00',3087,139,'2005-07-17 01:12:00',2,'2006-02-15 21:30:53'), - (5495,'2005-07-10 00:16:54',2199,257,'2005-07-19 01:22:54',2,'2006-02-15 21:30:53'), - (5496,'2005-07-10 00:20:23',3182,369,'2005-07-18 21:10:23',2,'2006-02-15 21:30:53'), - (5497,'2005-07-10 00:23:23',4473,92,'2005-07-16 03:54:23',1,'2006-02-15 21:30:53'), - (5498,'2005-07-10 00:27:21',63,302,'2005-07-13 20:11:21',2,'2006-02-15 21:30:53'), - (5499,'2005-07-10 00:27:45',1525,127,'2005-07-17 06:11:45',1,'2006-02-15 21:30:53'), - (5500,'2005-07-10 00:28:17',3380,457,'2005-07-15 19:09:17',1,'2006-02-15 21:30:53'), - (5501,'2005-07-10 00:33:48',3979,372,'2005-07-17 02:58:48',1,'2006-02-15 21:30:53'), - (5502,'2005-07-10 00:34:15',3712,243,'2005-07-11 21:44:15',1,'2006-02-15 21:30:53'), - (5503,'2005-07-10 00:35:37',3892,262,'2005-07-12 20:29:37',1,'2006-02-15 21:30:53'), - (5504,'2005-07-10 00:36:38',3053,455,'2005-07-16 19:36:38',1,'2006-02-15 21:30:53'), - (5505,'2005-07-10 00:38:48',896,253,'2005-07-12 03:12:48',2,'2006-02-15 21:30:53'), - (5506,'2005-07-10 00:45:48',2432,117,'2005-07-18 20:35:48',2,'2006-02-15 21:30:53'), - (5507,'2005-07-10 00:49:04',716,399,'2005-07-15 22:06:04',2,'2006-02-15 21:30:53'), - (5508,'2005-07-10 00:50:01',2977,345,'2005-07-16 19:07:01',1,'2006-02-15 21:30:53'), - (5509,'2005-07-10 00:54:46',1142,102,'2005-07-16 05:10:46',1,'2006-02-15 21:30:53'), - (5510,'2005-07-10 00:58:37',1298,67,'2005-07-17 22:02:37',2,'2006-02-15 21:30:53'), - (5511,'2005-07-10 01:00:00',3678,301,'2005-07-12 20:44:00',1,'2006-02-15 21:30:53'), - (5512,'2005-07-10 01:05:38',4470,405,'2005-07-17 20:47:38',1,'2006-02-15 21:30:53'), - (5513,'2005-07-10 01:05:41',2558,356,'2005-07-11 02:05:41',2,'2006-02-15 21:30:53'), - (5514,'2005-07-10 01:09:42',1824,522,'2005-07-17 05:47:42',1,'2006-02-15 21:30:53'), - (5515,'2005-07-10 01:12:44',3772,39,'2005-07-13 00:39:44',1,'2006-02-15 21:30:53'), - (5516,'2005-07-10 01:13:52',1902,581,'2005-07-15 22:56:52',1,'2006-02-15 21:30:53'), - (5517,'2005-07-10 01:15:00',3689,42,'2005-07-19 01:59:00',1,'2006-02-15 21:30:53'), - (5518,'2005-07-10 01:15:11',3340,451,'2005-07-18 19:28:11',2,'2006-02-15 21:30:53'), - (5519,'2005-07-10 01:18:32',1312,85,'2005-07-11 20:39:32',1,'2006-02-15 21:30:53'), - (5520,'2005-07-10 01:30:41',2527,501,'2005-07-15 21:37:41',2,'2006-02-15 21:30:53'), - (5521,'2005-07-10 01:31:22',1956,182,'2005-07-17 05:42:22',2,'2006-02-15 21:30:53'), - (5522,'2005-07-10 01:46:29',2622,573,'2005-07-18 00:41:29',2,'2006-02-15 21:30:53'), - (5523,'2005-07-10 01:47:55',2233,125,'2005-07-18 22:25:55',1,'2006-02-15 21:30:53'), - (5524,'2005-07-10 01:49:24',3596,386,'2005-07-14 22:55:24',1,'2006-02-15 21:30:53'), - (5525,'2005-07-10 02:03:08',3141,241,'2005-07-18 07:32:08',1,'2006-02-15 21:30:53'), - (5526,'2005-07-10 02:04:03',3909,144,'2005-07-16 22:15:03',2,'2006-02-15 21:30:53'), - (5527,'2005-07-10 02:06:01',4462,554,'2005-07-15 00:55:01',2,'2006-02-15 21:30:53'), - (5528,'2005-07-10 02:09:21',680,551,'2005-07-17 06:22:21',2,'2006-02-15 21:30:53'), - (5529,'2005-07-10 02:11:13',1652,590,'2005-07-15 06:56:13',2,'2006-02-15 21:30:53'), - (5530,'2005-07-10 02:13:49',2701,74,'2005-07-18 08:01:49',2,'2006-02-15 21:30:53'), - (5531,'2005-07-10 02:13:59',2992,173,'2005-07-15 00:01:59',2,'2006-02-15 21:30:53'), - (5532,'2005-07-10 02:17:31',983,522,'2005-07-16 02:57:31',2,'2006-02-15 21:30:53'), - (5533,'2005-07-10 02:19:28',2567,270,'2005-07-11 01:37:28',1,'2006-02-15 21:30:53'), - (5534,'2005-07-10 02:26:49',3251,156,'2005-07-11 07:13:49',1,'2006-02-15 21:30:53'), - (5535,'2005-07-10 02:27:42',1623,394,'2005-07-12 21:13:42',1,'2006-02-15 21:30:53'), - (5536,'2005-07-10 02:29:42',1919,195,'2005-07-13 04:06:42',2,'2006-02-15 21:30:53'), - (5537,'2005-07-10 02:35:41',1781,254,'2005-07-13 07:11:41',2,'2006-02-15 21:30:53'), - (5538,'2005-07-10 02:39:40',2119,367,'2005-07-12 01:39:40',2,'2006-02-15 21:30:53'), - (5539,'2005-07-10 02:42:58',3217,90,'2005-07-16 02:27:58',2,'2006-02-15 21:30:53'), - (5540,'2005-07-10 02:44:21',132,250,'2005-07-11 07:13:21',1,'2006-02-15 21:30:53'), - (5541,'2005-07-10 02:44:27',1211,135,'2005-07-13 04:13:27',2,'2006-02-15 21:30:53'), - (5542,'2005-07-10 02:45:53',1713,105,'2005-07-15 23:23:53',2,'2006-02-15 21:30:53'), - (5543,'2005-07-10 02:48:03',1496,71,'2005-07-17 05:49:03',2,'2006-02-15 21:30:53'), - (5544,'2005-07-10 02:48:07',1014,316,'2005-07-17 01:08:07',1,'2006-02-15 21:30:53'), - (5545,'2005-07-10 02:50:29',118,236,'2005-07-16 02:11:29',1,'2006-02-15 21:30:53'), - (5546,'2005-07-10 02:50:37',2918,515,'2005-07-16 08:22:37',1,'2006-02-15 21:30:53'), - (5547,'2005-07-10 02:52:47',1432,519,'2005-07-16 02:10:47',1,'2006-02-15 21:30:53'), - (5548,'2005-07-10 02:56:45',2973,317,'2005-07-13 01:33:45',2,'2006-02-15 21:30:53'), - (5549,'2005-07-10 02:58:29',2685,163,'2005-07-17 05:24:29',2,'2006-02-15 21:30:53'), - (5550,'2005-07-10 02:58:35',1905,254,'2005-07-16 02:38:35',2,'2006-02-15 21:30:53'), - (5551,'2005-07-10 03:01:09',4238,44,'2005-07-18 02:04:09',2,'2006-02-15 21:30:53'), - (5552,'2005-07-10 03:01:19',2879,27,'2005-07-13 06:53:19',2,'2006-02-15 21:30:53'), - (5553,'2005-07-10 03:03:35',1686,6,'2005-07-14 07:49:35',2,'2006-02-15 21:30:53'), - (5554,'2005-07-10 03:03:38',4084,252,'2005-07-17 00:00:38',2,'2006-02-15 21:30:53'), - (5555,'2005-07-10 03:08:55',2551,79,'2005-07-11 01:36:55',2,'2006-02-15 21:30:53'), - (5556,'2005-07-10 03:10:17',4483,354,'2005-07-14 02:47:17',1,'2006-02-15 21:30:53'), - (5557,'2005-07-10 03:10:21',1433,346,'2005-07-11 21:34:21',1,'2006-02-15 21:30:53'), - (5558,'2005-07-10 03:12:08',1123,96,'2005-07-14 03:09:08',2,'2006-02-15 21:30:53'), - (5559,'2005-07-10 03:13:07',4122,496,'2005-07-18 08:33:07',1,'2006-02-15 21:30:53'), - (5560,'2005-07-10 03:13:24',720,231,'2005-07-19 06:03:24',2,'2006-02-15 21:30:53'), - (5561,'2005-07-10 03:15:24',1048,369,'2005-07-15 06:46:24',1,'2006-02-15 21:30:53'), - (5562,'2005-07-10 03:17:42',3604,300,'2005-07-12 03:26:42',1,'2006-02-15 21:30:53'), - (5563,'2005-07-10 03:21:02',2258,362,'2005-07-14 07:40:02',1,'2006-02-15 21:30:53'), - (5564,'2005-07-10 03:23:05',196,355,'2005-07-16 07:46:05',2,'2006-02-15 21:30:53'), - (5565,'2005-07-10 03:29:48',3368,14,'2005-07-17 04:43:48',1,'2006-02-15 21:30:53'), - (5566,'2005-07-10 03:30:17',1343,124,'2005-07-13 06:32:17',1,'2006-02-15 21:30:53'), - (5567,'2005-07-10 03:36:46',1616,147,'2005-07-15 23:22:46',2,'2006-02-15 21:30:53'), - (5568,'2005-07-10 03:36:56',1130,424,'2005-07-11 08:35:56',2,'2006-02-15 21:30:53'), - (5569,'2005-07-10 03:38:32',2835,69,'2005-07-16 00:02:32',2,'2006-02-15 21:30:53'), - (5570,'2005-07-10 03:46:47',2013,374,'2005-07-17 09:28:47',1,'2006-02-15 21:30:53'), - (5571,'2005-07-10 03:48:20',1084,76,'2005-07-11 02:09:20',2,'2006-02-15 21:30:53'), - (5572,'2005-07-10 03:49:00',2709,458,'2005-07-14 01:25:00',1,'2006-02-15 21:30:53'), - (5573,'2005-07-10 03:50:47',2957,170,'2005-07-17 06:40:47',2,'2006-02-15 21:30:53'), - (5574,'2005-07-10 03:54:38',2307,163,'2005-07-19 07:20:38',2,'2006-02-15 21:30:53'), - (5575,'2005-07-10 03:55:50',2316,107,'2005-07-12 08:40:50',1,'2006-02-15 21:30:53'), - (5576,'2005-07-10 03:57:05',1453,217,'2005-07-13 02:16:05',2,'2006-02-15 21:30:53'), - (5577,'2005-07-10 03:58:40',3779,266,'2005-07-14 03:36:40',1,'2006-02-15 21:30:53'), - (5578,'2005-07-10 04:00:31',4543,378,'2005-07-16 08:06:31',2,'2006-02-15 21:30:53'), - (5579,'2005-07-10 04:04:29',945,203,'2005-07-14 04:31:29',1,'2006-02-15 21:30:53'), - (5580,'2005-07-10 04:05:49',2753,521,'2005-07-18 22:36:49',2,'2006-02-15 21:30:53'), - (5581,'2005-07-10 04:06:06',3450,306,'2005-07-15 08:31:06',2,'2006-02-15 21:30:53'), - (5582,'2005-07-10 04:08:25',3341,305,'2005-07-13 06:04:25',1,'2006-02-15 21:30:53'), - (5583,'2005-07-10 04:08:48',1242,391,'2005-07-19 07:59:48',1,'2006-02-15 21:30:53'), - (5584,'2005-07-10 04:15:25',2606,289,'2005-07-16 22:54:25',2,'2006-02-15 21:30:53'), - (5585,'2005-07-10 04:15:43',3524,63,'2005-07-15 08:24:43',1,'2006-02-15 21:30:53'), - (5586,'2005-07-10 04:17:06',2965,427,'2005-07-18 07:11:06',1,'2006-02-15 21:30:53'), - (5587,'2005-07-10 04:17:25',4485,531,'2005-07-15 01:41:25',1,'2006-02-15 21:30:53'), - (5588,'2005-07-10 04:21:10',1166,535,'2005-07-16 02:58:10',2,'2006-02-15 21:30:53'), - (5589,'2005-07-10 04:22:58',3673,296,'2005-07-10 23:13:58',1,'2006-02-15 21:30:53'), - (5590,'2005-07-10 04:23:11',4442,407,'2005-07-19 09:03:11',1,'2006-02-15 21:30:53'), - (5591,'2005-07-10 04:25:03',378,374,'2005-07-16 04:21:03',1,'2006-02-15 21:30:53'), - (5592,'2005-07-10 04:26:13',2471,222,'2005-07-19 02:32:13',2,'2006-02-15 21:30:53'), - (5593,'2005-07-10 04:33:13',702,287,'2005-07-17 08:44:13',2,'2006-02-15 21:30:53'), - (5594,'2005-07-10 04:33:36',61,440,'2005-07-12 08:13:36',2,'2006-02-15 21:30:53'), - (5595,'2005-07-10 04:33:45',264,572,'2005-07-16 04:04:45',1,'2006-02-15 21:30:53'), - (5596,'2005-07-10 04:43:14',1662,240,'2005-07-11 22:58:14',2,'2006-02-15 21:30:53'), - (5597,'2005-07-10 04:47:57',4264,576,'2005-07-17 01:54:57',2,'2006-02-15 21:30:53'), - (5598,'2005-07-10 04:48:29',3412,397,'2005-07-18 10:33:29',2,'2006-02-15 21:30:53'), - (5599,'2005-07-10 04:52:04',3054,391,'2005-07-13 05:19:04',1,'2006-02-15 21:30:53'), - (5600,'2005-07-10 04:55:45',3713,138,'2005-07-18 03:10:45',2,'2006-02-15 21:30:53'), - (5601,'2005-07-10 04:56:55',3062,511,'2005-07-11 00:14:55',1,'2006-02-15 21:30:53'), - (5602,'2005-07-10 05:02:22',3544,253,'2005-07-14 23:40:22',2,'2006-02-15 21:30:53'), - (5603,'2005-07-10 05:04:54',1308,74,'2005-07-12 01:54:54',2,'2006-02-15 21:30:53'), - (5604,'2005-07-10 05:05:00',3702,78,'2005-07-12 08:04:00',1,'2006-02-15 21:30:53'), - (5605,'2005-07-10 05:06:45',2964,273,'2005-07-15 02:51:45',2,'2006-02-15 21:30:53'), - (5606,'2005-07-10 05:07:55',2896,51,'2005-07-15 00:14:55',2,'2006-02-15 21:30:53'), - (5607,'2005-07-10 05:08:10',4257,52,'2005-07-15 00:40:10',2,'2006-02-15 21:30:53'), - (5608,'2005-07-10 05:08:26',3854,384,'2005-07-10 23:24:26',1,'2006-02-15 21:30:53'), - (5609,'2005-07-10 05:09:46',1553,492,'2005-07-12 10:38:46',1,'2006-02-15 21:30:53'), - (5610,'2005-07-10 05:09:52',481,131,'2005-07-13 07:08:52',2,'2006-02-15 21:30:53'), - (5611,'2005-07-10 05:13:43',2832,424,'2005-07-16 05:56:43',1,'2006-02-15 21:30:53'), - (5612,'2005-07-10 05:15:12',2363,472,'2005-07-17 09:50:12',2,'2006-02-15 21:30:53'), - (5613,'2005-07-10 05:15:43',4517,220,'2005-07-13 05:17:43',2,'2006-02-15 21:30:53'), - (5614,'2005-07-10 05:16:56',133,371,'2005-07-13 02:03:56',1,'2006-02-15 21:30:53'), - (5615,'2005-07-10 05:18:51',1521,173,'2005-07-17 11:05:51',2,'2006-02-15 21:30:53'), - (5616,'2005-07-10 05:21:11',4014,238,'2005-07-18 08:42:11',2,'2006-02-15 21:30:53'), - (5617,'2005-07-10 05:28:50',2324,342,'2005-07-12 00:02:50',2,'2006-02-15 21:30:53'), - (5618,'2005-07-10 05:28:58',757,316,'2005-07-18 01:38:58',1,'2006-02-15 21:30:53'), - (5619,'2005-07-10 05:29:33',113,204,'2005-07-15 00:40:33',1,'2006-02-15 21:30:53'), - (5620,'2005-07-10 05:30:52',2980,92,'2005-07-16 04:13:52',1,'2006-02-15 21:30:53'), - (5621,'2005-07-10 05:34:10',552,310,'2005-07-14 02:49:10',1,'2006-02-15 21:30:53'), - (5622,'2005-07-10 05:39:37',1783,568,'2005-07-15 00:48:37',2,'2006-02-15 21:30:53'), - (5623,'2005-07-10 05:41:38',4464,229,'2005-07-14 01:01:38',2,'2006-02-15 21:30:53'), - (5624,'2005-07-10 05:43:16',1015,114,'2005-07-12 05:33:16',1,'2006-02-15 21:30:53'), - (5625,'2005-07-10 05:44:02',1751,114,'2005-07-12 00:03:02',2,'2006-02-15 21:30:53'), - (5626,'2005-07-10 05:49:35',3029,389,'2005-07-15 08:05:35',1,'2006-02-15 21:30:53'), - (5627,'2005-07-10 05:51:12',244,136,'2005-07-17 09:56:12',2,'2006-02-15 21:30:53'), - (5628,'2005-07-10 05:56:40',4040,87,'2005-07-17 11:13:40',1,'2006-02-15 21:30:53'), - (5629,'2005-07-10 06:02:25',400,546,'2005-07-16 07:33:25',1,'2006-02-15 21:30:53'), - (5630,'2005-07-10 06:08:14',1151,537,'2005-07-14 03:37:14',2,'2006-02-15 21:30:53'), - (5631,'2005-07-10 06:15:45',2095,595,'2005-07-17 09:53:45',2,'2006-02-15 21:30:53'), - (5632,'2005-07-10 06:17:06',2632,404,'2005-07-17 02:32:06',2,'2006-02-15 21:30:53'), - (5633,'2005-07-10 06:22:24',1056,480,'2005-07-11 05:59:24',2,'2006-02-15 21:30:53'), - (5634,'2005-07-10 06:25:48',323,487,'2005-07-17 09:07:48',2,'2006-02-15 21:30:53'), - (5635,'2005-07-10 06:28:39',1457,222,'2005-07-17 08:35:39',2,'2006-02-15 21:30:53'), - (5636,'2005-07-10 06:31:24',4116,2,'2005-07-13 02:36:24',1,'2006-02-15 21:30:53'), - (5637,'2005-07-10 06:31:37',4436,45,'2005-07-17 01:16:37',1,'2006-02-15 21:30:53'), - (5638,'2005-07-10 06:32:49',1528,570,'2005-07-13 04:32:49',2,'2006-02-15 21:30:53'), - (5639,'2005-07-10 06:33:39',2452,249,'2005-07-19 07:47:39',1,'2006-02-15 21:30:53'), - (5640,'2005-07-10 06:38:00',2706,574,'2005-07-18 08:56:00',2,'2006-02-15 21:30:53'), - (5641,'2005-07-10 06:43:43',3568,50,'2005-07-15 06:33:43',1,'2006-02-15 21:30:53'), - (5642,'2005-07-10 06:46:08',3630,299,'2005-07-13 10:03:08',1,'2006-02-15 21:30:53'), - (5643,'2005-07-10 06:49:00',796,34,'2005-07-14 01:53:00',1,'2006-02-15 21:30:53'), - (5644,'2005-07-10 06:57:44',4069,476,'2005-07-15 03:52:44',2,'2006-02-15 21:30:53'), - (5645,'2005-07-10 06:58:21',1586,333,'2005-07-18 04:19:21',2,'2006-02-15 21:30:53'), - (5646,'2005-07-10 07:08:09',1471,166,'2005-07-14 03:48:09',2,'2006-02-15 21:30:53'), - (5647,'2005-07-10 07:08:40',1466,128,'2005-07-13 05:19:40',2,'2006-02-15 21:30:53'), - (5648,'2005-07-10 07:09:21',4359,24,'2005-07-16 07:23:21',2,'2006-02-15 21:30:53'), - (5649,'2005-07-10 07:15:07',1349,336,'2005-07-12 11:57:07',2,'2006-02-15 21:30:53'), - (5650,'2005-07-10 07:17:01',2793,461,'2005-07-15 11:59:01',1,'2006-02-15 21:30:53'), - (5651,'2005-07-10 07:17:13',301,239,'2005-07-15 12:13:13',2,'2006-02-15 21:30:53'), - (5652,'2005-07-10 07:18:58',927,42,'2005-07-19 07:52:58',1,'2006-02-15 21:30:53'), - (5653,'2005-07-10 07:21:27',919,28,'2005-07-16 01:58:27',1,'2006-02-15 21:30:53'), - (5654,'2005-07-10 07:24:46',3419,490,'2005-07-14 07:39:46',2,'2006-02-15 21:30:53'), - (5655,'2005-07-10 07:31:06',3470,113,'2005-07-17 08:22:06',1,'2006-02-15 21:30:53'), - (5656,'2005-07-10 07:31:07',4138,159,'2005-07-15 04:44:07',1,'2006-02-15 21:30:53'), - (5657,'2005-07-10 07:33:43',4342,508,'2005-07-18 01:55:43',2,'2006-02-15 21:30:53'), - (5658,'2005-07-10 07:34:08',4402,165,'2005-07-19 04:21:08',2,'2006-02-15 21:30:53'), - (5659,'2005-07-10 07:45:40',4265,9,'2005-07-15 05:20:40',1,'2006-02-15 21:30:53'), - (5660,'2005-07-10 07:46:12',1404,171,'2005-07-17 07:48:12',1,'2006-02-15 21:30:53'), - (5661,'2005-07-10 07:53:51',1878,108,'2005-07-14 12:57:51',2,'2006-02-15 21:30:53'), - (5662,'2005-07-10 07:59:24',219,502,'2005-07-14 13:06:24',1,'2006-02-15 21:30:53'), - (5663,'2005-07-10 08:01:33',3078,530,'2005-07-15 03:36:33',2,'2006-02-15 21:30:53'), - (5664,'2005-07-10 08:04:41',2375,469,'2005-07-17 10:29:41',1,'2006-02-15 21:30:53'), - (5665,'2005-07-10 08:10:08',1175,415,'2005-07-11 05:22:08',2,'2006-02-15 21:30:53'), - (5666,'2005-07-10 08:10:29',2225,242,'2005-07-17 04:54:29',2,'2006-02-15 21:30:53'), - (5667,'2005-07-10 08:11:03',683,336,'2005-07-15 08:23:03',2,'2006-02-15 21:30:53'), - (5668,'2005-07-10 08:11:05',309,211,'2005-07-16 13:15:05',1,'2006-02-15 21:30:53'), - (5669,'2005-07-10 08:12:53',1173,323,'2005-07-11 05:48:53',2,'2006-02-15 21:30:53'), - (5670,'2005-07-10 08:14:52',610,121,'2005-07-14 04:13:52',2,'2006-02-15 21:30:53'), - (5671,'2005-07-10 08:18:22',1304,268,'2005-07-11 07:03:22',2,'2006-02-15 21:30:53'), - (5672,'2005-07-10 08:19:38',2326,158,'2005-07-16 06:28:38',2,'2006-02-15 21:30:53'), - (5673,'2005-07-10 08:21:54',4018,117,'2005-07-11 05:54:54',2,'2006-02-15 21:30:53'), - (5674,'2005-07-10 08:26:26',548,258,'2005-07-16 02:43:26',1,'2006-02-15 21:30:53'), - (5675,'2005-07-10 08:31:06',2134,376,'2005-07-17 11:48:06',1,'2006-02-15 21:30:53'), - (5676,'2005-07-10 08:38:32',3595,153,'2005-07-13 10:11:32',1,'2006-02-15 21:30:53'), - (5677,'2005-07-10 08:41:28',2647,105,'2005-07-12 09:05:28',2,'2006-02-15 21:30:53'), - (5678,'2005-07-10 08:42:42',4366,96,'2005-07-19 03:48:42',1,'2006-02-15 21:30:53'), - (5679,'2005-07-10 08:44:02',389,138,'2005-07-14 05:30:02',1,'2006-02-15 21:30:53'), - (5680,'2005-07-10 08:47:36',3503,199,'2005-07-17 06:10:36',1,'2006-02-15 21:30:53'), - (5681,'2005-07-10 08:48:39',4176,50,'2005-07-18 07:17:39',1,'2006-02-15 21:30:53'), - (5682,'2005-07-10 08:51:39',17,302,'2005-07-12 14:44:39',2,'2006-02-15 21:30:53'), - (5683,'2005-07-10 08:52:13',4433,285,'2005-07-19 10:25:13',1,'2006-02-15 21:30:53'), - (5684,'2005-07-10 08:59:03',99,132,'2005-07-15 07:21:03',1,'2006-02-15 21:30:53'), - (5685,'2005-07-10 09:01:38',1462,170,'2005-07-17 10:58:38',1,'2006-02-15 21:30:53'), - (5686,'2005-07-10 09:06:03',717,521,'2005-07-11 10:59:03',2,'2006-02-15 21:30:53'), - (5687,'2005-07-10 09:07:19',2170,363,'2005-07-16 11:17:19',2,'2006-02-15 21:30:53'), - (5688,'2005-07-10 09:16:08',3036,598,'2005-07-15 09:44:08',1,'2006-02-15 21:30:53'), - (5689,'2005-07-10 09:24:17',1731,381,'2005-07-15 05:36:17',1,'2006-02-15 21:30:53'), - (5690,'2005-07-10 09:26:49',1326,362,'2005-07-19 07:17:49',2,'2006-02-15 21:30:53'), - (5691,'2005-07-10 09:29:49',3526,466,'2005-07-16 13:37:49',1,'2006-02-15 21:30:53'), - (5692,'2005-07-10 09:32:22',59,244,'2005-07-15 15:20:22',2,'2006-02-15 21:30:53'), - (5693,'2005-07-10 09:35:43',2167,208,'2005-07-12 08:05:43',2,'2006-02-15 21:30:53'), - (5694,'2005-07-10 09:40:38',3476,57,'2005-07-14 09:16:38',1,'2006-02-15 21:30:53'), - (5695,'2005-07-10 09:43:40',440,459,'2005-07-13 15:04:40',2,'2006-02-15 21:30:53'), - (5696,'2005-07-10 09:44:32',128,96,'2005-07-12 13:38:32',2,'2006-02-15 21:30:53'), - (5697,'2005-07-10 09:44:44',934,515,'2005-07-12 12:13:44',2,'2006-02-15 21:30:53'), - (5698,'2005-07-10 09:47:00',639,46,'2005-07-16 06:26:00',1,'2006-02-15 21:30:53'), - (5699,'2005-07-10 09:48:04',958,211,'2005-07-17 09:07:04',1,'2006-02-15 21:30:53'), - (5700,'2005-07-10 09:49:42',3961,87,'2005-07-19 04:20:42',1,'2006-02-15 21:30:53'), - (5701,'2005-07-10 09:56:24',2395,91,'2005-07-16 15:11:24',2,'2006-02-15 21:30:53'), - (5702,'2005-07-10 10:00:01',3349,324,'2005-07-11 15:29:01',1,'2006-02-15 21:30:53'), - (5703,'2005-07-10 10:04:15',1585,132,'2005-07-16 07:43:15',1,'2006-02-15 21:30:53'), - (5704,'2005-07-10 10:06:29',2104,591,'2005-07-17 10:48:29',1,'2006-02-15 21:30:53'), - (5705,'2005-07-10 10:09:17',4030,300,'2005-07-19 07:24:17',2,'2006-02-15 21:30:53'), - (5706,'2005-07-10 10:21:46',3701,255,'2005-07-16 04:37:46',2,'2006-02-15 21:30:53'), - (5707,'2005-07-10 10:26:14',708,581,'2005-07-18 06:19:14',1,'2006-02-15 21:30:53'), - (5708,'2005-07-10 10:29:19',571,484,'2005-07-18 06:50:19',1,'2006-02-15 21:30:53'), - (5709,'2005-07-10 10:31:52',732,302,'2005-07-12 10:47:52',1,'2006-02-15 21:30:53'), - (5710,'2005-07-10 10:32:52',2843,265,'2005-07-18 06:28:52',1,'2006-02-15 21:30:53'), - (5711,'2005-07-10 10:37:20',3988,481,'2005-07-13 11:20:20',1,'2006-02-15 21:30:53'), - (5712,'2005-07-10 10:40:32',3480,304,'2005-07-12 11:45:32',1,'2006-02-15 21:30:53'), - (5713,'2005-07-10 10:46:15',1213,572,'2005-07-19 14:34:15',1,'2006-02-15 21:30:53'), - (5714,'2005-07-10 10:46:57',3706,17,'2005-07-18 14:07:57',1,'2006-02-15 21:30:53'), - (5715,'2005-07-10 10:48:03',1638,132,'2005-07-18 11:27:03',1,'2006-02-15 21:30:53'), - (5716,'2005-07-10 10:59:23',3416,102,'2005-07-16 12:25:23',2,'2006-02-15 21:30:53'), - (5717,'2005-07-10 11:02:03',529,15,'2005-07-13 13:00:03',1,'2006-02-15 21:30:53'), - (5718,'2005-07-10 11:03:20',3719,20,'2005-07-19 15:38:20',2,'2006-02-15 21:30:53'), - (5719,'2005-07-10 11:07:40',2100,94,'2005-07-15 14:14:40',2,'2006-02-15 21:30:53'), - (5720,'2005-07-10 11:09:12',576,339,'2005-07-16 07:31:12',1,'2006-02-15 21:30:53'), - (5721,'2005-07-10 11:09:35',2348,5,'2005-07-17 16:41:35',2,'2006-02-15 21:30:53'), - (5722,'2005-07-10 11:10:04',2890,556,'2005-07-12 16:31:04',2,'2006-02-15 21:30:53'), - (5723,'2005-07-10 11:14:48',605,33,'2005-07-11 15:46:48',2,'2006-02-15 21:30:53'), - (5724,'2005-07-10 11:18:12',3597,289,'2005-07-16 14:53:12',2,'2006-02-15 21:30:53'), - (5725,'2005-07-10 11:21:21',4293,426,'2005-07-14 05:34:21',2,'2006-02-15 21:30:53'), - (5726,'2005-07-10 11:22:08',3582,131,'2005-07-13 05:55:08',1,'2006-02-15 21:30:53'), - (5727,'2005-07-10 11:25:28',3338,550,'2005-07-11 11:03:28',2,'2006-02-15 21:30:53'), - (5728,'2005-07-10 11:26:14',636,335,'2005-07-15 12:55:14',1,'2006-02-15 21:30:53'), - (5729,'2005-07-10 11:27:25',4137,188,'2005-07-15 06:13:25',2,'2006-02-15 21:30:53'), - (5730,'2005-07-10 11:28:32',1903,301,'2005-07-11 11:45:32',2,'2006-02-15 21:30:53'), - (5731,'2005-07-10 11:31:52',2960,440,'2005-07-14 11:44:52',1,'2006-02-15 21:30:53'), - (5732,'2005-07-10 11:36:32',2833,597,'2005-07-12 13:09:32',2,'2006-02-15 21:30:53'), - (5733,'2005-07-10 11:37:24',3806,415,'2005-07-11 12:34:24',2,'2006-02-15 21:30:53'), - (5734,'2005-07-10 11:37:28',399,447,'2005-07-16 11:10:28',1,'2006-02-15 21:30:53'), - (5735,'2005-07-10 11:39:15',3259,65,'2005-07-19 09:52:15',1,'2006-02-15 21:30:53'), - (5736,'2005-07-10 11:45:48',1172,27,'2005-07-13 16:40:48',1,'2006-02-15 21:30:53'), - (5737,'2005-07-10 11:50:04',1118,218,'2005-07-13 10:37:04',1,'2006-02-15 21:30:53'), - (5738,'2005-07-10 11:50:51',200,187,'2005-07-19 17:46:51',1,'2006-02-15 21:30:53'), - (5739,'2005-07-10 11:51:50',163,219,'2005-07-19 17:40:50',1,'2006-02-15 21:30:53'), - (5740,'2005-07-10 11:51:58',2147,325,'2005-07-12 07:53:58',2,'2006-02-15 21:30:53'), - (5741,'2005-07-10 11:55:40',2041,513,'2005-07-16 15:02:40',2,'2006-02-15 21:30:53'), - (5742,'2005-07-10 11:56:18',3975,596,'2005-07-19 06:59:18',2,'2006-02-15 21:30:53'), - (5743,'2005-07-10 11:57:38',593,297,'2005-07-19 15:38:38',2,'2006-02-15 21:30:53'), - (5744,'2005-07-10 12:08:33',1372,437,'2005-07-14 12:34:33',2,'2006-02-15 21:30:53'), - (5745,'2005-07-10 12:10:11',41,305,'2005-07-19 06:56:11',1,'2006-02-15 21:30:53'), - (5746,'2005-07-10 12:15:12',3071,82,'2005-07-16 07:02:12',1,'2006-02-15 21:30:53'), - (5747,'2005-07-10 12:15:33',4562,583,'2005-07-18 10:11:33',1,'2006-02-15 21:30:53'), - (5748,'2005-07-10 12:19:59',1618,99,'2005-07-12 12:59:59',1,'2006-02-15 21:30:53'), - (5749,'2005-07-10 12:20:36',1768,304,'2005-07-19 10:39:36',1,'2006-02-15 21:30:53'), - (5750,'2005-07-10 12:20:41',3855,330,'2005-07-17 08:25:41',2,'2006-02-15 21:30:53'), - (5751,'2005-07-10 12:25:11',387,479,'2005-07-11 15:23:11',1,'2006-02-15 21:30:53'), - (5752,'2005-07-10 12:27:38',4444,86,'2005-07-18 09:22:38',2,'2006-02-15 21:30:53'), - (5753,'2005-07-10 12:29:43',3639,444,'2005-07-17 12:50:43',2,'2006-02-15 21:30:53'), - (5754,'2005-07-10 12:32:43',162,291,'2005-07-12 13:11:43',2,'2006-02-15 21:30:53'), - (5755,'2005-07-10 12:38:56',2760,2,'2005-07-19 17:02:56',1,'2006-02-15 21:30:53'), - (5756,'2005-07-10 12:39:28',130,183,'2005-07-11 14:08:28',2,'2006-02-15 21:30:53'), - (5757,'2005-07-10 12:40:17',1827,101,'2005-07-12 14:02:17',1,'2006-02-15 21:30:53'), - (5758,'2005-07-10 12:42:43',502,363,'2005-07-16 10:18:43',2,'2006-02-15 21:30:53'), - (5759,'2005-07-10 12:43:22',816,591,'2005-07-16 16:42:22',1,'2006-02-15 21:30:53'), - (5760,'2005-07-10 12:44:48',1050,154,'2005-07-14 12:25:48',1,'2006-02-15 21:30:53'), - (5761,'2005-07-10 12:45:36',1763,287,'2005-07-13 10:05:36',2,'2006-02-15 21:30:53'), - (5762,'2005-07-10 12:48:01',1815,217,'2005-07-18 16:43:01',1,'2006-02-15 21:30:53'), - (5763,'2005-07-10 12:58:12',753,397,'2005-07-14 08:52:12',1,'2006-02-15 21:30:53'), - (5764,'2005-07-10 12:58:16',1556,245,'2005-07-19 07:28:16',1,'2006-02-15 21:30:53'), - (5765,'2005-07-10 13:03:02',2619,293,'2005-07-16 09:31:02',1,'2006-02-15 21:30:53'), - (5766,'2005-07-10 13:07:31',7,406,'2005-07-16 13:03:31',1,'2006-02-15 21:30:53'), - (5767,'2005-07-10 13:13:18',2871,32,'2005-07-17 14:41:18',2,'2006-02-15 21:30:53'), - (5768,'2005-07-10 13:15:26',345,196,'2005-07-15 09:42:26',1,'2006-02-15 21:30:53'), - (5769,'2005-07-10 13:17:58',4052,141,'2005-07-11 11:32:58',1,'2006-02-15 21:30:53'), - (5770,'2005-07-10 13:21:28',914,71,'2005-07-11 08:59:28',2,'2006-02-15 21:30:53'), - (5771,'2005-07-10 13:26:45',3275,153,'2005-07-14 15:43:45',1,'2006-02-15 21:30:53'), - (5772,'2005-07-10 13:27:40',3635,21,'2005-07-17 08:24:40',1,'2006-02-15 21:30:53'), - (5773,'2005-07-10 13:31:09',3277,180,'2005-07-15 08:21:09',2,'2006-02-15 21:30:53'), - (5774,'2005-07-10 13:31:56',326,113,'2005-07-18 07:32:56',1,'2006-02-15 21:30:53'), - (5775,'2005-07-10 13:34:26',2175,325,'2005-07-15 10:01:26',1,'2006-02-15 21:30:53'), - (5776,'2005-07-10 13:35:22',3592,568,'2005-07-12 17:58:22',1,'2006-02-15 21:30:53'), - (5777,'2005-07-10 13:38:41',3959,40,'2005-07-17 15:48:41',2,'2006-02-15 21:30:53'), - (5778,'2005-07-10 13:41:37',4435,324,'2005-07-14 16:26:37',1,'2006-02-15 21:30:53'), - (5779,'2005-07-10 13:45:54',3266,244,'2005-07-15 18:13:54',1,'2006-02-15 21:30:53'), - (5780,'2005-07-10 13:46:23',168,516,'2005-07-14 17:19:23',2,'2006-02-15 21:30:53'), - (5781,'2005-07-10 13:49:30',3191,167,'2005-07-11 12:11:30',2,'2006-02-15 21:30:53'), - (5782,'2005-07-10 13:52:56',2514,440,'2005-07-15 09:32:56',2,'2006-02-15 21:30:53'), - (5783,'2005-07-10 13:55:33',3331,385,'2005-07-16 12:13:33',1,'2006-02-15 21:30:53'), - (5784,'2005-07-10 14:03:28',2323,422,'2005-07-16 16:22:28',1,'2006-02-15 21:30:53'), - (5785,'2005-07-10 14:06:03',142,211,'2005-07-17 17:59:03',2,'2006-02-15 21:30:53'), - (5786,'2005-07-10 14:06:44',2290,350,'2005-07-14 19:55:44',2,'2006-02-15 21:30:53'), - (5787,'2005-07-10 14:08:49',1075,44,'2005-07-19 18:29:49',1,'2006-02-15 21:30:53'), - (5788,'2005-07-10 14:10:22',1707,63,'2005-07-14 19:46:22',2,'2006-02-15 21:30:53'), - (5789,'2005-07-10 14:11:26',2601,571,'2005-07-18 16:19:26',1,'2006-02-15 21:30:53'), - (5790,'2005-07-10 14:15:21',1696,235,'2005-07-14 08:53:21',2,'2006-02-15 21:30:53'), - (5791,'2005-07-10 14:16:22',2795,319,'2005-07-19 13:38:22',2,'2006-02-15 21:30:53'), - (5792,'2005-07-10 14:22:19',4234,92,'2005-07-19 09:08:19',1,'2006-02-15 21:30:53'), - (5793,'2005-07-10 14:33:00',2927,268,'2005-07-13 19:27:00',1,'2006-02-15 21:30:53'), - (5794,'2005-07-10 14:34:53',1164,198,'2005-07-17 11:50:53',2,'2006-02-15 21:30:53'), - (5795,'2005-07-10 14:36:29',3958,304,'2005-07-14 13:26:29',1,'2006-02-15 21:30:53'), - (5796,'2005-07-10 14:42:54',1631,286,'2005-07-17 08:47:54',2,'2006-02-15 21:30:53'), - (5797,'2005-07-10 14:43:52',1880,384,'2005-07-13 16:12:52',2,'2006-02-15 21:30:53'), - (5798,'2005-07-10 14:45:09',331,107,'2005-07-16 13:43:09',1,'2006-02-15 21:30:53'), - (5799,'2005-07-10 14:53:35',3045,520,'2005-07-14 16:18:35',2,'2006-02-15 21:30:53'), - (5800,'2005-07-10 14:58:36',2466,411,'2005-07-11 19:50:36',2,'2006-02-15 21:30:53'), - (5801,'2005-07-10 14:59:05',3511,439,'2005-07-14 17:55:05',2,'2006-02-15 21:30:53'), - (5802,'2005-07-10 15:02:17',2295,520,'2005-07-19 15:43:17',2,'2006-02-15 21:30:53'), - (5803,'2005-07-10 15:05:42',1982,244,'2005-07-15 10:19:42',1,'2006-02-15 21:30:53'), - (5804,'2005-07-10 15:06:31',2168,137,'2005-07-14 11:00:31',1,'2006-02-15 21:30:53'), - (5805,'2005-07-10 15:08:41',3553,532,'2005-07-19 16:35:41',2,'2006-02-15 21:30:53'), - (5806,'2005-07-10 15:11:54',29,108,'2005-07-15 11:51:54',2,'2006-02-15 21:30:53'), - (5807,'2005-07-10 15:16:30',2092,301,'2005-07-11 14:02:30',2,'2006-02-15 21:30:53'), - (5808,'2005-07-10 15:17:33',2310,170,'2005-07-14 12:14:33',2,'2006-02-15 21:30:53'), - (5809,'2005-07-10 15:19:30',1748,461,'2005-07-13 12:31:30',2,'2006-02-15 21:30:53'), - (5810,'2005-07-10 15:22:04',1426,482,'2005-07-18 21:05:04',2,'2006-02-15 21:30:53'), - (5811,'2005-07-10 15:27:04',4007,441,'2005-07-12 17:20:04',1,'2006-02-15 21:30:53'), - (5812,'2005-07-10 15:27:56',1681,581,'2005-07-18 15:37:56',2,'2006-02-15 21:30:53'), - (5813,'2005-07-10 15:34:37',942,512,'2005-07-17 16:14:37',2,'2006-02-15 21:30:53'), - (5814,'2005-07-10 15:46:50',2537,71,'2005-07-13 15:28:50',2,'2006-02-15 21:30:53'), - (5815,'2005-07-10 15:48:19',2934,22,'2005-07-13 12:09:19',1,'2006-02-15 21:30:53'), - (5816,'2005-07-10 15:48:47',1746,382,'2005-07-13 11:51:47',2,'2006-02-15 21:30:53'), - (5817,'2005-07-10 15:49:12',2993,28,'2005-07-18 19:30:12',2,'2006-02-15 21:30:53'), - (5818,'2005-07-10 15:51:12',3940,334,'2005-07-14 14:10:12',2,'2006-02-15 21:30:53'), - (5819,'2005-07-10 15:56:20',3439,347,'2005-07-12 19:59:20',2,'2006-02-15 21:30:53'), - (5820,'2005-07-10 16:04:59',1511,485,'2005-07-16 12:10:59',1,'2006-02-15 21:30:53'), - (5821,'2005-07-10 16:07:16',147,302,'2005-07-14 19:48:16',1,'2006-02-15 21:30:53'), - (5822,'2005-07-10 16:10:39',1385,38,'2005-07-13 19:05:39',2,'2006-02-15 21:30:53'), - (5823,'2005-07-10 16:19:52',1879,483,'2005-07-11 12:33:52',2,'2006-02-15 21:30:53'), - (5824,'2005-07-10 16:19:53',1980,449,'2005-07-12 11:17:53',2,'2006-02-15 21:30:53'), - (5825,'2005-07-10 16:20:30',3843,444,'2005-07-11 18:58:30',1,'2006-02-15 21:30:53'), - (5826,'2005-07-10 16:21:02',4104,254,'2005-07-17 21:08:02',1,'2006-02-15 21:30:53'), - (5827,'2005-07-10 16:22:20',1296,290,'2005-07-15 21:13:20',2,'2006-02-15 21:30:53'), - (5828,'2005-07-10 16:27:25',2999,156,'2005-07-11 18:42:25',1,'2006-02-15 21:30:53'), - (5829,'2005-07-10 16:29:41',3405,118,'2005-07-14 22:03:41',1,'2006-02-15 21:30:53'), - (5830,'2005-07-10 16:34:00',2358,59,'2005-07-18 16:42:00',1,'2006-02-15 21:30:53'), - (5831,'2005-07-10 16:34:02',830,43,'2005-07-11 14:27:02',2,'2006-02-15 21:30:53'), - (5832,'2005-07-10 16:34:48',2387,63,'2005-07-17 17:25:48',1,'2006-02-15 21:30:53'), - (5833,'2005-07-10 16:39:24',3829,187,'2005-07-17 12:52:24',1,'2006-02-15 21:30:53'), - (5834,'2005-07-10 16:44:12',85,360,'2005-07-14 11:34:12',2,'2006-02-15 21:30:53'), - (5835,'2005-07-10 16:44:58',800,11,'2005-07-17 16:03:58',2,'2006-02-15 21:30:53'), - (5836,'2005-07-10 16:49:02',1842,310,'2005-07-11 22:35:02',2,'2006-02-15 21:30:53'), - (5837,'2005-07-10 16:57:50',1648,478,'2005-07-18 14:07:50',2,'2006-02-15 21:30:53'), - (5838,'2005-07-10 17:04:56',1627,202,'2005-07-11 15:15:56',1,'2006-02-15 21:30:53'), - (5839,'2005-07-10 17:08:30',252,367,'2005-07-13 21:21:30',2,'2006-02-15 21:30:53'), - (5840,'2005-07-10 17:09:09',1073,72,'2005-07-15 22:52:09',1,'2006-02-15 21:30:53'), - (5841,'2005-07-10 17:11:31',1230,525,'2005-07-18 15:50:31',2,'2006-02-15 21:30:53'), - (5842,'2005-07-10 17:11:37',139,247,'2005-07-14 21:43:37',1,'2006-02-15 21:30:53'), - (5843,'2005-07-10 17:14:27',1615,599,'2005-07-15 21:18:27',2,'2006-02-15 21:30:53'), - (5844,'2005-07-10 17:14:43',609,147,'2005-07-12 19:27:43',1,'2006-02-15 21:30:53'), - (5845,'2005-07-10 17:23:14',2882,334,'2005-07-12 16:29:14',2,'2006-02-15 21:30:53'), - (5846,'2005-07-10 17:25:24',938,233,'2005-07-12 13:41:24',2,'2006-02-15 21:30:53'), - (5847,'2005-07-10 17:27:42',4403,220,'2005-07-12 14:51:42',2,'2006-02-15 21:30:53'), - (5848,'2005-07-10 17:28:14',4549,409,'2005-07-14 11:54:14',1,'2006-02-15 21:30:53'), - (5849,'2005-07-10 17:32:33',1632,44,'2005-07-19 22:39:33',1,'2006-02-15 21:30:53'), - (5850,'2005-07-10 17:36:27',4015,531,'2005-07-15 16:44:27',2,'2006-02-15 21:30:53'), - (5851,'2005-07-10 17:40:47',3944,510,'2005-07-11 19:24:47',2,'2006-02-15 21:30:53'), - (5852,'2005-07-10 17:43:30',3890,484,'2005-07-15 15:05:30',2,'2006-02-15 21:30:53'), - (5853,'2005-07-10 17:45:13',3026,520,'2005-07-17 21:37:13',1,'2006-02-15 21:30:53'), - (5854,'2005-07-10 17:47:34',997,547,'2005-07-13 20:14:34',2,'2006-02-15 21:30:53'), - (5855,'2005-07-10 17:54:06',2457,166,'2005-07-18 15:41:06',2,'2006-02-15 21:30:53'), - (5856,'2005-07-10 17:57:32',497,314,'2005-07-11 13:57:32',1,'2006-02-15 21:30:53'), - (5857,'2005-07-10 17:59:29',1265,29,'2005-07-18 18:13:29',1,'2006-02-15 21:30:53'), - (5858,'2005-07-10 18:00:07',2913,257,'2005-07-11 20:01:07',2,'2006-02-15 21:30:53'), - (5859,'2005-07-10 18:02:02',131,220,'2005-07-11 23:24:02',1,'2006-02-15 21:30:53'), - (5860,'2005-07-10 18:08:49',3897,180,'2005-07-16 16:43:49',2,'2006-02-15 21:30:53'), - (5861,'2005-07-10 18:14:22',3881,277,'2005-07-14 15:32:22',1,'2006-02-15 21:30:53'), - (5862,'2005-07-10 18:20:48',2075,157,'2005-07-17 00:09:48',1,'2006-02-15 21:30:53'), - (5863,'2005-07-10 18:25:23',2557,419,'2005-07-15 23:49:23',1,'2006-02-15 21:30:53'), - (5864,'2005-07-10 18:29:57',4380,437,'2005-07-19 14:27:57',2,'2006-02-15 21:30:53'), - (5865,'2005-07-10 18:31:05',1382,126,'2005-07-12 18:29:05',2,'2006-02-15 21:30:53'), - (5866,'2005-07-10 18:35:14',457,484,'2005-07-19 19:41:14',2,'2006-02-15 21:30:53'), - (5867,'2005-07-10 18:39:01',730,321,'2005-07-19 21:56:01',2,'2006-02-15 21:30:53'), - (5868,'2005-07-10 18:39:16',452,429,'2005-07-15 21:19:16',1,'2006-02-15 21:30:53'), - (5869,'2005-07-10 18:40:09',2157,40,'2005-07-17 18:42:09',1,'2006-02-15 21:30:53'), - (5870,'2005-07-10 18:40:25',1524,438,'2005-07-12 15:39:25',2,'2006-02-15 21:30:53'), - (5871,'2005-07-10 18:46:08',3288,307,'2005-07-16 17:32:08',1,'2006-02-15 21:30:53'), - (5872,'2005-07-10 18:54:05',270,364,'2005-07-19 15:41:05',1,'2006-02-15 21:30:53'), - (5873,'2005-07-10 19:02:10',3151,354,'2005-07-14 19:13:10',2,'2006-02-15 21:30:53'), - (5874,'2005-07-10 19:02:51',2255,131,'2005-07-16 13:14:51',1,'2006-02-15 21:30:53'), - (5875,'2005-07-10 19:06:47',964,575,'2005-07-18 17:33:47',2,'2006-02-15 21:30:53'), - (5876,'2005-07-10 19:07:15',4445,578,'2005-07-14 17:29:15',2,'2006-02-15 21:30:53'), - (5877,'2005-07-10 19:08:51',1520,537,'2005-07-19 19:48:51',1,'2006-02-15 21:30:53'), - (5878,'2005-07-10 19:09:57',3805,271,'2005-07-16 17:22:57',1,'2006-02-15 21:30:53'), - (5879,'2005-07-10 19:12:47',3851,430,'2005-07-16 16:32:47',1,'2006-02-15 21:30:53'), - (5880,'2005-07-10 19:14:58',359,482,'2005-07-17 01:13:58',1,'2006-02-15 21:30:53'), - (5881,'2005-07-10 19:19:43',236,25,'2005-07-12 20:11:43',1,'2006-02-15 21:30:53'), - (5882,'2005-07-10 19:20:34',2830,319,'2005-07-11 18:39:34',2,'2006-02-15 21:30:53'), - (5883,'2005-07-10 19:25:21',2820,17,'2005-07-16 20:50:21',2,'2006-02-15 21:30:53'), - (5884,'2005-07-10 19:31:38',916,498,'2005-07-11 20:30:38',1,'2006-02-15 21:30:53'), - (5885,'2005-07-10 19:33:50',3129,331,'2005-07-17 00:26:50',2,'2006-02-15 21:30:53'), - (5886,'2005-07-10 19:36:25',907,215,'2005-07-11 22:24:25',2,'2006-02-15 21:30:53'), - (5887,'2005-07-10 19:45:47',2602,532,'2005-07-15 22:15:47',1,'2006-02-15 21:30:53'), - (5888,'2005-07-10 19:52:17',1620,268,'2005-07-18 20:32:17',2,'2006-02-15 21:30:53'), - (5889,'2005-07-10 19:54:41',1706,491,'2005-07-12 20:08:41',2,'2006-02-15 21:30:53'), - (5890,'2005-07-10 20:00:25',1463,535,'2005-07-18 17:57:25',2,'2006-02-15 21:30:53'), - (5891,'2005-07-10 20:01:17',4355,184,'2005-07-12 00:15:17',1,'2006-02-15 21:30:53'), - (5892,'2005-07-10 20:02:42',4322,333,'2005-07-11 20:02:42',1,'2006-02-15 21:30:53'), - (5893,'2005-07-10 20:05:30',1689,439,'2005-07-14 23:05:30',1,'2006-02-15 21:30:53'), - (5894,'2005-07-10 20:09:34',2264,194,'2005-07-17 15:39:34',1,'2006-02-15 21:30:53'), - (5895,'2005-07-10 20:13:19',2272,164,'2005-07-17 17:51:19',1,'2006-02-15 21:30:53'), - (5896,'2005-07-10 20:15:56',731,357,'2005-07-12 00:39:56',1,'2006-02-15 21:30:53'), - (5897,'2005-07-10 20:16:14',740,413,'2005-07-19 15:49:14',2,'2006-02-15 21:30:53'), - (5898,'2005-07-10 20:18:09',3257,538,'2005-07-16 14:44:09',1,'2006-02-15 21:30:53'), - (5899,'2005-07-10 20:21:52',1391,388,'2005-07-13 00:46:52',1,'2006-02-15 21:30:53'), - (5900,'2005-07-10 20:21:54',1081,419,'2005-07-17 00:26:54',1,'2006-02-15 21:30:53'), - (5901,'2005-07-10 20:22:12',86,165,'2005-07-19 16:43:12',2,'2006-02-15 21:30:53'), - (5902,'2005-07-10 20:31:24',2727,228,'2005-07-11 20:50:24',1,'2006-02-15 21:30:53'), - (5903,'2005-07-10 20:39:04',1388,573,'2005-07-11 17:41:04',1,'2006-02-15 21:30:53'), - (5904,'2005-07-10 20:39:44',350,531,'2005-07-13 17:57:44',2,'2006-02-15 21:30:53'), - (5905,'2005-07-10 20:41:09',3891,10,'2005-07-19 14:49:09',1,'2006-02-15 21:30:53'), - (5906,'2005-07-10 20:41:41',514,323,'2005-07-14 00:12:41',2,'2006-02-15 21:30:53'), - (5907,'2005-07-10 20:41:41',4432,168,'2005-07-15 21:18:41',2,'2006-02-15 21:30:53'), - (5908,'2005-07-10 20:44:14',810,156,'2005-07-13 15:05:14',2,'2006-02-15 21:30:53'), - (5909,'2005-07-10 20:46:13',2333,44,'2005-07-14 18:01:13',2,'2006-02-15 21:30:53'), - (5910,'2005-07-10 20:51:34',1039,464,'2005-07-19 14:54:34',1,'2006-02-15 21:30:53'), - (5911,'2005-07-10 20:51:42',4140,420,'2005-07-14 21:58:42',2,'2006-02-15 21:30:53'), - (5912,'2005-07-10 20:58:22',1187,351,'2005-07-17 01:15:22',2,'2006-02-15 21:30:53'), - (5913,'2005-07-10 20:58:55',2767,277,'2005-07-13 15:18:55',1,'2006-02-15 21:30:53'), - (5914,'2005-07-10 21:01:12',2639,372,'2005-07-16 18:27:12',2,'2006-02-15 21:30:53'), - (5915,'2005-07-10 21:12:16',2464,66,'2005-07-15 16:59:16',2,'2006-02-15 21:30:53'), - (5916,'2005-07-10 21:26:31',2267,35,'2005-07-19 20:23:31',1,'2006-02-15 21:30:53'), - (5917,'2005-07-10 21:30:22',2910,74,'2005-07-12 18:54:22',2,'2006-02-15 21:30:53'), - (5918,'2005-07-10 21:32:06',120,34,'2005-07-19 21:35:06',1,'2006-02-15 21:30:53'), - (5919,'2005-07-10 21:32:14',164,92,'2005-07-12 16:47:14',1,'2006-02-15 21:30:53'), - (5920,'2005-07-10 21:33:58',1893,221,'2005-07-17 19:41:58',2,'2006-02-15 21:30:53'), - (5921,'2005-07-10 21:35:12',3920,7,'2005-07-18 19:59:12',1,'2006-02-15 21:30:53'), - (5922,'2005-07-10 21:36:53',1392,271,'2005-07-16 02:51:53',1,'2006-02-15 21:30:53'), - (5923,'2005-07-10 21:40:06',1817,401,'2005-07-13 00:01:06',1,'2006-02-15 21:30:53'), - (5924,'2005-07-10 21:41:23',629,191,'2005-07-16 21:33:23',1,'2006-02-15 21:30:53'), - (5925,'2005-07-10 21:41:27',3724,503,'2005-07-18 18:35:27',2,'2006-02-15 21:30:53'), - (5926,'2005-07-10 21:53:42',2840,282,'2005-07-20 01:04:42',1,'2006-02-15 21:30:53'), - (5927,'2005-07-10 21:57:14',807,70,'2005-07-16 19:32:14',1,'2006-02-15 21:30:53'), - (5928,'2005-07-10 21:58:30',4132,50,'2005-07-15 19:41:30',1,'2006-02-15 21:30:53'), - (5929,'2005-07-10 21:59:29',4303,54,'2005-07-14 20:20:29',2,'2006-02-15 21:30:53'), - (5930,'2005-07-10 21:59:32',2338,254,'2005-07-11 18:40:32',2,'2006-02-15 21:30:53'), - (5931,'2005-07-10 22:04:19',2259,341,'2005-07-13 00:45:19',2,'2006-02-15 21:30:53'), - (5932,'2005-07-10 22:05:15',2269,523,'2005-07-12 17:04:15',2,'2006-02-15 21:30:53'), - (5933,'2005-07-10 22:06:48',4372,419,'2005-07-12 23:58:48',2,'2006-02-15 21:30:53'), - (5934,'2005-07-10 22:07:59',3825,576,'2005-07-15 21:07:59',2,'2006-02-15 21:30:53'), - (5935,'2005-07-10 22:11:04',3371,258,'2005-07-19 18:12:04',2,'2006-02-15 21:30:53'), - (5936,'2005-07-10 22:14:30',1951,522,'2005-07-15 01:32:30',1,'2006-02-15 21:30:53'), - (5937,'2005-07-10 22:16:08',1579,580,'2005-07-16 03:08:08',2,'2006-02-15 21:30:53'), - (5938,'2005-07-10 22:17:42',2834,236,'2005-07-16 22:38:42',2,'2006-02-15 21:30:53'), - (5939,'2005-07-10 22:30:05',4491,207,'2005-07-14 00:02:05',2,'2006-02-15 21:30:53'), - (5940,'2005-07-10 22:31:01',3295,292,'2005-07-14 00:52:01',1,'2006-02-15 21:30:53'), - (5941,'2005-07-10 22:40:47',492,43,'2005-07-17 00:19:47',2,'2006-02-15 21:30:53'), - (5942,'2005-07-10 22:47:17',2861,317,'2005-07-17 01:54:17',2,'2006-02-15 21:30:53'), - (5943,'2005-07-10 22:48:13',3019,255,'2005-07-16 01:33:13',1,'2006-02-15 21:30:53'), - (5944,'2005-07-10 22:51:44',3904,432,'2005-07-18 17:54:44',2,'2006-02-15 21:30:53'), - (5945,'2005-07-10 22:52:42',427,374,'2005-07-11 21:52:42',1,'2006-02-15 21:30:53'), - (5946,'2005-07-10 22:57:29',1629,308,'2005-07-12 00:08:29',1,'2006-02-15 21:30:53'), - (5947,'2005-07-10 23:07:42',327,331,'2005-07-18 23:13:42',1,'2006-02-15 21:30:53'), - (5948,'2005-07-10 23:12:08',3260,57,'2005-07-18 19:06:08',2,'2006-02-15 21:30:53'), - (5949,'2005-07-10 23:13:00',4397,496,'2005-07-14 01:10:00',2,'2006-02-15 21:30:53'), - (5950,'2005-07-10 23:13:45',4319,585,'2005-07-13 02:35:45',1,'2006-02-15 21:30:53'), - (5951,'2005-07-10 23:14:29',2501,589,'2005-07-13 01:01:29',1,'2006-02-15 21:30:53'), - (5952,'2005-07-10 23:18:20',3406,595,'2005-07-16 17:42:20',1,'2006-02-15 21:30:53'), - (5953,'2005-07-10 23:21:35',992,386,'2005-07-14 20:48:35',2,'2006-02-15 21:30:53'), - (5954,'2005-07-10 23:22:01',2627,32,'2005-07-14 04:42:01',2,'2006-02-15 21:30:53'), - (5955,'2005-07-10 23:22:10',834,409,'2005-07-17 17:55:10',2,'2006-02-15 21:30:53'), - (5956,'2005-07-10 23:23:08',2536,499,'2005-07-13 17:36:08',1,'2006-02-15 21:30:53'), - (5957,'2005-07-10 23:24:02',2517,210,'2005-07-12 20:28:02',1,'2006-02-15 21:30:53'), - (5958,'2005-07-10 23:31:51',3468,430,'2005-07-19 00:36:51',2,'2006-02-15 21:30:53'), - (5959,'2005-07-10 23:35:36',3169,436,'2005-07-13 02:19:36',1,'2006-02-15 21:30:53'), - (5960,'2005-07-10 23:38:34',3884,239,'2005-07-11 19:21:34',1,'2006-02-15 21:30:53'), - (5961,'2005-07-10 23:43:23',3537,21,'2005-07-15 05:21:23',2,'2006-02-15 21:30:53'), - (5962,'2005-07-10 23:45:22',1292,507,'2005-07-13 03:49:22',2,'2006-02-15 21:30:53'), - (5963,'2005-07-10 23:47:08',4434,35,'2005-07-12 04:27:08',1,'2006-02-15 21:30:53'), - (5964,'2005-07-10 23:47:18',3981,456,'2005-07-12 03:55:18',2,'2006-02-15 21:30:53'), - (5965,'2005-07-10 23:51:52',4476,348,'2005-07-11 23:29:52',1,'2006-02-15 21:30:53'), - (5966,'2005-07-10 23:59:27',2076,384,'2005-07-14 23:38:27',2,'2006-02-15 21:30:53'), - (5967,'2005-07-11 00:02:19',2125,215,'2005-07-18 23:08:19',1,'2006-02-15 21:30:53'), - (5968,'2005-07-11 00:03:11',3273,554,'2005-07-19 18:46:11',1,'2006-02-15 21:30:53'), - (5969,'2005-07-11 00:03:22',4177,433,'2005-07-18 01:28:22',2,'2006-02-15 21:30:53'), - (5970,'2005-07-11 00:04:50',1514,94,'2005-07-19 03:36:50',1,'2006-02-15 21:30:53'), - (5971,'2005-07-11 00:05:58',2191,84,'2005-07-19 04:50:58',2,'2006-02-15 21:30:53'), - (5972,'2005-07-11 00:08:54',4577,30,'2005-07-17 21:01:54',1,'2006-02-15 21:30:53'), - (5973,'2005-07-11 00:09:17',1194,165,'2005-07-14 19:18:17',1,'2006-02-15 21:30:53'), - (5974,'2005-07-11 00:10:37',3984,517,'2005-07-18 18:48:37',2,'2006-02-15 21:30:53'), - (5975,'2005-07-11 00:14:19',2997,15,'2005-07-16 04:21:19',1,'2006-02-15 21:30:53'), - (5976,'2005-07-11 00:16:35',1693,505,'2005-07-20 01:30:35',2,'2006-02-15 21:30:53'), - (5977,'2005-07-11 00:16:38',4011,484,'2005-07-19 21:00:38',1,'2006-02-15 21:30:53'), - (5978,'2005-07-11 00:16:54',1720,508,'2005-07-19 18:55:54',1,'2006-02-15 21:30:53'), - (5979,'2005-07-11 00:17:09',1736,251,'2005-07-14 00:38:09',1,'2006-02-15 21:30:53'), - (5980,'2005-07-11 00:18:21',1777,309,'2005-07-14 21:26:21',1,'2006-02-15 21:30:53'), - (5981,'2005-07-11 00:19:04',2151,241,'2005-07-13 19:10:04',1,'2006-02-15 21:30:53'), - (5982,'2005-07-11 00:24:44',2329,403,'2005-07-14 04:42:44',2,'2006-02-15 21:30:53'), - (5983,'2005-07-11 00:34:11',351,127,'2005-07-15 05:37:11',1,'2006-02-15 21:30:53'), - (5984,'2005-07-11 00:44:36',2801,178,'2005-07-15 00:04:36',1,'2006-02-15 21:30:53'), - (5985,'2005-07-11 00:51:58',1108,506,'2005-07-14 22:02:58',2,'2006-02-15 21:30:53'), - (5986,'2005-07-11 00:54:56',1624,171,'2005-07-13 22:52:56',2,'2006-02-15 21:30:53'), - (5987,'2005-07-11 00:55:31',1000,447,'2005-07-16 06:28:31',2,'2006-02-15 21:30:53'), - (5988,'2005-07-11 00:55:38',151,158,'2005-07-13 21:36:38',2,'2006-02-15 21:30:53'), - (5989,'2005-07-11 00:57:53',696,283,'2005-07-15 02:24:53',1,'2006-02-15 21:30:53'), - (5990,'2005-07-11 01:03:14',1561,432,'2005-07-15 19:32:14',1,'2006-02-15 21:30:53'), - (5991,'2005-07-11 01:03:38',3623,590,'2005-07-12 22:32:38',2,'2006-02-15 21:30:53'), - (5992,'2005-07-11 01:06:21',4216,54,'2005-07-13 19:15:21',2,'2006-02-15 21:30:53'), - (5993,'2005-07-11 01:06:41',3588,529,'2005-07-14 19:19:41',1,'2006-02-15 21:30:53'), - (5994,'2005-07-11 01:14:10',4287,295,'2005-07-12 00:42:10',2,'2006-02-15 21:30:53'), - (5995,'2005-07-11 01:15:39',4357,360,'2005-07-20 05:01:39',2,'2006-02-15 21:30:53'), - (5996,'2005-07-11 01:18:33',4263,223,'2005-07-17 04:18:33',1,'2006-02-15 21:30:53'), - (5997,'2005-07-11 01:19:50',3542,128,'2005-07-16 06:29:50',1,'2006-02-15 21:30:53'), - (5998,'2005-07-11 01:20:46',1458,250,'2005-07-15 21:41:46',1,'2006-02-15 21:30:53'), - (5999,'2005-07-11 01:21:22',211,450,'2005-07-19 01:35:22',1,'2006-02-15 21:30:53'), - (6000,'2005-07-11 01:23:06',1986,371,'2005-07-12 04:39:06',2,'2006-02-15 21:30:53'), - (6001,'2005-07-11 01:24:44',1779,45,'2005-07-11 22:55:44',1,'2006-02-15 21:30:53'), - (6002,'2005-07-11 01:27:49',4422,45,'2005-07-12 06:02:49',1,'2006-02-15 21:30:53'), - (6003,'2005-07-11 01:28:33',296,527,'2005-07-17 21:24:33',1,'2006-02-15 21:30:53'), - (6004,'2005-07-11 01:34:25',1756,204,'2005-07-18 00:48:25',2,'2006-02-15 21:30:53'), - (6005,'2005-07-11 01:36:42',809,78,'2005-07-14 04:47:42',2,'2006-02-15 21:30:53'), - (6006,'2005-07-11 01:38:42',4201,399,'2005-07-17 05:18:42',2,'2006-02-15 21:30:53'), - (6007,'2005-07-11 01:43:06',4393,289,'2005-07-17 04:46:06',1,'2006-02-15 21:30:53'), - (6008,'2005-07-11 01:51:29',1227,216,'2005-07-18 01:39:29',1,'2006-02-15 21:30:53'), - (6009,'2005-07-11 01:51:58',494,470,'2005-07-18 07:12:58',2,'2006-02-15 21:30:53'), - (6010,'2005-07-11 01:52:28',771,285,'2005-07-13 03:13:28',1,'2006-02-15 21:30:53'), - (6011,'2005-07-11 01:54:48',3899,527,'2005-07-18 07:17:48',2,'2006-02-15 21:30:53'), - (6012,'2005-07-11 02:00:12',2609,258,'2005-07-17 02:49:12',2,'2006-02-15 21:30:53'), - (6013,'2005-07-11 02:02:03',3774,543,'2005-07-14 02:07:03',1,'2006-02-15 21:30:53'), - (6014,'2005-07-11 02:02:55',3748,397,'2005-07-12 23:49:55',1,'2006-02-15 21:30:53'), - (6015,'2005-07-11 02:04:12',295,596,'2005-07-13 02:43:12',2,'2006-02-15 21:30:53'), - (6016,'2005-07-11 02:04:45',651,296,'2005-07-17 22:22:45',1,'2006-02-15 21:30:53'), - (6017,'2005-07-11 02:05:32',4088,596,'2005-07-14 22:50:32',1,'2006-02-15 21:30:53'), - (6018,'2005-07-11 02:06:36',4555,500,'2005-07-12 02:16:36',2,'2006-02-15 21:30:53'), - (6019,'2005-07-11 02:08:29',3483,9,'2005-07-13 02:19:29',2,'2006-02-15 21:30:53'), - (6020,'2005-07-11 02:08:55',1974,71,'2005-07-16 22:07:55',1,'2006-02-15 21:30:53'), - (6021,'2005-07-11 02:10:18',3949,173,'2005-07-13 05:19:18',1,'2006-02-15 21:30:53'), - (6022,'2005-07-11 02:15:53',2435,469,'2005-07-13 03:40:53',2,'2006-02-15 21:30:53'), - (6023,'2005-07-11 02:15:57',3794,456,'2005-07-15 21:30:57',2,'2006-02-15 21:30:53'), - (6024,'2005-07-11 02:16:47',2923,271,'2005-07-12 05:54:47',1,'2006-02-15 21:30:53'), - (6025,'2005-07-11 02:18:13',3306,113,'2005-07-11 23:30:13',1,'2006-02-15 21:30:53'), - (6026,'2005-07-11 02:21:43',3936,409,'2005-07-13 03:49:43',1,'2006-02-15 21:30:53'), - (6027,'2005-07-11 02:26:29',4536,513,'2005-07-18 23:05:29',1,'2006-02-15 21:30:53'), - (6028,'2005-07-11 02:31:44',784,450,'2005-07-14 03:18:44',1,'2006-02-15 21:30:53'), - (6029,'2005-07-11 02:36:46',2030,520,'2005-07-14 20:51:46',2,'2006-02-15 21:30:53'), - (6030,'2005-07-11 02:37:51',95,36,'2005-07-16 22:34:51',2,'2006-02-15 21:30:53'), - (6031,'2005-07-11 02:42:14',1530,224,'2005-07-14 03:24:14',2,'2006-02-15 21:30:53'), - (6032,'2005-07-11 02:49:01',3792,28,'2005-07-18 05:05:01',2,'2006-02-15 21:30:53'), - (6033,'2005-07-11 02:59:34',2819,322,'2005-07-16 03:48:34',2,'2006-02-15 21:30:53'), - (6034,'2005-07-11 03:00:50',1735,324,'2005-07-16 06:19:50',1,'2006-02-15 21:30:53'), - (6035,'2005-07-11 03:01:45',3474,176,'2005-07-14 01:04:45',2,'2006-02-15 21:30:53'), - (6036,'2005-07-11 03:02:28',2553,297,'2005-07-15 22:12:28',2,'2006-02-15 21:30:53'), - (6037,'2005-07-11 03:06:54',1886,386,'2005-07-12 22:46:54',2,'2006-02-15 21:30:53'), - (6038,'2005-07-11 03:10:37',1555,243,'2005-07-19 05:14:37',2,'2006-02-15 21:30:53'), - (6039,'2005-07-11 03:12:19',1776,137,'2005-07-19 05:46:19',1,'2006-02-15 21:30:53'), - (6040,'2005-07-11 03:14:26',2161,511,'2005-07-14 01:12:26',2,'2006-02-15 21:30:53'), - (6041,'2005-07-11 03:14:58',2815,551,'2005-07-13 00:48:58',2,'2006-02-15 21:30:53'), - (6042,'2005-07-11 03:17:04',2153,5,'2005-07-19 07:08:04',1,'2006-02-15 21:30:53'), - (6043,'2005-07-11 03:18:10',3303,430,'2005-07-12 05:50:10',1,'2006-02-15 21:30:53'), - (6044,'2005-07-11 03:18:39',1270,481,'2005-07-13 06:58:39',2,'2006-02-15 21:30:53'), - (6045,'2005-07-11 03:21:05',2003,39,'2005-07-17 23:10:05',1,'2006-02-15 21:30:53'), - (6046,'2005-07-11 03:21:49',1935,569,'2005-07-19 23:58:49',1,'2006-02-15 21:30:53'), - (6047,'2005-07-11 03:27:01',4147,235,'2005-07-16 06:42:01',2,'2006-02-15 21:30:53'), - (6048,'2005-07-11 03:32:23',975,154,'2005-07-14 07:39:23',1,'2006-02-15 21:30:53'), - (6049,'2005-07-11 03:32:32',2582,236,'2005-07-15 06:57:32',2,'2006-02-15 21:30:53'), - (6050,'2005-07-11 03:34:29',825,527,'2005-07-15 02:55:29',1,'2006-02-15 21:30:53'), - (6051,'2005-07-11 03:46:41',2675,435,'2005-07-11 22:36:41',2,'2006-02-15 21:30:53'), - (6052,'2005-07-11 03:51:27',881,75,'2005-07-16 02:55:27',2,'2006-02-15 21:30:53'), - (6053,'2005-07-11 03:51:59',2836,237,'2005-07-19 09:13:59',2,'2006-02-15 21:30:53'), - (6054,'2005-07-11 03:58:39',1176,354,'2005-07-13 23:08:39',1,'2006-02-15 21:30:53'), - (6055,'2005-07-11 03:59:08',595,125,'2005-07-18 05:35:08',2,'2006-02-15 21:30:53'), - (6056,'2005-07-11 04:01:27',3069,145,'2005-07-12 04:14:27',1,'2006-02-15 21:30:53'), - (6057,'2005-07-11 04:03:40',1340,187,'2005-07-17 01:34:40',2,'2006-02-15 21:30:53'), - (6058,'2005-07-11 04:03:51',3761,498,'2005-07-14 03:52:51',1,'2006-02-15 21:30:53'), - (6059,'2005-07-11 04:03:54',1437,394,'2005-07-18 01:35:54',1,'2006-02-15 21:30:53'), - (6060,'2005-07-11 04:06:17',3146,342,'2005-07-12 03:05:17',1,'2006-02-15 21:30:53'), - (6061,'2005-07-11 04:06:25',1859,392,'2005-07-11 23:11:25',1,'2006-02-15 21:30:53'), - (6062,'2005-07-11 04:11:58',3301,408,'2005-07-15 05:00:58',1,'2006-02-15 21:30:53'), - (6063,'2005-07-11 04:16:51',1715,519,'2005-07-13 08:35:51',2,'2006-02-15 21:30:53'), - (6064,'2005-07-11 04:23:18',265,297,'2005-07-19 02:21:18',1,'2006-02-15 21:30:53'), - (6065,'2005-07-11 04:25:51',1007,562,'2005-07-17 08:19:51',1,'2006-02-15 21:30:53'), - (6066,'2005-07-11 04:32:42',1877,155,'2005-07-15 03:56:42',2,'2006-02-15 21:30:53'), - (6067,'2005-07-11 04:34:49',2097,186,'2005-07-16 09:33:49',1,'2006-02-15 21:30:53'), - (6068,'2005-07-11 04:41:09',2331,265,'2005-07-14 04:45:09',1,'2006-02-15 21:30:53'), - (6069,'2005-07-11 04:44:59',256,553,'2005-07-13 01:00:59',1,'2006-02-15 21:30:53'), - (6070,'2005-07-11 04:47:42',1679,267,'2005-07-13 01:49:42',2,'2006-02-15 21:30:53'), - (6071,'2005-07-11 04:50:03',889,179,'2005-07-19 23:52:03',1,'2006-02-15 21:30:53'), - (6072,'2005-07-11 04:52:40',1790,339,'2005-07-18 01:02:40',1,'2006-02-15 21:30:53'), - (6073,'2005-07-11 04:54:31',4243,466,'2005-07-20 07:23:31',1,'2006-02-15 21:30:53'), - (6074,'2005-07-11 04:59:56',2876,259,'2005-07-13 23:31:56',1,'2006-02-15 21:30:53'), - (6075,'2005-07-11 05:03:03',2160,283,'2005-07-12 01:28:03',1,'2006-02-15 21:30:53'), - (6076,'2005-07-11 05:05:30',1792,143,'2005-07-18 04:22:30',1,'2006-02-15 21:30:53'), - (6077,'2005-07-11 05:06:08',2154,542,'2005-07-16 10:29:08',1,'2006-02-15 21:30:53'), - (6078,'2005-07-11 05:06:52',3985,91,'2005-07-17 06:13:52',2,'2006-02-15 21:30:53'), - (6079,'2005-07-11 05:07:14',1494,119,'2005-07-17 08:45:14',1,'2006-02-15 21:30:53'), - (6080,'2005-07-11 05:08:11',2682,115,'2005-07-16 09:54:11',2,'2006-02-15 21:30:53'), - (6081,'2005-07-11 05:11:09',2286,72,'2005-07-13 05:33:09',2,'2006-02-15 21:30:53'), - (6082,'2005-07-11 05:12:41',1091,82,'2005-07-16 03:40:41',2,'2006-02-15 21:30:53'), - (6083,'2005-07-11 05:12:49',3183,285,'2005-07-15 00:46:49',2,'2006-02-15 21:30:53'), - (6084,'2005-07-11 05:16:20',1334,479,'2005-07-19 01:38:20',2,'2006-02-15 21:30:53'), - (6085,'2005-07-11 05:24:36',312,155,'2005-07-16 03:49:36',2,'2006-02-15 21:30:53'), - (6086,'2005-07-11 05:29:03',1505,420,'2005-07-16 01:17:03',1,'2006-02-15 21:30:53'), - (6087,'2005-07-11 05:29:22',198,155,'2005-07-12 23:33:22',2,'2006-02-15 21:30:53'), - (6088,'2005-07-11 05:40:35',3796,498,'2005-07-17 07:14:35',2,'2006-02-15 21:30:53'), - (6089,'2005-07-11 05:45:59',3298,580,'2005-07-17 11:04:59',2,'2006-02-15 21:30:53'), - (6090,'2005-07-11 05:47:08',71,241,'2005-07-20 07:52:08',2,'2006-02-15 21:30:53'), - (6091,'2005-07-11 05:49:18',580,383,'2005-07-15 07:26:18',1,'2006-02-15 21:30:53'), - (6092,'2005-07-11 05:51:31',2129,75,'2005-07-17 03:42:31',1,'2006-02-15 21:30:53'), - (6093,'2005-07-11 05:52:50',1868,117,'2005-07-20 11:45:50',1,'2006-02-15 21:30:53'), - (6094,'2005-07-11 05:54:42',2684,285,'2005-07-18 08:19:42',2,'2006-02-15 21:30:53'), - (6095,'2005-07-11 06:06:41',727,501,'2005-07-19 06:14:41',1,'2006-02-15 21:30:53'), - (6096,'2005-07-11 06:18:04',2720,420,'2005-07-14 01:15:04',1,'2006-02-15 21:30:53'), - (6097,'2005-07-11 06:21:43',297,416,'2005-07-16 10:04:43',1,'2006-02-15 21:30:53'), - (6098,'2005-07-11 06:23:28',3016,525,'2005-07-17 04:05:28',1,'2006-02-15 21:30:53'), - (6099,'2005-07-11 06:24:44',3865,469,'2005-07-15 08:03:44',2,'2006-02-15 21:30:53'), - (6100,'2005-07-11 06:40:31',3485,16,'2005-07-14 10:59:31',2,'2006-02-15 21:30:53'), - (6101,'2005-07-11 06:50:33',2618,508,'2005-07-18 01:52:33',2,'2006-02-15 21:30:53'), - (6102,'2005-07-11 06:53:09',4305,146,'2005-07-17 07:05:09',1,'2006-02-15 21:30:53'), - (6103,'2005-07-11 06:59:55',262,540,'2005-07-16 09:30:55',1,'2006-02-15 21:30:53'), - (6104,'2005-07-11 07:01:35',3531,389,'2005-07-17 02:29:35',1,'2006-02-15 21:30:53'), - (6105,'2005-07-11 07:03:19',3501,595,'2005-07-19 06:46:19',1,'2006-02-15 21:30:53'), - (6106,'2005-07-11 07:05:06',2714,185,'2005-07-20 09:27:06',1,'2006-02-15 21:30:53'), - (6107,'2005-07-11 07:07:09',3798,304,'2005-07-14 07:32:09',2,'2006-02-15 21:30:53'), - (6108,'2005-07-11 07:19:24',4296,572,'2005-07-13 12:38:24',2,'2006-02-15 21:30:53'), - (6109,'2005-07-11 07:20:57',3603,163,'2005-07-13 07:29:57',2,'2006-02-15 21:30:53'), - (6110,'2005-07-11 07:23:47',541,405,'2005-07-20 03:17:47',2,'2006-02-15 21:30:53'), - (6111,'2005-07-11 07:26:57',3504,300,'2005-07-13 10:43:57',2,'2006-02-15 21:30:53'), - (6112,'2005-07-11 07:28:05',1311,366,'2005-07-18 07:29:05',1,'2006-02-15 21:30:53'), - (6113,'2005-07-11 07:31:08',4437,115,'2005-07-20 11:01:08',2,'2006-02-15 21:30:53'), - (6114,'2005-07-11 07:33:48',479,404,'2005-07-18 06:13:48',2,'2006-02-15 21:30:53'), - (6115,'2005-07-11 07:36:50',3415,27,'2005-07-13 11:30:50',1,'2006-02-15 21:30:53'), - (6116,'2005-07-11 07:37:38',247,381,'2005-07-14 11:53:38',2,'2006-02-15 21:30:53'), - (6117,'2005-07-11 07:39:38',2613,135,'2005-07-18 12:07:38',2,'2006-02-15 21:30:53'), - (6118,'2005-07-11 07:43:08',3013,13,'2005-07-20 03:17:08',1,'2006-02-15 21:30:53'), - (6119,'2005-07-11 07:44:46',4281,472,'2005-07-20 04:41:46',2,'2006-02-15 21:30:53'), - (6120,'2005-07-11 07:49:53',3299,268,'2005-07-19 04:56:53',2,'2006-02-15 21:30:53'), - (6121,'2005-07-11 07:55:27',1613,347,'2005-07-16 03:43:27',2,'2006-02-15 21:30:53'), - (6122,'2005-07-11 07:58:07',2212,32,'2005-07-16 09:52:07',1,'2006-02-15 21:30:53'), - (6123,'2005-07-11 08:02:27',1354,200,'2005-07-15 08:58:27',2,'2006-02-15 21:30:53'), - (6124,'2005-07-11 08:02:32',2022,368,'2005-07-12 05:58:32',2,'2006-02-15 21:30:53'), - (6125,'2005-07-11 08:03:35',2439,307,'2005-07-18 12:46:35',1,'2006-02-15 21:30:53'), - (6126,'2005-07-11 08:06:56',1069,230,'2005-07-16 11:42:56',1,'2006-02-15 21:30:53'), - (6127,'2005-07-11 08:06:59',285,355,'2005-07-12 09:01:59',1,'2006-02-15 21:30:53'), - (6128,'2005-07-11 08:15:08',2050,18,'2005-07-13 03:36:08',1,'2006-02-15 21:30:53'), - (6129,'2005-07-11 08:15:09',3875,222,'2005-07-18 13:00:09',1,'2006-02-15 21:30:53'), - (6130,'2005-07-11 08:19:56',2547,538,'2005-07-16 12:02:56',2,'2006-02-15 21:30:53'), - (6131,'2005-07-11 08:22:05',3313,107,'2005-07-14 07:40:05',1,'2006-02-15 21:30:53'), - (6132,'2005-07-11 08:24:44',3229,319,'2005-07-13 06:41:44',1,'2006-02-15 21:30:53'), - (6133,'2005-07-11 08:25:22',1992,107,'2005-07-13 13:17:22',1,'2006-02-15 21:30:53'), - (6134,'2005-07-11 08:28:19',3225,305,'2005-07-18 09:20:19',2,'2006-02-15 21:30:53'), - (6135,'2005-07-11 08:32:23',833,325,'2005-07-17 08:43:23',1,'2006-02-15 21:30:53'), - (6136,'2005-07-11 08:34:09',205,346,'2005-07-14 06:11:09',1,'2006-02-15 21:30:53'), - (6137,'2005-07-11 08:34:20',2029,67,'2005-07-13 03:31:20',2,'2006-02-15 21:30:53'), - (6138,'2005-07-11 08:36:04',1808,438,'2005-07-13 10:30:04',2,'2006-02-15 21:30:53'), - (6139,'2005-07-11 08:39:33',3065,206,'2005-07-17 08:00:33',2,'2006-02-15 21:30:53'), - (6140,'2005-07-11 08:40:47',2749,363,'2005-07-14 07:26:47',1,'2006-02-15 21:30:53'), - (6141,'2005-07-11 08:52:16',2279,228,'2005-07-17 03:00:16',1,'2006-02-15 21:30:53'), - (6142,'2005-07-11 08:54:09',1722,136,'2005-07-18 05:23:09',2,'2006-02-15 21:30:53'), - (6143,'2005-07-11 09:02:37',1030,169,'2005-07-19 05:57:37',2,'2006-02-15 21:30:53'), - (6144,'2005-07-11 09:02:53',1077,554,'2005-07-15 10:58:53',2,'2006-02-15 21:30:53'), - (6145,'2005-07-11 09:07:01',1359,540,'2005-07-19 08:21:01',1,'2006-02-15 21:30:53'), - (6146,'2005-07-11 09:09:59',3374,11,'2005-07-20 11:42:59',2,'2006-02-15 21:30:53'), - (6147,'2005-07-11 09:13:08',910,35,'2005-07-17 03:48:08',1,'2006-02-15 21:30:53'), - (6148,'2005-07-11 09:14:22',4318,410,'2005-07-12 08:01:22',1,'2006-02-15 21:30:53'), - (6149,'2005-07-11 09:19:31',4337,26,'2005-07-17 14:45:31',2,'2006-02-15 21:30:53'), - (6150,'2005-07-11 09:23:56',1110,418,'2005-07-15 10:56:56',2,'2006-02-15 21:30:53'), - (6151,'2005-07-11 09:25:17',352,476,'2005-07-12 05:11:17',1,'2006-02-15 21:30:53'), - (6152,'2005-07-11 09:25:52',560,361,'2005-07-17 07:40:52',2,'2006-02-15 21:30:53'), - (6153,'2005-07-11 09:31:04',105,47,'2005-07-19 03:41:04',1,'2006-02-15 21:30:53'), - (6154,'2005-07-11 09:32:19',2717,368,'2005-07-16 15:10:19',1,'2006-02-15 21:30:53'), - (6155,'2005-07-11 09:45:31',785,229,'2005-07-18 08:09:31',1,'2006-02-15 21:30:53'), - (6156,'2005-07-11 09:45:48',302,297,'2005-07-15 04:51:48',1,'2006-02-15 21:30:53'), - (6157,'2005-07-11 09:48:16',4481,133,'2005-07-16 05:00:16',2,'2006-02-15 21:30:53'), - (6158,'2005-07-11 09:50:24',3954,92,'2005-07-13 04:49:24',2,'2006-02-15 21:30:53'), - (6159,'2005-07-11 09:55:34',126,225,'2005-07-13 10:01:34',2,'2006-02-15 21:30:53'), - (6160,'2005-07-11 10:08:13',2716,110,'2005-07-14 08:18:13',1,'2006-02-15 21:30:53'), - (6161,'2005-07-11 10:11:54',3681,524,'2005-07-15 12:12:54',2,'2006-02-15 21:30:53'), - (6162,'2005-07-11 10:12:30',786,79,'2005-07-19 06:02:30',2,'2006-02-15 21:30:53'), - (6163,'2005-07-11 10:13:46',1330,1,'2005-07-19 13:15:46',2,'2006-02-15 21:30:53'), - (6164,'2005-07-11 10:16:23',2755,47,'2005-07-14 11:21:23',1,'2006-02-15 21:30:53'), - (6165,'2005-07-11 10:17:29',3540,9,'2005-07-17 07:27:29',1,'2006-02-15 21:30:53'), - (6166,'2005-07-11 10:19:05',967,503,'2005-07-12 14:30:05',1,'2006-02-15 21:30:53'), - (6167,'2005-07-11 10:21:21',3255,200,'2005-07-14 15:38:21',1,'2006-02-15 21:30:53'), - (6168,'2005-07-11 10:21:38',284,77,'2005-07-14 09:55:38',2,'2006-02-15 21:30:53'), - (6169,'2005-07-11 10:25:56',2781,148,'2005-07-19 07:18:56',2,'2006-02-15 21:30:53'), - (6170,'2005-07-11 10:29:21',278,580,'2005-07-16 05:13:21',2,'2006-02-15 21:30:53'), - (6171,'2005-07-11 10:29:35',448,491,'2005-07-16 12:01:35',1,'2006-02-15 21:30:53'), - (6172,'2005-07-11 10:32:09',3514,219,'2005-07-14 16:23:09',1,'2006-02-15 21:30:53'), - (6173,'2005-07-11 10:33:11',4252,419,'2005-07-15 10:57:11',1,'2006-02-15 21:30:53'), - (6174,'2005-07-11 10:36:28',3123,7,'2005-07-18 16:19:28',2,'2006-02-15 21:30:53'), - (6175,'2005-07-11 10:44:37',3037,195,'2005-07-15 08:13:37',1,'2006-02-15 21:30:53'), - (6176,'2005-07-11 10:48:21',2969,279,'2005-07-12 15:54:21',2,'2006-02-15 21:30:53'), - (6177,'2005-07-11 10:53:49',313,589,'2005-07-17 14:54:49',1,'2006-02-15 21:30:53'), - (6178,'2005-07-11 10:59:09',2777,91,'2005-07-16 11:19:09',2,'2006-02-15 21:30:53'), - (6179,'2005-07-11 10:59:59',3665,42,'2005-07-17 06:02:59',1,'2006-02-15 21:30:53'), - (6180,'2005-07-11 11:06:50',4401,351,'2005-07-19 09:03:50',2,'2006-02-15 21:30:53'), - (6181,'2005-07-11 11:10:11',4398,200,'2005-07-15 09:33:11',1,'2006-02-15 21:30:53'), - (6182,'2005-07-11 11:11:38',2562,540,'2005-07-17 08:33:38',2,'2006-02-15 21:30:53'), - (6183,'2005-07-11 11:14:35',856,402,'2005-07-16 15:35:35',1,'2006-02-15 21:30:53'), - (6184,'2005-07-11 11:19:21',1131,146,'2005-07-19 07:35:21',1,'2006-02-15 21:30:53'), - (6185,'2005-07-11 11:25:09',4331,294,'2005-07-18 12:09:09',2,'2006-02-15 21:30:53'), - (6186,'2005-07-11 11:26:41',2086,128,'2005-07-17 12:02:41',2,'2006-02-15 21:30:53'), - (6187,'2005-07-11 11:28:51',3344,500,'2005-07-12 15:44:51',1,'2006-02-15 21:30:53'), - (6188,'2005-07-11 11:31:47',189,114,'2005-07-15 09:28:47',1,'2006-02-15 21:30:53'), - (6189,'2005-07-11 11:36:03',3800,552,'2005-07-20 15:33:03',2,'2006-02-15 21:30:53'), - (6190,'2005-07-11 11:36:18',2564,321,'2005-07-19 17:05:18',2,'2006-02-15 21:30:53'), - (6191,'2005-07-11 11:37:52',3448,480,'2005-07-17 12:45:52',1,'2006-02-15 21:30:53'), - (6192,'2005-07-11 11:44:41',4573,314,'2005-07-19 10:12:41',1,'2006-02-15 21:30:53'), - (6193,'2005-07-11 11:46:57',465,189,'2005-07-19 14:11:57',2,'2006-02-15 21:30:53'), - (6194,'2005-07-11 11:51:00',1049,83,'2005-07-15 12:34:00',2,'2006-02-15 21:30:53'), - (6195,'2005-07-11 12:00:32',4193,319,'2005-07-16 15:00:32',2,'2006-02-15 21:30:53'), - (6196,'2005-07-11 12:05:46',995,429,'2005-07-18 08:27:46',2,'2006-02-15 21:30:53'), - (6197,'2005-07-11 12:09:51',4156,596,'2005-07-12 06:15:51',1,'2006-02-15 21:30:53'), - (6198,'2005-07-11 12:12:17',3345,470,'2005-07-18 07:40:17',2,'2006-02-15 21:30:53'), - (6199,'2005-07-11 12:16:03',4329,80,'2005-07-18 15:33:03',2,'2006-02-15 21:30:53'), - (6200,'2005-07-11 12:16:42',3258,137,'2005-07-17 09:27:42',2,'2006-02-15 21:30:53'), - (6201,'2005-07-11 12:18:07',4530,559,'2005-07-12 12:11:07',2,'2006-02-15 21:30:53'), - (6202,'2005-07-11 12:24:25',1424,373,'2005-07-18 08:13:25',1,'2006-02-15 21:30:53'), - (6203,'2005-07-11 12:28:57',1001,408,'2005-07-15 14:10:57',1,'2006-02-15 21:30:53'), - (6204,'2005-07-11 12:29:22',2572,362,'2005-07-13 10:41:22',2,'2006-02-15 21:30:53'), - (6205,'2005-07-11 12:31:24',3442,303,'2005-07-13 11:31:24',2,'2006-02-15 21:30:53'), - (6206,'2005-07-11 12:32:14',1368,459,'2005-07-15 15:01:14',2,'2006-02-15 21:30:53'), - (6207,'2005-07-11 12:34:24',3226,143,'2005-07-14 10:15:24',2,'2006-02-15 21:30:53'), - (6208,'2005-07-11 12:34:56',672,31,'2005-07-19 15:17:56',1,'2006-02-15 21:30:53'), - (6209,'2005-07-11 12:36:05',3091,219,'2005-07-17 14:48:05',2,'2006-02-15 21:30:53'), - (6210,'2005-07-11 12:36:43',931,209,'2005-07-17 17:45:43',2,'2006-02-15 21:30:53'), - (6211,'2005-07-11 12:39:01',2699,6,'2005-07-20 15:59:01',2,'2006-02-15 21:30:53'), - (6212,'2005-07-11 12:40:48',3962,337,'2005-07-15 17:49:48',2,'2006-02-15 21:30:53'), - (6213,'2005-07-11 12:43:07',485,23,'2005-07-16 07:23:07',2,'2006-02-15 21:30:53'), - (6214,'2005-07-11 12:49:48',1258,49,'2005-07-18 07:41:48',2,'2006-02-15 21:30:53'), - (6215,'2005-07-11 12:52:36',316,390,'2005-07-12 08:33:36',1,'2006-02-15 21:30:53'), - (6216,'2005-07-11 12:57:05',3571,387,'2005-07-13 12:31:05',1,'2006-02-15 21:30:53'), - (6217,'2005-07-11 13:13:45',1090,177,'2005-07-19 16:37:45',2,'2006-02-15 21:30:53'), - (6218,'2005-07-11 13:14:58',815,410,'2005-07-16 08:13:58',2,'2006-02-15 21:30:53'), - (6219,'2005-07-11 13:18:37',38,303,'2005-07-13 13:18:37',2,'2006-02-15 21:30:53'), - (6220,'2005-07-11 13:22:06',1717,421,'2005-07-12 17:46:06',2,'2006-02-15 21:30:53'), - (6221,'2005-07-11 13:24:27',1699,393,'2005-07-15 17:51:27',1,'2006-02-15 21:30:53'), - (6222,'2005-07-11 13:25:49',2066,386,'2005-07-13 14:32:49',1,'2006-02-15 21:30:53'), - (6223,'2005-07-11 13:27:09',3754,192,'2005-07-12 14:02:09',1,'2006-02-15 21:30:53'), - (6224,'2005-07-11 13:42:18',3274,475,'2005-07-16 09:28:18',1,'2006-02-15 21:30:53'), - (6225,'2005-07-11 13:45:14',2483,204,'2005-07-14 10:23:14',1,'2006-02-15 21:30:53'), - (6226,'2005-07-11 13:48:11',2758,134,'2005-07-15 17:18:11',2,'2006-02-15 21:30:53'), - (6227,'2005-07-11 13:56:46',1654,210,'2005-07-18 12:53:46',1,'2006-02-15 21:30:53'), - (6228,'2005-07-11 13:58:36',2281,367,'2005-07-17 19:03:36',2,'2006-02-15 21:30:53'), - (6229,'2005-07-11 13:59:50',3137,399,'2005-07-20 09:26:50',1,'2006-02-15 21:30:53'), - (6230,'2005-07-11 14:02:19',2260,490,'2005-07-17 08:11:19',2,'2006-02-15 21:30:53'), - (6231,'2005-07-11 14:02:36',2526,122,'2005-07-13 19:04:36',2,'2006-02-15 21:30:53'), - (6232,'2005-07-11 14:08:27',2492,590,'2005-07-20 19:34:27',2,'2006-02-15 21:30:53'), - (6233,'2005-07-11 14:10:47',3731,378,'2005-07-15 15:13:47',2,'2006-02-15 21:30:53'), - (6234,'2005-07-11 14:16:10',2911,232,'2005-07-19 19:55:10',1,'2006-02-15 21:30:53'), - (6235,'2005-07-11 14:17:51',2659,379,'2005-07-17 11:14:51',2,'2006-02-15 21:30:53'), - (6236,'2005-07-11 14:18:17',3813,338,'2005-07-14 08:47:17',2,'2006-02-15 21:30:53'), - (6237,'2005-07-11 14:19:12',2215,166,'2005-07-15 15:05:12',1,'2006-02-15 21:30:53'), - (6238,'2005-07-11 14:20:18',3749,23,'2005-07-14 18:34:18',1,'2006-02-15 21:30:53'), - (6239,'2005-07-11 14:20:48',4107,132,'2005-07-17 13:41:48',2,'2006-02-15 21:30:53'), - (6240,'2005-07-11 14:32:41',640,524,'2005-07-20 18:38:41',1,'2006-02-15 21:30:53'), - (6241,'2005-07-11 14:40:48',4449,74,'2005-07-18 09:51:48',1,'2006-02-15 21:30:53'), - (6242,'2005-07-11 14:45:04',670,245,'2005-07-12 18:34:04',2,'2006-02-15 21:30:53'), - (6243,'2005-07-11 14:53:25',3456,26,'2005-07-15 09:26:25',2,'2006-02-15 21:30:53'), - (6244,'2005-07-11 14:53:38',1558,383,'2005-07-12 16:42:38',1,'2006-02-15 21:30:53'), - (6245,'2005-07-11 14:56:57',512,241,'2005-07-16 14:35:57',1,'2006-02-15 21:30:53'), - (6246,'2005-07-11 14:57:51',2376,172,'2005-07-19 19:10:51',2,'2006-02-15 21:30:53'), - (6247,'2005-07-11 15:00:05',2504,589,'2005-07-18 13:47:05',1,'2006-02-15 21:30:53'), - (6248,'2005-07-11 15:01:54',2686,6,'2005-07-19 16:58:54',1,'2006-02-15 21:30:53'), - (6249,'2005-07-11 15:02:02',4334,30,'2005-07-14 11:37:02',2,'2006-02-15 21:30:53'), - (6250,'2005-07-11 15:02:04',4087,458,'2005-07-17 10:54:04',1,'2006-02-15 21:30:53'), - (6251,'2005-07-11 15:06:20',3956,230,'2005-07-18 20:11:20',2,'2006-02-15 21:30:53'), - (6252,'2005-07-11 15:06:29',1294,295,'2005-07-16 14:07:29',1,'2006-02-15 21:30:53'), - (6253,'2005-07-11 15:07:19',1425,570,'2005-07-13 11:00:19',1,'2006-02-15 21:30:53'), - (6254,'2005-07-11 15:10:18',2038,20,'2005-07-17 14:20:18',2,'2006-02-15 21:30:53'), - (6255,'2005-07-11 15:11:33',1459,319,'2005-07-15 19:55:33',2,'2006-02-15 21:30:53'), - (6256,'2005-07-11 15:19:22',480,307,'2005-07-13 12:43:22',1,'2006-02-15 21:30:53'), - (6257,'2005-07-11 15:23:46',3253,492,'2005-07-14 17:26:46',2,'2006-02-15 21:30:53'), - (6258,'2005-07-11 15:24:32',632,417,'2005-07-18 18:29:32',1,'2006-02-15 21:30:53'), - (6259,'2005-07-11 15:25:52',3007,84,'2005-07-13 11:54:52',2,'2006-02-15 21:30:53'), - (6260,'2005-07-11 15:26:29',4308,454,'2005-07-13 17:37:29',2,'2006-02-15 21:30:53'), - (6261,'2005-07-11 15:28:34',694,386,'2005-07-14 17:54:34',1,'2006-02-15 21:30:53'), - (6262,'2005-07-11 15:33:24',4136,355,'2005-07-17 12:40:24',1,'2006-02-15 21:30:53'), - (6263,'2005-07-11 15:33:50',2391,336,'2005-07-17 12:49:50',2,'2006-02-15 21:30:53'), - (6264,'2005-07-11 15:42:35',4246,565,'2005-07-12 11:29:35',2,'2006-02-15 21:30:53'), - (6265,'2005-07-11 15:43:51',3931,477,'2005-07-12 12:51:51',2,'2006-02-15 21:30:53'), - (6266,'2005-07-11 15:45:39',941,397,'2005-07-15 18:29:39',1,'2006-02-15 21:30:53'), - (6267,'2005-07-11 15:53:00',2152,20,'2005-07-17 18:09:00',2,'2006-02-15 21:30:53'), - (6268,'2005-07-11 15:55:34',1154,125,'2005-07-19 17:25:34',1,'2006-02-15 21:30:53'), - (6269,'2005-07-11 15:58:43',3915,167,'2005-07-13 13:25:43',1,'2006-02-15 21:30:53'), - (6270,'2005-07-11 15:59:10',2308,292,'2005-07-18 10:29:10',2,'2006-02-15 21:30:53'), - (6271,'2005-07-11 16:01:35',1246,467,'2005-07-20 12:07:35',2,'2006-02-15 21:30:53'), - (6272,'2005-07-11 16:03:49',3103,240,'2005-07-15 19:54:49',1,'2006-02-15 21:30:53'), - (6273,'2005-07-11 16:08:41',2403,152,'2005-07-14 16:41:41',2,'2006-02-15 21:30:53'), - (6274,'2005-07-11 16:09:42',2998,472,'2005-07-19 20:46:42',1,'2006-02-15 21:30:53'), - (6275,'2005-07-11 16:12:11',3599,333,'2005-07-17 20:19:11',2,'2006-02-15 21:30:53'), - (6276,'2005-07-11 16:15:50',1826,284,'2005-07-19 20:50:50',2,'2006-02-15 21:30:53'), - (6277,'2005-07-11 16:19:01',4023,92,'2005-07-18 21:00:01',2,'2006-02-15 21:30:53'), - (6278,'2005-07-11 16:20:02',2232,558,'2005-07-19 19:29:02',2,'2006-02-15 21:30:53'), - (6279,'2005-07-11 16:26:07',1254,49,'2005-07-17 21:05:07',2,'2006-02-15 21:30:53'), - (6280,'2005-07-11 16:36:17',4055,33,'2005-07-13 14:04:17',2,'2006-02-15 21:30:53'), - (6281,'2005-07-11 16:38:16',835,236,'2005-07-13 10:57:16',2,'2006-02-15 21:30:53'), - (6282,'2005-07-11 16:46:22',4453,60,'2005-07-15 13:19:22',1,'2006-02-15 21:30:53'), - (6283,'2005-07-11 16:47:32',3319,402,'2005-07-17 21:46:32',1,'2006-02-15 21:30:53'), - (6284,'2005-07-11 16:51:39',2938,177,'2005-07-15 19:59:39',1,'2006-02-15 21:30:53'), - (6285,'2005-07-11 16:52:07',2140,444,'2005-07-13 21:33:07',2,'2006-02-15 21:30:53'), - (6286,'2005-07-11 16:55:35',1070,140,'2005-07-13 22:51:35',1,'2006-02-15 21:30:53'), - (6287,'2005-07-11 17:00:04',35,93,'2005-07-12 13:16:04',1,'2006-02-15 21:30:53'), - (6288,'2005-07-11 17:01:52',3235,357,'2005-07-19 15:11:52',1,'2006-02-15 21:30:53'), - (6289,'2005-07-11 17:06:39',3185,99,'2005-07-12 15:54:39',2,'2006-02-15 21:30:53'), - (6290,'2005-07-11 17:12:42',2634,66,'2005-07-19 21:53:42',2,'2006-02-15 21:30:53'), - (6291,'2005-07-11 17:16:40',3126,262,'2005-07-13 18:24:40',2,'2006-02-15 21:30:53'), - (6292,'2005-07-11 17:23:33',4375,505,'2005-07-12 16:27:33',2,'2006-02-15 21:30:53'), - (6293,'2005-07-11 17:24:57',4260,471,'2005-07-13 18:45:57',2,'2006-02-15 21:30:53'), - (6294,'2005-07-11 17:25:55',1732,463,'2005-07-15 17:48:55',1,'2006-02-15 21:30:53'), - (6295,'2005-07-11 17:30:58',1393,7,'2005-07-15 15:50:58',1,'2006-02-15 21:30:53'), - (6296,'2005-07-11 17:34:04',4202,484,'2005-07-17 21:12:04',1,'2006-02-15 21:30:53'), - (6297,'2005-07-11 17:37:22',2738,69,'2005-07-19 13:54:22',2,'2006-02-15 21:30:53'), - (6298,'2005-07-11 17:42:33',3906,256,'2005-07-13 18:14:33',2,'2006-02-15 21:30:53'), - (6299,'2005-07-11 17:45:08',4125,324,'2005-07-13 16:36:08',2,'2006-02-15 21:30:53'), - (6300,'2005-07-11 17:50:09',1269,283,'2005-07-18 13:11:09',1,'2006-02-15 21:30:53'), - (6301,'2005-07-11 17:54:09',3528,275,'2005-07-18 20:42:09',2,'2006-02-15 21:30:53'), - (6302,'2005-07-11 17:55:38',3221,391,'2005-07-17 22:11:38',1,'2006-02-15 21:30:53'), - (6303,'2005-07-11 17:55:43',846,236,'2005-07-13 12:50:43',1,'2006-02-15 21:30:53'), - (6304,'2005-07-11 18:02:16',4183,579,'2005-07-14 14:01:16',1,'2006-02-15 21:30:53'), - (6305,'2005-07-11 18:02:25',1544,337,'2005-07-20 13:29:25',1,'2006-02-15 21:30:53'), - (6306,'2005-07-11 18:04:26',486,208,'2005-07-20 14:22:26',2,'2006-02-15 21:30:53'), - (6307,'2005-07-11 18:04:29',4029,345,'2005-07-17 23:40:29',2,'2006-02-15 21:30:53'), - (6308,'2005-07-11 18:08:41',3155,472,'2005-07-19 15:48:41',2,'2006-02-15 21:30:53'), - (6309,'2005-07-11 18:13:24',1054,232,'2005-07-13 23:11:24',1,'2006-02-15 21:30:53'), - (6310,'2005-07-11 18:14:05',3064,537,'2005-07-16 15:39:05',2,'2006-02-15 21:30:53'), - (6311,'2005-07-11 18:18:52',1789,373,'2005-07-16 17:52:52',2,'2006-02-15 21:30:53'), - (6312,'2005-07-11 18:19:02',2188,417,'2005-07-18 00:00:02',1,'2006-02-15 21:30:53'), - (6313,'2005-07-11 18:29:52',2976,283,'2005-07-14 21:34:52',1,'2006-02-15 21:30:53'), - (6314,'2005-07-11 18:32:44',4128,55,'2005-07-17 23:58:44',1,'2006-02-15 21:30:53'), - (6315,'2005-07-11 18:42:49',608,374,'2005-07-12 23:19:49',2,'2006-02-15 21:30:53'), - (6316,'2005-07-11 18:44:52',1910,526,'2005-07-19 23:35:52',2,'2006-02-15 21:30:53'), - (6317,'2005-07-11 18:47:41',4206,225,'2005-07-14 18:18:41',1,'2006-02-15 21:30:53'), - (6318,'2005-07-11 18:48:22',2048,425,'2005-07-12 13:39:22',1,'2006-02-15 21:30:53'), - (6319,'2005-07-11 18:50:45',3739,233,'2005-07-12 15:26:45',1,'2006-02-15 21:30:53'), - (6320,'2005-07-11 18:50:55',441,511,'2005-07-13 22:46:55',2,'2006-02-15 21:30:53'), - (6321,'2005-07-11 18:51:02',2655,388,'2005-07-14 20:57:02',2,'2006-02-15 21:30:53'), - (6322,'2005-07-11 18:58:20',4115,403,'2005-07-14 16:41:20',2,'2006-02-15 21:30:53'), - (6323,'2005-07-11 19:02:19',1352,346,'2005-07-14 15:54:19',1,'2006-02-15 21:30:53'), - (6324,'2005-07-11 19:02:34',655,386,'2005-07-17 15:57:34',1,'2006-02-15 21:30:53'), - (6325,'2005-07-11 19:06:01',4556,542,'2005-07-18 18:25:01',2,'2006-02-15 21:30:53'), - (6326,'2005-07-11 19:06:55',2137,563,'2005-07-12 20:41:55',1,'2006-02-15 21:30:53'), - (6327,'2005-07-11 19:07:29',909,146,'2005-07-15 16:09:29',1,'2006-02-15 21:30:53'), - (6328,'2005-07-11 19:09:33',999,260,'2005-07-12 20:16:33',2,'2006-02-15 21:30:53'), - (6329,'2005-07-11 19:10:38',2763,352,'2005-07-19 14:46:38',2,'2006-02-15 21:30:53'), - (6330,'2005-07-11 19:15:42',3917,119,'2005-07-17 19:10:42',1,'2006-02-15 21:30:53'), - (6331,'2005-07-11 19:17:21',1356,295,'2005-07-18 18:35:21',2,'2006-02-15 21:30:53'), - (6332,'2005-07-11 19:19:06',1733,538,'2005-07-13 13:51:06',2,'2006-02-15 21:30:53'), - (6333,'2005-07-11 19:20:16',2610,285,'2005-07-17 15:33:16',1,'2006-02-15 21:30:53'), - (6334,'2005-07-11 19:20:44',948,168,'2005-07-19 18:49:44',2,'2006-02-15 21:30:53'), - (6335,'2005-07-11 19:25:15',2757,396,'2005-07-16 17:02:15',1,'2006-02-15 21:30:53'), - (6336,'2005-07-11 19:30:13',1229,471,'2005-07-20 21:27:13',2,'2006-02-15 21:30:53'), - (6337,'2005-07-11 19:30:47',3967,47,'2005-07-19 20:27:47',2,'2006-02-15 21:30:53'), - (6338,'2005-07-11 19:39:41',1691,54,'2005-07-18 01:13:41',2,'2006-02-15 21:30:53'), - (6339,'2005-07-11 19:45:32',2401,145,'2005-07-18 22:34:32',2,'2006-02-15 21:30:53'), - (6340,'2005-07-11 19:46:05',2374,264,'2005-07-20 16:51:05',2,'2006-02-15 21:30:53'), - (6341,'2005-07-11 19:48:02',3580,448,'2005-07-15 01:31:02',1,'2006-02-15 21:30:53'), - (6342,'2005-07-11 19:48:24',1851,403,'2005-07-13 14:09:24',2,'2006-02-15 21:30:53'), - (6343,'2005-07-11 19:51:35',513,147,'2005-07-12 19:13:35',1,'2006-02-15 21:30:53'), - (6344,'2005-07-11 20:04:43',3074,78,'2005-07-18 14:35:43',2,'2006-02-15 21:30:53'), - (6345,'2005-07-11 20:05:18',4332,532,'2005-07-20 17:28:18',1,'2006-02-15 21:30:53'), - (6346,'2005-07-11 20:08:34',4066,445,'2005-07-16 16:35:34',2,'2006-02-15 21:30:53'), - (6347,'2005-07-11 20:18:53',3160,178,'2005-07-16 20:45:53',1,'2006-02-15 21:30:53'), - (6348,'2005-07-11 20:21:18',21,66,'2005-07-19 15:56:18',2,'2006-02-15 21:30:53'), - (6349,'2005-07-11 20:25:05',1581,216,'2005-07-21 00:35:05',2,'2006-02-15 21:30:53'), - (6350,'2005-07-11 20:30:15',2853,225,'2005-07-16 21:30:15',1,'2006-02-15 21:30:53'), - (6351,'2005-07-11 20:31:44',1852,507,'2005-07-18 17:16:44',2,'2006-02-15 21:30:53'), - (6352,'2005-07-11 20:34:13',1143,235,'2005-07-13 19:49:13',1,'2006-02-15 21:30:53'), - (6353,'2005-07-11 20:48:56',699,130,'2005-07-21 00:11:56',1,'2006-02-15 21:30:53'), - (6354,'2005-07-11 20:54:27',3203,176,'2005-07-18 23:46:27',2,'2006-02-15 21:30:53'), - (6355,'2005-07-11 20:56:29',2472,482,'2005-07-20 01:50:29',2,'2006-02-15 21:30:53'), - (6356,'2005-07-11 20:57:48',2645,149,'2005-07-12 22:40:48',2,'2006-02-15 21:30:53'), - (6357,'2005-07-11 20:58:51',658,252,'2005-07-12 15:06:51',1,'2006-02-15 21:30:53'), - (6358,'2005-07-11 21:03:12',4527,567,'2005-07-15 20:06:12',2,'2006-02-15 21:30:53'), - (6359,'2005-07-11 21:06:17',1656,30,'2005-07-16 02:51:17',2,'2006-02-15 21:30:53'), - (6360,'2005-07-11 21:07:40',3075,338,'2005-07-16 15:11:40',1,'2006-02-15 21:30:53'), - (6361,'2005-07-11 21:09:14',2903,561,'2005-07-14 18:26:14',2,'2006-02-15 21:30:53'), - (6362,'2005-07-11 21:09:31',4259,358,'2005-07-13 23:08:31',1,'2006-02-15 21:30:53'), - (6363,'2005-07-11 21:13:19',4167,344,'2005-07-20 15:44:19',1,'2006-02-15 21:30:53'), - (6364,'2005-07-11 21:14:48',4146,160,'2005-07-20 23:20:48',2,'2006-02-15 21:30:53'), - (6365,'2005-07-11 21:17:40',4550,566,'2005-07-14 20:53:40',1,'2006-02-15 21:30:53'), - (6366,'2005-07-11 21:18:16',3989,366,'2005-07-17 00:21:16',1,'2006-02-15 21:30:53'), - (6367,'2005-07-11 21:18:29',1465,357,'2005-07-15 01:05:29',1,'2006-02-15 21:30:53'), - (6368,'2005-07-11 21:19:01',3666,588,'2005-07-13 17:56:01',2,'2006-02-15 21:30:53'), - (6369,'2005-07-11 21:23:36',1086,252,'2005-07-13 22:23:36',2,'2006-02-15 21:30:53'), - (6370,'2005-07-11 21:28:32',1410,99,'2005-07-20 02:51:32',2,'2006-02-15 21:30:53'), - (6371,'2005-07-11 21:31:51',4297,265,'2005-07-16 23:10:51',1,'2006-02-15 21:30:53'), - (6372,'2005-07-11 21:35:06',741,64,'2005-07-15 02:30:06',2,'2006-02-15 21:30:53'), - (6373,'2005-07-11 21:35:20',1042,115,'2005-07-13 23:22:20',2,'2006-02-15 21:30:53'), - (6374,'2005-07-11 21:36:10',266,244,'2005-07-17 15:50:10',2,'2006-02-15 21:30:53'), - (6375,'2005-07-11 21:39:46',1936,8,'2005-07-18 02:12:46',2,'2006-02-15 21:30:53'), - (6376,'2005-07-11 21:40:23',1834,263,'2005-07-13 23:16:23',1,'2006-02-15 21:30:53'), - (6377,'2005-07-11 21:41:16',4017,118,'2005-07-15 20:05:16',1,'2006-02-15 21:30:53'), - (6378,'2005-07-11 21:45:23',3170,145,'2005-07-14 16:56:23',1,'2006-02-15 21:30:53'), - (6379,'2005-07-11 21:51:25',522,287,'2005-07-17 03:38:25',2,'2006-02-15 21:30:53'), - (6380,'2005-07-11 21:55:40',3378,172,'2005-07-17 20:42:40',1,'2006-02-15 21:30:53'), - (6381,'2005-07-11 21:58:48',2584,340,'2005-07-16 16:18:48',1,'2006-02-15 21:30:53'), - (6382,'2005-07-11 21:58:53',3223,336,'2005-07-17 21:18:53',2,'2006-02-15 21:30:53'), - (6383,'2005-07-11 22:06:53',4275,486,'2005-07-17 16:09:53',1,'2006-02-15 21:30:53'), - (6384,'2005-07-11 22:07:26',491,313,'2005-07-16 22:39:26',1,'2006-02-15 21:30:53'), - (6385,'2005-07-11 22:07:32',1830,69,'2005-07-20 16:57:32',1,'2006-02-15 21:30:53'), - (6386,'2005-07-11 22:14:57',633,593,'2005-07-15 16:41:57',2,'2006-02-15 21:30:53'), - (6387,'2005-07-11 22:15:56',1726,384,'2005-07-14 20:20:56',2,'2006-02-15 21:30:53'), - (6388,'2005-07-11 22:17:16',3506,525,'2005-07-19 23:50:16',2,'2006-02-15 21:30:53'), - (6389,'2005-07-11 22:18:20',2268,274,'2005-07-16 16:57:20',2,'2006-02-15 21:30:53'), - (6390,'2005-07-11 22:19:23',3057,77,'2005-07-15 20:10:23',2,'2006-02-15 21:30:53'), - (6391,'2005-07-11 22:23:09',1745,264,'2005-07-15 23:02:09',1,'2006-02-15 21:30:53'), - (6392,'2005-07-11 22:25:19',4406,468,'2005-07-16 04:24:19',1,'2006-02-15 21:30:53'), - (6393,'2005-07-11 22:28:12',3802,164,'2005-07-14 18:03:12',1,'2006-02-15 21:30:53'), - (6394,'2005-07-11 22:29:15',2574,52,'2005-07-20 02:19:15',2,'2006-02-15 21:30:53'), - (6395,'2005-07-11 22:29:29',3058,264,'2005-07-18 00:50:29',1,'2006-02-15 21:30:53'), - (6396,'2005-07-11 22:31:08',2394,507,'2005-07-19 17:19:08',2,'2006-02-15 21:30:53'), - (6397,'2005-07-11 22:34:02',2423,287,'2005-07-13 23:01:02',1,'2006-02-15 21:30:53'), - (6398,'2005-07-11 22:34:49',1409,296,'2005-07-17 17:58:49',2,'2006-02-15 21:30:53'), - (6399,'2005-07-11 22:39:05',2031,288,'2005-07-16 01:12:05',1,'2006-02-15 21:30:53'), - (6400,'2005-07-11 22:43:44',3289,536,'2005-07-19 03:58:44',2,'2006-02-15 21:30:53'), - (6401,'2005-07-11 22:44:34',1427,35,'2005-07-12 22:18:34',2,'2006-02-15 21:30:53'), - (6402,'2005-07-11 22:46:10',2576,66,'2005-07-16 04:02:10',1,'2006-02-15 21:30:53'), - (6403,'2005-07-11 22:46:25',1019,238,'2005-07-13 22:15:25',1,'2006-02-15 21:30:53'), - (6404,'2005-07-11 22:49:50',1183,526,'2005-07-14 18:29:50',2,'2006-02-15 21:30:53'), - (6405,'2005-07-11 22:53:12',3983,357,'2005-07-18 23:02:12',2,'2006-02-15 21:30:53'), - (6406,'2005-07-11 22:55:27',4439,392,'2005-07-20 04:50:27',2,'2006-02-15 21:30:53'), - (6407,'2005-07-11 23:02:19',775,140,'2005-07-21 00:30:19',1,'2006-02-15 21:30:53'), - (6408,'2005-07-11 23:03:02',2008,350,'2005-07-19 23:09:02',2,'2006-02-15 21:30:53'), - (6409,'2005-07-11 23:05:49',3859,537,'2005-07-13 00:13:49',2,'2006-02-15 21:30:53'), - (6410,'2005-07-11 23:08:06',1127,560,'2005-07-19 19:57:06',2,'2006-02-15 21:30:53'), - (6411,'2005-07-11 23:10:50',4347,124,'2005-07-19 17:15:50',1,'2006-02-15 21:30:53'), - (6412,'2005-07-11 23:19:21',3797,220,'2005-07-16 19:48:21',1,'2006-02-15 21:30:53'), - (6413,'2005-07-11 23:26:11',4446,251,'2005-07-17 21:58:11',2,'2006-02-15 21:30:53'), - (6414,'2005-07-11 23:26:13',814,502,'2005-07-18 17:29:13',1,'2006-02-15 21:30:53'), - (6415,'2005-07-11 23:27:52',4175,84,'2005-07-19 22:29:52',2,'2006-02-15 21:30:53'), - (6416,'2005-07-11 23:29:14',1063,158,'2005-07-13 20:20:14',1,'2006-02-15 21:30:53'), - (6417,'2005-07-11 23:35:11',3042,80,'2005-07-18 20:00:11',2,'2006-02-15 21:30:53'), - (6418,'2005-07-11 23:36:27',3101,185,'2005-07-16 18:42:27',1,'2006-02-15 21:30:53'), - (6419,'2005-07-11 23:36:38',3683,311,'2005-07-13 03:23:38',1,'2006-02-15 21:30:53'), - (6420,'2005-07-11 23:38:49',4443,206,'2005-07-17 17:46:49',2,'2006-02-15 21:30:53'), - (6421,'2005-07-11 23:45:25',4477,479,'2005-07-15 20:45:25',2,'2006-02-15 21:30:53'), - (6422,'2005-07-11 23:46:19',762,257,'2005-07-20 22:12:19',1,'2006-02-15 21:30:53'), - (6423,'2005-07-11 23:47:31',892,427,'2005-07-19 18:16:31',1,'2006-02-15 21:30:53'), - (6424,'2005-07-11 23:49:37',3040,359,'2005-07-21 00:53:37',1,'2006-02-15 21:30:53'), - (6425,'2005-07-11 23:54:52',2487,339,'2005-07-13 18:37:52',1,'2006-02-15 21:30:53'), - (6426,'2005-07-11 23:56:38',498,495,'2005-07-21 05:22:38',1,'2006-02-15 21:30:53'), - (6427,'2005-07-11 23:57:34',1043,122,'2005-07-14 18:05:34',2,'2006-02-15 21:30:53'), - (6428,'2005-07-12 00:01:51',4365,187,'2005-07-20 22:02:51',2,'2006-02-15 21:30:53'), - (6429,'2005-07-12 00:02:50',141,342,'2005-07-21 02:08:50',1,'2006-02-15 21:30:53'), - (6430,'2005-07-12 00:03:34',178,390,'2005-07-15 03:11:34',1,'2006-02-15 21:30:53'), - (6431,'2005-07-12 00:03:57',3471,458,'2005-07-20 03:47:57',1,'2006-02-15 21:30:53'), - (6432,'2005-07-12 00:09:41',970,293,'2005-07-20 20:06:41',1,'2006-02-15 21:30:53'), - (6433,'2005-07-12 00:12:02',1357,101,'2005-07-21 04:25:02',2,'2006-02-15 21:30:53'), - (6434,'2005-07-12 00:14:25',1478,102,'2005-07-20 19:54:25',2,'2006-02-15 21:30:53'), - (6435,'2005-07-12 00:16:19',1957,561,'2005-07-17 19:15:19',1,'2006-02-15 21:30:53'), - (6436,'2005-07-12 00:18:42',3758,122,'2005-07-13 03:57:42',2,'2006-02-15 21:30:53'), - (6437,'2005-07-12 00:20:29',4539,355,'2005-07-12 22:26:29',1,'2006-02-15 21:30:53'), - (6438,'2005-07-12 00:23:01',412,211,'2005-07-17 22:45:01',1,'2006-02-15 21:30:53'), - (6439,'2005-07-12 00:23:48',3463,406,'2005-07-13 00:54:48',2,'2006-02-15 21:30:53'), - (6440,'2005-07-12 00:25:04',2148,269,'2005-07-13 04:52:04',2,'2006-02-15 21:30:53'), - (6441,'2005-07-12 00:27:08',2489,505,'2005-07-14 03:12:08',1,'2006-02-15 21:30:53'), - (6442,'2005-07-12 00:29:45',1273,360,'2005-07-15 19:37:45',2,'2006-02-15 21:30:53'), - (6443,'2005-07-12 00:35:51',895,155,'2005-07-16 04:50:51',1,'2006-02-15 21:30:53'), - (6444,'2005-07-12 00:36:02',2214,168,'2005-07-18 05:53:02',1,'2006-02-15 21:30:53'), - (6445,'2005-07-12 00:37:02',582,385,'2005-07-17 22:05:02',2,'2006-02-15 21:30:53'), - (6446,'2005-07-12 00:44:08',3634,473,'2005-07-14 20:39:08',2,'2006-02-15 21:30:53'), - (6447,'2005-07-12 00:45:17',3945,482,'2005-07-18 05:56:17',2,'2006-02-15 21:30:53'), - (6448,'2005-07-12 00:45:59',2663,160,'2005-07-17 00:34:59',1,'2006-02-15 21:30:53'), - (6449,'2005-07-12 00:48:58',4395,117,'2005-07-21 02:57:58',1,'2006-02-15 21:30:53'), - (6450,'2005-07-12 00:49:05',2413,32,'2005-07-13 01:54:05',2,'2006-02-15 21:30:53'), - (6451,'2005-07-12 00:52:19',1008,381,'2005-07-16 21:30:19',2,'2006-02-15 21:30:53'), - (6452,'2005-07-12 00:57:31',109,388,'2005-07-14 20:41:31',1,'2006-02-15 21:30:53'), - (6453,'2005-07-12 00:59:53',2506,169,'2005-07-14 19:17:53',2,'2006-02-15 21:30:53'), - (6454,'2005-07-12 01:00:12',4028,446,'2005-07-16 22:12:12',1,'2006-02-15 21:30:53'), - (6455,'2005-07-12 01:01:58',4267,277,'2005-07-16 02:42:58',2,'2006-02-15 21:30:53'), - (6456,'2005-07-12 01:05:11',259,387,'2005-07-20 23:26:11',2,'2006-02-15 21:30:53'), - (6457,'2005-07-12 01:06:35',2970,64,'2005-07-14 03:27:35',1,'2006-02-15 21:30:53'), - (6458,'2005-07-12 01:08:52',2809,138,'2005-07-16 20:22:52',1,'2006-02-15 21:30:53'), - (6459,'2005-07-12 01:12:03',4025,557,'2005-07-15 23:48:03',1,'2006-02-15 21:30:53'), - (6460,'2005-07-12 01:13:44',2402,371,'2005-07-17 04:51:44',2,'2006-02-15 21:30:53'), - (6461,'2005-07-12 01:14:03',1799,135,'2005-07-19 21:12:03',1,'2006-02-15 21:30:53'), - (6462,'2005-07-12 01:15:24',4534,414,'2005-07-19 05:11:24',2,'2006-02-15 21:30:53'), - (6463,'2005-07-12 01:16:11',2930,391,'2005-07-13 01:37:11',1,'2006-02-15 21:30:53'), - (6464,'2005-07-12 01:16:40',3100,303,'2005-07-20 00:53:40',1,'2006-02-15 21:30:53'), - (6465,'2005-07-12 01:17:11',2047,207,'2005-07-20 00:29:11',2,'2006-02-15 21:30:53'), - (6466,'2005-07-12 01:21:03',3369,235,'2005-07-14 04:05:03',1,'2006-02-15 21:30:53'), - (6467,'2005-07-12 01:22:03',2067,457,'2005-07-20 04:37:03',2,'2006-02-15 21:30:53'), - (6468,'2005-07-12 01:27:09',4560,541,'2005-07-20 00:37:09',2,'2006-02-15 21:30:53'), - (6469,'2005-07-12 01:29:27',3830,147,'2005-07-16 20:22:27',2,'2006-02-15 21:30:53'), - (6470,'2005-07-12 01:29:41',1680,240,'2005-07-15 21:33:41',2,'2006-02-15 21:30:53'), - (6471,'2005-07-12 01:31:06',2253,397,'2005-07-13 05:26:06',1,'2006-02-15 21:30:53'), - (6472,'2005-07-12 01:33:25',3780,183,'2005-07-15 20:26:25',1,'2006-02-15 21:30:53'), - (6473,'2005-07-12 01:35:40',527,594,'2005-07-20 20:11:40',1,'2006-02-15 21:30:53'), - (6474,'2005-07-12 01:36:46',310,43,'2005-07-16 07:24:46',2,'2006-02-15 21:30:53'), - (6475,'2005-07-12 01:36:57',2035,74,'2005-07-17 21:22:57',1,'2006-02-15 21:30:53'), - (6476,'2005-07-12 01:37:48',978,28,'2005-07-12 20:21:48',2,'2006-02-15 21:30:53'), - (6477,'2005-07-12 01:38:42',804,181,'2005-07-17 05:19:42',2,'2006-02-15 21:30:53'), - (6478,'2005-07-12 01:41:44',2589,483,'2005-07-15 20:48:44',1,'2006-02-15 21:30:53'), - (6479,'2005-07-12 01:49:00',2587,558,'2005-07-21 04:26:00',1,'2006-02-15 21:30:53'), - (6480,'2005-07-12 01:49:29',3076,309,'2005-07-17 01:00:29',1,'2006-02-15 21:30:53'), - (6481,'2005-07-12 01:50:15',2392,128,'2005-07-20 03:03:15',1,'2006-02-15 21:30:53'), - (6482,'2005-07-12 01:50:21',4135,57,'2005-07-14 06:49:21',2,'2006-02-15 21:30:53'), - (6483,'2005-07-12 01:59:20',1053,263,'2005-07-12 22:22:20',2,'2006-02-15 21:30:53'), - (6484,'2005-07-12 02:04:10',4093,556,'2005-07-17 23:18:10',2,'2006-02-15 21:30:53'), - (6485,'2005-07-12 02:07:59',1224,319,'2005-07-19 22:56:59',1,'2006-02-15 21:30:53'), - (6486,'2005-07-12 02:09:36',4008,75,'2005-07-14 03:04:36',2,'2006-02-15 21:30:53'), - (6487,'2005-07-12 02:17:00',4000,277,'2005-07-19 00:57:00',2,'2006-02-15 21:30:53'), - (6488,'2005-07-12 02:20:09',3974,169,'2005-07-20 00:53:09',2,'2006-02-15 21:30:53'), - (6489,'2005-07-12 02:22:46',1821,268,'2005-07-17 06:16:46',2,'2006-02-15 21:30:53'), - (6490,'2005-07-12 02:28:03',2249,548,'2005-07-19 03:06:03',2,'2006-02-15 21:30:53'), - (6491,'2005-07-12 02:28:31',2803,415,'2005-07-21 00:38:31',1,'2006-02-15 21:30:53'), - (6492,'2005-07-12 02:28:40',466,590,'2005-07-17 05:58:40',2,'2006-02-15 21:30:53'), - (6493,'2005-07-12 02:40:41',16,184,'2005-07-16 04:56:41',1,'2006-02-15 21:30:53'), - (6494,'2005-07-12 02:42:51',1124,57,'2005-07-20 06:57:51',1,'2006-02-15 21:30:53'), - (6495,'2005-07-12 02:57:02',2440,19,'2005-07-14 08:35:02',1,'2006-02-15 21:30:53'), - (6496,'2005-07-12 02:57:39',3550,139,'2005-07-20 01:43:39',1,'2006-02-15 21:30:53'), - (6497,'2005-07-12 03:04:29',933,222,'2005-07-17 21:36:29',2,'2006-02-15 21:30:53'), - (6498,'2005-07-12 03:05:38',243,48,'2005-07-19 07:12:38',1,'2006-02-15 21:30:53'), - (6499,'2005-07-12 03:11:18',3165,474,'2005-07-21 07:50:18',2,'2006-02-15 21:30:53'), - (6500,'2005-07-12 03:11:23',4521,577,'2005-07-13 00:51:23',2,'2006-02-15 21:30:53'), - (6501,'2005-07-12 03:11:55',2851,219,'2005-07-16 02:08:55',2,'2006-02-15 21:30:53'), - (6502,'2005-07-12 03:15:45',1641,40,'2005-07-17 08:47:45',2,'2006-02-15 21:30:53'), - (6503,'2005-07-12 03:18:07',1319,120,'2005-07-15 00:05:07',1,'2006-02-15 21:30:53'), - (6504,'2005-07-12 03:19:14',3786,535,'2005-07-17 01:13:14',2,'2006-02-15 21:30:53'), - (6505,'2005-07-12 03:27:37',3986,415,'2005-07-17 22:42:37',2,'2006-02-15 21:30:53'), - (6506,'2005-07-12 03:28:22',386,423,'2005-07-17 22:43:22',1,'2006-02-15 21:30:53'), - (6507,'2005-07-12 03:33:12',2463,118,'2005-07-20 03:56:12',1,'2006-02-15 21:30:53'), - (6508,'2005-07-12 03:34:50',1474,597,'2005-07-17 02:57:50',2,'2006-02-15 21:30:53'), - (6509,'2005-07-12 03:35:01',2468,427,'2005-07-13 06:50:01',2,'2006-02-15 21:30:53'), - (6510,'2005-07-12 03:35:39',905,446,'2005-07-21 01:41:39',1,'2006-02-15 21:30:53'), - (6511,'2005-07-12 03:39:29',1350,322,'2005-07-17 01:01:29',2,'2006-02-15 21:30:53'), - (6512,'2005-07-12 03:42:49',1703,68,'2005-07-13 05:01:49',2,'2006-02-15 21:30:53'), - (6513,'2005-07-12 03:44:43',2671,393,'2005-07-13 05:54:43',1,'2006-02-15 21:30:53'), - (6514,'2005-07-12 03:47:44',3562,73,'2005-07-20 00:11:44',1,'2006-02-15 21:30:53'), - (6515,'2005-07-12 03:50:32',706,261,'2005-07-15 03:54:32',2,'2006-02-15 21:30:53'), - (6516,'2005-07-12 03:51:54',863,291,'2005-07-14 03:41:54',2,'2006-02-15 21:30:53'), - (6517,'2005-07-12 03:52:39',185,387,'2005-07-20 08:00:39',1,'2006-02-15 21:30:53'), - (6518,'2005-07-12 03:59:42',2698,288,'2005-07-19 22:21:42',2,'2006-02-15 21:30:53'), - (6519,'2005-07-12 04:00:36',4149,598,'2005-07-19 01:15:36',1,'2006-02-15 21:30:53'), - (6520,'2005-07-12 04:05:16',1535,270,'2005-07-15 08:26:16',1,'2006-02-15 21:30:53'), - (6521,'2005-07-12 04:06:11',3293,49,'2005-07-21 05:50:11',1,'2006-02-15 21:30:53'), - (6522,'2005-07-12 04:11:58',3916,142,'2005-07-15 08:32:58',1,'2006-02-15 21:30:53'), - (6523,'2005-07-12 04:14:19',1848,574,'2005-07-17 00:38:19',1,'2006-02-15 21:30:53'), - (6524,'2005-07-12 04:14:35',1467,376,'2005-07-17 03:59:35',2,'2006-02-15 21:30:53'), - (6525,'2005-07-12 04:17:15',1408,103,'2005-07-18 23:11:15',1,'2006-02-15 21:30:53'), - (6526,'2005-07-12 04:21:20',1718,225,'2005-07-18 23:45:20',2,'2006-02-15 21:30:53'), - (6527,'2005-07-12 04:23:06',538,65,'2005-07-17 00:20:06',1,'2006-02-15 21:30:53'), - (6528,'2005-07-12 04:29:44',3824,598,'2005-07-18 02:39:44',2,'2006-02-15 21:30:53'), - (6529,'2005-07-12 04:31:04',1058,503,'2005-07-17 07:09:04',2,'2006-02-15 21:30:53'), - (6530,'2005-07-12 04:33:19',3410,75,'2005-07-15 08:26:19',1,'2006-02-15 21:30:53'), - (6531,'2005-07-12 04:35:24',4231,510,'2005-07-16 05:37:24',2,'2006-02-15 21:30:53'), - (6532,'2005-07-12 04:38:32',2361,225,'2005-07-13 03:54:32',1,'2006-02-15 21:30:53'), - (6533,'2005-07-12 04:39:38',3853,366,'2005-07-18 05:29:38',1,'2006-02-15 21:30:53'), - (6534,'2005-07-12 04:39:43',2359,577,'2005-07-16 06:33:43',1,'2006-02-15 21:30:53'), - (6535,'2005-07-12 04:43:43',1921,446,'2005-07-17 04:52:43',1,'2006-02-15 21:30:53'), - (6536,'2005-07-12 04:44:25',3521,289,'2005-07-18 01:52:25',2,'2006-02-15 21:30:53'), - (6537,'2005-07-12 04:46:30',3381,207,'2005-07-19 03:04:30',2,'2006-02-15 21:30:53'), - (6538,'2005-07-12 04:50:26',1987,529,'2005-07-20 23:44:26',2,'2006-02-15 21:30:53'), - (6539,'2005-07-12 04:50:49',2275,259,'2005-07-19 03:23:49',1,'2006-02-15 21:30:53'), - (6540,'2005-07-12 04:51:13',937,156,'2005-07-21 03:38:13',1,'2006-02-15 21:30:53'), - (6541,'2005-07-12 04:53:41',1795,529,'2005-07-17 23:17:41',2,'2006-02-15 21:30:53'), - (6542,'2005-07-12 04:53:49',2421,359,'2005-07-13 01:48:49',1,'2006-02-15 21:30:53'), - (6543,'2005-07-12 04:54:32',2568,264,'2005-07-15 09:50:32',2,'2006-02-15 21:30:53'), - (6544,'2005-07-12 04:56:15',1218,97,'2005-07-17 08:28:15',1,'2006-02-15 21:30:53'), - (6545,'2005-07-12 04:56:30',4447,376,'2005-07-20 05:41:30',1,'2006-02-15 21:30:53'), - (6546,'2005-07-12 04:57:17',393,105,'2005-07-17 09:29:17',2,'2006-02-15 21:30:53'), - (6547,'2005-07-12 04:57:46',2656,262,'2005-07-18 08:36:46',2,'2006-02-15 21:30:53'), - (6548,'2005-07-12 05:00:46',2480,488,'2005-07-19 04:40:46',2,'2006-02-15 21:30:53'), - (6549,'2005-07-12 05:02:01',2688,493,'2005-07-20 06:19:01',2,'2006-02-15 21:30:53'), - (6550,'2005-07-12 05:03:14',2184,112,'2005-07-19 04:06:14',1,'2006-02-15 21:30:53'), - (6551,'2005-07-12 05:03:43',282,567,'2005-07-13 10:44:43',1,'2006-02-15 21:30:53'), - (6552,'2005-07-12 05:05:06',766,493,'2005-07-13 05:12:06',2,'2006-02-15 21:30:53'), - (6553,'2005-07-12 05:06:39',1137,265,'2005-07-21 10:37:39',1,'2006-02-15 21:30:53'), - (6554,'2005-07-12 05:07:26',2741,178,'2005-07-21 06:06:26',2,'2006-02-15 21:30:53'), - (6555,'2005-07-12 05:08:16',1282,188,'2005-07-14 04:09:16',1,'2006-02-15 21:30:53'), - (6556,'2005-07-12 05:10:16',3901,570,'2005-07-13 04:16:16',2,'2006-02-15 21:30:53'), - (6557,'2005-07-12 05:12:03',1442,116,'2005-07-20 06:49:03',1,'2006-02-15 21:30:53'), - (6558,'2005-07-12 05:16:07',2195,164,'2005-07-13 05:32:07',2,'2006-02-15 21:30:53'), - (6559,'2005-07-12 05:20:35',458,353,'2005-07-16 08:44:35',2,'2006-02-15 21:30:53'), - (6560,'2005-07-12 05:22:06',433,54,'2005-07-15 00:04:06',2,'2006-02-15 21:30:53'), - (6561,'2005-07-12 05:24:02',4568,528,'2005-07-16 03:43:02',2,'2006-02-15 21:30:53'), - (6562,'2005-07-12 05:26:26',3969,27,'2005-07-16 05:10:26',2,'2006-02-15 21:30:53'), - (6563,'2005-07-12 05:34:09',87,438,'2005-07-21 07:37:09',1,'2006-02-15 21:30:53'), - (6564,'2005-07-12 05:34:44',2320,210,'2005-07-18 06:12:44',2,'2006-02-15 21:30:53'), - (6565,'2005-07-12 05:39:50',2751,35,'2005-07-13 01:07:50',2,'2006-02-15 21:30:53'), - (6566,'2005-07-12 05:42:53',1822,178,'2005-07-19 01:23:53',2,'2006-02-15 21:30:53'), - (6567,'2005-07-12 05:43:09',1336,198,'2005-07-19 08:18:09',2,'2006-02-15 21:30:53'), - (6568,'2005-07-12 05:45:47',4203,13,'2005-07-15 05:18:47',2,'2006-02-15 21:30:53'), - (6569,'2005-07-12 05:47:40',759,183,'2005-07-20 06:23:40',2,'2006-02-15 21:30:53'), - (6570,'2005-07-12 05:50:31',2082,217,'2005-07-13 09:58:31',1,'2006-02-15 21:30:53'), - (6571,'2005-07-12 05:51:47',3700,140,'2005-07-15 11:31:47',1,'2006-02-15 21:30:53'), - (6572,'2005-07-12 05:56:38',3121,35,'2005-07-16 10:41:38',1,'2006-02-15 21:30:53'), - (6573,'2005-07-12 06:03:40',3308,239,'2005-07-13 11:49:40',2,'2006-02-15 21:30:53'), - (6574,'2005-07-12 06:04:22',621,115,'2005-07-18 03:19:22',2,'2006-02-15 21:30:53'), - (6575,'2005-07-12 06:12:53',1414,598,'2005-07-18 07:55:53',2,'2006-02-15 21:30:53'), - (6576,'2005-07-12 06:13:41',339,362,'2005-07-16 03:22:41',1,'2006-02-15 21:30:53'), - (6577,'2005-07-12 06:15:05',4191,439,'2005-07-15 06:23:05',1,'2006-02-15 21:30:53'), - (6578,'2005-07-12 06:15:41',2304,229,'2005-07-15 10:43:41',1,'2006-02-15 21:30:53'), - (6580,'2005-07-12 06:26:10',1543,31,'2005-07-13 06:44:10',1,'2006-02-15 21:30:53'), - (6581,'2005-07-12 06:26:49',2121,468,'2005-07-14 05:07:49',2,'2006-02-15 21:30:53'), - (6582,'2005-07-12 06:28:12',2077,420,'2005-07-19 06:19:12',1,'2006-02-15 21:30:53'), - (6583,'2005-07-12 06:42:31',2343,462,'2005-07-15 07:51:31',1,'2006-02-15 21:30:53'), - (6584,'2005-07-12 06:43:36',1800,472,'2005-07-16 12:18:36',2,'2006-02-15 21:30:53'), - (6585,'2005-07-12 06:50:52',2064,136,'2005-07-21 06:51:52',1,'2006-02-15 21:30:53'), - (6586,'2005-07-12 06:56:24',3860,93,'2005-07-17 09:36:24',1,'2006-02-15 21:30:53'), - (6587,'2005-07-12 06:56:26',238,419,'2005-07-20 05:53:26',2,'2006-02-15 21:30:53'), - (6588,'2005-07-12 06:57:40',1257,420,'2005-07-16 04:27:40',1,'2006-02-15 21:30:53'), - (6589,'2005-07-12 07:06:29',1595,424,'2005-07-14 12:06:29',2,'2006-02-15 21:30:53'), - (6590,'2005-07-12 07:08:21',1067,442,'2005-07-18 06:16:21',2,'2006-02-15 21:30:53'), - (6591,'2005-07-12 07:13:46',2846,509,'2005-07-16 05:15:46',2,'2006-02-15 21:30:53'), - (6592,'2005-07-12 07:19:35',3481,273,'2005-07-19 07:15:35',1,'2006-02-15 21:30:53'), - (6593,'2005-07-12 07:21:17',3441,356,'2005-07-14 02:35:17',2,'2006-02-15 21:30:53'), - (6594,'2005-07-12 07:25:43',4458,517,'2005-07-13 07:59:43',1,'2006-02-15 21:30:53'), - (6595,'2005-07-12 07:25:48',1286,458,'2005-07-20 02:24:48',2,'2006-02-15 21:30:53'), - (6596,'2005-07-12 07:32:59',890,409,'2005-07-13 02:47:59',1,'2006-02-15 21:30:53'), - (6597,'2005-07-12 07:37:02',979,479,'2005-07-16 10:24:02',2,'2006-02-15 21:30:53'), - (6598,'2005-07-12 07:38:25',2049,532,'2005-07-19 07:58:25',1,'2006-02-15 21:30:53'), - (6599,'2005-07-12 07:41:14',4348,519,'2005-07-21 02:45:14',2,'2006-02-15 21:30:53'), - (6600,'2005-07-12 07:41:48',3315,389,'2005-07-18 12:36:48',2,'2006-02-15 21:30:53'), - (6601,'2005-07-12 07:44:49',1640,464,'2005-07-20 03:22:49',2,'2006-02-15 21:30:53'), - (6602,'2005-07-12 07:50:24',2382,214,'2005-07-20 03:25:24',2,'2006-02-15 21:30:53'), - (6603,'2005-07-12 07:52:55',3583,425,'2005-07-16 13:19:55',2,'2006-02-15 21:30:53'), - (6604,'2005-07-12 07:57:45',822,365,'2005-07-16 05:41:45',2,'2006-02-15 21:30:53'), - (6605,'2005-07-12 08:01:07',2892,547,'2005-07-19 03:12:07',1,'2006-02-15 21:30:53'), - (6606,'2005-07-12 08:03:40',2805,178,'2005-07-13 09:05:40',1,'2006-02-15 21:30:53'), - (6607,'2005-07-12 08:08:50',337,562,'2005-07-20 09:17:50',1,'2006-02-15 21:30:53'), - (6608,'2005-07-12 08:16:50',3577,244,'2005-07-18 07:08:50',2,'2006-02-15 21:30:53'), - (6609,'2005-07-12 08:19:41',3332,133,'2005-07-19 08:19:41',2,'2006-02-15 21:30:53'), - (6610,'2005-07-12 08:20:02',645,353,'2005-07-21 09:16:02',2,'2006-02-15 21:30:53'), - (6611,'2005-07-12 08:20:23',1604,286,'2005-07-16 07:19:23',1,'2006-02-15 21:30:53'), - (6612,'2005-07-12 08:28:33',235,152,'2005-07-17 06:25:33',1,'2006-02-15 21:30:53'), - (6613,'2005-07-12 08:30:07',3421,460,'2005-07-14 10:25:07',2,'2006-02-15 21:30:53'), - (6614,'2005-07-12 08:33:49',3004,144,'2005-07-18 07:28:49',2,'2006-02-15 21:30:53'), - (6615,'2005-07-12 08:36:22',23,438,'2005-07-20 09:03:22',1,'2006-02-15 21:30:53'), - (6616,'2005-07-12 08:37:30',1833,179,'2005-07-20 10:33:30',1,'2006-02-15 21:30:53'), - (6617,'2005-07-12 08:39:56',2292,248,'2005-07-14 09:32:56',2,'2006-02-15 21:30:53'), - (6618,'2005-07-12 08:41:42',4266,327,'2005-07-14 05:34:42',1,'2006-02-15 21:30:53'), - (6619,'2005-07-12 08:50:48',4062,305,'2005-07-14 11:54:48',1,'2006-02-15 21:30:53'), - (6620,'2005-07-12 08:51:03',2362,337,'2005-07-16 03:59:03',2,'2006-02-15 21:30:53'), - (6621,'2005-07-12 08:57:30',2229,561,'2005-07-14 09:47:30',1,'2006-02-15 21:30:53'), - (6622,'2005-07-12 09:04:11',4350,325,'2005-07-13 04:27:11',1,'2006-02-15 21:30:53'), - (6623,'2005-07-12 09:05:34',4412,302,'2005-07-19 13:54:34',2,'2006-02-15 21:30:53'), - (6624,'2005-07-12 09:05:50',3946,335,'2005-07-18 13:59:50',2,'2006-02-15 21:30:53'), - (6625,'2005-07-12 09:06:40',735,443,'2005-07-21 04:57:40',2,'2006-02-15 21:30:53'), - (6626,'2005-07-12 09:16:24',2418,269,'2005-07-17 04:06:24',2,'2006-02-15 21:30:53'), - (6627,'2005-07-12 09:16:46',626,565,'2005-07-17 10:58:46',1,'2006-02-15 21:30:53'), - (6628,'2005-07-12 09:18:08',2894,211,'2005-07-21 04:27:08',2,'2006-02-15 21:30:53'), - (6629,'2005-07-12 09:18:35',2855,582,'2005-07-20 11:34:35',2,'2006-02-15 21:30:53'), - (6630,'2005-07-12 09:30:05',1843,462,'2005-07-14 08:29:05',2,'2006-02-15 21:30:53'), - (6631,'2005-07-12 09:31:43',2340,204,'2005-07-15 05:00:43',2,'2006-02-15 21:30:53'), - (6632,'2005-07-12 09:33:10',2929,442,'2005-07-15 11:36:10',1,'2006-02-15 21:30:53'), - (6633,'2005-07-12 09:35:42',2908,150,'2005-07-13 12:56:42',2,'2006-02-15 21:30:53'), - (6634,'2005-07-12 09:37:18',2943,50,'2005-07-13 09:28:18',1,'2006-02-15 21:30:53'), - (6635,'2005-07-12 09:47:58',515,273,'2005-07-16 15:43:58',1,'2006-02-15 21:30:53'), - (6636,'2005-07-12 09:49:46',3270,441,'2005-07-14 12:15:46',1,'2006-02-15 21:30:53'), - (6637,'2005-07-12 09:57:39',2852,164,'2005-07-19 08:40:39',1,'2006-02-15 21:30:53'), - (6638,'2005-07-12 09:58:02',207,87,'2005-07-13 09:40:02',1,'2006-02-15 21:30:53'), - (6639,'2005-07-12 10:00:44',3385,587,'2005-07-19 04:56:44',1,'2006-02-15 21:30:53'), - (6640,'2005-07-12 10:27:19',2794,148,'2005-07-21 06:28:19',2,'2006-02-15 21:30:53'), - (6641,'2005-07-12 10:33:14',2165,334,'2005-07-20 08:24:14',2,'2006-02-15 21:30:53'), - (6642,'2005-07-12 10:37:52',201,441,'2005-07-13 15:13:52',1,'2006-02-15 21:30:53'), - (6643,'2005-07-12 10:39:22',174,88,'2005-07-18 13:52:22',1,'2006-02-15 21:30:53'), - (6644,'2005-07-12 10:39:39',2667,285,'2005-07-14 11:50:39',1,'2006-02-15 21:30:53'), - (6645,'2005-07-12 10:39:55',2858,73,'2005-07-17 07:41:55',1,'2006-02-15 21:30:53'), - (6646,'2005-07-12 10:41:34',4061,508,'2005-07-15 05:31:34',1,'2006-02-15 21:30:53'), - (6647,'2005-07-12 10:43:53',1841,8,'2005-07-14 05:37:53',1,'2006-02-15 21:30:53'), - (6648,'2005-07-12 10:46:30',718,356,'2005-07-14 16:15:30',1,'2006-02-15 21:30:53'), - (6649,'2005-07-12 10:51:09',70,57,'2005-07-14 16:05:09',2,'2006-02-15 21:30:53'), - (6650,'2005-07-12 10:57:10',1589,526,'2005-07-14 07:24:10',1,'2006-02-15 21:30:53'), - (6651,'2005-07-12 10:57:28',98,447,'2005-07-15 06:06:28',2,'2006-02-15 21:30:53'), - (6652,'2005-07-12 10:59:38',2200,518,'2005-07-13 13:52:38',1,'2006-02-15 21:30:53'), - (6653,'2005-07-12 11:06:17',614,25,'2005-07-19 16:52:17',2,'2006-02-15 21:30:53'), - (6654,'2005-07-12 11:06:28',2870,458,'2005-07-20 10:27:28',1,'2006-02-15 21:30:53'), - (6655,'2005-07-12 11:08:32',3937,100,'2005-07-15 15:17:32',1,'2006-02-15 21:30:53'), - (6656,'2005-07-12 11:09:47',2282,330,'2005-07-14 05:50:47',1,'2006-02-15 21:30:53'), - (6657,'2005-07-12 11:11:36',3697,553,'2005-07-16 15:56:36',1,'2006-02-15 21:30:53'), - (6658,'2005-07-12 11:13:21',172,27,'2005-07-17 09:10:21',2,'2006-02-15 21:30:53'), - (6659,'2005-07-12 11:18:05',2285,134,'2005-07-16 16:45:05',2,'2006-02-15 21:30:53'), - (6660,'2005-07-12 11:20:12',446,598,'2005-07-20 12:58:12',2,'2006-02-15 21:30:53'), - (6661,'2005-07-12 11:20:39',2367,315,'2005-07-16 08:17:39',2,'2006-02-15 21:30:53'), - (6662,'2005-07-12 11:21:06',1464,99,'2005-07-13 13:00:06',1,'2006-02-15 21:30:53'), - (6663,'2005-07-12 11:27:35',4364,5,'2005-07-21 16:35:35',1,'2006-02-15 21:30:53'), - (6664,'2005-07-12 11:28:22',4578,351,'2005-07-15 09:30:22',1,'2006-02-15 21:30:53'), - (6665,'2005-07-12 11:29:14',2912,587,'2005-07-19 11:26:14',2,'2006-02-15 21:30:53'), - (6666,'2005-07-12 11:32:15',3194,314,'2005-07-14 16:09:15',2,'2006-02-15 21:30:53'), - (6667,'2005-07-12 11:36:22',215,50,'2005-07-19 12:53:22',1,'2006-02-15 21:30:53'), - (6668,'2005-07-12 11:37:45',1498,199,'2005-07-14 13:28:45',2,'2006-02-15 21:30:53'), - (6669,'2005-07-12 11:39:55',1420,355,'2005-07-20 05:56:55',1,'2006-02-15 21:30:53'), - (6670,'2005-07-12 11:44:33',3106,249,'2005-07-19 07:54:33',2,'2006-02-15 21:30:53'), - (6671,'2005-07-12 11:48:48',955,526,'2005-07-19 16:55:48',2,'2006-02-15 21:30:53'), - (6672,'2005-07-12 11:49:16',375,439,'2005-07-13 07:03:16',2,'2006-02-15 21:30:53'), - (6673,'2005-07-12 11:50:56',1997,322,'2005-07-13 14:27:56',1,'2006-02-15 21:30:53'), - (6674,'2005-07-12 11:51:54',2385,399,'2005-07-13 16:57:54',1,'2006-02-15 21:30:53'), - (6675,'2005-07-12 11:53:06',2124,523,'2005-07-13 06:09:06',1,'2006-02-15 21:30:53'), - (6676,'2005-07-12 11:53:40',2294,571,'2005-07-19 09:15:40',1,'2006-02-15 21:30:53'), - (6677,'2005-07-12 11:58:14',2389,516,'2005-07-21 06:05:14',2,'2006-02-15 21:30:53'), - (6678,'2005-07-12 11:58:36',3473,330,'2005-07-15 17:50:36',2,'2006-02-15 21:30:53'), - (6679,'2005-07-12 12:01:07',3664,586,'2005-07-14 11:36:07',1,'2006-02-15 21:30:53'), - (6680,'2005-07-12 12:01:56',2887,43,'2005-07-16 17:32:56',1,'2006-02-15 21:30:53'), - (6681,'2005-07-12 12:04:12',854,368,'2005-07-19 11:01:12',2,'2006-02-15 21:30:53'), - (6682,'2005-07-12 12:12:43',1984,339,'2005-07-21 10:49:43',2,'2006-02-15 21:30:53'), - (6683,'2005-07-12 12:14:05',3433,244,'2005-07-17 14:02:05',2,'2006-02-15 21:30:53'), - (6684,'2005-07-12 12:14:42',2817,583,'2005-07-21 11:07:42',2,'2006-02-15 21:30:53'), - (6685,'2005-07-12 12:16:28',1434,5,'2005-07-19 17:03:28',1,'2006-02-15 21:30:53'), - (6686,'2005-07-12 12:18:38',3804,6,'2005-07-13 17:56:38',2,'2006-02-15 21:30:53'), - (6687,'2005-07-12 12:19:23',2736,128,'2005-07-19 17:12:23',1,'2006-02-15 21:30:53'), - (6688,'2005-07-12 12:22:12',2377,246,'2005-07-14 14:05:12',1,'2006-02-15 21:30:53'), - (6689,'2005-07-12 12:22:13',1568,525,'2005-07-16 07:44:13',1,'2006-02-15 21:30:53'), - (6690,'2005-07-12 12:23:02',4254,447,'2005-07-16 15:39:02',2,'2006-02-15 21:30:53'), - (6691,'2005-07-12 12:26:38',403,192,'2005-07-18 13:26:38',2,'2006-02-15 21:30:53'), - (6692,'2005-07-12 12:35:39',2837,372,'2005-07-20 11:20:39',2,'2006-02-15 21:30:53'), - (6693,'2005-07-12 12:37:00',2014,573,'2005-07-20 09:36:00',1,'2006-02-15 21:30:53'), - (6694,'2005-07-12 12:39:23',586,204,'2005-07-19 14:47:23',1,'2006-02-15 21:30:53'), - (6695,'2005-07-12 12:39:39',3088,550,'2005-07-17 13:36:39',2,'2006-02-15 21:30:53'), - (6696,'2005-07-12 12:44:04',299,273,'2005-07-16 14:17:04',1,'2006-02-15 21:30:53'), - (6697,'2005-07-12 12:44:57',210,103,'2005-07-19 13:02:57',1,'2006-02-15 21:30:53'), - (6698,'2005-07-12 12:45:00',4419,64,'2005-07-16 11:16:00',2,'2006-02-15 21:30:53'), - (6699,'2005-07-12 12:45:21',3411,565,'2005-07-15 12:59:21',1,'2006-02-15 21:30:53'), - (6700,'2005-07-12 12:47:22',3063,184,'2005-07-21 16:04:22',1,'2006-02-15 21:30:53'), - (6701,'2005-07-12 12:47:59',3428,454,'2005-07-13 10:28:59',1,'2006-02-15 21:30:53'), - (6702,'2005-07-12 12:48:03',233,164,'2005-07-13 11:55:03',1,'2006-02-15 21:30:53'), - (6703,'2005-07-12 12:50:19',46,470,'2005-07-16 13:41:19',1,'2006-02-15 21:30:53'), - (6704,'2005-07-12 12:50:24',1590,595,'2005-07-20 16:41:24',2,'2006-02-15 21:30:53'), - (6705,'2005-07-12 12:53:11',4268,363,'2005-07-13 07:17:11',1,'2006-02-15 21:30:53'), - (6706,'2005-07-12 12:59:16',4552,267,'2005-07-19 10:37:16',1,'2006-02-15 21:30:53'), - (6707,'2005-07-12 13:07:55',406,80,'2005-07-16 16:26:55',2,'2006-02-15 21:30:53'), - (6708,'2005-07-12 13:10:55',372,82,'2005-07-21 07:36:55',1,'2006-02-15 21:30:53'), - (6709,'2005-07-12 13:20:41',4049,322,'2005-07-16 10:37:41',2,'2006-02-15 21:30:53'), - (6710,'2005-07-12 13:23:09',806,462,'2005-07-20 10:10:09',2,'2006-02-15 21:30:53'), - (6711,'2005-07-12 13:23:40',2247,257,'2005-07-20 11:45:40',2,'2006-02-15 21:30:53'), - (6712,'2005-07-12 13:24:47',4581,226,'2005-07-20 09:35:47',2,'2006-02-15 21:30:53'), - (6713,'2005-07-12 13:27:36',4218,557,'2005-07-16 11:14:36',1,'2006-02-15 21:30:53'), - (6714,'2005-07-12 13:29:06',1947,370,'2005-07-18 16:02:06',2,'2006-02-15 21:30:53'), - (6715,'2005-07-12 13:32:28',643,386,'2005-07-15 17:01:28',2,'2006-02-15 21:30:53'), - (6716,'2005-07-12 13:34:58',2783,367,'2005-07-19 15:09:58',1,'2006-02-15 21:30:53'), - (6717,'2005-07-12 13:35:02',523,273,'2005-07-20 15:03:02',1,'2006-02-15 21:30:53'), - (6718,'2005-07-12 13:38:06',2283,541,'2005-07-18 09:05:06',1,'2006-02-15 21:30:53'), - (6719,'2005-07-12 13:40:37',739,330,'2005-07-15 15:23:37',2,'2006-02-15 21:30:53'), - (6720,'2005-07-12 13:41:16',2704,151,'2005-07-13 14:41:16',2,'2006-02-15 21:30:53'), - (6721,'2005-07-12 13:42:58',2798,462,'2005-07-19 16:39:58',2,'2006-02-15 21:30:53'), - (6722,'2005-07-12 13:44:03',3124,211,'2005-07-19 12:43:03',2,'2006-02-15 21:30:53'), - (6723,'2005-07-12 13:44:57',2678,499,'2005-07-14 15:57:57',2,'2006-02-15 21:30:53'), - (6724,'2005-07-12 13:45:15',2486,262,'2005-07-19 19:18:15',1,'2006-02-15 21:30:53'), - (6725,'2005-07-12 13:47:17',831,213,'2005-07-17 13:31:17',1,'2006-02-15 21:30:53'), - (6726,'2005-07-12 13:48:14',4494,97,'2005-07-16 11:11:14',1,'2006-02-15 21:30:53'), - (6727,'2005-07-12 13:54:25',3793,407,'2005-07-14 17:29:25',1,'2006-02-15 21:30:53'), - (6728,'2005-07-12 13:56:48',2113,414,'2005-07-15 18:49:48',1,'2006-02-15 21:30:53'), - (6729,'2005-07-12 13:58:23',2495,455,'2005-07-19 09:34:23',2,'2006-02-15 21:30:53'), - (6730,'2005-07-12 13:58:25',1552,532,'2005-07-20 13:01:25',1,'2006-02-15 21:30:53'), - (6731,'2005-07-12 13:58:27',844,593,'2005-07-15 10:04:27',2,'2006-02-15 21:30:53'), - (6732,'2005-07-12 13:58:51',1913,299,'2005-07-17 17:42:51',1,'2006-02-15 21:30:53'), - (6733,'2005-07-12 14:04:01',1476,585,'2005-07-21 18:57:01',2,'2006-02-15 21:30:53'), - (6734,'2005-07-12 14:04:24',2248,446,'2005-07-21 19:47:24',1,'2006-02-15 21:30:53'), - (6735,'2005-07-12 14:08:20',276,428,'2005-07-18 09:41:20',2,'2006-02-15 21:30:53'), - (6736,'2005-07-12 14:16:50',530,342,'2005-07-15 16:26:50',1,'2006-02-15 21:30:53'), - (6737,'2005-07-12 14:16:52',315,304,'2005-07-18 19:48:52',1,'2006-02-15 21:30:53'), - (6738,'2005-07-12 14:17:55',1197,366,'2005-07-21 10:11:55',2,'2006-02-15 21:30:53'), - (6739,'2005-07-12 14:22:08',1221,71,'2005-07-18 16:57:08',2,'2006-02-15 21:30:53'), - (6740,'2005-07-12 14:22:08',2431,139,'2005-07-14 14:35:08',1,'2006-02-15 21:30:53'), - (6741,'2005-07-12 14:24:16',237,359,'2005-07-15 08:31:16',1,'2006-02-15 21:30:53'), - (6742,'2005-07-12 14:25:31',4242,558,'2005-07-17 08:50:31',2,'2006-02-15 21:30:53'), - (6743,'2005-07-12 14:29:25',158,261,'2005-07-13 13:13:25',1,'2006-02-15 21:30:53'), - (6744,'2005-07-12 14:30:28',2565,64,'2005-07-14 16:20:28',1,'2006-02-15 21:30:53'), - (6745,'2005-07-12 14:30:51',1331,524,'2005-07-13 13:42:51',2,'2006-02-15 21:30:53'), - (6746,'2005-07-12 14:33:01',3127,537,'2005-07-17 19:52:01',2,'2006-02-15 21:30:53'), - (6747,'2005-07-12 14:33:21',3651,126,'2005-07-13 09:59:21',2,'2006-02-15 21:30:53'), - (6748,'2005-07-12 14:39:27',3655,540,'2005-07-18 13:40:27',2,'2006-02-15 21:30:53'), - (6749,'2005-07-12 14:43:05',2895,334,'2005-07-21 15:13:05',2,'2006-02-15 21:30:53'), - (6750,'2005-07-12 14:49:39',3838,459,'2005-07-18 18:43:39',2,'2006-02-15 21:30:53'), - (6751,'2005-07-12 14:50:34',1749,312,'2005-07-15 19:39:34',2,'2006-02-15 21:30:53'), - (6752,'2005-07-12 14:53:15',3392,453,'2005-07-20 09:23:15',1,'2006-02-15 21:30:53'), - (6753,'2005-07-12 14:55:42',2591,147,'2005-07-18 19:16:42',1,'2006-02-15 21:30:53'), - (6754,'2005-07-12 14:59:24',1460,114,'2005-07-14 11:04:24',2,'2006-02-15 21:30:53'), - (6755,'2005-07-12 15:07:49',2542,126,'2005-07-21 18:43:49',2,'2006-02-15 21:30:53'), - (6756,'2005-07-12 15:08:28',1174,531,'2005-07-13 14:25:28',2,'2006-02-15 21:30:53'), - (6757,'2005-07-12 15:09:48',547,558,'2005-07-17 15:04:48',2,'2006-02-15 21:30:53'), - (6758,'2005-07-12 15:13:49',4098,546,'2005-07-20 09:31:49',2,'2006-02-15 21:30:53'), - (6759,'2005-07-12 15:14:48',3624,49,'2005-07-15 11:29:48',1,'2006-02-15 21:30:53'), - (6760,'2005-07-12 15:16:00',501,502,'2005-07-20 13:20:00',2,'2006-02-15 21:30:53'), - (6761,'2005-07-12 15:17:42',3645,7,'2005-07-18 17:59:42',2,'2006-02-15 21:30:53'), - (6762,'2005-07-12 15:25:33',3857,262,'2005-07-21 18:57:33',1,'2006-02-15 21:30:53'), - (6763,'2005-07-12 15:26:34',3364,314,'2005-07-18 16:38:34',2,'2006-02-15 21:30:53'), - (6764,'2005-07-12 15:29:27',4407,396,'2005-07-21 20:00:27',2,'2006-02-15 21:30:53'), - (6765,'2005-07-12 15:30:47',2571,433,'2005-07-19 14:19:47',2,'2006-02-15 21:30:53'), - (6766,'2005-07-12 15:32:01',3615,171,'2005-07-18 14:03:01',2,'2006-02-15 21:30:53'), - (6767,'2005-07-12 15:46:55',1819,208,'2005-07-17 17:36:55',2,'2006-02-15 21:30:53'), - (6768,'2005-07-12 15:47:51',3418,151,'2005-07-19 21:17:51',2,'2006-02-15 21:30:53'), - (6769,'2005-07-12 15:48:54',1687,63,'2005-07-21 14:39:54',2,'2006-02-15 21:30:53'), - (6770,'2005-07-12 15:49:40',2080,360,'2005-07-20 10:14:40',2,'2006-02-15 21:30:53'), - (6771,'2005-07-12 15:54:40',1113,396,'2005-07-17 15:56:40',2,'2006-02-15 21:30:53'), - (6772,'2005-07-12 15:55:35',3810,89,'2005-07-18 10:47:35',1,'2006-02-15 21:30:53'), - (6773,'2005-07-12 15:55:39',3346,12,'2005-07-18 17:52:39',2,'2006-02-15 21:30:53'), - (6774,'2005-07-12 15:56:08',868,171,'2005-07-13 18:42:08',1,'2006-02-15 21:30:53'), - (6775,'2005-07-12 16:01:44',2909,383,'2005-07-19 14:11:44',1,'2006-02-15 21:30:53'), - (6776,'2005-07-12 16:02:09',2398,348,'2005-07-20 16:31:09',1,'2006-02-15 21:30:53'), - (6777,'2005-07-12 16:04:40',4089,351,'2005-07-20 15:05:40',2,'2006-02-15 21:30:53'), - (6778,'2005-07-12 16:06:00',4503,381,'2005-07-14 21:57:00',2,'2006-02-15 21:30:53'), - (6779,'2005-07-12 16:10:50',4468,404,'2005-07-17 14:51:50',2,'2006-02-15 21:30:53'), - (6780,'2005-07-12 16:18:12',1255,121,'2005-07-13 17:56:12',2,'2006-02-15 21:30:53'), - (6781,'2005-07-12 16:21:47',3783,533,'2005-07-15 19:52:47',1,'2006-02-15 21:30:53'), - (6782,'2005-07-12 16:23:25',2742,199,'2005-07-20 18:46:25',2,'2006-02-15 21:30:53'), - (6783,'2005-07-12 16:27:56',3633,506,'2005-07-13 12:11:56',2,'2006-02-15 21:30:53'), - (6784,'2005-07-12 16:28:49',197,578,'2005-07-15 17:27:49',1,'2006-02-15 21:30:53'), - (6785,'2005-07-12 16:30:57',4448,69,'2005-07-18 20:46:57',1,'2006-02-15 21:30:53'), - (6786,'2005-07-12 16:32:33',2011,546,'2005-07-16 12:42:33',2,'2006-02-15 21:30:53'), - (6787,'2005-07-12 16:33:28',1481,342,'2005-07-18 21:48:28',2,'2006-02-15 21:30:53'), - (6788,'2005-07-12 16:33:44',1162,460,'2005-07-20 15:38:44',2,'2006-02-15 21:30:53'), - (6789,'2005-07-12 16:34:40',1973,76,'2005-07-14 17:02:40',2,'2006-02-15 21:30:53'), - (6790,'2005-07-12 16:34:59',4486,400,'2005-07-17 21:43:59',2,'2006-02-15 21:30:53'), - (6791,'2005-07-12 16:35:07',1495,144,'2005-07-20 15:32:07',2,'2006-02-15 21:30:53'), - (6792,'2005-07-12 16:37:28',510,571,'2005-07-20 11:20:28',2,'2006-02-15 21:30:53'), - (6793,'2005-07-12 16:37:55',103,148,'2005-07-21 16:04:55',2,'2006-02-15 21:30:53'), - (6794,'2005-07-12 16:38:23',813,233,'2005-07-20 17:36:23',2,'2006-02-15 21:30:53'), - (6795,'2005-07-12 16:41:00',1489,245,'2005-07-21 20:52:00',1,'2006-02-15 21:30:53'), - (6796,'2005-07-12 16:44:16',227,291,'2005-07-16 14:48:16',2,'2006-02-15 21:30:53'), - (6797,'2005-07-12 16:47:06',1536,469,'2005-07-14 14:38:06',2,'2006-02-15 21:30:53'), - (6798,'2005-07-12 16:49:11',275,115,'2005-07-19 12:11:11',2,'2006-02-15 21:30:53'), - (6799,'2005-07-12 16:52:13',2778,42,'2005-07-14 15:11:13',2,'2006-02-15 21:30:53'), - (6800,'2005-07-12 17:03:56',3742,599,'2005-07-21 20:32:56',2,'2006-02-15 21:30:53'), - (6801,'2005-07-12 17:09:08',872,500,'2005-07-21 22:25:08',1,'2006-02-15 21:30:53'), - (6802,'2005-07-12 17:14:17',2942,298,'2005-07-17 11:54:17',2,'2006-02-15 21:30:53'), - (6803,'2005-07-12 17:21:49',2676,490,'2005-07-14 18:01:49',2,'2006-02-15 21:30:53'), - (6804,'2005-07-12 17:22:06',1554,269,'2005-07-21 11:37:06',1,'2006-02-15 21:30:53'), - (6805,'2005-07-12 17:23:01',1758,262,'2005-07-21 19:38:01',2,'2006-02-15 21:30:53'), - (6806,'2005-07-12 17:31:43',656,179,'2005-07-17 14:36:43',1,'2006-02-15 21:30:53'), - (6807,'2005-07-12 17:33:53',669,376,'2005-07-18 16:28:53',2,'2006-02-15 21:30:53'), - (6808,'2005-07-12 17:36:42',362,263,'2005-07-18 23:33:42',2,'2006-02-15 21:30:53'), - (6809,'2005-07-12 17:51:54',3455,168,'2005-07-17 15:10:54',1,'2006-02-15 21:30:53'), - (6810,'2005-07-12 17:54:19',2802,485,'2005-07-20 16:58:19',2,'2006-02-15 21:30:53'), - (6811,'2005-07-12 17:54:33',1572,107,'2005-07-20 17:39:33',1,'2006-02-15 21:30:53'), - (6812,'2005-07-12 18:03:25',2227,553,'2005-07-20 18:33:25',2,'2006-02-15 21:30:53'), - (6813,'2005-07-12 18:03:50',135,54,'2005-07-16 16:30:50',1,'2006-02-15 21:30:53'), - (6814,'2005-07-12 18:11:58',1863,579,'2005-07-18 20:37:58',2,'2006-02-15 21:30:53'), - (6815,'2005-07-12 18:14:10',3236,468,'2005-07-17 14:16:10',1,'2006-02-15 21:30:53'), - (6816,'2005-07-12 18:18:50',2963,290,'2005-07-18 21:09:50',2,'2006-02-15 21:30:53'), - (6817,'2005-07-12 18:19:57',184,135,'2005-07-19 22:53:57',1,'2006-02-15 21:30:53'), - (6818,'2005-07-12 18:20:54',1013,153,'2005-07-21 00:03:54',2,'2006-02-15 21:30:53'), - (6819,'2005-07-12 18:21:01',1253,198,'2005-07-13 21:14:01',1,'2006-02-15 21:30:53'), - (6820,'2005-07-12 18:21:30',223,243,'2005-07-14 15:14:30',1,'2006-02-15 21:30:53'), - (6821,'2005-07-12 18:22:10',623,363,'2005-07-14 13:25:10',2,'2006-02-15 21:30:53'), - (6822,'2005-07-12 18:23:39',1592,300,'2005-07-19 21:06:39',1,'2006-02-15 21:30:53'), - (6823,'2005-07-12 18:24:31',795,557,'2005-07-17 23:13:31',1,'2006-02-15 21:30:53'), - (6824,'2005-07-12 18:26:46',858,579,'2005-07-21 15:23:46',1,'2006-02-15 21:30:53'), - (6825,'2005-07-12 18:28:12',2342,281,'2005-07-15 19:24:12',1,'2006-02-15 21:30:53'), - (6826,'2005-07-12 18:32:02',1708,408,'2005-07-16 23:21:02',1,'2006-02-15 21:30:53'), - (6827,'2005-07-12 18:33:45',1529,283,'2005-07-13 19:09:45',1,'2006-02-15 21:30:53'), - (6828,'2005-07-12 18:38:51',874,502,'2005-07-14 20:10:51',1,'2006-02-15 21:30:53'), - (6829,'2005-07-12 18:38:59',4184,361,'2005-07-16 23:25:59',1,'2006-02-15 21:30:53'), - (6830,'2005-07-12 18:42:55',1943,578,'2005-07-17 17:58:55',1,'2006-02-15 21:30:53'), - (6831,'2005-07-12 18:44:04',924,163,'2005-07-16 21:39:04',2,'2006-02-15 21:30:53'), - (6832,'2005-07-12 18:51:41',444,220,'2005-07-20 13:29:41',2,'2006-02-15 21:30:53'), - (6833,'2005-07-12 18:53:34',912,301,'2005-07-19 22:21:34',2,'2006-02-15 21:30:53'), - (6834,'2005-07-12 18:53:37',897,533,'2005-07-19 13:42:37',1,'2006-02-15 21:30:53'), - (6835,'2005-07-12 18:58:03',1444,367,'2005-07-18 00:41:03',1,'2006-02-15 21:30:53'), - (6836,'2005-07-12 18:58:05',2744,113,'2005-07-15 17:45:05',1,'2006-02-15 21:30:53'), - (6837,'2005-07-12 18:59:45',1203,533,'2005-07-21 22:47:45',2,'2006-02-15 21:30:53'), - (6838,'2005-07-12 19:01:30',3492,354,'2005-07-17 23:42:30',1,'2006-02-15 21:30:53'), - (6839,'2005-07-12 19:03:19',3900,357,'2005-07-15 23:48:19',1,'2006-02-15 21:30:53'), - (6840,'2005-07-12 19:03:22',1381,323,'2005-07-21 18:34:22',2,'2006-02-15 21:30:53'), - (6841,'2005-07-12 19:04:24',2265,108,'2005-07-14 23:58:24',1,'2006-02-15 21:30:53'), - (6842,'2005-07-12 19:07:55',3376,366,'2005-07-19 22:47:55',1,'2006-02-15 21:30:53'), - (6843,'2005-07-12 19:14:05',746,561,'2005-07-20 23:15:05',1,'2006-02-15 21:30:53'), - (6844,'2005-07-12 19:14:53',3211,482,'2005-07-18 16:07:53',2,'2006-02-15 21:30:53'), - (6845,'2005-07-12 19:20:41',3833,414,'2005-07-14 15:27:41',1,'2006-02-15 21:30:53'), - (6846,'2005-07-12 19:20:45',1214,18,'2005-07-17 00:06:45',1,'2006-02-15 21:30:53'), - (6847,'2005-07-12 19:22:37',346,63,'2005-07-21 18:53:37',2,'2006-02-15 21:30:53'), - (6848,'2005-07-12 19:24:07',1782,433,'2005-07-14 17:03:07',1,'2006-02-15 21:30:53'), - (6849,'2005-07-12 19:29:19',4307,479,'2005-07-19 22:03:19',1,'2006-02-15 21:30:53'), - (6850,'2005-07-12 19:30:42',1145,433,'2005-07-17 21:26:42',2,'2006-02-15 21:30:53'), - (6851,'2005-07-12 19:32:14',664,280,'2005-07-17 21:03:14',1,'2006-02-15 21:30:53'), - (6852,'2005-07-12 19:33:49',2182,75,'2005-07-13 20:01:49',2,'2006-02-15 21:30:53'), - (6853,'2005-07-12 19:38:11',4006,299,'2005-07-20 00:14:11',1,'2006-02-15 21:30:53'), - (6854,'2005-07-12 19:38:57',3173,151,'2005-07-16 16:28:57',1,'2006-02-15 21:30:53'), - (6855,'2005-07-12 19:46:29',2657,24,'2005-07-15 16:56:29',2,'2006-02-15 21:30:53'), - (6856,'2005-07-12 19:50:16',4338,275,'2005-07-14 22:25:16',1,'2006-02-15 21:30:53'), - (6857,'2005-07-12 19:53:30',424,196,'2005-07-13 15:22:30',1,'2006-02-15 21:30:53'), - (6858,'2005-07-12 19:53:51',1095,516,'2005-07-19 14:12:51',1,'2006-02-15 21:30:53'), - (6859,'2005-07-12 19:53:57',4108,321,'2005-07-17 19:48:57',2,'2006-02-15 21:30:53'), - (6860,'2005-07-12 19:54:17',2907,91,'2005-07-18 13:59:17',1,'2006-02-15 21:30:53'), - (6861,'2005-07-12 19:56:52',354,83,'2005-07-13 16:02:52',1,'2006-02-15 21:30:53'), - (6862,'2005-07-12 19:58:09',3477,231,'2005-07-18 15:48:09',2,'2006-02-15 21:30:53'), - (6863,'2005-07-12 19:58:34',229,484,'2005-07-21 16:57:34',1,'2006-02-15 21:30:53'), - (6864,'2005-07-12 19:59:25',2252,38,'2005-07-19 15:52:25',2,'2006-02-15 21:30:53'), - (6865,'2005-07-12 20:02:40',1428,175,'2005-07-20 00:39:40',2,'2006-02-15 21:30:53'), - (6866,'2005-07-12 20:03:44',2481,312,'2005-07-15 01:55:44',1,'2006-02-15 21:30:53'), - (6867,'2005-07-12 20:06:47',3354,190,'2005-07-19 16:59:47',1,'2006-02-15 21:30:53'), - (6868,'2005-07-12 20:10:17',719,306,'2005-07-15 22:34:17',2,'2006-02-15 21:30:53'), - (6869,'2005-07-12 20:12:06',3546,278,'2005-07-13 18:37:06',1,'2006-02-15 21:30:53'), - (6870,'2005-07-12 20:13:45',3102,13,'2005-07-16 22:09:45',2,'2006-02-15 21:30:53'), - (6871,'2005-07-12 20:13:49',3612,204,'2005-07-14 20:11:49',2,'2006-02-15 21:30:53'), - (6872,'2005-07-12 20:15:04',3246,86,'2005-07-18 18:19:04',1,'2006-02-15 21:30:53'), - (6873,'2005-07-12 20:20:50',802,161,'2005-07-17 01:51:50',1,'2006-02-15 21:30:53'), - (6874,'2005-07-12 20:20:53',4478,539,'2005-07-19 19:41:53',1,'2006-02-15 21:30:53'), - (6875,'2005-07-12 20:23:05',3420,172,'2005-07-19 00:09:05',2,'2006-02-15 21:30:53'), - (6876,'2005-07-12 20:32:50',34,531,'2005-07-16 21:12:50',1,'2006-02-15 21:30:53'), - (6877,'2005-07-12 20:32:58',3968,231,'2005-07-18 18:01:58',1,'2006-02-15 21:30:53'), - (6878,'2005-07-12 20:37:13',2428,363,'2005-07-19 20:13:13',2,'2006-02-15 21:30:53'), - (6879,'2005-07-12 20:37:37',1901,416,'2005-07-20 15:40:37',2,'2006-02-15 21:30:53'), - (6880,'2005-07-12 20:41:35',1473,229,'2005-07-17 02:22:35',1,'2006-02-15 21:30:53'), - (6881,'2005-07-12 20:46:35',2496,346,'2005-07-21 00:26:35',2,'2006-02-15 21:30:53'), - (6882,'2005-07-12 20:50:39',2469,166,'2005-07-14 21:01:39',1,'2006-02-15 21:30:53'), - (6883,'2005-07-12 20:50:48',468,596,'2005-07-19 16:00:48',2,'2006-02-15 21:30:53'), - (6884,'2005-07-12 20:52:41',3642,17,'2005-07-20 23:13:41',1,'2006-02-15 21:30:53'), - (6885,'2005-07-12 20:56:04',3972,159,'2005-07-15 19:21:04',2,'2006-02-15 21:30:53'), - (6886,'2005-07-12 20:58:04',4533,429,'2005-07-18 16:56:04',2,'2006-02-15 21:30:53'), - (6887,'2005-07-12 21:00:23',4487,542,'2005-07-21 17:46:23',1,'2006-02-15 21:30:53'), - (6888,'2005-07-12 21:01:11',1896,490,'2005-07-17 21:49:11',2,'2006-02-15 21:30:53'), - (6889,'2005-07-12 21:01:22',2919,198,'2005-07-20 20:16:22',2,'2006-02-15 21:30:53'), - (6890,'2005-07-12 21:03:03',2538,473,'2005-07-14 00:47:03',1,'2006-02-15 21:30:53'), - (6891,'2005-07-12 21:07:35',3189,507,'2005-07-14 16:59:35',2,'2006-02-15 21:30:53'), - (6892,'2005-07-12 21:10:04',1567,138,'2005-07-13 23:03:04',2,'2006-02-15 21:30:53'), - (6893,'2005-07-12 21:20:11',2611,377,'2005-07-21 18:55:11',2,'2006-02-15 21:30:53'), - (6894,'2005-07-12 21:20:50',1347,315,'2005-07-20 23:42:50',2,'2006-02-15 21:30:53'), - (6895,'2005-07-12 21:23:59',2935,599,'2005-07-19 20:47:59',2,'2006-02-15 21:30:53'), - (6896,'2005-07-12 21:25:37',1266,111,'2005-07-20 23:51:37',1,'2006-02-15 21:30:53'), - (6897,'2005-07-12 21:30:41',170,13,'2005-07-15 03:19:41',1,'2006-02-15 21:30:53'), - (6898,'2005-07-12 21:39:04',1725,557,'2005-07-15 20:30:04',1,'2006-02-15 21:30:53'), - (6899,'2005-07-12 21:44:16',3565,483,'2005-07-21 22:21:16',2,'2006-02-15 21:30:53'), - (6900,'2005-07-12 21:45:25',129,292,'2005-07-19 21:19:25',1,'2006-02-15 21:30:53'), - (6901,'2005-07-12 21:46:33',4574,158,'2005-07-16 21:36:33',1,'2006-02-15 21:30:53'), - (6902,'2005-07-12 21:57:16',314,485,'2005-07-14 20:56:16',1,'2006-02-15 21:30:53'), - (6903,'2005-07-12 21:58:15',3690,517,'2005-07-14 01:38:15',2,'2006-02-15 21:30:53'), - (6904,'2005-07-12 22:02:09',2312,465,'2005-07-17 16:42:09',1,'2006-02-15 21:30:53'), - (6905,'2005-07-12 22:02:18',763,25,'2005-07-18 23:30:18',1,'2006-02-15 21:30:53'), - (6906,'2005-07-12 22:03:02',1435,335,'2005-07-15 00:35:02',1,'2006-02-15 21:30:53'), - (6907,'2005-07-12 22:03:49',2516,575,'2005-07-18 19:18:49',1,'2006-02-15 21:30:53'), - (6908,'2005-07-12 22:08:46',3161,529,'2005-07-21 00:21:46',2,'2006-02-15 21:30:53'), - (6909,'2005-07-12 22:09:30',769,174,'2005-07-17 02:05:30',2,'2006-02-15 21:30:53'), - (6910,'2005-07-12 22:11:21',1290,546,'2005-07-21 02:35:21',1,'2006-02-15 21:30:53'), - (6911,'2005-07-12 22:14:34',901,361,'2005-07-18 20:17:34',1,'2006-02-15 21:30:53'), - (6912,'2005-07-12 22:17:16',1701,471,'2005-07-19 18:18:16',1,'2006-02-15 21:30:53'), - (6913,'2005-07-12 22:18:12',569,443,'2005-07-14 23:03:12',2,'2006-02-15 21:30:53'), - (6914,'2005-07-12 22:26:56',496,361,'2005-07-17 20:03:56',1,'2006-02-15 21:30:53'), - (6915,'2005-07-12 22:28:09',1243,559,'2005-07-14 00:53:09',1,'2006-02-15 21:30:53'), - (6916,'2005-07-12 22:29:18',3311,88,'2005-07-19 16:46:18',1,'2006-02-15 21:30:53'), - (6917,'2005-07-12 22:30:15',3048,23,'2005-07-20 03:20:15',1,'2006-02-15 21:30:53'), - (6918,'2005-07-12 22:30:29',4085,140,'2005-07-19 22:51:29',1,'2006-02-15 21:30:53'), - (6919,'2005-07-12 22:32:17',1122,540,'2005-07-18 20:09:17',1,'2006-02-15 21:30:53'), - (6920,'2005-07-12 22:32:58',2301,109,'2005-07-19 20:29:58',2,'2006-02-15 21:30:53'), - (6921,'2005-07-12 22:39:03',3322,265,'2005-07-21 18:54:03',2,'2006-02-15 21:30:53'), - (6922,'2005-07-12 22:39:48',1114,371,'2005-07-14 18:35:48',1,'2006-02-15 21:30:53'), - (6923,'2005-07-12 22:40:48',2642,490,'2005-07-19 23:07:48',2,'2006-02-15 21:30:53'), - (6924,'2005-07-26 22:51:53',1257,502,'2005-08-03 19:04:53',2,'2006-02-15 21:30:53'), - (6925,'2005-07-26 22:52:32',2919,42,'2005-07-29 21:22:32',1,'2006-02-15 21:30:53'), - (6926,'2005-07-26 22:52:45',1276,354,'2005-07-28 18:32:45',1,'2006-02-15 21:30:53'), - (6927,'2005-07-26 22:56:00',4511,470,'2005-08-05 03:16:00',2,'2006-02-15 21:30:53'), - (6928,'2005-07-26 22:56:21',3605,487,'2005-07-30 04:46:21',1,'2006-02-15 21:30:53'), - (6929,'2005-07-26 22:59:19',3339,508,'2005-08-03 22:40:19',1,'2006-02-15 21:30:53'), - (6930,'2005-07-26 23:00:01',2989,393,'2005-08-04 01:57:01',2,'2006-02-15 21:30:53'), - (6931,'2005-07-26 23:02:57',2794,333,'2005-07-28 04:48:57',2,'2006-02-15 21:30:53'), - (6932,'2005-07-26 23:08:04',4517,463,'2005-08-05 01:35:04',1,'2006-02-15 21:30:53'), - (6933,'2005-07-26 23:09:23',1334,385,'2005-07-31 20:50:23',1,'2006-02-15 21:30:53'), - (6934,'2005-07-26 23:11:03',455,107,'2005-08-04 19:18:03',1,'2006-02-15 21:30:53'), - (6935,'2005-07-26 23:13:10',2771,435,'2005-07-27 18:09:10',1,'2006-02-15 21:30:53'), - (6936,'2005-07-26 23:13:34',60,538,'2005-07-30 19:14:34',1,'2006-02-15 21:30:53'), - (6937,'2005-07-26 23:15:50',1768,592,'2005-07-27 19:14:50',1,'2006-02-15 21:30:53'), - (6938,'2005-07-26 23:16:04',2058,427,'2005-08-05 00:59:04',2,'2006-02-15 21:30:53'), - (6939,'2005-07-26 23:17:51',278,354,'2005-08-03 21:12:51',2,'2006-02-15 21:30:53'), - (6940,'2005-07-26 23:18:35',3876,149,'2005-08-05 01:44:35',2,'2006-02-15 21:30:53'), - (6941,'2005-07-26 23:18:49',1575,441,'2005-07-31 00:23:49',2,'2006-02-15 21:30:53'), - (6942,'2005-07-26 23:27:40',1203,470,'2005-07-31 03:17:40',2,'2006-02-15 21:30:53'), - (6943,'2005-07-26 23:28:13',2436,21,'2005-07-30 02:22:13',2,'2006-02-15 21:30:53'), - (6944,'2005-07-26 23:34:02',1168,373,'2005-08-05 01:27:02',1,'2006-02-15 21:30:53'), - (6945,'2005-07-26 23:35:29',1627,560,'2005-07-28 00:12:29',1,'2006-02-15 21:30:53'), - (6946,'2005-07-26 23:40:07',1854,181,'2005-08-04 01:18:07',2,'2006-02-15 21:30:53'), - (6947,'2005-07-26 23:42:03',760,200,'2005-08-02 05:06:03',2,'2006-02-15 21:30:53'), - (6948,'2005-07-26 23:43:49',3088,228,'2005-07-27 21:24:49',2,'2006-02-15 21:30:53'), - (6949,'2005-07-26 23:44:12',1594,103,'2005-07-30 05:39:12',2,'2006-02-15 21:30:53'), - (6950,'2005-07-26 23:45:33',197,503,'2005-07-31 04:40:33',2,'2006-02-15 21:30:53'), - (6951,'2005-07-26 23:47:31',3348,98,'2005-07-31 22:17:31',1,'2006-02-15 21:30:53'), - (6952,'2005-07-26 23:51:27',4288,290,'2005-07-30 02:45:27',2,'2006-02-15 21:30:53'), - (6953,'2005-07-26 23:52:47',2910,306,'2005-07-30 23:07:47',1,'2006-02-15 21:30:53'), - (6954,'2005-07-26 23:55:13',1112,584,'2005-07-28 19:01:13',2,'2006-02-15 21:30:53'), - (6955,'2005-07-26 23:55:48',1104,469,'2005-08-02 03:25:48',2,'2006-02-15 21:30:53'), - (6956,'2005-07-26 23:55:57',2499,240,'2005-08-03 21:41:57',1,'2006-02-15 21:30:53'), - (6957,'2005-07-27 00:00:00',2231,518,'2005-07-29 19:32:00',2,'2006-02-15 21:30:53'), - (6958,'2005-07-27 00:02:41',657,333,'2005-07-28 00:53:41',2,'2006-02-15 21:30:53'), - (6959,'2005-07-27 00:07:51',1618,452,'2005-07-27 20:45:51',2,'2006-02-15 21:30:53'), - (6960,'2005-07-27 00:08:33',192,421,'2005-08-03 20:58:33',2,'2006-02-15 21:30:53'), - (6961,'2005-07-27 00:10:49',2205,38,'2005-07-30 00:26:49',2,'2006-02-15 21:30:53'), - (6962,'2005-07-27 00:10:58',4500,245,'2005-07-30 02:11:58',2,'2006-02-15 21:30:53'), - (6963,'2005-07-27 00:13:02',4284,489,'2005-08-03 18:13:02',1,'2006-02-15 21:30:53'), - (6964,'2005-07-27 00:15:04',1537,404,'2005-07-31 00:04:04',2,'2006-02-15 21:30:53'), - (6965,'2005-07-27 00:15:18',74,185,'2005-07-28 04:30:18',2,'2006-02-15 21:30:53'), - (6966,'2005-07-27 00:15:35',1577,45,'2005-08-05 03:04:35',2,'2006-02-15 21:30:53'), - (6967,'2005-07-27 00:16:31',1145,296,'2005-08-03 22:19:31',1,'2006-02-15 21:30:53'), - (6968,'2005-07-27 00:16:45',1662,370,'2005-07-30 23:16:45',2,'2006-02-15 21:30:53'), - (6969,'2005-07-27 00:23:54',2650,579,'2005-08-03 04:34:54',1,'2006-02-15 21:30:53'), - (6970,'2005-07-27 00:26:14',17,418,'2005-08-03 20:00:14',2,'2006-02-15 21:30:53'), - (6971,'2005-07-27 00:26:17',3493,366,'2005-08-01 03:59:17',2,'2006-02-15 21:30:53'), - (6972,'2005-07-27 00:31:25',1716,434,'2005-07-28 22:15:25',2,'2006-02-15 21:30:53'), - (6973,'2005-07-27 00:32:04',4572,564,'2005-07-29 01:05:04',2,'2006-02-15 21:30:53'), - (6974,'2005-07-27 00:39:16',2924,122,'2005-08-04 01:59:16',2,'2006-02-15 21:30:53'), - (6975,'2005-07-27 00:39:54',3328,527,'2005-08-02 19:49:54',1,'2006-02-15 21:30:53'), - (6976,'2005-07-27 00:40:01',3096,41,'2005-07-31 22:30:01',2,'2006-02-15 21:30:53'), - (6977,'2005-07-27 00:40:50',3545,429,'2005-08-02 19:08:50',2,'2006-02-15 21:30:53'), - (6978,'2005-07-27 00:47:40',3645,132,'2005-07-31 04:32:40',2,'2006-02-15 21:30:53'), - (6979,'2005-07-27 00:49:53',1001,141,'2005-07-31 03:59:53',2,'2006-02-15 21:30:53'), - (6980,'2005-07-27 00:50:30',1127,164,'2005-08-03 23:35:30',1,'2006-02-15 21:30:53'), - (6981,'2005-07-27 00:51:38',154,362,'2005-07-28 01:06:38',2,'2006-02-15 21:30:53'), - (6982,'2005-07-27 00:53:41',3843,284,'2005-07-31 06:19:41',2,'2006-02-15 21:30:53'), - (6983,'2005-07-27 00:55:03',1758,443,'2005-08-01 21:19:03',2,'2006-02-15 21:30:53'), - (6984,'2005-07-27 00:56:30',2407,297,'2005-08-02 01:14:30',2,'2006-02-15 21:30:53'), - (6985,'2005-07-27 00:57:42',1834,448,'2005-07-31 00:53:42',1,'2006-02-15 21:30:53'), - (6986,'2005-07-27 00:59:05',2104,262,'2005-07-29 00:31:05',1,'2006-02-15 21:30:53'), - (6987,'2005-07-27 00:59:50',3134,334,'2005-07-28 01:47:50',1,'2006-02-15 21:30:53'), - (6988,'2005-07-27 01:00:08',756,316,'2005-07-31 04:35:08',2,'2006-02-15 21:30:53'), - (6989,'2005-07-27 01:00:34',4036,120,'2005-07-30 23:53:34',1,'2006-02-15 21:30:53'), - (6990,'2005-07-27 01:02:46',4065,146,'2005-07-31 00:22:46',1,'2006-02-15 21:30:53'), - (6991,'2005-07-27 01:03:06',319,307,'2005-08-05 04:18:06',2,'2006-02-15 21:30:53'), - (6992,'2005-07-27 01:04:45',3411,106,'2005-07-28 02:34:45',2,'2006-02-15 21:30:53'), - (6993,'2005-07-27 01:05:24',3114,154,'2005-07-30 06:23:24',2,'2006-02-15 21:30:53'), - (6994,'2005-07-27 01:08:26',4316,400,'2005-08-04 22:58:26',2,'2006-02-15 21:30:53'), - (6995,'2005-07-27 01:12:13',1630,66,'2005-07-29 21:26:13',1,'2006-02-15 21:30:53'), - (6996,'2005-07-27 01:13:45',3237,236,'2005-07-28 20:43:45',1,'2006-02-15 21:30:53'), - (6997,'2005-07-27 01:14:02',2130,342,'2005-07-29 01:12:02',2,'2006-02-15 21:30:53'), - (6998,'2005-07-27 01:16:29',788,300,'2005-07-30 05:50:29',2,'2006-02-15 21:30:53'), - (6999,'2005-07-27 01:21:19',12,224,'2005-07-29 20:33:19',2,'2006-02-15 21:30:53'), - (7000,'2005-07-27 01:23:24',2024,31,'2005-08-03 02:10:24',2,'2006-02-15 21:30:53'), - (7001,'2005-07-27 01:25:34',1460,240,'2005-07-31 23:30:34',2,'2006-02-15 21:30:53'), - (7002,'2005-07-27 01:26:14',4157,349,'2005-08-01 20:10:14',1,'2006-02-15 21:30:53'), - (7003,'2005-07-27 01:32:06',636,161,'2005-07-30 21:33:06',2,'2006-02-15 21:30:53'), - (7004,'2005-07-27 01:36:05',4416,314,'2005-08-03 23:46:05',1,'2006-02-15 21:30:53'), - (7005,'2005-07-27 01:38:36',2438,446,'2005-08-02 05:56:36',2,'2006-02-15 21:30:53'), - (7006,'2005-07-27 01:42:20',3522,264,'2005-08-03 03:19:20',1,'2006-02-15 21:30:53'), - (7007,'2005-07-27 01:43:39',4186,257,'2005-07-31 21:04:39',1,'2006-02-15 21:30:53'), - (7008,'2005-07-27 01:44:03',3659,12,'2005-07-28 21:19:03',2,'2006-02-15 21:30:53'), - (7009,'2005-07-27 01:45:44',1585,414,'2005-07-28 05:50:44',1,'2006-02-15 21:30:53'), - (7010,'2005-07-27 01:56:01',3016,590,'2005-07-30 04:40:01',1,'2006-02-15 21:30:53'), - (7011,'2005-07-27 01:58:34',4082,254,'2005-07-28 06:11:34',1,'2006-02-15 21:30:53'), - (7012,'2005-07-27 02:01:03',779,239,'2005-08-05 07:34:03',2,'2006-02-15 21:30:53'), - (7013,'2005-07-27 02:03:21',3919,463,'2005-07-31 22:12:21',1,'2006-02-15 21:30:53'), - (7014,'2005-07-27 02:14:40',714,524,'2005-08-03 00:32:40',2,'2006-02-15 21:30:53'), - (7015,'2005-07-27 02:15:01',376,34,'2005-07-28 07:46:01',2,'2006-02-15 21:30:53'), - (7016,'2005-07-27 02:15:16',1425,423,'2005-08-01 23:08:16',2,'2006-02-15 21:30:53'), - (7017,'2005-07-27 02:16:03',753,176,'2005-07-31 07:49:03',1,'2006-02-15 21:30:53'), - (7018,'2005-07-27 02:20:22',1078,451,'2005-08-02 05:04:22',2,'2006-02-15 21:30:53'), - (7019,'2005-07-27 02:20:26',3837,491,'2005-08-02 22:48:26',1,'2006-02-15 21:30:53'), - (7020,'2005-07-27 02:24:27',3965,506,'2005-07-29 01:27:27',2,'2006-02-15 21:30:53'), - (7021,'2005-07-27 02:26:38',2690,380,'2005-08-05 01:18:38',1,'2006-02-15 21:30:53'), - (7022,'2005-07-27 02:31:15',1711,243,'2005-07-29 02:52:15',1,'2006-02-15 21:30:53'), - (7023,'2005-07-27 02:32:44',4196,303,'2005-08-03 04:06:44',1,'2006-02-15 21:30:53'), - (7024,'2005-07-27 02:36:40',3113,252,'2005-07-28 06:58:40',1,'2006-02-15 21:30:53'), - (7025,'2005-07-27 02:40:29',3530,176,'2005-07-29 23:02:29',2,'2006-02-15 21:30:53'), - (7026,'2005-07-27 02:48:58',3456,493,'2005-07-29 03:41:58',2,'2006-02-15 21:30:53'), - (7027,'2005-07-27 02:50:15',3280,61,'2005-08-04 02:58:15',1,'2006-02-15 21:30:53'), - (7028,'2005-07-27 02:54:25',834,179,'2005-08-02 06:16:25',2,'2006-02-15 21:30:53'), - (7029,'2005-07-27 02:57:43',2862,389,'2005-07-30 08:24:43',1,'2006-02-15 21:30:53'), - (7030,'2005-07-27 03:01:40',1277,550,'2005-07-31 07:01:40',1,'2006-02-15 21:30:53'), - (7031,'2005-07-27 03:02:07',1435,530,'2005-08-02 07:14:07',1,'2006-02-15 21:30:53'), - (7032,'2005-07-27 03:03:09',3397,269,'2005-07-28 22:57:09',1,'2006-02-15 21:30:53'), - (7033,'2005-07-27 03:03:25',2803,352,'2005-07-28 01:57:25',2,'2006-02-15 21:30:53'), - (7034,'2005-07-27 03:03:37',1712,281,'2005-07-28 23:18:37',1,'2006-02-15 21:30:53'), - (7035,'2005-07-27 03:06:09',2439,90,'2005-08-02 21:59:09',2,'2006-02-15 21:30:53'), - (7036,'2005-07-27 03:06:12',2569,70,'2005-07-28 23:26:12',2,'2006-02-15 21:30:53'), - (7037,'2005-07-27 03:06:44',3155,171,'2005-08-02 04:51:44',2,'2006-02-15 21:30:53'), - (7038,'2005-07-27 03:07:29',1909,518,'2005-07-31 04:55:29',2,'2006-02-15 21:30:53'), - (7039,'2005-07-27 03:11:48',1906,99,'2005-08-01 23:55:48',1,'2006-02-15 21:30:53'), - (7040,'2005-07-27 03:17:19',470,524,'2005-07-29 07:03:19',2,'2006-02-15 21:30:53'), - (7041,'2005-07-27 03:18:32',4212,379,'2005-07-30 06:40:32',2,'2006-02-15 21:30:53'), - (7042,'2005-07-27 03:20:18',399,188,'2005-08-01 02:23:18',1,'2006-02-15 21:30:53'), - (7043,'2005-07-27 03:24:23',3422,493,'2005-08-05 02:55:23',2,'2006-02-15 21:30:53'), - (7044,'2005-07-27 03:27:29',88,147,'2005-08-01 07:00:29',2,'2006-02-15 21:30:53'), - (7045,'2005-07-27 03:27:35',1788,64,'2005-08-01 06:31:35',2,'2006-02-15 21:30:53'), - (7046,'2005-07-27 03:27:56',3740,349,'2005-07-30 00:54:56',2,'2006-02-15 21:30:53'), - (7047,'2005-07-27 03:31:11',2866,236,'2005-08-03 23:40:11',1,'2006-02-15 21:30:53'), - (7048,'2005-07-27 03:31:48',3707,581,'2005-08-05 07:30:48',2,'2006-02-15 21:30:53'), - (7049,'2005-07-27 03:32:41',3043,332,'2005-08-04 08:32:41',2,'2006-02-15 21:30:53'), - (7050,'2005-07-27 03:33:17',1135,55,'2005-08-02 03:12:17',1,'2006-02-15 21:30:53'), - (7051,'2005-07-27 03:34:37',1310,184,'2005-07-31 03:48:37',2,'2006-02-15 21:30:53'), - (7052,'2005-07-27 03:36:38',3798,75,'2005-08-03 21:51:38',1,'2006-02-15 21:30:53'), - (7053,'2005-07-27 03:38:54',149,408,'2005-07-31 01:13:54',1,'2006-02-15 21:30:53'), - (7054,'2005-07-27 03:43:28',2661,179,'2005-08-04 09:15:28',1,'2006-02-15 21:30:53'), - (7055,'2005-07-27 03:45:42',4305,154,'2005-07-30 05:11:42',1,'2006-02-15 21:30:53'), - (7056,'2005-07-27 03:46:27',805,233,'2005-08-05 07:46:27',1,'2006-02-15 21:30:53'), - (7057,'2005-07-27 03:50:03',1196,320,'2005-08-04 04:36:03',1,'2006-02-15 21:30:53'), - (7058,'2005-07-27 03:50:46',716,90,'2005-08-04 07:40:46',2,'2006-02-15 21:30:53'), - (7059,'2005-07-27 03:51:02',129,578,'2005-08-02 22:04:02',1,'2006-02-15 21:30:53'), - (7060,'2005-07-27 03:51:04',3912,479,'2005-08-03 07:53:04',1,'2006-02-15 21:30:53'), - (7061,'2005-07-27 03:51:10',880,145,'2005-07-31 05:36:10',1,'2006-02-15 21:30:53'), - (7062,'2005-07-27 03:52:01',226,469,'2005-08-03 08:26:01',1,'2006-02-15 21:30:53'), - (7063,'2005-07-27 03:52:27',2125,58,'2005-08-04 07:53:27',1,'2006-02-15 21:30:53'), - (7064,'2005-07-27 03:53:29',4204,320,'2005-08-03 06:32:29',1,'2006-02-15 21:30:53'), - (7065,'2005-07-27 03:53:43',3570,536,'2005-07-30 23:41:43',2,'2006-02-15 21:30:53'), - (7066,'2005-07-27 03:53:52',1862,185,'2005-08-05 03:32:52',1,'2006-02-15 21:30:53'), - (7067,'2005-07-27 03:55:10',870,60,'2005-08-01 02:56:10',1,'2006-02-15 21:30:53'), - (7068,'2005-07-27 03:57:50',4465,568,'2005-07-30 04:27:50',1,'2006-02-15 21:30:53'), - (7069,'2005-07-27 03:59:35',2073,343,'2005-08-05 03:33:35',1,'2006-02-15 21:30:53'), - (7070,'2005-07-27 04:01:08',4182,280,'2005-07-30 08:10:08',2,'2006-02-15 21:30:53'), - (7071,'2005-07-27 04:01:15',4361,61,'2005-08-03 05:18:15',2,'2006-02-15 21:30:53'), - (7072,'2005-07-27 04:02:33',3899,260,'2005-07-28 09:26:33',2,'2006-02-15 21:30:53'), - (7073,'2005-07-27 04:03:26',3859,92,'2005-08-03 05:50:26',1,'2006-02-15 21:30:53'), - (7074,'2005-07-27 04:06:24',1390,165,'2005-07-28 02:04:24',1,'2006-02-15 21:30:53'), - (7075,'2005-07-27 04:11:40',4414,530,'2005-08-03 08:16:40',2,'2006-02-15 21:30:53'), - (7076,'2005-07-27 04:12:14',2821,333,'2005-08-05 00:44:14',1,'2006-02-15 21:30:53'), - (7077,'2005-07-27 04:13:02',3186,155,'2005-07-31 23:15:02',1,'2006-02-15 21:30:53'), - (7078,'2005-07-27 04:16:37',4518,545,'2005-08-05 02:34:37',1,'2006-02-15 21:30:53'), - (7079,'2005-07-27 04:21:58',4356,356,'2005-08-04 08:08:58',1,'2006-02-15 21:30:53'), - (7080,'2005-07-27 04:25:25',710,466,'2005-08-04 04:22:25',2,'2006-02-15 21:30:53'), - (7081,'2005-07-27 04:25:59',462,420,'2005-08-01 00:14:59',1,'2006-02-15 21:30:53'), - (7082,'2005-07-27 04:27:32',2032,64,'2005-07-30 06:06:32',2,'2006-02-15 21:30:53'), - (7083,'2005-07-27 04:28:39',2663,575,'2005-07-30 04:35:39',2,'2006-02-15 21:30:53'), - (7084,'2005-07-27 04:34:07',785,32,'2005-08-05 00:21:07',2,'2006-02-15 21:30:53'), - (7085,'2005-07-27 04:35:44',2603,223,'2005-08-05 07:10:44',2,'2006-02-15 21:30:53'), - (7086,'2005-07-27 04:39:46',2938,595,'2005-08-05 00:32:46',2,'2006-02-15 21:30:53'), - (7087,'2005-07-27 04:42:08',1159,22,'2005-08-02 00:53:08',1,'2006-02-15 21:30:53'), - (7088,'2005-07-27 04:42:28',373,88,'2005-08-04 07:09:28',2,'2006-02-15 21:30:53'), - (7089,'2005-07-27 04:43:42',1380,446,'2005-07-30 10:04:42',1,'2006-02-15 21:30:53'), - (7090,'2005-07-27 04:43:53',3495,218,'2005-07-29 07:33:53',2,'2006-02-15 21:30:53'), - (7091,'2005-07-27 04:44:10',2593,322,'2005-07-31 07:14:10',1,'2006-02-15 21:30:53'), - (7092,'2005-07-27 04:46:00',1433,345,'2005-08-03 07:22:00',2,'2006-02-15 21:30:53'), - (7093,'2005-07-27 04:47:00',3065,574,'2005-07-31 10:15:00',1,'2006-02-15 21:30:53'), - (7094,'2005-07-27 04:47:33',867,373,'2005-07-31 04:07:33',2,'2006-02-15 21:30:53'), - (7095,'2005-07-27 04:51:15',1008,551,'2005-08-05 10:25:15',2,'2006-02-15 21:30:53'), - (7096,'2005-07-27 04:54:42',2575,3,'2005-08-03 01:42:42',2,'2006-02-15 21:30:53'), - (7097,'2005-07-27 04:56:09',258,487,'2005-07-31 05:47:09',1,'2006-02-15 21:30:53'), - (7098,'2005-07-27 05:01:08',2555,359,'2005-08-02 07:49:08',2,'2006-02-15 21:30:53'), - (7099,'2005-07-27 05:03:44',3136,6,'2005-07-29 00:12:44',2,'2006-02-15 21:30:53'), - (7100,'2005-07-27 05:05:01',4224,413,'2005-07-28 23:12:01',2,'2006-02-15 21:30:53'), - (7101,'2005-07-27 05:06:34',2006,221,'2005-07-29 06:12:34',1,'2006-02-15 21:30:53'), - (7102,'2005-07-27 05:07:21',1081,411,'2005-08-01 09:41:21',2,'2006-02-15 21:30:53'), - (7103,'2005-07-27 05:08:59',1697,403,'2005-07-29 03:42:59',2,'2006-02-15 21:30:53'), - (7104,'2005-07-27 05:15:25',118,217,'2005-08-01 05:36:25',2,'2006-02-15 21:30:53'), - (7105,'2005-07-27 05:15:37',864,15,'2005-07-28 05:49:37',2,'2006-02-15 21:30:53'), - (7106,'2005-07-27 05:21:24',1415,201,'2005-08-02 01:58:24',2,'2006-02-15 21:30:53'), - (7107,'2005-07-27 05:22:04',1883,104,'2005-08-02 06:38:04',1,'2006-02-15 21:30:53'), - (7108,'2005-07-27 05:28:32',2720,355,'2005-07-31 07:52:32',1,'2006-02-15 21:30:53'), - (7109,'2005-07-27 05:28:57',1658,406,'2005-08-04 10:41:57',2,'2006-02-15 21:30:53'), - (7110,'2005-07-27 05:30:48',3289,157,'2005-07-28 01:43:48',1,'2006-02-15 21:30:53'), - (7111,'2005-07-27 05:38:16',1252,473,'2005-07-29 04:28:16',2,'2006-02-15 21:30:53'), - (7112,'2005-07-27 05:38:42',4056,101,'2005-08-03 05:35:42',1,'2006-02-15 21:30:53'), - (7113,'2005-07-27 05:41:20',1963,534,'2005-07-30 04:50:20',1,'2006-02-15 21:30:53'), - (7114,'2005-07-27 05:42:13',3892,121,'2005-07-29 01:59:13',1,'2006-02-15 21:30:53'), - (7115,'2005-07-27 05:42:58',3620,359,'2005-08-02 05:35:58',2,'2006-02-15 21:30:53'), - (7116,'2005-07-27 05:46:43',1755,209,'2005-08-05 05:54:43',1,'2006-02-15 21:30:53'), - (7117,'2005-07-27 05:48:36',2772,326,'2005-08-01 00:33:36',1,'2006-02-15 21:30:53'), - (7118,'2005-07-27 05:53:50',582,591,'2005-08-05 04:19:50',2,'2006-02-15 21:30:53'), - (7119,'2005-07-27 05:55:32',1732,102,'2005-07-29 03:19:32',1,'2006-02-15 21:30:53'), - (7120,'2005-07-27 05:56:39',416,98,'2005-08-04 10:57:39',1,'2006-02-15 21:30:53'), - (7121,'2005-07-27 05:58:32',1264,252,'2005-07-29 06:14:32',1,'2006-02-15 21:30:53'), - (7122,'2005-07-27 06:03:18',1699,172,'2005-08-04 10:43:18',2,'2006-02-15 21:30:53'), - (7123,'2005-07-27 06:08:48',134,232,'2005-08-04 05:26:48',1,'2006-02-15 21:30:53'), - (7124,'2005-07-27 06:09:30',3449,34,'2005-08-02 09:31:30',1,'2006-02-15 21:30:53'), - (7125,'2005-07-27 06:11:00',801,460,'2005-08-04 09:41:00',2,'2006-02-15 21:30:53'), - (7126,'2005-07-27 06:13:13',3240,582,'2005-07-28 08:22:13',2,'2006-02-15 21:30:53'), - (7127,'2005-07-27 06:13:48',273,486,'2005-08-01 02:50:48',2,'2006-02-15 21:30:53'), - (7128,'2005-07-27 06:14:36',143,529,'2005-08-02 05:18:36',1,'2006-02-15 21:30:53'), - (7129,'2005-07-27 06:18:01',1930,221,'2005-07-28 02:38:01',1,'2006-02-15 21:30:53'), - (7130,'2005-07-27 06:23:36',420,81,'2005-07-28 10:23:36',1,'2006-02-15 21:30:53'), - (7131,'2005-07-27 06:25:06',2832,585,'2005-07-31 09:07:06',1,'2006-02-15 21:30:53'), - (7132,'2005-07-27 06:28:34',3201,227,'2005-08-05 06:02:34',2,'2006-02-15 21:30:53'), - (7133,'2005-07-27 06:29:23',2995,496,'2005-07-29 03:20:23',2,'2006-02-15 21:30:53'), - (7134,'2005-07-27 06:33:06',1058,574,'2005-07-28 06:15:06',1,'2006-02-15 21:30:53'), - (7135,'2005-07-27 06:34:32',2959,172,'2005-07-28 03:01:32',1,'2006-02-15 21:30:53'), - (7136,'2005-07-27 06:38:25',1929,6,'2005-08-03 05:13:25',1,'2006-02-15 21:30:53'), - (7137,'2005-07-27 06:40:41',3957,483,'2005-07-29 09:05:41',2,'2006-02-15 21:30:53'), - (7138,'2005-07-27 06:47:13',1418,31,'2005-08-03 01:12:13',2,'2006-02-15 21:30:53'), - (7139,'2005-07-27 06:52:21',846,575,'2005-07-30 01:45:21',1,'2006-02-15 21:30:53'), - (7140,'2005-07-27 06:54:12',2028,35,'2005-08-03 10:36:12',2,'2006-02-15 21:30:53'), - (7141,'2005-07-27 06:55:27',3579,423,'2005-08-01 11:10:27',1,'2006-02-15 21:30:53'), - (7142,'2005-07-27 06:55:39',1743,396,'2005-07-28 01:41:39',2,'2006-02-15 21:30:53'), - (7143,'2005-07-27 06:56:31',2877,91,'2005-07-31 04:38:31',2,'2006-02-15 21:30:53'), - (7144,'2005-07-27 07:00:37',4506,485,'2005-08-01 06:57:37',1,'2006-02-15 21:30:53'), - (7145,'2005-07-27 07:01:00',3653,109,'2005-07-31 02:31:00',1,'2006-02-15 21:30:53'), - (7146,'2005-07-27 07:02:30',2245,323,'2005-08-05 10:29:30',1,'2006-02-15 21:30:53'), - (7147,'2005-07-27 07:02:34',990,192,'2005-08-01 02:16:34',1,'2006-02-15 21:30:53'), - (7148,'2005-07-27 07:04:09',1783,354,'2005-08-03 10:20:09',2,'2006-02-15 21:30:53'), - (7149,'2005-07-27 07:10:40',3902,242,'2005-08-03 07:37:40',2,'2006-02-15 21:30:53'), - (7150,'2005-07-27 07:11:14',457,191,'2005-08-05 06:55:14',2,'2006-02-15 21:30:53'), - (7151,'2005-07-27 07:14:31',1259,289,'2005-08-01 01:35:31',2,'2006-02-15 21:30:53'), - (7152,'2005-07-27 07:15:01',2338,370,'2005-08-05 04:50:01',1,'2006-02-15 21:30:53'), - (7153,'2005-07-27 07:15:38',2657,41,'2005-07-28 09:56:38',1,'2006-02-15 21:30:53'), - (7154,'2005-07-27 07:16:17',2019,518,'2005-07-28 04:04:17',2,'2006-02-15 21:30:53'), - (7155,'2005-07-27 07:18:46',171,23,'2005-08-04 10:28:46',1,'2006-02-15 21:30:53'), - (7156,'2005-07-27 07:19:34',34,154,'2005-07-31 04:31:34',1,'2006-02-15 21:30:53'), - (7157,'2005-07-27 07:20:28',1353,423,'2005-08-02 07:19:28',1,'2006-02-15 21:30:53'), - (7158,'2005-07-27 07:23:58',2432,38,'2005-08-03 06:00:58',2,'2006-02-15 21:30:53'), - (7159,'2005-07-27 07:24:00',1220,158,'2005-08-05 11:13:00',1,'2006-02-15 21:30:53'), - (7160,'2005-07-27 07:26:06',3905,71,'2005-07-31 04:54:06',2,'2006-02-15 21:30:53'), - (7161,'2005-07-27 07:26:32',378,572,'2005-08-03 01:26:32',2,'2006-02-15 21:30:53'), - (7162,'2005-07-27 07:32:45',2251,289,'2005-07-30 03:48:45',1,'2006-02-15 21:30:53'), - (7163,'2005-07-27 07:36:11',3666,38,'2005-08-04 06:03:11',2,'2006-02-15 21:30:53'), - (7164,'2005-07-27 07:36:34',527,284,'2005-08-04 05:05:34',2,'2006-02-15 21:30:53'), - (7165,'2005-07-27 07:36:46',497,243,'2005-07-30 09:22:46',2,'2006-02-15 21:30:53'), - (7166,'2005-07-27 07:36:56',1375,562,'2005-08-02 03:46:56',1,'2006-02-15 21:30:53'), - (7167,'2005-07-27 07:37:26',238,380,'2005-08-03 06:39:26',1,'2006-02-15 21:30:53'), - (7168,'2005-07-27 07:51:11',6,252,'2005-08-01 04:08:11',2,'2006-02-15 21:30:53'), - (7169,'2005-07-27 07:51:39',735,559,'2005-08-01 06:42:39',1,'2006-02-15 21:30:53'), - (7170,'2005-07-27 07:58:26',370,140,'2005-07-28 02:30:26',1,'2006-02-15 21:30:53'), - (7171,'2005-07-27 07:58:35',4381,406,'2005-08-03 07:45:35',1,'2006-02-15 21:30:53'), - (7172,'2005-07-27 07:59:16',2405,362,'2005-08-01 04:46:16',1,'2006-02-15 21:30:53'), - (7173,'2005-07-27 07:59:24',177,592,'2005-07-28 02:23:24',2,'2006-02-15 21:30:53'), - (7174,'2005-07-27 08:00:36',46,570,'2005-08-01 03:11:36',1,'2006-02-15 21:30:53'), - (7175,'2005-07-27 08:03:22',568,190,'2005-08-01 02:47:22',2,'2006-02-15 21:30:53'), - (7176,'2005-07-27 08:04:28',227,257,'2005-07-29 14:00:28',2,'2006-02-15 21:30:53'), - (7177,'2005-07-27 08:07:39',3818,133,'2005-07-30 03:17:39',2,'2006-02-15 21:30:53'), - (7178,'2005-07-27 08:09:25',1899,31,'2005-07-29 13:00:25',2,'2006-02-15 21:30:53'), - (7179,'2005-07-27 08:10:29',2365,537,'2005-07-28 12:24:29',2,'2006-02-15 21:30:53'), - (7180,'2005-07-27 08:14:34',460,215,'2005-07-31 05:24:34',1,'2006-02-15 21:30:53'), - (7181,'2005-07-27 08:14:34',2788,130,'2005-07-28 03:09:34',1,'2006-02-15 21:30:53'), - (7182,'2005-07-27 08:15:38',3209,97,'2005-08-03 12:48:38',2,'2006-02-15 21:30:53'), - (7183,'2005-07-27 08:18:38',3384,302,'2005-08-01 03:24:38',1,'2006-02-15 21:30:53'), - (7184,'2005-07-27 08:22:26',2324,457,'2005-08-02 09:34:26',2,'2006-02-15 21:30:53'), - (7185,'2005-07-27 08:23:54',2340,121,'2005-07-30 09:50:54',1,'2006-02-15 21:30:53'), - (7186,'2005-07-27 08:26:12',4005,584,'2005-07-28 12:21:12',1,'2006-02-15 21:30:53'), - (7187,'2005-07-27 08:27:58',2733,169,'2005-08-05 09:05:58',1,'2006-02-15 21:30:53'), - (7188,'2005-07-27 08:32:08',2199,259,'2005-07-28 08:02:08',1,'2006-02-15 21:30:53'), - (7189,'2005-07-27 08:35:02',4419,151,'2005-07-30 14:00:02',2,'2006-02-15 21:30:53'), - (7190,'2005-07-27 08:36:01',1330,372,'2005-07-30 08:32:01',2,'2006-02-15 21:30:53'), - (7191,'2005-07-27 08:36:15',4292,495,'2005-08-03 08:54:15',1,'2006-02-15 21:30:53'), - (7192,'2005-07-27 08:36:55',4329,532,'2005-07-30 11:58:55',2,'2006-02-15 21:30:53'), - (7193,'2005-07-27 08:37:00',1801,237,'2005-07-30 12:51:00',2,'2006-02-15 21:30:53'), - (7194,'2005-07-27 08:39:58',254,172,'2005-08-01 03:12:58',1,'2006-02-15 21:30:53'), - (7195,'2005-07-27 08:47:01',721,157,'2005-07-30 08:40:01',2,'2006-02-15 21:30:53'), - (7196,'2005-07-27 08:49:08',2998,118,'2005-07-29 03:54:08',1,'2006-02-15 21:30:53'), - (7197,'2005-07-27 08:49:32',2109,577,'2005-07-31 13:50:32',1,'2006-02-15 21:30:53'), - (7198,'2005-07-27 08:50:07',4283,520,'2005-08-04 09:46:07',2,'2006-02-15 21:30:53'), - (7199,'2005-07-27 08:53:23',3685,292,'2005-08-03 10:01:23',1,'2006-02-15 21:30:53'), - (7200,'2005-07-27 08:57:38',4406,78,'2005-08-02 12:29:38',2,'2006-02-15 21:30:53'), - (7201,'2005-07-27 08:57:40',482,598,'2005-08-04 09:55:40',2,'2006-02-15 21:30:53'), - (7202,'2005-07-27 09:00:20',109,560,'2005-08-04 03:09:20',1,'2006-02-15 21:30:53'), - (7203,'2005-07-27 09:01:23',1685,492,'2005-08-04 14:14:23',1,'2006-02-15 21:30:53'), - (7204,'2005-07-27 09:02:31',2512,531,'2005-08-03 08:56:31',2,'2006-02-15 21:30:53'), - (7205,'2005-07-27 09:06:13',2828,36,'2005-08-05 07:11:13',1,'2006-02-15 21:30:53'), - (7206,'2005-07-27 09:07:05',3752,373,'2005-07-31 03:13:05',2,'2006-02-15 21:30:53'), - (7207,'2005-07-27 09:13:26',336,51,'2005-08-01 10:24:26',1,'2006-02-15 21:30:53'), - (7208,'2005-07-27 09:16:28',1523,138,'2005-07-28 09:40:28',1,'2006-02-15 21:30:53'), - (7209,'2005-07-27 09:16:53',3766,49,'2005-07-30 08:09:53',2,'2006-02-15 21:30:53'), - (7210,'2005-07-27 09:19:05',1984,176,'2005-07-28 04:35:05',1,'2006-02-15 21:30:53'), - (7211,'2005-07-27 09:20:00',4445,285,'2005-08-02 14:53:00',1,'2006-02-15 21:30:53'), - (7212,'2005-07-27 09:21:22',2905,591,'2005-08-01 04:47:22',2,'2006-02-15 21:30:53'), - (7213,'2005-07-27 09:22:29',2836,502,'2005-08-03 13:53:29',2,'2006-02-15 21:30:53'), - (7214,'2005-07-27 09:23:33',802,309,'2005-08-03 13:14:33',2,'2006-02-15 21:30:53'), - (7215,'2005-07-27 09:24:00',2713,473,'2005-08-05 07:37:00',2,'2006-02-15 21:30:53'), - (7216,'2005-07-27 09:27:45',1812,292,'2005-08-03 13:08:45',1,'2006-02-15 21:30:53'), - (7217,'2005-07-27 09:31:44',2646,20,'2005-07-29 10:48:44',1,'2006-02-15 21:30:53'), - (7218,'2005-07-27 09:34:24',2458,530,'2005-08-01 07:00:24',1,'2006-02-15 21:30:53'), - (7219,'2005-07-27 09:35:36',4046,512,'2005-07-29 04:44:36',1,'2006-02-15 21:30:53'), - (7220,'2005-07-27 09:35:54',3867,79,'2005-08-04 06:00:54',2,'2006-02-15 21:30:53'), - (7221,'2005-07-27 09:37:35',3820,579,'2005-07-28 11:25:35',1,'2006-02-15 21:30:53'), - (7222,'2005-07-27 09:38:43',2330,206,'2005-07-28 06:25:43',1,'2006-02-15 21:30:53'), - (7223,'2005-07-27 09:42:27',2623,325,'2005-08-04 04:02:27',1,'2006-02-15 21:30:53'), - (7224,'2005-07-27 09:44:26',2701,106,'2005-08-05 12:46:26',2,'2006-02-15 21:30:53'), - (7225,'2005-07-27 09:47:12',632,306,'2005-08-03 13:19:12',2,'2006-02-15 21:30:53'), - (7226,'2005-07-27 09:47:53',3507,370,'2005-08-01 08:24:53',1,'2006-02-15 21:30:53'), - (7227,'2005-07-27 09:53:43',791,164,'2005-08-05 09:36:43',2,'2006-02-15 21:30:53'), - (7228,'2005-07-27 09:55:33',1693,481,'2005-07-29 04:33:33',2,'2006-02-15 21:30:53'), - (7229,'2005-07-27 10:00:54',978,182,'2005-07-28 13:58:54',2,'2006-02-15 21:30:53'), - (7230,'2005-07-27 10:01:41',1152,245,'2005-08-02 11:00:41',1,'2006-02-15 21:30:53'), - (7231,'2005-07-27 10:01:51',1638,86,'2005-08-05 13:38:51',2,'2006-02-15 21:30:53'), - (7232,'2005-07-27 10:04:19',1147,306,'2005-07-28 09:43:19',2,'2006-02-15 21:30:53'), - (7233,'2005-07-27 10:08:36',213,245,'2005-07-31 16:00:36',1,'2006-02-15 21:30:53'), - (7234,'2005-07-27 10:08:45',3873,372,'2005-07-31 13:58:45',1,'2006-02-15 21:30:53'), - (7235,'2005-07-27 10:09:30',1261,354,'2005-08-05 11:44:30',2,'2006-02-15 21:30:53'), - (7236,'2005-07-27 10:09:39',3004,218,'2005-08-03 16:05:39',1,'2006-02-15 21:30:53'), - (7237,'2005-07-27 10:12:36',1904,29,'2005-07-31 08:40:36',2,'2006-02-15 21:30:53'), - (7238,'2005-07-27 10:13:41',1197,116,'2005-07-29 11:07:41',1,'2006-02-15 21:30:53'), - (7239,'2005-07-27 10:20:27',1786,278,'2005-07-29 10:15:27',1,'2006-02-15 21:30:53'), - (7240,'2005-07-27 10:21:15',4565,324,'2005-08-03 05:04:15',1,'2006-02-15 21:30:53'), - (7241,'2005-07-27 10:25:49',2433,354,'2005-07-28 05:30:49',2,'2006-02-15 21:30:53'), - (7242,'2005-07-27 10:25:51',1966,565,'2005-08-04 16:02:51',2,'2006-02-15 21:30:53'), - (7243,'2005-07-27 10:26:11',1287,238,'2005-07-29 11:43:11',2,'2006-02-15 21:30:53'), - (7244,'2005-07-27 10:27:33',1329,339,'2005-07-30 13:09:33',1,'2006-02-15 21:30:53'), - (7245,'2005-07-27 10:29:06',260,95,'2005-08-05 12:09:06',2,'2006-02-15 21:30:53'), - (7246,'2005-07-27 10:30:41',2003,333,'2005-07-30 05:44:41',1,'2006-02-15 21:30:53'), - (7247,'2005-07-27 10:32:58',1445,102,'2005-07-29 05:00:58',2,'2006-02-15 21:30:53'), - (7248,'2005-07-27 10:37:45',4256,456,'2005-08-01 13:13:45',1,'2006-02-15 21:30:53'), - (7249,'2005-07-27 10:39:53',2441,425,'2005-07-28 14:48:53',2,'2006-02-15 21:30:53'), - (7250,'2005-07-27 10:44:09',3410,589,'2005-07-28 11:47:09',1,'2006-02-15 21:30:53'), - (7251,'2005-07-27 10:44:55',1737,360,'2005-08-01 16:12:55',1,'2006-02-15 21:30:53'), - (7252,'2005-07-27 10:45:28',3107,549,'2005-08-04 06:24:28',2,'2006-02-15 21:30:53'), - (7253,'2005-07-27 10:46:37',1950,236,'2005-07-28 11:18:37',1,'2006-02-15 21:30:53'), - (7254,'2005-07-27 10:48:50',2697,286,'2005-07-28 10:34:50',1,'2006-02-15 21:30:53'), - (7255,'2005-07-27 10:49:54',2101,502,'2005-07-31 10:40:54',2,'2006-02-15 21:30:53'), - (7256,'2005-07-27 10:58:32',4275,363,'2005-07-29 08:58:32',2,'2006-02-15 21:30:53'), - (7257,'2005-07-27 11:04:17',3302,480,'2005-08-04 12:32:17',2,'2006-02-15 21:30:53'), - (7258,'2005-07-27 11:05:54',2079,494,'2005-08-02 11:36:54',1,'2006-02-15 21:30:53'), - (7259,'2005-07-27 11:06:00',2345,406,'2005-08-02 06:44:00',2,'2006-02-15 21:30:53'), - (7260,'2005-07-27 11:09:28',3827,434,'2005-08-03 09:41:28',1,'2006-02-15 21:30:53'), - (7261,'2005-07-27 11:15:01',942,172,'2005-07-28 09:42:01',2,'2006-02-15 21:30:53'), - (7262,'2005-07-27 11:15:36',4097,522,'2005-07-30 10:49:36',2,'2006-02-15 21:30:53'), - (7263,'2005-07-27 11:17:22',725,324,'2005-08-04 10:59:22',1,'2006-02-15 21:30:53'), - (7264,'2005-07-27 11:18:58',2391,299,'2005-08-03 07:43:58',2,'2006-02-15 21:30:53'), - (7265,'2005-07-27 11:19:01',3465,290,'2005-08-01 09:29:01',1,'2006-02-15 21:30:53'), - (7266,'2005-07-27 11:22:17',3379,24,'2005-08-04 05:45:17',1,'2006-02-15 21:30:53'), - (7267,'2005-07-27 11:22:55',3661,122,'2005-08-01 08:13:55',1,'2006-02-15 21:30:53'), - (7268,'2005-07-27 11:23:09',2740,260,'2005-08-01 12:42:09',2,'2006-02-15 21:30:53'), - (7269,'2005-07-27 11:23:47',2089,209,'2005-07-31 13:10:47',1,'2006-02-15 21:30:53'), - (7270,'2005-07-27 11:29:02',1888,526,'2005-08-05 08:04:02',1,'2006-02-15 21:30:53'), - (7271,'2005-07-27 11:29:11',858,469,'2005-08-05 15:33:11',1,'2006-02-15 21:30:53'), - (7272,'2005-07-27 11:30:20',250,364,'2005-07-29 17:16:20',2,'2006-02-15 21:30:53'), - (7273,'2005-07-27 11:31:22',2465,1,'2005-07-31 06:50:22',1,'2006-02-15 21:30:53'), - (7274,'2005-07-27 11:35:34',4087,180,'2005-08-01 07:10:34',1,'2006-02-15 21:30:53'), - (7275,'2005-07-27 11:39:08',775,323,'2005-07-30 13:37:08',2,'2006-02-15 21:30:53'), - (7276,'2005-07-27 11:41:57',1665,314,'2005-08-01 10:39:57',1,'2006-02-15 21:30:53'), - (7277,'2005-07-27 11:48:37',1544,67,'2005-08-03 07:20:37',1,'2006-02-15 21:30:53'), - (7278,'2005-07-27 11:50:34',531,592,'2005-08-01 10:22:34',1,'2006-02-15 21:30:53'), - (7279,'2005-07-27 11:50:47',1424,12,'2005-07-30 11:19:47',2,'2006-02-15 21:30:53'), - (7280,'2005-07-27 11:50:52',236,342,'2005-07-30 15:53:52',2,'2006-02-15 21:30:53'), - (7281,'2005-07-27 11:59:20',1350,491,'2005-08-04 12:48:20',1,'2006-02-15 21:30:53'), - (7282,'2005-07-27 12:00:19',4418,276,'2005-08-04 14:48:19',2,'2006-02-15 21:30:53'), - (7283,'2005-07-27 12:02:41',3101,508,'2005-08-05 07:25:41',1,'2006-02-15 21:30:53'), - (7284,'2005-07-27 12:12:04',2336,52,'2005-07-31 11:17:04',2,'2006-02-15 21:30:53'), - (7285,'2005-07-27 12:14:06',2855,498,'2005-08-03 14:57:06',2,'2006-02-15 21:30:53'), - (7286,'2005-07-27 12:23:49',3452,498,'2005-08-04 07:57:49',1,'2006-02-15 21:30:53'), - (7287,'2005-07-27 12:24:12',926,198,'2005-07-31 15:34:12',1,'2006-02-15 21:30:53'), - (7288,'2005-07-27 12:24:59',45,226,'2005-08-02 15:52:59',2,'2006-02-15 21:30:53'), - (7289,'2005-07-27 12:26:51',2157,187,'2005-08-02 18:20:51',2,'2006-02-15 21:30:53'), - (7290,'2005-07-27 12:28:45',3652,423,'2005-08-01 16:18:45',1,'2006-02-15 21:30:53'), - (7291,'2005-07-27 12:30:47',310,263,'2005-08-01 12:45:47',1,'2006-02-15 21:30:53'), - (7292,'2005-07-27 12:34:14',795,468,'2005-08-01 18:16:14',2,'2006-02-15 21:30:53'), - (7293,'2005-07-27 12:37:28',3333,5,'2005-07-30 15:12:28',2,'2006-02-15 21:30:53'), - (7294,'2005-07-27 12:38:14',487,313,'2005-07-30 13:01:14',1,'2006-02-15 21:30:53'), - (7295,'2005-07-27 12:38:47',3396,462,'2005-08-05 10:12:47',1,'2006-02-15 21:30:53'), - (7296,'2005-07-27 12:39:48',1681,400,'2005-08-04 18:24:48',2,'2006-02-15 21:30:53'), - (7297,'2005-07-27 12:39:48',1855,135,'2005-07-29 17:50:48',2,'2006-02-15 21:30:53'), - (7298,'2005-07-27 12:45:14',1653,121,'2005-07-30 07:02:14',1,'2006-02-15 21:30:53'), - (7299,'2005-07-27 12:49:56',3002,286,'2005-08-03 12:25:56',1,'2006-02-15 21:30:53'), - (7300,'2005-07-27 12:50:17',4561,272,'2005-08-04 18:43:17',1,'2006-02-15 21:30:53'), - (7301,'2005-07-27 12:50:23',3367,93,'2005-08-01 09:43:23',2,'2006-02-15 21:30:53'), - (7302,'2005-07-27 12:52:13',4539,477,'2005-07-29 15:13:13',2,'2006-02-15 21:30:53'), - (7303,'2005-07-27 12:54:39',1398,163,'2005-07-31 09:26:39',2,'2006-02-15 21:30:53'), - (7304,'2005-07-27 12:56:56',1162,74,'2005-08-05 09:19:56',2,'2006-02-15 21:30:53'), - (7305,'2005-07-27 12:57:06',2464,229,'2005-07-30 13:13:06',2,'2006-02-15 21:30:53'), - (7306,'2005-07-27 12:57:26',2269,207,'2005-08-03 09:35:26',2,'2006-02-15 21:30:53'), - (7307,'2005-07-27 12:59:10',3882,595,'2005-07-29 11:35:10',1,'2006-02-15 21:30:53'), - (7308,'2005-07-27 13:00:25',1452,229,'2005-08-03 16:04:25',1,'2006-02-15 21:30:53'), - (7309,'2005-07-27 13:00:29',633,317,'2005-07-29 12:15:29',2,'2006-02-15 21:30:53'), - (7310,'2005-07-27 13:00:55',3711,103,'2005-07-28 17:54:55',1,'2006-02-15 21:30:53'), - (7311,'2005-07-27 13:02:54',2807,582,'2005-08-04 09:52:54',1,'2006-02-15 21:30:53'), - (7312,'2005-07-27 13:03:14',228,543,'2005-07-31 07:56:14',2,'2006-02-15 21:30:53'), - (7313,'2005-07-27 13:11:57',1884,396,'2005-08-02 07:31:57',1,'2006-02-15 21:30:53'), - (7314,'2005-07-27 13:13:32',1376,11,'2005-08-03 09:24:32',2,'2006-02-15 21:30:53'), - (7315,'2005-07-27 13:14:56',974,208,'2005-08-03 08:44:56',2,'2006-02-15 21:30:53'), - (7316,'2005-07-27 13:19:03',3344,114,'2005-07-28 07:43:03',2,'2006-02-15 21:30:53'), - (7317,'2005-07-27 13:19:41',1518,443,'2005-07-29 16:16:41',2,'2006-02-15 21:30:53'), - (7318,'2005-07-27 13:25:31',1954,301,'2005-07-31 11:44:31',2,'2006-02-15 21:30:53'), - (7319,'2005-07-27 13:31:25',2370,576,'2005-08-04 07:31:25',1,'2006-02-15 21:30:53'), - (7320,'2005-07-27 13:33:35',4348,241,'2005-07-31 13:22:35',2,'2006-02-15 21:30:53'), - (7321,'2005-07-27 13:33:38',3525,38,'2005-08-03 07:35:38',2,'2006-02-15 21:30:53'), - (7322,'2005-07-27 13:37:26',1810,508,'2005-08-03 18:00:26',2,'2006-02-15 21:30:53'), - (7323,'2005-07-27 13:39:40',3830,125,'2005-07-29 08:45:40',2,'2006-02-15 21:30:53'), - (7324,'2005-07-27 13:42:39',2572,462,'2005-08-04 10:33:39',2,'2006-02-15 21:30:53'), - (7325,'2005-07-27 13:46:55',1727,289,'2005-07-28 14:21:55',1,'2006-02-15 21:30:53'), - (7326,'2005-07-27 13:50:40',2844,432,'2005-07-30 08:16:40',1,'2006-02-15 21:30:53'), - (7327,'2005-07-27 13:53:26',4074,508,'2005-08-04 17:58:26',2,'2006-02-15 21:30:53'), - (7328,'2005-07-27 13:55:18',663,26,'2005-08-01 19:52:18',1,'2006-02-15 21:30:53'), - (7329,'2005-07-27 13:55:34',906,226,'2005-08-04 15:15:34',1,'2006-02-15 21:30:53'), - (7330,'2005-07-27 13:56:46',3705,237,'2005-08-04 07:56:46',1,'2006-02-15 21:30:53'), - (7331,'2005-07-27 13:57:50',2090,60,'2005-07-31 08:59:50',1,'2006-02-15 21:30:53'), - (7332,'2005-07-27 13:58:57',1761,151,'2005-08-02 12:40:57',1,'2006-02-15 21:30:53'), - (7333,'2005-07-27 13:59:11',1331,230,'2005-07-30 16:04:11',1,'2006-02-15 21:30:53'), - (7334,'2005-07-27 13:59:58',3006,461,'2005-07-29 11:33:58',1,'2006-02-15 21:30:53'), - (7335,'2005-07-27 14:06:50',1219,219,'2005-08-05 18:27:50',2,'2006-02-15 21:30:53'), - (7336,'2005-07-27 14:11:45',2706,46,'2005-07-28 11:00:45',2,'2006-02-15 21:30:53'), - (7337,'2005-07-27 14:12:04',3314,525,'2005-08-03 14:57:04',2,'2006-02-15 21:30:53'), - (7338,'2005-07-27 14:13:34',107,251,'2005-08-03 18:36:34',2,'2006-02-15 21:30:53'), - (7339,'2005-07-27 14:17:48',3343,316,'2005-07-31 12:47:48',2,'2006-02-15 21:30:53'), - (7340,'2005-07-27 14:18:10',1344,567,'2005-07-30 09:57:10',1,'2006-02-15 21:30:53'), - (7341,'2005-07-27 14:23:55',3567,498,'2005-07-28 14:11:55',2,'2006-02-15 21:30:53'), - (7342,'2005-07-27 14:25:17',4083,504,'2005-08-04 10:02:17',2,'2006-02-15 21:30:53'), - (7343,'2005-07-27 14:27:13',1177,526,'2005-07-30 09:27:13',2,'2006-02-15 21:30:53'), - (7344,'2005-07-27 14:29:28',1714,366,'2005-07-31 15:36:28',1,'2006-02-15 21:30:53'), - (7345,'2005-07-27 14:29:53',2434,572,'2005-08-03 18:38:53',2,'2006-02-15 21:30:53'), - (7346,'2005-07-27 14:30:42',741,2,'2005-08-02 16:48:42',1,'2006-02-15 21:30:53'), - (7347,'2005-07-27 14:31:24',3779,225,'2005-07-31 16:19:24',1,'2006-02-15 21:30:53'), - (7348,'2005-07-27 14:32:32',3238,43,'2005-07-28 17:05:32',1,'2006-02-15 21:30:53'), - (7349,'2005-07-27 14:33:00',861,195,'2005-08-01 15:01:00',2,'2006-02-15 21:30:53'), - (7350,'2005-07-27 14:34:14',737,410,'2005-08-02 19:19:14',2,'2006-02-15 21:30:53'), - (7351,'2005-07-27 14:37:36',2147,445,'2005-07-30 09:58:36',2,'2006-02-15 21:30:53'), - (7352,'2005-07-27 14:38:29',35,429,'2005-07-28 14:24:29',1,'2006-02-15 21:30:53'), - (7353,'2005-07-27 14:38:39',1308,357,'2005-07-31 19:50:39',1,'2006-02-15 21:30:53'), - (7354,'2005-07-27 14:42:11',2395,598,'2005-08-03 18:19:11',2,'2006-02-15 21:30:53'), - (7355,'2005-07-27 14:45:59',3803,115,'2005-08-02 17:23:59',2,'2006-02-15 21:30:53'), - (7356,'2005-07-27 14:47:35',309,397,'2005-07-28 18:10:35',2,'2006-02-15 21:30:53'), - (7357,'2005-07-27 14:48:31',1917,438,'2005-08-02 18:07:31',2,'2006-02-15 21:30:53'), - (7358,'2005-07-27 14:49:44',175,245,'2005-07-28 20:00:44',1,'2006-02-15 21:30:53'), - (7359,'2005-07-27 14:51:04',174,183,'2005-07-31 16:03:04',2,'2006-02-15 21:30:53'), - (7360,'2005-07-27 14:52:06',1312,467,'2005-08-02 12:24:06',2,'2006-02-15 21:30:53'), - (7361,'2005-07-27 14:53:55',4567,463,'2005-07-31 19:48:55',2,'2006-02-15 21:30:53'), - (7362,'2005-07-27 14:58:27',1902,419,'2005-08-01 11:51:27',1,'2006-02-15 21:30:53'), - (7363,'2005-07-27 14:58:29',1649,407,'2005-08-05 09:02:29',1,'2006-02-15 21:30:53'), - (7364,'2005-07-27 14:58:40',3046,592,'2005-08-03 09:01:40',2,'2006-02-15 21:30:53'), - (7365,'2005-07-27 15:00:20',3283,450,'2005-07-30 12:58:20',1,'2006-02-15 21:30:53'), - (7366,'2005-07-27 15:01:17',461,357,'2005-08-04 20:28:17',1,'2006-02-15 21:30:53'), - (7367,'2005-07-27 15:05:45',1738,383,'2005-08-02 13:46:45',1,'2006-02-15 21:30:53'), - (7368,'2005-07-27 15:06:05',2265,286,'2005-07-31 14:10:05',2,'2006-02-15 21:30:53'), - (7369,'2005-07-27 15:07:58',3889,139,'2005-07-30 09:16:58',2,'2006-02-15 21:30:53'), - (7370,'2005-07-27 15:15:53',2022,89,'2005-08-03 19:53:53',2,'2006-02-15 21:30:53'), - (7371,'2005-07-27 15:18:42',1807,577,'2005-08-01 09:58:42',1,'2006-02-15 21:30:53'), - (7372,'2005-07-27 15:18:42',3202,584,'2005-08-01 15:18:42',2,'2006-02-15 21:30:53'), - (7373,'2005-07-27 15:19:33',3074,488,'2005-08-04 10:45:33',1,'2006-02-15 21:30:53'), - (7374,'2005-07-27 15:20:57',3184,438,'2005-08-05 13:09:57',2,'2006-02-15 21:30:53'), - (7375,'2005-07-27 15:22:33',2970,381,'2005-08-01 20:06:33',1,'2006-02-15 21:30:53'), - (7376,'2005-07-27 15:23:02',488,2,'2005-08-04 10:35:02',2,'2006-02-15 21:30:53'), - (7377,'2005-07-27 15:31:28',1369,588,'2005-08-02 19:59:28',2,'2006-02-15 21:30:53'), - (7378,'2005-07-27 15:31:33',3297,144,'2005-08-03 17:15:33',2,'2006-02-15 21:30:53'), - (7379,'2005-07-27 15:36:43',424,415,'2005-07-30 16:37:43',2,'2006-02-15 21:30:53'), - (7380,'2005-07-27 15:37:01',988,348,'2005-08-03 19:24:01',1,'2006-02-15 21:30:53'), - (7381,'2005-07-27 15:40:26',1595,483,'2005-08-02 17:26:26',2,'2006-02-15 21:30:53'), - (7382,'2005-07-27 15:43:15',356,518,'2005-07-28 11:18:15',2,'2006-02-15 21:30:53'), - (7383,'2005-07-27 15:46:53',3860,50,'2005-08-03 11:10:53',1,'2006-02-15 21:30:53'), - (7384,'2005-07-27 15:49:45',3573,585,'2005-08-04 15:17:45',1,'2006-02-15 21:30:53'), - (7385,'2005-07-27 15:49:46',2996,56,'2005-07-28 13:50:46',2,'2006-02-15 21:30:53'), - (7386,'2005-07-27 15:52:10',3569,190,'2005-08-04 15:13:10',1,'2006-02-15 21:30:53'), - (7387,'2005-07-27 15:54:19',3274,233,'2005-08-03 14:46:19',1,'2006-02-15 21:30:53'), - (7388,'2005-07-27 15:54:19',4559,455,'2005-08-01 17:02:19',2,'2006-02-15 21:30:53'), - (7389,'2005-07-27 15:56:15',3822,156,'2005-07-30 21:28:15',2,'2006-02-15 21:30:53'), - (7390,'2005-07-27 15:59:19',1723,230,'2005-08-04 10:09:19',2,'2006-02-15 21:30:53'), - (7391,'2005-07-27 16:00:00',1153,531,'2005-08-04 18:07:00',2,'2006-02-15 21:30:53'), - (7392,'2005-07-27 16:01:05',3159,204,'2005-08-01 17:23:05',2,'2006-02-15 21:30:53'), - (7393,'2005-07-27 16:02:52',2369,181,'2005-08-02 13:24:52',1,'2006-02-15 21:30:53'), - (7394,'2005-07-27 16:03:08',2399,30,'2005-08-04 11:27:08',2,'2006-02-15 21:30:53'), - (7395,'2005-07-27 16:03:11',2888,411,'2005-07-31 20:26:11',2,'2006-02-15 21:30:53'), - (7396,'2005-07-27 16:03:53',3346,595,'2005-08-05 10:36:53',2,'2006-02-15 21:30:53'), - (7397,'2005-07-27 16:05:00',4474,245,'2005-08-01 20:29:00',1,'2006-02-15 21:30:53'), - (7398,'2005-07-27 16:07:22',1572,51,'2005-08-05 16:16:22',1,'2006-02-15 21:30:53'), - (7399,'2005-07-27 16:16:02',1682,526,'2005-08-03 18:02:02',2,'2006-02-15 21:30:53'), - (7400,'2005-07-27 16:16:37',2874,133,'2005-07-31 12:34:37',2,'2006-02-15 21:30:53'), - (7401,'2005-07-27 16:17:55',2759,583,'2005-08-04 15:48:55',1,'2006-02-15 21:30:53'), - (7402,'2005-07-27 16:19:40',2707,287,'2005-08-05 14:48:40',2,'2006-02-15 21:30:53'), - (7403,'2005-07-27 16:22:09',2551,163,'2005-08-01 15:32:09',1,'2006-02-15 21:30:53'), - (7404,'2005-07-27 16:24:43',2359,190,'2005-07-29 11:40:43',2,'2006-02-15 21:30:53'), - (7405,'2005-07-27 16:25:11',2312,42,'2005-08-01 12:33:11',2,'2006-02-15 21:30:53'), - (7406,'2005-07-27 16:25:45',1412,77,'2005-08-05 20:39:45',1,'2006-02-15 21:30:53'), - (7407,'2005-07-27 16:29:04',3093,410,'2005-08-01 17:47:04',2,'2006-02-15 21:30:53'), - (7408,'2005-07-27 16:31:40',625,371,'2005-07-31 11:56:40',2,'2006-02-15 21:30:53'), - (7409,'2005-07-27 16:38:24',2352,585,'2005-07-30 18:06:24',1,'2006-02-15 21:30:53'), - (7410,'2005-07-27 16:41:59',1559,337,'2005-07-29 22:11:59',1,'2006-02-15 21:30:53'), - (7411,'2005-07-27 16:42:30',515,302,'2005-08-05 17:38:30',1,'2006-02-15 21:30:53'), - (7412,'2005-07-27 16:44:34',950,582,'2005-08-04 15:06:34',2,'2006-02-15 21:30:53'), - (7413,'2005-07-27 16:45:40',2909,254,'2005-07-31 12:02:40',1,'2006-02-15 21:30:53'), - (7414,'2005-07-27 16:46:07',3276,265,'2005-08-02 20:04:07',1,'2006-02-15 21:30:53'), - (7415,'2005-07-27 16:50:59',4410,294,'2005-08-02 11:21:59',1,'2006-02-15 21:30:53'), - (7416,'2005-07-27 16:55:25',653,350,'2005-07-29 11:27:25',1,'2006-02-15 21:30:53'), - (7417,'2005-07-27 16:58:33',2952,214,'2005-07-30 22:17:33',1,'2006-02-15 21:30:53'), - (7418,'2005-07-27 16:59:09',3029,332,'2005-07-29 15:08:09',2,'2006-02-15 21:30:53'), - (7419,'2005-07-27 17:04:15',3454,352,'2005-08-05 21:54:15',2,'2006-02-15 21:30:53'), - (7420,'2005-07-27 17:09:39',3505,547,'2005-07-30 12:30:39',2,'2006-02-15 21:30:53'), - (7421,'2005-07-27 17:10:05',3548,70,'2005-08-05 17:55:05',1,'2006-02-15 21:30:53'), - (7422,'2005-07-27 17:10:42',3954,286,'2005-08-03 19:32:42',1,'2006-02-15 21:30:53'), - (7423,'2005-07-27 17:11:47',666,277,'2005-07-29 12:29:47',2,'2006-02-15 21:30:53'), - (7424,'2005-07-27 17:14:19',660,558,'2005-08-01 19:21:19',2,'2006-02-15 21:30:53'), - (7425,'2005-07-27 17:18:35',435,263,'2005-08-02 11:18:35',1,'2006-02-15 21:30:53'), - (7426,'2005-07-27 17:19:46',4420,239,'2005-07-29 21:41:46',1,'2006-02-15 21:30:53'), - (7427,'2005-07-27 17:20:16',2548,442,'2005-08-03 20:38:16',2,'2006-02-15 21:30:53'), - (7428,'2005-07-27 17:21:52',243,90,'2005-08-05 17:13:52',2,'2006-02-15 21:30:53'), - (7429,'2005-07-27 17:24:50',2160,515,'2005-08-05 23:02:50',1,'2006-02-15 21:30:53'), - (7430,'2005-07-27 17:26:14',4205,562,'2005-08-01 13:02:14',2,'2006-02-15 21:30:53'), - (7431,'2005-07-27 17:27:27',3931,589,'2005-07-31 18:40:27',1,'2006-02-15 21:30:53'), - (7432,'2005-07-27 17:31:40',3169,132,'2005-07-28 17:44:40',2,'2006-02-15 21:30:53'), - (7433,'2005-07-27 17:32:20',1748,282,'2005-08-01 18:49:20',1,'2006-02-15 21:30:53'), - (7434,'2005-07-27 17:34:40',2927,241,'2005-07-29 15:01:40',1,'2006-02-15 21:30:53'), - (7435,'2005-07-27 17:38:44',1574,380,'2005-07-30 16:57:44',1,'2006-02-15 21:30:53'), - (7436,'2005-07-27 17:39:12',299,45,'2005-08-01 12:40:12',2,'2006-02-15 21:30:53'), - (7437,'2005-07-27 17:39:18',2617,135,'2005-07-28 18:33:18',2,'2006-02-15 21:30:53'), - (7438,'2005-07-27 17:40:40',1364,52,'2005-08-05 15:25:40',1,'2006-02-15 21:30:53'), - (7439,'2005-07-27 17:42:31',4091,102,'2005-08-05 16:34:31',1,'2006-02-15 21:30:53'), - (7440,'2005-07-27 17:43:27',1476,484,'2005-08-03 22:12:27',1,'2006-02-15 21:30:53'), - (7441,'2005-07-27 17:46:53',4039,198,'2005-07-31 23:05:53',1,'2006-02-15 21:30:53'), - (7442,'2005-07-27 17:47:00',2471,105,'2005-07-28 21:37:00',1,'2006-02-15 21:30:53'), - (7443,'2005-07-27 17:47:43',703,380,'2005-07-29 13:15:43',1,'2006-02-15 21:30:53'), - (7444,'2005-07-27 17:49:16',120,531,'2005-07-28 15:05:16',1,'2006-02-15 21:30:53'), - (7445,'2005-07-27 17:57:15',4115,394,'2005-07-31 20:24:15',1,'2006-02-15 21:30:53'), - (7446,'2005-07-27 18:00:24',2337,486,'2005-07-29 13:40:24',1,'2006-02-15 21:30:53'), - (7447,'2005-07-27 18:02:08',1795,107,'2005-07-29 21:15:08',1,'2006-02-15 21:30:53'), - (7448,'2005-07-27 18:06:30',3584,175,'2005-07-29 15:43:30',1,'2006-02-15 21:30:53'), - (7449,'2005-07-27 18:17:41',2084,421,'2005-08-01 18:52:41',1,'2006-02-15 21:30:53'), - (7450,'2005-07-27 18:18:35',3496,191,'2005-08-04 15:18:35',1,'2006-02-15 21:30:53'), - (7451,'2005-07-27 18:18:41',2382,29,'2005-08-03 13:55:41',2,'2006-02-15 21:30:53'), - (7452,'2005-07-27 18:26:39',3482,285,'2005-08-04 17:35:39',2,'2006-02-15 21:30:53'), - (7453,'2005-07-27 18:27:13',2992,29,'2005-07-29 23:52:13',1,'2006-02-15 21:30:53'), - (7454,'2005-07-27 18:27:26',3248,75,'2005-07-30 23:50:26',1,'2006-02-15 21:30:53'), - (7455,'2005-07-27 18:34:41',3815,405,'2005-07-31 17:32:41',1,'2006-02-15 21:30:53'), - (7456,'2005-07-27 18:34:53',1959,501,'2005-07-29 17:46:53',2,'2006-02-15 21:30:53'), - (7457,'2005-07-27 18:35:17',3635,510,'2005-07-30 12:41:17',2,'2006-02-15 21:30:53'), - (7458,'2005-07-27 18:36:17',2964,327,'2005-07-31 22:43:17',1,'2006-02-15 21:30:53'), - (7459,'2005-07-27 18:40:20',2053,2,'2005-08-02 21:07:20',2,'2006-02-15 21:30:53'), - (7460,'2005-07-27 18:41:35',919,442,'2005-07-29 15:16:35',2,'2006-02-15 21:30:53'), - (7461,'2005-07-27 18:45:15',1236,476,'2005-07-29 17:19:15',1,'2006-02-15 21:30:53'), - (7462,'2005-07-27 18:47:47',878,114,'2005-07-29 20:46:47',2,'2006-02-15 21:30:53'), - (7463,'2005-07-27 18:48:32',3676,284,'2005-07-29 23:54:32',2,'2006-02-15 21:30:53'), - (7464,'2005-07-27 18:49:42',845,31,'2005-07-28 20:45:42',2,'2006-02-15 21:30:53'), - (7465,'2005-07-27 18:50:30',2357,115,'2005-07-30 20:55:30',1,'2006-02-15 21:30:53'), - (7466,'2005-07-27 18:51:17',2791,53,'2005-07-31 16:58:17',1,'2006-02-15 21:30:53'), - (7467,'2005-07-27 18:51:54',3869,240,'2005-08-03 23:27:54',2,'2006-02-15 21:30:53'), - (7468,'2005-07-27 18:52:27',3166,113,'2005-08-03 19:29:27',2,'2006-02-15 21:30:53'), - (7469,'2005-07-27 18:57:40',3723,189,'2005-07-31 00:17:40',1,'2006-02-15 21:30:53'), - (7470,'2005-07-27 19:01:03',289,564,'2005-08-05 19:16:03',2,'2006-02-15 21:30:53'), - (7471,'2005-07-27 19:02:19',1776,95,'2005-07-30 15:12:19',1,'2006-02-15 21:30:53'), - (7472,'2005-07-27 19:04:19',1535,103,'2005-08-03 00:08:19',2,'2006-02-15 21:30:53'), - (7473,'2005-07-27 19:05:40',401,341,'2005-08-05 14:47:40',1,'2006-02-15 21:30:53'), - (7474,'2005-07-27 19:07:17',2971,110,'2005-07-30 00:37:17',1,'2006-02-15 21:30:53'), - (7475,'2005-07-27 19:07:43',1670,255,'2005-08-04 22:12:43',2,'2006-02-15 21:30:53'), - (7476,'2005-07-27 19:08:56',2288,64,'2005-07-31 16:36:56',2,'2006-02-15 21:30:53'), - (7477,'2005-07-27 19:11:03',2692,355,'2005-08-02 19:25:03',1,'2006-02-15 21:30:53'), - (7478,'2005-07-27 19:16:02',3791,521,'2005-08-04 22:30:02',2,'2006-02-15 21:30:53'), - (7479,'2005-07-27 19:18:17',218,434,'2005-07-30 18:55:17',1,'2006-02-15 21:30:53'), - (7480,'2005-07-27 19:19:53',452,344,'2005-08-02 01:01:53',1,'2006-02-15 21:30:53'), - (7481,'2005-07-27 19:20:25',1804,240,'2005-07-29 19:07:25',2,'2006-02-15 21:30:53'), - (7482,'2005-07-27 19:24:16',485,348,'2005-08-05 18:49:16',2,'2006-02-15 21:30:53'), - (7483,'2005-07-27 19:25:00',3678,106,'2005-07-29 21:19:00',2,'2006-02-15 21:30:53'), - (7484,'2005-07-27 19:28:17',2746,211,'2005-07-31 20:05:17',2,'2006-02-15 21:30:53'), - (7485,'2005-07-27 19:29:09',631,362,'2005-07-30 16:28:09',1,'2006-02-15 21:30:53'), - (7486,'2005-07-27 19:29:24',4362,393,'2005-08-02 20:46:24',2,'2006-02-15 21:30:53'), - (7487,'2005-07-27 19:32:45',4451,58,'2005-07-28 15:11:45',1,'2006-02-15 21:30:53'), - (7488,'2005-07-27 19:36:15',554,365,'2005-08-05 14:14:15',1,'2006-02-15 21:30:53'), - (7489,'2005-07-27 19:39:38',3732,16,'2005-07-30 23:10:38',2,'2006-02-15 21:30:53'), - (7490,'2005-07-27 19:48:12',4503,595,'2005-08-04 17:15:12',1,'2006-02-15 21:30:53'), - (7491,'2005-07-27 19:53:23',4261,239,'2005-07-28 23:25:23',2,'2006-02-15 21:30:53'), - (7492,'2005-07-27 19:54:18',908,155,'2005-07-31 15:36:18',2,'2006-02-15 21:30:53'), - (7493,'2005-07-27 19:55:46',2868,177,'2005-08-02 19:46:46',2,'2006-02-15 21:30:53'), - (7494,'2005-07-27 19:56:31',2259,60,'2005-07-30 14:28:31',1,'2006-02-15 21:30:53'), - (7495,'2005-07-27 20:01:20',3446,426,'2005-07-30 16:40:20',1,'2006-02-15 21:30:53'), - (7496,'2005-07-27 20:04:05',2449,257,'2005-08-02 20:12:05',1,'2006-02-15 21:30:53'), - (7497,'2005-07-27 20:05:27',286,387,'2005-07-30 22:47:27',1,'2006-02-15 21:30:53'), - (7498,'2005-07-27 20:09:31',1144,455,'2005-07-29 23:38:31',1,'2006-02-15 21:30:53'), - (7499,'2005-07-27 20:10:28',3503,157,'2005-07-30 16:24:28',1,'2006-02-15 21:30:53'), - (7500,'2005-07-27 20:16:03',609,160,'2005-07-29 18:50:03',1,'2006-02-15 21:30:53'), - (7501,'2005-07-27 20:16:59',1464,587,'2005-08-04 00:11:59',2,'2006-02-15 21:30:53'), - (7502,'2005-07-27 20:19:08',3229,303,'2005-07-28 18:32:08',2,'2006-02-15 21:30:53'), - (7503,'2005-07-27 20:23:12',579,3,'2005-08-05 18:46:12',2,'2006-02-15 21:30:53'), - (7504,'2005-07-27 20:24:31',3354,283,'2005-07-30 21:25:31',2,'2006-02-15 21:30:53'), - (7505,'2005-07-27 20:28:03',1342,209,'2005-08-03 17:04:03',1,'2006-02-15 21:30:53'), - (7506,'2005-07-27 20:28:34',2091,527,'2005-08-05 18:14:34',1,'2006-02-15 21:30:53'), - (7507,'2005-07-27 20:31:48',3618,512,'2005-08-02 17:27:48',1,'2006-02-15 21:30:53'), - (7508,'2005-07-27 20:33:08',3401,465,'2005-08-01 01:29:08',1,'2006-02-15 21:30:53'), - (7509,'2005-07-27 20:37:19',4134,228,'2005-08-04 19:35:19',2,'2006-02-15 21:30:53'), - (7510,'2005-07-27 20:37:57',1617,257,'2005-08-01 17:14:57',2,'2006-02-15 21:30:53'), - (7511,'2005-07-27 20:38:40',4044,591,'2005-08-04 22:36:40',2,'2006-02-15 21:30:53'), - (7512,'2005-07-27 20:40:40',1343,352,'2005-08-05 01:44:40',1,'2006-02-15 21:30:53'), - (7513,'2005-07-27 20:51:04',939,411,'2005-08-03 20:15:04',2,'2006-02-15 21:30:53'), - (7514,'2005-07-27 20:51:49',400,44,'2005-07-29 18:21:49',2,'2006-02-15 21:30:53'), - (7515,'2005-07-27 20:52:37',1211,390,'2005-08-02 20:17:37',2,'2006-02-15 21:30:53'), - (7516,'2005-07-27 20:55:28',2178,134,'2005-07-30 00:50:28',1,'2006-02-15 21:30:53'), - (7517,'2005-07-27 20:57:07',3177,41,'2005-08-04 15:08:07',1,'2006-02-15 21:30:53'), - (7518,'2005-07-27 21:01:16',2676,257,'2005-08-03 15:26:16',1,'2006-02-15 21:30:53'), - (7519,'2005-07-27 21:01:41',4009,124,'2005-08-05 19:15:41',1,'2006-02-15 21:30:53'), - (7520,'2005-07-27 21:02:02',3875,191,'2005-07-28 18:18:02',1,'2006-02-15 21:30:53'), - (7521,'2005-07-27 21:04:42',3144,176,'2005-08-03 16:06:42',1,'2006-02-15 21:30:53'), - (7522,'2005-07-27 21:11:03',2038,478,'2005-08-02 16:40:03',1,'2006-02-15 21:30:53'), - (7523,'2005-07-27 21:11:23',4153,410,'2005-07-28 16:37:23',1,'2006-02-15 21:30:53'), - (7524,'2005-07-27 21:11:44',4295,225,'2005-08-03 02:17:44',1,'2006-02-15 21:30:53'), - (7525,'2005-07-27 21:13:28',4084,281,'2005-08-04 19:44:28',2,'2006-02-15 21:30:53'), - (7526,'2005-07-27 21:13:47',696,44,'2005-08-05 15:23:47',2,'2006-02-15 21:30:53'), - (7527,'2005-07-27 21:14:28',2124,426,'2005-08-05 21:08:28',1,'2006-02-15 21:30:53'), - (7528,'2005-07-27 21:15:25',1218,213,'2005-08-03 19:12:25',1,'2006-02-15 21:30:53'), - (7529,'2005-07-27 21:18:08',3644,145,'2005-08-06 00:59:08',1,'2006-02-15 21:30:53'), - (7530,'2005-07-27 21:18:58',3810,98,'2005-07-31 01:51:58',2,'2006-02-15 21:30:53'), - (7531,'2005-07-27 21:19:34',2393,221,'2005-08-06 01:07:34',2,'2006-02-15 21:30:53'), - (7532,'2005-07-27 21:20:52',677,34,'2005-07-30 21:38:52',1,'2006-02-15 21:30:53'), - (7533,'2005-07-27 21:24:33',1791,594,'2005-08-05 16:33:33',2,'2006-02-15 21:30:53'), - (7534,'2005-07-27 21:26:17',2276,282,'2005-08-05 00:23:17',2,'2006-02-15 21:30:53'), - (7535,'2005-07-27 21:32:39',772,123,'2005-08-05 23:42:39',1,'2006-02-15 21:30:53'), - (7536,'2005-07-27 21:34:09',3417,307,'2005-08-02 03:26:09',1,'2006-02-15 21:30:53'), - (7537,'2005-07-27 21:36:09',4456,269,'2005-08-01 01:51:09',1,'2006-02-15 21:30:53'), - (7538,'2005-07-27 21:38:04',2486,361,'2005-08-02 03:14:04',1,'2006-02-15 21:30:53'), - (7539,'2005-07-27 21:39:42',1849,423,'2005-08-06 00:12:42',1,'2006-02-15 21:30:53'), - (7540,'2005-07-27 21:39:55',2198,207,'2005-08-04 18:10:55',2,'2006-02-15 21:30:53'), - (7541,'2005-07-27 21:40:05',4100,206,'2005-07-29 16:13:05',1,'2006-02-15 21:30:53'), - (7542,'2005-07-27 21:43:04',1912,110,'2005-07-30 00:02:04',1,'2006-02-15 21:30:53'), - (7543,'2005-07-27 21:44:28',1289,526,'2005-08-04 21:42:28',2,'2006-02-15 21:30:53'), - (7544,'2005-07-27 21:47:37',766,249,'2005-08-05 02:29:37',2,'2006-02-15 21:30:53'), - (7545,'2005-07-27 21:48:03',2541,292,'2005-08-01 22:23:03',2,'2006-02-15 21:30:53'), - (7546,'2005-07-27 21:50:09',3683,494,'2005-08-05 03:07:09',2,'2006-02-15 21:30:53'), - (7547,'2005-07-27 21:51:48',1733,547,'2005-08-06 01:05:48',2,'2006-02-15 21:30:53'), - (7548,'2005-07-27 21:53:18',2194,484,'2005-08-02 17:50:18',1,'2006-02-15 21:30:53'), - (7549,'2005-07-27 21:53:21',1765,591,'2005-08-05 18:53:21',1,'2006-02-15 21:30:53'), - (7550,'2005-07-27 21:55:07',4488,71,'2005-07-28 23:34:07',2,'2006-02-15 21:30:53'), - (7551,'2005-07-27 21:59:15',2635,304,'2005-07-31 19:54:15',2,'2006-02-15 21:30:53'), - (7552,'2005-07-27 22:03:41',2166,16,'2005-07-28 22:24:41',1,'2006-02-15 21:30:53'), - (7553,'2005-07-27 22:11:36',1643,275,'2005-08-03 17:52:36',1,'2006-02-15 21:30:53'), - (7554,'2005-07-27 22:12:41',1805,135,'2005-08-04 01:34:41',2,'2006-02-15 21:30:53'), - (7555,'2005-07-27 22:17:05',3421,533,'2005-08-02 02:50:05',2,'2006-02-15 21:30:53'), - (7556,'2005-07-27 22:17:17',794,188,'2005-07-28 19:17:17',2,'2006-02-15 21:30:53'), - (7557,'2005-07-27 22:18:19',3152,131,'2005-07-29 00:24:19',1,'2006-02-15 21:30:53'), - (7558,'2005-07-27 22:19:08',550,80,'2005-07-30 21:31:08',1,'2006-02-15 21:30:53'), - (7559,'2005-07-27 22:20:03',661,149,'2005-08-06 00:26:03',2,'2006-02-15 21:30:53'), - (7560,'2005-07-27 22:20:17',3574,562,'2005-08-02 23:00:17',2,'2006-02-15 21:30:53'), - (7561,'2005-07-27 22:21:05',3433,291,'2005-08-04 01:02:05',1,'2006-02-15 21:30:53'), - (7562,'2005-07-27 22:25:15',4417,366,'2005-08-01 01:21:15',2,'2006-02-15 21:30:53'), - (7563,'2005-07-27 22:25:36',2709,453,'2005-08-01 03:59:36',2,'2006-02-15 21:30:53'), - (7564,'2005-07-27 22:31:17',2887,291,'2005-08-01 01:05:17',2,'2006-02-15 21:30:53'), - (7565,'2005-07-27 22:33:59',1028,114,'2005-07-30 03:03:59',2,'2006-02-15 21:30:53'), - (7566,'2005-07-27 22:34:45',1802,144,'2005-08-01 22:20:45',1,'2006-02-15 21:30:53'), - (7567,'2005-07-27 22:38:05',1066,504,'2005-07-30 17:20:05',1,'2006-02-15 21:30:53'), - (7568,'2005-07-27 22:38:53',1578,296,'2005-07-29 00:51:53',1,'2006-02-15 21:30:53'), - (7569,'2005-07-27 22:38:53',2315,528,'2005-08-05 19:03:53',2,'2006-02-15 21:30:53'), - (7570,'2005-07-27 22:40:06',3189,110,'2005-07-28 23:14:06',1,'2006-02-15 21:30:53'), - (7571,'2005-07-27 22:43:42',3850,368,'2005-07-30 22:17:42',1,'2006-02-15 21:30:53'), - (7572,'2005-07-27 22:44:29',3068,532,'2005-08-01 03:04:29',1,'2006-02-15 21:30:53'), - (7573,'2005-07-27 22:46:20',314,467,'2005-08-04 01:55:20',1,'2006-02-15 21:30:53'), - (7574,'2005-07-27 22:53:00',298,200,'2005-07-29 18:39:00',2,'2006-02-15 21:30:53'), - (7575,'2005-07-27 22:53:52',702,582,'2005-07-29 02:02:52',1,'2006-02-15 21:30:53'), - (7576,'2005-07-27 22:54:35',3374,446,'2005-08-03 03:53:35',2,'2006-02-15 21:30:53'), - (7577,'2005-07-27 22:56:07',2723,332,'2005-08-05 21:23:07',2,'2006-02-15 21:30:53'), - (7578,'2005-07-27 22:58:17',4210,332,'2005-07-29 23:14:17',1,'2006-02-15 21:30:53'), - (7579,'2005-07-27 23:06:41',501,352,'2005-07-31 20:08:41',2,'2006-02-15 21:30:53'), - (7580,'2005-07-27 23:07:40',338,28,'2005-08-05 02:17:40',1,'2006-02-15 21:30:53'), - (7581,'2005-07-27 23:14:35',2051,166,'2005-07-29 21:30:35',1,'2006-02-15 21:30:53'), - (7582,'2005-07-27 23:15:14',3941,128,'2005-07-29 03:18:14',2,'2006-02-15 21:30:53'), - (7583,'2005-07-27 23:15:22',2890,198,'2005-08-04 04:39:22',2,'2006-02-15 21:30:53'), - (7584,'2005-07-27 23:15:46',4390,338,'2005-08-03 02:18:46',2,'2006-02-15 21:30:53'), - (7585,'2005-07-27 23:18:22',467,440,'2005-07-30 23:08:22',1,'2006-02-15 21:30:53'), - (7586,'2005-07-27 23:19:29',15,316,'2005-07-29 23:04:29',1,'2006-02-15 21:30:53'), - (7587,'2005-07-27 23:23:03',655,113,'2005-08-01 17:34:03',1,'2006-02-15 21:30:53'), - (7588,'2005-07-27 23:23:31',4033,360,'2005-08-04 02:54:31',1,'2006-02-15 21:30:53'), - (7589,'2005-07-27 23:23:36',1569,32,'2005-08-04 00:16:36',1,'2006-02-15 21:30:53'), - (7590,'2005-07-27 23:24:24',2152,73,'2005-07-28 19:53:24',2,'2006-02-15 21:30:53'), - (7591,'2005-07-27 23:25:54',651,525,'2005-08-02 22:54:54',1,'2006-02-15 21:30:53'), - (7592,'2005-07-27 23:26:04',4105,316,'2005-07-29 23:48:04',2,'2006-02-15 21:30:53'), - (7593,'2005-07-27 23:28:47',1158,436,'2005-08-02 19:51:47',1,'2006-02-15 21:30:53'), - (7594,'2005-07-27 23:30:41',3230,424,'2005-08-02 04:29:41',1,'2006-02-15 21:30:53'), - (7595,'2005-07-27 23:32:23',4313,390,'2005-08-03 05:28:23',1,'2006-02-15 21:30:53'), - (7596,'2005-07-27 23:33:57',2097,275,'2005-08-01 20:46:57',2,'2006-02-15 21:30:53'), - (7597,'2005-07-27 23:35:49',2856,169,'2005-07-30 21:38:49',1,'2006-02-15 21:30:53'), - (7598,'2005-07-27 23:36:01',4545,438,'2005-07-29 23:35:01',2,'2006-02-15 21:30:53'), - (7599,'2005-07-27 23:38:46',3272,87,'2005-07-28 22:52:46',1,'2006-02-15 21:30:53'), - (7600,'2005-07-27 23:41:18',3492,107,'2005-08-06 04:40:18',1,'2006-02-15 21:30:53'), - (7601,'2005-07-27 23:48:15',903,228,'2005-07-29 02:45:15',1,'2006-02-15 21:30:53'), - (7602,'2005-07-27 23:48:35',2516,366,'2005-08-04 17:58:35',1,'2006-02-15 21:30:53'), - (7603,'2005-07-27 23:54:44',124,497,'2005-07-29 01:24:44',1,'2006-02-15 21:30:53'), - (7604,'2005-07-27 23:54:52',3720,406,'2005-08-05 03:04:52',2,'2006-02-15 21:30:53'), - (7605,'2005-07-27 23:57:01',1391,576,'2005-08-03 04:11:01',1,'2006-02-15 21:30:53'), - (7606,'2005-07-28 00:02:15',637,201,'2005-07-29 03:14:15',2,'2006-02-15 21:30:53'), - (7607,'2005-07-28 00:05:53',3914,293,'2005-07-31 04:13:53',1,'2006-02-15 21:30:53'), - (7608,'2005-07-28 00:08:36',1256,167,'2005-07-28 18:13:36',1,'2006-02-15 21:30:53'), - (7609,'2005-07-28 00:11:00',3655,179,'2005-07-31 03:04:00',1,'2006-02-15 21:30:53'), - (7610,'2005-07-28 00:11:35',1279,450,'2005-07-31 00:33:35',1,'2006-02-15 21:30:53'), - (7611,'2005-07-28 00:11:47',3347,467,'2005-07-28 18:35:47',1,'2006-02-15 21:30:53'), - (7612,'2005-07-28 00:11:55',1411,563,'2005-07-30 00:47:55',1,'2006-02-15 21:30:53'), - (7613,'2005-07-28 00:13:58',4253,202,'2005-08-06 05:36:58',2,'2006-02-15 21:30:53'), - (7614,'2005-07-28 00:14:38',3475,440,'2005-07-29 18:18:38',1,'2006-02-15 21:30:53'), - (7615,'2005-07-28 00:15:24',3884,373,'2005-07-31 02:00:24',1,'2006-02-15 21:30:53'), - (7616,'2005-07-28 00:15:26',3790,9,'2005-07-30 21:52:26',1,'2006-02-15 21:30:53'), - (7617,'2005-07-28 00:18:40',2904,340,'2005-08-01 01:17:40',1,'2006-02-15 21:30:53'), - (7618,'2005-07-28 00:24:14',774,271,'2005-08-01 04:35:14',1,'2006-02-15 21:30:53'), - (7619,'2005-07-28 00:25:41',1057,419,'2005-07-30 04:35:41',2,'2006-02-15 21:30:53'), - (7620,'2005-07-28 00:27:17',931,580,'2005-07-31 02:04:17',1,'2006-02-15 21:30:53'), - (7621,'2005-07-28 00:34:06',1833,88,'2005-08-06 00:13:06',1,'2006-02-15 21:30:53'), - (7622,'2005-07-28 00:37:34',4014,198,'2005-07-31 23:27:34',2,'2006-02-15 21:30:53'), - (7623,'2005-07-28 00:37:41',1146,459,'2005-08-04 19:38:41',2,'2006-02-15 21:30:53'), - (7624,'2005-07-28 00:37:44',2756,415,'2005-07-30 21:26:44',1,'2006-02-15 21:30:53'), - (7625,'2005-07-28 00:47:56',3129,382,'2005-08-02 23:34:56',1,'2006-02-15 21:30:53'), - (7626,'2005-07-28 00:49:01',4200,450,'2005-07-31 00:43:01',1,'2006-02-15 21:30:53'), - (7627,'2005-07-28 00:56:47',782,52,'2005-08-02 04:16:47',1,'2006-02-15 21:30:53'), - (7628,'2005-07-28 00:58:04',1240,516,'2005-08-03 19:16:04',1,'2006-02-15 21:30:53'), - (7629,'2005-07-28 01:00:09',2453,229,'2005-07-30 06:49:09',1,'2006-02-15 21:30:53'), - (7630,'2005-07-28 01:01:03',2798,351,'2005-07-31 01:08:03',2,'2006-02-15 21:30:53'), - (7631,'2005-07-28 01:01:15',2437,132,'2005-08-01 06:16:15',2,'2006-02-15 21:30:53'), - (7632,'2005-07-28 01:02:40',3233,181,'2005-07-30 05:31:40',2,'2006-02-15 21:30:53'), - (7633,'2005-07-28 01:03:41',4171,402,'2005-08-01 23:54:41',2,'2006-02-15 21:30:53'), - (7634,'2005-07-28 01:07:01',4487,365,'2005-07-31 05:00:01',1,'2006-02-15 21:30:53'), - (7635,'2005-07-28 01:08:11',55,413,'2005-08-01 03:32:11',2,'2006-02-15 21:30:53'), - (7636,'2005-07-28 01:08:36',202,51,'2005-08-03 21:36:36',1,'2006-02-15 21:30:53'), - (7637,'2005-07-28 01:12:25',87,91,'2005-08-02 03:48:25',1,'2006-02-15 21:30:53'), - (7638,'2005-07-28 01:13:26',1890,172,'2005-07-28 20:34:26',1,'2006-02-15 21:30:53'), - (7639,'2005-07-28 01:14:36',767,459,'2005-07-29 00:19:36',1,'2006-02-15 21:30:53'), - (7640,'2005-07-28 01:14:49',3014,229,'2005-08-03 21:50:49',1,'2006-02-15 21:30:53'), - (7641,'2005-07-28 01:15:45',1868,475,'2005-08-04 23:50:45',1,'2006-02-15 21:30:53'), - (7642,'2005-07-28 01:16:51',3995,523,'2005-08-02 00:45:51',2,'2006-02-15 21:30:53'), - (7643,'2005-07-28 01:19:44',4369,407,'2005-08-04 21:16:44',1,'2006-02-15 21:30:53'), - (7644,'2005-07-28 01:27:33',882,173,'2005-07-31 22:58:33',2,'2006-02-15 21:30:53'), - (7645,'2005-07-28 01:27:42',830,381,'2005-08-03 07:16:42',2,'2006-02-15 21:30:53'), - (7646,'2005-07-28 01:31:45',1615,255,'2005-07-31 07:16:45',1,'2006-02-15 21:30:53'), - (7647,'2005-07-28 01:35:17',3079,36,'2005-08-01 00:14:17',1,'2006-02-15 21:30:53'), - (7648,'2005-07-28 01:35:33',797,310,'2005-08-04 06:21:33',2,'2006-02-15 21:30:53'), - (7649,'2005-07-28 01:37:26',2704,318,'2005-07-28 21:18:26',1,'2006-02-15 21:30:53'), - (7650,'2005-07-28 01:47:20',701,290,'2005-08-05 06:00:20',2,'2006-02-15 21:30:53'), - (7651,'2005-07-28 01:48:32',2753,401,'2005-08-03 03:10:32',2,'2006-02-15 21:30:53'), - (7652,'2005-07-28 01:50:29',92,5,'2005-07-30 22:23:29',2,'2006-02-15 21:30:53'), - (7653,'2005-07-28 01:58:30',814,232,'2005-07-28 23:32:30',2,'2006-02-15 21:30:53'), - (7654,'2005-07-28 02:00:14',1009,360,'2005-07-31 20:50:14',2,'2006-02-15 21:30:53'), - (7655,'2005-07-28 02:01:11',2665,513,'2005-07-30 23:12:11',2,'2006-02-15 21:30:53'), - (7656,'2005-07-28 02:07:19',178,148,'2005-07-31 04:05:19',1,'2006-02-15 21:30:53'), - (7657,'2005-07-28 02:09:00',2319,518,'2005-08-04 21:44:00',1,'2006-02-15 21:30:53'), - (7658,'2005-07-28 02:09:12',1798,272,'2005-07-30 00:54:12',2,'2006-02-15 21:30:53'), - (7659,'2005-07-28 02:09:45',1622,584,'2005-08-02 05:34:45',2,'2006-02-15 21:30:53'), - (7660,'2005-07-28 02:10:10',4385,4,'2005-07-30 04:29:10',2,'2006-02-15 21:30:53'), - (7661,'2005-07-28 02:10:27',3060,256,'2005-08-05 03:45:27',2,'2006-02-15 21:30:53'), - (7662,'2005-07-28 02:16:08',1017,534,'2005-08-03 21:51:08',1,'2006-02-15 21:30:53'), - (7663,'2005-07-28 02:19:48',832,470,'2005-07-30 21:43:48',2,'2006-02-15 21:30:53'), - (7664,'2005-07-28 02:24:23',1989,461,'2005-07-29 23:01:23',1,'2006-02-15 21:30:53'), - (7665,'2005-07-28 02:28:30',1455,590,'2005-07-31 20:42:30',1,'2006-02-15 21:30:53'), - (7666,'2005-07-28 02:35:12',688,196,'2005-08-05 05:43:12',2,'2006-02-15 21:30:53'), - (7667,'2005-07-28 02:37:22',2415,443,'2005-08-05 21:37:22',1,'2006-02-15 21:30:53'), - (7668,'2005-07-28 02:41:31',3880,508,'2005-08-02 06:08:31',1,'2006-02-15 21:30:53'), - (7669,'2005-07-28 02:44:07',2624,483,'2005-07-29 00:54:07',1,'2006-02-15 21:30:53'), - (7670,'2005-07-28 02:44:25',1356,252,'2005-07-29 21:55:25',2,'2006-02-15 21:30:53'), - (7671,'2005-07-28 02:48:31',3464,442,'2005-07-30 23:04:31',1,'2006-02-15 21:30:53'), - (7672,'2005-07-28 02:49:41',573,542,'2005-08-04 02:38:41',1,'2006-02-15 21:30:53'), - (7673,'2005-07-28 02:53:53',2368,409,'2005-08-06 00:07:53',1,'2006-02-15 21:30:53'), - (7674,'2005-07-28 02:54:30',682,177,'2005-08-05 23:09:30',1,'2006-02-15 21:30:53'), - (7675,'2005-07-28 02:55:20',153,189,'2005-07-31 05:27:20',1,'2006-02-15 21:30:53'), - (7676,'2005-07-28 02:55:27',1110,508,'2005-08-01 03:50:27',2,'2006-02-15 21:30:53'), - (7677,'2005-07-28 02:56:37',4464,566,'2005-07-31 02:21:37',1,'2006-02-15 21:30:53'), - (7678,'2005-07-28 02:58:16',3398,510,'2005-08-06 04:22:16',1,'2006-02-15 21:30:53'), - (7679,'2005-07-28 02:58:39',1063,444,'2005-08-02 04:58:39',1,'2006-02-15 21:30:53'), - (7680,'2005-07-28 02:59:08',1784,559,'2005-08-03 03:37:08',2,'2006-02-15 21:30:53'), - (7681,'2005-07-28 03:07:09',1176,432,'2005-07-29 08:30:09',2,'2006-02-15 21:30:53'), - (7682,'2005-07-28 03:07:29',3296,400,'2005-08-04 08:48:29',2,'2006-02-15 21:30:53'), - (7683,'2005-07-28 03:11:29',1760,73,'2005-08-04 00:14:29',1,'2006-02-15 21:30:53'), - (7684,'2005-07-28 03:11:54',3365,40,'2005-07-31 04:40:54',2,'2006-02-15 21:30:53'), - (7685,'2005-07-28 03:13:00',2213,468,'2005-08-01 00:29:00',2,'2006-02-15 21:30:53'), - (7686,'2005-07-28 03:19:23',2144,184,'2005-08-04 05:17:23',2,'2006-02-15 21:30:53'), - (7687,'2005-07-28 03:20:26',689,325,'2005-08-02 05:48:26',2,'2006-02-15 21:30:53'), - (7688,'2005-07-28 03:20:47',1179,491,'2005-08-06 06:07:47',2,'2006-02-15 21:30:53'), - (7689,'2005-07-28 03:21:24',1803,253,'2005-07-31 08:01:24',2,'2006-02-15 21:30:53'), - (7690,'2005-07-28 03:26:21',1076,150,'2005-07-29 00:08:21',1,'2006-02-15 21:30:53'), - (7691,'2005-07-28 03:30:09',1579,112,'2005-07-29 21:31:09',1,'2006-02-15 21:30:53'), - (7692,'2005-07-28 03:30:21',267,392,'2005-07-30 22:25:21',1,'2006-02-15 21:30:53'), - (7693,'2005-07-28 03:31:22',2479,148,'2005-07-31 06:42:22',2,'2006-02-15 21:30:53'), - (7694,'2005-07-28 03:39:25',2892,538,'2005-07-31 05:47:25',1,'2006-02-15 21:30:53'), - (7695,'2005-07-28 03:41:13',2742,323,'2005-08-06 05:06:13',2,'2006-02-15 21:30:53'), - (7696,'2005-07-28 03:41:35',3463,56,'2005-08-06 05:48:35',2,'2006-02-15 21:30:53'), - (7697,'2005-07-28 03:43:45',3966,377,'2005-08-03 07:55:45',2,'2006-02-15 21:30:53'), - (7698,'2005-07-28 03:44:14',3650,561,'2005-08-04 03:44:14',2,'2006-02-15 21:30:53'), - (7699,'2005-07-28 03:52:21',4332,53,'2005-08-01 05:00:21',2,'2006-02-15 21:30:53'), - (7700,'2005-07-28 03:54:14',3546,124,'2005-08-05 06:20:14',2,'2006-02-15 21:30:53'), - (7701,'2005-07-28 03:54:28',1604,306,'2005-08-01 08:39:28',2,'2006-02-15 21:30:53'), - (7702,'2005-07-28 03:56:05',253,349,'2005-07-31 03:29:05',1,'2006-02-15 21:30:53'), - (7703,'2005-07-28 03:59:21',2150,3,'2005-08-05 08:52:21',1,'2006-02-15 21:30:53'), - (7704,'2005-07-28 04:02:13',2342,265,'2005-08-04 00:51:13',1,'2006-02-15 21:30:53'), - (7705,'2005-07-28 04:02:58',1072,22,'2005-08-05 01:19:58',2,'2006-02-15 21:30:53'), - (7706,'2005-07-28 04:03:17',994,263,'2005-07-29 22:16:17',2,'2006-02-15 21:30:53'), - (7707,'2005-07-28 04:07:47',2563,232,'2005-07-29 02:02:47',1,'2006-02-15 21:30:53'), - (7708,'2005-07-28 04:19:15',398,363,'2005-08-04 04:41:15',1,'2006-02-15 21:30:53'), - (7709,'2005-07-28 04:22:14',3800,81,'2005-07-31 09:18:14',2,'2006-02-15 21:30:53'), - (7710,'2005-07-28 04:24:07',3716,77,'2005-08-03 22:49:07',2,'2006-02-15 21:30:53'), - (7711,'2005-07-28 04:26:42',2695,426,'2005-07-29 07:30:42',2,'2006-02-15 21:30:53'), - (7712,'2005-07-28 04:29:53',3256,361,'2005-08-02 00:57:53',2,'2006-02-15 21:30:53'), - (7713,'2005-07-28 04:32:14',2018,572,'2005-08-03 04:30:14',2,'2006-02-15 21:30:53'), - (7714,'2005-07-28 04:32:30',940,70,'2005-08-02 07:10:30',2,'2006-02-15 21:30:53'), - (7715,'2005-07-28 04:32:38',3210,512,'2005-08-05 00:37:38',2,'2006-02-15 21:30:53'), - (7716,'2005-07-28 04:33:15',1493,284,'2005-08-04 00:08:15',2,'2006-02-15 21:30:53'), - (7717,'2005-07-28 04:33:54',730,459,'2005-07-30 02:46:54',2,'2006-02-15 21:30:53'), - (7718,'2005-07-28 04:37:59',3587,4,'2005-07-29 09:20:59',2,'2006-02-15 21:30:53'), - (7719,'2005-07-28 04:39:09',2481,286,'2005-08-05 03:15:09',1,'2006-02-15 21:30:53'), - (7720,'2005-07-28 04:41:44',185,520,'2005-08-04 06:51:44',2,'2006-02-15 21:30:53'), - (7721,'2005-07-28 04:42:58',2228,83,'2005-07-31 07:52:58',1,'2006-02-15 21:30:53'), - (7722,'2005-07-28 04:44:58',3828,309,'2005-07-30 01:29:58',1,'2006-02-15 21:30:53'), - (7723,'2005-07-28 04:45:37',3263,147,'2005-07-30 09:03:37',2,'2006-02-15 21:30:53'), - (7724,'2005-07-28 04:46:30',346,3,'2005-08-04 08:41:30',1,'2006-02-15 21:30:53'), - (7725,'2005-07-28 04:47:14',1922,326,'2005-08-04 09:03:14',1,'2006-02-15 21:30:53'), - (7726,'2005-07-28 04:52:19',2578,219,'2005-08-04 09:05:19',1,'2006-02-15 21:30:53'), - (7727,'2005-07-28 04:52:43',2274,123,'2005-08-03 01:12:43',2,'2006-02-15 21:30:53'), - (7728,'2005-07-28 04:56:33',492,130,'2005-07-31 07:54:33',1,'2006-02-15 21:30:53'), - (7729,'2005-07-28 04:57:57',1491,89,'2005-07-30 09:38:57',1,'2006-02-15 21:30:53'), - (7730,'2005-07-28 04:59:48',3118,155,'2005-08-04 04:35:48',2,'2006-02-15 21:30:53'), - (7731,'2005-07-28 05:01:18',1533,413,'2005-07-29 02:22:18',1,'2006-02-15 21:30:53'), - (7732,'2005-07-28 05:03:32',3597,158,'2005-07-29 10:20:32',1,'2006-02-15 21:30:53'), - (7733,'2005-07-28 05:04:47',10,82,'2005-08-05 05:12:47',2,'2006-02-15 21:30:53'), - (7734,'2005-07-28 05:08:44',2726,135,'2005-07-30 09:42:44',2,'2006-02-15 21:30:53'), - (7735,'2005-07-28 05:09:56',3949,372,'2005-07-31 23:34:56',2,'2006-02-15 21:30:53'), - (7736,'2005-07-28 05:12:04',4466,205,'2005-08-05 02:28:04',2,'2006-02-15 21:30:53'), - (7737,'2005-07-28 05:15:03',1235,494,'2005-08-04 01:24:03',1,'2006-02-15 21:30:53'), - (7738,'2005-07-28 05:21:42',80,10,'2005-08-03 09:46:42',2,'2006-02-15 21:30:53'), - (7739,'2005-07-28 05:21:51',1554,186,'2005-07-30 02:06:51',2,'2006-02-15 21:30:53'), - (7740,'2005-07-28 05:23:36',3613,395,'2005-08-01 02:20:36',2,'2006-02-15 21:30:53'), - (7741,'2005-07-28 05:25:55',3917,591,'2005-08-02 02:40:55',1,'2006-02-15 21:30:53'), - (7742,'2005-07-28 05:33:16',1808,49,'2005-08-06 01:04:16',2,'2006-02-15 21:30:53'), - (7743,'2005-07-28 05:36:13',2883,210,'2005-08-03 11:28:13',2,'2006-02-15 21:30:53'), - (7744,'2005-07-28 05:38:20',1863,288,'2005-07-31 11:00:20',1,'2006-02-15 21:30:53'), - (7745,'2005-07-28 05:46:28',1014,285,'2005-08-06 07:44:28',2,'2006-02-15 21:30:53'), - (7746,'2005-07-28 05:48:56',176,299,'2005-08-04 07:33:56',1,'2006-02-15 21:30:53'), - (7747,'2005-07-28 05:50:11',1775,78,'2005-08-03 09:51:11',1,'2006-02-15 21:30:53'), - (7748,'2005-07-28 05:52:23',3523,415,'2005-07-31 01:35:23',2,'2006-02-15 21:30:53'), - (7749,'2005-07-28 05:53:36',3585,232,'2005-08-01 03:49:36',1,'2006-02-15 21:30:53'), - (7750,'2005-07-28 05:55:30',820,220,'2005-08-06 04:32:30',2,'2006-02-15 21:30:53'), - (7751,'2005-07-28 05:56:13',4425,176,'2005-08-05 08:08:13',1,'2006-02-15 21:30:53'), - (7752,'2005-07-28 06:01:00',2218,209,'2005-08-03 06:09:00',1,'2006-02-15 21:30:53'), - (7753,'2005-07-28 06:09:19',3071,531,'2005-08-06 06:17:19',1,'2006-02-15 21:30:53'), - (7754,'2005-07-28 06:10:55',1981,138,'2005-07-29 02:46:55',1,'2006-02-15 21:30:53'), - (7755,'2005-07-28 06:22:18',1247,449,'2005-08-06 11:38:18',2,'2006-02-15 21:30:53'), - (7756,'2005-07-28 06:22:52',1611,469,'2005-08-05 11:55:52',2,'2006-02-15 21:30:53'), - (7757,'2005-07-28 06:23:00',3445,502,'2005-07-30 12:02:00',1,'2006-02-15 21:30:53'), - (7758,'2005-07-28 06:23:41',4333,356,'2005-08-03 06:06:41',2,'2006-02-15 21:30:53'), - (7759,'2005-07-28 06:28:45',3381,405,'2005-08-03 11:38:45',1,'2006-02-15 21:30:53'), - (7760,'2005-07-28 06:29:45',409,307,'2005-08-03 01:36:45',1,'2006-02-15 21:30:53'), - (7761,'2005-07-28 06:31:45',3568,112,'2005-07-30 01:36:45',2,'2006-02-15 21:30:53'), - (7762,'2005-07-28 06:34:23',3234,462,'2005-08-05 09:55:23',2,'2006-02-15 21:30:53'), - (7763,'2005-07-28 06:35:16',2461,116,'2005-08-03 02:46:16',2,'2006-02-15 21:30:53'), - (7764,'2005-07-28 06:40:05',3537,142,'2005-07-30 02:51:05',2,'2006-02-15 21:30:53'), - (7765,'2005-07-28 06:40:33',4098,294,'2005-07-31 01:25:33',1,'2006-02-15 21:30:53'), - (7766,'2005-07-28 06:41:57',2774,292,'2005-08-06 11:21:57',2,'2006-02-15 21:30:53'), - (7767,'2005-07-28 06:42:02',329,139,'2005-08-05 11:19:02',2,'2006-02-15 21:30:53'), - (7768,'2005-07-28 06:44:03',2450,123,'2005-07-29 09:46:03',1,'2006-02-15 21:30:53'), - (7769,'2005-07-28 06:45:23',3250,30,'2005-07-30 12:18:23',1,'2006-02-15 21:30:53'), - (7770,'2005-07-28 06:49:35',1486,507,'2005-08-06 08:16:35',1,'2006-02-15 21:30:53'), - (7771,'2005-07-28 06:52:12',1003,175,'2005-07-30 12:48:12',1,'2006-02-15 21:30:53'), - (7772,'2005-07-28 06:59:09',986,552,'2005-08-01 10:49:09',1,'2006-02-15 21:30:53'), - (7773,'2005-07-28 07:02:17',4143,380,'2005-07-30 04:16:17',2,'2006-02-15 21:30:53'), - (7774,'2005-07-28 07:03:25',3483,259,'2005-08-03 02:05:25',1,'2006-02-15 21:30:53'), - (7775,'2005-07-28 07:04:36',3795,475,'2005-08-03 06:36:36',2,'2006-02-15 21:30:53'), - (7776,'2005-07-28 07:04:36',4170,385,'2005-08-01 09:32:36',1,'2006-02-15 21:30:53'), - (7777,'2005-07-28 07:04:42',4422,287,'2005-07-29 01:57:42',1,'2006-02-15 21:30:53'), - (7778,'2005-07-28 07:10:11',1044,248,'2005-08-05 05:09:11',1,'2006-02-15 21:30:53'), - (7779,'2005-07-28 07:11:11',3663,414,'2005-07-30 11:12:11',1,'2006-02-15 21:30:53'), - (7780,'2005-07-28 07:11:55',3069,236,'2005-08-06 05:41:55',1,'2006-02-15 21:30:53'), - (7781,'2005-07-28 07:13:20',541,539,'2005-08-06 05:43:20',2,'2006-02-15 21:30:53'), - (7782,'2005-07-28 07:13:40',3770,199,'2005-08-05 06:50:40',1,'2006-02-15 21:30:53'), - (7783,'2005-07-28 07:14:43',3817,581,'2005-08-01 05:03:43',2,'2006-02-15 21:30:53'), - (7784,'2005-07-28 07:15:32',3611,505,'2005-08-06 05:00:32',1,'2006-02-15 21:30:53'), - (7785,'2005-07-28 07:16:11',4277,460,'2005-08-02 03:43:11',1,'2006-02-15 21:30:53'), - (7786,'2005-07-28 07:18:26',2285,222,'2005-07-29 03:00:26',1,'2006-02-15 21:30:53'), - (7787,'2005-07-28 07:19:02',2191,203,'2005-08-06 02:38:02',2,'2006-02-15 21:30:53'), - (7788,'2005-07-28 07:21:55',95,487,'2005-08-03 06:33:55',1,'2006-02-15 21:30:53'), - (7789,'2005-07-28 07:22:07',2837,426,'2005-08-06 10:47:07',1,'2006-02-15 21:30:53'), - (7790,'2005-07-28 07:22:35',2327,189,'2005-07-30 02:59:35',1,'2006-02-15 21:30:53'), - (7791,'2005-07-28 07:22:51',822,514,'2005-07-30 03:09:51',1,'2006-02-15 21:30:53'), - (7792,'2005-07-28 07:24:02',3736,236,'2005-08-04 11:13:02',1,'2006-02-15 21:30:53'), - (7793,'2005-07-28 07:26:14',24,32,'2005-08-03 07:45:14',1,'2006-02-15 21:30:53'), - (7794,'2005-07-28 07:28:03',4509,510,'2005-08-06 12:32:03',2,'2006-02-15 21:30:53'), - (7795,'2005-07-28 07:28:16',1278,38,'2005-07-31 12:03:16',1,'2006-02-15 21:30:53'), - (7796,'2005-07-28 07:39:39',622,419,'2005-08-02 05:34:39',2,'2006-02-15 21:30:53'), - (7797,'2005-07-28 07:41:07',4180,370,'2005-07-31 04:13:07',1,'2006-02-15 21:30:53'), - (7798,'2005-07-28 07:41:59',3281,236,'2005-07-31 12:36:59',1,'2006-02-15 21:30:53'), - (7799,'2005-07-28 07:42:09',2163,384,'2005-08-02 10:02:09',2,'2006-02-15 21:30:53'), - (7800,'2005-07-28 07:50:59',3386,499,'2005-07-29 07:31:59',2,'2006-02-15 21:30:53'), - (7801,'2005-07-28 07:51:56',2052,9,'2005-07-30 12:18:56',1,'2006-02-15 21:30:53'), - (7802,'2005-07-28 07:51:57',1108,298,'2005-07-29 09:32:57',1,'2006-02-15 21:30:53'), - (7803,'2005-07-28 07:52:13',3438,449,'2005-08-03 13:35:13',1,'2006-02-15 21:30:53'), - (7804,'2005-07-28 07:56:00',592,249,'2005-07-30 10:33:00',2,'2006-02-15 21:30:53'), - (7805,'2005-07-28 07:56:41',3204,366,'2005-08-04 06:53:41',1,'2006-02-15 21:30:53'), - (7806,'2005-07-28 07:58:17',4317,440,'2005-08-06 10:15:17',1,'2006-02-15 21:30:53'), - (7807,'2005-07-28 07:58:27',2204,504,'2005-08-01 02:48:27',2,'2006-02-15 21:30:53'), - (7808,'2005-07-28 07:58:56',4052,327,'2005-08-02 10:49:56',1,'2006-02-15 21:30:53'), - (7809,'2005-07-28 07:59:46',4150,94,'2005-08-02 02:56:46',1,'2006-02-15 21:30:53'), - (7810,'2005-07-28 08:00:38',30,537,'2005-08-02 06:14:38',2,'2006-02-15 21:30:53'), - (7811,'2005-07-28 08:06:01',3891,347,'2005-07-30 10:08:01',2,'2006-02-15 21:30:53'), - (7812,'2005-07-28 08:06:52',4556,237,'2005-07-31 09:57:52',2,'2006-02-15 21:30:53'), - (7813,'2005-07-28 08:08:27',4216,411,'2005-07-30 03:08:27',2,'2006-02-15 21:30:53'), - (7814,'2005-07-28 08:09:48',2662,258,'2005-08-01 13:14:48',2,'2006-02-15 21:30:53'), - (7815,'2005-07-28 08:14:11',3551,300,'2005-07-30 02:34:11',2,'2006-02-15 21:30:53'), - (7816,'2005-07-28 08:14:12',1422,283,'2005-07-30 08:00:12',2,'2006-02-15 21:30:53'), - (7817,'2005-07-28 08:20:55',600,259,'2005-07-30 11:55:55',1,'2006-02-15 21:30:53'), - (7818,'2005-07-28 08:25:00',1672,301,'2005-07-29 14:07:00',1,'2006-02-15 21:30:53'), - (7819,'2005-07-28 08:27:14',3182,100,'2005-08-02 12:34:14',2,'2006-02-15 21:30:53'), - (7820,'2005-07-28 08:28:51',4475,459,'2005-08-05 10:00:51',1,'2006-02-15 21:30:53'), - (7821,'2005-07-28 08:31:23',1184,433,'2005-08-03 05:08:23',2,'2006-02-15 21:30:53'), - (7822,'2005-07-28 08:31:45',1428,156,'2005-07-31 11:06:45',1,'2006-02-15 21:30:53'), - (7823,'2005-07-28 08:32:53',84,428,'2005-08-06 11:59:53',1,'2006-02-15 21:30:53'), - (7824,'2005-07-28 08:34:47',2241,153,'2005-08-05 09:43:47',2,'2006-02-15 21:30:53'), - (7825,'2005-07-28 08:34:57',4340,348,'2005-08-06 02:45:57',1,'2006-02-15 21:30:53'), - (7826,'2005-07-28 08:35:51',1473,214,'2005-08-05 07:57:51',2,'2006-02-15 21:30:53'), - (7827,'2005-07-28 08:37:22',659,422,'2005-07-31 04:27:22',1,'2006-02-15 21:30:53'), - (7828,'2005-07-28 08:40:46',1710,212,'2005-07-30 14:22:46',1,'2006-02-15 21:30:53'), - (7829,'2005-07-28 08:43:39',111,5,'2005-08-04 14:33:39',1,'2006-02-15 21:30:53'), - (7830,'2005-07-28 08:43:49',4492,144,'2005-08-04 09:30:49',2,'2006-02-15 21:30:53'), - (7831,'2005-07-28 08:44:21',4436,499,'2005-07-30 03:25:21',2,'2006-02-15 21:30:53'), - (7832,'2005-07-28 08:46:11',284,92,'2005-08-04 06:55:11',1,'2006-02-15 21:30:53'), - (7833,'2005-07-28 08:46:14',1166,263,'2005-08-04 06:13:14',1,'2006-02-15 21:30:53'), - (7834,'2005-07-28 08:46:43',4124,278,'2005-07-31 07:09:43',2,'2006-02-15 21:30:53'), - (7835,'2005-07-28 08:49:39',43,547,'2005-08-02 07:16:39',2,'2006-02-15 21:30:53'), - (7836,'2005-07-28 08:55:27',1770,481,'2005-08-05 09:35:27',1,'2006-02-15 21:30:53'), - (7837,'2005-07-28 08:58:32',115,374,'2005-07-29 14:11:32',1,'2006-02-15 21:30:53'), - (7838,'2005-07-28 09:00:21',2222,550,'2005-07-29 05:52:21',1,'2006-02-15 21:30:53'), - (7839,'2005-07-28 09:01:13',914,518,'2005-08-04 11:46:13',1,'2006-02-15 21:30:53'), - (7840,'2005-07-28 09:03:02',2899,482,'2005-08-06 06:15:02',1,'2006-02-15 21:30:53'), - (7841,'2005-07-28 09:04:45',1092,1,'2005-07-30 12:37:45',2,'2006-02-15 21:30:53'), - (7842,'2005-07-28 09:10:06',2447,276,'2005-08-04 06:52:06',2,'2006-02-15 21:30:53'), - (7843,'2005-07-28 09:10:22',3962,75,'2005-08-01 11:27:22',2,'2006-02-15 21:30:53'), - (7844,'2005-07-28 09:16:19',4220,187,'2005-08-05 14:06:19',2,'2006-02-15 21:30:53'), - (7845,'2005-07-28 09:18:07',38,352,'2005-08-04 10:23:07',2,'2006-02-15 21:30:53'), - (7846,'2005-07-28 09:21:18',4201,309,'2005-08-06 07:10:18',2,'2006-02-15 21:30:53'), - (7847,'2005-07-28 09:23:14',3602,323,'2005-08-02 11:02:14',2,'2006-02-15 21:30:53'), - (7848,'2005-07-28 09:24:31',162,509,'2005-08-05 05:11:31',2,'2006-02-15 21:30:53'), - (7849,'2005-07-28 09:30:02',996,423,'2005-08-06 12:41:02',2,'2006-02-15 21:30:53'), - (7850,'2005-07-28 09:31:13',2913,118,'2005-08-02 14:06:13',2,'2006-02-15 21:30:53'), - (7851,'2005-07-28 09:31:58',3596,253,'2005-08-04 09:58:58',2,'2006-02-15 21:30:53'), - (7852,'2005-07-28 09:34:29',3462,123,'2005-07-30 05:48:29',1,'2006-02-15 21:30:53'), - (7853,'2005-07-28 09:36:38',4053,318,'2005-07-29 15:01:38',1,'2006-02-15 21:30:53'), - (7854,'2005-07-28 09:42:31',3531,84,'2005-08-02 09:25:31',1,'2006-02-15 21:30:53'), - (7855,'2005-07-28 09:43:02',2474,288,'2005-07-30 12:57:02',2,'2006-02-15 21:30:53'), - (7856,'2005-07-28 09:48:24',2376,375,'2005-07-29 09:49:24',2,'2006-02-15 21:30:53'), - (7857,'2005-07-28 09:49:40',4027,500,'2005-08-01 05:34:40',2,'2006-02-15 21:30:53'), - (7858,'2005-07-28 09:50:18',992,144,'2005-08-05 14:33:18',1,'2006-02-15 21:30:53'), - (7859,'2005-07-28 09:57:17',3392,547,'2005-08-04 06:04:17',1,'2006-02-15 21:30:53'), - (7860,'2005-07-28 09:58:02',2400,241,'2005-08-05 06:04:02',1,'2006-02-15 21:30:53'), - (7861,'2005-07-28 10:02:01',1781,208,'2005-08-06 13:17:01',1,'2006-02-15 21:30:53'), - (7862,'2005-07-28 10:02:25',2507,299,'2005-08-05 13:10:25',1,'2006-02-15 21:30:53'), - (7863,'2005-07-28 10:05:46',1212,182,'2005-07-29 14:42:46',1,'2006-02-15 21:30:53'), - (7864,'2005-07-28 10:06:10',1238,20,'2005-08-04 08:38:10',1,'2006-02-15 21:30:53'), - (7865,'2005-07-28 10:07:04',2334,148,'2005-08-06 08:16:04',2,'2006-02-15 21:30:53'), - (7866,'2005-07-28 10:08:01',1602,101,'2005-08-04 09:29:01',2,'2006-02-15 21:30:53'), - (7867,'2005-07-28 10:08:54',713,297,'2005-07-30 10:26:54',2,'2006-02-15 21:30:53'), - (7868,'2005-07-28 10:08:55',3589,43,'2005-07-30 11:52:55',1,'2006-02-15 21:30:53'), - (7869,'2005-07-28 10:13:15',3005,298,'2005-08-03 12:58:15',1,'2006-02-15 21:30:53'), - (7870,'2005-07-28 10:16:03',970,240,'2005-07-31 16:06:03',1,'2006-02-15 21:30:53'), - (7871,'2005-07-28 10:16:37',3990,491,'2005-08-05 11:24:37',2,'2006-02-15 21:30:53'), - (7872,'2005-07-28 10:18:16',826,66,'2005-07-31 10:57:16',1,'2006-02-15 21:30:53'), - (7873,'2005-07-28 10:19:46',2947,82,'2005-07-31 04:43:46',2,'2006-02-15 21:30:53'), - (7874,'2005-07-28 10:21:52',2981,86,'2005-08-06 16:19:52',1,'2006-02-15 21:30:53'), - (7875,'2005-07-28 10:23:48',3693,504,'2005-08-02 12:09:48',1,'2006-02-15 21:30:53'), - (7876,'2005-07-28 10:24:22',3563,577,'2005-08-04 07:15:22',1,'2006-02-15 21:30:53'), - (7877,'2005-07-28 10:25:36',2576,65,'2005-08-05 12:46:36',1,'2006-02-15 21:30:53'), - (7878,'2005-07-28 10:27:10',1564,141,'2005-07-29 11:22:10',1,'2006-02-15 21:30:53'), - (7879,'2005-07-28 10:27:46',1969,125,'2005-07-31 07:48:46',1,'2006-02-15 21:30:53'), - (7880,'2005-07-28 10:30:37',3670,182,'2005-08-03 08:05:37',2,'2006-02-15 21:30:53'), - (7881,'2005-07-28 10:33:22',533,249,'2005-08-02 12:10:22',1,'2006-02-15 21:30:53'), - (7882,'2005-07-28 10:33:42',3922,516,'2005-07-29 13:49:42',1,'2006-02-15 21:30:53'), - (7883,'2005-07-28 10:37:20',447,526,'2005-08-02 05:08:20',1,'2006-02-15 21:30:53'), - (7884,'2005-07-28 10:37:24',3871,502,'2005-07-31 10:31:24',1,'2006-02-15 21:30:53'), - (7885,'2005-07-28 10:37:41',4294,260,'2005-08-05 07:56:41',1,'2006-02-15 21:30:53'), - (7886,'2005-07-28 10:37:55',237,352,'2005-08-04 13:22:55',2,'2006-02-15 21:30:53'), - (7887,'2005-07-28 10:40:12',2820,253,'2005-08-02 06:09:12',1,'2006-02-15 21:30:53'), - (7888,'2005-07-28 10:40:24',545,378,'2005-08-01 16:18:24',1,'2006-02-15 21:30:53'), - (7889,'2005-07-28 10:43:21',3123,416,'2005-07-30 09:11:21',1,'2006-02-15 21:30:53'), - (7890,'2005-07-28 10:43:40',3443,553,'2005-07-31 06:07:40',1,'2006-02-15 21:30:53'), - (7891,'2005-07-28 10:43:56',3637,560,'2005-08-05 14:04:56',2,'2006-02-15 21:30:53'), - (7892,'2005-07-28 10:46:58',2717,397,'2005-07-30 16:03:58',1,'2006-02-15 21:30:53'), - (7893,'2005-07-28 10:49:27',3058,479,'2005-08-02 06:46:27',1,'2006-02-15 21:30:53'), - (7894,'2005-07-28 10:53:58',3532,330,'2005-08-02 13:42:58',2,'2006-02-15 21:30:53'), - (7895,'2005-07-28 10:57:15',900,67,'2005-08-02 15:10:15',2,'2006-02-15 21:30:53'), - (7896,'2005-07-28 11:00:58',3561,389,'2005-08-04 14:30:58',2,'2006-02-15 21:30:53'), - (7897,'2005-07-28 11:01:51',1396,75,'2005-07-31 13:13:51',1,'2006-02-15 21:30:53'), - (7898,'2005-07-28 11:08:22',2680,499,'2005-08-03 12:28:22',1,'2006-02-15 21:30:53'), - (7899,'2005-07-28 11:10:12',4130,452,'2005-08-02 13:20:12',2,'2006-02-15 21:30:53'), - (7900,'2005-07-28 11:11:33',2781,154,'2005-08-05 06:29:33',2,'2006-02-15 21:30:53'), - (7901,'2005-07-28 11:12:12',4435,280,'2005-08-01 08:13:12',1,'2006-02-15 21:30:53'), - (7902,'2005-07-28 11:14:19',3066,356,'2005-07-30 09:01:19',2,'2006-02-15 21:30:53'), - (7903,'2005-07-28 11:20:36',2767,588,'2005-07-31 09:16:36',1,'2006-02-15 21:30:53'), - (7904,'2005-07-28 11:25:39',316,477,'2005-08-06 08:22:39',2,'2006-02-15 21:30:53'), - (7905,'2005-07-28 11:26:57',4287,455,'2005-08-02 06:14:57',1,'2006-02-15 21:30:53'), - (7906,'2005-07-28 11:31:42',1216,85,'2005-08-01 11:56:42',2,'2006-02-15 21:30:53'), - (7907,'2005-07-28 11:32:00',3252,433,'2005-07-30 15:27:00',1,'2006-02-15 21:30:53'), - (7908,'2005-07-28 11:32:57',3646,360,'2005-08-03 13:30:57',2,'2006-02-15 21:30:53'), - (7909,'2005-07-28 11:38:08',3355,210,'2005-07-29 13:54:08',1,'2006-02-15 21:30:53'), - (7910,'2005-07-28 11:44:56',2044,480,'2005-08-05 14:37:56',2,'2006-02-15 21:30:53'), - (7911,'2005-07-28 11:46:45',390,3,'2005-07-29 07:19:45',1,'2006-02-15 21:30:53'), - (7912,'2005-07-28 11:46:58',745,127,'2005-08-05 12:50:58',1,'2006-02-15 21:30:53'), - (7913,'2005-07-28 11:47:23',4001,459,'2005-08-05 06:36:23',1,'2006-02-15 21:30:53'), - (7914,'2005-07-28 11:48:08',2796,469,'2005-07-30 14:14:08',1,'2006-02-15 21:30:53'), - (7915,'2005-07-28 11:49:46',2088,186,'2005-08-04 12:21:46',2,'2006-02-15 21:30:53'), - (7916,'2005-07-28 11:49:53',3877,13,'2005-07-29 15:01:53',1,'2006-02-15 21:30:53'), - (7917,'2005-07-28 11:56:57',2071,416,'2005-07-29 14:06:57',1,'2006-02-15 21:30:53'), - (7918,'2005-07-28 11:58:53',63,473,'2005-08-04 12:08:53',2,'2006-02-15 21:30:53'), - (7919,'2005-07-28 11:59:45',2138,36,'2005-08-06 11:19:45',1,'2006-02-15 21:30:53'), - (7920,'2005-07-28 12:01:19',66,48,'2005-08-05 07:08:19',1,'2006-02-15 21:30:53'), - (7921,'2005-07-28 12:02:46',116,100,'2005-08-01 12:08:46',2,'2006-02-15 21:30:53'), - (7922,'2005-07-28 12:05:25',817,125,'2005-08-02 12:13:25',2,'2006-02-15 21:30:53'), - (7923,'2005-07-28 12:08:29',2273,458,'2005-08-04 12:30:29',1,'2006-02-15 21:30:53'), - (7924,'2005-07-28 12:08:53',656,97,'2005-07-30 06:45:53',2,'2006-02-15 21:30:53'), - (7925,'2005-07-28 12:10:02',1763,500,'2005-08-02 15:50:02',1,'2006-02-15 21:30:53'), - (7926,'2005-07-28 12:13:02',180,78,'2005-08-05 08:54:02',1,'2006-02-15 21:30:53'), - (7927,'2005-07-28 12:13:42',1263,27,'2005-08-05 12:02:42',1,'2006-02-15 21:30:53'), - (7928,'2005-07-28 12:15:51',912,473,'2005-08-05 06:34:51',1,'2006-02-15 21:30:53'), - (7929,'2005-07-28 12:16:40',2652,307,'2005-07-31 13:09:40',2,'2006-02-15 21:30:53'), - (7930,'2005-07-28 12:21:08',4181,320,'2005-07-30 11:56:08',1,'2006-02-15 21:30:53'), - (7931,'2005-07-28 12:23:41',1923,326,'2005-08-06 09:49:41',2,'2006-02-15 21:30:53'), - (7932,'2005-07-28 12:24:54',3738,462,'2005-07-30 11:33:54',1,'2006-02-15 21:30:53'), - (7933,'2005-07-28 12:27:27',3175,297,'2005-07-29 10:34:27',2,'2006-02-15 21:30:53'), - (7934,'2005-07-28 12:33:10',2642,332,'2005-08-04 07:40:10',2,'2006-02-15 21:30:53'), - (7935,'2005-07-28 12:33:17',3664,462,'2005-08-04 14:40:17',2,'2006-02-15 21:30:53'), - (7936,'2005-07-28 12:33:21',563,520,'2005-07-30 13:31:21',2,'2006-02-15 21:30:53'), - (7937,'2005-07-28 12:38:22',3944,323,'2005-07-29 09:19:22',1,'2006-02-15 21:30:53'), - (7938,'2005-07-28 12:39:11',2579,114,'2005-08-04 16:56:11',1,'2006-02-15 21:30:53'), - (7939,'2005-07-28 12:45:47',2004,37,'2005-07-30 18:32:47',2,'2006-02-15 21:30:53'), - (7940,'2005-07-28 12:46:47',901,409,'2005-07-29 06:46:47',2,'2006-02-15 21:30:53'), - (7941,'2005-07-28 12:47:20',439,566,'2005-08-01 08:46:20',1,'2006-02-15 21:30:53'), - (7942,'2005-07-28 12:49:44',1636,56,'2005-07-31 18:07:44',2,'2006-02-15 21:30:53'), - (7943,'2005-07-28 12:50:55',2914,346,'2005-08-04 11:29:55',2,'2006-02-15 21:30:53'), - (7944,'2005-07-28 12:51:22',3148,504,'2005-07-30 12:19:22',1,'2006-02-15 21:30:53'), - (7945,'2005-07-28 12:53:58',3326,316,'2005-08-03 14:04:58',1,'2006-02-15 21:30:53'), - (7946,'2005-07-28 13:01:22',99,90,'2005-08-03 15:27:22',2,'2006-02-15 21:30:53'), - (7947,'2005-07-28 13:05:50',2504,279,'2005-08-02 11:16:50',2,'2006-02-15 21:30:53'), - (7948,'2005-07-28 13:06:16',215,589,'2005-08-05 08:38:16',1,'2006-02-15 21:30:53'), - (7949,'2005-07-28 13:07:24',2145,487,'2005-08-02 09:41:24',1,'2006-02-15 21:30:53'), - (7950,'2005-07-28 13:21:00',2286,122,'2005-08-05 18:47:00',2,'2006-02-15 21:30:53'), - (7951,'2005-07-28 13:21:16',3979,237,'2005-08-06 08:21:16',1,'2006-02-15 21:30:53'), - (7952,'2005-07-28 13:23:49',3313,158,'2005-08-01 08:50:49',1,'2006-02-15 21:30:53'), - (7953,'2005-07-28 13:24:32',4471,319,'2005-08-05 16:09:32',2,'2006-02-15 21:30:53'), - (7954,'2005-07-28 13:25:05',3735,145,'2005-07-29 18:50:05',2,'2006-02-15 21:30:53'), - (7955,'2005-07-28 13:31:36',1519,522,'2005-07-30 10:03:36',1,'2006-02-15 21:30:53'), - (7956,'2005-07-28 13:32:17',4335,118,'2005-08-06 14:51:17',2,'2006-02-15 21:30:53'), - (7957,'2005-07-28 13:34:08',1623,78,'2005-08-05 07:58:08',1,'2006-02-15 21:30:53'), - (7958,'2005-07-28 13:34:34',421,593,'2005-07-29 16:03:34',1,'2006-02-15 21:30:53'), - (7959,'2005-07-28 13:43:20',1549,178,'2005-08-02 12:13:20',2,'2006-02-15 21:30:53'), - (7960,'2005-07-28 13:47:08',2718,324,'2005-08-03 15:17:08',1,'2006-02-15 21:30:53'), - (7961,'2005-07-28 13:47:21',3284,45,'2005-08-01 09:33:21',1,'2006-02-15 21:30:53'), - (7962,'2005-07-28 13:48:09',1746,126,'2005-08-03 19:21:09',1,'2006-02-15 21:30:53'), - (7963,'2005-07-28 13:48:38',921,247,'2005-08-06 19:37:38',2,'2006-02-15 21:30:53'), - (7964,'2005-07-28 13:49:58',2528,574,'2005-08-03 10:03:58',2,'2006-02-15 21:30:53'), - (7965,'2005-07-28 13:52:57',3671,134,'2005-07-29 14:54:57',1,'2006-02-15 21:30:53'), - (7966,'2005-07-28 13:53:54',2514,91,'2005-08-06 15:32:54',1,'2006-02-15 21:30:53'), - (7967,'2005-07-28 13:56:51',2040,187,'2005-08-03 19:38:51',1,'2006-02-15 21:30:53'), - (7968,'2005-07-28 13:57:35',3865,597,'2005-08-04 13:40:35',1,'2006-02-15 21:30:53'), - (7969,'2005-07-28 13:57:37',2224,123,'2005-08-04 19:31:37',1,'2006-02-15 21:30:53'), - (7970,'2005-07-28 13:58:38',998,507,'2005-08-02 12:27:38',1,'2006-02-15 21:30:53'), - (7971,'2005-07-28 14:00:47',1910,445,'2005-08-02 10:01:47',1,'2006-02-15 21:30:53'), - (7972,'2005-07-28 14:07:46',2930,269,'2005-08-01 11:28:46',2,'2006-02-15 21:30:53'), - (7973,'2005-07-28 14:10:06',3936,339,'2005-07-29 11:26:06',2,'2006-02-15 21:30:53'), - (7974,'2005-07-28 14:11:57',2442,380,'2005-08-02 19:25:57',2,'2006-02-15 21:30:53'), - (7975,'2005-07-28 14:12:47',2565,211,'2005-08-05 09:18:47',1,'2006-02-15 21:30:53'), - (7976,'2005-07-28 14:13:24',2296,205,'2005-08-05 09:01:24',1,'2006-02-15 21:30:53'), - (7977,'2005-07-28 14:15:54',3162,389,'2005-08-01 18:58:54',2,'2006-02-15 21:30:53'), - (7978,'2005-07-28 14:16:14',508,431,'2005-08-01 12:53:14',2,'2006-02-15 21:30:53'), - (7979,'2005-07-28 14:16:30',3303,94,'2005-08-03 09:39:30',2,'2006-02-15 21:30:53'), - (7980,'2005-07-28 14:16:49',1019,329,'2005-08-05 09:20:49',1,'2006-02-15 21:30:53'), - (7981,'2005-07-28 14:18:25',90,392,'2005-08-04 15:21:25',2,'2006-02-15 21:30:53'), - (7982,'2005-07-28 14:19:59',668,71,'2005-07-29 14:09:59',2,'2006-02-15 21:30:53'), - (7983,'2005-07-28 14:23:01',1836,115,'2005-07-29 11:51:01',1,'2006-02-15 21:30:53'), - (7984,'2005-07-28 14:27:51',2893,208,'2005-08-04 17:34:51',1,'2006-02-15 21:30:53'), - (7985,'2005-07-28 14:29:01',4022,388,'2005-08-03 17:20:01',2,'2006-02-15 21:30:53'), - (7986,'2005-07-28 14:30:13',1283,395,'2005-08-05 09:35:13',1,'2006-02-15 21:30:53'), - (7987,'2005-07-28 14:36:52',288,443,'2005-08-05 16:49:52',2,'2006-02-15 21:30:53'), - (7988,'2005-07-28 14:37:18',2906,517,'2005-08-05 10:53:18',1,'2006-02-15 21:30:53'), - (7989,'2005-07-28 14:39:05',3196,149,'2005-08-05 13:58:05',2,'2006-02-15 21:30:53'), - (7990,'2005-07-28 14:43:08',188,232,'2005-08-01 10:51:08',2,'2006-02-15 21:30:53'), - (7991,'2005-07-28 14:45:45',1133,59,'2005-07-29 15:05:45',2,'2006-02-15 21:30:53'), - (7992,'2005-07-28 14:53:06',1851,33,'2005-07-29 18:17:06',1,'2006-02-15 21:30:53'), - (7993,'2005-07-28 14:56:41',2926,353,'2005-08-01 17:01:41',2,'2006-02-15 21:30:53'), - (7994,'2005-07-28 14:56:54',2431,21,'2005-07-30 09:56:54',2,'2006-02-15 21:30:53'), - (7995,'2005-07-28 15:00:09',536,89,'2005-08-01 12:33:09',2,'2006-02-15 21:30:53'), - (7996,'2005-07-28 15:00:49',2171,408,'2005-08-04 20:58:49',2,'2006-02-15 21:30:53'), - (7997,'2005-07-28 15:02:25',1845,591,'2005-08-04 14:35:25',1,'2006-02-15 21:30:53'), - (7998,'2005-07-28 15:08:48',1397,598,'2005-07-31 16:14:48',2,'2006-02-15 21:30:53'), - (7999,'2005-07-28 15:10:14',2750,170,'2005-08-06 17:08:14',2,'2006-02-15 21:30:53'), - (8000,'2005-07-28 15:10:25',1644,212,'2005-08-06 19:15:25',1,'2006-02-15 21:30:53'), - (8001,'2005-07-28 15:10:55',2570,10,'2005-08-05 18:23:55',1,'2006-02-15 21:30:53'), - (8002,'2005-07-28 15:11:00',22,449,'2005-07-31 15:46:00',2,'2006-02-15 21:30:53'), - (8003,'2005-07-28 15:11:27',2775,89,'2005-08-04 18:35:27',1,'2006-02-15 21:30:53'), - (8004,'2005-07-28 15:14:07',4428,393,'2005-07-30 19:32:07',2,'2006-02-15 21:30:53'), - (8005,'2005-07-28 15:15:11',670,488,'2005-07-29 14:54:11',1,'2006-02-15 21:30:53'), - (8006,'2005-07-28 15:15:41',3959,109,'2005-08-05 19:29:41',2,'2006-02-15 21:30:53'), - (8007,'2005-07-28 15:22:27',1942,525,'2005-07-30 13:06:27',2,'2006-02-15 21:30:53'), - (8008,'2005-07-28 15:25:55',2093,41,'2005-08-04 13:16:55',1,'2006-02-15 21:30:53'), - (8009,'2005-07-28 15:25:58',337,372,'2005-08-04 10:16:58',2,'2006-02-15 21:30:53'), - (8010,'2005-07-28 15:26:20',68,467,'2005-08-04 18:39:20',2,'2006-02-15 21:30:53'), - (8011,'2005-07-28 15:26:39',4274,497,'2005-07-30 13:59:39',1,'2006-02-15 21:30:53'), - (8012,'2005-07-28 15:29:00',1513,343,'2005-08-05 12:28:00',2,'2006-02-15 21:30:53'), - (8013,'2005-07-28 15:30:26',2074,403,'2005-08-05 16:29:26',1,'2006-02-15 21:30:53'), - (8014,'2005-07-28 15:32:07',2339,11,'2005-07-31 20:52:07',1,'2006-02-15 21:30:53'), - (8015,'2005-07-28 15:33:03',1814,23,'2005-07-30 15:32:03',2,'2006-02-15 21:30:53'), - (8016,'2005-07-28 15:35:41',516,391,'2005-07-30 20:06:41',2,'2006-02-15 21:30:53'), - (8017,'2005-07-28 15:35:41',1764,328,'2005-08-01 19:12:41',1,'2006-02-15 21:30:53'), - (8018,'2005-07-28 15:36:48',4129,377,'2005-08-06 20:04:48',1,'2006-02-15 21:30:53'), - (8019,'2005-07-28 15:37:43',1844,84,'2005-08-04 15:40:43',2,'2006-02-15 21:30:53'), - (8020,'2005-07-28 15:43:32',4459,498,'2005-08-05 12:19:32',1,'2006-02-15 21:30:53'), - (8021,'2005-07-28 15:45:24',1920,501,'2005-08-04 10:49:24',1,'2006-02-15 21:30:53'), - (8022,'2005-07-28 15:48:56',294,314,'2005-08-06 13:40:56',1,'2006-02-15 21:30:53'), - (8023,'2005-07-28 15:53:29',2133,411,'2005-07-31 12:26:29',1,'2006-02-15 21:30:53'), - (8024,'2005-07-28 15:55:40',1735,90,'2005-08-02 09:56:40',1,'2006-02-15 21:30:53'), - (8025,'2005-07-28 16:03:27',2932,421,'2005-08-03 21:58:27',2,'2006-02-15 21:30:53'), - (8026,'2005-07-28 16:05:38',4225,511,'2005-07-29 21:28:38',2,'2006-02-15 21:30:53'), - (8027,'2005-07-28 16:09:57',1335,436,'2005-08-05 18:17:57',1,'2006-02-15 21:30:53'), - (8028,'2005-07-28 16:11:15',2715,137,'2005-08-05 15:11:15',1,'2006-02-15 21:30:53'), - (8029,'2005-07-28 16:11:21',4273,61,'2005-08-05 13:52:21',1,'2006-02-15 21:30:53'), - (8030,'2005-07-28 16:12:53',2633,30,'2005-07-31 17:15:53',1,'2006-02-15 21:30:53'), - (8031,'2005-07-28 16:15:49',2196,40,'2005-08-02 18:27:49',2,'2006-02-15 21:30:53'), - (8032,'2005-07-28 16:17:00',431,230,'2005-07-29 13:32:00',1,'2006-02-15 21:30:53'), - (8033,'2005-07-28 16:18:23',4268,1,'2005-07-30 17:56:23',1,'2006-02-15 21:30:53'), - (8034,'2005-07-28 16:20:26',1997,502,'2005-08-04 19:11:26',2,'2006-02-15 21:30:53'), - (8035,'2005-07-28 16:23:01',1503,14,'2005-08-05 10:52:01',1,'2006-02-15 21:30:53'), - (8036,'2005-07-28 16:27:43',2741,412,'2005-08-01 13:41:43',2,'2006-02-15 21:30:53'), - (8037,'2005-07-28 16:31:20',3973,409,'2005-07-31 12:18:20',2,'2006-02-15 21:30:53'), - (8038,'2005-07-28 16:32:55',1225,30,'2005-07-30 21:08:55',1,'2006-02-15 21:30:53'), - (8039,'2005-07-28 16:35:16',1996,203,'2005-07-30 14:49:16',1,'2006-02-15 21:30:53'), - (8040,'2005-07-28 16:39:43',4543,163,'2005-08-02 20:00:43',2,'2006-02-15 21:30:53'), - (8041,'2005-07-28 16:39:56',763,357,'2005-07-30 18:44:56',1,'2006-02-15 21:30:53'), - (8042,'2005-07-28 16:45:11',4325,14,'2005-08-04 17:16:11',2,'2006-02-15 21:30:53'), - (8043,'2005-07-28 16:45:44',208,577,'2005-08-01 12:26:44',1,'2006-02-15 21:30:53'), - (8044,'2005-07-28 16:49:12',879,442,'2005-08-02 22:41:12',1,'2006-02-15 21:30:53'), - (8045,'2005-07-28 16:49:38',3427,368,'2005-08-03 15:42:38',1,'2006-02-15 21:30:53'), - (8046,'2005-07-28 16:49:41',2873,120,'2005-07-31 21:33:41',1,'2006-02-15 21:30:53'), - (8047,'2005-07-28 16:49:43',2936,292,'2005-08-03 14:48:43',2,'2006-02-15 21:30:53'), - (8048,'2005-07-28 16:50:26',2721,182,'2005-08-06 19:20:26',1,'2006-02-15 21:30:53'), - (8049,'2005-07-28 16:51:58',673,42,'2005-07-31 22:18:58',1,'2006-02-15 21:30:53'), - (8050,'2005-07-28 16:55:47',1864,488,'2005-08-02 13:20:47',1,'2006-02-15 21:30:53'), - (8051,'2005-07-28 16:56:16',4405,192,'2005-07-29 22:48:16',1,'2006-02-15 21:30:53'), - (8052,'2005-07-28 16:57:31',2460,166,'2005-08-03 18:03:31',2,'2006-02-15 21:30:53'), - (8053,'2005-07-28 16:59:41',1511,526,'2005-08-03 22:28:41',2,'2006-02-15 21:30:53'), - (8054,'2005-07-28 17:02:18',1062,225,'2005-08-06 11:55:18',1,'2006-02-15 21:30:53'), - (8055,'2005-07-28 17:02:32',4162,304,'2005-07-31 22:05:32',2,'2006-02-15 21:30:53'), - (8056,'2005-07-28 17:04:15',4018,589,'2005-08-03 19:11:15',2,'2006-02-15 21:30:53'), - (8057,'2005-07-28 17:07:13',4177,483,'2005-08-03 16:25:13',1,'2006-02-15 21:30:53'), - (8058,'2005-07-28 17:07:49',2148,404,'2005-08-03 22:57:49',1,'2006-02-15 21:30:53'), - (8059,'2005-07-28 17:09:59',2611,372,'2005-07-31 15:42:59',2,'2006-02-15 21:30:53'), - (8060,'2005-07-28 17:10:02',3765,577,'2005-08-05 17:11:02',1,'2006-02-15 21:30:53'), - (8061,'2005-07-28 17:12:53',650,467,'2005-08-05 13:56:53',2,'2006-02-15 21:30:53'), - (8062,'2005-07-28 17:15:06',1384,317,'2005-07-30 16:56:06',2,'2006-02-15 21:30:53'), - (8063,'2005-07-28 17:15:11',935,163,'2005-08-04 16:45:11',1,'2006-02-15 21:30:53'), - (8064,'2005-07-28 17:15:38',3788,488,'2005-08-04 18:04:38',2,'2006-02-15 21:30:53'), - (8065,'2005-07-28 17:15:48',413,220,'2005-08-04 15:49:48',2,'2006-02-15 21:30:53'), - (8066,'2005-07-28 17:20:09',3208,462,'2005-07-31 18:36:09',2,'2006-02-15 21:30:53'), - (8067,'2005-07-28 17:20:17',3923,209,'2005-07-29 21:55:17',1,'2006-02-15 21:30:53'), - (8068,'2005-07-28 17:22:28',209,216,'2005-07-29 12:24:28',2,'2006-02-15 21:30:53'), - (8069,'2005-07-28 17:23:46',2822,178,'2005-07-30 16:19:46',1,'2006-02-15 21:30:53'), - (8070,'2005-07-28 17:26:56',1606,89,'2005-08-01 17:33:56',1,'2006-02-15 21:30:53'), - (8071,'2005-07-28 17:27:48',2582,131,'2005-08-03 11:48:48',2,'2006-02-15 21:30:53'), - (8072,'2005-07-28 17:27:59',2347,99,'2005-07-30 19:08:59',1,'2006-02-15 21:30:53'), - (8073,'2005-07-28 17:29:02',630,314,'2005-08-01 22:17:02',2,'2006-02-15 21:30:53'), - (8074,'2005-07-28 17:33:39',1558,1,'2005-07-29 20:17:39',1,'2006-02-15 21:30:53'), - (8075,'2005-07-28 17:37:28',2175,61,'2005-07-29 11:56:28',2,'2006-02-15 21:30:53'), - (8076,'2005-07-28 17:45:58',214,17,'2005-08-04 18:07:58',2,'2006-02-15 21:30:53'), - (8077,'2005-07-28 17:54:35',3253,122,'2005-07-29 19:28:35',2,'2006-02-15 21:30:53'), - (8078,'2005-07-28 17:54:42',3839,407,'2005-07-30 18:18:42',2,'2006-02-15 21:30:53'), - (8079,'2005-07-28 17:58:36',3564,432,'2005-07-29 14:48:36',2,'2006-02-15 21:30:53'), - (8080,'2005-07-28 18:05:06',3035,406,'2005-07-29 22:44:06',2,'2006-02-15 21:30:53'), - (8081,'2005-07-28 18:06:46',4404,362,'2005-08-04 18:54:46',1,'2006-02-15 21:30:53'), - (8082,'2005-07-28 18:08:02',3089,423,'2005-08-04 14:33:02',2,'2006-02-15 21:30:53'), - (8083,'2005-07-28 18:09:48',2187,30,'2005-08-04 21:47:48',2,'2006-02-15 21:30:53'), - (8084,'2005-07-28 18:11:58',911,571,'2005-08-03 23:41:58',2,'2006-02-15 21:30:53'), - (8085,'2005-07-28 18:13:15',3059,552,'2005-08-04 13:45:15',2,'2006-02-15 21:30:53'), - (8086,'2005-07-28 18:17:14',1182,3,'2005-07-30 18:22:14',2,'2006-02-15 21:30:53'), - (8087,'2005-07-28 18:21:16',1913,295,'2005-08-03 12:38:16',2,'2006-02-15 21:30:53'), - (8088,'2005-07-28 18:23:49',2590,343,'2005-08-06 23:25:49',2,'2006-02-15 21:30:53'), - (8089,'2005-07-28 18:26:47',1414,50,'2005-08-03 21:28:47',1,'2006-02-15 21:30:53'), - (8090,'2005-07-28 18:27:29',1336,387,'2005-08-02 14:08:29',2,'2006-02-15 21:30:53'), - (8091,'2005-07-28 18:27:29',3025,126,'2005-08-01 19:45:29',2,'2006-02-15 21:30:53'), - (8092,'2005-07-28 18:28:07',2034,167,'2005-07-30 19:17:07',2,'2006-02-15 21:30:53'), - (8093,'2005-07-28 18:29:16',1427,533,'2005-08-05 21:49:16',1,'2006-02-15 21:30:53'), - (8094,'2005-07-28 18:30:28',4276,432,'2005-08-05 17:37:28',2,'2006-02-15 21:30:53'), - (8095,'2005-07-28 18:32:40',2685,42,'2005-08-06 23:45:40',1,'2006-02-15 21:30:53'), - (8096,'2005-07-28 18:32:46',502,506,'2005-08-06 15:00:46',1,'2006-02-15 21:30:53'), - (8097,'2005-07-28 18:32:49',2719,436,'2005-08-06 16:09:49',1,'2006-02-15 21:30:53'), - (8098,'2005-07-28 18:34:20',1757,41,'2005-07-31 19:07:20',2,'2006-02-15 21:30:53'), - (8099,'2005-07-28 18:35:12',3694,36,'2005-07-30 15:44:12',2,'2006-02-15 21:30:53'), - (8100,'2005-07-28 18:43:11',2859,11,'2005-08-02 15:56:11',2,'2006-02-15 21:30:53'), - (8101,'2005-07-28 18:47:23',731,6,'2005-07-31 16:23:23',1,'2006-02-15 21:30:53'), - (8102,'2005-07-28 18:49:43',4505,237,'2005-08-03 23:04:43',2,'2006-02-15 21:30:53'), - (8103,'2005-07-28 18:50:14',4472,397,'2005-08-04 16:53:14',1,'2006-02-15 21:30:53'), - (8104,'2005-07-28 18:59:36',1080,533,'2005-08-03 22:05:36',2,'2006-02-15 21:30:53'), - (8105,'2005-07-28 18:59:46',1316,314,'2005-07-29 22:51:46',1,'2006-02-15 21:30:53'), - (8106,'2005-07-28 19:02:46',963,137,'2005-07-30 20:48:46',2,'2006-02-15 21:30:53'), - (8107,'2005-07-28 19:03:16',1318,518,'2005-08-05 17:18:16',2,'2006-02-15 21:30:53'), - (8108,'2005-07-28 19:07:38',1600,295,'2005-08-03 15:13:38',2,'2006-02-15 21:30:53'), - (8109,'2005-07-28 19:07:44',652,407,'2005-07-31 14:59:44',1,'2006-02-15 21:30:53'), - (8110,'2005-07-28 19:07:45',1244,225,'2005-08-04 22:12:45',1,'2006-02-15 21:30:53'), - (8111,'2005-07-28 19:10:03',3226,148,'2005-07-29 22:25:03',1,'2006-02-15 21:30:53'), - (8112,'2005-07-28 19:11:07',2444,528,'2005-08-03 18:41:07',1,'2006-02-15 21:30:53'), - (8113,'2005-07-28 19:14:00',4269,541,'2005-08-06 00:05:00',2,'2006-02-15 21:30:53'), - (8114,'2005-07-28 19:14:06',815,509,'2005-08-05 13:16:06',1,'2006-02-15 21:30:53'), - (8115,'2005-07-28 19:14:17',2080,106,'2005-08-03 14:58:17',2,'2006-02-15 21:30:53'), - (8116,'2005-07-28 19:20:07',4497,1,'2005-07-29 22:54:07',1,'2006-02-15 21:30:53'), - (8117,'2005-07-28 19:20:16',1502,300,'2005-08-05 23:55:16',1,'2006-02-15 21:30:53'), - (8118,'2005-07-28 19:22:22',331,566,'2005-08-01 22:13:22',1,'2006-02-15 21:30:53'), - (8119,'2005-07-28 19:23:15',1542,398,'2005-08-04 15:53:15',2,'2006-02-15 21:30:53'), - (8120,'2005-07-28 19:24:24',3993,235,'2005-07-31 14:31:24',2,'2006-02-15 21:30:53'), - (8121,'2005-07-28 19:25:45',2229,363,'2005-08-02 13:30:45',2,'2006-02-15 21:30:53'), - (8122,'2005-07-28 19:27:37',2141,18,'2005-07-29 19:48:37',2,'2006-02-15 21:30:53'), - (8123,'2005-07-28 19:28:23',2256,138,'2005-08-04 19:41:23',1,'2006-02-15 21:30:53'), - (8124,'2005-07-28 19:28:58',1187,357,'2005-07-31 00:45:58',1,'2006-02-15 21:30:53'), - (8125,'2005-07-28 19:31:48',4330,96,'2005-07-30 01:09:48',1,'2006-02-15 21:30:53'), - (8126,'2005-07-28 19:32:41',719,537,'2005-08-05 00:33:41',2,'2006-02-15 21:30:53'), - (8127,'2005-07-28 19:45:19',4265,20,'2005-07-31 22:07:19',2,'2006-02-15 21:30:53'), - (8128,'2005-07-28 19:46:06',2872,71,'2005-08-06 16:10:06',2,'2006-02-15 21:30:53'), - (8129,'2005-07-28 19:47:02',2546,345,'2005-07-31 21:33:02',2,'2006-02-15 21:30:53'), - (8130,'2005-07-28 19:48:15',4055,499,'2005-08-05 14:18:15',2,'2006-02-15 21:30:53'), - (8131,'2005-07-28 19:55:21',437,281,'2005-08-02 21:52:21',2,'2006-02-15 21:30:53'), - (8132,'2005-07-28 19:57:31',1303,562,'2005-08-02 22:16:31',2,'2006-02-15 21:30:53'), - (8133,'2005-07-28 20:01:06',849,461,'2005-08-01 20:01:06',1,'2006-02-15 21:30:53'), - (8134,'2005-07-28 20:01:23',1695,41,'2005-08-03 01:00:23',2,'2006-02-15 21:30:53'), - (8135,'2005-07-28 20:03:25',1339,164,'2005-08-03 01:28:25',2,'2006-02-15 21:30:53'), - (8136,'2005-07-28 20:05:48',3434,429,'2005-08-01 20:31:48',2,'2006-02-15 21:30:53'), - (8137,'2005-07-28 20:07:18',3188,312,'2005-08-03 17:41:18',1,'2006-02-15 21:30:53'), - (8138,'2005-07-28 20:12:17',1258,371,'2005-08-01 15:21:17',2,'2006-02-15 21:30:53'), - (8139,'2005-07-28 20:16:30',3651,177,'2005-08-03 18:00:30',2,'2006-02-15 21:30:53'), - (8140,'2005-07-28 20:17:50',4270,119,'2005-07-30 18:07:50',1,'2006-02-15 21:30:53'), - (8141,'2005-07-28 20:21:19',361,523,'2005-07-30 19:16:19',2,'2006-02-15 21:30:53'), - (8142,'2005-07-28 20:21:54',1075,322,'2005-07-31 18:39:54',2,'2006-02-15 21:30:53'), - (8143,'2005-07-28 20:23:11',3629,429,'2005-08-01 18:17:11',1,'2006-02-15 21:30:53'), - (8144,'2005-07-28 20:30:55',3556,320,'2005-07-31 18:10:55',2,'2006-02-15 21:30:53'), - (8145,'2005-07-28 20:34:41',937,198,'2005-08-05 15:28:41',2,'2006-02-15 21:30:53'), - (8146,'2005-07-28 20:37:36',2430,476,'2005-07-31 16:03:36',2,'2006-02-15 21:30:53'), - (8147,'2005-07-28 20:37:56',628,228,'2005-07-30 18:26:56',1,'2006-02-15 21:30:53'), - (8148,'2005-07-28 20:39:47',537,347,'2005-08-02 16:29:47',1,'2006-02-15 21:30:53'), - (8149,'2005-07-28 20:48:12',1790,591,'2005-08-01 20:07:12',2,'2006-02-15 21:30:53'), - (8150,'2005-07-28 20:50:41',3489,497,'2005-08-02 00:43:41',1,'2006-02-15 21:30:53'), - (8151,'2005-07-28 20:50:52',4370,495,'2005-07-31 14:50:52',1,'2006-02-15 21:30:53'), - (8152,'2005-07-28 20:53:05',2557,46,'2005-08-06 20:03:05',2,'2006-02-15 21:30:53'), - (8153,'2005-07-28 20:55:49',2173,347,'2005-08-01 15:56:49',2,'2006-02-15 21:30:53'), - (8154,'2005-07-28 20:56:18',1180,285,'2005-08-01 21:56:18',2,'2006-02-15 21:30:53'), - (8155,'2005-07-28 20:57:06',3023,428,'2005-08-02 18:40:06',2,'2006-02-15 21:30:53'), - (8156,'2005-07-28 20:59:04',1977,257,'2005-08-01 01:52:04',1,'2006-02-15 21:30:53'), - (8157,'2005-07-28 21:06:45',915,566,'2005-08-04 16:06:45',1,'2006-02-15 21:30:53'), - (8158,'2005-07-28 21:08:46',4327,458,'2005-08-01 21:50:46',2,'2006-02-15 21:30:53'), - (8159,'2005-07-28 21:09:28',1118,47,'2005-08-04 15:34:28',1,'2006-02-15 21:30:53'), - (8160,'2005-07-28 21:10:30',2446,138,'2005-08-05 16:52:30',2,'2006-02-15 21:30:53'), - (8161,'2005-07-28 21:11:00',848,555,'2005-08-03 23:32:00',1,'2006-02-15 21:30:53'), - (8162,'2005-07-28 21:11:46',4393,107,'2005-08-04 18:26:46',1,'2006-02-15 21:30:53'), - (8163,'2005-07-28 21:11:48',1919,157,'2005-07-31 18:30:48',1,'2006-02-15 21:30:53'), - (8164,'2005-07-28 21:17:19',1674,461,'2005-07-30 21:12:19',2,'2006-02-15 21:30:53'), - (8165,'2005-07-28 21:23:06',3460,197,'2005-08-01 21:32:06',1,'2006-02-15 21:30:53'), - (8166,'2005-07-28 21:23:33',3906,42,'2005-08-03 21:07:33',2,'2006-02-15 21:30:53'), - (8167,'2005-07-28 21:25:45',3181,311,'2005-08-04 18:04:45',1,'2006-02-15 21:30:53'), - (8168,'2005-07-28 21:28:32',1120,365,'2005-07-30 02:10:32',1,'2006-02-15 21:30:53'), - (8169,'2005-07-28 21:29:46',4086,366,'2005-08-06 22:29:46',1,'2006-02-15 21:30:53'), - (8170,'2005-07-28 21:32:29',2495,40,'2005-08-03 22:02:29',1,'2006-02-15 21:30:53'), - (8171,'2005-07-28 21:32:57',3380,296,'2005-07-30 21:19:57',1,'2006-02-15 21:30:53'), - (8172,'2005-07-28 21:34:36',1237,329,'2005-08-06 23:53:36',1,'2006-02-15 21:30:53'), - (8173,'2005-07-28 21:35:44',4377,332,'2005-08-06 19:15:44',2,'2006-02-15 21:30:53'), - (8174,'2005-07-28 21:36:52',465,359,'2005-08-04 00:32:52',1,'2006-02-15 21:30:53'), - (8175,'2005-07-28 21:38:16',641,429,'2005-08-07 01:34:16',2,'2006-02-15 21:30:53'), - (8176,'2005-07-28 21:42:08',3527,347,'2005-08-03 22:59:08',2,'2006-02-15 21:30:53'), - (8177,'2005-07-28 21:43:54',3696,122,'2005-08-02 22:38:54',2,'2006-02-15 21:30:53'), - (8178,'2005-07-28 21:54:31',2825,503,'2005-08-02 23:56:31',2,'2006-02-15 21:30:53'), - (8179,'2005-07-28 22:05:13',2902,578,'2005-07-30 21:57:13',2,'2006-02-15 21:30:53'), - (8180,'2005-07-28 22:05:24',3236,281,'2005-08-01 19:09:24',1,'2006-02-15 21:30:53'), - (8181,'2005-07-28 22:18:38',357,522,'2005-08-06 02:43:38',2,'2006-02-15 21:30:53'), - (8182,'2005-07-28 22:19:12',4120,427,'2005-08-01 22:40:12',2,'2006-02-15 21:30:53'), - (8183,'2005-07-28 22:21:07',1545,119,'2005-08-04 19:20:07',2,'2006-02-15 21:30:53'), - (8184,'2005-07-28 22:22:35',1249,160,'2005-07-31 19:30:35',1,'2006-02-15 21:30:53'), - (8185,'2005-07-28 22:23:49',2452,568,'2005-07-31 00:07:49',1,'2006-02-15 21:30:53'), - (8186,'2005-07-28 22:30:27',4255,102,'2005-07-31 21:08:27',1,'2006-02-15 21:30:53'), - (8187,'2005-07-28 22:33:53',945,87,'2005-08-03 03:54:53',1,'2006-02-15 21:30:53'), - (8188,'2005-07-28 22:34:12',3826,10,'2005-08-01 02:32:12',2,'2006-02-15 21:30:53'), - (8189,'2005-07-28 22:36:26',3515,361,'2005-08-04 00:12:26',2,'2006-02-15 21:30:53'), - (8190,'2005-07-28 22:47:06',2290,267,'2005-08-04 21:51:06',1,'2006-02-15 21:30:53'), - (8191,'2005-07-28 22:47:14',1777,508,'2005-07-31 23:13:14',2,'2006-02-15 21:30:53'), - (8192,'2005-07-28 22:49:11',255,552,'2005-07-30 04:13:11',1,'2006-02-15 21:30:53'), - (8193,'2005-07-28 22:50:50',2402,15,'2005-08-01 04:14:50',2,'2006-02-15 21:30:53'), - (8194,'2005-07-28 22:51:44',1148,424,'2005-07-29 17:13:44',1,'2006-02-15 21:30:53'), - (8195,'2005-07-28 22:52:58',3989,590,'2005-08-04 02:12:58',1,'2006-02-15 21:30:53'), - (8196,'2005-07-28 22:56:11',3435,21,'2005-08-06 04:53:11',1,'2006-02-15 21:30:53'), - (8197,'2005-07-28 23:04:10',4126,407,'2005-08-05 00:06:10',2,'2006-02-15 21:30:53'), - (8198,'2005-07-28 23:08:05',1767,356,'2005-08-06 00:43:05',2,'2006-02-15 21:30:53'), - (8199,'2005-07-28 23:10:25',404,471,'2005-08-04 23:30:25',1,'2006-02-15 21:30:53'), - (8200,'2005-07-28 23:10:46',353,185,'2005-07-29 18:35:46',1,'2006-02-15 21:30:53'), - (8201,'2005-07-28 23:10:48',220,567,'2005-08-01 00:50:48',2,'2006-02-15 21:30:53'), - (8202,'2005-07-28 23:11:45',3802,75,'2005-08-03 21:57:45',2,'2006-02-15 21:30:53'), - (8203,'2005-07-28 23:14:56',3878,100,'2005-07-31 04:19:56',2,'2006-02-15 21:30:53'), - (8204,'2005-07-28 23:18:29',2472,398,'2005-08-02 04:49:29',1,'2006-02-15 21:30:53'), - (8205,'2005-07-28 23:18:48',2944,434,'2005-07-30 00:37:48',2,'2006-02-15 21:30:53'), - (8206,'2005-07-28 23:20:31',2979,422,'2005-08-04 21:36:31',1,'2006-02-15 21:30:53'), - (8207,'2005-07-28 23:26:31',1195,475,'2005-08-06 03:26:31',1,'2006-02-15 21:30:53'), - (8208,'2005-07-28 23:26:35',1362,530,'2005-08-01 23:00:35',2,'2006-02-15 21:30:53'), - (8209,'2005-07-28 23:29:28',2484,127,'2005-08-07 04:22:28',2,'2006-02-15 21:30:53'), - (8210,'2005-07-28 23:31:05',3424,300,'2005-08-06 17:36:05',1,'2006-02-15 21:30:53'), - (8211,'2005-07-28 23:34:22',1859,193,'2005-08-04 21:18:22',1,'2006-02-15 21:30:53'), - (8212,'2005-07-28 23:37:23',1305,159,'2005-08-04 04:33:23',2,'2006-02-15 21:30:53'), - (8213,'2005-07-28 23:37:33',3816,17,'2005-07-31 00:32:33',2,'2006-02-15 21:30:53'), - (8214,'2005-07-28 23:37:57',352,509,'2005-08-07 00:29:57',2,'2006-02-15 21:30:53'), - (8215,'2005-07-28 23:43:56',2921,437,'2005-08-03 19:30:56',2,'2006-02-15 21:30:53'), - (8216,'2005-07-28 23:43:59',2211,254,'2005-08-06 05:05:59',1,'2006-02-15 21:30:53'), - (8217,'2005-07-28 23:44:13',3747,206,'2005-08-03 21:27:13',2,'2006-02-15 21:30:53'), - (8218,'2005-07-28 23:45:41',2769,578,'2005-08-02 00:14:41',1,'2006-02-15 21:30:53'), - (8219,'2005-07-28 23:46:31',3609,227,'2005-08-03 00:11:31',2,'2006-02-15 21:30:53'), - (8220,'2005-07-28 23:46:41',1061,360,'2005-07-31 22:14:41',2,'2006-02-15 21:30:53'), - (8221,'2005-07-28 23:47:19',3138,496,'2005-08-02 20:42:19',1,'2006-02-15 21:30:53'), - (8222,'2005-07-28 23:51:53',2999,278,'2005-08-05 22:48:53',1,'2006-02-15 21:30:53'), - (8223,'2005-07-28 23:56:01',4508,282,'2005-08-03 22:27:01',1,'2006-02-15 21:30:53'), - (8224,'2005-07-28 23:59:02',1995,467,'2005-08-02 04:54:02',1,'2006-02-15 21:30:53'), - (8225,'2005-07-28 23:59:29',3631,41,'2005-07-30 03:27:29',2,'2006-02-15 21:30:53'), - (8226,'2005-07-29 00:01:04',3541,368,'2005-08-01 19:08:04',2,'2006-02-15 21:30:53'), - (8227,'2005-07-29 00:02:22',269,167,'2005-07-31 04:05:22',1,'2006-02-15 21:30:53'), - (8228,'2005-07-29 00:08:58',1955,72,'2005-08-03 00:12:58',2,'2006-02-15 21:30:53'), - (8229,'2005-07-29 00:09:08',4272,498,'2005-07-31 19:29:08',2,'2006-02-15 21:30:53'), - (8230,'2005-07-29 00:12:59',1937,2,'2005-08-06 19:52:59',2,'2006-02-15 21:30:53'), - (8231,'2005-07-29 00:14:37',1083,331,'2005-07-31 19:12:37',1,'2006-02-15 21:30:53'), - (8232,'2005-07-29 00:14:37',3255,526,'2005-08-06 00:57:37',1,'2006-02-15 21:30:53'), - (8233,'2005-07-29 00:16:23',1640,93,'2005-08-03 05:17:23',2,'2006-02-15 21:30:53'), - (8234,'2005-07-29 00:19:20',644,227,'2005-08-03 19:16:20',2,'2006-02-15 21:30:53'), - (8235,'2005-07-29 00:22:56',1581,320,'2005-08-03 04:03:56',2,'2006-02-15 21:30:53'), - (8236,'2005-07-29 00:27:04',1901,369,'2005-07-31 05:02:04',2,'2006-02-15 21:30:53'), - (8237,'2005-07-29 00:29:56',608,441,'2005-08-06 03:10:56',1,'2006-02-15 21:30:53'), - (8238,'2005-07-29 00:30:06',2941,320,'2005-08-02 22:52:06',2,'2006-02-15 21:30:53'), - (8239,'2005-07-29 00:31:39',3951,549,'2005-07-29 19:33:39',1,'2006-02-15 21:30:53'), - (8240,'2005-07-29 00:33:32',1975,509,'2005-08-05 21:25:32',2,'2006-02-15 21:30:53'), - (8241,'2005-07-29 00:33:36',4297,26,'2005-08-03 01:31:36',1,'2006-02-15 21:30:53'), - (8242,'2005-07-29 00:34:27',509,99,'2005-08-05 23:13:27',2,'2006-02-15 21:30:53'), - (8243,'2005-07-29 00:35:33',1873,481,'2005-08-04 06:02:33',2,'2006-02-15 21:30:53'), - (8244,'2005-07-29 00:35:34',1552,175,'2005-08-05 04:18:34',2,'2006-02-15 21:30:53'), - (8245,'2005-07-29 00:37:09',3330,555,'2005-08-05 05:48:09',2,'2006-02-15 21:30:53'), - (8246,'2005-07-29 00:38:41',1724,146,'2005-08-05 06:28:41',2,'2006-02-15 21:30:53'), - (8247,'2005-07-29 00:41:38',2607,539,'2005-08-06 20:29:38',2,'2006-02-15 21:30:53'), - (8248,'2005-07-29 00:41:56',2017,272,'2005-08-05 18:53:56',2,'2006-02-15 21:30:53'), - (8249,'2005-07-29 00:48:44',3331,57,'2005-08-07 04:25:44',2,'2006-02-15 21:30:53'), - (8250,'2005-07-29 00:49:15',4519,533,'2005-08-04 02:53:15',1,'2006-02-15 21:30:53'), - (8251,'2005-07-29 00:50:14',2317,408,'2005-08-03 23:52:14',2,'2006-02-15 21:30:53'), - (8252,'2005-07-29 00:54:17',3312,257,'2005-07-31 20:34:17',1,'2006-02-15 21:30:53'), - (8253,'2005-07-29 00:57:06',2388,76,'2005-08-07 01:46:06',1,'2006-02-15 21:30:53'), - (8254,'2005-07-29 00:59:31',1787,392,'2005-08-03 23:43:31',2,'2006-02-15 21:30:53'), - (8255,'2005-07-29 01:02:30',3715,224,'2005-08-01 22:39:30',1,'2006-02-15 21:30:53'), - (8256,'2005-07-29 01:02:42',1483,537,'2005-07-31 22:29:42',2,'2006-02-15 21:30:53'), - (8257,'2005-07-29 01:03:20',3024,566,'2005-08-04 21:54:20',1,'2006-02-15 21:30:53'), - (8258,'2005-07-29 01:03:42',1379,370,'2005-08-04 22:08:42',2,'2006-02-15 21:30:53'), - (8259,'2005-07-29 01:05:16',343,274,'2005-08-01 23:27:16',2,'2006-02-15 21:30:53'), - (8260,'2005-07-29 01:11:00',4249,366,'2005-08-06 00:36:00',1,'2006-02-15 21:30:53'), - (8261,'2005-07-29 01:11:05',1915,50,'2005-08-04 03:13:05',2,'2006-02-15 21:30:53'), - (8262,'2005-07-29 01:11:18',1341,563,'2005-08-02 05:17:18',2,'2006-02-15 21:30:53'), - (8263,'2005-07-29 01:11:23',28,5,'2005-07-31 01:53:23',2,'2006-02-15 21:30:53'), - (8264,'2005-07-29 01:18:50',2987,175,'2005-08-03 05:31:50',2,'2006-02-15 21:30:53'), - (8265,'2005-07-29 01:20:15',2389,409,'2005-08-06 19:32:15',2,'2006-02-15 21:30:53'), - (8266,'2005-07-29 01:20:16',1972,196,'2005-07-30 04:31:16',1,'2006-02-15 21:30:53'), - (8267,'2005-07-29 01:21:02',4107,131,'2005-08-04 19:34:02',2,'2006-02-15 21:30:53'), - (8268,'2005-07-29 01:23:23',4239,421,'2005-08-05 01:36:23',1,'2006-02-15 21:30:53'), - (8269,'2005-07-29 01:26:54',2778,376,'2005-08-04 22:42:54',1,'2006-02-15 21:30:53'), - (8270,'2005-07-29 01:27:22',3565,282,'2005-07-29 20:55:22',1,'2006-02-15 21:30:53'), - (8271,'2005-07-29 01:27:44',83,481,'2005-08-07 05:01:44',2,'2006-02-15 21:30:53'), - (8272,'2005-07-29 01:29:51',70,346,'2005-08-03 21:56:51',2,'2006-02-15 21:30:53'), - (8273,'2005-07-29 01:33:16',4244,532,'2005-08-06 04:26:16',2,'2006-02-15 21:30:53'), - (8274,'2005-07-29 01:34:32',2634,340,'2005-08-01 20:15:32',2,'2006-02-15 21:30:53'), - (8275,'2005-07-29 01:35:47',4432,336,'2005-07-30 02:16:47',1,'2006-02-15 21:30:53'), - (8276,'2005-07-29 01:38:43',2451,466,'2005-08-03 23:00:43',1,'2006-02-15 21:30:53'), - (8277,'2005-07-29 01:38:53',1296,13,'2005-08-04 07:09:53',2,'2006-02-15 21:30:53'), - (8278,'2005-07-29 01:42:55',768,265,'2005-08-05 01:55:55',2,'2006-02-15 21:30:53'), - (8279,'2005-07-29 01:43:37',3838,176,'2005-08-03 02:36:37',1,'2006-02-15 21:30:53'), - (8280,'2005-07-29 01:45:51',1208,195,'2005-08-05 22:51:51',2,'2006-02-15 21:30:53'), - (8281,'2005-07-29 01:46:00',899,441,'2005-08-04 23:09:00',1,'2006-02-15 21:30:53'), - (8282,'2005-07-29 01:49:04',980,462,'2005-08-05 01:51:04',2,'2006-02-15 21:30:53'), - (8283,'2005-07-29 01:52:22',2002,300,'2005-08-05 03:22:22',2,'2006-02-15 21:30:53'), - (8284,'2005-07-29 01:56:40',4371,446,'2005-08-07 07:15:40',2,'2006-02-15 21:30:53'), - (8285,'2005-07-29 02:00:18',678,56,'2005-08-03 20:43:18',2,'2006-02-15 21:30:53'), - (8286,'2005-07-29 02:02:46',4092,87,'2005-08-06 06:00:46',1,'2006-02-15 21:30:53'), - (8287,'2005-07-29 02:03:58',812,178,'2005-08-07 02:11:58',1,'2006-02-15 21:30:53'), - (8288,'2005-07-29 02:04:22',1822,55,'2005-08-05 04:21:22',2,'2006-02-15 21:30:53'), - (8289,'2005-07-29 02:23:24',4579,459,'2005-08-06 03:23:24',2,'2006-02-15 21:30:53'), - (8290,'2005-07-29 02:24:08',3823,462,'2005-08-03 01:02:08',2,'2006-02-15 21:30:53'), - (8291,'2005-07-29 02:28:25',2817,455,'2005-08-03 20:57:25',2,'2006-02-15 21:30:53'), - (8292,'2005-07-29 02:29:36',4003,192,'2005-08-07 08:06:36',1,'2006-02-15 21:30:53'), - (8293,'2005-07-29 02:30:50',831,71,'2005-08-04 03:09:50',2,'2006-02-15 21:30:53'), - (8294,'2005-07-29 02:32:41',1811,520,'2005-08-02 06:28:41',1,'2006-02-15 21:30:53'), - (8295,'2005-07-29 02:42:14',2065,406,'2005-07-30 22:22:14',1,'2006-02-15 21:30:53'), - (8296,'2005-07-29 02:43:25',2543,88,'2005-08-01 00:23:25',1,'2006-02-15 21:30:53'), - (8297,'2005-07-29 02:45:46',3774,349,'2005-07-31 20:49:46',1,'2006-02-15 21:30:53'), - (8298,'2005-07-29 02:47:36',952,493,'2005-08-05 07:58:36',2,'2006-02-15 21:30:53'), - (8299,'2005-07-29 02:56:00',1797,173,'2005-07-30 22:35:00',2,'2006-02-15 21:30:53'), - (8300,'2005-07-29 02:57:59',4364,222,'2005-08-05 01:12:59',2,'2006-02-15 21:30:53'), - (8301,'2005-07-29 03:00:08',562,101,'2005-08-01 04:26:08',2,'2006-02-15 21:30:53'), - (8302,'2005-07-29 03:01:24',1314,103,'2005-07-30 01:08:24',2,'2006-02-15 21:30:53'), - (8303,'2005-07-29 03:05:56',1620,574,'2005-08-04 06:13:56',1,'2006-02-15 21:30:53'), - (8304,'2005-07-29 03:08:30',4431,119,'2005-08-02 03:04:30',2,'2006-02-15 21:30:53'), - (8305,'2005-07-29 03:08:47',3916,566,'2005-08-06 07:49:47',2,'2006-02-15 21:30:53'), - (8306,'2005-07-29 03:12:26',1708,232,'2005-08-01 23:26:26',1,'2006-02-15 21:30:53'), - (8307,'2005-07-29 03:18:34',3197,39,'2005-08-06 05:51:34',2,'2006-02-15 21:30:53'), - (8308,'2005-07-29 03:22:15',601,582,'2005-08-04 21:38:15',2,'2006-02-15 21:30:53'), - (8309,'2005-07-29 03:22:20',2250,446,'2005-08-01 06:30:20',1,'2006-02-15 21:30:53'), - (8310,'2005-07-29 03:25:56',2637,238,'2005-08-06 23:18:56',2,'2006-02-15 21:30:53'), - (8311,'2005-07-29 03:26:07',3623,63,'2005-08-02 01:46:07',1,'2006-02-15 21:30:53'), - (8312,'2005-07-29 03:32:38',3996,143,'2005-07-31 02:12:38',1,'2006-02-15 21:30:53'), - (8313,'2005-07-29 03:34:21',2736,91,'2005-08-02 01:32:21',1,'2006-02-15 21:30:53'), - (8314,'2005-07-29 03:35:04',2182,118,'2005-08-06 08:43:04',2,'2006-02-15 21:30:53'), - (8315,'2005-07-29 03:37:07',1420,135,'2005-07-29 23:22:07',2,'2006-02-15 21:30:53'), - (8316,'2005-07-29 03:38:49',4118,549,'2005-08-03 07:41:49',1,'2006-02-15 21:30:53'), - (8317,'2005-07-29 03:39:07',3898,415,'2005-08-03 00:14:07',1,'2006-02-15 21:30:53'), - (8318,'2005-07-29 03:44:30',4524,167,'2005-07-30 05:03:30',2,'2006-02-15 21:30:53'), - (8319,'2005-07-29 03:44:52',747,280,'2005-08-01 00:35:52',2,'2006-02-15 21:30:53'), - (8320,'2005-07-29 03:49:58',1285,513,'2005-08-03 01:00:58',1,'2006-02-15 21:30:53'), - (8321,'2005-07-29 03:50:54',1875,354,'2005-08-01 02:08:54',1,'2006-02-15 21:30:53'), - (8322,'2005-07-29 03:52:49',301,541,'2005-08-02 22:53:49',1,'2006-02-15 21:30:53'), - (8323,'2005-07-29 03:52:59',2766,87,'2005-08-06 01:49:59',2,'2006-02-15 21:30:53'), - (8324,'2005-07-29 03:56:05',1467,98,'2005-08-02 01:41:05',1,'2006-02-15 21:30:53'), - (8325,'2005-07-29 03:57:27',932,362,'2005-08-06 22:30:27',1,'2006-02-15 21:30:53'), - (8326,'2005-07-29 03:58:49',108,1,'2005-08-01 05:16:49',2,'2006-02-15 21:30:53'), - (8327,'2005-07-29 04:00:52',2928,317,'2005-07-31 08:27:52',1,'2006-02-15 21:30:53'), - (8328,'2005-07-29 04:06:24',4454,314,'2005-08-03 22:24:24',1,'2006-02-15 21:30:53'), - (8329,'2005-07-29 04:06:33',3468,108,'2005-08-06 01:46:33',1,'2006-02-15 21:30:53'), - (8330,'2005-07-29 04:09:07',2294,412,'2005-08-05 05:00:07',2,'2006-02-15 21:30:53'), - (8331,'2005-07-29 04:13:29',18,148,'2005-08-04 07:09:29',1,'2006-02-15 21:30:53'), - (8332,'2005-07-29 04:16:00',1142,217,'2005-08-03 03:34:00',1,'2006-02-15 21:30:53'), - (8333,'2005-07-29 04:16:40',823,494,'2005-08-02 10:10:40',2,'2006-02-15 21:30:53'), - (8334,'2005-07-29 04:18:25',982,154,'2005-08-07 07:18:25',2,'2006-02-15 21:30:53'), - (8335,'2005-07-29 04:18:25',1719,143,'2005-07-31 08:12:25',2,'2006-02-15 21:30:53'), - (8336,'2005-07-29 04:20:42',2120,210,'2005-08-05 10:17:42',1,'2006-02-15 21:30:53'), - (8337,'2005-07-29 04:31:55',752,157,'2005-08-02 02:38:55',2,'2006-02-15 21:30:53'), - (8338,'2005-07-29 04:40:39',2257,389,'2005-08-07 04:40:39',2,'2006-02-15 21:30:53'), - (8339,'2005-07-29 04:41:13',1870,129,'2005-07-30 09:01:13',2,'2006-02-15 21:30:53'), - (8340,'2005-07-29 04:41:44',1553,386,'2005-08-07 10:33:44',1,'2006-02-15 21:30:53'), - (8341,'2005-07-29 04:42:01',4208,309,'2005-08-04 00:58:01',1,'2006-02-15 21:30:53'), - (8342,'2005-07-29 04:45:05',3301,572,'2005-08-01 07:20:05',1,'2006-02-15 21:30:53'), - (8343,'2005-07-29 04:45:16',4267,439,'2005-08-02 03:37:16',1,'2006-02-15 21:30:53'), - (8344,'2005-07-29 04:45:25',221,257,'2005-08-06 01:53:25',1,'2006-02-15 21:30:53'), - (8345,'2005-07-29 04:47:37',1034,129,'2005-08-02 07:25:37',1,'2006-02-15 21:30:53'), - (8346,'2005-07-29 04:48:22',2475,385,'2005-08-01 04:22:22',1,'2006-02-15 21:30:53'), - (8347,'2005-07-29 04:49:25',4407,157,'2005-07-31 00:57:25',2,'2006-02-15 21:30:53'), - (8348,'2005-07-29 04:49:26',4533,174,'2005-08-05 03:26:26',2,'2006-02-15 21:30:53'), - (8349,'2005-07-29 04:50:22',534,416,'2005-08-05 08:50:22',1,'2006-02-15 21:30:53'), - (8350,'2005-07-29 04:50:39',3726,513,'2005-07-31 05:36:39',2,'2006-02-15 21:30:53'), - (8351,'2005-07-29 04:50:53',2963,202,'2005-07-30 07:28:53',2,'2006-02-15 21:30:53'), - (8352,'2005-07-29 04:52:01',2710,168,'2005-08-06 07:39:01',2,'2006-02-15 21:30:53'), - (8353,'2005-07-29 04:52:10',26,585,'2005-07-30 04:01:10',1,'2006-02-15 21:30:53'), - (8354,'2005-07-29 04:56:26',4476,579,'2005-08-01 08:04:26',2,'2006-02-15 21:30:53'), - (8355,'2005-07-29 04:57:43',4569,270,'2005-08-03 06:25:43',1,'2006-02-15 21:30:53'), - (8356,'2005-07-29 04:58:56',2951,483,'2005-08-06 03:07:56',1,'2006-02-15 21:30:53'), - (8357,'2005-07-29 04:59:44',892,76,'2005-08-01 04:26:44',1,'2006-02-15 21:30:53'), - (8358,'2005-07-29 05:00:58',1449,372,'2005-08-01 02:49:58',2,'2006-02-15 21:30:53'), - (8359,'2005-07-29 05:02:12',140,531,'2005-08-04 08:52:12',1,'2006-02-15 21:30:53'), - (8360,'2005-07-29 05:08:00',4135,62,'2005-08-02 00:40:00',1,'2006-02-15 21:30:53'), - (8361,'2005-07-29 05:08:57',3404,360,'2005-08-03 02:49:57',1,'2006-02-15 21:30:53'), - (8362,'2005-07-29 05:09:11',2287,223,'2005-08-04 00:08:11',2,'2006-02-15 21:30:53'), - (8363,'2005-07-29 05:10:08',1607,302,'2005-08-06 00:11:08',1,'2006-02-15 21:30:53'), - (8364,'2005-07-29 05:10:31',1361,362,'2005-07-30 04:02:31',2,'2006-02-15 21:30:53'), - (8365,'2005-07-29 05:11:00',53,280,'2005-07-30 05:30:00',2,'2006-02-15 21:30:53'), - (8366,'2005-07-29 05:11:14',479,39,'2005-08-05 01:48:14',1,'2006-02-15 21:30:53'), - (8367,'2005-07-29 05:11:19',4551,383,'2005-08-02 00:35:19',1,'2006-02-15 21:30:53'), - (8368,'2005-07-29 05:15:41',1410,200,'2005-08-07 01:35:41',1,'2006-02-15 21:30:53'), - (8369,'2005-07-29 05:15:42',1456,507,'2005-08-01 03:36:42',2,'2006-02-15 21:30:53'), - (8370,'2005-07-29 05:16:21',1206,121,'2005-08-06 23:16:21',1,'2006-02-15 21:30:53'), - (8371,'2005-07-29 05:16:35',2466,396,'2005-07-31 01:49:35',1,'2006-02-15 21:30:53'), - (8372,'2005-07-29 05:18:08',754,523,'2005-08-06 09:39:08',1,'2006-02-15 21:30:53'), - (8373,'2005-07-29 05:19:53',2070,457,'2005-08-04 04:39:53',1,'2006-02-15 21:30:53'), - (8374,'2005-07-29 05:24:02',1084,589,'2005-08-05 03:55:02',1,'2006-02-15 21:30:53'), - (8375,'2005-07-29 05:25:30',3634,125,'2005-08-04 01:43:30',2,'2006-02-15 21:30:53'), - (8376,'2005-07-29 05:25:32',3588,43,'2005-08-01 07:42:32',2,'2006-02-15 21:30:53'), - (8377,'2005-07-29 05:27:40',270,73,'2005-07-30 02:52:40',2,'2006-02-15 21:30:53'), - (8378,'2005-07-29 05:28:35',3500,347,'2005-08-02 05:55:35',1,'2006-02-15 21:30:53'), - (8379,'2005-07-29 05:29:40',3907,193,'2005-08-06 05:56:40',2,'2006-02-15 21:30:53'), - (8380,'2005-07-29 05:31:29',2279,145,'2005-08-02 01:27:29',1,'2006-02-15 21:30:53'), - (8381,'2005-07-29 05:31:44',865,313,'2005-07-31 09:20:44',1,'2006-02-15 21:30:53'), - (8382,'2005-07-29 05:33:21',317,238,'2005-08-03 03:38:21',1,'2006-02-15 21:30:53'), - (8383,'2005-07-29 05:36:47',3809,495,'2005-08-03 05:53:47',2,'2006-02-15 21:30:53'), - (8384,'2005-07-29 05:38:43',3807,227,'2005-08-01 07:31:43',2,'2006-02-15 21:30:53'), - (8385,'2005-07-29 05:39:16',4108,233,'2005-08-03 00:30:16',1,'2006-02-15 21:30:53'), - (8386,'2005-07-29 05:45:30',388,435,'2005-08-05 03:56:30',2,'2006-02-15 21:30:53'), - (8387,'2005-07-29 05:47:27',910,428,'2005-07-31 06:26:27',1,'2006-02-15 21:30:53'), - (8388,'2005-07-29 05:48:15',770,178,'2005-08-05 06:24:15',2,'2006-02-15 21:30:53'), - (8389,'2005-07-29 05:50:09',1241,133,'2005-08-06 05:15:09',2,'2006-02-15 21:30:53'), - (8390,'2005-07-29 05:52:26',581,32,'2005-08-04 08:12:26',2,'2006-02-15 21:30:53'), - (8391,'2005-07-29 05:52:50',2134,36,'2005-08-03 04:45:50',2,'2006-02-15 21:30:53'), - (8392,'2005-07-29 06:00:27',1323,65,'2005-08-02 00:30:27',2,'2006-02-15 21:30:53'), - (8393,'2005-07-29 06:02:11',3369,504,'2005-08-07 03:23:11',1,'2006-02-15 21:30:53'), - (8394,'2005-07-29 06:02:14',3933,148,'2005-08-03 08:15:14',1,'2006-02-15 21:30:53'), - (8395,'2005-07-29 06:03:30',1471,535,'2005-07-31 09:08:30',2,'2006-02-15 21:30:53'), - (8396,'2005-07-29 06:07:00',3911,516,'2005-07-30 05:32:00',2,'2006-02-15 21:30:53'), - (8397,'2005-07-29 06:09:35',3542,518,'2005-08-01 02:08:35',1,'2006-02-15 21:30:53'), - (8398,'2005-07-29 06:12:40',348,220,'2005-08-02 05:01:40',2,'2006-02-15 21:30:53'), - (8399,'2005-07-29 06:20:18',233,286,'2005-08-04 01:26:18',1,'2006-02-15 21:30:53'), - (8400,'2005-07-29 06:23:56',3680,573,'2005-07-31 02:41:56',2,'2006-02-15 21:30:53'), - (8401,'2005-07-29 06:25:08',3121,232,'2005-08-01 06:49:08',1,'2006-02-15 21:30:53'), - (8402,'2005-07-29 06:25:45',186,47,'2005-08-07 10:48:45',1,'2006-02-15 21:30:53'), - (8403,'2005-07-29 06:26:39',1360,163,'2005-08-02 05:37:39',1,'2006-02-15 21:30:53'), - (8404,'2005-07-29 06:27:01',2086,65,'2005-08-07 04:33:01',1,'2006-02-15 21:30:53'), - (8405,'2005-07-29 06:28:19',2164,76,'2005-08-07 08:14:19',2,'2006-02-15 21:30:53'), - (8406,'2005-07-29 06:34:45',2047,274,'2005-08-06 02:28:45',1,'2006-02-15 21:30:53'), - (8407,'2005-07-29 06:37:02',2985,336,'2005-08-04 03:13:02',1,'2006-02-15 21:30:53'), - (8408,'2005-07-29 06:40:40',1841,90,'2005-07-30 10:02:40',2,'2006-02-15 21:30:53'), - (8409,'2005-07-29 06:41:22',4314,303,'2005-07-31 11:21:22',1,'2006-02-15 21:30:53'), - (8410,'2005-07-29 06:41:36',3448,277,'2005-08-02 08:38:36',1,'2006-02-15 21:30:53'), - (8411,'2005-07-29 06:44:23',3085,412,'2005-08-07 03:56:23',1,'2006-02-15 21:30:53'), - (8412,'2005-07-29 06:44:50',743,312,'2005-08-06 05:04:50',1,'2006-02-15 21:30:53'), - (8413,'2005-07-29 06:47:39',2762,104,'2005-08-02 09:15:39',2,'2006-02-15 21:30:53'), - (8414,'2005-07-29 06:48:35',1337,433,'2005-08-06 10:54:35',2,'2006-02-15 21:30:53'), - (8415,'2005-07-29 06:52:27',2903,128,'2005-08-02 10:40:27',1,'2006-02-15 21:30:53'), - (8416,'2005-07-29 06:52:54',1999,315,'2005-08-05 09:50:54',2,'2006-02-15 21:30:53'), - (8417,'2005-07-29 06:53:36',750,227,'2005-08-06 09:31:36',2,'2006-02-15 21:30:53'), - (8418,'2005-07-29 06:54:21',3081,355,'2005-08-05 06:50:21',2,'2006-02-15 21:30:53'), - (8419,'2005-07-29 06:54:48',4574,37,'2005-08-06 05:02:48',1,'2006-02-15 21:30:53'), - (8420,'2005-07-29 07:00:45',4184,376,'2005-08-06 02:20:45',1,'2006-02-15 21:30:53'), - (8421,'2005-07-29 07:00:47',3399,588,'2005-08-02 08:03:47',2,'2006-02-15 21:30:53'), - (8422,'2005-07-29 07:02:55',3104,7,'2005-08-03 12:35:55',1,'2006-02-15 21:30:53'), - (8423,'2005-07-29 07:02:57',187,468,'2005-08-06 04:59:57',1,'2006-02-15 21:30:53'), - (8424,'2005-07-29 07:06:03',366,138,'2005-08-06 12:00:03',2,'2006-02-15 21:30:53'), - (8425,'2005-07-29 07:06:21',3491,486,'2005-08-05 07:57:21',2,'2006-02-15 21:30:53'), - (8426,'2005-07-29 07:07:48',1840,564,'2005-08-07 08:56:48',2,'2006-02-15 21:30:53'), - (8427,'2005-07-29 07:08:36',1624,441,'2005-07-30 11:54:36',2,'2006-02-15 21:30:53'), - (8428,'2005-07-29 07:10:14',2545,398,'2005-08-06 02:29:14',2,'2006-02-15 21:30:53'), - (8429,'2005-07-29 07:11:49',2456,588,'2005-07-31 02:45:49',1,'2006-02-15 21:30:53'), - (8430,'2005-07-29 07:12:17',3377,219,'2005-08-03 09:53:17',2,'2006-02-15 21:30:53'), - (8431,'2005-07-29 07:12:48',1583,193,'2005-08-01 10:03:48',1,'2006-02-15 21:30:53'), - (8432,'2005-07-29 07:13:33',3896,572,'2005-07-30 03:14:33',1,'2006-02-15 21:30:53'), - (8433,'2005-07-29 07:19:16',1957,125,'2005-08-05 03:29:16',1,'2006-02-15 21:30:53'), - (8434,'2005-07-29 07:20:14',40,141,'2005-07-30 08:50:14',2,'2006-02-15 21:30:53'), - (8435,'2005-07-29 07:20:16',4462,520,'2005-08-02 09:54:16',2,'2006-02-15 21:30:53'), - (8436,'2005-07-29 07:21:20',2702,598,'2005-07-31 12:56:20',2,'2006-02-15 21:30:53'), - (8437,'2005-07-29 07:23:43',2118,96,'2005-08-04 10:52:43',1,'2006-02-15 21:30:53'), - (8438,'2005-07-29 07:25:42',720,97,'2005-08-04 07:39:42',1,'2006-02-15 21:30:53'), - (8439,'2005-07-29 07:28:43',182,224,'2005-08-04 11:22:43',1,'2006-02-15 21:30:53'), - (8440,'2005-07-29 07:31:26',489,175,'2005-08-04 07:04:26',1,'2006-02-15 21:30:53'), - (8441,'2005-07-29 07:33:05',1000,526,'2005-08-04 04:00:05',2,'2006-02-15 21:30:53'), - (8442,'2005-07-29 07:33:07',4345,185,'2005-08-03 03:09:07',2,'2006-02-15 21:30:53'), - (8443,'2005-07-29 07:33:12',1059,251,'2005-08-02 01:36:12',2,'2006-02-15 21:30:53'), - (8444,'2005-07-29 07:36:13',3329,213,'2005-08-05 04:55:13',1,'2006-02-15 21:30:53'), - (8445,'2005-07-29 07:37:48',2792,384,'2005-08-04 10:43:48',1,'2006-02-15 21:30:53'), - (8446,'2005-07-29 07:38:10',1593,235,'2005-08-06 04:39:10',2,'2006-02-15 21:30:53'), - (8447,'2005-07-29 07:38:14',930,11,'2005-08-05 02:27:14',2,'2006-02-15 21:30:53'), - (8448,'2005-07-29 07:41:54',4349,393,'2005-08-02 13:12:54',1,'2006-02-15 21:30:53'), - (8449,'2005-07-29 07:42:25',2610,273,'2005-07-30 06:07:25',2,'2006-02-15 21:30:53'), - (8450,'2005-07-29 07:44:05',484,401,'2005-08-01 12:23:05',1,'2006-02-15 21:30:53'), - (8451,'2005-07-29 07:44:56',3309,495,'2005-08-06 02:29:56',1,'2006-02-15 21:30:53'), - (8452,'2005-07-29 07:45:00',4312,16,'2005-08-05 09:46:00',2,'2006-02-15 21:30:53'), - (8453,'2005-07-29 07:46:29',2907,32,'2005-07-30 07:07:29',1,'2006-02-15 21:30:53'), - (8454,'2005-07-29 07:49:04',159,244,'2005-08-03 04:43:04',2,'2006-02-15 21:30:53'), - (8455,'2005-07-29 07:53:06',4043,404,'2005-08-05 05:29:06',1,'2006-02-15 21:30:53'), - (8456,'2005-07-29 07:58:31',671,388,'2005-08-05 07:17:31',2,'2006-02-15 21:30:53'), - (8457,'2005-07-29 07:59:03',3371,239,'2005-08-04 08:42:03',1,'2006-02-15 21:30:53'), - (8458,'2005-07-29 08:05:09',3857,317,'2005-08-02 03:42:09',1,'2006-02-15 21:30:53'), - (8459,'2005-07-29 08:05:40',3441,144,'2005-08-04 03:24:40',1,'2006-02-15 21:30:53'), - (8460,'2005-07-29 08:08:03',2826,329,'2005-08-07 06:53:03',2,'2006-02-15 21:30:53'), - (8461,'2005-07-29 08:11:31',3373,399,'2005-08-06 09:23:31',1,'2006-02-15 21:30:53'), - (8462,'2005-07-29 08:15:42',3633,200,'2005-08-04 03:57:42',1,'2006-02-15 21:30:53'), - (8463,'2005-07-29 08:17:51',466,203,'2005-08-03 13:41:51',1,'2006-02-15 21:30:53'), - (8464,'2005-07-29 08:18:20',2343,28,'2005-08-03 04:50:20',2,'2006-02-15 21:30:53'), - (8465,'2005-07-29 08:20:49',4109,238,'2005-07-31 04:02:49',2,'2006-02-15 21:30:53'), - (8466,'2005-07-29 08:24:47',4010,285,'2005-07-31 03:43:47',1,'2006-02-15 21:30:53'), - (8467,'2005-07-29 08:25:35',263,326,'2005-08-07 03:28:35',2,'2006-02-15 21:30:53'), - (8468,'2005-07-29 08:26:04',1338,282,'2005-08-02 07:18:04',1,'2006-02-15 21:30:53'), - (8469,'2005-07-29 08:26:27',2754,408,'2005-08-05 04:26:27',2,'2006-02-15 21:30:53'), - (8470,'2005-07-29 08:28:50',3717,159,'2005-07-30 13:40:50',2,'2006-02-15 21:30:53'), - (8471,'2005-07-29 08:32:11',1520,533,'2005-08-01 13:55:11',1,'2006-02-15 21:30:53'), - (8472,'2005-07-29 08:36:22',2975,196,'2005-08-02 07:55:22',1,'2006-02-15 21:30:53'), - (8473,'2005-07-29 08:36:53',4141,311,'2005-07-31 12:14:53',1,'2006-02-15 21:30:53'), - (8474,'2005-07-29 08:36:56',4346,323,'2005-08-01 03:07:56',1,'2006-02-15 21:30:53'), - (8475,'2005-07-29 08:37:41',3695,260,'2005-08-04 10:03:41',2,'2006-02-15 21:30:53'), - (8476,'2005-07-29 08:39:12',3741,470,'2005-08-06 03:03:12',1,'2006-02-15 21:30:53'), - (8477,'2005-07-29 08:40:36',3571,354,'2005-08-06 08:28:36',2,'2006-02-15 21:30:53'), - (8478,'2005-07-29 08:40:36',3742,162,'2005-08-01 10:23:36',1,'2006-02-15 21:30:53'), - (8479,'2005-07-29 08:42:04',1990,195,'2005-08-01 03:10:04',1,'2006-02-15 21:30:53'), - (8480,'2005-07-29 08:44:46',3512,467,'2005-08-05 13:22:46',1,'2006-02-15 21:30:53'), - (8481,'2005-07-29 08:45:57',1739,454,'2005-08-01 12:50:57',2,'2006-02-15 21:30:53'), - (8482,'2005-07-29 08:46:33',2686,405,'2005-07-31 11:07:33',2,'2006-02-15 21:30:53'), - (8483,'2005-07-29 08:50:18',2786,186,'2005-08-03 06:46:18',1,'2006-02-15 21:30:53'), - (8484,'2005-07-29 08:51:59',742,260,'2005-07-30 09:07:59',1,'2006-02-15 21:30:53'), - (8485,'2005-07-29 08:53:09',3172,420,'2005-07-30 11:25:09',1,'2006-02-15 21:30:53'), - (8486,'2005-07-29 08:53:38',1759,221,'2005-08-01 14:12:38',2,'2006-02-15 21:30:53'), - (8487,'2005-07-29 08:53:49',1893,82,'2005-07-31 09:10:49',2,'2006-02-15 21:30:53'), - (8488,'2005-07-29 08:57:38',2176,478,'2005-08-02 04:16:38',1,'2006-02-15 21:30:53'), - (8489,'2005-07-29 08:58:03',375,265,'2005-08-02 07:50:03',2,'2006-02-15 21:30:53'), - (8490,'2005-07-29 08:59:25',1943,367,'2005-08-05 14:02:25',2,'2006-02-15 21:30:53'), - (8491,'2005-07-29 09:02:13',1806,242,'2005-08-03 04:32:13',1,'2006-02-15 21:30:53'), - (8492,'2005-07-29 09:04:17',4553,266,'2005-08-02 08:48:17',2,'2006-02-15 21:30:53'), - (8493,'2005-07-29 09:04:31',664,390,'2005-08-04 05:17:31',2,'2006-02-15 21:30:53'), - (8494,'2005-07-29 09:04:32',3524,92,'2005-07-31 10:30:32',1,'2006-02-15 21:30:53'), - (8495,'2005-07-29 09:05:06',344,51,'2005-08-06 05:48:06',2,'2006-02-15 21:30:53'), - (8496,'2005-07-29 09:05:33',765,114,'2005-08-02 06:32:33',1,'2006-02-15 21:30:53'), - (8497,'2005-07-29 09:07:03',1837,593,'2005-08-02 09:18:03',2,'2006-02-15 21:30:53'), - (8498,'2005-07-29 09:07:38',4468,190,'2005-08-04 07:01:38',1,'2006-02-15 21:30:53'), - (8499,'2005-07-29 09:10:41',219,42,'2005-08-05 10:01:41',1,'2006-02-15 21:30:53'), - (8500,'2005-07-29 09:12:01',4516,348,'2005-07-31 10:15:01',1,'2006-02-15 21:30:53'), - (8501,'2005-07-29 09:12:51',1052,309,'2005-07-30 11:19:51',2,'2006-02-15 21:30:53'), - (8502,'2005-07-29 09:15:41',2149,457,'2005-07-30 10:41:41',1,'2006-02-15 21:30:53'), - (8503,'2005-07-29 09:16:50',1164,240,'2005-08-04 11:34:50',2,'2006-02-15 21:30:53'), - (8504,'2005-07-29 09:20:16',2295,561,'2005-08-07 04:27:16',2,'2006-02-15 21:30:53'), - (8505,'2005-07-29 09:22:52',1454,346,'2005-08-06 05:23:52',1,'2006-02-15 21:30:53'), - (8506,'2005-07-29 09:23:52',3714,506,'2005-07-31 04:42:52',1,'2006-02-15 21:30:53'), - (8507,'2005-07-29 09:29:44',3273,524,'2005-08-07 05:48:44',2,'2006-02-15 21:30:53'), - (8508,'2005-07-29 09:34:38',4173,484,'2005-08-01 14:52:38',2,'2006-02-15 21:30:53'), - (8509,'2005-07-29 09:38:19',1332,80,'2005-08-04 11:45:19',1,'2006-02-15 21:30:53'), - (8510,'2005-07-29 09:41:38',7,487,'2005-08-05 05:30:38',2,'2006-02-15 21:30:53'), - (8511,'2005-07-29 09:42:42',3667,598,'2005-08-06 14:22:42',2,'2006-02-15 21:30:53'), - (8512,'2005-07-29 09:48:03',4132,351,'2005-07-31 13:40:03',1,'2006-02-15 21:30:53'), - (8513,'2005-07-29 09:52:59',3156,142,'2005-07-31 12:05:59',1,'2006-02-15 21:30:53'), - (8514,'2005-07-29 09:53:33',3755,99,'2005-07-30 06:34:33',2,'2006-02-15 21:30:53'), - (8515,'2005-07-29 09:55:20',1071,477,'2005-08-05 07:08:20',2,'2006-02-15 21:30:53'), - (8516,'2005-07-29 10:00:03',981,337,'2005-08-02 09:34:03',1,'2006-02-15 21:30:53'), - (8517,'2005-07-29 10:00:48',2064,274,'2005-08-06 14:37:48',2,'2006-02-15 21:30:53'), - (8518,'2005-07-29 10:05:27',2311,385,'2005-08-02 05:39:27',1,'2006-02-15 21:30:53'), - (8519,'2005-07-29 10:09:43',1163,588,'2005-08-03 08:14:43',2,'2006-02-15 21:30:53'), - (8520,'2005-07-29 10:10:02',2440,103,'2005-08-02 05:25:02',2,'2006-02-15 21:30:53'), - (8521,'2005-07-29 10:12:45',2608,402,'2005-08-07 04:37:45',2,'2006-02-15 21:30:53'), - (8522,'2005-07-29 10:16:19',3636,363,'2005-08-06 14:58:19',1,'2006-02-15 21:30:53'), - (8523,'2005-07-29 10:18:27',3614,558,'2005-08-04 09:31:27',1,'2006-02-15 21:30:53'), - (8524,'2005-07-29 10:20:07',2110,124,'2005-08-03 04:30:07',1,'2006-02-15 21:30:53'), - (8525,'2005-07-29 10:20:19',1322,111,'2005-07-30 05:49:19',2,'2006-02-15 21:30:53'), - (8526,'2005-07-29 10:20:48',575,88,'2005-08-03 14:15:48',1,'2006-02-15 21:30:53'), - (8527,'2005-07-29 10:21:00',709,168,'2005-08-05 16:05:00',2,'2006-02-15 21:30:53'), - (8528,'2005-07-29 10:24:22',2107,428,'2005-08-07 10:34:22',1,'2006-02-15 21:30:53'), - (8529,'2005-07-29 10:24:31',1055,501,'2005-08-01 16:06:31',1,'2006-02-15 21:30:53'), - (8530,'2005-07-29 10:26:14',4528,233,'2005-07-31 10:24:14',1,'2006-02-15 21:30:53'), - (8531,'2005-07-29 10:26:15',1631,427,'2005-08-06 09:28:15',1,'2006-02-15 21:30:53'), - (8532,'2005-07-29 10:26:56',3045,546,'2005-08-02 13:23:56',2,'2006-02-15 21:30:53'), - (8533,'2005-07-29 10:29:16',551,542,'2005-08-01 06:52:16',1,'2006-02-15 21:30:53'), - (8534,'2005-07-29 10:30:13',4029,516,'2005-08-02 04:47:13',1,'2006-02-15 21:30:53'), - (8535,'2005-07-29 10:32:33',4489,536,'2005-07-31 05:46:33',1,'2006-02-15 21:30:53'), - (8536,'2005-07-29 10:37:23',4510,219,'2005-07-31 07:21:23',2,'2006-02-15 21:30:53'), - (8537,'2005-07-29 10:44:54',1012,447,'2005-08-06 14:55:54',2,'2006-02-15 21:30:53'), - (8538,'2005-07-29 10:45:17',3768,500,'2005-08-04 15:12:17',1,'2006-02-15 21:30:53'), - (8539,'2005-07-29 10:48:24',599,325,'2005-07-30 06:29:24',2,'2006-02-15 21:30:53'), - (8540,'2005-07-29 10:52:51',539,180,'2005-08-07 11:44:51',2,'2006-02-15 21:30:53'), - (8541,'2005-07-29 10:55:01',976,340,'2005-07-31 10:53:01',1,'2006-02-15 21:30:53'), - (8542,'2005-07-29 11:01:50',792,213,'2005-07-30 08:19:50',1,'2006-02-15 21:30:53'), - (8543,'2005-07-29 11:01:57',403,346,'2005-08-03 06:03:57',1,'2006-02-15 21:30:53'), - (8544,'2005-07-29 11:02:08',412,542,'2005-08-06 15:06:08',2,'2006-02-15 21:30:53'), - (8545,'2005-07-29 11:07:04',3261,3,'2005-08-06 13:30:04',2,'2006-02-15 21:30:53'), - (8546,'2005-07-29 11:08:48',3224,418,'2005-08-03 16:50:48',2,'2006-02-15 21:30:53'), - (8547,'2005-07-29 11:10:15',875,438,'2005-08-03 12:50:15',1,'2006-02-15 21:30:53'), - (8548,'2005-07-29 11:11:33',3366,14,'2005-08-04 11:52:33',2,'2006-02-15 21:30:53'), - (8549,'2005-07-29 11:12:13',1866,206,'2005-08-06 06:04:13',2,'2006-02-15 21:30:53'), - (8550,'2005-07-29 11:12:37',1340,70,'2005-07-30 15:05:37',2,'2006-02-15 21:30:53'), - (8551,'2005-07-29 11:13:11',2083,340,'2005-08-05 05:17:11',2,'2006-02-15 21:30:53'), - (8552,'2005-07-29 11:14:02',1987,490,'2005-08-05 14:13:02',2,'2006-02-15 21:30:53'), - (8553,'2005-07-29 11:15:36',2645,49,'2005-08-07 16:37:36',1,'2006-02-15 21:30:53'), - (8554,'2005-07-29 11:16:29',1563,582,'2005-07-31 06:38:29',2,'2006-02-15 21:30:53'), - (8555,'2005-07-29 11:18:01',2784,18,'2005-07-30 10:47:01',2,'2006-02-15 21:30:53'), - (8556,'2005-07-29 11:18:27',2793,231,'2005-07-30 05:21:27',2,'2006-02-15 21:30:53'), - (8557,'2005-07-29 11:19:59',1481,459,'2005-08-07 12:50:59',1,'2006-02-15 21:30:53'), - (8558,'2005-07-29 11:24:49',1160,169,'2005-07-31 15:03:49',1,'2006-02-15 21:30:53'), - (8559,'2005-07-29 11:25:54',2078,279,'2005-08-04 10:16:54',2,'2006-02-15 21:30:53'), - (8560,'2005-07-29 11:27:27',3499,430,'2005-08-01 12:05:27',2,'2006-02-15 21:30:53'), - (8561,'2005-07-29 11:29:12',2207,344,'2005-08-05 09:17:12',1,'2006-02-15 21:30:53'), - (8562,'2005-07-29 11:32:13',3595,255,'2005-07-30 08:23:13',2,'2006-02-15 21:30:53'), - (8563,'2005-07-29 11:32:58',61,67,'2005-08-05 07:21:58',2,'2006-02-15 21:30:53'), - (8564,'2005-07-29 11:33:00',2830,316,'2005-08-05 15:35:00',1,'2006-02-15 21:30:53'), - (8565,'2005-07-29 11:35:23',3211,280,'2005-08-06 08:28:23',1,'2006-02-15 21:30:53'), - (8566,'2005-07-29 11:35:46',2011,544,'2005-07-30 13:50:46',1,'2006-02-15 21:30:53'), - (8567,'2005-07-29 11:37:30',1612,594,'2005-08-03 05:58:30',2,'2006-02-15 21:30:53'), - (8568,'2005-07-29 11:38:22',1599,583,'2005-08-04 13:22:22',2,'2006-02-15 21:30:53'), - (8569,'2005-07-29 11:39:17',276,348,'2005-07-31 07:50:17',2,'2006-02-15 21:30:53'), - (8570,'2005-07-29 11:40:08',3094,131,'2005-08-06 10:23:08',1,'2006-02-15 21:30:53'), - (8571,'2005-07-29 11:48:39',1778,407,'2005-08-03 06:35:39',2,'2006-02-15 21:30:53'), - (8572,'2005-07-29 11:51:24',2815,267,'2005-08-02 11:44:24',1,'2006-02-15 21:30:53'), - (8573,'2005-07-29 11:51:25',1637,179,'2005-08-07 08:53:25',1,'2006-02-15 21:30:53'), - (8574,'2005-07-29 11:51:53',2949,71,'2005-08-03 05:59:53',2,'2006-02-15 21:30:53'), - (8575,'2005-07-29 11:52:47',1668,441,'2005-08-03 08:14:47',2,'2006-02-15 21:30:53'), - (8576,'2005-07-29 11:55:01',3552,157,'2005-08-03 08:41:01',2,'2006-02-15 21:30:53'), - (8577,'2005-07-29 11:56:30',520,328,'2005-08-07 15:41:30',1,'2006-02-15 21:30:53'), - (8578,'2005-07-29 11:58:14',3737,148,'2005-08-03 06:25:14',1,'2006-02-15 21:30:53'), - (8579,'2005-07-29 11:59:22',4045,250,'2005-07-30 11:41:22',2,'2006-02-15 21:30:53'), - (8580,'2005-07-29 12:00:27',4040,543,'2005-08-04 16:39:27',1,'2006-02-15 21:30:53'), - (8581,'2005-07-29 12:02:06',2102,254,'2005-08-02 10:32:06',2,'2006-02-15 21:30:53'), - (8582,'2005-07-29 12:03:27',841,162,'2005-08-03 07:02:27',1,'2006-02-15 21:30:53'), - (8583,'2005-07-29 12:04:50',3130,191,'2005-08-04 17:21:50',1,'2006-02-15 21:30:53'), - (8584,'2005-07-29 12:07:53',1656,482,'2005-07-31 09:27:53',1,'2006-02-15 21:30:53'), - (8585,'2005-07-29 12:14:18',512,516,'2005-08-03 08:31:18',2,'2006-02-15 21:30:53'), - (8586,'2005-07-29 12:16:34',2752,374,'2005-08-07 06:48:34',1,'2006-02-15 21:30:53'), - (8587,'2005-07-29 12:18:40',1941,108,'2005-08-03 14:01:40',1,'2006-02-15 21:30:53'), - (8588,'2005-07-29 12:22:20',2858,416,'2005-07-31 10:49:20',1,'2006-02-15 21:30:53'), - (8589,'2005-07-29 12:28:17',1628,293,'2005-08-05 11:40:17',1,'2006-02-15 21:30:53'), - (8590,'2005-07-29 12:32:20',2505,114,'2005-08-07 08:00:20',1,'2006-02-15 21:30:53'), - (8591,'2005-07-29 12:32:33',2568,418,'2005-08-01 16:19:33',2,'2006-02-15 21:30:53'), - (8592,'2005-07-29 12:33:58',1952,271,'2005-08-04 07:14:58',2,'2006-02-15 21:30:53'), - (8593,'2005-07-29 12:38:14',2601,181,'2005-08-07 07:04:14',1,'2006-02-15 21:30:53'), - (8594,'2005-07-29 12:42:13',4155,115,'2005-08-02 07:38:13',1,'2006-02-15 21:30:53'), - (8595,'2005-07-29 12:47:43',3225,423,'2005-08-07 13:51:43',2,'2006-02-15 21:30:53'), - (8596,'2005-07-29 12:48:54',59,233,'2005-08-04 07:19:54',2,'2006-02-15 21:30:53'), - (8597,'2005-07-29 12:55:55',4218,222,'2005-08-05 18:54:55',1,'2006-02-15 21:30:53'), - (8598,'2005-07-29 12:56:59',626,2,'2005-08-01 08:39:59',2,'2006-02-15 21:30:53'), - (8599,'2005-07-29 12:58:52',1169,545,'2005-08-03 08:19:52',1,'2006-02-15 21:30:53'), - (8600,'2005-07-29 13:01:19',1488,226,'2005-07-31 15:40:19',2,'2006-02-15 21:30:53'), - (8601,'2005-07-29 13:03:31',3247,181,'2005-08-06 16:32:31',1,'2006-02-15 21:30:53'), - (8602,'2005-07-29 13:04:27',4002,64,'2005-08-03 12:21:27',2,'2006-02-15 21:30:53'), - (8603,'2005-07-29 13:07:07',3007,594,'2005-08-04 18:32:07',2,'2006-02-15 21:30:53'), - (8604,'2005-07-29 13:07:13',3909,326,'2005-07-31 18:00:13',2,'2006-02-15 21:30:53'), - (8605,'2005-07-29 13:13:34',3805,224,'2005-08-07 08:29:34',1,'2006-02-15 21:30:53'), - (8606,'2005-07-29 13:14:24',4051,340,'2005-07-30 14:52:24',1,'2006-02-15 21:30:53'), - (8607,'2005-07-29 13:18:00',4290,336,'2005-07-30 18:51:00',2,'2006-02-15 21:30:53'), - (8608,'2005-07-29 13:18:52',2976,165,'2005-07-30 19:01:52',2,'2006-02-15 21:30:53'), - (8609,'2005-07-29 13:19:25',3997,354,'2005-08-06 08:33:25',2,'2006-02-15 21:30:53'), - (8610,'2005-07-29 13:25:02',4222,563,'2005-08-03 08:10:02',2,'2006-02-15 21:30:53'), - (8611,'2005-07-29 13:26:21',610,373,'2005-08-07 18:20:21',2,'2006-02-15 21:30:53'), - (8612,'2005-07-29 13:28:20',3518,392,'2005-08-06 14:39:20',2,'2006-02-15 21:30:53'), - (8613,'2005-07-29 13:30:58',394,411,'2005-08-05 16:21:58',2,'2006-02-15 21:30:53'), - (8614,'2005-07-29 13:32:05',604,552,'2005-08-04 15:26:05',1,'2006-02-15 21:30:53'), - (8615,'2005-07-29 13:36:01',4453,15,'2005-08-03 13:15:01',1,'2006-02-15 21:30:53'), - (8616,'2005-07-29 13:39:09',2583,493,'2005-08-01 16:49:09',1,'2006-02-15 21:30:53'), - (8617,'2005-07-29 13:46:14',385,441,'2005-08-06 13:26:14',2,'2006-02-15 21:30:53'), - (8618,'2005-07-29 13:48:20',985,270,'2005-08-06 14:12:20',2,'2006-02-15 21:30:53'), - (8619,'2005-07-29 13:50:08',2169,50,'2005-08-06 13:15:08',1,'2006-02-15 21:30:53'), - (8620,'2005-07-29 13:51:20',3718,306,'2005-08-02 13:05:20',1,'2006-02-15 21:30:53'), - (8621,'2005-07-29 13:52:42',2473,358,'2005-07-30 11:42:42',2,'2006-02-15 21:30:53'), - (8622,'2005-07-29 13:53:28',4076,98,'2005-07-31 16:12:28',2,'2006-02-15 21:30:53'), - (8623,'2005-07-29 13:55:11',458,142,'2005-08-05 11:16:11',1,'2006-02-15 21:30:53'), - (8624,'2005-07-29 13:55:36',4402,439,'2005-08-02 12:23:36',2,'2006-02-15 21:30:53'), - (8625,'2005-07-29 13:59:13',884,410,'2005-08-07 17:56:13',2,'2006-02-15 21:30:53'), - (8626,'2005-07-29 14:03:20',3092,148,'2005-08-02 09:05:20',1,'2006-02-15 21:30:53'), - (8627,'2005-07-29 14:05:12',4235,226,'2005-08-05 16:53:12',2,'2006-02-15 21:30:53'), - (8628,'2005-07-29 14:06:24',4484,550,'2005-08-06 10:42:24',2,'2006-02-15 21:30:53'), - (8629,'2005-07-29 14:06:35',853,567,'2005-08-03 16:59:35',2,'2006-02-15 21:30:53'), - (8630,'2005-07-29 14:07:59',1378,406,'2005-08-03 13:18:59',2,'2006-02-15 21:30:53'), - (8631,'2005-07-29 14:08:06',98,559,'2005-08-05 14:57:06',1,'2006-02-15 21:30:53'), - (8632,'2005-07-29 14:11:25',1666,563,'2005-08-07 15:32:25',1,'2006-02-15 21:30:53'), - (8633,'2005-07-29 14:19:53',3436,534,'2005-08-01 11:31:53',2,'2006-02-15 21:30:53'), - (8634,'2005-07-29 14:19:57',2023,335,'2005-08-07 13:44:57',1,'2006-02-15 21:30:53'), - (8635,'2005-07-29 14:22:48',2894,383,'2005-08-01 11:59:48',2,'2006-02-15 21:30:53'), - (8636,'2005-07-29 14:24:13',4308,252,'2005-08-02 14:39:13',1,'2006-02-15 21:30:53'), - (8637,'2005-07-29 14:30:11',1069,310,'2005-08-04 14:00:11',1,'2006-02-15 21:30:53'), - (8638,'2005-07-29 14:30:23',4060,571,'2005-08-01 10:32:23',1,'2006-02-15 21:30:53'), - (8639,'2005-07-29 14:30:31',3504,290,'2005-08-02 16:04:31',1,'2006-02-15 21:30:53'), - (8640,'2005-07-29 14:34:17',1874,257,'2005-08-01 13:09:17',2,'2006-02-15 21:30:53'), - (8641,'2005-07-29 14:37:30',3199,30,'2005-08-02 19:32:30',2,'2006-02-15 21:30:53'), - (8642,'2005-07-29 14:38:17',3947,522,'2005-08-03 14:41:17',1,'2006-02-15 21:30:53'), - (8643,'2005-07-29 14:45:23',381,59,'2005-08-04 18:42:23',1,'2006-02-15 21:30:53'), - (8644,'2005-07-29 14:45:45',4507,314,'2005-08-03 20:10:45',2,'2006-02-15 21:30:53'), - (8645,'2005-07-29 14:47:45',2532,535,'2005-07-30 14:56:45',2,'2006-02-15 21:30:53'), - (8646,'2005-07-29 14:48:48',89,302,'2005-08-03 18:11:48',2,'2006-02-15 21:30:53'), - (8647,'2005-07-29 14:52:59',556,307,'2005-08-06 11:09:59',2,'2006-02-15 21:30:53'), - (8648,'2005-07-29 14:56:21',160,416,'2005-07-31 16:56:21',2,'2006-02-15 21:30:53'), - (8649,'2005-07-29 14:57:33',789,69,'2005-08-07 09:43:33',2,'2006-02-15 21:30:53'), - (8650,'2005-07-29 14:59:04',1272,134,'2005-08-04 13:13:04',2,'2006-02-15 21:30:53'), - (8651,'2005-07-29 15:02:18',2095,61,'2005-08-07 09:34:18',2,'2006-02-15 21:30:53'), - (8652,'2005-07-29 15:02:54',2729,219,'2005-08-07 17:21:54',2,'2006-02-15 21:30:53'), - (8653,'2005-07-29 15:04:23',4440,230,'2005-08-02 09:39:23',2,'2006-02-15 21:30:53'), - (8654,'2005-07-29 15:04:27',3925,84,'2005-08-07 18:37:27',1,'2006-02-15 21:30:53'), - (8655,'2005-07-29 15:04:42',3986,232,'2005-08-04 11:26:42',1,'2006-02-15 21:30:53'), - (8656,'2005-07-29 15:05:52',1385,460,'2005-07-31 20:57:52',2,'2006-02-15 21:30:53'), - (8657,'2005-07-29 15:09:25',3194,236,'2005-07-31 19:10:25',1,'2006-02-15 21:30:53'), - (8658,'2005-07-29 15:16:37',2033,427,'2005-08-07 20:45:37',2,'2006-02-15 21:30:53'), - (8659,'2005-07-29 15:26:31',558,168,'2005-08-06 19:05:31',2,'2006-02-15 21:30:53'), - (8660,'2005-07-29 15:26:59',3122,566,'2005-08-05 21:04:59',2,'2006-02-15 21:30:53'), - (8661,'2005-07-29 15:28:24',3409,341,'2005-08-05 20:04:24',2,'2006-02-15 21:30:53'), - (8662,'2005-07-29 15:31:33',3758,362,'2005-07-30 09:39:33',2,'2006-02-15 21:30:53'), - (8663,'2005-07-29 15:33:18',1281,214,'2005-07-30 18:03:18',1,'2006-02-15 21:30:53'), - (8664,'2005-07-29 15:36:27',198,102,'2005-08-04 20:11:27',1,'2006-02-15 21:30:53'), - (8665,'2005-07-29 15:39:29',1113,265,'2005-08-01 10:33:29',2,'2006-02-15 21:30:53'), - (8666,'2005-07-29 15:39:38',3669,591,'2005-08-06 17:12:38',1,'2006-02-15 21:30:53'), - (8667,'2005-07-29 15:40:57',3439,25,'2005-07-31 20:59:57',1,'2006-02-15 21:30:53'), - (8668,'2005-07-29 15:41:31',4531,71,'2005-08-01 16:20:31',2,'2006-02-15 21:30:53'), - (8669,'2005-07-29 15:44:55',1667,401,'2005-08-01 14:09:55',2,'2006-02-15 21:30:53'), - (8670,'2005-07-29 15:49:03',2354,446,'2005-08-01 20:19:03',2,'2006-02-15 21:30:53'), - (8671,'2005-07-29 15:49:37',1431,577,'2005-08-05 18:20:37',1,'2006-02-15 21:30:53'), - (8672,'2005-07-29 15:49:48',405,495,'2005-08-06 17:59:48',2,'2006-02-15 21:30:53'), - (8673,'2005-07-29 15:50:14',2167,29,'2005-08-03 18:30:14',1,'2006-02-15 21:30:53'), - (8674,'2005-07-29 15:54:22',1744,412,'2005-07-31 12:15:22',1,'2006-02-15 21:30:53'), - (8675,'2005-07-29 15:56:18',1026,258,'2005-07-30 18:50:18',1,'2006-02-15 21:30:53'), - (8676,'2005-07-29 15:59:06',283,533,'2005-08-05 19:12:06',2,'2006-02-15 21:30:53'), - (8677,'2005-07-29 16:01:13',513,315,'2005-08-07 19:21:13',2,'2006-02-15 21:30:53'), - (8678,'2005-07-29 16:04:00',3991,210,'2005-08-05 12:37:00',1,'2006-02-15 21:30:53'), - (8679,'2005-07-29 16:07:47',3549,536,'2005-08-02 18:37:47',1,'2006-02-15 21:30:53'), - (8680,'2005-07-29 16:08:03',1227,330,'2005-07-31 17:26:03',1,'2006-02-15 21:30:53'), - (8681,'2005-07-29 16:12:01',4004,309,'2005-08-01 18:14:01',2,'2006-02-15 21:30:53'), - (8682,'2005-07-29 16:15:26',4328,348,'2005-08-03 20:15:26',2,'2006-02-15 21:30:53'), - (8683,'2005-07-29 16:15:43',3915,513,'2005-08-07 19:19:43',1,'2006-02-15 21:30:53'), - (8684,'2005-07-29 16:16:33',2457,185,'2005-08-07 12:27:33',2,'2006-02-15 21:30:53'), - (8685,'2005-07-29 16:17:05',1827,321,'2005-08-07 17:44:05',1,'2006-02-15 21:30:53'), - (8686,'2005-07-29 16:17:49',4160,52,'2005-08-01 12:50:49',2,'2006-02-15 21:30:53'), - (8687,'2005-07-29 16:19:17',222,117,'2005-08-01 15:28:17',1,'2006-02-15 21:30:53'), - (8688,'2005-07-29 16:31:32',2263,381,'2005-07-30 12:39:32',1,'2006-02-15 21:30:53'), - (8689,'2005-07-29 16:38:58',824,487,'2005-08-01 17:09:58',2,'2006-02-15 21:30:53'), - (8690,'2005-07-29 16:39:28',1292,291,'2005-08-01 14:03:28',2,'2006-02-15 21:30:53'), - (8691,'2005-07-29 16:41:23',672,446,'2005-08-02 12:32:23',2,'2006-02-15 21:30:53'), - (8692,'2005-07-29 16:43:39',3192,88,'2005-08-01 15:54:39',2,'2006-02-15 21:30:53'), - (8693,'2005-07-29 16:44:13',917,51,'2005-08-01 15:56:13',1,'2006-02-15 21:30:53'), - (8694,'2005-07-29 16:44:48',503,345,'2005-08-06 16:28:48',1,'2006-02-15 21:30:53'), - (8695,'2005-07-29 16:44:55',694,280,'2005-08-07 12:47:55',1,'2006-02-15 21:30:53'), - (8696,'2005-07-29 16:45:18',2553,178,'2005-08-07 18:51:18',1,'2006-02-15 21:30:53'), - (8697,'2005-07-29 16:46:07',443,291,'2005-08-02 19:27:07',2,'2006-02-15 21:30:53'), - (8698,'2005-07-29 16:52:17',2973,324,'2005-08-04 13:20:17',2,'2006-02-15 21:30:53'), - (8699,'2005-07-29 16:53:00',4080,123,'2005-08-07 20:31:00',1,'2006-02-15 21:30:53'), - (8700,'2005-07-29 16:56:01',3710,196,'2005-07-31 16:19:01',2,'2006-02-15 21:30:53'), - (8701,'2005-07-29 17:02:35',3158,245,'2005-08-07 19:55:35',2,'2006-02-15 21:30:53'), - (8702,'2005-07-29 17:04:37',2215,306,'2005-08-05 15:30:37',2,'2006-02-15 21:30:53'), - (8703,'2005-07-29 17:12:44',1065,439,'2005-07-30 19:38:44',1,'2006-02-15 21:30:53'), - (8704,'2005-07-29 17:13:45',2117,107,'2005-08-03 20:03:45',2,'2006-02-15 21:30:53'), - (8705,'2005-07-29 17:14:29',4038,2,'2005-08-02 16:01:29',1,'2006-02-15 21:30:53'), - (8706,'2005-07-29 17:19:15',2886,515,'2005-08-03 22:52:15',1,'2006-02-15 21:30:53'), - (8707,'2005-07-29 17:21:58',2525,157,'2005-08-02 14:47:58',2,'2006-02-15 21:30:53'), - (8708,'2005-07-29 17:24:13',4054,529,'2005-08-04 13:57:13',1,'2006-02-15 21:30:53'), - (8709,'2005-07-29 17:25:54',902,199,'2005-08-02 22:35:54',1,'2006-02-15 21:30:53'), - (8710,'2005-07-29 17:26:03',3391,566,'2005-07-30 19:51:03',1,'2006-02-15 21:30:53'), - (8711,'2005-07-29 17:27:15',3471,575,'2005-07-31 12:57:15',1,'2006-02-15 21:30:53'), - (8712,'2005-07-29 17:30:06',2800,41,'2005-08-03 22:55:06',2,'2006-02-15 21:30:53'), - (8713,'2005-07-29 17:31:19',473,433,'2005-08-02 16:37:19',2,'2006-02-15 21:30:53'), - (8714,'2005-07-29 17:31:40',4547,362,'2005-08-04 16:12:40',2,'2006-02-15 21:30:53'), - (8715,'2005-07-29 17:33:45',860,11,'2005-08-01 17:30:45',1,'2006-02-15 21:30:53'), - (8716,'2005-07-29 17:39:09',2123,48,'2005-08-03 20:26:09',2,'2006-02-15 21:30:53'), - (8717,'2005-07-29 17:40:45',1821,260,'2005-08-01 22:38:45',2,'2006-02-15 21:30:53'), - (8718,'2005-07-29 17:41:14',137,23,'2005-08-01 18:22:14',2,'2006-02-15 21:30:53'), - (8719,'2005-07-29 17:45:45',995,333,'2005-08-01 13:53:45',1,'2006-02-15 21:30:53'), - (8720,'2005-07-29 17:48:32',152,180,'2005-08-04 14:30:32',2,'2006-02-15 21:30:53'), - (8721,'2005-07-29 17:56:21',2416,312,'2005-08-02 21:30:21',2,'2006-02-15 21:30:53'), - (8722,'2005-07-29 17:58:58',1389,401,'2005-08-07 23:40:58',1,'2006-02-15 21:30:53'), - (8723,'2005-07-29 18:03:47',224,39,'2005-08-06 18:53:47',1,'2006-02-15 21:30:53'), - (8724,'2005-07-29 18:05:21',898,372,'2005-08-01 15:41:21',1,'2006-02-15 21:30:53'), - (8725,'2005-07-29 18:08:42',2385,421,'2005-08-04 16:01:42',2,'2006-02-15 21:30:53'), - (8726,'2005-07-29 18:09:22',897,409,'2005-08-06 16:24:22',1,'2006-02-15 21:30:53'), - (8727,'2005-07-29 18:09:57',3031,528,'2005-08-03 13:41:57',2,'2006-02-15 21:30:53'), - (8728,'2005-07-29 18:12:49',973,341,'2005-08-06 22:45:49',1,'2006-02-15 21:30:53'), - (8729,'2005-07-29 18:23:02',3342,83,'2005-07-31 16:09:02',2,'2006-02-15 21:30:53'), - (8730,'2005-07-29 18:23:34',4191,592,'2005-08-01 19:56:34',1,'2006-02-15 21:30:53'), - (8731,'2005-07-29 18:23:57',2638,179,'2005-08-05 19:38:57',1,'2006-02-15 21:30:53'), - (8732,'2005-07-29 18:25:03',1143,346,'2005-08-07 18:56:03',2,'2006-02-15 21:30:53'), - (8733,'2005-07-29 18:26:34',3187,450,'2005-08-03 15:06:34',1,'2006-02-15 21:30:53'), - (8734,'2005-07-29 18:28:15',2374,303,'2005-08-05 23:38:15',1,'2006-02-15 21:30:53'), - (8735,'2005-07-29 18:28:54',2881,570,'2005-08-03 12:43:54',2,'2006-02-15 21:30:53'), - (8736,'2005-07-29 18:31:15',1726,530,'2005-07-30 16:24:15',2,'2006-02-15 21:30:53'), - (8737,'2005-07-29 18:32:13',4154,298,'2005-08-05 21:07:13',2,'2006-02-15 21:30:53'), - (8738,'2005-07-29 18:32:47',3893,210,'2005-08-02 13:05:47',2,'2006-02-15 21:30:53'), - (8739,'2005-07-29 18:34:33',4310,326,'2005-08-02 16:05:33',1,'2006-02-15 21:30:53'), - (8740,'2005-07-29 18:41:31',3781,378,'2005-08-01 18:38:31',1,'2006-02-15 21:30:53'), - (8741,'2005-07-29 18:44:57',165,4,'2005-08-03 18:25:57',2,'2006-02-15 21:30:53'), - (8742,'2005-07-29 18:56:12',918,208,'2005-08-03 16:42:12',1,'2006-02-15 21:30:53'), - (8743,'2005-07-29 18:57:01',2664,282,'2005-07-31 22:09:01',2,'2006-02-15 21:30:53'), - (8744,'2005-07-29 18:58:24',1086,280,'2005-08-05 17:56:24',1,'2006-02-15 21:30:53'), - (8745,'2005-07-29 19:03:05',1766,293,'2005-08-06 14:06:05',2,'2006-02-15 21:30:53'), - (8746,'2005-07-29 19:03:15',2179,275,'2005-07-30 17:06:15',1,'2006-02-15 21:30:53'), - (8747,'2005-07-29 19:07:57',2584,70,'2005-07-30 16:01:57',1,'2006-02-15 21:30:53'), - (8748,'2005-07-29 19:08:37',2184,237,'2005-08-01 16:24:37',1,'2006-02-15 21:30:53'), - (8749,'2005-07-29 19:13:15',2252,456,'2005-08-01 15:02:15',1,'2006-02-15 21:30:53'), - (8750,'2005-07-29 19:14:21',3157,158,'2005-07-31 17:22:21',2,'2006-02-15 21:30:53'), - (8751,'2005-07-29 19:14:39',3467,386,'2005-07-31 23:11:39',1,'2006-02-15 21:30:53'), - (8752,'2005-07-29 19:15:07',4202,253,'2005-07-31 13:27:07',1,'2006-02-15 21:30:53'), - (8753,'2005-07-29 19:15:50',1345,560,'2005-07-31 19:13:50',2,'2006-02-15 21:30:53'), - (8754,'2005-07-29 19:18:30',1678,174,'2005-08-05 18:39:30',2,'2006-02-15 21:30:53'), - (8755,'2005-07-29 19:18:31',1498,372,'2005-07-31 19:20:31',2,'2006-02-15 21:30:53'), - (8756,'2005-07-29 19:18:57',4146,120,'2005-08-02 20:07:57',2,'2006-02-15 21:30:53'), - (8757,'2005-07-29 19:19:10',3473,462,'2005-08-02 13:47:10',2,'2006-02-15 21:30:53'), - (8758,'2005-07-29 19:20:49',2816,442,'2005-08-05 21:57:49',2,'2006-02-15 21:30:53'), - (8759,'2005-07-29 19:22:37',844,209,'2005-08-07 15:36:37',2,'2006-02-15 21:30:53'), - (8760,'2005-07-29 19:22:40',3566,118,'2005-08-05 01:09:40',2,'2006-02-15 21:30:53'), - (8761,'2005-07-29 19:26:47',1317,539,'2005-08-08 00:09:47',1,'2006-02-15 21:30:53'), - (8762,'2005-07-29 19:30:02',2765,463,'2005-08-04 18:38:02',1,'2006-02-15 21:30:53'), - (8763,'2005-07-29 19:38:24',374,510,'2005-08-04 16:51:24',1,'2006-02-15 21:30:53'), - (8764,'2005-07-29 19:39:04',2348,303,'2005-08-01 13:52:04',1,'2006-02-15 21:30:53'), - (8765,'2005-07-29 19:40:08',2631,538,'2005-07-31 14:24:08',2,'2006-02-15 21:30:53'), - (8766,'2005-07-29 19:41:04',3888,338,'2005-08-02 00:41:04',2,'2006-02-15 21:30:53'), - (8767,'2005-07-29 19:42:33',962,467,'2005-08-01 20:52:33',2,'2006-02-15 21:30:53'), - (8768,'2005-07-29 19:43:02',1601,468,'2005-08-03 23:36:02',1,'2006-02-15 21:30:53'), - (8769,'2005-07-29 19:45:33',2180,588,'2005-08-05 22:09:33',2,'2006-02-15 21:30:53'), - (8770,'2005-07-29 19:53:50',4025,499,'2005-08-05 14:22:50',1,'2006-02-15 21:30:53'), - (8771,'2005-07-29 19:54:41',3533,347,'2005-08-03 20:38:41',1,'2006-02-15 21:30:53'), - (8772,'2005-07-29 19:55:25',3526,122,'2005-08-05 18:48:25',1,'2006-02-15 21:30:53'), - (8773,'2005-07-29 19:55:34',131,592,'2005-07-30 14:11:34',1,'2006-02-15 21:30:53'), - (8774,'2005-07-29 20:05:04',315,161,'2005-07-31 14:32:04',1,'2006-02-15 21:30:53'), - (8775,'2005-07-29 20:05:38',1358,44,'2005-07-30 21:13:38',1,'2006-02-15 21:30:53'), - (8776,'2005-07-29 20:07:06',1565,587,'2005-08-06 20:42:06',2,'2006-02-15 21:30:53'), - (8777,'2005-07-29 20:10:21',2462,382,'2005-07-30 20:32:21',2,'2006-02-15 21:30:53'), - (8778,'2005-07-29 20:14:25',3654,582,'2005-08-04 00:50:25',1,'2006-02-15 21:30:53'), - (8779,'2005-07-29 20:15:00',3245,202,'2005-08-03 21:17:00',1,'2006-02-15 21:30:53'), - (8780,'2005-07-29 20:19:45',1095,328,'2005-08-03 22:22:45',2,'2006-02-15 21:30:53'), - (8781,'2005-07-29 20:20:16',3746,235,'2005-07-30 16:19:16',2,'2006-02-15 21:30:53'), - (8782,'2005-07-29 20:29:34',4379,365,'2005-08-04 02:19:34',1,'2006-02-15 21:30:53'), - (8783,'2005-07-29 20:31:28',2316,71,'2005-08-02 19:33:28',2,'2006-02-15 21:30:53'), - (8784,'2005-07-29 20:35:37',2308,580,'2005-07-30 17:22:37',1,'2006-02-15 21:30:53'), - (8785,'2005-07-29 20:36:26',216,42,'2005-07-30 15:06:26',1,'2006-02-15 21:30:53'), - (8786,'2005-07-29 20:39:49',2404,533,'2005-08-03 18:08:49',1,'2006-02-15 21:30:53'), - (8787,'2005-07-29 20:43:49',2366,222,'2005-07-31 15:15:49',1,'2006-02-15 21:30:53'), - (8788,'2005-07-29 20:46:44',3412,121,'2005-08-03 02:25:44',2,'2006-02-15 21:30:53'), - (8789,'2005-07-29 20:47:27',3062,71,'2005-08-05 18:36:27',1,'2006-02-15 21:30:53'), - (8790,'2005-07-29 20:51:41',751,323,'2005-07-30 17:30:41',2,'2006-02-15 21:30:53'), - (8791,'2005-07-29 20:53:23',1677,469,'2005-07-31 18:14:23',1,'2006-02-15 21:30:53'), - (8792,'2005-07-29 20:56:14',3764,203,'2005-08-07 16:44:14',2,'2006-02-15 21:30:53'), - (8793,'2005-07-29 20:57:22',1819,167,'2005-08-02 01:40:22',2,'2006-02-15 21:30:53'), - (8794,'2005-07-29 20:59:38',3509,320,'2005-07-31 00:15:38',2,'2006-02-15 21:30:53'), - (8795,'2005-07-29 21:04:14',1896,302,'2005-07-31 02:58:14',2,'2006-02-15 21:30:53'), - (8796,'2005-07-29 21:09:11',2234,74,'2005-08-04 22:55:11',1,'2006-02-15 21:30:53'), - (8797,'2005-07-29 21:10:37',2929,566,'2005-08-07 21:43:37',1,'2006-02-15 21:30:53'), - (8798,'2005-07-29 21:15:38',800,513,'2005-08-05 02:46:38',2,'2006-02-15 21:30:53'), - (8799,'2005-07-29 21:16:47',326,237,'2005-08-07 22:09:47',2,'2006-02-15 21:30:53'), - (8800,'2005-07-29 21:18:59',2082,207,'2005-08-06 19:59:59',2,'2006-02-15 21:30:53'), - (8801,'2005-07-29 21:25:22',1111,590,'2005-08-01 00:02:22',1,'2006-02-15 21:30:53'), - (8802,'2005-07-29 21:25:51',296,407,'2005-07-30 18:15:51',2,'2006-02-15 21:30:53'), - (8803,'2005-07-29 21:26:24',2814,86,'2005-08-06 18:05:24',2,'2006-02-15 21:30:53'), - (8804,'2005-07-29 21:28:19',4461,363,'2005-08-01 20:15:19',2,'2006-02-15 21:30:53'), - (8805,'2005-07-29 21:29:58',4041,39,'2005-08-04 23:12:58',1,'2006-02-15 21:30:53'), - (8806,'2005-07-29 21:36:34',4085,454,'2005-08-02 00:58:34',1,'2006-02-15 21:30:53'), - (8807,'2005-07-29 21:36:59',2612,396,'2005-08-01 17:40:59',1,'2006-02-15 21:30:53'), - (8808,'2005-07-29 21:39:07',593,173,'2005-08-03 02:09:07',2,'2006-02-15 21:30:53'), - (8809,'2005-07-29 21:42:49',3278,8,'2005-08-04 01:13:49',1,'2006-02-15 21:30:53'), - (8810,'2005-07-29 21:45:19',1233,431,'2005-08-08 01:45:19',2,'2006-02-15 21:30:53'), - (8811,'2005-07-29 21:46:21',2041,245,'2005-08-07 16:51:21',2,'2006-02-15 21:30:53'), - (8812,'2005-07-29 21:47:40',1172,563,'2005-08-04 01:18:40',2,'2006-02-15 21:30:53'), - (8813,'2005-07-29 21:47:55',3442,497,'2005-08-05 01:16:55',1,'2006-02-15 21:30:53'), - (8814,'2005-07-29 21:49:43',1492,487,'2005-08-01 19:56:43',1,'2006-02-15 21:30:53'), - (8815,'2005-07-29 21:51:26',3469,230,'2005-08-03 22:37:26',1,'2006-02-15 21:30:53'), - (8816,'2005-07-29 21:53:00',3984,209,'2005-08-01 21:20:00',1,'2006-02-15 21:30:53'), - (8817,'2005-07-29 22:09:08',2716,175,'2005-08-01 19:07:08',1,'2006-02-15 21:30:53'), - (8818,'2005-07-29 22:14:04',3090,98,'2005-08-07 17:26:04',1,'2006-02-15 21:30:53'), - (8819,'2005-07-29 22:14:26',3100,591,'2005-08-06 23:02:26',2,'2006-02-15 21:30:53'), - (8820,'2005-07-29 22:14:56',481,594,'2005-08-05 23:36:56',2,'2006-02-15 21:30:53'), - (8821,'2005-07-29 22:18:12',52,477,'2005-08-05 22:00:12',1,'2006-02-15 21:30:53'), - (8822,'2005-07-29 22:20:21',744,35,'2005-08-06 03:00:21',2,'2006-02-15 21:30:53'), - (8823,'2005-07-29 22:22:12',951,75,'2005-08-07 21:03:12',1,'2006-02-15 21:30:53'), - (8824,'2005-07-29 22:22:58',3506,164,'2005-07-31 21:02:58',2,'2006-02-15 21:30:53'), - (8825,'2005-07-29 22:24:16',881,101,'2005-08-05 00:27:16',2,'2006-02-15 21:30:53'), - (8826,'2005-07-29 22:30:16',1800,369,'2005-07-30 19:43:16',1,'2006-02-15 21:30:53'), - (8827,'2005-07-29 22:31:24',1517,157,'2005-08-06 21:05:24',2,'2006-02-15 21:30:53'), - (8828,'2005-07-29 22:32:54',1608,547,'2005-07-30 20:41:54',1,'2006-02-15 21:30:53'), - (8829,'2005-07-29 22:33:34',1466,173,'2005-08-05 20:23:34',2,'2006-02-15 21:30:53'), - (8830,'2005-07-29 22:34:35',1751,202,'2005-08-05 20:12:35',2,'2006-02-15 21:30:53'), - (8831,'2005-07-29 22:37:41',3520,13,'2005-08-08 04:28:41',1,'2006-02-15 21:30:53'), - (8832,'2005-07-29 22:37:49',380,125,'2005-08-04 23:32:49',1,'2006-02-15 21:30:53'), - (8833,'2005-07-29 22:39:36',1741,101,'2005-08-05 21:19:36',1,'2006-02-15 21:30:53'), - (8834,'2005-07-29 22:41:48',4477,243,'2005-08-05 03:21:48',2,'2006-02-15 21:30:53'), - (8835,'2005-07-29 22:44:35',2653,237,'2005-08-05 23:28:35',1,'2006-02-15 21:30:53'), - (8836,'2005-07-29 22:46:08',3265,14,'2005-08-02 19:53:08',2,'2006-02-15 21:30:53'), - (8837,'2005-07-29 22:49:00',42,372,'2005-08-07 21:56:00',2,'2006-02-15 21:30:53'), - (8838,'2005-07-29 22:52:23',133,550,'2005-08-03 22:49:23',1,'2006-02-15 21:30:53'), - (8839,'2005-07-29 22:52:34',3440,580,'2005-08-05 03:24:34',2,'2006-02-15 21:30:53'), - (8840,'2005-07-29 22:55:38',1484,295,'2005-08-06 02:11:38',1,'2006-02-15 21:30:53'), - (8841,'2005-07-29 22:56:07',3935,363,'2005-08-01 21:21:07',2,'2006-02-15 21:30:53'), - (8842,'2005-07-29 23:03:40',4203,292,'2005-08-06 23:23:40',2,'2006-02-15 21:30:53'), - (8843,'2005-07-29 23:04:25',406,294,'2005-08-05 22:12:25',1,'2006-02-15 21:30:53'), - (8844,'2005-07-29 23:05:08',327,244,'2005-08-06 00:24:08',2,'2006-02-15 21:30:53'), - (8845,'2005-07-29 23:06:13',3036,543,'2005-08-02 20:16:13',1,'2006-02-15 21:30:53'), - (8846,'2005-07-29 23:10:28',2912,108,'2005-08-03 22:07:28',2,'2006-02-15 21:30:53'), - (8847,'2005-07-29 23:13:41',4133,480,'2005-07-31 23:55:41',1,'2006-02-15 21:30:53'), - (8848,'2005-07-29 23:20:58',2972,545,'2005-08-03 17:28:58',2,'2006-02-15 21:30:53'), - (8849,'2005-07-29 23:21:01',4300,79,'2005-08-03 20:01:01',1,'2006-02-15 21:30:53'), - (8850,'2005-07-29 23:24:20',355,86,'2005-07-31 00:43:20',2,'2006-02-15 21:30:53'), - (8851,'2005-07-29 23:26:19',212,445,'2005-08-05 03:59:19',2,'2006-02-15 21:30:53'), - (8852,'2005-07-29 23:30:03',1138,42,'2005-08-05 05:22:03',2,'2006-02-15 21:30:53'), - (8853,'2005-07-29 23:34:21',2323,58,'2005-07-31 21:20:21',2,'2006-02-15 21:30:53'), - (8854,'2005-07-29 23:40:07',1365,527,'2005-08-01 00:35:07',2,'2006-02-15 21:30:53'), - (8855,'2005-07-29 23:40:10',4388,335,'2005-08-02 18:07:10',2,'2006-02-15 21:30:53'), - (8856,'2005-07-29 23:42:00',2942,365,'2005-08-07 03:00:00',1,'2006-02-15 21:30:53'), - (8857,'2005-07-29 23:44:22',1348,477,'2005-07-31 21:32:22',2,'2006-02-15 21:30:53'), - (8858,'2005-07-29 23:44:35',2378,558,'2005-08-01 05:25:35',2,'2006-02-15 21:30:53'), - (8859,'2005-07-29 23:44:43',603,216,'2005-08-07 18:14:43',2,'2006-02-15 21:30:53'), - (8860,'2005-07-29 23:45:57',2841,531,'2005-08-06 02:14:57',2,'2006-02-15 21:30:53'), - (8861,'2005-07-29 23:47:29',759,560,'2005-08-07 01:27:29',1,'2006-02-15 21:30:53'), - (8862,'2005-07-29 23:49:23',916,21,'2005-08-04 20:11:23',1,'2006-02-15 21:30:53'), - (8863,'2005-07-29 23:52:01',75,47,'2005-08-04 20:28:01',1,'2006-02-15 21:30:53'), - (8864,'2005-07-29 23:52:12',2321,167,'2005-07-30 22:12:12',1,'2006-02-15 21:30:53'), - (8865,'2005-07-29 23:54:54',1835,305,'2005-07-31 05:10:54',2,'2006-02-15 21:30:53'), - (8866,'2005-07-29 23:58:19',1530,44,'2005-08-01 05:19:19',2,'2006-02-15 21:30:53'), - (8867,'2005-07-30 00:02:18',1388,497,'2005-08-04 00:44:18',2,'2006-02-15 21:30:53'), - (8868,'2005-07-30 00:02:26',1229,512,'2005-08-01 22:28:26',2,'2006-02-15 21:30:53'), - (8869,'2005-07-30 00:06:32',4353,308,'2005-07-31 20:49:32',2,'2006-02-15 21:30:53'), - (8870,'2005-07-30 00:08:08',4104,90,'2005-08-08 00:15:08',2,'2006-02-15 21:30:53'), - (8871,'2005-07-30 00:12:41',4535,382,'2005-08-08 03:53:41',1,'2006-02-15 21:30:53'), - (8872,'2005-07-30 00:13:54',2669,186,'2005-08-01 18:34:54',1,'2006-02-15 21:30:53'), - (8873,'2005-07-30 00:14:32',3498,91,'2005-08-04 20:42:32',2,'2006-02-15 21:30:53'), - (8874,'2005-07-30 00:14:45',459,564,'2005-08-02 22:34:45',2,'2006-02-15 21:30:53'), - (8875,'2005-07-30 00:15:09',1294,121,'2005-08-04 02:54:09',2,'2006-02-15 21:30:53'), - (8876,'2005-07-30 00:15:09',2394,579,'2005-08-02 23:56:09',1,'2006-02-15 21:30:53'), - (8877,'2005-07-30 00:15:22',1140,417,'2005-07-31 00:53:22',1,'2006-02-15 21:30:53'), - (8878,'2005-07-30 00:15:57',440,25,'2005-08-01 00:22:57',2,'2006-02-15 21:30:53'), - (8879,'2005-07-30 00:16:02',2956,584,'2005-08-06 20:10:02',2,'2006-02-15 21:30:53'), - (8880,'2005-07-30 00:16:55',2920,51,'2005-08-01 01:05:55',1,'2006-02-15 21:30:53'), - (8881,'2005-07-30 00:22:31',2012,118,'2005-08-04 19:10:31',1,'2006-02-15 21:30:53'), - (8882,'2005-07-30 00:24:05',441,410,'2005-08-03 19:48:05',2,'2006-02-15 21:30:53'), - (8883,'2005-07-30 00:24:48',1421,168,'2005-08-04 00:24:48',2,'2006-02-15 21:30:53'), - (8884,'2005-07-30 00:26:22',3050,80,'2005-08-05 03:24:22',1,'2006-02-15 21:30:53'), - (8885,'2005-07-30 00:36:26',2984,135,'2005-08-06 03:05:26',1,'2006-02-15 21:30:53'), - (8886,'2005-07-30 00:36:31',1469,418,'2005-08-08 06:18:31',1,'2006-02-15 21:30:53'), - (8887,'2005-07-30 00:36:54',4119,389,'2005-08-04 19:07:54',1,'2006-02-15 21:30:53'), - (8888,'2005-07-30 00:39:36',2824,284,'2005-08-01 02:28:36',2,'2006-02-15 21:30:53'), - (8889,'2005-07-30 00:39:43',3457,558,'2005-08-02 23:22:43',1,'2006-02-15 21:30:53'), - (8890,'2005-07-30 00:42:06',3656,470,'2005-08-05 21:04:06',1,'2006-02-15 21:30:53'), - (8891,'2005-07-30 00:46:55',4093,435,'2005-08-06 23:32:55',2,'2006-02-15 21:30:53'), - (8892,'2005-07-30 00:47:03',1584,184,'2005-08-06 03:23:03',2,'2006-02-15 21:30:53'), - (8893,'2005-07-30 00:48:19',1048,147,'2005-08-01 03:25:19',1,'2006-02-15 21:30:53'), - (8894,'2005-07-30 00:48:31',2055,552,'2005-07-31 05:49:31',1,'2006-02-15 21:30:53'), - (8895,'2005-07-30 00:49:17',3217,494,'2005-07-31 01:56:17',1,'2006-02-15 21:30:53'), - (8896,'2005-07-30 00:51:21',3560,205,'2005-07-31 22:33:21',1,'2006-02-15 21:30:53'), - (8897,'2005-07-30 01:00:17',1964,459,'2005-08-01 03:41:17',1,'2006-02-15 21:30:53'), - (8898,'2005-07-30 01:02:20',3961,452,'2005-08-05 22:02:20',2,'2006-02-15 21:30:53'), - (8899,'2005-07-30 01:05:30',4148,252,'2005-08-01 23:32:30',1,'2006-02-15 21:30:53'), - (8900,'2005-07-30 01:07:03',3057,375,'2005-08-06 04:07:03',1,'2006-02-15 21:30:53'), - (8901,'2005-07-30 01:07:12',4392,28,'2005-08-02 06:34:12',1,'2006-02-15 21:30:53'), - (8902,'2005-07-30 01:08:06',2983,408,'2005-08-05 00:00:06',2,'2006-02-15 21:30:53'), - (8903,'2005-07-30 01:08:06',4546,406,'2005-07-30 21:47:06',2,'2006-02-15 21:30:53'), - (8904,'2005-07-30 01:08:33',3622,575,'2005-08-04 02:33:33',1,'2006-02-15 21:30:53'), - (8905,'2005-07-30 01:11:11',2154,240,'2005-08-04 22:39:11',1,'2006-02-15 21:30:53'), - (8906,'2005-07-30 01:21:39',2667,560,'2005-08-07 02:14:39',2,'2006-02-15 21:30:53'), - (8907,'2005-07-30 01:25:03',3239,576,'2005-08-03 05:41:03',1,'2006-02-15 21:30:53'), - (8908,'2005-07-30 01:26:05',4498,391,'2005-07-31 20:39:05',1,'2006-02-15 21:30:53'), - (8909,'2005-07-30 01:28:03',2606,556,'2005-08-06 04:40:03',2,'2006-02-15 21:30:53'), - (8910,'2005-07-30 01:29:48',1039,569,'2005-07-31 21:33:48',2,'2006-02-15 21:30:53'), - (8911,'2005-07-30 01:30:57',2159,445,'2005-08-02 20:01:57',1,'2006-02-15 21:30:53'), - (8912,'2005-07-30 01:31:25',1686,280,'2005-08-02 07:14:25',2,'2006-02-15 21:30:53'), - (8913,'2005-07-30 01:35:01',429,391,'2005-08-06 06:13:01',1,'2006-02-15 21:30:53'), - (8914,'2005-07-30 01:42:03',1347,32,'2005-08-04 03:53:03',1,'2006-02-15 21:30:53'), - (8915,'2005-07-30 01:42:09',3030,42,'2005-08-04 23:29:09',2,'2006-02-15 21:30:53'), - (8916,'2005-07-30 01:42:21',3852,377,'2005-08-03 05:28:21',1,'2006-02-15 21:30:53'), - (8917,'2005-07-30 01:47:02',4460,309,'2005-08-05 21:10:02',2,'2006-02-15 21:30:53'), - (8918,'2005-07-30 01:56:22',2544,424,'2005-08-04 01:58:22',2,'2006-02-15 21:30:53'), - (8919,'2005-07-30 01:57:03',4006,337,'2005-08-08 05:14:03',1,'2006-02-15 21:30:53'), - (8920,'2005-07-30 01:59:24',4079,78,'2005-08-02 22:37:24',2,'2006-02-15 21:30:53'), - (8921,'2005-07-30 02:04:02',1016,354,'2005-07-31 06:18:02',1,'2006-02-15 21:30:53'), - (8922,'2005-07-30 02:08:25',1696,446,'2005-08-08 07:19:25',2,'2006-02-15 21:30:53'), - (8923,'2005-07-30 02:08:49',2425,446,'2005-08-03 23:45:49',2,'2006-02-15 21:30:53'), - (8924,'2005-07-30 02:08:58',2291,38,'2005-08-05 02:13:58',2,'2006-02-15 21:30:53'), - (8925,'2005-07-30 02:09:14',3753,500,'2005-07-30 21:39:14',1,'2006-02-15 21:30:53'), - (8926,'2005-07-30 02:10:31',3677,510,'2005-08-03 23:56:31',1,'2006-02-15 21:30:53'), - (8927,'2005-07-30 02:13:31',272,15,'2005-08-01 01:34:31',1,'2006-02-15 21:30:53'), - (8928,'2005-07-30 02:18:19',706,366,'2005-08-05 00:49:19',2,'2006-02-15 21:30:53'), - (8929,'2005-07-30 02:28:22',3501,472,'2005-08-06 06:13:22',1,'2006-02-15 21:30:53'), - (8930,'2005-07-30 02:28:38',1107,202,'2005-08-02 01:43:38',2,'2006-02-15 21:30:53'), - (8931,'2005-07-30 02:30:07',16,268,'2005-08-02 08:24:07',2,'2006-02-15 21:30:53'), - (8932,'2005-07-30 02:31:26',4537,295,'2005-08-04 02:17:26',2,'2006-02-15 21:30:53'), - (8933,'2005-07-30 02:36:06',1664,260,'2005-08-02 23:37:06',2,'2006-02-15 21:30:53'), - (8934,'2005-07-30 02:37:05',3223,494,'2005-08-01 20:42:05',1,'2006-02-15 21:30:53'), - (8935,'2005-07-30 02:38:45',285,76,'2005-08-02 07:11:45',2,'2006-02-15 21:30:53'), - (8936,'2005-07-30 02:47:13',1408,227,'2005-08-01 02:25:13',2,'2006-02-15 21:30:53'), - (8937,'2005-07-30 02:53:21',2406,544,'2005-08-08 03:33:21',2,'2006-02-15 21:30:53'), - (8938,'2005-07-30 02:56:08',4031,92,'2005-07-31 23:08:08',2,'2006-02-15 21:30:53'), - (8939,'2005-07-30 02:56:53',4175,598,'2005-08-01 21:19:53',1,'2006-02-15 21:30:53'), - (8940,'2005-07-30 02:57:26',1566,212,'2005-08-05 22:05:26',1,'2006-02-15 21:30:53'), - (8941,'2005-07-30 02:59:21',4147,329,'2005-08-02 05:18:21',2,'2006-02-15 21:30:53'), - (8942,'2005-07-30 03:01:07',4375,77,'2005-08-06 22:50:07',2,'2006-02-15 21:30:53'), - (8943,'2005-07-30 03:06:48',3698,531,'2005-08-02 00:59:48',2,'2006-02-15 21:30:53'), - (8944,'2005-07-30 03:11:44',3513,172,'2005-08-06 23:15:44',2,'2006-02-15 21:30:53'), - (8945,'2005-07-30 03:11:48',1441,447,'2005-08-07 07:53:48',2,'2006-02-15 21:30:53'), - (8946,'2005-07-30 03:14:53',3510,257,'2005-08-04 00:50:53',1,'2006-02-15 21:30:53'), - (8947,'2005-07-30 03:15:37',341,24,'2005-08-04 07:10:37',2,'2006-02-15 21:30:53'), - (8948,'2005-07-30 03:16:18',948,597,'2005-08-04 03:16:18',1,'2006-02-15 21:30:53'), - (8949,'2005-07-30 03:17:02',2876,231,'2005-08-08 07:38:02',1,'2006-02-15 21:30:53'), - (8950,'2005-07-30 03:17:13',3015,11,'2005-08-07 00:20:13',1,'2006-02-15 21:30:53'), - (8951,'2005-07-30 03:18:24',127,336,'2005-08-08 08:50:24',2,'2006-02-15 21:30:53'), - (8952,'2005-07-30 03:20:38',4397,36,'2005-08-02 02:54:38',1,'2006-02-15 21:30:53'), - (8953,'2005-07-30 03:21:05',535,278,'2005-08-02 05:24:05',2,'2006-02-15 21:30:53'), - (8954,'2005-07-30 03:25:51',991,137,'2005-08-06 05:10:51',2,'2006-02-15 21:30:53'), - (8955,'2005-07-30 03:28:27',4532,405,'2005-08-04 04:56:27',2,'2006-02-15 21:30:53'), - (8956,'2005-07-30 03:32:29',2129,71,'2005-08-01 03:08:29',2,'2006-02-15 21:30:53'), - (8957,'2005-07-30 03:34:10',811,158,'2005-08-06 07:05:10',1,'2006-02-15 21:30:53'), - (8958,'2005-07-30 03:34:26',1556,536,'2005-08-06 08:14:26',1,'2006-02-15 21:30:53'), - (8959,'2005-07-30 03:35:49',3508,550,'2005-08-06 02:02:49',2,'2006-02-15 21:30:53'), - (8960,'2005-07-30 03:36:31',391,525,'2005-08-01 23:46:31',2,'2006-02-15 21:30:53'), - (8961,'2005-07-30 03:43:35',3679,211,'2005-08-06 07:42:35',1,'2006-02-15 21:30:53'), - (8962,'2005-07-30 03:43:45',4439,406,'2005-08-07 00:33:45',1,'2006-02-15 21:30:53'), - (8963,'2005-07-30 03:46:26',100,544,'2005-08-08 06:12:26',1,'2006-02-15 21:30:53'), - (8964,'2005-07-30 03:49:35',280,424,'2005-08-06 23:28:35',2,'2006-02-15 21:30:53'), - (8965,'2005-07-30 03:52:37',2419,599,'2005-08-05 01:28:37',2,'2006-02-15 21:30:53'), - (8966,'2005-07-30 03:54:12',1903,522,'2005-07-31 04:51:12',1,'2006-02-15 21:30:53'), - (8967,'2005-07-30 03:56:55',1536,480,'2005-08-06 05:25:55',2,'2006-02-15 21:30:53'), - (8968,'2005-07-30 03:57:32',2280,339,'2005-07-31 00:09:32',1,'2006-02-15 21:30:53'), - (8969,'2005-07-30 04:00:19',2043,121,'2005-08-06 04:39:19',1,'2006-02-15 21:30:53'), - (8970,'2005-07-30 04:02:05',2940,313,'2005-08-07 03:40:05',2,'2006-02-15 21:30:53'), - (8971,'2005-07-30 04:03:58',3572,35,'2005-08-08 04:16:58',2,'2006-02-15 21:30:53'), - (8972,'2005-07-30 04:06:25',1974,89,'2005-08-04 22:49:25',1,'2006-02-15 21:30:53'), - (8973,'2005-07-30 04:09:13',886,282,'2005-08-07 22:30:13',2,'2006-02-15 21:30:53'), - (8974,'2005-07-30 04:09:16',3376,425,'2005-08-04 06:55:16',1,'2006-02-15 21:30:53'), - (8975,'2005-07-30 04:10:18',3288,356,'2005-08-07 01:06:18',2,'2006-02-15 21:30:53'), - (8976,'2005-07-30 04:12:32',2135,507,'2005-08-04 23:08:32',1,'2006-02-15 21:30:53'), - (8977,'2005-07-30 04:14:07',4099,334,'2005-08-05 23:45:07',2,'2006-02-15 21:30:53'), - (8978,'2005-07-30 04:14:28',711,5,'2005-08-06 09:08:28',1,'2006-02-15 21:30:53'), - (8979,'2005-07-30 04:20:25',1394,529,'2005-08-08 03:39:25',2,'2006-02-15 21:30:53'), - (8980,'2005-07-30 04:22:15',3061,105,'2005-08-04 08:16:15',1,'2006-02-15 21:30:53'), - (8981,'2005-07-30 04:25:30',4413,310,'2005-08-06 02:37:30',1,'2006-02-15 21:30:53'), - (8982,'2005-07-30 04:31:02',1128,251,'2005-07-31 04:22:02',1,'2006-02-15 21:30:53'), - (8983,'2005-07-30 04:31:08',1861,144,'2005-07-31 09:28:08',1,'2006-02-15 21:30:53'), - (8984,'2005-07-30 04:31:50',2126,485,'2005-08-04 03:24:50',1,'2006-02-15 21:30:53'), - (8985,'2005-07-30 04:34:51',3179,12,'2005-08-06 00:45:51',2,'2006-02-15 21:30:53'), - (8986,'2005-07-30 04:37:20',3992,551,'2005-07-31 23:54:20',1,'2006-02-15 21:30:53'), - (8987,'2005-07-30 04:37:36',1434,135,'2005-08-08 10:14:36',2,'2006-02-15 21:30:53'), - (8988,'2005-07-30 04:38:49',777,487,'2005-08-07 07:00:49',2,'2006-02-15 21:30:53'), - (8989,'2005-07-30 04:39:19',954,575,'2005-08-06 02:11:19',1,'2006-02-15 21:30:53'), - (8990,'2005-07-30 04:41:42',1869,292,'2005-08-07 22:50:42',2,'2006-02-15 21:30:53'), - (8991,'2005-07-30 04:42:54',4540,474,'2005-08-01 23:51:54',1,'2006-02-15 21:30:53'), - (8992,'2005-07-30 04:44:18',4478,54,'2005-08-01 00:29:18',1,'2006-02-15 21:30:53'), - (8993,'2005-07-30 04:51:25',1891,382,'2005-08-01 01:04:25',1,'2006-02-15 21:30:53'), - (8994,'2005-07-30 04:51:32',1527,287,'2005-08-07 09:41:32',1,'2006-02-15 21:30:53'), - (8995,'2005-07-30 04:53:11',3575,331,'2005-08-07 00:24:11',1,'2006-02-15 21:30:53'), - (8996,'2005-07-30 04:53:23',1970,579,'2005-07-31 06:01:23',1,'2006-02-15 21:30:53'), - (8997,'2005-07-30 04:53:56',850,31,'2005-08-03 07:10:56',1,'2006-02-15 21:30:53'), - (8998,'2005-07-30 04:54:14',1573,120,'2005-08-08 08:18:14',2,'2006-02-15 21:30:53'), - (8999,'2005-07-30 04:55:46',3458,424,'2005-08-01 00:16:46',2,'2006-02-15 21:30:53'), - (9000,'2005-07-30 04:58:55',3763,290,'2005-08-08 04:01:55',2,'2006-02-15 21:30:53'), - (9001,'2005-07-30 04:59:41',3682,440,'2005-07-31 08:56:41',2,'2006-02-15 21:30:53'), - (9002,'2005-07-30 05:02:21',1936,137,'2005-07-31 04:58:21',1,'2006-02-15 21:30:53'), - (9003,'2005-07-30 05:02:52',1605,507,'2005-07-31 10:33:52',1,'2006-02-15 21:30:53'), - (9004,'2005-07-30 05:04:27',3775,178,'2005-07-31 00:49:27',1,'2006-02-15 21:30:53'), - (9005,'2005-07-30 05:04:58',157,204,'2005-08-03 07:41:58',2,'2006-02-15 21:30:53'), - (9006,'2005-07-30 05:06:32',3315,49,'2005-07-31 08:24:32',1,'2006-02-15 21:30:53'), - (9007,'2005-07-30 05:09:32',2813,63,'2005-08-02 06:12:32',2,'2006-02-15 21:30:53'), - (9008,'2005-07-30 05:10:26',3592,371,'2005-07-31 08:13:26',1,'2006-02-15 21:30:53'), - (9009,'2005-07-30 05:12:01',4136,166,'2005-08-07 10:58:01',1,'2006-02-15 21:30:53'), - (9010,'2005-07-30 05:12:04',1698,152,'2005-08-06 02:54:04',2,'2006-02-15 21:30:53'), - (9011,'2005-07-30 05:16:29',2799,236,'2005-08-05 06:57:29',1,'2006-02-15 21:30:53'), - (9012,'2005-07-30 05:18:57',3604,494,'2005-08-06 06:21:57',1,'2006-02-15 21:30:53'), - (9013,'2005-07-30 05:19:20',2367,347,'2005-08-04 01:35:20',1,'2006-02-15 21:30:53'), - (9014,'2005-07-30 05:19:27',311,297,'2005-08-01 01:10:27',2,'2006-02-15 21:30:53'), - (9015,'2005-07-30 05:21:32',4128,203,'2005-08-08 07:03:32',2,'2006-02-15 21:30:53'), - (9016,'2005-07-30 05:26:13',4309,312,'2005-08-04 00:25:13',2,'2006-02-15 21:30:53'), - (9017,'2005-07-30 05:26:20',3325,319,'2005-08-04 10:00:20',2,'2006-02-15 21:30:53'), - (9018,'2005-07-30 05:28:40',1982,218,'2005-08-07 01:34:40',1,'2006-02-15 21:30:53'), - (9019,'2005-07-30 05:28:53',946,235,'2005-08-03 02:16:53',2,'2006-02-15 21:30:53'), - (9020,'2005-07-30 05:31:27',1700,142,'2005-08-08 06:44:27',2,'2006-02-15 21:30:53'), - (9021,'2005-07-30 05:34:24',674,498,'2005-08-03 04:13:24',1,'2006-02-15 21:30:53'), - (9022,'2005-07-30 05:34:45',4473,159,'2005-08-03 23:57:45',2,'2006-02-15 21:30:53'), - (9023,'2005-07-30 05:36:40',2911,148,'2005-08-07 06:20:40',1,'2006-02-15 21:30:53'), - (9024,'2005-07-30 05:44:42',164,329,'2005-08-05 03:15:42',2,'2006-02-15 21:30:53'), - (9025,'2005-07-30 05:50:08',2244,473,'2005-07-31 09:58:08',1,'2006-02-15 21:30:53'), - (9026,'2005-07-30 05:55:31',1524,423,'2005-08-01 03:19:31',1,'2006-02-15 21:30:53'), - (9027,'2005-07-30 05:58:27',449,72,'2005-08-03 03:02:27',1,'2006-02-15 21:30:53'), - (9028,'2005-07-30 06:00:35',2687,119,'2005-08-02 01:35:35',1,'2006-02-15 21:30:53'), - (9029,'2005-07-30 06:03:11',2220,52,'2005-08-04 01:42:11',1,'2006-02-15 21:30:53'), - (9030,'2005-07-30 06:05:38',2237,367,'2005-08-03 00:19:38',1,'2006-02-15 21:30:53'), - (9031,'2005-07-30 06:06:10',2377,2,'2005-08-04 10:45:10',2,'2006-02-15 21:30:53'), - (9032,'2005-07-30 06:06:54',4448,369,'2005-08-01 05:27:54',1,'2006-02-15 21:30:53'), - (9033,'2005-07-30 06:07:42',3416,35,'2005-08-05 01:18:42',1,'2006-02-15 21:30:53'), - (9034,'2005-07-30 06:10:58',3847,144,'2005-08-08 05:00:58',2,'2006-02-15 21:30:53'), - (9035,'2005-07-30 06:16:07',3785,243,'2005-08-06 09:22:07',1,'2006-02-15 21:30:53'), - (9036,'2005-07-30 06:18:38',790,18,'2005-07-31 01:22:38',1,'2006-02-15 21:30:53'), - (9037,'2005-07-30 06:23:14',3833,356,'2005-08-08 06:25:14',1,'2006-02-15 21:30:53'), - (9038,'2005-07-30 06:23:35',217,514,'2005-08-06 11:10:35',1,'2006-02-15 21:30:53'), - (9039,'2005-07-30 06:24:28',4493,485,'2005-08-08 00:28:28',1,'2006-02-15 21:30:53'), - (9040,'2005-07-30 06:31:45',392,33,'2005-08-03 12:20:45',1,'2006-02-15 21:30:53'), - (9041,'2005-07-30 06:32:36',1103,454,'2005-08-01 10:28:36',2,'2006-02-15 21:30:53'), - (9042,'2005-07-30 06:33:55',2770,398,'2005-08-04 09:31:55',2,'2006-02-15 21:30:53'), - (9043,'2005-07-30 06:34:07',4127,9,'2005-08-02 01:16:07',1,'2006-02-15 21:30:53'), - (9044,'2005-07-30 06:35:21',3796,319,'2005-07-31 10:27:21',1,'2006-02-15 21:30:53'), - (9045,'2005-07-30 06:36:57',4521,46,'2005-08-08 01:51:57',1,'2006-02-15 21:30:53'), - (9046,'2005-07-30 06:46:55',1736,215,'2005-08-01 02:21:55',2,'2006-02-15 21:30:53'), - (9047,'2005-07-30 06:56:33',256,522,'2005-08-08 06:40:33',2,'2006-02-15 21:30:53'), - (9048,'2005-07-30 06:57:07',3929,100,'2005-08-05 00:57:07',1,'2006-02-15 21:30:53'), - (9049,'2005-07-30 06:57:28',2620,417,'2005-08-04 09:02:28',1,'2006-02-15 21:30:53'), - (9050,'2005-07-30 06:59:55',106,40,'2005-08-06 06:37:55',1,'2006-02-15 21:30:53'), - (9051,'2005-07-30 07:05:54',1847,337,'2005-08-07 09:12:54',2,'2006-02-15 21:30:53'), - (9052,'2005-07-30 07:06:08',3351,408,'2005-08-03 10:30:08',1,'2006-02-15 21:30:53'), - (9053,'2005-07-30 07:07:39',2535,485,'2005-08-01 09:22:39',2,'2006-02-15 21:30:53'), - (9054,'2005-07-30 07:11:44',2860,209,'2005-08-08 01:55:44',2,'2006-02-15 21:30:53'), - (9055,'2005-07-30 07:13:07',634,512,'2005-08-01 12:18:07',1,'2006-02-15 21:30:53'), - (9056,'2005-07-30 07:13:20',4363,380,'2005-08-03 07:36:20',1,'2006-02-15 21:30:53'), - (9057,'2005-07-30 07:14:18',3141,202,'2005-08-01 05:10:18',2,'2006-02-15 21:30:53'), - (9058,'2005-07-30 07:15:45',4214,403,'2005-07-31 02:57:45',2,'2006-02-15 21:30:53'), - (9059,'2005-07-30 07:18:44',480,267,'2005-08-08 08:39:44',1,'2006-02-15 21:30:53'), - (9060,'2005-07-30 07:20:36',4360,87,'2005-08-03 10:51:36',1,'2006-02-15 21:30:53'), - (9061,'2005-07-30 07:21:52',1933,255,'2005-08-08 10:52:52',1,'2006-02-15 21:30:53'), - (9062,'2005-07-30 07:23:17',2780,358,'2005-08-02 12:07:17',1,'2006-02-15 21:30:53'), - (9063,'2005-07-30 07:24:34',2851,564,'2005-08-05 01:28:34',2,'2006-02-15 21:30:53'), - (9064,'2005-07-30 07:24:55',1417,194,'2005-08-07 08:44:55',2,'2006-02-15 21:30:53'), - (9065,'2005-07-30 07:25:09',349,238,'2005-07-31 05:18:09',2,'2006-02-15 21:30:53'), - (9066,'2005-07-30 07:28:54',196,171,'2005-08-02 05:23:54',1,'2006-02-15 21:30:53'), - (9067,'2005-07-30 07:31:01',3628,382,'2005-08-04 11:44:01',2,'2006-02-15 21:30:53'), - (9068,'2005-07-30 07:31:45',2264,78,'2005-08-08 06:40:45',1,'2006-02-15 21:30:53'), - (9069,'2005-07-30 07:39:59',1852,258,'2005-08-02 04:10:59',1,'2006-02-15 21:30:53'), - (9070,'2005-07-30 07:40:39',3690,276,'2005-08-01 04:19:39',2,'2006-02-15 21:30:53'), - (9071,'2005-07-30 07:40:58',3151,523,'2005-08-01 06:59:58',2,'2006-02-15 21:30:53'), - (9072,'2005-07-30 07:45:49',4536,106,'2005-08-04 10:00:49',1,'2006-02-15 21:30:53'), - (9073,'2005-07-30 07:49:56',2185,141,'2005-08-05 06:25:56',2,'2006-02-15 21:30:53'), - (9074,'2005-07-30 07:50:10',3244,84,'2005-08-01 11:21:10',2,'2006-02-15 21:30:53'), - (9075,'2005-07-30 07:55:14',1931,20,'2005-08-02 13:49:14',1,'2006-02-15 21:30:53'), - (9076,'2005-07-30 07:58:12',496,447,'2005-08-08 06:04:12',1,'2006-02-15 21:30:53'), - (9077,'2005-07-30 08:00:19',4324,471,'2005-08-08 11:21:19',1,'2006-02-15 21:30:53'), - (9078,'2005-07-30 08:01:00',955,300,'2005-07-31 10:39:00',1,'2006-02-15 21:30:53'), - (9079,'2005-07-30 08:02:00',2143,193,'2005-07-31 04:02:00',2,'2006-02-15 21:30:53'), - (9080,'2005-07-30 08:02:39',94,276,'2005-08-06 12:02:39',1,'2006-02-15 21:30:53'), - (9081,'2005-07-30 08:09:58',3040,572,'2005-08-03 13:27:58',1,'2006-02-15 21:30:53'), - (9082,'2005-07-30 08:11:22',4042,438,'2005-08-06 09:26:22',2,'2006-02-15 21:30:53'), - (9083,'2005-07-30 08:14:27',456,488,'2005-08-07 14:02:27',1,'2006-02-15 21:30:53'), - (9084,'2005-07-30 08:14:29',3950,171,'2005-08-03 11:12:29',2,'2006-02-15 21:30:53'), - (9085,'2005-07-30 08:17:24',3400,33,'2005-08-03 09:35:24',2,'2006-02-15 21:30:53'), - (9086,'2005-07-30 08:18:46',2779,57,'2005-08-06 06:10:46',2,'2006-02-15 21:30:53'), - (9087,'2005-07-30 08:19:47',4048,546,'2005-08-02 07:15:47',1,'2006-02-15 21:30:53'), - (9088,'2005-07-30 08:21:02',3407,245,'2005-08-01 09:55:02',1,'2006-02-15 21:30:53'), - (9089,'2005-07-30 08:23:39',490,369,'2005-07-31 06:00:39',1,'2006-02-15 21:30:53'), - (9090,'2005-07-30 08:24:42',3426,104,'2005-08-08 06:17:42',2,'2006-02-15 21:30:53'), - (9091,'2005-07-30 08:30:45',2249,66,'2005-08-07 13:28:45',1,'2006-02-15 21:30:53'), - (9092,'2005-07-30 08:30:56',1877,17,'2005-08-06 08:09:56',2,'2006-02-15 21:30:53'), - (9093,'2005-07-30 08:33:24',2208,96,'2005-08-04 11:07:24',1,'2006-02-15 21:30:53'), - (9094,'2005-07-30 08:35:10',2699,140,'2005-08-07 08:18:10',2,'2006-02-15 21:30:53'), - (9095,'2005-07-30 08:38:36',3019,511,'2005-07-31 06:14:36',1,'2006-02-15 21:30:53'), - (9096,'2005-07-30 08:39:23',540,216,'2005-08-01 03:33:23',1,'2006-02-15 21:30:53'), - (9097,'2005-07-30 08:40:35',570,173,'2005-08-04 11:19:35',2,'2006-02-15 21:30:53'), - (9098,'2005-07-30 08:44:21',1267,144,'2005-08-08 12:31:21',1,'2006-02-15 21:30:53'), - (9099,'2005-07-30 08:45:48',594,250,'2005-08-01 03:18:48',2,'2006-02-15 21:30:53'), - (9100,'2005-07-30 08:46:09',4117,4,'2005-08-05 10:34:09',1,'2006-02-15 21:30:53'), - (9101,'2005-07-30 08:47:13',3165,566,'2005-08-02 12:52:13',1,'2006-02-15 21:30:53'), - (9102,'2005-07-30 08:48:20',1154,276,'2005-08-04 10:19:20',1,'2006-02-15 21:30:53'), - (9103,'2005-07-30 08:49:26',3806,280,'2005-07-31 14:15:26',1,'2006-02-15 21:30:53'), - (9104,'2005-07-30 08:49:55',3372,322,'2005-08-06 12:23:55',1,'2006-02-15 21:30:53'), - (9105,'2005-07-30 08:50:25',4443,262,'2005-08-05 06:08:25',1,'2006-02-15 21:30:53'), - (9106,'2005-07-30 08:52:34',2935,148,'2005-08-02 07:38:34',2,'2006-02-15 21:30:53'), - (9107,'2005-07-30 08:52:45',1068,531,'2005-08-05 08:39:45',2,'2006-02-15 21:30:53'), - (9108,'2005-07-30 08:56:36',3977,490,'2005-08-04 11:07:36',1,'2006-02-15 21:30:53'), - (9109,'2005-07-30 08:58:24',787,266,'2005-08-07 06:56:24',1,'2006-02-15 21:30:53'), - (9110,'2005-07-30 09:05:42',1474,317,'2005-08-03 05:15:42',1,'2006-02-15 21:30:53'), - (9111,'2005-07-30 09:05:44',166,211,'2005-08-04 14:27:44',2,'2006-02-15 21:30:53'), - (9112,'2005-07-30 09:06:31',395,74,'2005-08-04 05:12:31',2,'2006-02-15 21:30:53'), - (9113,'2005-07-30 09:09:03',3903,374,'2005-07-31 03:13:03',1,'2006-02-15 21:30:53'), - (9114,'2005-07-30 09:13:21',893,18,'2005-08-05 06:00:21',2,'2006-02-15 21:30:53'), - (9115,'2005-07-30 09:13:55',3750,322,'2005-08-04 04:02:55',2,'2006-02-15 21:30:53'), - (9116,'2005-07-30 09:19:41',2917,446,'2005-08-03 08:01:41',2,'2006-02-15 21:30:53'), - (9117,'2005-07-30 09:20:59',3055,371,'2005-08-07 08:47:59',1,'2006-02-15 21:30:53'), - (9118,'2005-07-30 09:24:18',4538,172,'2005-08-02 14:46:18',2,'2006-02-15 21:30:53'), - (9119,'2005-07-30 09:25:56',275,305,'2005-08-03 03:36:56',1,'2006-02-15 21:30:53'), - (9120,'2005-07-30 09:26:08',139,473,'2005-08-08 09:52:08',1,'2006-02-15 21:30:53'), - (9121,'2005-07-30 09:36:26',3098,150,'2005-08-05 15:17:26',2,'2006-02-15 21:30:53'), - (9122,'2005-07-30 09:36:52',627,365,'2005-08-05 13:20:52',1,'2006-02-15 21:30:53'), - (9123,'2005-07-30 09:39:15',3748,293,'2005-08-02 08:12:15',2,'2006-02-15 21:30:53'), - (9124,'2005-07-30 09:43:12',4552,105,'2005-08-06 06:17:12',1,'2006-02-15 21:30:53'), - (9125,'2005-07-30 09:43:39',333,335,'2005-08-07 14:02:39',1,'2006-02-15 21:30:53'), - (9126,'2005-07-30 09:44:15',4495,590,'2005-08-02 11:02:15',2,'2006-02-15 21:30:53'), - (9127,'2005-07-30 09:46:36',4114,300,'2005-07-31 07:43:36',1,'2006-02-15 21:30:53'), - (9128,'2005-07-30 09:51:14',3647,372,'2005-08-07 06:23:14',1,'2006-02-15 21:30:53'), - (9129,'2005-07-30 09:51:21',2658,125,'2005-08-07 08:50:21',2,'2006-02-15 21:30:53'), - (9130,'2005-07-30 09:55:10',1715,354,'2005-08-04 08:57:10',1,'2006-02-15 21:30:53'), - (9131,'2005-07-30 09:55:57',623,142,'2005-08-01 14:21:57',1,'2006-02-15 21:30:53'), - (9132,'2005-07-30 09:56:00',402,159,'2005-08-02 09:22:00',1,'2006-02-15 21:30:53'), - (9133,'2005-07-30 09:59:00',408,576,'2005-08-07 04:24:00',1,'2006-02-15 21:30:53'), - (9134,'2005-07-30 10:00:21',3797,559,'2005-08-01 05:01:21',1,'2006-02-15 21:30:53'), - (9135,'2005-07-30 10:06:53',821,161,'2005-08-03 13:57:53',2,'2006-02-15 21:30:53'), - (9136,'2005-07-30 10:07:20',1734,57,'2005-07-31 08:20:20',2,'2006-02-15 21:30:53'), - (9137,'2005-07-30 10:09:24',840,459,'2005-08-06 04:30:24',2,'2006-02-15 21:30:53'), - (9138,'2005-07-30 10:11:52',2550,17,'2005-07-31 07:05:52',2,'2006-02-15 21:30:53'), - (9139,'2005-07-30 10:11:52',2809,133,'2005-08-03 12:44:52',1,'2006-02-15 21:30:53'), - (9140,'2005-07-30 10:12:01',4095,25,'2005-08-06 09:16:01',2,'2006-02-15 21:30:53'), - (9141,'2005-07-30 10:16:04',3087,484,'2005-08-05 08:01:04',1,'2006-02-15 21:30:53'), - (9142,'2005-07-30 10:21:03',4467,486,'2005-08-04 15:14:03',1,'2006-02-15 21:30:53'), - (9143,'2005-07-30 10:22:11',2962,511,'2005-08-07 06:13:11',2,'2006-02-15 21:30:53'), - (9144,'2005-07-30 10:22:15',718,381,'2005-08-05 08:14:15',1,'2006-02-15 21:30:53'), - (9145,'2005-07-30 10:27:55',559,176,'2005-08-07 14:41:55',2,'2006-02-15 21:30:53'), - (9146,'2005-07-30 10:32:08',483,302,'2005-08-08 14:30:08',1,'2006-02-15 21:30:53'), - (9147,'2005-07-30 10:38:59',4167,394,'2005-08-02 11:45:59',2,'2006-02-15 21:30:53'), - (9148,'2005-07-30 10:39:10',1407,333,'2005-08-04 07:17:10',2,'2006-02-15 21:30:53'), - (9149,'2005-07-30 10:45:12',2632,21,'2005-08-01 09:40:12',1,'2006-02-15 21:30:53'), - (9150,'2005-07-30 10:49:32',2834,213,'2005-08-08 15:43:32',1,'2006-02-15 21:30:53'), - (9151,'2005-07-30 10:50:53',3956,102,'2005-08-07 08:19:53',1,'2006-02-15 21:30:53'), - (9152,'2005-07-30 10:51:27',3607,595,'2005-07-31 06:38:27',2,'2006-02-15 21:30:53'), - (9153,'2005-07-30 10:58:16',3743,589,'2005-08-03 06:16:16',2,'2006-02-15 21:30:53'), - (9154,'2005-07-30 10:59:54',576,312,'2005-08-05 16:47:54',1,'2006-02-15 21:30:53'), - (9155,'2005-07-30 11:00:00',3787,107,'2005-08-02 05:24:00',2,'2006-02-15 21:30:53'), - (9156,'2005-07-30 11:04:55',1747,145,'2005-07-31 14:10:55',2,'2006-02-15 21:30:53'), - (9157,'2005-07-30 11:06:23',146,19,'2005-08-05 05:29:23',2,'2006-02-15 21:30:53'), - (9158,'2005-07-30 11:12:03',4017,16,'2005-08-02 05:55:03',2,'2006-02-15 21:30:53'), - (9159,'2005-07-30 11:16:37',1234,217,'2005-08-03 10:32:37',1,'2006-02-15 21:30:53'), - (9160,'2005-07-30 11:17:33',183,34,'2005-08-06 15:16:33',2,'2006-02-15 21:30:53'), - (9161,'2005-07-30 11:19:18',969,433,'2005-08-02 05:32:18',1,'2006-02-15 21:30:53'), - (9162,'2005-07-30 11:21:56',4198,184,'2005-08-02 15:32:56',1,'2006-02-15 21:30:53'), - (9163,'2005-07-30 11:23:22',4562,345,'2005-07-31 07:34:22',2,'2006-02-15 21:30:53'), - (9164,'2005-07-30 11:24:14',4434,342,'2005-08-08 16:24:14',1,'2006-02-15 21:30:53'), - (9165,'2005-07-30 11:24:28',4034,291,'2005-08-03 09:38:28',1,'2006-02-15 21:30:53'), - (9166,'2005-07-30 11:26:28',308,12,'2005-08-04 12:32:28',1,'2006-02-15 21:30:53'), - (9167,'2005-07-30 11:30:37',1785,162,'2005-08-08 17:13:37',1,'2006-02-15 21:30:53'), - (9168,'2005-07-30 11:31:17',2035,75,'2005-08-08 16:56:17',2,'2006-02-15 21:30:53'), - (9169,'2005-07-30 11:35:00',1567,245,'2005-08-06 16:16:00',2,'2006-02-15 21:30:53'), - (9170,'2005-07-30 11:35:24',4279,425,'2005-08-05 05:36:24',1,'2006-02-15 21:30:53'), - (9171,'2005-07-30 11:36:24',1832,189,'2005-08-07 06:04:24',2,'2006-02-15 21:30:53'), - (9172,'2005-07-30 11:36:38',695,437,'2005-08-04 09:39:38',1,'2006-02-15 21:30:53'), - (9173,'2005-07-30 11:40:10',2103,381,'2005-08-04 05:40:10',2,'2006-02-15 21:30:53'), - (9174,'2005-07-30 11:42:10',2636,144,'2005-07-31 09:52:10',1,'2006-02-15 21:30:53'), - (9175,'2005-07-30 11:47:48',358,133,'2005-08-02 08:13:48',1,'2006-02-15 21:30:53'), - (9176,'2005-07-30 11:50:54',2659,260,'2005-08-02 14:25:54',2,'2006-02-15 21:30:53'), - (9177,'2005-07-30 11:52:40',1088,400,'2005-08-08 09:35:40',1,'2006-02-15 21:30:53'), - (9178,'2005-07-30 11:58:50',2046,448,'2005-08-08 15:24:50',2,'2006-02-15 21:30:53'), - (9179,'2005-07-30 12:02:41',62,50,'2005-08-05 15:23:41',2,'2006-02-15 21:30:53'), - (9180,'2005-07-30 12:03:15',3479,442,'2005-08-01 14:25:15',1,'2006-02-15 21:30:53'), - (9181,'2005-07-30 12:05:58',3953,224,'2005-08-02 06:22:58',1,'2006-02-15 21:30:53'), - (9182,'2005-07-30 12:06:58',2533,165,'2005-08-08 11:33:58',2,'2006-02-15 21:30:53'), - (9183,'2005-07-30 12:09:56',4320,475,'2005-08-06 11:50:56',2,'2006-02-15 21:30:53'), - (9184,'2005-07-30 12:10:19',51,365,'2005-08-01 07:35:19',2,'2006-02-15 21:30:53'), - (9185,'2005-07-30 12:10:40',2268,426,'2005-08-06 07:01:40',1,'2006-02-15 21:30:53'), - (9186,'2005-07-30 12:13:48',4513,273,'2005-07-31 11:59:48',1,'2006-02-15 21:30:53'), - (9187,'2005-07-30 12:14:03',4008,469,'2005-08-04 13:10:03',2,'2006-02-15 21:30:53'), - (9188,'2005-07-30 12:19:54',727,195,'2005-08-06 09:12:54',2,'2006-02-15 21:30:53'), - (9189,'2005-07-30 12:20:59',4529,485,'2005-08-06 16:15:59',1,'2006-02-15 21:30:53'), - (9190,'2005-07-30 12:24:17',4421,177,'2005-08-03 07:41:17',2,'2006-02-15 21:30:53'), - (9191,'2005-07-30 12:25:51',500,314,'2005-08-05 16:13:51',1,'2006-02-15 21:30:53'), - (9192,'2005-07-30 12:26:26',2372,102,'2005-08-04 07:54:26',2,'2006-02-15 21:30:53'), - (9193,'2005-07-30 12:28:42',3470,69,'2005-08-02 12:17:42',2,'2006-02-15 21:30:53'), - (9194,'2005-07-30 12:28:45',2467,294,'2005-08-06 14:38:45',1,'2006-02-15 21:30:53'), - (9195,'2005-07-30 12:29:43',944,440,'2005-08-04 12:35:43',1,'2006-02-15 21:30:53'), - (9196,'2005-07-30 12:30:19',4298,251,'2005-07-31 18:01:19',2,'2006-02-15 21:30:53'), - (9197,'2005-07-30 12:31:36',3214,168,'2005-08-03 09:05:36',1,'2006-02-15 21:30:53'), - (9198,'2005-07-30 12:37:08',2371,105,'2005-08-07 16:37:08',2,'2006-02-15 21:30:53'), - (9199,'2005-07-30 12:38:00',4336,580,'2005-08-01 07:09:00',1,'2006-02-15 21:30:53'), - (9200,'2005-07-30 12:39:52',3277,137,'2005-08-08 09:43:52',2,'2006-02-15 21:30:53'), - (9201,'2005-07-30 12:42:21',4387,291,'2005-08-08 06:50:21',1,'2006-02-15 21:30:53'), - (9202,'2005-07-30 12:43:24',4525,466,'2005-08-07 10:39:24',2,'2006-02-15 21:30:53'), - (9203,'2005-07-30 12:43:40',2112,169,'2005-08-01 09:31:40',2,'2006-02-15 21:30:53'), - (9204,'2005-07-30 12:43:58',4378,43,'2005-08-03 16:26:58',2,'2006-02-15 21:30:53'), - (9205,'2005-07-30 12:46:40',4165,259,'2005-08-08 14:58:40',1,'2006-02-15 21:30:53'), - (9206,'2005-07-30 12:46:59',2021,404,'2005-08-03 14:58:59',1,'2006-02-15 21:30:53'), - (9207,'2005-07-30 12:49:57',1346,345,'2005-07-31 14:32:57',2,'2006-02-15 21:30:53'), - (9208,'2005-07-30 12:54:03',2751,339,'2005-08-06 17:22:03',2,'2006-02-15 21:30:53'), - (9209,'2005-07-30 12:55:36',3940,23,'2005-08-03 11:31:36',2,'2006-02-15 21:30:53'), - (9210,'2005-07-30 12:56:44',101,105,'2005-08-08 09:41:44',2,'2006-02-15 21:30:53'), - (9211,'2005-07-30 12:59:45',595,57,'2005-08-07 18:17:45',2,'2006-02-15 21:30:53'), - (9212,'2005-07-30 13:03:13',2111,73,'2005-08-06 09:48:13',1,'2006-02-15 21:30:53'), - (9213,'2005-07-30 13:07:11',184,388,'2005-08-01 15:30:11',1,'2006-02-15 21:30:53'), - (9214,'2005-07-30 13:10:14',2823,181,'2005-08-06 14:22:14',2,'2006-02-15 21:30:53'), - (9215,'2005-07-30 13:11:11',3591,128,'2005-08-06 13:06:11',1,'2006-02-15 21:30:53'), - (9216,'2005-07-30 13:11:19',2783,38,'2005-07-31 11:27:19',2,'2006-02-15 21:30:53'), - (9217,'2005-07-30 13:13:55',1561,112,'2005-08-05 17:27:55',1,'2006-02-15 21:30:53'), - (9218,'2005-07-30 13:14:35',119,172,'2005-08-07 18:03:35',1,'2006-02-15 21:30:53'), - (9219,'2005-07-30 13:15:21',771,329,'2005-08-01 11:39:21',1,'2006-02-15 21:30:53'), - (9220,'2005-07-30 13:17:27',2463,569,'2005-08-07 11:34:27',2,'2006-02-15 21:30:53'), - (9221,'2005-07-30 13:20:06',2496,113,'2005-08-06 13:58:06',2,'2006-02-15 21:30:53'), - (9222,'2005-07-30 13:21:08',3648,95,'2005-08-08 10:42:08',2,'2006-02-15 21:30:53'), - (9223,'2005-07-30 13:23:20',3231,595,'2005-08-04 11:24:20',1,'2006-02-15 21:30:53'), - (9224,'2005-07-30 13:25:37',2260,406,'2005-08-01 15:13:37',2,'2006-02-15 21:30:53'), - (9225,'2005-07-30 13:29:47',1992,391,'2005-08-02 17:08:47',2,'2006-02-15 21:30:53'), - (9226,'2005-07-30 13:31:20',4315,3,'2005-08-06 16:42:20',1,'2006-02-15 21:30:53'), - (9227,'2005-07-30 13:36:13',2353,522,'2005-08-07 17:39:13',1,'2006-02-15 21:30:53'), - (9228,'2005-07-30 13:36:57',2325,91,'2005-08-05 10:43:57',1,'2006-02-15 21:30:53'), - (9229,'2005-07-30 13:38:17',3780,276,'2005-08-08 18:17:17',2,'2006-02-15 21:30:53'), - (9230,'2005-07-30 13:39:42',1199,109,'2005-07-31 19:20:42',1,'2006-02-15 21:30:53'), - (9231,'2005-07-30 13:42:15',1587,489,'2005-08-02 19:27:15',1,'2006-02-15 21:30:53'), - (9232,'2005-07-30 13:43:00',1991,502,'2005-08-02 11:39:00',2,'2006-02-15 21:30:53'), - (9233,'2005-07-30 13:44:15',2320,357,'2005-08-07 13:02:15',2,'2006-02-15 21:30:53'), - (9234,'2005-07-30 13:45:54',1660,128,'2005-08-02 15:33:54',1,'2006-02-15 21:30:53'), - (9235,'2005-07-30 13:47:17',984,181,'2005-08-06 17:15:17',2,'2006-02-15 21:30:53'), - (9236,'2005-07-30 13:47:43',4030,2,'2005-08-08 18:52:43',1,'2006-02-15 21:30:53'), - (9237,'2005-07-30 13:48:17',2777,157,'2005-07-31 13:57:17',2,'2006-02-15 21:30:53'), - (9238,'2005-07-30 13:49:43',3356,12,'2005-08-08 08:25:43',2,'2006-02-15 21:30:53'), - (9239,'2005-07-30 13:50:52',1728,580,'2005-08-06 16:28:52',1,'2006-02-15 21:30:53'), - (9240,'2005-07-30 13:57:54',587,92,'2005-08-03 12:23:54',2,'2006-02-15 21:30:53'), - (9241,'2005-07-30 13:58:41',4145,187,'2005-08-04 09:44:41',2,'2006-02-15 21:30:53'), - (9242,'2005-07-30 14:03:58',755,306,'2005-08-02 18:09:58',2,'2006-02-15 21:30:53'), - (9243,'2005-07-30 14:06:27',876,516,'2005-08-06 09:26:27',2,'2006-02-15 21:30:53'), - (9244,'2005-07-30 14:06:53',3640,27,'2005-08-03 19:46:53',1,'2006-02-15 21:30:53'), - (9245,'2005-07-30 14:07:50',2586,116,'2005-08-06 17:59:50',2,'2006-02-15 21:30:53'), - (9246,'2005-07-30 14:12:31',3390,185,'2005-08-02 14:25:31',2,'2006-02-15 21:30:53'), - (9247,'2005-07-30 14:13:56',4106,426,'2005-08-02 16:34:56',2,'2006-02-15 21:30:53'), - (9248,'2005-07-30 14:14:11',1382,2,'2005-08-05 11:19:11',1,'2006-02-15 21:30:53'), - (9249,'2005-07-30 14:15:02',2015,296,'2005-08-05 13:02:02',1,'2006-02-15 21:30:53'), - (9250,'2005-07-30 14:18:16',4544,539,'2005-08-04 12:31:16',1,'2006-02-15 21:30:53'), - (9251,'2005-07-30 14:19:25',2948,390,'2005-08-08 11:22:25',2,'2006-02-15 21:30:53'), - (9252,'2005-07-30 14:19:59',2350,322,'2005-08-07 15:17:59',1,'2006-02-15 21:30:53'), - (9253,'2005-07-30 14:20:12',4183,151,'2005-07-31 11:31:12',2,'2006-02-15 21:30:53'), - (9254,'2005-07-30 14:26:11',495,33,'2005-08-04 16:12:11',1,'2006-02-15 21:30:53'), - (9255,'2005-07-30 14:26:46',1596,23,'2005-08-07 18:16:46',1,'2006-02-15 21:30:53'), - (9256,'2005-07-30 14:29:29',4021,19,'2005-08-05 16:59:29',1,'2006-02-15 21:30:53'), - (9257,'2005-07-30 14:30:38',2615,466,'2005-08-04 17:57:38',1,'2006-02-15 21:30:53'), - (9258,'2005-07-30 14:31:31',2007,275,'2005-08-05 16:29:31',2,'2006-02-15 21:30:53'), - (9259,'2005-07-30 14:37:44',97,138,'2005-08-06 18:05:44',2,'2006-02-15 21:30:53'), - (9260,'2005-07-30 14:38:22',3969,13,'2005-08-07 18:47:22',2,'2006-02-15 21:30:53'), - (9261,'2005-07-30 14:39:35',372,380,'2005-08-08 11:26:35',1,'2006-02-15 21:30:53'), - (9262,'2005-07-30 14:45:02',2322,349,'2005-08-05 15:18:02',2,'2006-02-15 21:30:53'), - (9263,'2005-07-30 14:48:24',73,410,'2005-08-04 19:06:24',2,'2006-02-15 21:30:53'), - (9264,'2005-07-30 14:51:36',4071,157,'2005-08-02 10:06:36',1,'2006-02-15 21:30:53'), - (9265,'2005-07-30 14:55:25',3700,560,'2005-08-02 11:34:25',1,'2006-02-15 21:30:53'), - (9266,'2005-07-30 14:59:01',1705,364,'2005-07-31 17:01:01',2,'2006-02-15 21:30:53'), - (9267,'2005-07-30 14:59:05',645,409,'2005-08-04 10:17:05',1,'2006-02-15 21:30:53'), - (9268,'2005-07-30 15:02:30',3593,592,'2005-08-05 12:50:30',1,'2006-02-15 21:30:53'), - (9269,'2005-07-30 15:02:33',548,435,'2005-08-02 16:32:33',1,'2006-02-15 21:30:53'), - (9270,'2005-07-30 15:03:16',700,232,'2005-07-31 16:09:16',2,'2006-02-15 21:30:53'), - (9271,'2005-07-30 15:04:31',2660,100,'2005-07-31 20:33:31',1,'2006-02-15 21:30:53'), - (9272,'2005-07-30 15:05:22',1352,553,'2005-08-05 10:02:22',2,'2006-02-15 21:30:53'), - (9273,'2005-07-30 15:05:36',1867,497,'2005-08-08 09:07:36',1,'2006-02-15 21:30:53'), - (9274,'2005-07-30 15:07:04',4424,47,'2005-08-06 11:17:04',2,'2006-02-15 21:30:53'), - (9275,'2005-07-30 15:09:15',1916,439,'2005-07-31 10:23:15',2,'2006-02-15 21:30:53'), - (9276,'2005-07-30 15:09:28',1528,237,'2005-08-06 19:39:28',1,'2006-02-15 21:30:53'), - (9277,'2005-07-30 15:13:45',3734,82,'2005-08-05 10:25:45',2,'2006-02-15 21:30:53'), - (9278,'2005-07-30 15:15:19',3782,581,'2005-08-03 20:21:19',1,'2006-02-15 21:30:53'), - (9279,'2005-07-30 15:15:21',1070,567,'2005-08-07 18:46:21',1,'2006-02-15 21:30:53'), - (9280,'2005-07-30 15:15:38',4103,286,'2005-08-05 19:20:38',2,'2006-02-15 21:30:53'), - (9281,'2005-07-30 15:15:51',3086,398,'2005-08-05 12:58:51',1,'2006-02-15 21:30:53'), - (9282,'2005-07-30 15:17:31',736,259,'2005-08-07 20:46:31',1,'2006-02-15 21:30:53'), - (9283,'2005-07-30 15:25:19',1858,360,'2005-08-01 15:35:19',2,'2006-02-15 21:30:53'), - (9284,'2005-07-30 15:25:19',3976,38,'2005-08-01 17:45:19',2,'2006-02-15 21:30:53'), - (9285,'2005-07-30 15:26:08',3686,273,'2005-08-06 15:59:08',2,'2006-02-15 21:30:53'), - (9286,'2005-07-30 15:32:28',2477,154,'2005-07-31 20:42:28',2,'2006-02-15 21:30:53'), - (9287,'2005-07-30 15:35:39',2048,551,'2005-08-02 10:15:39',1,'2006-02-15 21:30:53'), - (9288,'2005-07-30 15:56:39',2640,447,'2005-08-04 13:25:39',2,'2006-02-15 21:30:53'), - (9289,'2005-07-30 15:57:04',389,453,'2005-08-07 18:46:04',1,'2006-02-15 21:30:53'), - (9290,'2005-07-30 15:59:08',2275,500,'2005-08-06 21:49:08',2,'2006-02-15 21:30:53'), - (9291,'2005-07-30 16:03:39',2884,406,'2005-08-05 11:11:39',2,'2006-02-15 21:30:53'), - (9292,'2005-07-30 16:08:21',1702,11,'2005-08-07 10:38:21',2,'2006-02-15 21:30:53'), - (9293,'2005-07-30 16:12:28',1676,65,'2005-08-05 18:34:28',2,'2006-02-15 21:30:53'), - (9294,'2005-07-30 16:14:37',2468,433,'2005-08-07 18:49:37',1,'2006-02-15 21:30:53'), - (9295,'2005-07-30 16:18:39',494,102,'2005-08-03 12:46:39',1,'2006-02-15 21:30:53'), - (9296,'2005-07-30 16:21:13',4088,2,'2005-08-08 11:57:13',1,'2006-02-15 21:30:53'), - (9297,'2005-07-30 16:26:29',3502,191,'2005-08-03 13:51:29',1,'2006-02-15 21:30:53'), - (9298,'2005-07-30 16:27:53',2106,208,'2005-08-07 12:32:53',2,'2006-02-15 21:30:53'), - (9299,'2005-07-30 16:32:51',1515,555,'2005-08-08 15:28:51',2,'2006-02-15 21:30:53'), - (9300,'2005-07-30 16:33:12',1639,571,'2005-08-05 15:56:12',1,'2006-02-15 21:30:53'), - (9301,'2005-07-30 16:34:29',1073,174,'2005-07-31 18:41:29',2,'2006-02-15 21:30:53'), - (9302,'2005-07-30 16:34:57',2326,55,'2005-07-31 11:08:57',2,'2006-02-15 21:30:53'), - (9303,'2005-07-30 16:35:59',4299,186,'2005-08-03 18:31:59',1,'2006-02-15 21:30:53'), - (9304,'2005-07-30 16:41:34',2937,296,'2005-08-02 13:55:34',2,'2006-02-15 21:30:53'), - (9305,'2005-07-30 16:45:56',1224,82,'2005-08-08 21:15:56',2,'2006-02-15 21:30:53'), - (9306,'2005-07-30 16:47:17',3983,336,'2005-08-02 22:15:17',1,'2006-02-15 21:30:53'), - (9307,'2005-07-30 16:52:43',3831,538,'2005-08-01 11:58:43',1,'2006-02-15 21:30:53'), - (9308,'2005-07-30 16:53:21',2202,267,'2005-08-08 15:33:21',2,'2006-02-15 21:30:53'), - (9309,'2005-07-30 16:55:53',3616,30,'2005-08-07 11:23:53',1,'2006-02-15 21:30:53'), - (9310,'2005-07-30 16:57:09',2957,529,'2005-08-03 18:14:09',1,'2006-02-15 21:30:53'), - (9311,'2005-07-30 16:58:31',1432,178,'2005-08-07 15:23:31',1,'2006-02-15 21:30:53'), - (9312,'2005-07-30 16:59:17',2483,76,'2005-08-03 17:24:17',2,'2006-02-15 21:30:53'), - (9313,'2005-07-30 16:59:43',4070,41,'2005-08-05 14:06:43',2,'2006-02-15 21:30:53'), - (9314,'2005-07-30 17:05:19',2358,390,'2005-07-31 12:19:19',1,'2006-02-15 21:30:53'), - (9315,'2005-07-30 17:05:29',444,96,'2005-08-01 12:47:29',1,'2006-02-15 21:30:53'), - (9316,'2005-07-30 17:11:58',4409,366,'2005-08-05 14:36:58',1,'2006-02-15 21:30:53'), - (9317,'2005-07-30 17:13:37',4138,217,'2005-08-08 11:33:37',1,'2006-02-15 21:30:53'), - (9318,'2005-07-30 17:14:30',2426,314,'2005-08-06 16:53:30',1,'2006-02-15 21:30:53'), - (9319,'2005-07-30 17:15:27',4066,136,'2005-08-03 14:03:27',1,'2006-02-15 21:30:53'), - (9320,'2005-07-30 17:16:39',909,221,'2005-08-06 18:43:39',2,'2006-02-15 21:30:53'), - (9321,'2005-07-30 17:19:44',3558,112,'2005-08-06 22:42:44',2,'2006-02-15 21:30:53'), - (9322,'2005-07-30 17:21:39',223,439,'2005-08-06 16:58:39',2,'2006-02-15 21:30:53'), - (9323,'2005-07-30 17:21:44',3749,131,'2005-08-03 16:28:44',1,'2006-02-15 21:30:53'), - (9324,'2005-07-30 17:28:52',1231,332,'2005-08-06 19:02:52',1,'2006-02-15 21:30:53'), - (9325,'2005-07-30 17:29:19',1938,476,'2005-08-08 12:55:19',2,'2006-02-15 21:30:53'), - (9326,'2005-07-30 17:30:03',3772,588,'2005-08-01 13:41:03',2,'2006-02-15 21:30:53'), - (9327,'2005-07-30 17:31:03',345,373,'2005-08-08 19:16:03',1,'2006-02-15 21:30:53'), - (9328,'2005-07-30 17:32:11',1087,89,'2005-08-05 13:36:11',1,'2006-02-15 21:30:53'), - (9329,'2005-07-30 17:42:38',1293,593,'2005-08-08 23:17:38',1,'2006-02-15 21:30:53'), - (9330,'2005-07-30 17:44:24',4227,232,'2005-08-08 17:39:24',1,'2006-02-15 21:30:53'), - (9331,'2005-07-30 17:46:50',2248,274,'2005-08-01 19:03:50',1,'2006-02-15 21:30:53'), - (9332,'2005-07-30 17:53:39',1156,480,'2005-08-02 12:25:39',1,'2006-02-15 21:30:53'), - (9333,'2005-07-30 17:53:45',1377,437,'2005-07-31 22:35:45',2,'2006-02-15 21:30:53'), - (9334,'2005-07-30 17:56:38',1499,25,'2005-08-03 21:27:38',1,'2006-02-15 21:30:53'), - (9335,'2005-07-30 18:00:53',1006,522,'2005-08-01 16:05:53',1,'2006-02-15 21:30:53'), - (9336,'2005-07-30 18:01:15',1911,557,'2005-08-05 23:10:15',1,'2006-02-15 21:30:53'), - (9337,'2005-07-30 18:02:25',2363,90,'2005-07-31 12:30:25',2,'2006-02-15 21:30:53'), - (9338,'2005-07-30 18:03:13',1482,333,'2005-08-08 23:57:13',2,'2006-02-15 21:30:53'), - (9339,'2005-07-30 18:03:28',3171,68,'2005-08-08 19:45:28',2,'2006-02-15 21:30:53'), - (9340,'2005-07-30 18:07:16',3228,213,'2005-08-04 14:33:16',2,'2006-02-15 21:30:53'), - (9341,'2005-07-30 18:07:58',894,557,'2005-08-01 17:43:58',1,'2006-02-15 21:30:53'), - (9342,'2005-07-30 18:09:56',2318,552,'2005-08-08 13:54:56',2,'2006-02-15 21:30:53'), - (9343,'2005-07-30 18:13:13',3521,53,'2005-08-02 13:48:13',1,'2006-02-15 21:30:53'), - (9344,'2005-07-30 18:13:45',1005,396,'2005-08-07 15:23:45',2,'2006-02-15 21:30:53'), - (9345,'2005-07-30 18:13:51',2042,436,'2005-08-07 13:45:51',2,'2006-02-15 21:30:53'), - (9346,'2005-07-30 18:13:52',2845,196,'2005-08-03 17:58:52',1,'2006-02-15 21:30:53'), - (9347,'2005-07-30 18:16:03',3557,479,'2005-08-05 18:35:03',1,'2006-02-15 21:30:53'), - (9348,'2005-07-30 18:17:09',3128,87,'2005-08-07 15:25:09',1,'2006-02-15 21:30:53'), - (9349,'2005-07-30 18:20:08',3739,579,'2005-08-08 22:06:08',1,'2006-02-15 21:30:53'), - (9350,'2005-07-30 18:24:30',798,434,'2005-08-02 15:34:30',2,'2006-02-15 21:30:53'), - (9351,'2005-07-30 18:28:30',2063,107,'2005-08-02 17:26:30',1,'2006-02-15 21:30:53'), - (9352,'2005-07-30 18:29:26',2619,360,'2005-07-31 19:43:26',1,'2006-02-15 21:30:53'), - (9353,'2005-07-30 18:30:37',3581,283,'2005-08-06 22:32:37',2,'2006-02-15 21:30:53'), - (9354,'2005-07-30 18:32:51',510,595,'2005-08-02 21:28:51',2,'2006-02-15 21:30:53'), - (9355,'2005-07-30 18:35:25',1122,201,'2005-08-03 20:33:25',2,'2006-02-15 21:30:53'), - (9356,'2005-07-30 18:36:24',4188,60,'2005-08-03 14:10:24',1,'2006-02-15 21:30:53'), - (9357,'2005-07-30 18:37:00',3927,181,'2005-08-08 19:57:00',2,'2006-02-15 21:30:53'), - (9358,'2005-07-30 18:37:24',712,302,'2005-08-07 23:34:24',2,'2006-02-15 21:30:53'), - (9359,'2005-07-30 18:39:28',21,501,'2005-07-31 15:39:28',1,'2006-02-15 21:30:53'), - (9360,'2005-07-30 18:39:43',2119,186,'2005-08-04 22:41:43',2,'2006-02-15 21:30:53'), - (9361,'2005-07-30 18:43:49',4163,335,'2005-08-06 21:24:49',1,'2006-02-15 21:30:53'), - (9362,'2005-07-30 18:44:16',3357,420,'2005-08-01 20:14:16',1,'2006-02-15 21:30:53'), - (9363,'2005-07-30 18:44:23',873,323,'2005-08-04 15:03:23',1,'2006-02-15 21:30:53'), - (9364,'2005-07-30 18:44:44',306,87,'2005-08-08 23:55:44',2,'2006-02-15 21:30:53'), - (9365,'2005-07-30 18:46:02',1539,232,'2005-08-03 20:15:02',1,'2006-02-15 21:30:53'), - (9366,'2005-07-30 18:48:57',4013,557,'2005-08-03 15:17:57',2,'2006-02-15 21:30:53'), - (9367,'2005-07-30 18:49:58',793,557,'2005-08-08 22:04:58',1,'2006-02-15 21:30:53'), - (9368,'2005-07-30 18:50:53',3026,388,'2005-08-05 17:56:53',2,'2006-02-15 21:30:53'), - (9369,'2005-07-30 18:52:19',3538,36,'2005-08-01 12:53:19',1,'2006-02-15 21:30:53'), - (9370,'2005-07-30 18:57:29',4433,588,'2005-08-01 21:35:29',2,'2006-02-15 21:30:53'), - (9371,'2005-07-30 18:58:00',2980,4,'2005-08-03 15:14:00',1,'2006-02-15 21:30:53'), - (9372,'2005-07-30 19:04:30',4075,454,'2005-08-09 00:18:30',2,'2006-02-15 21:30:53'), - (9373,'2005-07-30 19:05:36',3478,180,'2005-08-05 16:16:36',2,'2006-02-15 21:30:53'), - (9374,'2005-07-30 19:10:03',103,302,'2005-08-06 21:54:03',2,'2006-02-15 21:30:53'), - (9375,'2005-07-30 19:10:17',3063,529,'2005-08-02 23:00:17',1,'2006-02-15 21:30:53'), - (9376,'2005-07-30 19:11:49',451,86,'2005-08-04 18:14:49',1,'2006-02-15 21:30:53'), - (9377,'2005-07-30 19:12:18',4164,421,'2005-08-05 19:38:18',1,'2006-02-15 21:30:53'), - (9378,'2005-07-30 19:12:54',2209,197,'2005-08-05 18:16:54',1,'2006-02-15 21:30:53'), - (9379,'2005-07-30 19:13:01',3855,452,'2005-08-07 19:18:01',2,'2006-02-15 21:30:53'), - (9380,'2005-07-30 19:17:31',4403,264,'2005-08-01 20:46:31',1,'2006-02-15 21:30:53'), - (9381,'2005-07-30 19:23:04',4064,329,'2005-07-31 23:37:04',2,'2006-02-15 21:30:53'), - (9382,'2005-07-30 19:23:44',2127,17,'2005-08-06 16:20:44',2,'2006-02-15 21:30:53'), - (9383,'2005-07-30 19:24:50',2806,416,'2005-08-01 21:41:50',2,'2006-02-15 21:30:53'), - (9384,'2005-07-30 19:25:35',2313,220,'2005-08-08 21:50:35',1,'2006-02-15 21:30:53'), - (9385,'2005-07-30 19:25:49',3453,570,'2005-08-08 17:08:49',2,'2006-02-15 21:30:53'), - (9386,'2005-07-30 19:26:21',1123,189,'2005-08-05 21:00:21',2,'2006-02-15 21:30:53'), - (9387,'2005-07-30 19:27:05',577,495,'2005-08-07 21:19:05',2,'2006-02-15 21:30:53'), - (9388,'2005-07-30 19:27:22',2116,332,'2005-08-08 15:31:22',2,'2006-02-15 21:30:53'), - (9389,'2005-07-30 19:27:59',3124,198,'2005-08-04 18:25:59',2,'2006-02-15 21:30:53'), - (9390,'2005-07-30 19:42:07',1794,103,'2005-08-01 23:17:07',1,'2006-02-15 21:30:53'), - (9391,'2005-07-30 19:48:41',665,273,'2005-08-04 15:27:41',1,'2006-02-15 21:30:53'), - (9392,'2005-07-30 19:50:13',2797,29,'2005-08-03 22:38:13',2,'2006-02-15 21:30:53'), - (9393,'2005-07-30 20:04:48',843,158,'2005-08-02 15:52:48',2,'2006-02-15 21:30:53'), - (9394,'2005-07-30 20:06:24',161,204,'2005-08-06 22:36:24',1,'2006-02-15 21:30:53'), - (9395,'2005-07-30 20:07:06',1298,306,'2005-08-08 21:21:06',1,'2006-02-15 21:30:53'), - (9396,'2005-07-30 20:07:24',1250,91,'2005-08-03 21:20:24',2,'2006-02-15 21:30:53'), - (9397,'2005-07-30 20:07:29',1550,373,'2005-08-05 00:36:29',1,'2006-02-15 21:30:53'), - (9398,'2005-07-30 20:09:00',1175,570,'2005-08-01 23:35:00',2,'2006-02-15 21:30:53'), - (9399,'2005-07-30 20:14:50',3668,569,'2005-08-03 17:30:50',1,'2006-02-15 21:30:53'), - (9400,'2005-07-30 20:15:58',3910,368,'2005-08-03 21:21:58',1,'2006-02-15 21:30:53'), - (9401,'2005-07-30 20:18:19',2057,331,'2005-08-07 15:46:19',1,'2006-02-15 21:30:53'), - (9402,'2005-07-30 20:18:27',2424,48,'2005-08-07 21:29:27',2,'2006-02-15 21:30:53'), - (9403,'2005-07-30 20:18:53',3466,267,'2005-08-06 19:54:53',1,'2006-02-15 21:30:53'), - (9404,'2005-07-30 20:21:35',3832,140,'2005-08-02 15:52:35',1,'2006-02-15 21:30:53'), - (9405,'2005-07-30 20:22:17',1983,463,'2005-08-08 16:55:17',1,'2006-02-15 21:30:53'), - (9406,'2005-07-30 20:24:00',3419,453,'2005-08-07 19:50:00',1,'2006-02-15 21:30:53'), - (9407,'2005-07-30 20:25:24',2594,585,'2005-08-08 22:51:24',2,'2006-02-15 21:30:53'), - (9408,'2005-07-30 20:32:09',4383,571,'2005-08-04 20:14:09',2,'2006-02-15 21:30:53'), - (9409,'2005-07-30 20:33:53',3053,156,'2005-08-05 18:32:53',2,'2006-02-15 21:30:53'), - (9410,'2005-07-30 20:38:05',1789,22,'2005-07-31 19:57:05',2,'2006-02-15 21:30:53'), - (9411,'2005-07-30 20:38:22',3484,536,'2005-08-06 01:23:22',2,'2006-02-15 21:30:53'), - (9412,'2005-07-30 20:44:10',2482,522,'2005-08-06 21:13:10',2,'2006-02-15 21:30:53'), - (9413,'2005-07-30 20:44:39',2618,290,'2005-08-01 01:56:39',2,'2006-02-15 21:30:53'), - (9414,'2005-07-30 20:46:02',578,484,'2005-08-07 21:23:02',2,'2006-02-15 21:30:53'), - (9415,'2005-07-30 20:48:31',3336,139,'2005-08-05 19:45:31',2,'2006-02-15 21:30:53'), - (9416,'2005-07-30 20:52:45',1470,265,'2005-08-02 17:38:45',2,'2006-02-15 21:30:53'), - (9417,'2005-07-30 20:54:55',2509,519,'2005-08-04 00:54:55',2,'2006-02-15 21:30:53'), - (9418,'2005-07-30 21:00:52',241,168,'2005-08-08 15:56:52',2,'2006-02-15 21:30:53'), - (9419,'2005-07-30 21:04:59',4427,142,'2005-08-06 15:47:59',2,'2006-02-15 21:30:53'), - (9420,'2005-07-30 21:05:18',147,72,'2005-08-05 23:52:18',2,'2006-02-15 21:30:53'), - (9421,'2005-07-30 21:08:32',2206,161,'2005-08-02 00:43:32',1,'2006-02-15 21:30:53'), - (9422,'2005-07-30 21:08:41',1843,470,'2005-08-07 15:55:41',1,'2006-02-15 21:30:53'), - (9423,'2005-07-30 21:10:14',3145,242,'2005-08-07 16:34:14',2,'2006-02-15 21:30:53'), - (9424,'2005-07-30 21:10:56',4499,256,'2005-08-05 00:01:56',1,'2006-02-15 21:30:53'), - (9425,'2005-07-30 21:11:21',271,295,'2005-08-05 19:00:21',1,'2006-02-15 21:30:53'), - (9427,'2005-07-30 21:16:33',1494,85,'2005-08-05 17:23:33',2,'2006-02-15 21:30:53'), - (9428,'2005-07-30 21:18:37',1948,335,'2005-08-05 16:09:37',1,'2006-02-15 21:30:53'), - (9429,'2005-07-30 21:19:26',1769,288,'2005-08-07 18:39:26',1,'2006-02-15 21:30:53'), - (9430,'2005-07-30 21:20:13',1529,367,'2005-08-04 21:45:13',2,'2006-02-15 21:30:53'), - (9431,'2005-07-30 21:24:22',3364,39,'2005-08-03 01:22:22',2,'2006-02-15 21:30:53'), - (9432,'2005-07-30 21:26:18',2489,570,'2005-08-05 00:23:18',1,'2006-02-15 21:30:53'), - (9433,'2005-07-30 21:28:17',1082,128,'2005-08-08 18:20:17',2,'2006-02-15 21:30:53'), - (9434,'2005-07-30 21:29:41',3792,13,'2005-08-01 16:30:41',2,'2006-02-15 21:30:53'), - (9435,'2005-07-30 21:31:02',3116,301,'2005-08-05 22:34:02',1,'2006-02-15 21:30:53'), - (9436,'2005-07-30 21:33:01',2329,268,'2005-08-06 17:38:01',1,'2006-02-15 21:30:53'), - (9437,'2005-07-30 21:36:04',1230,592,'2005-08-08 01:26:04',1,'2006-02-15 21:30:53'), - (9438,'2005-07-30 21:36:15',121,14,'2005-08-07 16:54:15',2,'2006-02-15 21:30:53'), - (9439,'2005-07-30 21:38:12',290,479,'2005-08-06 00:03:12',1,'2006-02-15 21:30:53'), - (9440,'2005-07-30 21:40:15',414,535,'2005-08-04 15:45:15',2,'2006-02-15 21:30:53'), - (9441,'2005-07-30 21:43:28',3982,519,'2005-08-08 16:57:28',1,'2006-02-15 21:30:53'), - (9442,'2005-07-30 21:44:31',44,75,'2005-08-04 01:29:31',1,'2006-02-15 21:30:53'), - (9443,'2005-07-30 21:45:46',1675,3,'2005-08-05 21:22:46',1,'2006-02-15 21:30:53'), - (9444,'2005-07-30 21:48:44',1134,259,'2005-08-08 22:36:44',2,'2006-02-15 21:30:53'), - (9445,'2005-07-30 21:50:42',1480,549,'2005-08-05 18:34:42',2,'2006-02-15 21:30:53'), - (9446,'2005-07-30 21:53:01',1880,477,'2005-08-06 19:00:01',2,'2006-02-15 21:30:53'), - (9447,'2005-07-30 21:54:22',1053,82,'2005-08-09 01:07:22',2,'2006-02-15 21:30:53'), - (9448,'2005-07-30 21:56:13',1213,278,'2005-08-04 18:03:13',1,'2006-02-15 21:30:53'), - (9449,'2005-07-30 22:02:34',2,581,'2005-08-06 02:09:34',1,'2006-02-15 21:30:53'), - (9450,'2005-07-30 22:04:04',1371,430,'2005-08-05 18:39:04',2,'2006-02-15 21:30:53'), - (9451,'2005-07-30 22:10:17',685,584,'2005-08-07 02:53:17',2,'2006-02-15 21:30:53'), - (9452,'2005-07-30 22:19:16',3178,130,'2005-08-04 19:26:16',1,'2006-02-15 21:30:53'), - (9453,'2005-07-30 22:20:04',1988,221,'2005-08-08 02:27:04',1,'2006-02-15 21:30:53'), - (9454,'2005-07-30 22:20:09',3028,81,'2005-08-04 01:33:09',2,'2006-02-15 21:30:53'), - (9455,'2005-07-30 22:20:29',2647,220,'2005-08-08 20:08:29',1,'2006-02-15 21:30:53'), - (9456,'2005-07-30 22:22:16',2068,534,'2005-08-05 18:56:16',2,'2006-02-15 21:30:53'), - (9457,'2005-07-30 22:23:05',2172,487,'2005-07-31 23:07:05',2,'2006-02-15 21:30:53'), - (9458,'2005-07-30 22:24:34',3105,343,'2005-08-04 21:26:34',2,'2006-02-15 21:30:53'), - (9459,'2005-07-30 22:24:46',1132,489,'2005-08-02 00:44:46',2,'2006-02-15 21:30:53'), - (9460,'2005-07-30 22:25:39',4463,580,'2005-08-08 20:56:39',2,'2006-02-15 21:30:53'), - (9461,'2005-07-30 22:29:13',1679,377,'2005-08-05 20:55:13',2,'2006-02-15 21:30:53'), - (9462,'2005-07-30 22:30:44',4090,192,'2005-08-09 03:54:44',2,'2006-02-15 21:30:53'), - (9463,'2005-07-30 22:30:57',883,352,'2005-08-03 22:53:57',1,'2006-02-15 21:30:53'), - (9464,'2005-07-30 22:31:31',3904,534,'2005-08-07 01:10:31',2,'2006-02-15 21:30:53'), - (9465,'2005-07-30 22:39:53',3084,2,'2005-08-06 16:43:53',2,'2006-02-15 21:30:53'), - (9466,'2005-07-30 22:44:36',2595,137,'2005-08-07 02:35:36',2,'2006-02-15 21:30:53'), - (9467,'2005-07-30 22:45:34',1905,202,'2005-08-08 00:58:34',2,'2006-02-15 21:30:53'), - (9468,'2005-07-30 22:53:52',4366,20,'2005-08-07 00:22:52',2,'2006-02-15 21:30:53'), - (9469,'2005-07-30 22:56:34',967,59,'2005-08-07 03:16:34',2,'2006-02-15 21:30:53'), - (9470,'2005-07-30 23:01:31',3908,566,'2005-08-07 01:35:31',2,'2006-02-15 21:30:53'), - (9471,'2005-07-30 23:02:36',2390,424,'2005-08-04 17:49:36',1,'2006-02-15 21:30:53'), - (9472,'2005-07-30 23:03:32',4178,404,'2005-08-01 18:02:32',1,'2006-02-15 21:30:53'), - (9473,'2005-07-30 23:04:13',1717,185,'2005-08-04 21:48:13',2,'2006-02-15 21:30:53'), - (9474,'2005-07-30 23:05:44',3771,206,'2005-08-05 23:46:44',1,'2006-02-15 21:30:53'), - (9475,'2005-07-30 23:06:33',2186,567,'2005-08-04 23:23:33',1,'2006-02-15 21:30:53'), - (9476,'2005-07-30 23:06:40',3599,197,'2005-08-04 22:52:40',2,'2006-02-15 21:30:53'), - (9477,'2005-07-30 23:07:22',1932,213,'2005-08-04 20:54:22',1,'2006-02-15 21:30:53'), - (9478,'2005-07-30 23:12:53',1139,283,'2005-08-04 02:41:53',1,'2006-02-15 21:30:53'), - (9479,'2005-07-30 23:22:09',3461,308,'2005-07-31 22:26:09',2,'2006-02-15 21:30:53'), - (9480,'2005-07-30 23:26:03',597,373,'2005-08-04 21:18:03',2,'2006-02-15 21:30:53'), - (9481,'2005-07-30 23:26:05',613,481,'2005-08-04 17:46:05',1,'2006-02-15 21:30:53'), - (9482,'2005-07-30 23:29:16',2421,348,'2005-08-02 20:37:16',2,'2006-02-15 21:30:53'), - (9483,'2005-07-30 23:31:31',1136,593,'2005-08-09 04:29:31',2,'2006-02-15 21:30:53'), - (9484,'2005-07-30 23:31:40',3389,26,'2005-08-02 18:25:40',1,'2006-02-15 21:30:53'), - (9485,'2005-07-30 23:32:40',3722,338,'2005-08-08 17:44:40',1,'2006-02-15 21:30:53'), - (9486,'2005-07-30 23:35:42',2787,403,'2005-08-09 02:08:42',2,'2006-02-15 21:30:53'), - (9487,'2005-07-30 23:40:22',2165,406,'2005-08-01 22:29:22',1,'2006-02-15 21:30:53'), - (9488,'2005-07-30 23:42:42',4221,528,'2005-08-08 22:15:42',1,'2006-02-15 21:30:53'), - (9489,'2005-07-30 23:43:32',4011,17,'2005-07-31 20:45:32',2,'2006-02-15 21:30:53'), - (9490,'2005-07-30 23:45:09',1302,487,'2005-08-07 18:50:09',1,'2006-02-15 21:30:53'), - (9491,'2005-07-30 23:45:23',3624,179,'2005-08-01 00:33:23',2,'2006-02-15 21:30:53'), - (9492,'2005-07-30 23:52:21',639,126,'2005-08-08 20:50:21',2,'2006-02-15 21:30:53'), - (9493,'2005-07-30 23:52:30',1522,5,'2005-08-08 05:22:30',1,'2006-02-15 21:30:53'), - (9494,'2005-07-30 23:52:46',3799,254,'2005-08-05 23:13:46',2,'2006-02-15 21:30:53'), - (9495,'2005-07-30 23:54:26',2128,397,'2005-08-01 22:02:26',2,'2006-02-15 21:30:53'), - (9496,'2005-07-30 23:55:20',453,125,'2005-08-02 02:47:20',2,'2006-02-15 21:30:53'), - (9497,'2005-07-30 23:56:54',933,595,'2005-08-04 19:52:54',1,'2006-02-15 21:30:53'), - (9498,'2005-07-30 23:56:55',1035,289,'2005-08-03 18:34:55',2,'2006-02-15 21:30:53'), - (9499,'2005-07-30 23:58:30',602,461,'2005-08-01 00:55:30',2,'2006-02-15 21:30:53'), - (9500,'2005-07-30 23:58:36',2808,241,'2005-08-07 21:08:36',2,'2006-02-15 21:30:53'), - (9501,'2005-07-30 23:59:21',4398,75,'2005-08-05 19:50:21',2,'2006-02-15 21:30:53'), - (9502,'2005-07-31 00:02:10',2700,471,'2005-08-01 19:47:10',1,'2006-02-15 21:30:53'), - (9503,'2005-07-31 00:02:38',1013,311,'2005-08-06 06:01:38',1,'2006-02-15 21:30:53'), - (9504,'2005-07-31 00:09:07',91,125,'2005-08-02 05:44:07',1,'2006-02-15 21:30:53'), - (9505,'2005-07-31 00:11:19',4047,543,'2005-08-05 18:24:19',2,'2006-02-15 21:30:53'), - (9506,'2005-07-31 00:19:01',3872,189,'2005-08-02 00:20:01',1,'2006-02-15 21:30:53'), - (9507,'2005-07-31 00:22:29',387,525,'2005-08-07 05:59:29',2,'2006-02-15 21:30:53'), - (9508,'2005-07-31 00:22:39',1204,316,'2005-08-04 05:40:39',1,'2006-02-15 21:30:53'), - (9509,'2005-07-31 00:22:42',818,320,'2005-08-03 23:24:42',1,'2006-02-15 21:30:53'), - (9510,'2005-07-31 00:24:17',2301,494,'2005-08-08 18:47:17',2,'2006-02-15 21:30:53'), - (9511,'2005-07-31 00:25:05',964,549,'2005-08-09 02:46:05',1,'2006-02-15 21:30:53'), - (9512,'2005-07-31 00:26:30',3786,173,'2005-08-04 23:43:30',2,'2006-02-15 21:30:53'), - (9513,'2005-07-31 00:28:30',396,317,'2005-08-01 00:22:30',2,'2006-02-15 21:30:53'), - (9514,'2005-07-31 00:29:44',1892,243,'2005-08-02 23:49:44',1,'2006-02-15 21:30:53'), - (9515,'2005-07-31 00:35:05',3099,264,'2005-08-02 23:35:05',2,'2006-02-15 21:30:53'), - (9516,'2005-07-31 00:40:58',3519,424,'2005-08-07 02:13:58',2,'2006-02-15 21:30:53'), - (9517,'2005-07-31 00:41:23',3299,170,'2005-08-02 23:08:23',1,'2006-02-15 21:30:53'), - (9518,'2005-07-31 00:43:26',2714,215,'2005-08-04 19:12:26',2,'2006-02-15 21:30:53'), - (9519,'2005-07-31 00:45:57',3767,235,'2005-08-06 00:59:57',2,'2006-02-15 21:30:53'), - (9520,'2005-07-31 00:50:54',1306,299,'2005-08-04 20:05:54',1,'2006-02-15 21:30:53'), - (9521,'2005-07-31 00:52:24',1423,227,'2005-08-06 03:33:24',2,'2006-02-15 21:30:53'), - (9522,'2005-07-31 00:55:11',4266,294,'2005-08-03 06:41:11',2,'2006-02-15 21:30:53'), - (9523,'2005-07-31 00:56:09',891,356,'2005-08-05 05:44:09',2,'2006-02-15 21:30:53'), - (9524,'2005-07-31 01:01:06',1796,535,'2005-08-04 04:06:06',2,'2006-02-15 21:30:53'), - (9525,'2005-07-31 01:02:18',2990,246,'2005-08-06 21:31:18',1,'2006-02-15 21:30:53'), - (9526,'2005-07-31 01:02:22',417,342,'2005-08-04 03:00:22',1,'2006-02-15 21:30:53'), - (9527,'2005-07-31 01:02:24',2539,200,'2005-08-09 02:08:24',2,'2006-02-15 21:30:53'), - (9528,'2005-07-31 01:05:04',193,241,'2005-08-07 01:16:04',1,'2006-02-15 21:30:53'), - (9529,'2005-07-31 01:05:26',816,123,'2005-08-02 22:30:26',2,'2006-02-15 21:30:53'), - (9530,'2005-07-31 01:09:06',1718,148,'2005-08-04 23:47:06',2,'2006-02-15 21:30:53'), - (9531,'2005-07-31 01:11:53',4550,268,'2005-08-07 02:49:53',1,'2006-02-15 21:30:53'), - (9532,'2005-07-31 01:16:51',1309,488,'2005-08-01 20:23:51',1,'2006-02-15 21:30:53'), - (9533,'2005-07-31 01:18:10',4156,522,'2005-08-07 19:58:10',1,'2006-02-15 21:30:53'), - (9534,'2005-07-31 01:18:27',4457,519,'2005-08-06 00:28:27',1,'2006-02-15 21:30:53'), - (9535,'2005-07-31 01:18:53',2413,485,'2005-08-04 03:04:53',2,'2006-02-15 21:30:53'), - (9536,'2005-07-31 01:19:02',2547,310,'2005-08-02 19:38:02',1,'2006-02-15 21:30:53'), - (9537,'2005-07-31 01:23:00',546,488,'2005-08-01 01:16:00',2,'2006-02-15 21:30:53'), - (9538,'2005-07-31 01:25:22',3402,68,'2005-08-06 00:10:22',2,'2006-02-15 21:30:53'), - (9539,'2005-07-31 01:36:19',3793,436,'2005-08-04 23:47:19',1,'2006-02-15 21:30:53'), - (9540,'2005-07-31 01:40:06',2200,365,'2005-08-01 01:09:06',1,'2006-02-15 21:30:53'), - (9541,'2005-07-31 01:40:14',1774,422,'2005-08-05 06:34:14',2,'2006-02-15 21:30:53'), - (9542,'2005-07-31 01:41:48',2243,595,'2005-08-01 00:49:48',2,'2006-02-15 21:30:53'), - (9543,'2005-07-31 01:43:34',956,369,'2005-08-01 06:49:34',1,'2006-02-15 21:30:53'), - (9544,'2005-07-31 01:44:51',2383,28,'2005-08-05 05:25:51',2,'2006-02-15 21:30:53'), - (9545,'2005-07-31 01:46:24',3451,594,'2005-08-09 06:11:24',1,'2006-02-15 21:30:53'), - (9546,'2005-07-31 01:47:40',211,63,'2005-08-02 07:25:40',2,'2006-02-15 21:30:53'), - (9547,'2005-07-31 01:52:34',2414,440,'2005-08-03 23:12:34',2,'2006-02-15 21:30:53'), - (9548,'2005-07-31 01:54:19',3038,576,'2005-08-05 00:50:19',2,'2006-02-15 21:30:53'), - (9549,'2005-07-31 01:57:04',2409,63,'2005-08-07 21:00:04',2,'2006-02-15 21:30:53'), - (9550,'2005-07-31 01:57:34',2233,583,'2005-08-08 23:33:34',1,'2006-02-15 21:30:53'), - (9551,'2005-07-31 02:04:58',1260,30,'2005-08-06 04:07:58',2,'2006-02-15 21:30:53'), - (9552,'2005-07-31 02:05:32',3544,261,'2005-08-01 06:59:32',1,'2006-02-15 21:30:53'), - (9553,'2005-07-31 02:06:34',4187,579,'2005-08-08 02:20:34',1,'2006-02-15 21:30:53'), - (9554,'2005-07-31 02:06:49',2581,490,'2005-08-01 22:27:49',1,'2006-02-15 21:30:53'), - (9555,'2005-07-31 02:11:16',2108,382,'2005-08-03 06:58:16',2,'2006-02-15 21:30:53'), - (9556,'2005-07-31 02:13:30',3269,521,'2005-08-08 06:46:30',1,'2006-02-15 21:30:53'), - (9557,'2005-07-31 02:14:01',708,328,'2005-08-05 23:55:01',1,'2006-02-15 21:30:53'), - (9558,'2005-07-31 02:14:35',1161,418,'2005-08-06 03:00:35',1,'2006-02-15 21:30:53'), - (9559,'2005-07-31 02:15:53',2882,159,'2005-08-08 02:38:53',1,'2006-02-15 21:30:53'), - (9560,'2005-07-31 02:17:27',4236,471,'2005-08-07 03:33:27',1,'2006-02-15 21:30:53'), - (9561,'2005-07-31 02:22:13',1079,58,'2005-08-03 07:00:13',2,'2006-02-15 21:30:53'), - (9562,'2005-07-31 02:23:20',1571,116,'2005-08-06 21:01:20',2,'2006-02-15 21:30:53'), - (9563,'2005-07-31 02:28:39',3858,167,'2005-08-05 22:10:39',1,'2006-02-15 21:30:53'), - (9564,'2005-07-31 02:31:37',383,377,'2005-08-03 22:57:37',2,'2006-02-15 21:30:53'), - (9565,'2005-07-31 02:32:00',3621,485,'2005-08-04 05:45:00',1,'2006-02-15 21:30:53'), - (9566,'2005-07-31 02:32:10',643,346,'2005-08-02 23:54:10',2,'2006-02-15 21:30:53'), - (9567,'2005-07-31 02:36:11',3688,37,'2005-08-07 01:19:11',2,'2006-02-15 21:30:53'), - (9568,'2005-07-31 02:37:44',1248,358,'2005-08-02 07:07:44',2,'2006-02-15 21:30:53'), - (9569,'2005-07-31 02:39:38',813,405,'2005-08-02 05:09:38',2,'2006-02-15 21:30:53'), - (9570,'2005-07-31 02:40:37',591,385,'2005-08-01 01:59:37',1,'2006-02-15 21:30:53'), - (9571,'2005-07-31 02:42:18',2219,1,'2005-08-02 23:26:18',2,'2006-02-15 21:30:53'), - (9572,'2005-07-31 02:44:10',1453,283,'2005-08-01 03:30:10',2,'2006-02-15 21:30:53'), - (9573,'2005-07-31 02:45:38',3745,59,'2005-08-09 04:31:38',2,'2006-02-15 21:30:53'), - (9574,'2005-07-31 02:49:20',2782,233,'2005-08-05 02:36:20',2,'2006-02-15 21:30:53'), - (9575,'2005-07-31 02:51:53',3971,193,'2005-08-03 20:54:53',2,'2006-02-15 21:30:53'), - (9576,'2005-07-31 02:52:59',3327,145,'2005-08-05 23:35:59',2,'2006-02-15 21:30:53'), - (9577,'2005-07-31 02:53:33',2423,526,'2005-08-07 05:56:33',1,'2006-02-15 21:30:53'), - (9578,'2005-07-31 02:54:31',2965,115,'2005-08-02 02:48:31',1,'2006-02-15 21:30:53'), - (9579,'2005-07-31 02:59:20',3547,35,'2005-08-06 03:52:20',2,'2006-02-15 21:30:53'), - (9580,'2005-07-31 03:01:11',532,22,'2005-08-05 06:01:11',1,'2006-02-15 21:30:53'), - (9581,'2005-07-31 03:03:07',2588,302,'2005-08-05 23:01:07',1,'2006-02-15 21:30:53'), - (9582,'2005-07-31 03:05:19',3913,347,'2005-08-04 07:26:19',1,'2006-02-15 21:30:53'), - (9583,'2005-07-31 03:05:21',3543,568,'2005-08-06 00:14:21',2,'2006-02-15 21:30:53'), - (9584,'2005-07-31 03:05:48',419,141,'2005-08-01 05:50:48',2,'2006-02-15 21:30:53'), - (9585,'2005-07-31 03:05:55',3249,197,'2005-08-02 23:54:55',2,'2006-02-15 21:30:53'), - (9586,'2005-07-31 03:07:16',3987,415,'2005-08-04 00:39:16',1,'2006-02-15 21:30:53'), - (9587,'2005-07-31 03:10:30',2966,235,'2005-08-06 06:54:30',2,'2006-02-15 21:30:53'), - (9588,'2005-07-31 03:13:13',1368,499,'2005-08-02 04:06:13',1,'2006-02-15 21:30:53'), - (9589,'2005-07-31 03:13:29',2604,574,'2005-08-09 01:51:29',2,'2006-02-15 21:30:53'), - (9590,'2005-07-31 03:17:16',2293,585,'2005-08-08 04:24:16',1,'2006-02-15 21:30:53'), - (9591,'2005-07-31 03:19:28',504,97,'2005-08-01 07:30:28',1,'2006-02-15 21:30:53'), - (9592,'2005-07-31 03:21:16',1828,14,'2005-08-05 08:32:16',1,'2006-02-15 21:30:53'), - (9593,'2005-07-31 03:22:30',1223,28,'2005-08-05 08:23:30',1,'2006-02-15 21:30:53'), - (9594,'2005-07-31 03:23:52',4382,148,'2005-08-04 23:06:52',1,'2006-02-15 21:30:53'), - (9595,'2005-07-31 03:27:58',2829,3,'2005-08-03 05:58:58',1,'2006-02-15 21:30:53'), - (9596,'2005-07-31 03:28:47',2847,55,'2005-08-04 03:43:47',2,'2006-02-15 21:30:53'), - (9597,'2005-07-31 03:29:07',3317,61,'2005-08-09 03:33:07',2,'2006-02-15 21:30:53'), - (9598,'2005-07-31 03:30:41',1105,468,'2005-08-04 03:54:41',1,'2006-02-15 21:30:53'), - (9599,'2005-07-31 03:32:06',3164,502,'2005-08-04 07:47:06',2,'2006-02-15 21:30:53'), - (9600,'2005-07-31 03:35:34',3731,464,'2005-08-08 22:50:34',1,'2006-02-15 21:30:53'), - (9601,'2005-07-31 03:42:17',1592,553,'2005-08-04 02:02:17',2,'2006-02-15 21:30:53'), - (9602,'2005-07-31 03:42:51',3173,386,'2005-08-01 08:39:51',1,'2006-02-15 21:30:53'), - (9603,'2005-07-31 03:43:43',2266,541,'2005-08-02 00:11:43',2,'2006-02-15 21:30:53'), - (9604,'2005-07-31 03:47:12',4342,580,'2005-08-03 06:48:12',1,'2006-02-15 21:30:53'), - (9605,'2005-07-31 03:50:07',1477,94,'2005-08-07 09:15:07',2,'2006-02-15 21:30:53'), - (9606,'2005-07-31 03:50:46',1357,253,'2005-08-01 05:29:46',2,'2006-02-15 21:30:53'), - (9607,'2005-07-31 03:51:06',3414,294,'2005-08-02 00:18:06',2,'2006-02-15 21:30:53'), - (9608,'2005-07-31 03:51:52',363,397,'2005-08-06 05:38:52',2,'2006-02-15 21:30:53'), - (9609,'2005-07-31 03:53:24',693,112,'2005-08-05 08:32:24',2,'2006-02-15 21:30:53'), - (9610,'2005-07-31 03:54:05',3110,16,'2005-08-06 23:11:05',1,'2006-02-15 21:30:53'), - (9611,'2005-07-31 03:54:43',1976,215,'2005-08-05 03:54:43',2,'2006-02-15 21:30:53'), - (9612,'2005-07-31 03:58:31',2142,69,'2005-08-04 07:34:31',2,'2006-02-15 21:30:53'), - (9613,'2005-07-31 03:58:53',3251,188,'2005-08-02 00:10:53',1,'2006-02-15 21:30:53'), - (9614,'2005-07-31 03:59:31',2955,548,'2005-08-08 04:19:31',1,'2006-02-15 21:30:53'), - (9615,'2005-07-31 03:59:56',3370,50,'2005-08-02 00:46:56',2,'2006-02-15 21:30:53'), - (9616,'2005-07-31 04:05:01',1210,550,'2005-08-05 00:10:01',1,'2006-02-15 21:30:53'), - (9617,'2005-07-31 04:15:38',529,102,'2005-08-02 04:24:38',1,'2006-02-15 21:30:53'), - (9618,'2005-07-31 04:16:14',2688,253,'2005-08-07 02:43:14',2,'2006-02-15 21:30:53'), - (9619,'2005-07-31 04:17:02',1730,138,'2005-08-05 06:36:02',2,'2006-02-15 21:30:53'), - (9620,'2005-07-31 04:19:18',2177,576,'2005-08-08 09:20:18',1,'2006-02-15 21:30:53'), - (9621,'2005-07-31 04:21:08',325,38,'2005-08-08 03:50:08',2,'2006-02-15 21:30:53'), - (9622,'2005-07-31 04:21:45',2255,411,'2005-08-02 09:20:45',1,'2006-02-15 21:30:53'), - (9623,'2005-07-31 04:30:02',113,360,'2005-08-06 23:34:02',1,'2006-02-15 21:30:53'), - (9624,'2005-07-31 04:30:03',3480,7,'2005-08-06 09:13:03',1,'2006-02-15 21:30:53'), - (9625,'2005-07-31 04:30:48',1703,445,'2005-08-03 01:12:48',1,'2006-02-15 21:30:53'), - (9626,'2005-07-31 04:37:41',2216,546,'2005-08-08 04:00:41',1,'2006-02-15 21:30:53'), - (9627,'2005-07-31 04:42:46',471,12,'2005-08-08 00:42:46',2,'2006-02-15 21:30:53'), - (9628,'2005-07-31 04:51:11',1387,565,'2005-07-31 23:11:11',2,'2006-02-15 21:30:53'), - (9629,'2005-07-31 04:54:43',2773,8,'2005-08-02 08:36:43',1,'2006-02-15 21:30:53'), - (9630,'2005-07-31 04:57:07',2008,599,'2005-08-07 10:55:07',2,'2006-02-15 21:30:53'), - (9631,'2005-07-31 05:02:00',321,595,'2005-08-02 02:04:00',2,'2006-02-15 21:30:53'), - (9632,'2005-07-31 05:02:23',3368,217,'2005-08-06 04:49:23',2,'2006-02-15 21:30:53'), - (9633,'2005-07-31 05:04:08',1141,334,'2005-08-06 00:52:08',2,'2006-02-15 21:30:53'), - (9634,'2005-07-31 05:06:02',924,444,'2005-08-04 06:53:02',1,'2006-02-15 21:30:53'), - (9635,'2005-07-31 05:12:27',1687,371,'2005-08-02 00:24:27',2,'2006-02-15 21:30:53'), - (9636,'2005-07-31 05:12:59',1725,27,'2005-08-09 07:31:59',2,'2006-02-15 21:30:53'), - (9637,'2005-07-31 05:18:54',3013,130,'2005-08-03 01:23:54',2,'2006-02-15 21:30:53'), - (9638,'2005-07-31 05:30:27',1616,436,'2005-08-09 02:04:27',1,'2006-02-15 21:30:53'), - (9639,'2005-07-31 05:32:10',1373,459,'2005-08-03 07:04:10',2,'2006-02-15 21:30:53'), - (9640,'2005-07-31 05:33:25',1067,67,'2005-08-09 09:41:25',1,'2006-02-15 21:30:53'), - (9641,'2005-07-31 05:33:48',1085,30,'2005-08-04 07:43:48',1,'2006-02-15 21:30:53'), - (9642,'2005-07-31 05:33:57',3550,68,'2005-08-05 04:54:57',1,'2006-02-15 21:30:53'), - (9643,'2005-07-31 05:35:48',3576,538,'2005-08-08 04:28:48',2,'2006-02-15 21:30:53'), - (9644,'2005-07-31 05:40:35',4577,441,'2005-08-09 08:18:35',1,'2006-02-15 21:30:53'), - (9645,'2005-07-31 05:42:49',3413,519,'2005-08-04 00:08:49',1,'2006-02-15 21:30:53'), - (9646,'2005-07-31 05:43:28',3756,89,'2005-08-08 04:00:28',1,'2006-02-15 21:30:53'), - (9647,'2005-07-31 05:45:15',3415,475,'2005-08-06 08:54:15',1,'2006-02-15 21:30:53'), - (9648,'2005-07-31 05:46:03',4063,72,'2005-08-09 04:36:03',2,'2006-02-15 21:30:53'), - (9649,'2005-07-31 05:46:54',1588,51,'2005-08-04 08:42:54',2,'2006-02-15 21:30:53'), - (9650,'2005-07-31 05:47:32',2997,414,'2005-08-04 00:50:32',2,'2006-02-15 21:30:53'), - (9651,'2005-07-31 05:48:49',4059,324,'2005-08-04 06:53:49',1,'2006-02-15 21:30:53'), - (9652,'2005-07-31 05:49:53',448,207,'2005-08-06 07:38:53',2,'2006-02-15 21:30:53'), - (9653,'2005-07-31 05:55:38',1451,383,'2005-08-03 09:35:38',2,'2006-02-15 21:30:53'), - (9654,'2005-07-31 05:57:42',3286,506,'2005-08-06 04:19:42',1,'2006-02-15 21:30:53'), - (9655,'2005-07-31 05:57:54',3403,435,'2005-08-06 02:00:54',1,'2006-02-15 21:30:53'), - (9656,'2005-07-31 06:00:21',4215,39,'2005-08-05 04:36:21',1,'2006-02-15 21:30:53'), - (9657,'2005-07-31 06:00:41',2681,402,'2005-08-06 06:51:41',2,'2006-02-15 21:30:53'), - (9658,'2005-07-31 06:00:52',2332,282,'2005-08-09 04:47:52',2,'2006-02-15 21:30:53'), - (9659,'2005-07-31 06:02:14',4262,360,'2005-08-07 00:54:14',2,'2006-02-15 21:30:53'), - (9660,'2005-07-31 06:03:17',1090,406,'2005-08-07 06:59:17',2,'2006-02-15 21:30:53'), - (9661,'2005-07-31 06:06:37',2693,237,'2005-08-04 07:37:37',1,'2006-02-15 21:30:53'), - (9662,'2005-07-31 06:09:53',2757,96,'2005-08-08 00:50:53',2,'2006-02-15 21:30:53'), - (9663,'2005-07-31 06:10:48',2099,339,'2005-08-01 11:40:48',2,'2006-02-15 21:30:53'), - (9664,'2005-07-31 06:12:08',360,13,'2005-08-04 02:19:08',2,'2006-02-15 21:30:53'), - (9665,'2005-07-31 06:17:33',2863,478,'2005-08-04 08:53:33',1,'2006-02-15 21:30:53'), - (9666,'2005-07-31 06:20:58',4318,592,'2005-08-06 06:09:58',2,'2006-02-15 21:30:53'), - (9667,'2005-07-31 06:23:52',4289,523,'2005-08-09 09:12:52',1,'2006-02-15 21:30:53'), - (9668,'2005-07-31 06:31:03',1647,378,'2005-08-07 06:19:03',2,'2006-02-15 21:30:53'), - (9669,'2005-07-31 06:31:36',4496,277,'2005-08-08 03:05:36',2,'2006-02-15 21:30:53'), - (9670,'2005-07-31 06:33:33',3709,349,'2005-08-07 04:51:33',1,'2006-02-15 21:30:53'), - (9671,'2005-07-31 06:33:41',920,133,'2005-08-02 07:50:41',1,'2006-02-15 21:30:53'), - (9672,'2005-07-31 06:34:06',4394,183,'2005-08-08 10:29:06',2,'2006-02-15 21:30:53'), - (9673,'2005-07-31 06:34:55',339,27,'2005-08-09 09:15:55',2,'2006-02-15 21:30:53'), - (9674,'2005-07-31 06:36:53',3213,297,'2005-08-06 02:50:53',2,'2006-02-15 21:30:53'), - (9675,'2005-07-31 06:37:07',2523,243,'2005-08-03 07:03:07',1,'2006-02-15 21:30:53'), - (9676,'2005-07-31 06:39:13',681,239,'2005-08-05 09:31:13',2,'2006-02-15 21:30:53'), - (9677,'2005-07-31 06:39:45',3200,274,'2005-08-01 02:37:45',2,'2006-02-15 21:30:53'), - (9678,'2005-07-31 06:40:47',3430,383,'2005-08-02 00:57:47',2,'2006-02-15 21:30:53'), - (9679,'2005-07-31 06:41:19',3819,599,'2005-08-02 07:23:19',1,'2006-02-15 21:30:53'), - (9680,'2005-07-31 06:41:46',3010,84,'2005-08-01 11:02:46',2,'2006-02-15 21:30:53'), - (9681,'2005-07-31 06:42:09',64,160,'2005-08-06 08:21:09',1,'2006-02-15 21:30:53'), - (9682,'2005-07-31 06:47:10',2427,425,'2005-08-04 09:07:10',1,'2006-02-15 21:30:53'), - (9683,'2005-07-31 06:47:13',856,141,'2005-08-04 05:52:13',2,'2006-02-15 21:30:53'), - (9684,'2005-07-31 06:48:33',362,591,'2005-08-01 07:07:33',2,'2006-02-15 21:30:53'), - (9685,'2005-07-31 06:49:18',3097,165,'2005-08-04 03:19:18',1,'2006-02-15 21:30:53'), - (9686,'2005-07-31 06:50:06',3825,386,'2005-08-06 08:41:06',1,'2006-02-15 21:30:53'), - (9687,'2005-07-31 06:52:54',3540,470,'2005-08-01 03:40:54',2,'2006-02-15 21:30:53'), - (9688,'2005-07-31 06:56:08',1304,566,'2005-08-08 03:31:08',2,'2006-02-15 21:30:53'), - (9689,'2005-07-31 07:00:08',819,498,'2005-08-04 03:33:08',2,'2006-02-15 21:30:53'), - (9690,'2005-07-31 07:06:29',4449,468,'2005-08-06 09:45:29',2,'2006-02-15 21:30:53'), - (9691,'2005-07-31 07:09:55',2626,50,'2005-08-09 02:29:55',1,'2006-02-15 21:30:53'), - (9692,'2005-07-31 07:11:04',3481,295,'2005-08-07 06:34:04',2,'2006-02-15 21:30:53'), - (9693,'2005-07-31 07:11:50',1031,273,'2005-08-08 09:55:50',1,'2006-02-15 21:30:53'), - (9694,'2005-07-31 07:13:16',3447,508,'2005-08-06 09:12:16',2,'2006-02-15 21:30:53'), - (9695,'2005-07-31 07:13:30',726,95,'2005-08-07 05:38:30',2,'2006-02-15 21:30:53'), - (9696,'2005-07-31 07:13:46',2703,156,'2005-08-03 10:49:46',2,'2006-02-15 21:30:53'), - (9697,'2005-07-31 07:23:11',762,479,'2005-08-05 08:04:11',2,'2006-02-15 21:30:53'), - (9698,'2005-07-31 07:24:35',3477,594,'2005-08-09 04:52:35',2,'2006-02-15 21:30:53'), - (9699,'2005-07-31 07:29:25',199,21,'2005-08-06 01:35:25',1,'2006-02-15 21:30:53'), - (9700,'2005-07-31 07:29:59',2678,40,'2005-08-02 09:53:59',1,'2006-02-15 21:30:53'), - (9701,'2005-07-31 07:32:21',4581,401,'2005-08-01 05:07:21',2,'2006-02-15 21:30:53'), - (9702,'2005-07-31 07:34:07',3353,525,'2005-08-02 06:13:07',2,'2006-02-15 21:30:53'), - (9703,'2005-07-31 07:34:52',2708,57,'2005-08-03 13:33:52',2,'2006-02-15 21:30:53'), - (9704,'2005-07-31 07:39:32',1402,385,'2005-08-06 01:50:32',2,'2006-02-15 21:30:53'), - (9705,'2005-07-31 07:40:33',4158,28,'2005-08-01 03:50:33',2,'2006-02-15 21:30:53'), - (9706,'2005-07-31 07:43:19',142,508,'2005-08-05 11:11:19',1,'2006-02-15 21:30:53'), - (9707,'2005-07-31 07:44:18',203,351,'2005-08-08 12:45:18',1,'2006-02-15 21:30:53'), - (9708,'2005-07-31 07:45:33',3264,12,'2005-08-08 08:56:33',1,'2006-02-15 21:30:53'), - (9709,'2005-07-31 08:04:55',2096,137,'2005-08-07 08:58:55',1,'2006-02-15 21:30:53'), - (9710,'2005-07-31 08:05:31',3486,380,'2005-08-09 03:29:31',2,'2006-02-15 21:30:53'), - (9711,'2005-07-31 08:06:41',1525,231,'2005-08-02 10:30:41',2,'2006-02-15 21:30:53'), - (9712,'2005-07-31 08:13:11',2487,219,'2005-08-08 12:40:11',2,'2006-02-15 21:30:53'), - (9713,'2005-07-31 08:13:28',929,158,'2005-08-07 10:11:28',1,'2006-02-15 21:30:53'), - (9714,'2005-07-31 08:15:32',1532,144,'2005-08-03 08:33:32',2,'2006-02-15 21:30:53'), - (9715,'2005-07-31 08:16:58',3319,237,'2005-08-04 11:13:58',1,'2006-02-15 21:30:53'), - (9716,'2005-07-31 08:23:53',3385,287,'2005-08-08 12:03:53',2,'2006-02-15 21:30:53'), - (9717,'2005-07-31 08:24:41',4207,114,'2005-08-04 02:51:41',1,'2006-02-15 21:30:53'), - (9718,'2005-07-31 08:25:03',2747,23,'2005-08-08 04:16:03',2,'2006-02-15 21:30:53'), - (9719,'2005-07-31 08:25:13',335,584,'2005-08-05 08:22:13',1,'2006-02-15 21:30:53'), - (9720,'2005-07-31 08:25:21',1282,587,'2005-08-07 11:30:21',2,'2006-02-15 21:30:53'), - (9721,'2005-07-31 08:28:46',3942,196,'2005-08-05 14:03:46',1,'2006-02-15 21:30:53'), - (9722,'2005-07-31 08:29:48',4260,125,'2005-08-07 07:52:48',2,'2006-02-15 21:30:53'), - (9723,'2005-07-31 08:31:18',3968,24,'2005-08-03 10:25:18',1,'2006-02-15 21:30:53'), - (9724,'2005-07-31 08:33:08',518,130,'2005-08-08 04:50:08',1,'2006-02-15 21:30:53'), - (9725,'2005-07-31 08:35:18',3960,503,'2005-08-03 03:46:18',2,'2006-02-15 21:30:53'), - (9726,'2005-07-31 08:37:07',1701,162,'2005-08-09 06:09:07',1,'2006-02-15 21:30:53'), - (9727,'2005-07-31 08:39:13',3076,536,'2005-08-03 07:54:13',1,'2006-02-15 21:30:53'), - (9728,'2005-07-31 08:40:54',3630,399,'2005-08-03 04:14:54',2,'2006-02-15 21:30:53'), - (9729,'2005-07-31 08:43:43',4199,273,'2005-08-01 13:25:43',2,'2006-02-15 21:30:53'), - (9730,'2005-07-31 08:50:08',2605,242,'2005-08-08 12:21:08',2,'2006-02-15 21:30:53'), - (9731,'2005-07-31 08:54:47',3713,349,'2005-08-05 03:47:47',1,'2006-02-15 21:30:53'), - (9732,'2005-07-31 08:56:08',3262,288,'2005-08-07 11:05:08',2,'2006-02-15 21:30:53'), - (9733,'2005-07-31 08:57:35',1255,575,'2005-08-04 04:47:35',1,'2006-02-15 21:30:53'), - (9734,'2005-07-31 08:57:45',3320,125,'2005-08-05 11:57:45',1,'2006-02-15 21:30:53'), - (9735,'2005-07-31 08:57:49',4228,315,'2005-08-08 13:51:49',2,'2006-02-15 21:30:53'), - (9736,'2005-07-31 08:58:40',2072,13,'2005-08-09 08:34:40',2,'2006-02-15 21:30:53'), - (9737,'2005-07-31 08:59:18',1720,475,'2005-08-03 12:19:18',2,'2006-02-15 21:30:53'), - (9738,'2005-07-31 09:04:14',2278,568,'2005-08-05 14:40:14',2,'2006-02-15 21:30:53'), - (9739,'2005-07-31 09:08:03',1328,343,'2005-08-04 13:57:03',1,'2006-02-15 21:30:53'), - (9740,'2005-07-31 09:08:03',3497,443,'2005-08-06 04:48:03',2,'2006-02-15 21:30:53'), - (9741,'2005-07-31 09:09:22',1971,495,'2005-08-07 10:01:22',1,'2006-02-15 21:30:53'), - (9742,'2005-07-31 09:10:20',4058,48,'2005-08-08 10:07:20',1,'2006-02-15 21:30:53'), - (9743,'2005-07-31 09:12:42',1740,476,'2005-08-06 11:57:42',2,'2006-02-15 21:30:53'), - (9744,'2005-07-31 09:15:38',839,459,'2005-08-03 10:31:38',2,'2006-02-15 21:30:53'), - (9745,'2005-07-31 09:16:14',3610,217,'2005-08-07 12:11:14',1,'2006-02-15 21:30:53'), - (9746,'2005-07-31 09:16:48',1459,308,'2005-08-07 06:36:48',2,'2006-02-15 21:30:53'), - (9747,'2005-07-31 09:16:57',2455,106,'2005-08-08 06:47:57',2,'2006-02-15 21:30:53'), - (9748,'2005-07-31 09:17:56',3308,550,'2005-08-02 14:54:56',1,'2006-02-15 21:30:53'), - (9749,'2005-07-31 09:18:33',658,52,'2005-08-06 07:41:33',1,'2006-02-15 21:30:53'), - (9750,'2005-07-31 09:19:46',3174,527,'2005-08-06 08:07:46',1,'2006-02-15 21:30:53'), - (9751,'2005-07-31 09:20:50',36,202,'2005-08-01 05:34:50',2,'2006-02-15 21:30:53'), - (9752,'2005-07-31 09:22:02',249,199,'2005-08-02 14:34:02',1,'2006-02-15 21:30:53'), - (9753,'2005-07-31 09:22:38',3529,98,'2005-08-01 08:45:38',1,'2006-02-15 21:30:53'), - (9754,'2005-07-31 09:23:43',3751,479,'2005-08-08 06:04:43',1,'2006-02-15 21:30:53'), - (9755,'2005-07-31 09:24:55',86,108,'2005-08-07 06:00:55',2,'2006-02-15 21:30:53'), - (9756,'2005-07-31 09:25:00',207,400,'2005-08-02 05:11:00',1,'2006-02-15 21:30:53'), - (9757,'2005-07-31 09:25:14',2596,408,'2005-08-01 14:43:14',2,'2006-02-15 21:30:53'), - (9758,'2005-07-31 09:25:38',1307,160,'2005-08-03 14:16:38',1,'2006-02-15 21:30:53'), - (9759,'2005-07-31 09:25:57',2950,574,'2005-08-07 12:56:57',2,'2006-02-15 21:30:53'), - (9760,'2005-07-31 09:29:33',426,511,'2005-08-09 07:32:33',2,'2006-02-15 21:30:53'), - (9761,'2005-07-31 09:31:54',3778,60,'2005-08-03 11:02:54',2,'2006-02-15 21:30:53'), - (9762,'2005-07-31 09:32:54',155,540,'2005-08-05 04:55:54',1,'2006-02-15 21:30:53'), - (9763,'2005-07-31 09:34:03',126,393,'2005-08-08 05:30:03',1,'2006-02-15 21:30:53'), - (9764,'2005-07-31 09:42:58',3761,136,'2005-08-07 07:22:58',2,'2006-02-15 21:30:53'), - (9765,'2005-07-31 09:44:40',472,551,'2005-08-05 10:57:40',1,'2006-02-15 21:30:53'), - (9766,'2005-07-31 09:46:29',4049,570,'2005-08-01 05:08:29',1,'2006-02-15 21:30:53'), - (9767,'2005-07-31 09:46:49',3432,89,'2005-08-03 11:20:49',1,'2006-02-15 21:30:53'), - (9768,'2005-07-31 09:48:41',2656,582,'2005-08-08 11:40:41',2,'2006-02-15 21:30:53'), - (9769,'2005-07-31 09:52:16',2958,484,'2005-08-06 09:26:16',1,'2006-02-15 21:30:53'), - (9770,'2005-07-31 09:52:40',1226,317,'2005-08-09 06:44:40',1,'2006-02-15 21:30:53'), - (9771,'2005-07-31 09:55:36',4123,398,'2005-08-04 10:11:36',2,'2006-02-15 21:30:53'), - (9772,'2005-07-31 09:56:07',3639,147,'2005-08-01 13:50:07',2,'2006-02-15 21:30:53'), - (9773,'2005-07-31 09:56:56',4555,376,'2005-08-04 09:38:56',1,'2006-02-15 21:30:53'), - (9774,'2005-07-31 09:57:51',4174,306,'2005-08-02 09:08:51',2,'2006-02-15 21:30:53'), - (9775,'2005-07-31 10:00:00',2818,162,'2005-08-01 08:57:00',2,'2006-02-15 21:30:53'), - (9776,'2005-07-31 10:01:03',2524,73,'2005-08-03 07:20:03',2,'2006-02-15 21:30:53'), - (9777,'2005-07-31 10:01:06',225,539,'2005-08-08 04:44:06',2,'2006-02-15 21:30:53'), - (9778,'2005-07-31 10:02:04',304,230,'2005-08-04 07:44:04',2,'2006-02-15 21:30:53'), - (9779,'2005-07-31 10:08:33',1280,402,'2005-08-03 14:56:33',1,'2006-02-15 21:30:53'), - (9780,'2005-07-31 10:10:22',3241,102,'2005-08-02 11:43:22',1,'2006-02-15 21:30:53'), - (9781,'2005-07-31 10:13:02',2310,155,'2005-08-09 14:46:02',1,'2006-02-15 21:30:53'), - (9782,'2005-07-31 10:14:26',2397,438,'2005-08-06 16:11:26',1,'2006-02-15 21:30:53'), - (9783,'2005-07-31 10:15:46',836,75,'2005-08-09 13:22:46',2,'2006-02-15 21:30:53'), - (9784,'2005-07-31 10:21:32',2761,362,'2005-08-07 09:20:32',2,'2006-02-15 21:30:53'), - (9785,'2005-07-31 10:22:15',4101,587,'2005-08-02 10:02:15',1,'2006-02-15 21:30:53'), - (9786,'2005-07-31 10:25:21',2560,586,'2005-08-03 04:28:21',1,'2006-02-15 21:30:53'), - (9787,'2005-07-31 10:26:19',3559,272,'2005-08-09 09:02:19',1,'2006-02-15 21:30:53'), - (9788,'2005-07-31 10:28:21',4367,344,'2005-08-09 13:45:21',1,'2006-02-15 21:30:53'), - (9789,'2005-07-31 10:30:25',619,137,'2005-08-03 14:58:25',1,'2006-02-15 21:30:53'), - (9790,'2005-07-31 10:34:08',3643,284,'2005-08-04 11:19:08',2,'2006-02-15 21:30:53'), - (9791,'2005-07-31 10:35:22',3642,300,'2005-08-03 05:34:22',1,'2006-02-15 21:30:53'), - (9792,'2005-07-31 10:43:41',3163,292,'2005-08-07 10:18:41',1,'2006-02-15 21:30:53'), - (9793,'2005-07-31 10:45:11',4576,295,'2005-08-03 14:29:11',1,'2006-02-15 21:30:53'), - (9794,'2005-07-31 10:47:01',1771,403,'2005-08-02 06:52:01',2,'2006-02-15 21:30:53'), - (9795,'2005-07-31 10:47:19',2005,63,'2005-08-04 09:32:19',2,'2006-02-15 21:30:53'), - (9796,'2005-07-31 10:52:43',1038,539,'2005-08-09 06:08:43',1,'2006-02-15 21:30:53'), - (9797,'2005-07-31 10:53:44',687,52,'2005-08-09 05:51:44',1,'2006-02-15 21:30:53'), - (9798,'2005-07-31 10:55:18',3759,55,'2005-08-01 07:37:18',2,'2006-02-15 21:30:53'), - (9799,'2005-07-31 10:58:32',3008,494,'2005-08-01 12:08:32',1,'2006-02-15 21:30:53'), - (9800,'2005-07-31 11:00:58',2153,257,'2005-08-02 10:13:58',2,'2006-02-15 21:30:53'), - (9801,'2005-07-31 11:03:13',3033,158,'2005-08-04 10:55:13',2,'2006-02-15 21:30:53'), - (9802,'2005-07-31 11:04:20',2156,594,'2005-08-03 05:28:20',1,'2006-02-15 21:30:53'), - (9803,'2005-07-31 11:06:02',3783,520,'2005-08-01 06:25:02',1,'2006-02-15 21:30:53'), - (9804,'2005-07-31 11:07:39',2490,196,'2005-08-09 11:57:39',1,'2006-02-15 21:30:53'), - (9805,'2005-07-31 11:11:10',4179,36,'2005-08-03 07:36:10',2,'2006-02-15 21:30:53'), - (9806,'2005-07-31 11:13:49',245,46,'2005-08-04 06:18:49',1,'2006-02-15 21:30:53'), - (9807,'2005-07-31 11:13:52',2137,267,'2005-08-02 07:34:52',1,'2006-02-15 21:30:53'), - (9808,'2005-07-31 11:17:22',3259,583,'2005-08-07 15:54:22',1,'2006-02-15 21:30:53'), - (9809,'2005-07-31 11:19:21',359,286,'2005-08-08 12:43:21',2,'2006-02-15 21:30:53'), - (9810,'2005-07-31 11:22:41',2066,545,'2005-08-01 09:40:41',2,'2006-02-15 21:30:53'), - (9811,'2005-07-31 11:23:45',3305,77,'2005-08-06 15:51:45',1,'2006-02-15 21:30:53'), - (9812,'2005-07-31 11:28:07',1540,57,'2005-08-01 12:35:07',2,'2006-02-15 21:30:53'), - (9813,'2005-07-31 11:29:23',1706,245,'2005-08-07 08:01:23',2,'2006-02-15 21:30:53'), - (9814,'2005-07-31 11:29:46',136,79,'2005-08-08 15:49:46',1,'2006-02-15 21:30:53'), - (9815,'2005-07-31 11:30:51',2728,540,'2005-08-08 12:52:51',1,'2006-02-15 21:30:53'), - (9816,'2005-07-31 11:32:58',4560,3,'2005-08-04 17:12:58',2,'2006-02-15 21:30:53'), - (9817,'2005-07-31 11:33:31',4019,170,'2005-08-08 14:49:31',2,'2006-02-15 21:30:53'), - (9818,'2005-07-31 11:34:32',1254,183,'2005-08-04 08:20:32',1,'2006-02-15 21:30:53'), - (9819,'2005-07-31 11:39:13',1927,292,'2005-08-06 09:11:13',2,'2006-02-15 21:30:53'), - (9820,'2005-07-31 11:46:57',499,279,'2005-08-08 13:35:57',1,'2006-02-15 21:30:53'), - (9821,'2005-07-31 11:47:54',386,271,'2005-08-08 06:21:54',2,'2006-02-15 21:30:53'), - (9822,'2005-07-31 11:48:25',2469,381,'2005-08-05 15:52:25',2,'2006-02-15 21:30:53'), - (9823,'2005-07-31 11:49:00',4423,129,'2005-08-07 09:06:00',2,'2006-02-15 21:30:53'), - (9824,'2005-07-31 11:49:55',4368,404,'2005-08-07 16:54:55',2,'2006-02-15 21:30:53'), - (9825,'2005-07-31 11:50:51',4322,390,'2005-08-02 07:18:51',1,'2006-02-15 21:30:53'), - (9826,'2005-07-31 11:51:46',2649,595,'2005-08-09 17:18:46',1,'2006-02-15 21:30:53'), - (9827,'2005-07-31 11:56:55',3840,329,'2005-08-09 16:29:55',1,'2006-02-15 21:30:53'), - (9828,'2005-07-31 11:56:57',3845,376,'2005-08-02 17:05:57',1,'2006-02-15 21:30:53'), - (9829,'2005-07-31 11:58:38',231,435,'2005-08-07 08:11:38',2,'2006-02-15 21:30:53'), - (9830,'2005-07-31 11:59:05',170,112,'2005-08-06 10:38:05',1,'2006-02-15 21:30:53'), - (9831,'2005-07-31 11:59:32',1961,192,'2005-08-04 07:14:32',1,'2006-02-15 21:30:53'), - (9832,'2005-07-31 12:01:49',3126,64,'2005-08-08 09:21:49',1,'2006-02-15 21:30:53'), - (9833,'2005-07-31 12:05:01',4243,368,'2005-08-09 09:25:01',2,'2006-02-15 21:30:53'), - (9834,'2005-07-31 12:05:42',2292,340,'2005-08-07 15:26:42',1,'2006-02-15 21:30:53'), - (9835,'2005-07-31 12:07:35',1051,328,'2005-08-04 07:32:35',2,'2006-02-15 21:30:53'), - (9836,'2005-07-31 12:12:00',2870,313,'2005-08-09 06:53:00',1,'2006-02-15 21:30:53'), - (9837,'2005-07-31 12:14:19',3488,573,'2005-08-09 17:08:19',1,'2006-02-15 21:30:53'), - (9838,'2005-07-31 12:18:49',3866,208,'2005-08-03 16:49:49',2,'2006-02-15 21:30:53'), - (9839,'2005-07-31 12:21:16',1591,561,'2005-08-09 13:41:16',2,'2006-02-15 21:30:53'), - (9840,'2005-07-31 12:23:18',364,388,'2005-08-06 15:59:18',1,'2006-02-15 21:30:53'), - (9841,'2005-07-31 12:24:19',4554,238,'2005-08-09 15:31:19',1,'2006-02-15 21:30:53'), - (9842,'2005-07-31 12:24:58',2896,261,'2005-08-02 11:01:58',2,'2006-02-15 21:30:53'), - (9843,'2005-07-31 12:25:28',2923,532,'2005-08-01 09:51:28',2,'2006-02-15 21:30:53'), - (9844,'2005-07-31 12:26:31',3930,181,'2005-08-05 13:58:31',1,'2006-02-15 21:30:53'), - (9845,'2005-07-31 12:28:05',2417,79,'2005-08-06 06:47:05',1,'2006-02-15 21:30:53'), - (9846,'2005-07-31 12:30:12',4240,573,'2005-08-05 08:24:12',2,'2006-02-15 21:30:53'), - (9847,'2005-07-31 12:33:43',1137,174,'2005-08-04 14:15:43',2,'2006-02-15 21:30:53'), - (9848,'2005-07-31 12:44:33',3290,346,'2005-08-07 13:49:33',2,'2006-02-15 21:30:53'), - (9849,'2005-07-31 12:44:34',2230,429,'2005-08-02 16:49:34',1,'2006-02-15 21:30:53'), - (9850,'2005-07-31 12:46:52',1461,497,'2005-08-04 10:52:52',2,'2006-02-15 21:30:53'), - (9851,'2005-07-31 12:50:24',25,49,'2005-08-08 08:30:24',2,'2006-02-15 21:30:53'), - (9852,'2005-07-31 12:52:17',4257,415,'2005-08-05 07:59:17',2,'2006-02-15 21:30:53'), - (9853,'2005-07-31 12:58:20',1782,221,'2005-08-04 10:47:20',1,'2006-02-15 21:30:53'), - (9854,'2005-07-31 12:59:34',1049,441,'2005-08-03 07:20:34',2,'2006-02-15 21:30:53'), - (9855,'2005-07-31 13:00:33',1246,326,'2005-08-03 16:18:33',2,'2006-02-15 21:30:53'), - (9856,'2005-07-31 13:00:35',723,347,'2005-08-07 18:07:35',1,'2006-02-15 21:30:53'), - (9857,'2005-07-31 13:00:53',3316,168,'2005-08-09 15:56:53',1,'2006-02-15 21:30:53'), - (9858,'2005-07-31 13:02:07',252,128,'2005-08-03 15:14:07',2,'2006-02-15 21:30:53'), - (9859,'2005-07-31 13:02:55',4094,127,'2005-08-05 11:04:55',1,'2006-02-15 21:30:53'), - (9860,'2005-07-31 13:03:24',3266,585,'2005-08-07 07:28:24',2,'2006-02-15 21:30:53'), - (9861,'2005-07-31 13:04:14',1050,264,'2005-08-09 15:22:14',1,'2006-02-15 21:30:53'), - (9862,'2005-07-31 13:05:03',474,513,'2005-08-01 09:05:03',2,'2006-02-15 21:30:53'), - (9863,'2005-07-31 13:05:29',19,239,'2005-08-08 12:33:29',1,'2006-02-15 21:30:53'), - (9864,'2005-07-31 13:06:54',3619,394,'2005-08-02 11:47:54',2,'2006-02-15 21:30:53'), - (9865,'2005-07-31 13:10:45',1355,580,'2005-08-02 09:19:45',2,'2006-02-15 21:30:53'), - (9866,'2005-07-31 13:13:50',3555,374,'2005-08-07 15:11:50',1,'2006-02-15 21:30:53'), - (9867,'2005-07-31 13:17:04',2485,83,'2005-08-05 07:17:04',2,'2006-02-15 21:30:53'), - (9868,'2005-07-31 13:20:08',266,378,'2005-08-01 18:17:08',2,'2006-02-15 21:30:53'), - (9869,'2005-07-31 13:21:54',783,261,'2005-08-07 09:09:54',1,'2006-02-15 21:30:53'), - (9870,'2005-07-31 13:22:51',442,195,'2005-08-05 16:04:51',1,'2006-02-15 21:30:53'), - (9871,'2005-07-31 13:25:46',194,109,'2005-08-01 13:12:46',2,'2006-02-15 21:30:53'), - (9872,'2005-07-31 13:27:55',1021,376,'2005-08-04 14:33:55',1,'2006-02-15 21:30:53'), - (9873,'2005-07-31 13:32:18',667,442,'2005-08-06 11:15:18',2,'2006-02-15 21:30:53'), - (9874,'2005-07-31 13:32:31',2476,482,'2005-08-07 09:50:31',2,'2006-02-15 21:30:53'), - (9875,'2005-07-31 13:37:41',2878,421,'2005-08-03 15:17:41',2,'2006-02-15 21:30:53'), - (9876,'2005-07-31 13:37:51',828,347,'2005-08-07 18:05:51',2,'2006-02-15 21:30:53'), - (9877,'2005-07-31 13:41:57',1299,559,'2005-08-06 15:27:57',2,'2006-02-15 21:30:53'), - (9878,'2005-07-31 13:42:02',1753,424,'2005-08-05 10:15:02',2,'2006-02-15 21:30:53'), - (9879,'2005-07-31 13:45:32',1935,178,'2005-08-07 17:12:32',1,'2006-02-15 21:30:53'), - (9880,'2005-07-31 13:49:02',3590,64,'2005-08-08 10:31:02',2,'2006-02-15 21:30:53'), - (9881,'2005-07-31 13:50:38',4209,412,'2005-08-06 08:58:38',1,'2006-02-15 21:30:53'), - (9882,'2005-07-31 13:53:33',1429,311,'2005-08-09 15:55:33',1,'2006-02-15 21:30:53'), - (9883,'2005-07-31 13:53:37',4286,356,'2005-08-06 15:45:37',1,'2006-02-15 21:30:53'), - (9884,'2005-07-31 13:56:24',511,590,'2005-08-01 16:59:24',1,'2006-02-15 21:30:53'), - (9885,'2005-07-31 13:59:32',3600,461,'2005-08-07 12:30:32',2,'2006-02-15 21:30:53'), - (9886,'2005-07-31 14:00:13',1386,519,'2005-08-08 19:30:13',1,'2006-02-15 21:30:53'), - (9887,'2005-07-31 14:00:32',436,549,'2005-08-05 19:16:32',1,'2006-02-15 21:30:53'), - (9888,'2005-07-31 14:00:53',4400,5,'2005-08-08 18:51:53',2,'2006-02-15 21:30:53'), - (9889,'2005-07-31 14:02:50',2842,143,'2005-08-05 12:09:50',2,'2006-02-15 21:30:53'), - (9890,'2005-07-31 14:04:44',1024,151,'2005-08-01 11:24:44',1,'2006-02-15 21:30:53'), - (9891,'2005-07-31 14:05:44',3359,462,'2005-08-02 16:21:44',2,'2006-02-15 21:30:53'), - (9892,'2005-07-31 14:06:25',1045,251,'2005-08-03 18:11:25',2,'2006-02-15 21:30:53'), - (9893,'2005-07-31 14:07:21',2445,179,'2005-08-01 09:20:21',2,'2006-02-15 21:30:53'), - (9894,'2005-07-31 14:07:44',3724,199,'2005-08-05 18:01:44',2,'2006-02-15 21:30:53'), - (9895,'2005-07-31 14:07:56',835,560,'2005-08-05 14:56:56',1,'2006-02-15 21:30:53'), - (9896,'2005-07-31 14:09:48',2591,586,'2005-08-01 20:02:48',1,'2006-02-15 21:30:53'), - (9897,'2005-07-31 14:11:57',3945,538,'2005-08-02 12:20:57',1,'2006-02-15 21:30:53'), - (9898,'2005-07-31 14:12:03',2151,359,'2005-08-01 12:27:03',1,'2006-02-15 21:30:53'), - (9899,'2005-07-31 14:12:36',3352,168,'2005-08-08 08:59:36',1,'2006-02-15 21:30:53'), - (9900,'2005-07-31 14:15:05',3132,453,'2005-08-07 11:58:05',2,'2006-02-15 21:30:53'), - (9901,'2005-07-31 14:20:59',3332,277,'2005-08-03 09:30:59',1,'2006-02-15 21:30:53'), - (9902,'2005-07-31 14:24:33',486,218,'2005-08-09 11:11:33',2,'2006-02-15 21:30:53'), - (9903,'2005-07-31 14:31:44',1621,316,'2005-08-08 20:03:44',1,'2006-02-15 21:30:53'), - (9904,'2005-07-31 14:34:17',4089,428,'2005-08-08 17:19:17',1,'2006-02-15 21:30:53'), - (9905,'2005-07-31 14:37:03',2839,519,'2005-08-01 15:55:03',2,'2006-02-15 21:30:53'), - (9906,'2005-07-31 14:38:12',4241,204,'2005-08-01 13:56:12',1,'2006-02-15 21:30:53'), - (9907,'2005-07-31 14:39:50',4282,120,'2005-08-09 09:39:50',1,'2006-02-15 21:30:53'), - (9908,'2005-07-31 14:39:52',4408,27,'2005-08-09 09:46:52',2,'2006-02-15 21:30:53'), - (9909,'2005-07-31 14:43:34',2600,587,'2005-08-09 15:31:34',1,'2006-02-15 21:30:53'), - (9910,'2005-07-31 14:47:57',368,122,'2005-08-05 18:20:57',1,'2006-02-15 21:30:53'), - (9911,'2005-07-31 14:48:01',3879,112,'2005-08-06 11:55:01',1,'2006-02-15 21:30:53'), - (9912,'2005-07-31 14:49:04',3119,367,'2005-08-03 15:40:04',1,'2006-02-15 21:30:53'), - (9913,'2005-07-31 14:51:04',3744,229,'2005-08-06 12:12:04',1,'2006-02-15 21:30:53'), - (9914,'2005-07-31 14:51:19',3147,530,'2005-08-05 09:51:19',1,'2006-02-15 21:30:53'), - (9915,'2005-07-31 14:52:26',2933,566,'2005-08-03 11:53:26',1,'2006-02-15 21:30:53'), - (9916,'2005-07-31 14:54:52',949,432,'2005-08-07 13:18:52',1,'2006-02-15 21:30:53'), - (9917,'2005-07-31 14:55:11',3829,159,'2005-08-02 13:58:11',2,'2006-02-15 21:30:53'), - (9918,'2005-07-31 14:55:22',2519,283,'2005-08-04 09:02:22',2,'2006-02-15 21:30:53'), - (9919,'2005-07-31 14:55:46',3205,291,'2005-08-08 11:43:46',2,'2006-02-15 21:30:53'), - (9920,'2005-07-31 14:57:13',3108,139,'2005-08-03 18:58:13',2,'2006-02-15 21:30:53'), - (9921,'2005-07-31 14:59:21',1004,332,'2005-08-01 12:40:21',2,'2006-02-15 21:30:53'), - (9922,'2005-07-31 14:59:37',3615,25,'2005-08-06 14:05:37',1,'2006-02-15 21:30:53'), - (9923,'2005-07-31 15:00:15',1635,209,'2005-08-05 11:09:15',2,'2006-02-15 21:30:53'), - (9924,'2005-07-31 15:04:57',1986,64,'2005-08-05 20:07:57',2,'2006-02-15 21:30:53'), - (9925,'2005-07-31 15:08:47',2351,24,'2005-08-02 20:27:47',1,'2006-02-15 21:30:53'), - (9926,'2005-07-31 15:11:51',3733,472,'2005-08-09 18:26:51',1,'2006-02-15 21:30:53'), - (9927,'2005-07-31 15:12:13',999,346,'2005-08-01 11:37:13',1,'2006-02-15 21:30:53'), - (9928,'2005-07-31 15:13:57',3627,53,'2005-08-06 20:39:57',1,'2006-02-15 21:30:53'), - (9929,'2005-07-31 15:17:24',2521,564,'2005-08-03 17:27:24',1,'2006-02-15 21:30:53'), - (9930,'2005-07-31 15:18:03',4491,304,'2005-08-01 12:36:03',2,'2006-02-15 21:30:53'), - (9931,'2005-07-31 15:18:19',3455,183,'2005-08-04 14:23:19',2,'2006-02-15 21:30:53'), - (9932,'2005-07-31 15:19:48',1691,264,'2005-08-05 21:09:48',1,'2006-02-15 21:30:53'), - (9933,'2005-07-31 15:24:46',2349,111,'2005-08-01 10:00:46',1,'2006-02-15 21:30:53'), - (9934,'2005-07-31 15:25:26',2492,236,'2005-08-05 17:13:26',1,'2006-02-15 21:30:53'), - (9935,'2005-07-31 15:27:07',2247,10,'2005-08-05 11:23:07',1,'2006-02-15 21:30:53'), - (9936,'2005-07-31 15:27:41',979,153,'2005-08-06 16:25:41',1,'2006-02-15 21:30:53'), - (9937,'2005-07-31 15:28:10',3697,521,'2005-08-06 21:20:10',2,'2006-02-15 21:30:53'), - (9938,'2005-07-31 15:28:47',2871,63,'2005-08-09 21:24:47',2,'2006-02-15 21:30:53'), - (9939,'2005-07-31 15:29:00',3049,538,'2005-08-08 11:09:00',1,'2006-02-15 21:30:53'), - (9940,'2005-07-31 15:29:06',3975,388,'2005-08-06 14:26:06',2,'2006-02-15 21:30:53'), - (9941,'2005-07-31 15:31:25',1756,175,'2005-08-05 17:23:25',1,'2006-02-15 21:30:53'), - (9942,'2005-07-31 15:35:43',4573,545,'2005-08-07 17:37:43',2,'2006-02-15 21:30:53'), - (9943,'2005-07-31 15:37:29',887,494,'2005-08-09 18:25:29',1,'2006-02-15 21:30:53'), - (9944,'2005-07-31 15:44:43',2540,241,'2005-08-08 10:30:43',1,'2006-02-15 21:30:53'), - (9945,'2005-07-31 15:47:51',2075,309,'2005-08-02 19:06:51',1,'2006-02-15 21:30:53'), - (9946,'2005-07-31 15:48:54',2100,29,'2005-08-03 12:42:54',2,'2006-02-15 21:30:53'), - (9947,'2005-07-31 15:49:40',1173,138,'2005-08-08 11:11:40',1,'2006-02-15 21:30:53'), - (9948,'2005-07-31 15:49:41',806,342,'2005-08-06 12:36:41',1,'2006-02-15 21:30:53'), - (9949,'2005-07-31 15:50:10',3258,309,'2005-08-01 17:53:10',2,'2006-02-15 21:30:53'), - (9950,'2005-07-31 15:50:22',1657,572,'2005-08-08 19:10:22',2,'2006-02-15 21:30:53'), - (9951,'2005-07-31 15:51:16',4412,95,'2005-08-03 14:54:16',1,'2006-02-15 21:30:53'), - (9952,'2005-07-31 15:52:37',1634,128,'2005-08-06 10:50:37',2,'2006-02-15 21:30:53'), - (9953,'2005-07-31 15:56:35',1646,211,'2005-08-02 12:01:35',2,'2006-02-15 21:30:53'), - (9954,'2005-07-31 15:57:07',1830,463,'2005-08-05 12:04:07',2,'2006-02-15 21:30:53'), - (9955,'2005-07-31 16:01:26',1745,342,'2005-08-04 11:15:26',2,'2006-02-15 21:30:53'), - (9956,'2005-07-31 16:03:47',4485,342,'2005-08-01 16:40:47',2,'2006-02-15 21:30:53'), - (9957,'2005-07-31 16:03:55',1857,85,'2005-08-04 15:16:55',2,'2006-02-15 21:30:53'), - (9958,'2005-07-31 16:03:56',4142,157,'2005-08-04 15:21:56',2,'2006-02-15 21:30:53'), - (9959,'2005-07-31 16:04:22',340,199,'2005-08-03 21:51:22',2,'2006-02-15 21:30:53'), - (9960,'2005-07-31 16:05:52',1022,569,'2005-08-05 14:15:52',2,'2006-02-15 21:30:53'), - (9961,'2005-07-31 16:07:50',1856,40,'2005-08-07 18:37:50',2,'2006-02-15 21:30:53'), - (9962,'2005-07-31 16:10:36',1951,576,'2005-08-02 17:09:36',1,'2006-02-15 21:30:53'), - (9963,'2005-07-31 16:16:46',1609,573,'2005-08-02 22:00:46',1,'2006-02-15 21:30:53'), - (9964,'2005-07-31 16:17:39',3149,191,'2005-08-03 15:03:39',1,'2006-02-15 21:30:53'), - (9965,'2005-07-31 16:19:32',3946,101,'2005-08-05 20:18:32',2,'2006-02-15 21:30:53'), - (9966,'2005-07-31 16:26:46',4137,373,'2005-08-03 14:29:46',1,'2006-02-15 21:30:53'), - (9967,'2005-07-31 16:31:17',958,537,'2005-08-06 13:52:17',1,'2006-02-15 21:30:53'), - (9968,'2005-07-31 16:32:16',2666,363,'2005-08-08 12:23:16',1,'2006-02-15 21:30:53'), - (9969,'2005-07-31 16:38:12',938,151,'2005-08-05 11:45:12',2,'2006-02-15 21:30:53'), - (9970,'2005-07-31 16:38:24',2846,578,'2005-08-02 12:59:24',2,'2006-02-15 21:30:53'), - (9971,'2005-07-31 16:42:16',2674,573,'2005-08-09 18:08:16',2,'2006-02-15 21:30:53'), - (9972,'2005-07-31 16:42:43',190,506,'2005-08-02 11:05:43',2,'2006-02-15 21:30:53'), - (9973,'2005-07-31 16:49:31',1850,369,'2005-08-03 22:03:31',2,'2006-02-15 21:30:53'), - (9974,'2005-07-31 16:51:11',430,503,'2005-08-05 16:04:11',1,'2006-02-15 21:30:53'), - (9975,'2005-07-31 16:53:43',2564,40,'2005-08-07 20:13:43',2,'2006-02-15 21:30:53'), - (9976,'2005-07-31 16:57:49',4219,579,'2005-08-03 16:33:49',2,'2006-02-15 21:30:53'), - (9977,'2005-07-31 16:58:42',2300,363,'2005-08-09 13:34:42',1,'2006-02-15 21:30:53'), - (9978,'2005-07-31 16:59:51',2812,427,'2005-08-06 16:48:51',2,'2006-02-15 21:30:53'), - (9979,'2005-07-31 17:00:07',646,576,'2005-08-08 20:40:07',1,'2006-02-15 21:30:53'), - (9980,'2005-07-31 17:02:00',122,225,'2005-08-08 11:11:00',2,'2006-02-15 21:30:53'), - (9981,'2005-07-31 17:08:31',1354,321,'2005-08-01 22:46:31',2,'2006-02-15 21:30:53'), - (9982,'2005-07-31 17:09:02',2698,428,'2005-08-02 13:02:02',2,'2006-02-15 21:30:53'), - (9983,'2005-07-31 17:09:36',350,129,'2005-08-08 20:26:36',1,'2006-02-15 21:30:53'), - (9984,'2005-07-31 17:12:23',433,432,'2005-08-01 21:04:23',2,'2006-02-15 21:30:53'), - (9985,'2005-07-31 17:14:47',1831,85,'2005-08-01 12:11:47',2,'2006-02-15 21:30:53'), - (9986,'2005-07-31 17:16:50',1242,124,'2005-08-05 18:34:50',2,'2006-02-15 21:30:53'), - (9987,'2005-07-31 17:22:35',1619,15,'2005-08-01 21:19:35',2,'2006-02-15 21:30:53'), - (9988,'2005-07-31 17:22:36',3844,243,'2005-08-07 18:35:36',2,'2006-02-15 21:30:53'), - (9989,'2005-07-31 17:22:39',1713,79,'2005-08-01 18:55:39',1,'2006-02-15 21:30:53'), - (9990,'2005-07-31 17:24:21',4481,555,'2005-08-09 17:14:21',2,'2006-02-15 21:30:53'), - (9991,'2005-07-31 17:26:27',3662,414,'2005-08-03 17:36:27',1,'2006-02-15 21:30:53'), - (9992,'2005-07-31 17:29:48',4242,304,'2005-08-09 13:02:48',2,'2006-02-15 21:30:53'), - (9993,'2005-07-31 17:30:20',2503,225,'2005-08-01 20:53:20',2,'2006-02-15 21:30:53'), - (9994,'2005-07-31 17:30:31',2155,195,'2005-08-01 11:35:31',1,'2006-02-15 21:30:53'), - (9995,'2005-07-31 17:30:47',1978,180,'2005-08-04 12:20:47',2,'2006-02-15 21:30:53'), - (9996,'2005-07-31 17:32:03',3271,104,'2005-08-06 16:17:03',2,'2006-02-15 21:30:53'), - (9997,'2005-07-31 17:37:30',640,579,'2005-08-02 14:49:30',1,'2006-02-15 21:30:53'), - (9998,'2005-07-31 17:40:35',2549,30,'2005-08-04 18:15:35',1,'2006-02-15 21:30:53'), - (9999,'2005-07-31 17:40:53',1438,543,'2005-08-01 14:25:53',1,'2006-02-15 21:30:53'), - (10000,'2005-07-31 17:41:05',3221,576,'2005-08-02 20:51:05',1,'2006-02-15 21:30:53'), - (10001,'2005-07-31 17:46:18',2188,244,'2005-08-07 20:38:18',1,'2006-02-15 21:30:53'), - (10002,'2005-07-31 17:48:16',1002,323,'2005-08-06 16:15:16',1,'2006-02-15 21:30:53'), - (10003,'2005-07-31 17:48:51',1603,13,'2005-08-02 14:23:51',1,'2006-02-15 21:30:53'), - (10004,'2005-07-31 17:51:23',2396,570,'2005-08-03 19:12:23',1,'2006-02-15 21:30:53'), - (10005,'2005-07-31 17:53:51',928,454,'2005-08-09 21:39:51',1,'2006-02-15 21:30:53'), - (10006,'2005-07-31 17:54:35',2538,470,'2005-08-02 20:40:35',2,'2006-02-15 21:30:53'), - (10007,'2005-07-31 17:54:58',293,445,'2005-08-05 17:24:58',2,'2006-02-15 21:30:53'), - (10008,'2005-07-31 17:59:36',2589,91,'2005-08-03 22:43:36',2,'2006-02-15 21:30:53'), - (10009,'2005-07-31 18:00:28',4441,437,'2005-08-08 22:24:28',2,'2006-02-15 21:30:53'), - (10010,'2005-07-31 18:01:36',2655,373,'2005-08-07 20:27:36',2,'2006-02-15 21:30:53'), - (10011,'2005-07-31 18:02:41',606,128,'2005-08-08 17:04:41',1,'2006-02-15 21:30:53'), - (10012,'2005-07-31 18:06:06',2554,513,'2005-08-09 16:47:06',2,'2006-02-15 21:30:53'), - (10013,'2005-07-31 18:08:21',2364,377,'2005-08-08 13:22:21',2,'2006-02-15 21:30:53'), - (10014,'2005-07-31 18:10:56',2344,443,'2005-08-02 23:36:56',1,'2006-02-15 21:30:53'), - (10015,'2005-07-31 18:11:17',67,153,'2005-08-03 15:48:17',2,'2006-02-15 21:30:53'), - (10016,'2005-07-31 18:13:06',2183,478,'2005-08-09 22:11:06',1,'2006-02-15 21:30:53'), - (10017,'2005-07-31 18:13:22',1495,424,'2005-08-05 16:03:22',1,'2006-02-15 21:30:53'), - (10018,'2005-07-31 18:15:14',3708,481,'2005-08-05 14:44:14',2,'2006-02-15 21:30:53'), - (10019,'2005-07-31 18:20:56',2114,536,'2005-08-07 14:25:56',1,'2006-02-15 21:30:53'), - (10020,'2005-07-31 18:21:08',302,526,'2005-08-02 14:03:08',2,'2006-02-15 21:30:53'), - (10021,'2005-07-31 18:24:39',3235,597,'2005-08-01 19:16:39',1,'2006-02-15 21:30:53'), - (10022,'2005-07-31 18:25:30',1900,115,'2005-08-04 13:35:30',1,'2006-02-15 21:30:53'), - (10023,'2005-07-31 18:25:51',384,318,'2005-08-09 18:00:51',1,'2006-02-15 21:30:53'), - (10024,'2005-07-31 18:26:36',265,129,'2005-08-09 16:16:36',1,'2006-02-15 21:30:53'), - (10025,'2005-07-31 18:29:09',475,565,'2005-08-07 14:20:09',2,'2006-02-15 21:30:53'), - (10026,'2005-07-31 18:31:51',39,332,'2005-08-03 21:14:51',2,'2006-02-15 21:30:53'), - (10027,'2005-07-31 18:33:51',525,287,'2005-08-09 18:40:51',1,'2006-02-15 21:30:53'), - (10028,'2005-07-31 18:35:54',2305,323,'2005-08-01 13:01:54',2,'2006-02-15 21:30:53'), - (10029,'2005-07-31 18:37:47',505,578,'2005-08-06 14:58:47',2,'2006-02-15 21:30:53'), - (10030,'2005-07-31 18:39:36',1392,325,'2005-08-03 15:29:36',2,'2006-02-15 21:30:53'), - (10031,'2005-07-31 18:40:15',3048,96,'2005-08-03 14:38:15',1,'2006-02-15 21:30:53'), - (10032,'2005-07-31 18:41:55',2331,126,'2005-08-04 22:45:55',1,'2006-02-15 21:30:53'), - (10033,'2005-07-31 18:44:29',4480,381,'2005-08-04 19:52:29',1,'2006-02-15 21:30:53'), - (10034,'2005-07-31 18:45:30',354,442,'2005-08-04 21:13:30',2,'2006-02-15 21:30:53'), - (10035,'2005-07-31 18:46:46',2694,333,'2005-08-04 20:33:46',1,'2006-02-15 21:30:53'), - (10036,'2005-07-31 18:47:20',41,491,'2005-08-03 22:53:20',1,'2006-02-15 21:30:53'), - (10037,'2005-07-31 18:48:08',438,58,'2005-08-09 19:11:08',2,'2006-02-15 21:30:53'), - (10038,'2005-07-31 18:49:12',3727,112,'2005-08-01 18:02:12',1,'2006-02-15 21:30:53'), - (10039,'2005-07-31 18:50:40',4391,111,'2005-08-01 18:49:40',2,'2006-02-15 21:30:53'), - (10040,'2005-07-31 18:54:15',2281,268,'2005-08-05 17:33:15',2,'2006-02-15 21:30:53'), - (10041,'2005-07-31 19:01:02',2994,379,'2005-08-07 21:32:02',1,'2006-02-15 21:30:53'), - (10042,'2005-07-31 19:01:25',123,204,'2005-08-06 14:21:25',1,'2006-02-15 21:30:53'), - (10043,'2005-07-31 19:02:07',2558,222,'2005-08-07 17:58:07',1,'2006-02-15 21:30:53'), - (10044,'2005-07-31 19:02:33',3349,388,'2005-08-05 13:24:33',2,'2006-02-15 21:30:53'), - (10045,'2005-07-31 19:04:35',58,118,'2005-08-07 16:53:35',1,'2006-02-15 21:30:53'), - (10046,'2005-07-31 19:07:11',4302,50,'2005-08-03 13:25:11',1,'2006-02-15 21:30:53'), - (10047,'2005-07-31 19:07:43',4195,244,'2005-08-07 00:20:43',2,'2006-02-15 21:30:53'), - (10048,'2005-07-31 19:08:56',3821,267,'2005-08-05 20:15:56',2,'2006-02-15 21:30:53'), - (10049,'2005-07-31 19:11:11',854,457,'2005-08-03 22:15:11',1,'2006-02-15 21:30:53'), - (10050,'2005-07-31 19:13:29',295,230,'2005-08-06 15:44:29',1,'2006-02-15 21:30:53'), - (10051,'2005-07-31 19:14:20',163,74,'2005-08-05 19:45:20',1,'2006-02-15 21:30:53'), - (10052,'2005-07-31 19:15:13',3307,39,'2005-08-07 22:47:13',2,'2006-02-15 21:30:53'), - (10053,'2005-07-31 19:15:39',4102,223,'2005-08-07 22:32:39',1,'2006-02-15 21:30:53'), - (10054,'2005-07-31 19:15:52',2303,598,'2005-08-04 19:54:52',1,'2006-02-15 21:30:53'), - (10055,'2005-07-31 19:15:58',2725,336,'2005-08-05 20:23:58',1,'2006-02-15 21:30:53'), - (10056,'2005-07-31 19:19:13',281,237,'2005-08-01 16:09:13',2,'2006-02-15 21:30:53'), - (10057,'2005-07-31 19:20:18',3485,230,'2005-08-08 17:59:18',2,'2006-02-15 21:30:53'), - (10058,'2005-07-31 19:20:21',758,237,'2005-08-04 00:41:21',2,'2006-02-15 21:30:53'), - (10059,'2005-07-31 19:20:49',2020,274,'2005-08-03 14:39:49',1,'2006-02-15 21:30:53'), - (10060,'2005-07-31 19:23:00',1979,42,'2005-08-08 19:07:00',1,'2006-02-15 21:30:53'), - (10061,'2005-07-31 19:23:25',1401,390,'2005-08-04 19:38:25',1,'2006-02-15 21:30:53'), - (10062,'2005-07-31 19:24:55',1815,333,'2005-08-03 22:51:55',2,'2006-02-15 21:30:53'), - (10063,'2005-07-31 19:25:13',3003,517,'2005-08-09 15:55:13',1,'2006-02-15 21:30:53'), - (10064,'2005-07-31 19:27:02',3140,41,'2005-08-06 21:15:02',1,'2006-02-15 21:30:53'), - (10065,'2005-07-31 19:27:34',1426,495,'2005-08-01 13:45:34',2,'2006-02-15 21:30:53'), - (10066,'2005-07-31 19:30:01',4285,123,'2005-08-01 14:45:01',2,'2006-02-15 21:30:53'), - (10067,'2005-07-31 19:37:58',1940,148,'2005-08-04 17:32:58',2,'2006-02-15 21:30:53'), - (10068,'2005-07-31 19:39:38',4000,58,'2005-08-05 22:49:38',1,'2006-02-15 21:30:53'), - (10069,'2005-07-31 19:43:18',2168,270,'2005-08-06 19:40:18',2,'2006-02-15 21:30:53'), - (10070,'2005-07-31 19:46:29',1010,325,'2005-08-03 22:21:29',1,'2006-02-15 21:30:53'), - (10071,'2005-07-31 19:49:35',2360,353,'2005-08-03 00:00:35',2,'2006-02-15 21:30:53'), - (10072,'2005-07-31 19:50:37',3963,520,'2005-08-03 00:25:37',2,'2006-02-15 21:30:53'), - (10073,'2005-07-31 19:53:15',4246,584,'2005-08-05 23:12:15',2,'2006-02-15 21:30:53'), - (10074,'2005-07-31 19:57:16',1268,69,'2005-08-04 00:54:16',1,'2006-02-15 21:30:53'), - (10075,'2005-07-31 19:58:42',2037,469,'2005-08-08 19:49:42',1,'2006-02-15 21:30:53'), - (10076,'2005-07-31 20:00:34',1117,555,'2005-08-10 00:37:34',2,'2006-02-15 21:30:53'), - (10077,'2005-07-31 20:01:06',2333,19,'2005-08-09 16:07:06',1,'2006-02-15 21:30:53'), - (10078,'2005-07-31 20:02:02',3198,151,'2005-08-04 00:45:02',1,'2006-02-15 21:30:53'), - (10079,'2005-07-31 20:05:45',4541,486,'2005-08-04 16:25:45',2,'2006-02-15 21:30:53'), - (10080,'2005-07-31 20:07:10',4355,62,'2005-08-04 23:07:10',2,'2006-02-15 21:30:53'), - (10081,'2005-07-31 20:07:44',3183,443,'2005-08-06 20:04:44',1,'2006-02-15 21:30:53'), - (10082,'2005-07-31 20:09:32',1275,76,'2005-08-01 15:41:32',2,'2006-02-15 21:30:53'), - (10083,'2005-07-31 20:10:19',2585,449,'2005-08-06 23:18:19',1,'2006-02-15 21:30:53'), - (10084,'2005-07-31 20:11:29',524,528,'2005-08-06 22:28:29',2,'2006-02-15 21:30:53'), - (10085,'2005-07-31 20:12:02',2556,392,'2005-08-03 00:03:02',2,'2006-02-15 21:30:53'), - (10086,'2005-07-31 20:14:08',2853,205,'2005-08-07 01:33:08',2,'2006-02-15 21:30:53'), - (10087,'2005-07-31 20:15:22',1393,245,'2005-08-07 01:33:22',1,'2006-02-15 21:30:53'), - (10088,'2005-07-31 20:16:21',4293,46,'2005-08-01 22:47:21',2,'2006-02-15 21:30:53'), - (10089,'2005-07-31 20:17:09',248,160,'2005-08-01 19:14:09',2,'2006-02-15 21:30:53'), - (10090,'2005-07-31 20:22:01',4023,533,'2005-08-04 17:30:01',1,'2006-02-15 21:30:53'), - (10091,'2005-07-31 20:23:13',1878,135,'2005-08-02 21:58:13',2,'2006-02-15 21:30:53'), - (10092,'2005-07-31 20:28:09',4151,364,'2005-08-01 21:37:09',1,'2006-02-15 21:30:53'), - (10093,'2005-07-31 20:30:32',3943,162,'2005-08-04 00:04:32',2,'2006-02-15 21:30:53'), - (10094,'2005-07-31 20:31:18',2865,596,'2005-08-06 18:31:18',2,'2006-02-15 21:30:53'), - (10095,'2005-07-31 20:38:35',4062,370,'2005-08-02 02:33:35',1,'2006-02-15 21:30:53'), - (10096,'2005-07-31 20:38:58',3606,290,'2005-08-06 02:34:58',1,'2006-02-15 21:30:53'), - (10097,'2005-07-31 20:39:38',784,519,'2005-08-08 22:22:38',1,'2006-02-15 21:30:53'), - (10098,'2005-07-31 20:41:17',1324,155,'2005-08-02 00:06:17',2,'2006-02-15 21:30:53'), - (10099,'2005-07-31 20:47:14',1960,220,'2005-08-02 17:25:14',1,'2006-02-15 21:30:53'), - (10100,'2005-07-31 20:47:18',4050,330,'2005-08-03 16:58:18',2,'2006-02-15 21:30:53'), - (10101,'2005-07-31 20:47:29',2513,119,'2005-08-04 21:28:29',1,'2006-02-15 21:30:53'), - (10102,'2005-07-31 20:49:10',4078,170,'2005-08-08 20:15:10',1,'2006-02-15 21:30:53'), - (10103,'2005-07-31 20:49:13',77,25,'2005-08-05 15:55:13',2,'2006-02-15 21:30:53'), - (10104,'2005-07-31 20:49:14',3358,186,'2005-08-05 01:11:14',2,'2006-02-15 21:30:53'), - (10105,'2005-07-31 20:54:20',112,286,'2005-08-09 17:45:20',1,'2006-02-15 21:30:53'), - (10106,'2005-07-31 21:00:47',3444,556,'2005-08-02 20:11:47',2,'2006-02-15 21:30:53'), - (10107,'2005-07-31 21:01:46',1326,414,'2005-08-09 01:33:46',2,'2006-02-15 21:30:53'), - (10108,'2005-07-31 21:02:14',3703,326,'2005-08-01 18:28:14',1,'2006-02-15 21:30:53'), - (10109,'2005-07-31 21:04:49',2852,403,'2005-08-08 19:25:49',1,'2006-02-15 21:30:53'), - (10110,'2005-07-31 21:06:12',4081,138,'2005-08-03 02:03:12',2,'2006-02-15 21:30:53'), - (10111,'2005-07-31 21:08:33',3474,38,'2005-08-06 02:58:33',2,'2006-02-15 21:30:53'), - (10112,'2005-07-31 21:08:56',2643,198,'2005-08-01 23:35:56',2,'2006-02-15 21:30:53'), - (10113,'2005-07-31 21:10:03',3974,461,'2005-08-02 21:13:03',2,'2006-02-15 21:30:53'), - (10114,'2005-07-31 21:12:58',3881,218,'2005-08-02 19:45:58',2,'2006-02-15 21:30:53'), - (10115,'2005-07-31 21:13:47',2731,68,'2005-08-10 00:44:47',1,'2006-02-15 21:30:53'), - (10116,'2005-07-31 21:14:02',738,28,'2005-08-03 01:48:02',2,'2006-02-15 21:30:53'), - (10117,'2005-07-31 21:14:31',1894,459,'2005-08-01 15:59:31',2,'2006-02-15 21:30:53'), - (10118,'2005-07-31 21:16:31',1209,143,'2005-08-03 02:32:31',1,'2006-02-15 21:30:53'), - (10119,'2005-07-31 21:20:59',54,351,'2005-08-02 23:14:59',2,'2006-02-15 21:30:53'), - (10120,'2005-07-31 21:24:24',1709,396,'2005-08-03 17:44:24',2,'2006-02-15 21:30:53'), - (10121,'2005-07-31 21:24:53',2969,425,'2005-08-03 22:24:53',1,'2006-02-15 21:30:53'), - (10122,'2005-07-31 21:29:28',4229,196,'2005-08-09 00:04:28',1,'2006-02-15 21:30:53'), - (10123,'2005-07-31 21:30:46',4564,487,'2005-08-06 16:28:46',1,'2006-02-15 21:30:53'), - (10124,'2005-07-31 21:31:49',1956,396,'2005-08-04 00:06:49',1,'2006-02-15 21:30:53'), - (10125,'2005-07-31 21:33:03',493,178,'2005-08-01 19:10:03',1,'2006-02-15 21:30:53'), - (10126,'2005-07-31 21:36:07',3,39,'2005-08-03 23:59:07',1,'2006-02-15 21:30:53'), - (10127,'2005-07-31 21:39:48',717,478,'2005-08-06 00:10:48',1,'2006-02-15 21:30:53'), - (10128,'2005-07-31 21:40:04',2559,508,'2005-08-02 02:21:04',1,'2006-02-15 21:30:53'), - (10129,'2005-07-31 21:41:35',2848,564,'2005-08-05 17:05:35',1,'2006-02-15 21:30:53'), - (10130,'2005-07-31 21:44:30',3964,95,'2005-08-04 17:06:30',1,'2006-02-15 21:30:53'), - (10131,'2005-07-31 21:45:28',4169,510,'2005-08-04 00:19:28',2,'2006-02-15 21:30:53'), - (10132,'2005-07-31 21:50:24',3934,23,'2005-08-07 23:37:24',2,'2006-02-15 21:30:53'), - (10133,'2005-07-31 21:55:07',614,234,'2005-08-08 23:04:07',1,'2006-02-15 21:30:53'), - (10134,'2005-07-31 21:56:10',4483,311,'2005-08-06 21:20:10',1,'2006-02-15 21:30:53'), - (10135,'2005-07-31 21:57:32',4193,307,'2005-08-05 22:23:32',1,'2006-02-15 21:30:53'), - (10136,'2005-07-31 21:58:56',3142,2,'2005-08-03 19:44:56',1,'2006-02-15 21:30:53'), - (10137,'2005-07-31 22:01:41',612,236,'2005-08-07 22:24:41',1,'2006-02-15 21:30:53'), - (10138,'2005-07-31 22:02:09',179,225,'2005-08-07 20:46:09',2,'2006-02-15 21:30:53'), - (10139,'2005-07-31 22:02:20',407,441,'2005-08-04 02:09:20',1,'2006-02-15 21:30:53'), - (10140,'2005-07-31 22:03:20',2494,550,'2005-08-07 23:15:20',2,'2006-02-15 21:30:53'), - (10141,'2005-07-31 22:08:29',8,8,'2005-08-06 16:59:29',1,'2006-02-15 21:30:53'), - (10142,'2005-07-31 22:10:54',1839,257,'2005-08-09 19:04:54',2,'2006-02-15 21:30:53'), - (10143,'2005-07-31 22:11:43',2139,271,'2005-08-09 17:48:43',2,'2006-02-15 21:30:53'), - (10144,'2005-07-31 22:13:52',3011,49,'2005-08-05 19:27:52',1,'2006-02-15 21:30:53'), - (10145,'2005-07-31 22:15:13',2511,361,'2005-08-06 23:26:13',1,'2006-02-15 21:30:53'), - (10146,'2005-07-31 22:17:56',1721,559,'2005-08-02 21:27:56',1,'2006-02-15 21:30:53'), - (10147,'2005-07-31 22:18:43',1351,198,'2005-08-02 23:08:43',2,'2006-02-15 21:30:53'), - (10148,'2005-07-31 22:19:16',1381,63,'2005-08-05 00:15:16',2,'2006-02-15 21:30:53'), - (10149,'2005-07-31 22:20:46',890,276,'2005-08-07 23:12:46',2,'2006-02-15 21:30:53'), - (10150,'2005-07-31 22:22:00',2328,419,'2005-08-05 01:17:00',2,'2006-02-15 21:30:53'), - (10151,'2005-07-31 22:22:37',4442,361,'2005-08-01 22:20:37',1,'2006-02-15 21:30:53'), - (10152,'2005-07-31 22:28:05',1114,244,'2005-08-08 22:39:05',2,'2006-02-15 21:30:53'), - (10153,'2005-07-31 22:30:10',2945,297,'2005-08-06 02:32:10',2,'2006-02-15 21:30:53'), - (10154,'2005-07-31 22:30:49',2745,149,'2005-08-07 03:05:49',2,'2006-02-15 21:30:53'), - (10155,'2005-07-31 22:31:43',3176,235,'2005-08-07 02:43:43',1,'2006-02-15 21:30:53'), - (10156,'2005-07-31 22:36:00',141,179,'2005-08-02 00:03:00',2,'2006-02-15 21:30:53'), - (10157,'2005-07-31 22:38:48',2960,232,'2005-08-01 21:38:48',1,'2006-02-15 21:30:53'), - (10158,'2005-07-31 22:40:31',1626,393,'2005-08-08 18:25:31',2,'2006-02-15 21:30:53'), - (10159,'2005-07-31 22:54:30',1174,515,'2005-08-03 00:43:30',2,'2006-02-15 21:30:53'), - (10160,'2005-07-31 23:07:40',863,295,'2005-08-05 23:34:40',1,'2006-02-15 21:30:53'), - (10161,'2005-07-31 23:09:41',2651,120,'2005-08-02 20:46:41',2,'2006-02-15 21:30:53'), - (10162,'2005-07-31 23:11:01',1327,475,'2005-08-07 01:52:01',2,'2006-02-15 21:30:53'), - (10163,'2005-07-31 23:12:34',2811,425,'2005-08-01 22:47:34',2,'2006-02-15 21:30:53'), - (10164,'2005-07-31 23:17:57',1405,89,'2005-08-05 19:43:57',1,'2006-02-15 21:30:53'), - (10165,'2005-07-31 23:21:23',3476,50,'2005-08-06 18:06:23',1,'2006-02-15 21:30:53'), - (10166,'2005-07-31 23:22:20',4304,484,'2005-08-07 18:06:20',2,'2006-02-15 21:30:53'), - (10167,'2005-07-31 23:24:31',1222,129,'2005-08-06 17:42:31',2,'2006-02-15 21:30:53'), - (10168,'2005-07-31 23:25:24',4548,570,'2005-08-02 19:03:24',1,'2006-02-15 21:30:53'), - (10169,'2005-07-31 23:27:13',2675,57,'2005-08-05 20:32:13',2,'2006-02-15 21:30:53'), - (10170,'2005-07-31 23:27:31',804,41,'2005-08-08 04:53:31',2,'2006-02-15 21:30:53'), - (10171,'2005-07-31 23:29:05',1367,401,'2005-08-03 19:39:05',1,'2006-02-15 21:30:53'), - (10172,'2005-07-31 23:29:51',2506,426,'2005-08-09 01:57:51',1,'2006-02-15 21:30:53'), - (10173,'2005-07-31 23:36:59',2527,326,'2005-08-08 20:20:59',2,'2006-02-15 21:30:53'), - (10174,'2005-07-31 23:40:08',2459,359,'2005-08-06 21:08:08',2,'2006-02-15 21:30:53'), - (10175,'2005-07-31 23:40:11',3672,137,'2005-08-09 02:22:11',1,'2006-02-15 21:30:53'), - (10176,'2005-07-31 23:40:35',1181,19,'2005-08-09 00:46:35',2,'2006-02-15 21:30:53'), - (10177,'2005-07-31 23:42:33',2242,279,'2005-08-03 01:30:33',2,'2006-02-15 21:30:53'), - (10178,'2005-07-31 23:43:04',1582,491,'2005-08-03 00:43:04',1,'2006-02-15 21:30:53'), - (10179,'2005-07-31 23:49:54',2136,131,'2005-08-01 20:46:54',2,'2006-02-15 21:30:53'), - (10180,'2005-07-31 23:57:43',757,50,'2005-08-09 04:04:43',2,'2006-02-15 21:30:53'), - (10181,'2005-08-01 00:00:44',3111,113,'2005-08-04 19:33:44',1,'2006-02-15 21:30:53'), - (10182,'2005-08-01 00:08:01',4112,578,'2005-08-09 18:14:01',2,'2006-02-15 21:30:53'), - (10183,'2005-08-01 00:08:01',4319,377,'2005-08-09 20:41:01',1,'2006-02-15 21:30:53'), - (10184,'2005-08-01 00:09:33',2785,77,'2005-08-05 04:12:33',2,'2006-02-15 21:30:53'), - (10185,'2005-08-01 00:12:11',1266,64,'2005-08-03 03:03:11',1,'2006-02-15 21:30:53'), - (10186,'2005-08-01 00:12:36',4563,294,'2005-08-07 05:08:36',1,'2006-02-15 21:30:53'), - (10187,'2005-08-01 00:15:49',1629,400,'2005-08-05 01:00:49',2,'2006-02-15 21:30:53'), - (10188,'2005-08-01 00:19:41',1221,331,'2005-08-08 00:19:41',2,'2006-02-15 21:30:53'), - (10189,'2005-08-01 00:25:00',616,509,'2005-08-03 06:01:00',2,'2006-02-15 21:30:53'), - (10190,'2005-08-01 00:27:53',4411,138,'2005-08-01 20:32:53',2,'2006-02-15 21:30:53'), - (10191,'2005-08-01 00:28:38',1131,196,'2005-08-06 02:23:38',1,'2006-02-15 21:30:53'), - (10192,'2005-08-01 00:33:00',1632,569,'2005-08-05 03:37:00',2,'2006-02-15 21:30:53'), - (10193,'2005-08-01 00:33:27',2036,358,'2005-08-07 20:15:27',1,'2006-02-15 21:30:53'), - (10194,'2005-08-01 00:33:52',1447,290,'2005-08-06 04:50:52',2,'2006-02-15 21:30:53'), - (10195,'2005-08-01 00:34:42',2691,396,'2005-08-08 05:04:42',2,'2006-02-15 21:30:53'), - (10196,'2005-08-01 00:34:51',3070,199,'2005-08-05 03:43:51',1,'2006-02-15 21:30:53'), - (10197,'2005-08-01 00:35:25',1186,127,'2005-08-07 06:04:25',2,'2006-02-15 21:30:53'), - (10198,'2005-08-01 00:36:15',1297,366,'2005-08-07 06:18:15',2,'2006-02-15 21:30:53'), - (10199,'2005-08-01 00:38:55',3665,526,'2005-08-05 03:41:55',1,'2006-02-15 21:30:53'), - (10200,'2005-08-01 00:39:05',580,421,'2005-08-05 01:07:05',1,'2006-02-15 21:30:53'), - (10201,'2005-08-01 00:42:18',3649,299,'2005-08-08 20:49:18',2,'2006-02-15 21:30:53'), - (10202,'2005-08-01 00:43:18',1099,306,'2005-08-08 23:26:18',1,'2006-02-15 21:30:53'), - (10203,'2005-08-01 00:45:27',1096,157,'2005-08-04 22:45:27',2,'2006-02-15 21:30:53'), - (10204,'2005-08-01 00:47:39',764,572,'2005-08-05 01:11:39',1,'2006-02-15 21:30:53'), - (10205,'2005-08-01 00:48:24',33,87,'2005-08-06 23:53:24',1,'2006-02-15 21:30:53'), - (10206,'2005-08-01 00:52:40',4479,90,'2005-08-10 02:36:40',2,'2006-02-15 21:30:53'), - (10207,'2005-08-01 00:53:01',2925,334,'2005-08-05 05:51:01',2,'2006-02-15 21:30:53'), - (10208,'2005-08-01 00:54:51',3324,246,'2005-08-04 22:39:51',2,'2006-02-15 21:30:53'), - (10209,'2005-08-01 00:56:47',2429,303,'2005-08-03 19:58:47',2,'2006-02-15 21:30:53'), - (10210,'2005-08-01 00:58:52',49,391,'2005-08-10 01:16:52',1,'2006-02-15 21:30:53'), - (10211,'2005-08-01 01:01:16',810,530,'2005-08-10 01:31:16',1,'2006-02-15 21:30:53'), - (10212,'2005-08-01 01:01:35',3728,324,'2005-08-02 23:02:35',1,'2006-02-15 21:30:53'), - (10213,'2005-08-01 01:03:18',1462,106,'2005-08-09 20:07:18',1,'2006-02-15 21:30:53'), - (10214,'2005-08-01 01:04:15',648,597,'2005-08-01 19:31:15',2,'2006-02-15 21:30:53'), - (10215,'2005-08-01 01:04:28',838,345,'2005-08-09 21:43:28',2,'2006-02-15 21:30:53'), - (10216,'2005-08-01 01:06:27',3603,436,'2005-08-08 22:41:27',2,'2006-02-15 21:30:53'), - (10217,'2005-08-01 01:07:27',1193,389,'2005-08-09 00:42:27',1,'2006-02-15 21:30:53'), - (10218,'2005-08-01 01:09:44',3886,101,'2005-08-05 20:08:44',1,'2006-02-15 21:30:53'), - (10219,'2005-08-01 01:10:33',2262,505,'2005-08-10 02:45:33',2,'2006-02-15 21:30:53'), - (10220,'2005-08-01 01:13:22',3920,294,'2005-08-04 22:57:22',2,'2006-02-15 21:30:53'), - (10221,'2005-08-01 01:16:50',3051,373,'2005-08-03 05:35:50',2,'2006-02-15 21:30:53'), - (10222,'2005-08-01 01:17:42',1214,295,'2005-08-08 02:45:42',1,'2006-02-15 21:30:53'), - (10223,'2005-08-01 01:23:15',1370,522,'2005-08-02 19:39:15',1,'2006-02-15 21:30:53'), - (10224,'2005-08-01 01:31:56',1443,587,'2005-08-05 21:21:56',2,'2006-02-15 21:30:53'), - (10225,'2005-08-01 01:38:40',3131,498,'2005-08-06 20:00:40',1,'2006-02-15 21:30:53'), - (10226,'2005-08-01 01:40:04',3067,107,'2005-08-08 01:02:04',1,'2006-02-15 21:30:53'), - (10227,'2005-08-01 01:42:22',872,571,'2005-08-09 23:45:22',2,'2006-02-15 21:30:53'), - (10228,'2005-08-01 01:43:18',1742,106,'2005-08-06 22:10:18',2,'2006-02-15 21:30:53'), - (10229,'2005-08-01 01:45:26',3459,175,'2005-08-10 06:21:26',1,'2006-02-15 21:30:53'), - (10230,'2005-08-01 01:49:36',76,398,'2005-08-05 01:29:36',2,'2006-02-15 21:30:53'), - (10231,'2005-08-01 01:50:49',1056,511,'2005-08-06 03:12:49',1,'2006-02-15 21:30:53'), - (10232,'2005-08-01 01:50:55',586,512,'2005-08-03 04:12:55',1,'2006-02-15 21:30:53'), - (10233,'2005-08-01 01:54:23',4571,459,'2005-08-10 00:23:23',2,'2006-02-15 21:30:53'), - (10234,'2005-08-01 01:56:20',1641,207,'2005-08-09 01:51:20',2,'2006-02-15 21:30:53'), - (10235,'2005-08-01 01:57:48',2850,30,'2005-08-10 07:38:48',2,'2006-02-15 21:30:53'), - (10236,'2005-08-01 02:05:34',3754,470,'2005-08-01 23:40:34',1,'2006-02-15 21:30:53'), - (10237,'2005-08-01 02:07:32',432,313,'2005-08-07 03:54:32',1,'2006-02-15 21:30:53'), - (10238,'2005-08-01 02:08:05',561,192,'2005-08-02 01:52:05',1,'2006-02-15 21:30:53'), - (10239,'2005-08-01 02:09:22',1232,467,'2005-08-04 01:35:22',2,'2006-02-15 21:30:53'), - (10240,'2005-08-01 02:09:33',4494,109,'2005-08-07 02:22:33',2,'2006-02-15 21:30:53'), - (10241,'2005-08-01 02:12:25',1526,161,'2005-08-08 00:37:25',1,'2006-02-15 21:30:53'), - (10242,'2005-08-01 02:18:12',1825,342,'2005-08-02 22:32:12',2,'2006-02-15 21:30:53'), - (10243,'2005-08-01 02:18:46',2236,132,'2005-08-06 21:45:46',1,'2006-02-15 21:30:53'), - (10244,'2005-08-01 02:20:01',567,51,'2005-08-06 23:06:01',2,'2006-02-15 21:30:53'), - (10245,'2005-08-01 02:24:09',2880,163,'2005-08-02 02:31:09',1,'2006-02-15 21:30:53'), - (10246,'2005-08-01 02:29:50',3598,261,'2005-08-09 01:17:50',2,'2006-02-15 21:30:53'), - (10247,'2005-08-01 02:34:06',4035,189,'2005-08-09 02:33:06',1,'2006-02-15 21:30:53'), - (10248,'2005-08-01 02:35:28',2146,298,'2005-08-08 02:24:28',2,'2006-02-15 21:30:53'), - (10249,'2005-08-01 02:35:39',135,437,'2005-08-06 06:50:39',1,'2006-02-15 21:30:53'), - (10250,'2005-08-01 02:38:42',3706,116,'2005-08-07 03:59:42',2,'2006-02-15 21:30:53'), - (10251,'2005-08-01 02:39:12',2986,39,'2005-08-06 03:51:12',1,'2006-02-15 21:30:53'), - (10252,'2005-08-01 02:39:39',2380,86,'2005-08-10 00:40:39',2,'2006-02-15 21:30:53'), - (10253,'2005-08-01 02:39:49',1406,101,'2005-08-08 04:28:49',2,'2006-02-15 21:30:53'), - (10254,'2005-08-01 02:42:03',2238,416,'2005-08-05 23:31:03',1,'2006-02-15 21:30:53'), - (10255,'2005-08-01 02:46:13',4558,459,'2005-08-03 05:54:13',1,'2006-02-15 21:30:53'), - (10256,'2005-08-01 02:47:11',780,58,'2005-08-05 05:21:11',2,'2006-02-15 21:30:53'), - (10257,'2005-08-01 02:49:43',2403,543,'2005-08-04 04:45:43',2,'2006-02-15 21:30:53'), - (10258,'2005-08-01 02:51:09',2062,469,'2005-08-08 23:57:09',2,'2006-02-15 21:30:53'), - (10259,'2005-08-01 02:52:05',1881,566,'2005-08-03 20:54:05',1,'2006-02-15 21:30:53'), - (10260,'2005-08-01 02:58:07',2864,461,'2005-08-05 02:06:07',2,'2006-02-15 21:30:53'), - (10261,'2005-08-01 02:58:27',2346,50,'2005-08-01 21:55:27',2,'2006-02-15 21:30:53'), - (10262,'2005-08-01 03:01:26',3842,181,'2005-08-08 08:03:26',2,'2006-02-15 21:30:53'), - (10263,'2005-08-01 03:02:48',2420,415,'2005-08-08 02:16:48',2,'2006-02-15 21:30:53'), - (10264,'2005-08-01 03:03:12',1374,297,'2005-08-08 00:34:12',2,'2006-02-15 21:30:53'), - (10265,'2005-08-01 03:05:04',3338,510,'2005-08-08 08:09:04',1,'2006-02-15 21:30:53'), - (10266,'2005-08-01 03:05:59',476,49,'2005-08-06 06:23:59',1,'2006-02-15 21:30:53'), - (10267,'2005-08-01 03:07:26',3883,72,'2005-08-07 22:49:26',1,'2006-02-15 21:30:53'), - (10268,'2005-08-01 03:08:56',2755,138,'2005-08-08 02:41:56',1,'2006-02-15 21:30:53'), - (10269,'2005-08-01 03:09:26',2537,39,'2005-08-02 00:01:26',1,'2006-02-15 21:30:53'), - (10270,'2005-08-01 03:10:24',2025,168,'2005-08-07 03:04:24',2,'2006-02-15 21:30:53'), - (10271,'2005-08-01 03:13:39',3692,6,'2005-08-07 23:40:39',1,'2006-02-15 21:30:53'), - (10272,'2005-08-01 03:14:34',128,273,'2005-08-10 05:56:34',2,'2006-02-15 21:30:53'), - (10273,'2005-08-01 03:14:47',1458,212,'2005-08-07 03:59:47',1,'2006-02-15 21:30:53'), - (10274,'2005-08-01 03:16:51',2916,375,'2005-08-04 22:22:51',2,'2006-02-15 21:30:53'), - (10275,'2005-08-01 03:20:08',669,463,'2005-08-08 06:48:08',1,'2006-02-15 21:30:53'), - (10276,'2005-08-01 03:22:23',2201,48,'2005-08-03 07:59:23',1,'2006-02-15 21:30:53'), - (10277,'2005-08-01 03:22:41',1472,176,'2005-08-05 05:07:41',1,'2006-02-15 21:30:53'), - (10278,'2005-08-01 03:25:27',2497,154,'2005-08-08 07:52:27',1,'2006-02-15 21:30:53'), - (10279,'2005-08-01 03:26:44',3794,247,'2005-08-07 22:35:44',2,'2006-02-15 21:30:53'), - (10280,'2005-08-01 03:27:15',1457,542,'2005-08-07 23:01:15',2,'2006-02-15 21:30:53'), - (10281,'2005-08-01 03:28:33',1047,549,'2005-08-02 05:06:33',1,'2006-02-15 21:30:53'), - (10282,'2005-08-01 03:29:10',617,472,'2005-08-07 06:16:10',1,'2006-02-15 21:30:53'), - (10283,'2005-08-01 03:29:45',4237,462,'2005-08-07 04:19:45',1,'2006-02-15 21:30:53'), - (10284,'2005-08-01 03:33:19',2879,20,'2005-08-09 07:58:19',1,'2006-02-15 21:30:53'), - (10285,'2005-08-01 03:35:11',4523,167,'2005-08-05 03:55:11',2,'2006-02-15 21:30:53'), - (10286,'2005-08-01 03:35:58',498,532,'2005-08-10 05:17:58',2,'2006-02-15 21:30:53'), - (10287,'2005-08-01 03:37:01',125,141,'2005-08-05 23:03:01',2,'2006-02-15 21:30:53'), - (10288,'2005-08-01 03:38:42',572,63,'2005-08-06 04:34:42',1,'2006-02-15 21:30:53'), - (10289,'2005-08-01 03:39:48',3153,566,'2005-08-08 02:56:48',1,'2006-02-15 21:30:53'), - (10290,'2005-08-01 03:39:50',4542,364,'2005-08-08 22:29:50',2,'2006-02-15 21:30:53'), - (10291,'2005-08-01 03:39:57',2056,420,'2005-08-05 02:05:57',2,'2006-02-15 21:30:53'), - (10292,'2005-08-01 03:42:40',2562,340,'2005-08-01 23:36:40',2,'2006-02-15 21:30:53'), - (10293,'2005-08-01 03:44:26',1570,258,'2005-08-05 04:16:26',2,'2006-02-15 21:30:53'), - (10294,'2005-08-01 03:48:12',528,28,'2005-08-09 01:19:12',2,'2006-02-15 21:30:53'), - (10295,'2005-08-01 03:53:49',2355,123,'2005-08-10 03:56:49',1,'2006-02-15 21:30:53'), - (10296,'2005-08-01 04:04:37',1958,573,'2005-08-01 23:59:37',1,'2006-02-15 21:30:53'), - (10297,'2005-08-01 04:05:04',2795,289,'2005-08-09 06:08:04',1,'2006-02-15 21:30:53'), - (10298,'2005-08-01 04:06:03',1383,323,'2005-08-05 05:59:03',2,'2006-02-15 21:30:53'), - (10299,'2005-08-01 04:08:04',1125,369,'2005-08-04 08:11:04',1,'2006-02-15 21:30:53'), - (10300,'2005-08-01 04:08:11',4334,207,'2005-08-04 00:24:11',1,'2006-02-15 21:30:53'), - (10301,'2005-08-01 04:09:37',3072,583,'2005-08-04 23:14:37',2,'2006-02-15 21:30:53'), - (10302,'2005-08-01 04:12:08',1043,144,'2005-08-01 22:12:08',2,'2006-02-15 21:30:53'), - (10303,'2005-08-01 04:13:33',936,479,'2005-08-06 02:16:33',2,'2006-02-15 21:30:53'), - (10304,'2005-08-01 04:14:12',1538,346,'2005-08-07 22:38:12',1,'2006-02-15 21:30:53'), - (10305,'2005-08-01 04:16:16',2946,160,'2005-08-07 23:47:16',1,'2006-02-15 21:30:53'), - (10306,'2005-08-01 04:19:18',2819,541,'2005-08-09 02:16:18',1,'2006-02-15 21:30:53'), - (10307,'2005-08-01 04:21:54',975,332,'2005-08-04 09:24:54',2,'2006-02-15 21:30:53'), - (10308,'2005-08-01 04:22:49',588,240,'2005-08-09 04:39:49',2,'2006-02-15 21:30:53'), - (10309,'2005-08-01 04:24:18',1505,156,'2005-08-09 08:32:18',2,'2006-02-15 21:30:53'), - (10310,'2005-08-01 04:24:47',9,271,'2005-08-04 05:36:47',2,'2006-02-15 21:30:53'), - (10311,'2005-08-01 04:27:59',4211,151,'2005-08-02 08:51:59',1,'2006-02-15 21:30:53'), - (10312,'2005-08-01 04:29:06',4389,172,'2005-08-08 04:52:06',2,'2006-02-15 21:30:53'), - (10313,'2005-08-01 04:29:29',1194,80,'2005-08-04 08:12:29',2,'2006-02-15 21:30:53'), - (10314,'2005-08-01 04:31:18',1548,252,'2005-08-06 01:49:18',2,'2006-02-15 21:30:53'), - (10315,'2005-08-01 04:34:45',895,258,'2005-08-07 05:27:45',1,'2006-02-15 21:30:53'), - (10316,'2005-08-01 04:34:57',1907,469,'2005-08-06 02:34:57',2,'2006-02-15 21:30:53'), - (10317,'2005-08-01 04:35:34',110,561,'2005-08-06 02:27:34',2,'2006-02-15 21:30:53'), - (10318,'2005-08-01 04:36:53',885,548,'2005-08-04 00:54:53',1,'2006-02-15 21:30:53'), - (10319,'2005-08-01 04:37:19',3120,394,'2005-08-05 03:18:19',2,'2006-02-15 21:30:53'), - (10320,'2005-08-01 04:39:26',2298,152,'2005-08-08 06:01:26',1,'2006-02-15 21:30:53'), - (10321,'2005-08-01 04:40:02',4512,177,'2005-08-03 04:18:02',1,'2006-02-15 21:30:53'), - (10322,'2005-08-01 04:44:13',1543,535,'2005-08-08 00:20:13',2,'2006-02-15 21:30:53'), - (10323,'2005-08-01 04:44:58',3539,577,'2005-08-06 07:56:58',1,'2006-02-15 21:30:53'), - (10324,'2005-08-01 04:49:06',523,25,'2005-08-09 08:04:06',2,'2006-02-15 21:30:53'), - (10325,'2005-08-01 04:52:12',2749,258,'2005-08-08 09:31:12',1,'2006-02-15 21:30:53'), - (10326,'2005-08-01 04:55:34',3856,325,'2005-08-02 05:18:34',1,'2006-02-15 21:30:53'), - (10327,'2005-08-01 04:55:35',328,382,'2005-08-07 08:17:35',2,'2006-02-15 21:30:53'), - (10328,'2005-08-01 04:56:10',1191,85,'2005-08-01 23:22:10',2,'2006-02-15 21:30:53'), - (10329,'2005-08-01 04:56:13',2289,302,'2005-08-03 03:54:13',1,'2006-02-15 21:30:53'), - (10330,'2005-08-01 04:57:04',1580,7,'2005-08-07 23:00:04',2,'2006-02-15 21:30:53'), - (10331,'2005-08-01 04:57:14',4152,575,'2005-08-07 06:46:14',1,'2006-02-15 21:30:53'), - (10332,'2005-08-01 04:57:32',642,258,'2005-08-10 02:42:32',2,'2006-02-15 21:30:53'), - (10333,'2005-08-01 04:58:32',3955,499,'2005-08-04 00:51:32',2,'2006-02-15 21:30:53'), - (10334,'2005-08-01 04:58:42',3387,445,'2005-08-09 02:00:42',1,'2006-02-15 21:30:53'), - (10335,'2005-08-01 04:59:30',323,33,'2005-08-05 02:26:30',1,'2006-02-15 21:30:53'), - (10336,'2005-08-01 04:59:53',1091,370,'2005-08-03 08:05:53',2,'2006-02-15 21:30:53'), - (10337,'2005-08-01 05:01:46',307,451,'2005-08-10 02:41:46',1,'2006-02-15 21:30:53'), - (10338,'2005-08-01 05:03:03',1295,339,'2005-08-09 05:13:03',2,'2006-02-15 21:30:53'), - (10339,'2005-08-01 05:05:50',615,363,'2005-08-10 07:15:50',2,'2006-02-15 21:30:53'), - (10340,'2005-08-01 05:07:03',3608,568,'2005-08-06 01:03:03',1,'2006-02-15 21:30:53'), - (10341,'2005-08-01 05:10:02',3304,445,'2005-08-07 11:01:02',1,'2006-02-15 21:30:53'), - (10342,'2005-08-01 05:11:11',332,140,'2005-08-10 00:27:11',1,'2006-02-15 21:30:53'), - (10343,'2005-08-01 05:15:47',2627,267,'2005-08-02 04:48:47',2,'2006-02-15 21:30:53'), - (10344,'2005-08-01 05:18:23',3673,367,'2005-08-06 05:20:23',1,'2006-02-15 21:30:53'), - (10345,'2005-08-01 05:18:56',3985,42,'2005-08-04 01:34:56',2,'2006-02-15 21:30:53'), - (10346,'2005-08-01 05:19:23',4192,476,'2005-08-06 01:00:23',1,'2006-02-15 21:30:53'), - (10347,'2005-08-01 05:20:03',953,574,'2005-08-04 10:03:03',1,'2006-02-15 21:30:53'), - (10348,'2005-08-01 05:23:00',2076,14,'2005-08-04 01:12:00',2,'2006-02-15 21:30:53'), - (10349,'2005-08-01 05:27:13',114,295,'2005-08-08 10:15:13',1,'2006-02-15 21:30:53'), - (10350,'2005-08-01 05:30:05',2067,78,'2005-08-05 09:59:05',1,'2006-02-15 21:30:53'), - (10351,'2005-08-01 05:32:13',3725,173,'2005-08-08 09:48:13',1,'2006-02-15 21:30:53'), - (10352,'2005-08-01 05:44:36',1288,564,'2005-08-05 07:15:36',2,'2006-02-15 21:30:53'), - (10353,'2005-08-01 05:46:33',1446,535,'2005-08-08 09:14:33',1,'2006-02-15 21:30:53'), - (10354,'2005-08-01 05:47:10',1680,416,'2005-08-06 09:04:10',1,'2006-02-15 21:30:53'), - (10355,'2005-08-01 05:47:37',2158,161,'2005-08-02 09:28:37',2,'2006-02-15 21:30:53'), - (10356,'2005-08-01 05:49:17',313,56,'2005-08-10 05:57:17',1,'2006-02-15 21:30:53'), - (10357,'2005-08-01 05:49:49',3102,475,'2005-08-04 02:34:49',2,'2006-02-15 21:30:53'), - (10358,'2005-08-01 05:50:07',3039,517,'2005-08-03 08:18:07',1,'2006-02-15 21:30:53'), - (10359,'2005-08-01 05:52:21',259,369,'2005-08-06 05:52:21',2,'2006-02-15 21:30:53'), - (10360,'2005-08-01 05:52:53',1129,443,'2005-08-05 10:55:53',1,'2006-02-15 21:30:53'), - (10361,'2005-08-01 05:53:49',318,529,'2005-08-10 00:42:49',2,'2006-02-15 21:30:53'), - (10362,'2005-08-01 05:55:13',72,181,'2005-08-10 10:23:13',2,'2006-02-15 21:30:53'), - (10363,'2005-08-01 06:01:52',320,174,'2005-08-05 03:56:52',1,'2006-02-15 21:30:53'), - (10364,'2005-08-01 06:06:49',1842,317,'2005-08-09 06:05:49',2,'2006-02-15 21:30:53'), - (10365,'2005-08-01 06:08:44',4032,442,'2005-08-06 02:07:44',1,'2006-02-15 21:30:53'), - (10366,'2005-08-01 06:09:37',2654,119,'2005-08-05 03:19:37',1,'2006-02-15 21:30:53'), - (10367,'2005-08-01 06:12:19',3408,242,'2005-08-04 12:11:19',2,'2006-02-15 21:30:53'), - (10368,'2005-08-01 06:13:38',3535,593,'2005-08-08 04:40:38',2,'2006-02-15 21:30:53'), - (10369,'2005-08-01 06:13:44',2534,424,'2005-08-07 09:46:44',1,'2006-02-15 21:30:53'), - (10370,'2005-08-01 06:18:04',4358,546,'2005-08-05 01:41:04',2,'2006-02-15 21:30:53'), - (10371,'2005-08-01 06:20:29',923,327,'2005-08-04 00:31:29',2,'2006-02-15 21:30:53'), - (10372,'2005-08-01 06:23:48',635,419,'2005-08-06 03:47:48',1,'2006-02-15 21:30:53'), - (10373,'2005-08-01 06:24:26',1754,588,'2005-08-02 12:07:26',1,'2006-02-15 21:30:53'), - (10374,'2005-08-01 06:25:27',4351,307,'2005-08-07 05:44:27',2,'2006-02-15 21:30:53'), - (10375,'2005-08-01 06:26:22',857,202,'2005-08-06 02:51:22',2,'2006-02-15 21:30:53'), - (10376,'2005-08-01 06:27:13',4194,474,'2005-08-07 06:11:13',2,'2006-02-15 21:30:53'), - (10377,'2005-08-01 06:28:28',2401,559,'2005-08-10 05:45:28',2,'2006-02-15 21:30:53'), - (10378,'2005-08-01 06:30:04',4110,113,'2005-08-06 09:10:04',1,'2006-02-15 21:30:53'), - (10379,'2005-08-01 06:34:29',3103,141,'2005-08-06 07:49:29',1,'2006-02-15 21:30:53'), - (10380,'2005-08-01 06:34:36',2225,533,'2005-08-02 09:08:36',1,'2006-02-15 21:30:53'), - (10381,'2005-08-01 06:36:37',522,412,'2005-08-05 11:17:37',1,'2006-02-15 21:30:53'), - (10382,'2005-08-01 06:36:45',4455,242,'2005-08-02 06:06:45',1,'2006-02-15 21:30:53'), - (10383,'2005-08-01 06:37:16',4166,592,'2005-08-03 07:36:16',2,'2006-02-15 21:30:53'), - (10384,'2005-08-01 06:39:14',2622,366,'2005-08-02 03:06:14',1,'2006-02-15 21:30:53'), - (10385,'2005-08-01 06:39:55',778,179,'2005-08-06 02:16:55',1,'2006-02-15 21:30:53'), - (10386,'2005-08-01 06:42:20',1568,26,'2005-08-07 06:12:20',2,'2006-02-15 21:30:53'), - (10387,'2005-08-01 06:42:31',1651,87,'2005-08-08 07:44:31',1,'2006-02-15 21:30:53'), - (10388,'2005-08-01 06:42:44',3180,99,'2005-08-09 11:43:44',2,'2006-02-15 21:30:53'), - (10389,'2005-08-01 06:46:43',3534,346,'2005-08-08 07:07:43',2,'2006-02-15 21:30:53'), - (10390,'2005-08-01 06:46:48',1489,502,'2005-08-09 02:55:48',2,'2006-02-15 21:30:53'), - (10391,'2005-08-01 06:49:05',2203,357,'2005-08-04 01:51:05',2,'2006-02-15 21:30:53'), - (10392,'2005-08-01 06:50:26',3017,12,'2005-08-10 10:52:26',1,'2006-02-15 21:30:53'), - (10393,'2005-08-01 06:52:50',808,258,'2005-08-05 08:45:50',1,'2006-02-15 21:30:53'), - (10394,'2005-08-01 06:58:17',1655,128,'2005-08-05 02:09:17',1,'2006-02-15 21:30:53'), - (10395,'2005-08-01 07:08:22',279,129,'2005-08-05 08:00:22',2,'2006-02-15 21:30:53'), - (10396,'2005-08-01 07:08:46',2982,284,'2005-08-08 03:47:46',1,'2006-02-15 21:30:53'), - (10397,'2005-08-01 07:11:27',4168,504,'2005-08-03 07:51:27',1,'2006-02-15 21:30:53'), - (10398,'2005-08-01 07:11:49',4306,174,'2005-08-04 05:54:49',1,'2006-02-15 21:30:53'), - (10399,'2005-08-01 07:13:39',2515,204,'2005-08-10 06:56:39',1,'2006-02-15 21:30:53'), - (10400,'2005-08-01 07:18:24',3897,132,'2005-08-10 08:38:24',1,'2006-02-15 21:30:53'), - (10401,'2005-08-01 07:27:09',1560,564,'2005-08-02 01:38:09',1,'2006-02-15 21:30:53'), - (10402,'2005-08-01 07:27:19',274,410,'2005-08-04 12:30:19',1,'2006-02-15 21:30:53'), - (10403,'2005-08-01 07:30:45',1968,494,'2005-08-03 03:03:45',2,'2006-02-15 21:30:53'), - (10404,'2005-08-01 07:31:25',2580,253,'2005-08-07 09:23:25',1,'2006-02-15 21:30:53'), - (10405,'2005-08-01 07:35:25',3641,463,'2005-08-05 05:38:25',2,'2006-02-15 21:30:53'), - (10406,'2005-08-01 07:37:05',2614,391,'2005-08-02 06:11:05',1,'2006-02-15 21:30:53'), - (10407,'2005-08-01 07:38:07',543,101,'2005-08-02 05:38:07',2,'2006-02-15 21:30:53'), - (10408,'2005-08-01 07:42:10',4144,334,'2005-08-09 02:29:10',2,'2006-02-15 21:30:53'), - (10409,'2005-08-01 07:49:15',2804,449,'2005-08-02 13:42:15',2,'2006-02-15 21:30:53'), - (10410,'2005-08-01 07:53:29',3901,247,'2005-08-10 08:56:29',1,'2006-02-15 21:30:53'), - (10411,'2005-08-01 07:56:32',1946,522,'2005-08-10 04:58:32',2,'2006-02-15 21:30:53'), - (10412,'2005-08-01 07:57:16',1555,325,'2005-08-04 11:44:16',2,'2006-02-15 21:30:53'), - (10413,'2005-08-01 07:59:39',1018,376,'2005-08-08 03:55:39',1,'2006-02-15 21:30:53'), - (10414,'2005-08-01 08:03:55',1271,361,'2005-08-04 08:44:55',2,'2006-02-15 21:30:53'), - (10415,'2005-08-01 08:05:59',2597,591,'2005-08-04 13:46:59',1,'2006-02-15 21:30:53'), - (10416,'2005-08-01 08:08:39',2629,449,'2005-08-10 09:26:39',2,'2006-02-15 21:30:53'), - (10417,'2005-08-01 08:10:36',3675,427,'2005-08-02 03:42:36',2,'2006-02-15 21:30:53'), - (10418,'2005-08-01 08:11:07',1692,248,'2005-08-04 11:12:07',2,'2006-02-15 21:30:53'), - (10419,'2005-08-01 08:13:22',415,66,'2005-08-06 04:45:22',2,'2006-02-15 21:30:53'), - (10420,'2005-08-01 08:13:53',3490,354,'2005-08-06 08:05:53',2,'2006-02-15 21:30:53'), - (10421,'2005-08-01 08:14:10',925,262,'2005-08-03 05:56:10',2,'2006-02-15 21:30:53'), - (10422,'2005-08-01 08:17:11',37,166,'2005-08-10 10:08:11',2,'2006-02-15 21:30:53'), - (10423,'2005-08-01 08:19:53',739,7,'2005-08-08 10:25:53',1,'2006-02-15 21:30:53'), - (10424,'2005-08-01 08:22:54',1921,88,'2005-08-06 13:44:54',1,'2006-02-15 21:30:53'), - (10425,'2005-08-01 08:23:25',322,447,'2005-08-05 04:29:25',1,'2006-02-15 21:30:53'), - (10426,'2005-08-01 08:26:08',1325,305,'2005-08-09 04:09:08',1,'2006-02-15 21:30:53'), - (10427,'2005-08-01 08:30:11',2978,356,'2005-08-07 06:18:11',2,'2006-02-15 21:30:53'), - (10428,'2005-08-01 08:30:11',4245,46,'2005-08-02 09:30:11',2,'2006-02-15 21:30:53'), - (10429,'2005-08-01 08:34:18',3894,511,'2005-08-10 12:38:18',1,'2006-02-15 21:30:53'), - (10430,'2005-08-01 08:37:06',1150,471,'2005-08-03 07:25:06',1,'2006-02-15 21:30:53'), - (10431,'2005-08-01 08:41:54',1074,138,'2005-08-07 09:44:54',2,'2006-02-15 21:30:53'), - (10432,'2005-08-01 08:43:21',4238,450,'2005-08-08 13:09:21',2,'2006-02-15 21:30:53'), - (10433,'2005-08-01 08:45:56',1508,517,'2005-08-05 09:46:56',2,'2006-02-15 21:30:53'), - (10434,'2005-08-01 08:47:00',4073,73,'2005-08-06 08:34:00',1,'2006-02-15 21:30:53'), - (10435,'2005-08-01 08:50:51',1934,392,'2005-08-08 12:23:51',1,'2006-02-15 21:30:53'), - (10436,'2005-08-01 08:50:59',4026,455,'2005-08-04 05:23:59',1,'2006-02-15 21:30:53'), - (10437,'2005-08-01 08:51:04',14,1,'2005-08-10 12:12:04',1,'2006-02-15 21:30:53'), - (10438,'2005-08-01 08:53:04',4217,316,'2005-08-09 06:39:04',2,'2006-02-15 21:30:53'), - (10439,'2005-08-01 08:54:26',2711,332,'2005-08-08 14:04:26',1,'2006-02-15 21:30:53'), - (10440,'2005-08-01 08:54:32',842,299,'2005-08-02 10:59:32',2,'2006-02-15 21:30:53'), - (10441,'2005-08-01 08:55:56',4122,176,'2005-08-03 10:26:56',2,'2006-02-15 21:30:53'), - (10442,'2005-08-01 08:58:08',4570,40,'2005-08-05 09:07:08',2,'2006-02-15 21:30:53'), - (10443,'2005-08-01 09:01:04',1965,403,'2005-08-04 09:07:04',2,'2006-02-15 21:30:53'), - (10444,'2005-08-01 09:01:40',3242,106,'2005-08-09 11:31:40',1,'2006-02-15 21:30:53'), - (10445,'2005-08-01 09:02:15',3582,211,'2005-08-08 10:26:15',2,'2006-02-15 21:30:53'), - (10446,'2005-08-01 09:02:17',2671,95,'2005-08-04 10:00:17',2,'2006-02-15 21:30:53'), - (10447,'2005-08-01 09:04:58',1198,241,'2005-08-08 06:24:58',1,'2006-02-15 21:30:53'), - (10448,'2005-08-01 09:09:31',2254,311,'2005-08-02 09:55:31',2,'2006-02-15 21:30:53'), - (10449,'2005-08-01 09:09:59',1395,213,'2005-08-05 11:25:59',1,'2006-02-15 21:30:53'), - (10450,'2005-08-01 09:10:03',234,380,'2005-08-08 12:34:03',1,'2006-02-15 21:30:53'), - (10451,'2005-08-01 09:11:25',2435,9,'2005-08-03 12:37:25',2,'2006-02-15 21:30:53'), - (10452,'2005-08-01 09:11:36',1973,442,'2005-08-04 13:28:36',2,'2006-02-15 21:30:53'), - (10453,'2005-08-01 09:13:27',1531,188,'2005-08-08 11:34:27',2,'2006-02-15 21:30:53'), - (10454,'2005-08-01 09:14:00',397,9,'2005-08-04 04:52:00',2,'2006-02-15 21:30:53'), - (10455,'2005-08-01 09:15:00',4197,99,'2005-08-05 13:35:00',1,'2006-02-15 21:30:53'), - (10456,'2005-08-01 09:17:21',4339,81,'2005-08-06 10:30:21',1,'2006-02-15 21:30:53'), - (10457,'2005-08-01 09:17:34',3052,121,'2005-08-06 07:28:34',2,'2006-02-15 21:30:53'), - (10458,'2005-08-01 09:19:48',1500,309,'2005-08-02 10:16:48',1,'2006-02-15 21:30:53'), - (10459,'2005-08-01 09:20:09',201,131,'2005-08-03 11:36:09',1,'2006-02-15 21:30:53'), - (10460,'2005-08-01 09:31:00',4504,197,'2005-08-09 09:28:00',1,'2006-02-15 21:30:53'), - (10461,'2005-08-01 09:32:53',3212,270,'2005-08-09 10:19:53',1,'2006-02-15 21:30:53'), - (10462,'2005-08-01 09:38:28',4526,193,'2005-08-02 09:52:28',2,'2006-02-15 21:30:53'), - (10463,'2005-08-01 09:39:43',1301,291,'2005-08-10 03:42:43',1,'2006-02-15 21:30:53'), - (10464,'2005-08-01 09:43:14',464,427,'2005-08-06 09:01:14',1,'2006-02-15 21:30:53'), - (10465,'2005-08-01 09:45:25',4384,534,'2005-08-10 09:08:25',2,'2006-02-15 21:30:53'), - (10466,'2005-08-01 09:45:26',138,2,'2005-08-06 06:28:26',1,'2006-02-15 21:30:53'), - (10467,'2005-08-01 09:45:58',3773,412,'2005-08-09 10:17:58',2,'2006-02-15 21:30:53'), - (10468,'2005-08-01 09:48:29',2115,129,'2005-08-05 09:58:29',2,'2006-02-15 21:30:53'), - (10469,'2005-08-01 09:51:11',3054,466,'2005-08-05 06:53:11',2,'2006-02-15 21:30:53'), - (10470,'2005-08-01 09:52:26',82,523,'2005-08-05 06:52:26',1,'2006-02-15 21:30:53'), - (10471,'2005-08-01 09:52:37',1684,135,'2005-08-07 09:40:37',2,'2006-02-15 21:30:53'), - (10472,'2005-08-01 09:54:41',506,405,'2005-08-04 13:31:41',1,'2006-02-15 21:30:53'), - (10473,'2005-08-01 09:56:24',3034,329,'2005-08-10 12:36:24',2,'2006-02-15 21:30:53'), - (10474,'2005-08-01 10:01:42',4482,488,'2005-08-08 12:32:42',1,'2006-02-15 21:30:53'), - (10475,'2005-08-01 10:03:17',2931,115,'2005-08-10 15:50:17',2,'2006-02-15 21:30:53'), - (10476,'2005-08-01 10:03:20',1993,263,'2005-08-10 06:52:20',1,'2006-02-15 21:30:53'), - (10477,'2005-08-01 10:04:17',235,506,'2005-08-06 11:32:17',2,'2006-02-15 21:30:53'), - (10478,'2005-08-01 10:09:06',3885,417,'2005-08-06 05:05:06',1,'2006-02-15 21:30:53'), - (10479,'2005-08-01 10:11:25',4580,275,'2005-08-06 04:52:25',1,'2006-02-15 21:30:53'), - (10480,'2005-08-01 10:13:41',553,560,'2005-08-03 10:27:41',1,'2006-02-15 21:30:53'), - (10481,'2005-08-01 10:17:26',229,170,'2005-08-09 08:50:26',1,'2006-02-15 21:30:53'), - (10482,'2005-08-01 10:17:47',48,358,'2005-08-02 15:04:47',2,'2006-02-15 21:30:53'), - (10483,'2005-08-01 10:19:45',1521,129,'2005-08-04 09:29:45',1,'2006-02-15 21:30:53'), - (10484,'2005-08-01 10:19:53',1908,400,'2005-08-03 05:36:53',1,'2006-02-15 21:30:53'), - (10485,'2005-08-01 10:20:34',29,50,'2005-08-09 09:20:34',1,'2006-02-15 21:30:53'), - (10486,'2005-08-01 10:23:43',2454,527,'2005-08-05 07:11:43',2,'2006-02-15 21:30:53'), - (10487,'2005-08-01 10:26:34',1121,577,'2005-08-07 16:11:34',1,'2006-02-15 21:30:53'), - (10488,'2005-08-01 10:27:27',297,423,'2005-08-02 11:05:27',2,'2006-02-15 21:30:53'), - (10489,'2005-08-01 10:27:42',4067,54,'2005-08-07 12:56:42',1,'2006-02-15 21:30:53'), - (10490,'2005-08-01 10:37:11',4365,329,'2005-08-03 10:01:11',2,'2006-02-15 21:30:53'), - (10491,'2005-08-01 10:38:27',3091,24,'2005-08-04 04:55:27',2,'2006-02-15 21:30:53'), - (10492,'2005-08-01 10:42:28',1669,334,'2005-08-02 07:05:28',1,'2006-02-15 21:30:53'), - (10493,'2005-08-01 10:43:12',2375,285,'2005-08-07 08:13:12',2,'2006-02-15 21:30:53'), - (10494,'2005-08-01 10:45:21',847,188,'2005-08-02 12:34:21',1,'2006-02-15 21:30:53'), - (10495,'2005-08-01 10:45:51',2232,41,'2005-08-06 08:11:51',1,'2006-02-15 21:30:53'), - (10496,'2005-08-01 10:53:16',411,525,'2005-08-08 10:34:16',2,'2006-02-15 21:30:53'), - (10497,'2005-08-01 10:55:59',1060,499,'2005-08-07 11:15:59',1,'2006-02-15 21:30:53'), - (10498,'2005-08-01 10:56:48',2672,355,'2005-08-03 15:46:48',2,'2006-02-15 21:30:53'), - (10499,'2005-08-01 11:00:20',3293,459,'2005-08-10 11:52:20',2,'2006-02-15 21:30:53'), - (10500,'2005-08-01 11:01:01',469,477,'2005-08-06 08:59:01',2,'2006-02-15 21:30:53'), - (10501,'2005-08-01 11:04:46',1792,351,'2005-08-02 12:10:46',2,'2006-02-15 21:30:53'), - (10502,'2005-08-01 11:06:39',3193,357,'2005-08-05 07:11:39',1,'2006-02-15 21:30:53'), - (10503,'2005-08-01 11:07:44',1823,357,'2005-08-08 08:22:44',1,'2006-02-15 21:30:53'), - (10504,'2005-08-01 11:10:55',3345,530,'2005-08-10 10:16:55',1,'2006-02-15 21:30:53'), - (10505,'2005-08-01 11:13:59',2977,426,'2005-08-05 07:20:59',2,'2006-02-15 21:30:53'), - (10506,'2005-08-01 11:16:05',1171,216,'2005-08-03 05:37:05',2,'2006-02-15 21:30:53'), - (10507,'2005-08-01 11:22:20',367,45,'2005-08-04 13:18:20',2,'2006-02-15 21:30:53'), - (10508,'2005-08-01 11:23:27',3890,431,'2005-08-02 10:17:27',1,'2006-02-15 21:30:53'), - (10509,'2005-08-01 11:25:28',96,504,'2005-08-10 09:19:28',2,'2006-02-15 21:30:53'), - (10510,'2005-08-01 11:28:30',410,259,'2005-08-07 11:37:30',1,'2006-02-15 21:30:53'), - (10511,'2005-08-01 11:32:16',3874,487,'2005-08-04 09:38:16',1,'2006-02-15 21:30:53'), - (10512,'2005-08-01 11:36:19',3294,438,'2005-08-09 06:52:19',2,'2006-02-15 21:30:53'), - (10513,'2005-08-01 11:37:34',4057,105,'2005-08-02 17:15:34',2,'2006-02-15 21:30:53'), - (10514,'2005-08-01 11:39:26',1512,7,'2005-08-03 07:53:26',2,'2006-02-15 21:30:53'), - (10515,'2005-08-01 11:41:33',874,383,'2005-08-08 06:23:33',2,'2006-02-15 21:30:53'), - (10516,'2005-08-01 11:41:55',3924,449,'2005-08-08 17:16:55',1,'2006-02-15 21:30:53'), - (10517,'2005-08-01 11:41:57',2299,199,'2005-08-05 06:14:57',1,'2006-02-15 21:30:53'), - (10518,'2005-08-01 11:44:08',4444,556,'2005-08-07 07:58:08',2,'2006-02-15 21:30:53'), - (10519,'2005-08-01 11:44:13',1967,456,'2005-08-09 16:57:13',1,'2006-02-15 21:30:53'), - (10520,'2005-08-01 11:45:58',4396,543,'2005-08-06 17:28:58',2,'2006-02-15 21:30:53'), - (10521,'2005-08-01 11:46:17',662,346,'2005-08-05 11:06:17',2,'2006-02-15 21:30:53'), - (10522,'2005-08-01 11:48:51',4159,254,'2005-08-05 12:40:51',1,'2006-02-15 21:30:53'), - (10523,'2005-08-01 11:52:32',2408,34,'2005-08-02 10:47:32',1,'2006-02-15 21:30:53'), - (10524,'2005-08-01 11:53:12',4116,38,'2005-08-08 10:40:12',2,'2006-02-15 21:30:53'), - (10525,'2005-08-01 11:53:17',3811,36,'2005-08-07 07:24:17',1,'2006-02-15 21:30:53'), - (10526,'2005-08-01 11:55:33',27,14,'2005-08-08 16:42:33',1,'2006-02-15 21:30:53'), - (10527,'2005-08-01 11:55:54',4530,431,'2005-08-05 15:56:54',2,'2006-02-15 21:30:53'), - (10528,'2005-08-01 11:56:22',4401,564,'2005-08-07 07:13:22',1,'2006-02-15 21:30:53'), - (10529,'2005-08-01 12:00:02',851,444,'2005-08-08 16:18:02',1,'2006-02-15 21:30:53'), - (10530,'2005-08-01 12:01:17',3216,520,'2005-08-06 09:55:17',2,'2006-02-15 21:30:53'), - (10531,'2005-08-01 12:06:30',3846,459,'2005-08-04 10:23:30',2,'2006-02-15 21:30:53'), - (10532,'2005-08-01 12:06:35',746,191,'2005-08-07 16:04:35',2,'2006-02-15 21:30:53'), - (10533,'2005-08-01 12:14:16',1924,593,'2005-08-09 17:13:16',2,'2006-02-15 21:30:53'), - (10534,'2005-08-01 12:15:11',4354,397,'2005-08-04 17:06:11',1,'2006-02-15 21:30:53'), - (10535,'2005-08-01 12:21:13',1838,284,'2005-08-09 08:58:13',1,'2006-02-15 21:30:53'), - (10536,'2005-08-01 12:21:53',1251,86,'2005-08-04 13:08:53',2,'2006-02-15 21:30:53'), - (10537,'2005-08-01 12:22:28',2140,418,'2005-08-08 07:27:28',1,'2006-02-15 21:30:53'), - (10538,'2005-08-01 12:22:41',686,37,'2005-08-02 10:31:41',2,'2006-02-15 21:30:53'), - (10539,'2005-08-01 12:23:00',3341,232,'2005-08-07 10:25:00',2,'2006-02-15 21:30:53'), - (10540,'2005-08-01 12:24:42',4121,84,'2005-08-03 08:39:42',2,'2006-02-15 21:30:53'), - (10541,'2005-08-01 12:24:54',1413,234,'2005-08-03 16:18:54',1,'2006-02-15 21:30:53'), - (10542,'2005-08-01 12:32:23',1102,465,'2005-08-08 16:26:23',1,'2006-02-15 21:30:53'), - (10543,'2005-08-01 12:36:09',624,29,'2005-08-07 07:42:09',1,'2006-02-15 21:30:53'), - (10544,'2005-08-01 12:36:21',3195,589,'2005-08-07 12:25:21',2,'2006-02-15 21:30:53'), - (10545,'2005-08-01 12:37:46',4230,425,'2005-08-04 16:02:46',2,'2006-02-15 21:30:53'), - (10546,'2005-08-01 12:44:17',1589,362,'2005-08-06 16:26:17',2,'2006-02-15 21:30:53'), - (10547,'2005-08-01 12:44:17',1707,403,'2005-08-08 06:53:17',1,'2006-02-15 21:30:53'), - (10548,'2005-08-01 12:44:32',1914,85,'2005-08-07 09:17:32',1,'2006-02-15 21:30:53'), - (10549,'2005-08-01 12:46:39',3719,61,'2005-08-06 17:17:39',1,'2006-02-15 21:30:53'), - (10550,'2005-08-01 12:46:52',1980,129,'2005-08-05 16:48:52',2,'2006-02-15 21:30:53'), - (10551,'2005-08-01 12:48:55',2974,294,'2005-08-10 16:11:55',1,'2006-02-15 21:30:53'), - (10552,'2005-08-01 12:49:44',4263,119,'2005-08-04 16:20:44',2,'2006-02-15 21:30:53'), - (10553,'2005-08-01 12:54:06',2768,415,'2005-08-06 15:27:06',1,'2006-02-15 21:30:53'), - (10554,'2005-08-01 12:56:19',3220,209,'2005-08-03 09:44:19',2,'2006-02-15 21:30:53'), - (10555,'2005-08-01 12:56:38',377,487,'2005-08-10 18:19:38',1,'2006-02-15 21:30:53'), - (10556,'2005-08-01 12:58:42',144,117,'2005-08-03 07:18:42',2,'2006-02-15 21:30:53'), - (10557,'2005-08-01 12:59:24',240,385,'2005-08-04 17:08:24',2,'2006-02-15 21:30:53'), - (10558,'2005-08-01 13:00:20',4399,117,'2005-08-05 16:31:20',1,'2006-02-15 21:30:53'), - (10559,'2005-08-01 13:02:58',2861,174,'2005-08-09 10:03:58',2,'2006-02-15 21:30:53'), - (10560,'2005-08-01 13:04:57',1534,427,'2005-08-05 18:25:57',2,'2006-02-15 21:30:53'), - (10561,'2005-08-01 13:05:35',2195,8,'2005-08-04 08:34:35',2,'2006-02-15 21:30:53'), - (10562,'2005-08-01 13:05:52',1947,178,'2005-08-02 17:05:52',1,'2006-02-15 21:30:53'), - (10563,'2005-08-01 13:06:03',1885,214,'2005-08-09 08:39:03',2,'2006-02-15 21:30:53'), - (10564,'2005-08-01 13:07:34',4469,387,'2005-08-06 15:14:34',2,'2006-02-15 21:30:53'), - (10565,'2005-08-01 13:08:27',347,165,'2005-08-02 10:30:27',1,'2006-02-15 21:30:53'), - (10566,'2005-08-01 13:12:11',3988,269,'2005-08-05 11:16:11',2,'2006-02-15 21:30:53'), - (10567,'2005-08-01 13:16:01',2744,212,'2005-08-05 14:59:01',1,'2006-02-15 21:30:53'), - (10568,'2005-08-01 13:17:28',3009,130,'2005-08-08 17:04:28',1,'2006-02-15 21:30:53'), - (10569,'2005-08-01 13:18:23',611,179,'2005-08-10 13:33:23',1,'2006-02-15 21:30:53'), - (10570,'2005-08-01 13:23:06',369,21,'2005-08-05 15:30:06',2,'2006-02-15 21:30:53'), - (10571,'2005-08-01 13:25:30',3660,308,'2005-08-02 16:43:30',2,'2006-02-15 21:30:53'), - (10572,'2005-08-01 13:26:53',1239,386,'2005-08-07 18:47:53',2,'2006-02-15 21:30:53'), - (10573,'2005-08-01 13:27:24',4252,585,'2005-08-04 15:09:24',2,'2006-02-15 21:30:53'), - (10574,'2005-08-01 13:36:51',679,287,'2005-08-10 13:25:51',2,'2006-02-15 21:30:53'), - (10575,'2005-08-01 13:41:41',4447,251,'2005-08-08 11:30:41',1,'2006-02-15 21:30:53'), - (10576,'2005-08-01 13:46:02',1876,180,'2005-08-05 10:19:02',1,'2006-02-15 21:30:53'), - (10577,'2005-08-01 13:46:38',2240,428,'2005-08-06 11:35:38',2,'2006-02-15 21:30:53'), - (10578,'2005-08-01 13:48:02',3704,113,'2005-08-07 13:40:02',1,'2006-02-15 21:30:53'), - (10579,'2005-08-01 13:48:22',4068,270,'2005-08-07 11:51:22',1,'2006-02-15 21:30:53'), - (10580,'2005-08-01 13:51:14',590,234,'2005-08-08 11:49:14',2,'2006-02-15 21:30:53'), - (10581,'2005-08-01 13:52:30',2801,217,'2005-08-10 19:11:30',1,'2006-02-15 21:30:53'), - (10582,'2005-08-01 13:54:22',2536,233,'2005-08-05 16:46:22',2,'2006-02-15 21:30:53'), - (10583,'2005-08-01 13:54:35',704,125,'2005-08-03 18:21:35',1,'2006-02-15 21:30:53'), - (10584,'2005-08-01 13:58:47',715,86,'2005-08-06 13:38:47',2,'2006-02-15 21:30:53'), - (10585,'2005-08-01 14:00:42',2670,228,'2005-08-09 11:42:42',2,'2006-02-15 21:30:53'), - (10586,'2005-08-01 14:00:59',3306,583,'2005-08-06 10:00:59',2,'2006-02-15 21:30:53'), - (10587,'2005-08-01 14:03:38',3000,521,'2005-08-08 19:59:38',2,'2006-02-15 21:30:53'), - (10588,'2005-08-01 14:10:21',2384,49,'2005-08-03 13:47:21',2,'2006-02-15 21:30:53'), - (10589,'2005-08-01 14:11:09',4280,375,'2005-08-09 09:28:09',2,'2006-02-15 21:30:53'), - (10590,'2005-08-01 14:11:53',740,78,'2005-08-04 20:04:53',1,'2006-02-15 21:30:53'), - (10591,'2005-08-01 14:12:29',3360,52,'2005-08-04 08:46:29',2,'2006-02-15 21:30:53'), - (10592,'2005-08-01 14:13:00',829,265,'2005-08-09 13:03:00',2,'2006-02-15 21:30:53'), - (10593,'2005-08-01 14:13:19',1886,144,'2005-08-06 08:48:19',2,'2006-02-15 21:30:53'), - (10594,'2005-08-01 14:14:59',1826,53,'2005-08-07 10:48:59',2,'2006-02-15 21:30:53'), - (10595,'2005-08-01 14:16:28',966,137,'2005-08-03 10:37:28',1,'2006-02-15 21:30:53'), - (10596,'2005-08-01 14:18:57',803,112,'2005-08-07 14:59:57',2,'2006-02-15 21:30:53'), - (10597,'2005-08-01 14:19:48',3292,3,'2005-08-08 20:01:48',1,'2006-02-15 21:30:53'), - (10598,'2005-08-01 14:23:36',2341,397,'2005-08-10 14:07:36',2,'2006-02-15 21:30:53'), - (10599,'2005-08-01 14:23:58',2422,271,'2005-08-06 10:45:58',2,'2006-02-15 21:30:53'), - (10600,'2005-08-01 14:25:21',3900,294,'2005-08-06 18:00:21',1,'2006-02-15 21:30:53'), - (10601,'2005-08-01 14:25:40',2843,420,'2005-08-10 09:07:40',1,'2006-02-15 21:30:53'), - (10602,'2005-08-01 14:30:23',1506,111,'2005-08-07 15:20:23',1,'2006-02-15 21:30:53'), - (10603,'2005-08-01 14:30:35',4024,394,'2005-08-05 11:13:35',2,'2006-02-15 21:30:53'), - (10604,'2005-08-01 14:35:08',2833,250,'2005-08-08 10:19:08',2,'2006-02-15 21:30:53'), - (10605,'2005-08-01 14:36:26',680,341,'2005-08-06 12:04:26',2,'2006-02-15 21:30:53'), - (10606,'2005-08-01 14:39:15',81,335,'2005-08-08 11:31:15',1,'2006-02-15 21:30:53'), - (10607,'2005-08-01 14:44:43',3999,438,'2005-08-02 16:39:43',2,'2006-02-15 21:30:53'), - (10608,'2005-08-01 14:48:41',3835,381,'2005-08-04 17:32:41',2,'2006-02-15 21:30:53'), - (10609,'2005-08-01 14:48:45',2587,5,'2005-08-04 13:41:45',2,'2006-02-15 21:30:53'), - (10610,'2005-08-01 14:49:41',1865,396,'2005-08-03 13:07:41',1,'2006-02-15 21:30:53'), - (10611,'2005-08-01 14:53:52',957,135,'2005-08-07 09:15:52',2,'2006-02-15 21:30:53'), - (10612,'2005-08-01 14:55:31',287,554,'2005-08-06 19:01:31',1,'2006-02-15 21:30:53'), - (10613,'2005-08-01 14:56:14',4357,527,'2005-08-07 09:33:14',1,'2006-02-15 21:30:53'), - (10614,'2005-08-01 14:57:00',232,533,'2005-08-10 09:31:00',2,'2006-02-15 21:30:53'), - (10615,'2005-08-01 14:58:14',2639,34,'2005-08-02 13:38:14',1,'2006-02-15 21:30:53'), - (10616,'2005-08-01 14:59:50',1094,20,'2005-08-07 11:38:50',2,'2006-02-15 21:30:53'), - (10617,'2005-08-01 15:05:52',4344,476,'2005-08-09 18:54:52',1,'2006-02-15 21:30:53'), - (10618,'2005-08-01 15:06:38',3729,386,'2005-08-06 15:52:38',2,'2006-02-15 21:30:53'), - (10619,'2005-08-01 15:07:04',2189,132,'2005-08-07 11:42:04',2,'2006-02-15 21:30:53'), - (10620,'2005-08-01 15:09:17',3064,183,'2005-08-09 13:58:17',1,'2006-02-15 21:30:53'), - (10621,'2005-08-01 15:10:26',1650,172,'2005-08-04 10:58:26',1,'2006-02-15 21:30:53'), - (10622,'2005-08-01 15:12:00',3044,171,'2005-08-08 14:09:00',1,'2006-02-15 21:30:53'), - (10623,'2005-08-01 15:22:38',4426,494,'2005-08-03 11:03:38',2,'2006-02-15 21:30:53'), - (10624,'2005-08-01 15:27:05',3801,74,'2005-08-05 19:50:05',1,'2006-02-15 21:30:53'), - (10625,'2005-08-01 15:27:10',3022,5,'2005-08-02 13:16:10',1,'2006-02-15 21:30:53'), - (10626,'2005-08-01 15:32:41',1042,122,'2005-08-05 18:08:41',1,'2006-02-15 21:30:53'), - (10627,'2005-08-01 15:33:03',2026,472,'2005-08-02 21:26:03',1,'2006-02-15 21:30:53'), - (10628,'2005-08-01 15:33:19',427,285,'2005-08-05 17:27:19',1,'2006-02-15 21:30:53'), - (10629,'2005-08-01 15:33:32',997,575,'2005-08-08 12:40:32',2,'2006-02-15 21:30:53'), - (10630,'2005-08-01 15:34:46',2335,39,'2005-08-03 10:50:46',1,'2006-02-15 21:30:53'), - (10631,'2005-08-01 15:35:14',2712,304,'2005-08-03 10:48:14',1,'2006-02-15 21:30:53'), - (10632,'2005-08-01 15:36:56',1290,406,'2005-08-05 17:32:56',1,'2006-02-15 21:30:53'), - (10633,'2005-08-01 15:37:17',3125,475,'2005-08-10 14:30:17',2,'2006-02-15 21:30:53'), - (10634,'2005-08-01 15:37:48',445,592,'2005-08-02 12:11:48',2,'2006-02-15 21:30:53'), - (10635,'2005-08-01 15:37:58',547,52,'2005-08-07 11:15:58',2,'2006-02-15 21:30:53'), - (10636,'2005-08-01 15:40:35',621,385,'2005-08-05 18:46:35',1,'2006-02-15 21:30:53'), - (10637,'2005-08-01 15:44:09',1243,161,'2005-08-04 14:42:09',1,'2006-02-15 21:30:53'), - (10638,'2005-08-01 15:44:20',2239,132,'2005-08-08 16:05:20',2,'2006-02-15 21:30:53'), - (10639,'2005-08-01 15:44:43',1015,39,'2005-08-10 13:51:43',1,'2006-02-15 21:30:53'), - (10640,'2005-08-01 15:44:51',3020,375,'2005-08-06 15:52:51',1,'2006-02-15 21:30:53'), - (10641,'2005-08-01 15:44:57',972,285,'2005-08-04 18:15:57',2,'2006-02-15 21:30:53'), - (10642,'2005-08-01 15:45:11',2573,294,'2005-08-02 20:13:11',1,'2006-02-15 21:30:53'), - (10643,'2005-08-01 15:48:33',3853,495,'2005-08-06 20:24:33',2,'2006-02-15 21:30:53'), - (10644,'2005-08-01 15:52:00',4374,7,'2005-08-08 16:08:00',1,'2006-02-15 21:30:53'), - (10645,'2005-08-01 15:52:01',3864,130,'2005-08-09 18:58:01',1,'2006-02-15 21:30:53'), - (10646,'2005-08-01 15:57:55',1752,209,'2005-08-02 19:08:55',1,'2006-02-15 21:30:53'), - (10647,'2005-08-01 16:08:46',3137,115,'2005-08-06 20:37:46',2,'2006-02-15 21:30:53'), - (10648,'2005-08-01 16:08:52',691,270,'2005-08-05 20:17:52',1,'2006-02-15 21:30:53'), - (10649,'2005-08-01 16:11:40',1032,278,'2005-08-06 14:09:40',2,'2006-02-15 21:30:53'), - (10650,'2005-08-01 16:18:45',2306,242,'2005-08-09 16:29:45',1,'2006-02-15 21:30:53'), - (10651,'2005-08-01 16:20:22',1541,404,'2005-08-03 15:53:22',1,'2006-02-15 21:30:53'), - (10652,'2005-08-01 16:24:08',1633,241,'2005-08-03 16:00:08',2,'2006-02-15 21:30:53'), - (10653,'2005-08-01 16:28:07',1190,75,'2005-08-07 21:22:07',2,'2006-02-15 21:30:53'), - (10654,'2005-08-01 16:31:35',2522,399,'2005-08-05 12:04:35',2,'2006-02-15 21:30:53'), - (10655,'2005-08-01 16:33:27',1399,385,'2005-08-08 17:17:27',2,'2006-02-15 21:30:53'), - (10656,'2005-08-01 16:38:04',2571,80,'2005-08-09 19:37:04',2,'2006-02-15 21:30:53'), - (10657,'2005-08-01 16:38:44',3075,590,'2005-08-06 16:05:44',2,'2006-02-15 21:30:53'), - (10658,'2005-08-01 16:39:18',2943,469,'2005-08-09 18:17:18',2,'2006-02-15 21:30:53'), - (10659,'2005-08-01 16:40:34',786,238,'2005-08-09 21:00:34',2,'2006-02-15 21:30:53'), - (10660,'2005-08-01 16:48:01',2518,253,'2005-08-07 14:42:01',2,'2006-02-15 21:30:53'), - (10661,'2005-08-01 16:48:31',3311,177,'2005-08-02 21:02:31',1,'2006-02-15 21:30:53'), - (10662,'2005-08-01 16:50:57',2857,151,'2005-08-03 17:19:57',1,'2006-02-15 21:30:53'), - (10663,'2005-08-01 16:51:08',4258,433,'2005-08-08 21:17:08',2,'2006-02-15 21:30:53'), - (10664,'2005-08-01 16:51:15',3167,337,'2005-08-04 19:14:15',2,'2006-02-15 21:30:53'), - (10665,'2005-08-01 16:56:17',3594,133,'2005-08-03 18:58:17',1,'2006-02-15 21:30:53'), - (10666,'2005-08-01 16:56:36',1945,197,'2005-08-07 22:23:36',2,'2006-02-15 21:30:53'), - (10667,'2005-08-01 16:58:22',3937,340,'2005-08-10 15:41:22',1,'2006-02-15 21:30:53'), - (10668,'2005-08-01 17:00:27',2085,58,'2005-08-02 14:49:27',2,'2006-02-15 21:30:53'), - (10669,'2005-08-01 17:03:28',2121,559,'2005-08-08 21:34:28',2,'2006-02-15 21:30:53'), - (10670,'2005-08-01 17:07:16',156,512,'2005-08-10 11:46:16',2,'2006-02-15 21:30:53'), - (10671,'2005-08-01 17:09:59',4430,10,'2005-08-09 21:36:59',1,'2006-02-15 21:30:53'), - (10672,'2005-08-01 17:10:54',3674,375,'2005-08-07 12:19:54',2,'2006-02-15 21:30:53'), - (10673,'2005-08-01 17:11:51',2735,528,'2005-08-03 13:32:51',1,'2006-02-15 21:30:53'), - (10674,'2005-08-01 17:11:52',1962,340,'2005-08-08 19:34:52',1,'2006-02-15 21:30:53'), - (10675,'2005-08-01 17:11:57',649,522,'2005-08-10 17:18:57',1,'2006-02-15 21:30:53'), - (10676,'2005-08-01 17:14:15',629,79,'2005-08-04 12:34:15',1,'2006-02-15 21:30:53'), - (10677,'2005-08-01 17:24:35',4350,483,'2005-08-04 20:03:35',1,'2006-02-15 21:30:53'), - (10678,'2005-08-01 17:26:24',4438,56,'2005-08-05 22:55:24',1,'2006-02-15 21:30:53'), - (10679,'2005-08-01 17:27:58',4437,198,'2005-08-08 16:06:58',1,'2006-02-15 21:30:53'), - (10680,'2005-08-01 17:28:05',2498,60,'2005-08-04 19:34:05',1,'2006-02-15 21:30:53'), - (10681,'2005-08-01 17:30:35',1468,119,'2005-08-02 14:48:35',2,'2006-02-15 21:30:53'), - (10682,'2005-08-01 17:32:53',4557,18,'2005-08-06 15:49:53',2,'2006-02-15 21:30:53'), - (10683,'2005-08-01 17:33:03',244,246,'2005-08-04 23:12:03',1,'2006-02-15 21:30:53'), - (10684,'2005-08-01 17:47:00',1985,244,'2005-08-09 15:00:00',2,'2006-02-15 21:30:53'), - (10685,'2005-08-01 17:49:38',2029,200,'2005-08-07 21:04:38',2,'2006-02-15 21:30:53'), - (10686,'2005-08-01 17:51:21',2542,150,'2005-08-03 19:01:21',1,'2006-02-15 21:30:53'), - (10687,'2005-08-01 17:53:02',3191,16,'2005-08-05 19:16:02',2,'2006-02-15 21:30:53'), - (10688,'2005-08-01 17:53:43',3161,449,'2005-08-09 21:50:43',1,'2006-02-15 21:30:53'), - (10689,'2005-08-01 18:04:18',1442,568,'2005-08-05 21:17:18',2,'2006-02-15 21:30:53'), - (10690,'2005-08-01 18:05:54',807,80,'2005-08-10 21:43:54',2,'2006-02-15 21:30:53'), - (10691,'2005-08-01 18:09:53',4281,276,'2005-08-03 16:32:53',1,'2006-02-15 21:30:53'), - (10692,'2005-08-01 18:12:35',371,596,'2005-08-07 13:06:35',1,'2006-02-15 21:30:53'), - (10693,'2005-08-01 18:14:14',2387,444,'2005-08-03 22:00:14',2,'2006-02-15 21:30:53'), - (10694,'2005-08-01 18:15:07',3429,98,'2005-08-10 15:38:07',1,'2006-02-15 21:30:53'), - (10695,'2005-08-01 18:16:20',3612,374,'2005-08-03 12:21:20',2,'2006-02-15 21:30:53'), - (10696,'2005-08-01 18:18:13',47,120,'2005-08-04 14:09:13',1,'2006-02-15 21:30:53'), - (10697,'2005-08-01 18:20:23',3115,519,'2005-08-07 21:18:23',1,'2006-02-15 21:30:53'), - (10698,'2005-08-01 18:24:41',2738,135,'2005-08-08 18:59:41',2,'2006-02-15 21:30:53'), - (10699,'2005-08-01 18:24:51',1029,125,'2005-08-06 20:18:51',1,'2006-02-15 21:30:53'), - (10700,'2005-08-01 18:26:31',4259,203,'2005-08-07 19:51:31',2,'2006-02-15 21:30:53'), - (10701,'2005-08-01 18:28:17',3958,538,'2005-08-09 21:51:17',1,'2006-02-15 21:30:53'), - (10702,'2005-08-01 18:34:59',2802,560,'2005-08-09 23:44:59',2,'2006-02-15 21:30:53'), - (10703,'2005-08-01 18:37:39',1818,181,'2005-08-07 23:50:39',2,'2006-02-15 21:30:53'), - (10704,'2005-08-01 18:38:02',960,594,'2005-08-08 20:19:02',1,'2006-02-15 21:30:53'), - (10705,'2005-08-01 18:38:54',4338,381,'2005-08-04 18:00:54',1,'2006-02-15 21:30:53'), - (10706,'2005-08-01 18:41:28',1183,147,'2005-08-10 14:30:28',1,'2006-02-15 21:30:53'), - (10707,'2005-08-01 18:41:34',1165,558,'2005-08-06 12:41:34',1,'2006-02-15 21:30:53'), - (10708,'2005-08-01 18:43:28',3978,567,'2005-08-09 15:24:28',1,'2006-02-15 21:30:53'), - (10709,'2005-08-01 18:43:57',282,418,'2005-08-06 13:17:57',2,'2006-02-15 21:30:53'), - (10710,'2005-08-01 18:44:36',3082,177,'2005-08-03 13:17:36',1,'2006-02-15 21:30:53'), - (10711,'2005-08-01 18:45:09',4278,400,'2005-08-02 19:47:09',2,'2006-02-15 21:30:53'), - (10712,'2005-08-01 18:47:56',1188,532,'2005-08-07 19:26:56',2,'2006-02-15 21:30:53'), - (10713,'2005-08-01 18:50:05',2030,369,'2005-08-05 00:43:05',2,'2006-02-15 21:30:53'), - (10714,'2005-08-01 18:51:29',1465,64,'2005-08-04 18:49:29',2,'2006-02-15 21:30:53'), - (10715,'2005-08-01 18:51:48',1054,386,'2005-08-06 14:44:48',1,'2006-02-15 21:30:53'), - (10716,'2005-08-01 18:53:48',3405,515,'2005-08-04 13:49:48',1,'2006-02-15 21:30:53'), - (10717,'2005-08-01 18:53:53',2934,365,'2005-08-05 21:28:53',1,'2006-02-15 21:30:53'), - (10718,'2005-08-01 18:55:38',2763,394,'2005-08-04 14:45:38',1,'2006-02-15 21:30:53'), - (10719,'2005-08-01 19:00:28',3861,188,'2005-08-07 17:04:28',1,'2006-02-15 21:30:53'), - (10720,'2005-08-01 19:04:33',3712,326,'2005-08-06 23:12:33',2,'2006-02-15 21:30:53'), - (10721,'2005-08-01 19:05:18',904,18,'2005-08-09 20:45:18',2,'2006-02-15 21:30:53'), - (10722,'2005-08-01 19:07:08',2849,90,'2005-08-04 14:09:08',2,'2006-02-15 21:30:53'), - (10723,'2005-08-01 19:10:49',2526,580,'2005-08-08 19:21:49',2,'2006-02-15 21:30:53'), - (10724,'2005-08-01 19:10:59',3425,576,'2005-08-07 18:44:59',1,'2006-02-15 21:30:53'), - (10725,'2005-08-01 19:11:04',4486,534,'2005-08-07 18:16:04',2,'2006-02-15 21:30:53'), - (10726,'2005-08-01 19:14:53',749,75,'2005-08-08 23:56:53',2,'2006-02-15 21:30:53'), - (10727,'2005-08-01 19:15:08',2049,16,'2005-08-03 13:52:08',1,'2006-02-15 21:30:53'), - (10728,'2005-08-01 19:15:09',3133,309,'2005-08-04 19:35:09',1,'2006-02-15 21:30:53'), - (10729,'2005-08-01 19:21:11',2918,595,'2005-08-07 21:20:11',2,'2006-02-15 21:30:53'), - (10730,'2005-08-01 19:21:42',1793,368,'2005-08-10 21:18:42',1,'2006-02-15 21:30:53'), - (10731,'2005-08-01 19:21:48',4248,278,'2005-08-08 22:01:48',2,'2006-02-15 21:30:53'), - (10732,'2005-08-01 19:25:18',2810,538,'2005-08-10 22:26:18',1,'2006-02-15 21:30:53'), - (10733,'2005-08-01 19:28:01',3980,560,'2005-08-09 18:41:01',1,'2006-02-15 21:30:53'), - (10734,'2005-08-01 19:28:47',1130,21,'2005-08-03 00:41:47',2,'2006-02-15 21:30:53'), - (10735,'2005-08-01 19:29:45',4061,544,'2005-08-02 19:50:45',2,'2006-02-15 21:30:53'), - (10736,'2005-08-01 19:30:21',2227,272,'2005-08-02 22:37:21',1,'2006-02-15 21:30:53'), - (10737,'2005-08-01 19:31:24',1773,149,'2005-08-10 19:17:24',1,'2006-02-15 21:30:53'), - (10738,'2005-08-01 19:39:08',544,377,'2005-08-10 20:37:08',1,'2006-02-15 21:30:53'), - (10739,'2005-08-01 19:46:11',3160,197,'2005-08-06 21:08:11',2,'2006-02-15 21:30:53'), - (10740,'2005-08-01 19:50:32',3215,144,'2005-08-07 23:25:32',1,'2006-02-15 21:30:53'), - (10741,'2005-08-01 19:52:52',3300,469,'2005-08-04 19:58:52',1,'2006-02-15 21:30:53'), - (10742,'2005-08-01 19:53:13',3658,416,'2005-08-10 15:05:13',1,'2006-02-15 21:30:53'), - (10743,'2005-08-01 19:55:09',4206,197,'2005-08-03 19:29:09',1,'2006-02-15 21:30:53'), - (10744,'2005-08-01 19:56:49',565,439,'2005-08-09 16:33:49',2,'2006-02-15 21:30:53'), - (10745,'2005-08-01 19:57:06',446,307,'2005-08-07 18:04:06',1,'2006-02-15 21:30:53'), - (10746,'2005-08-01 19:58:49',305,508,'2005-08-10 19:00:49',2,'2006-02-15 21:30:53'), - (10747,'2005-08-01 19:59:41',4527,266,'2005-08-10 00:00:41',2,'2006-02-15 21:30:53'), - (10748,'2005-08-01 20:01:24',3769,181,'2005-08-05 19:55:24',1,'2006-02-15 21:30:53'), - (10749,'2005-08-01 20:02:01',2953,214,'2005-08-03 14:20:01',1,'2006-02-15 21:30:53'), - (10750,'2005-08-01 20:06:00',3206,201,'2005-08-07 15:48:00',1,'2006-02-15 21:30:53'), - (10751,'2005-08-01 20:06:10',3257,518,'2005-08-10 22:36:10',2,'2006-02-15 21:30:53'), - (10752,'2005-08-01 20:08:49',3203,147,'2005-08-10 15:41:49',2,'2006-02-15 21:30:53'), - (10753,'2005-08-01 20:09:24',1557,273,'2005-08-09 19:31:24',1,'2006-02-15 21:30:53'), - (10754,'2005-08-01 20:12:33',2122,460,'2005-08-10 01:07:33',2,'2006-02-15 21:30:53'), - (10755,'2005-08-01 20:14:14',1217,239,'2005-08-07 01:04:14',1,'2006-02-15 21:30:53'), - (10756,'2005-08-01 20:17:03',4247,596,'2005-08-08 18:31:03',2,'2006-02-15 21:30:53'), - (10757,'2005-08-01 20:22:44',102,188,'2005-08-04 19:48:44',2,'2006-02-15 21:30:53'), - (10758,'2005-08-01 20:22:51',191,373,'2005-08-10 16:11:51',1,'2006-02-15 21:30:53'), - (10759,'2005-08-01 20:22:51',3528,256,'2005-08-07 22:07:51',1,'2006-02-15 21:30:53'), - (10760,'2005-08-01 20:25:20',1311,497,'2005-08-09 16:57:20',1,'2006-02-15 21:30:53'), - (10761,'2005-08-01 20:25:35',3967,36,'2005-08-08 15:20:35',2,'2006-02-15 21:30:53'), - (10762,'2005-08-01 20:28:39',1363,208,'2005-08-05 17:36:39',1,'2006-02-15 21:30:53'), - (10763,'2005-08-01 20:32:27',987,276,'2005-08-05 01:24:27',2,'2006-02-15 21:30:53'), - (10764,'2005-08-01 20:32:42',3808,357,'2005-08-03 22:14:42',2,'2006-02-15 21:30:53'), - (10765,'2005-08-01 20:34:51',566,337,'2005-08-04 00:02:51',1,'2006-02-15 21:30:53'), - (10766,'2005-08-01 20:36:29',947,420,'2005-08-04 00:30:29',1,'2006-02-15 21:30:53'), - (10767,'2005-08-01 20:37:23',2875,488,'2005-08-04 23:15:23',2,'2006-02-15 21:30:53'), - (10768,'2005-08-01 20:39:32',454,273,'2005-08-10 19:41:32',1,'2006-02-15 21:30:53'), - (10769,'2005-08-01 20:43:02',3222,348,'2005-08-05 02:32:02',1,'2006-02-15 21:30:53'), - (10770,'2005-08-01 20:45:39',2567,262,'2005-08-04 19:21:39',1,'2006-02-15 21:30:53'), - (10771,'2005-08-01 20:49:35',1274,485,'2005-08-10 16:58:35',1,'2006-02-15 21:30:53'), - (10772,'2005-08-01 20:51:10',132,485,'2005-08-10 15:50:10',1,'2006-02-15 21:30:53'), - (10773,'2005-08-01 20:53:45',3854,181,'2005-08-07 00:16:45',1,'2006-02-15 21:30:53'), - (10774,'2005-08-01 20:54:33',4231,407,'2005-08-08 20:59:33',2,'2006-02-15 21:30:53'), - (10775,'2005-08-01 20:59:52',4190,263,'2005-08-04 19:31:52',2,'2006-02-15 21:30:53'), - (10776,'2005-08-01 20:59:58',1598,565,'2005-08-10 20:33:58',2,'2006-02-15 21:30:53'), - (10777,'2005-08-01 21:03:50',3487,493,'2005-08-06 19:29:50',1,'2006-02-15 21:30:53'), - (10778,'2005-08-01 21:11:39',1939,220,'2005-08-02 22:59:39',2,'2006-02-15 21:30:53'), - (10779,'2005-08-01 21:11:54',2092,578,'2005-08-09 21:00:54',2,'2006-02-15 21:30:53'), - (10780,'2005-08-01 21:14:24',1450,51,'2005-08-07 16:32:24',2,'2006-02-15 21:30:53'), - (10781,'2005-08-01 21:22:41',1321,259,'2005-08-06 01:02:41',1,'2006-02-15 21:30:53'), - (10782,'2005-08-01 21:23:25',1507,577,'2005-08-03 20:15:25',2,'2006-02-15 21:30:53'), - (10783,'2005-08-01 21:23:37',1192,495,'2005-08-09 20:18:37',1,'2006-02-15 21:30:53'), - (10784,'2005-08-01 21:24:28',3494,208,'2005-08-09 19:23:28',1,'2006-02-15 21:30:53'), - (10785,'2005-08-01 21:24:55',2282,397,'2005-08-06 17:47:55',1,'2006-02-15 21:30:53'), - (10786,'2005-08-01 21:29:34',50,490,'2005-08-10 17:27:34',1,'2006-02-15 21:30:53'), - (10787,'2005-08-01 21:35:01',3246,127,'2005-08-10 23:30:01',1,'2006-02-15 21:30:53'), - (10788,'2005-08-01 21:37:10',3350,160,'2005-08-03 01:33:10',1,'2006-02-15 21:30:53'), - (10789,'2005-08-01 21:37:55',3298,403,'2005-08-07 17:01:55',2,'2006-02-15 21:30:53'), - (10790,'2005-08-01 21:38:37',3080,274,'2005-08-08 17:20:37',2,'2006-02-15 21:30:53'), - (10791,'2005-08-01 21:41:52',2061,338,'2005-08-04 03:28:52',2,'2006-02-15 21:30:53'), - (10792,'2005-08-01 21:44:24',1037,264,'2005-08-02 19:48:24',2,'2006-02-15 21:30:53'), - (10793,'2005-08-01 21:48:03',3018,225,'2005-08-10 19:16:03',1,'2006-02-15 21:30:53'), - (10794,'2005-08-01 21:51:15',889,27,'2005-08-10 18:51:15',2,'2006-02-15 21:30:53'), - (10795,'2005-08-01 21:56:37',2748,76,'2005-08-03 01:36:37',1,'2006-02-15 21:30:53'), - (10796,'2005-08-01 21:56:41',2113,534,'2005-08-05 01:09:41',1,'2006-02-15 21:30:53'), - (10797,'2005-08-01 22:02:51',1731,308,'2005-08-03 23:07:51',1,'2006-02-15 21:30:53'), - (10798,'2005-08-01 22:03:10',382,141,'2005-08-08 01:34:10',1,'2006-02-15 21:30:53'), - (10799,'2005-08-01 22:03:31',3282,145,'2005-08-06 20:19:31',2,'2006-02-15 21:30:53'), - (10800,'2005-08-01 22:07:44',507,583,'2005-08-05 22:45:44',1,'2006-02-15 21:30:53'), - (10801,'2005-08-01 22:09:35',3757,116,'2005-08-08 22:23:35',1,'2006-02-15 21:30:53'), - (10802,'2005-08-01 22:18:32',3998,178,'2005-08-10 18:41:32',2,'2006-02-15 21:30:53'), - (10803,'2005-08-01 22:22:07',3318,46,'2005-08-08 02:37:07',2,'2006-02-15 21:30:53'), - (10804,'2005-08-01 22:22:11',2915,596,'2005-08-03 03:42:11',2,'2006-02-15 21:30:53'), - (10805,'2005-08-01 22:23:37',557,203,'2005-08-05 01:22:37',2,'2006-02-15 21:30:53'), - (10806,'2005-08-01 22:25:29',3553,89,'2005-08-04 18:46:29',2,'2006-02-15 21:30:53'), - (10807,'2005-08-01 22:26:10',1673,287,'2005-08-05 21:55:10',1,'2006-02-15 21:30:53'), - (10808,'2005-08-01 22:37:11',596,480,'2005-08-09 02:37:11',1,'2006-02-15 21:30:53'), - (10809,'2005-08-01 22:39:27',1167,340,'2005-08-03 03:44:27',2,'2006-02-15 21:30:53'), - (10810,'2005-08-01 22:40:39',2314,376,'2005-08-06 19:47:39',1,'2006-02-15 21:30:53'), - (10811,'2005-08-01 22:41:15',4012,209,'2005-08-10 00:10:15',1,'2006-02-15 21:30:53'), - (10812,'2005-08-01 22:41:16',3762,11,'2005-08-07 00:50:16',1,'2006-02-15 21:30:53'), - (10813,'2005-08-01 22:43:00',3580,456,'2005-08-03 21:43:00',1,'2006-02-15 21:30:53'), - (10814,'2005-08-01 22:43:12',2758,49,'2005-08-05 02:35:12',2,'2006-02-15 21:30:53'), - (10815,'2005-08-01 22:46:21',877,62,'2005-08-03 02:43:21',2,'2006-02-15 21:30:53'), - (10816,'2005-08-01 22:48:57',905,129,'2005-08-10 04:39:57',2,'2006-02-15 21:30:53'), - (10817,'2005-08-01 22:51:08',3056,501,'2005-08-10 16:55:08',2,'2006-02-15 21:30:53'), - (10818,'2005-08-01 22:52:45',4549,309,'2005-08-06 04:07:45',1,'2006-02-15 21:30:53'), - (10819,'2005-08-01 22:52:57',983,308,'2005-08-06 00:08:57',1,'2006-02-15 21:30:53'), - (10820,'2005-08-01 22:53:40',1487,97,'2005-08-02 17:59:40',2,'2006-02-15 21:30:53'), - (10821,'2005-08-01 22:54:27',2016,522,'2005-08-07 02:15:27',2,'2006-02-15 21:30:53'), - (10822,'2005-08-01 22:54:28',3895,343,'2005-08-02 17:19:28',1,'2006-02-15 21:30:53'), - (10823,'2005-08-01 22:59:10',3322,405,'2005-08-08 23:44:10',1,'2006-02-15 21:30:53'), - (10824,'2005-08-01 23:00:22',3948,482,'2005-08-04 04:14:22',2,'2006-02-15 21:30:53'), - (10825,'2005-08-01 23:05:33',4386,587,'2005-08-04 04:33:33',1,'2006-02-15 21:30:53'), - (10826,'2005-08-01 23:07:56',1228,476,'2005-08-08 04:10:56',2,'2006-02-15 21:30:53'), - (10827,'2005-08-01 23:13:00',1590,46,'2005-08-08 02:51:00',1,'2006-02-15 21:30:53'), - (10828,'2005-08-01 23:16:10',2448,471,'2005-08-09 21:17:10',1,'2006-02-15 21:30:53'), - (10829,'2005-08-01 23:17:06',168,554,'2005-08-09 17:22:06',2,'2006-02-15 21:30:53'), - (10830,'2005-08-01 23:18:06',4176,148,'2005-08-06 23:15:06',2,'2006-02-15 21:30:53'), - (10831,'2005-08-01 23:22:45',1496,78,'2005-08-07 01:05:45',2,'2006-02-15 21:30:53'), - (10832,'2005-08-01 23:24:53',4096,487,'2005-08-06 23:18:53',1,'2006-02-15 21:30:53'), - (10833,'2005-08-01 23:25:55',4380,422,'2005-08-10 18:01:55',1,'2006-02-15 21:30:53'), - (10834,'2005-08-01 23:28:00',2270,252,'2005-08-07 01:21:00',1,'2006-02-15 21:30:53'), - (10835,'2005-08-01 23:28:49',351,90,'2005-08-10 21:28:49',2,'2006-02-15 21:30:53'), - (10836,'2005-08-01 23:29:58',4534,217,'2005-08-07 23:03:58',2,'2006-02-15 21:30:53'), - (10837,'2005-08-01 23:30:22',1816,410,'2005-08-07 23:02:22',1,'2006-02-15 21:30:53'), - (10838,'2005-08-01 23:36:10',69,387,'2005-08-05 04:55:10',2,'2006-02-15 21:30:53'), - (10839,'2005-08-01 23:37:39',2867,482,'2005-08-02 20:18:39',1,'2006-02-15 21:30:53'), - (10840,'2005-08-01 23:38:34',583,593,'2005-08-07 02:36:34',2,'2006-02-15 21:30:53'), - (10841,'2005-08-01 23:39:21',4337,102,'2005-08-07 20:47:21',1,'2006-02-15 21:30:53'), - (10842,'2005-08-01 23:41:24',1300,137,'2005-08-11 03:48:24',1,'2006-02-15 21:30:53'), - (10843,'2005-08-01 23:43:03',1286,192,'2005-08-09 23:49:03',2,'2006-02-15 21:30:53'), - (10844,'2005-08-01 23:46:58',1516,333,'2005-08-09 19:42:58',2,'2006-02-15 21:30:53'), - (10845,'2005-08-01 23:47:03',2737,42,'2005-08-08 01:57:03',1,'2006-02-15 21:30:53'), - (10846,'2005-08-01 23:47:54',2277,441,'2005-08-08 01:10:54',1,'2006-02-15 21:30:53'), - (10847,'2005-08-01 23:49:33',1200,280,'2005-08-10 05:37:33',2,'2006-02-15 21:30:53'), - (10848,'2005-08-01 23:50:22',2630,368,'2005-08-06 00:52:22',1,'2006-02-15 21:30:53'), - (10849,'2005-08-01 23:51:00',1683,278,'2005-08-10 19:59:00',2,'2006-02-15 21:30:53'), - (10850,'2005-08-01 23:53:45',1853,199,'2005-08-10 21:11:45',1,'2006-02-15 21:30:53'), - (10851,'2005-08-01 23:58:45',1359,154,'2005-08-04 00:59:45',1,'2006-02-15 21:30:53'), - (10852,'2005-08-02 00:00:33',3862,27,'2005-08-03 23:09:33',1,'2006-02-15 21:30:53'), - (10853,'2005-08-02 00:00:54',2682,41,'2005-08-10 05:37:54',2,'2006-02-15 21:30:53'), - (10854,'2005-08-02 00:02:06',3295,356,'2005-08-02 21:55:06',2,'2006-02-15 21:30:53'), - (10855,'2005-08-02 00:06:37',1366,274,'2005-08-03 00:39:37',1,'2006-02-15 21:30:53'), - (10856,'2005-08-02 00:07:14',2010,451,'2005-08-04 02:48:14',2,'2006-02-15 21:30:53'), - (10857,'2005-08-02 00:07:20',2961,360,'2005-08-04 02:35:20',1,'2006-02-15 21:30:53'), - (10858,'2005-08-02 00:08:39',852,312,'2005-08-05 00:58:39',2,'2006-02-15 21:30:53'), - (10859,'2005-08-02 00:11:39',277,375,'2005-08-08 19:52:39',1,'2006-02-15 21:30:53'), - (10860,'2005-08-02 00:12:32',2827,25,'2005-08-04 03:50:32',1,'2006-02-15 21:30:53'), - (10861,'2005-08-02 00:12:46',2162,131,'2005-08-09 04:09:46',2,'2006-02-15 21:30:53'), - (10862,'2005-08-02 00:17:34',1077,176,'2005-08-08 00:31:34',2,'2006-02-15 21:30:53'), - (10863,'2005-08-02 00:18:07',1170,161,'2005-08-10 06:16:07',2,'2006-02-15 21:30:53'), - (10864,'2005-08-02 00:18:59',1694,134,'2005-08-08 22:20:59',1,'2006-02-15 21:30:53'), - (10865,'2005-08-02 00:22:46',1485,201,'2005-08-09 05:08:46',2,'2006-02-15 21:30:53'), - (10866,'2005-08-02 00:22:49',117,424,'2005-08-07 04:38:49',1,'2006-02-15 21:30:53'), - (10867,'2005-08-02 00:24:15',2577,473,'2005-08-05 21:09:15',1,'2006-02-15 21:30:53'), - (10868,'2005-08-02 00:25:15',2443,562,'2005-08-10 02:31:15',2,'2006-02-15 21:30:53'), - (10869,'2005-08-02 00:26:54',2967,568,'2005-08-04 03:40:54',2,'2006-02-15 21:30:53'), - (10870,'2005-08-02 00:27:12',1509,33,'2005-08-02 20:00:12',2,'2006-02-15 21:30:53'), - (10871,'2005-08-02 00:27:24',104,75,'2005-08-05 06:25:24',1,'2006-02-15 21:30:53'), - (10872,'2005-08-02 00:27:50',2470,84,'2005-08-06 20:34:50',2,'2006-02-15 21:30:53'), - (10873,'2005-08-02 00:30:34',169,506,'2005-08-07 00:16:34',2,'2006-02-15 21:30:53'), - (10874,'2005-08-02 00:31:00',2552,230,'2005-08-07 05:04:00',1,'2006-02-15 21:30:53'), - (10875,'2005-08-02 00:31:44',862,175,'2005-08-05 22:24:44',2,'2006-02-15 21:30:53'), - (10876,'2005-08-02 00:31:58',2161,559,'2005-08-05 21:45:58',1,'2006-02-15 21:30:53'), - (10877,'2005-08-02 00:32:04',3337,487,'2005-08-07 19:44:04',2,'2006-02-15 21:30:53'), - (10878,'2005-08-02 00:33:12',3511,45,'2005-08-07 06:02:12',1,'2006-02-15 21:30:53'), - (10879,'2005-08-02 00:33:20',4415,334,'2005-08-09 04:13:20',2,'2006-02-15 21:30:53'), - (10880,'2005-08-02 00:34:12',450,528,'2005-08-06 21:15:12',2,'2006-02-15 21:30:53'), - (10881,'2005-08-02 00:38:14',781,253,'2005-08-09 22:02:14',2,'2006-02-15 21:30:53'), - (10882,'2005-08-02 00:47:16',1349,54,'2005-08-09 22:11:16',1,'2006-02-15 21:30:53'), - (10883,'2005-08-02 00:47:19',4,301,'2005-08-03 00:02:19',1,'2006-02-15 21:30:53'), - (10884,'2005-08-02 00:47:33',3702,569,'2005-08-03 04:38:33',1,'2006-02-15 21:30:53'), - (10885,'2005-08-02 00:51:37',4223,493,'2005-08-09 20:49:37',2,'2006-02-15 21:30:53'), - (10886,'2005-08-02 00:52:34',943,77,'2005-08-08 00:30:34',1,'2006-02-15 21:30:53'), - (10887,'2005-08-02 00:52:35',3450,573,'2005-08-03 05:37:35',1,'2006-02-15 21:30:53'), - (10888,'2005-08-02 00:52:45',2412,428,'2005-08-03 03:07:45',1,'2006-02-15 21:30:53'), - (10889,'2005-08-02 00:54:33',2098,64,'2005-08-07 19:42:33',1,'2006-02-15 21:30:53'), - (10890,'2005-08-02 00:58:46',78,210,'2005-08-10 02:13:46',1,'2006-02-15 21:30:53'), - (10891,'2005-08-02 01:09:55',1269,201,'2005-08-05 05:03:55',2,'2006-02-15 21:30:53'), - (10892,'2005-08-02 01:12:06',3243,109,'2005-08-09 23:53:06',1,'2006-02-15 21:30:53'), - (10893,'2005-08-02 01:12:13',2529,306,'2005-08-11 05:53:13',2,'2006-02-15 21:30:53'), - (10894,'2005-08-02 01:12:35',598,51,'2005-08-09 22:55:35',1,'2006-02-15 21:30:53'), - (10895,'2005-08-02 01:16:59',93,77,'2005-08-03 02:41:59',2,'2006-02-15 21:30:53'), - (10896,'2005-08-02 01:19:33',2283,505,'2005-08-08 06:54:33',1,'2006-02-15 21:30:53'), - (10897,'2005-08-02 01:23:42',291,338,'2005-08-03 23:27:42',1,'2006-02-15 21:30:53'), - (10898,'2005-08-02 01:29:57',3814,23,'2005-08-06 00:07:57',2,'2006-02-15 21:30:53'), - (10899,'2005-08-02 01:30:21',859,29,'2005-08-06 05:01:21',2,'2006-02-15 21:30:53'), - (10900,'2005-08-02 01:34:26',1749,139,'2005-08-07 00:52:26',2,'2006-02-15 21:30:53'), - (10901,'2005-08-02 01:35:44',3813,290,'2005-08-04 21:20:44',2,'2006-02-15 21:30:53'), - (10902,'2005-08-02 01:35:46',3863,486,'2005-08-09 01:59:46',1,'2006-02-15 21:30:53'), - (10903,'2005-08-02 01:41:59',2696,547,'2005-08-06 23:03:59',1,'2006-02-15 21:30:53'), - (10904,'2005-08-02 01:43:02',3681,593,'2005-08-04 04:34:02',1,'2006-02-15 21:30:53'), - (10905,'2005-08-02 01:45:59',2835,439,'2005-08-04 22:28:59',1,'2006-02-15 21:30:53'), - (10906,'2005-08-02 01:47:04',3139,463,'2005-08-07 20:41:04',2,'2006-02-15 21:30:53'), - (10907,'2005-08-02 01:51:48',1430,561,'2005-08-02 19:53:48',1,'2006-02-15 21:30:53'), - (10908,'2005-08-02 01:53:06',1284,269,'2005-08-04 02:46:06',2,'2006-02-15 21:30:53'), - (10909,'2005-08-02 01:53:59',3516,413,'2005-08-03 04:36:59',2,'2006-02-15 21:30:53'), - (10910,'2005-08-02 01:54:34',2428,266,'2005-08-10 04:04:34',2,'2006-02-15 21:30:53'), - (10911,'2005-08-02 01:58:36',769,195,'2005-08-08 07:37:36',2,'2006-02-15 21:30:53'), - (10912,'2005-08-02 02:00:03',732,477,'2005-08-06 05:55:03',1,'2006-02-15 21:30:53'), - (10913,'2005-08-02 02:04:03',3388,565,'2005-08-09 03:21:03',1,'2006-02-15 21:30:53'), - (10914,'2005-08-02 02:04:43',585,584,'2005-08-06 03:00:43',1,'2006-02-15 21:30:53'), - (10915,'2005-08-02 02:05:04',4568,418,'2005-08-10 21:58:04',2,'2006-02-15 21:30:53'), - (10916,'2005-08-02 02:05:59',3841,25,'2005-08-06 03:46:59',2,'2006-02-15 21:30:53'), - (10917,'2005-08-02 02:06:18',3146,378,'2005-08-03 22:42:18',1,'2006-02-15 21:30:53'), - (10918,'2005-08-02 02:10:56',3418,2,'2005-08-02 21:23:56',1,'2006-02-15 21:30:53'), - (10919,'2005-08-02 02:11:03',868,115,'2005-08-04 01:49:03',1,'2006-02-15 21:30:53'), - (10920,'2005-08-02 02:14:10',3106,531,'2005-08-06 23:36:10',1,'2006-02-15 21:30:53'), - (10921,'2005-08-02 02:14:33',1820,555,'2005-08-09 20:58:33',2,'2006-02-15 21:30:53'), - (10922,'2005-08-02 02:14:40',4522,539,'2005-08-06 06:04:40',1,'2006-02-15 21:30:53'), - (10923,'2005-08-02 02:15:01',2602,239,'2005-08-03 04:18:01',1,'2006-02-15 21:30:53'), - (10924,'2005-08-02 02:20:19',589,540,'2005-08-11 05:50:19',2,'2006-02-15 21:30:53'), - (10925,'2005-08-02 02:24:38',1475,98,'2005-08-03 05:06:38',1,'2006-02-15 21:30:53'), - (10926,'2005-08-02 02:26:37',4016,460,'2005-08-09 20:55:37',1,'2006-02-15 21:30:53'), - (10927,'2005-08-02 02:31:15',4125,288,'2005-08-10 20:41:15',1,'2006-02-15 21:30:53'), - (10928,'2005-08-02 02:34:12',2885,211,'2005-08-07 21:13:12',1,'2006-02-15 21:30:53'), - (10929,'2005-08-02 02:35:44',913,305,'2005-08-05 03:52:44',1,'2006-02-15 21:30:53'), - (10930,'2005-08-02 02:38:07',2027,206,'2005-08-08 05:15:07',2,'2006-02-15 21:30:53'), - (10931,'2005-08-02 02:44:59',3268,545,'2005-08-04 02:02:59',1,'2006-02-15 21:30:53'), - (10932,'2005-08-02 02:46:22',1688,595,'2005-08-06 01:49:22',2,'2006-02-15 21:30:53'), - (10933,'2005-08-02 02:50:49',3970,313,'2005-08-08 04:39:49',1,'2006-02-15 21:30:53'), - (10934,'2005-08-02 02:52:18',4458,142,'2005-08-06 01:23:18',2,'2006-02-15 21:30:53'), - (10935,'2005-08-02 02:54:53',4373,42,'2005-08-10 00:07:53',2,'2006-02-15 21:30:53'), - (10936,'2005-08-02 02:55:04',463,445,'2005-08-11 07:56:04',1,'2006-02-15 21:30:53'), - (10937,'2005-08-02 03:00:18',1320,416,'2005-08-11 03:44:18',2,'2006-02-15 21:30:53'), - (10938,'2005-08-02 03:05:22',3918,502,'2005-08-05 08:31:22',1,'2006-02-15 21:30:53'), - (10939,'2005-08-02 03:06:20',2131,161,'2005-08-04 01:22:20',2,'2006-02-15 21:30:53'), - (10940,'2005-08-02 03:08:29',3760,120,'2005-08-07 21:28:29',2,'2006-02-15 21:30:53'), - (10941,'2005-08-02 03:11:33',2132,531,'2005-08-10 07:31:33',1,'2006-02-15 21:30:53'), - (10942,'2005-08-02 03:16:31',2304,78,'2005-08-11 02:46:31',2,'2006-02-15 21:30:53'), - (10943,'2005-08-02 03:17:29',1036,377,'2005-08-03 00:50:29',2,'2006-02-15 21:30:53'), - (10944,'2005-08-02 03:20:03',2373,470,'2005-08-04 04:13:03',2,'2006-02-15 21:30:53'), - (10945,'2005-08-02 03:20:23',3684,532,'2005-08-09 03:23:23',1,'2006-02-15 21:30:53'), - (10946,'2005-08-02 03:20:39',4271,56,'2005-08-05 02:59:39',1,'2006-02-15 21:30:53'), - (10947,'2005-08-02 03:23:17',2510,500,'2005-08-07 05:25:17',1,'2006-02-15 21:30:53'), - (10948,'2005-08-02 03:23:23',4429,220,'2005-08-05 23:18:23',1,'2006-02-15 21:30:53'), - (10949,'2005-08-02 03:24:04',2309,389,'2005-08-06 08:36:04',2,'2006-02-15 21:30:53'), - (10950,'2005-08-02 03:25:08',707,451,'2005-08-07 23:11:08',2,'2006-02-15 21:30:53'), - (10951,'2005-08-02 03:26:35',173,144,'2005-08-07 22:03:35',1,'2006-02-15 21:30:53'), - (10952,'2005-08-02 03:28:21',3218,111,'2005-08-09 01:41:21',1,'2006-02-15 21:30:53'), - (10953,'2005-08-02 03:28:38',1510,483,'2005-08-11 03:53:38',1,'2006-02-15 21:30:53'), - (10954,'2005-08-02 03:30:24',3406,20,'2005-08-08 05:52:24',2,'2006-02-15 21:30:53'), - (10955,'2005-08-02 03:32:34',618,490,'2005-08-09 21:53:34',2,'2006-02-15 21:30:53'), - (10956,'2005-08-02 03:33:14',4372,54,'2005-08-09 09:20:14',2,'2006-02-15 21:30:53'), - (10957,'2005-08-02 03:33:30',1652,447,'2005-08-10 06:19:30',2,'2006-02-15 21:30:53'), - (10958,'2005-08-02 03:37:13',2174,160,'2005-08-04 23:28:13',2,'2006-02-15 21:30:53'), - (10959,'2005-08-02 03:39:39',4233,431,'2005-08-11 07:20:39',1,'2006-02-15 21:30:53'), - (10960,'2005-08-02 03:46:18',3536,399,'2005-08-11 01:29:18',1,'2006-02-15 21:30:53'), - (10961,'2005-08-02 03:47:55',1416,375,'2005-08-09 02:03:55',1,'2006-02-15 21:30:53'), - (10962,'2005-08-02 03:48:13',1953,538,'2005-08-07 00:04:13',1,'2006-02-15 21:30:53'), - (10963,'2005-08-02 03:48:17',4501,36,'2005-08-02 22:15:17',1,'2006-02-15 21:30:53'), - (10964,'2005-08-02 03:56:23',2356,36,'2005-08-09 23:11:23',2,'2006-02-15 21:30:53'), - (10965,'2005-08-02 04:00:19',2192,580,'2005-08-09 03:27:19',1,'2006-02-15 21:30:53'), - (10966,'2005-08-02 04:00:47',478,584,'2005-08-08 01:58:47',2,'2006-02-15 21:30:53'), - (10967,'2005-08-02 04:02:16',683,149,'2005-08-09 07:57:16',1,'2006-02-15 21:30:53'), - (10968,'2005-08-02 04:03:13',888,234,'2005-08-11 08:36:13',1,'2006-02-15 21:30:53'), - (10969,'2005-08-02 04:04:32',1898,244,'2005-08-09 23:18:32',1,'2006-02-15 21:30:53'), - (10970,'2005-08-02 04:06:46',1202,260,'2005-08-10 04:27:46',1,'2006-02-15 21:30:53'), - (10971,'2005-08-02 04:08:17',2789,383,'2005-08-09 00:02:17',1,'2006-02-15 21:30:53'), - (10972,'2005-08-02 04:08:25',1928,348,'2005-08-09 23:25:25',1,'2006-02-15 21:30:53'), - (10973,'2005-08-02 04:09:42',3562,127,'2005-08-08 05:24:42',2,'2006-02-15 21:30:53'), - (10974,'2005-08-02 04:10:52',690,491,'2005-08-09 08:26:52',1,'2006-02-15 21:30:53'), - (10975,'2005-08-02 04:11:25',2616,361,'2005-08-04 04:39:25',2,'2006-02-15 21:30:53'), - (10976,'2005-08-02 04:11:48',2418,326,'2005-08-06 06:30:48',2,'2006-02-15 21:30:53'), - (10977,'2005-08-02 04:12:17',2302,300,'2005-08-06 06:52:17',2,'2006-02-15 21:30:53'), - (10978,'2005-08-02 04:12:27',1597,487,'2005-08-10 08:19:27',2,'2006-02-15 21:30:53'), - (10979,'2005-08-02 04:16:37',2625,160,'2005-08-06 00:01:37',2,'2006-02-15 21:30:53'), - (10980,'2005-08-02 04:17:32',150,547,'2005-08-04 05:12:32',1,'2006-02-15 21:30:53'), - (10981,'2005-08-02 04:17:53',3699,305,'2005-08-09 03:45:53',2,'2006-02-15 21:30:53'), - (10982,'2005-08-02 04:19:11',2508,345,'2005-08-04 00:20:11',2,'2006-02-15 21:30:53'), - (10983,'2005-08-02 04:24:23',4502,380,'2005-08-09 08:05:23',2,'2006-02-15 21:30:53'), - (10984,'2005-08-02 04:30:02',1813,450,'2005-08-10 02:51:02',1,'2006-02-15 21:30:53'), - (10985,'2005-08-02 04:30:19',2734,186,'2005-08-03 05:18:19',1,'2006-02-15 21:30:53'), - (10986,'2005-08-02 04:35:24',555,597,'2005-08-09 07:34:24',2,'2006-02-15 21:30:53'), - (10987,'2005-08-02 04:36:52',968,349,'2005-08-04 00:03:52',1,'2006-02-15 21:30:53'), - (10988,'2005-08-02 04:38:17',1157,509,'2005-08-09 00:09:17',1,'2006-02-15 21:30:53'), - (10989,'2005-08-02 04:40:54',2272,7,'2005-08-09 03:39:54',2,'2006-02-15 21:30:53'), - (10990,'2005-08-02 04:41:06',262,111,'2005-08-10 05:02:06',2,'2006-02-15 21:30:53'), - (10991,'2005-08-02 04:41:12',2854,77,'2005-08-05 05:36:12',2,'2006-02-15 21:30:53'), - (10992,'2005-08-02 04:41:17',11,180,'2005-08-09 02:13:17',1,'2006-02-15 21:30:53'), - (10993,'2005-08-02 04:45:01',292,383,'2005-08-04 03:32:01',1,'2006-02-15 21:30:53'), - (10994,'2005-08-02 04:46:53',647,323,'2005-08-11 10:30:53',1,'2006-02-15 21:30:53'), - (10995,'2005-08-02 04:48:00',2891,340,'2005-08-07 05:00:00',1,'2006-02-15 21:30:53'), - (10996,'2005-08-02 04:48:11',2235,26,'2005-08-06 08:00:11',1,'2006-02-15 21:30:53'), - (10997,'2005-08-02 04:49:02',300,334,'2005-08-10 08:13:02',2,'2006-02-15 21:30:53'), - (10998,'2005-08-02 04:50:55',1479,435,'2005-08-11 03:43:55',1,'2006-02-15 21:30:53'), - (10999,'2005-08-02 04:53:13',2013,227,'2005-08-06 04:36:13',2,'2006-02-15 21:30:53'), - (11000,'2005-08-02 04:56:14',264,265,'2005-08-07 01:39:14',2,'2006-02-15 21:30:53'), - (11001,'2005-08-02 04:56:45',3701,5,'2005-08-11 08:04:45',1,'2006-02-15 21:30:53'), - (11002,'2005-08-02 05:02:56',3073,583,'2005-08-05 07:04:56',2,'2006-02-15 21:30:53'), - (11003,'2005-08-02 05:03:05',4301,272,'2005-08-05 10:48:05',2,'2006-02-15 21:30:53'), - (11004,'2005-08-02 05:04:18',200,45,'2005-08-11 00:03:18',2,'2006-02-15 21:30:53'), - (11005,'2005-08-02 05:05:23',1547,216,'2005-08-07 23:28:23',2,'2006-02-15 21:30:53'), - (11006,'2005-08-02 05:05:52',2776,473,'2005-08-05 03:33:52',1,'2006-02-15 21:30:53'), - (11007,'2005-08-02 05:05:53',4172,98,'2005-08-05 01:56:53',2,'2006-02-15 21:30:53'), - (11008,'2005-08-02 05:06:17',2831,375,'2005-08-10 01:22:17',2,'2006-02-15 21:30:53'), - (11009,'2005-08-02 05:06:23',2574,596,'2005-08-08 03:02:23',1,'2006-02-15 21:30:53'), - (11010,'2005-08-02 05:06:27',869,326,'2005-08-03 23:47:27',2,'2006-02-15 21:30:53'), - (11011,'2005-08-02 05:07:07',3981,256,'2005-08-09 07:16:07',1,'2006-02-15 21:30:53'), - (11012,'2005-08-02 05:09:42',542,162,'2005-08-05 07:22:42',2,'2006-02-15 21:30:53'), - (11013,'2005-08-02 05:10:54',2993,527,'2005-08-10 08:59:54',1,'2006-02-15 21:30:53'), - (11014,'2005-08-02 05:12:22',393,269,'2005-08-07 09:33:22',1,'2006-02-15 21:30:53'), - (11015,'2005-08-02 05:13:00',4331,138,'2005-08-08 04:18:00',2,'2006-02-15 21:30:53'), - (11016,'2005-08-02 05:19:13',4446,116,'2005-08-05 05:31:13',1,'2006-02-15 21:30:53'), - (11017,'2005-08-02 05:19:51',4140,480,'2005-08-09 00:36:51',2,'2006-02-15 21:30:53'), - (11018,'2005-08-02 05:27:53',2988,197,'2005-08-07 10:48:53',1,'2006-02-15 21:30:53'), - (11019,'2005-08-02 05:29:31',3227,112,'2005-08-04 00:42:31',1,'2006-02-15 21:30:53'), - (11020,'2005-08-02 05:29:48',1645,242,'2005-08-06 05:36:48',2,'2006-02-15 21:30:53'), - (11021,'2005-08-02 05:30:11',2069,385,'2005-08-05 05:50:11',2,'2006-02-15 21:30:53'), - (11022,'2005-08-02 05:35:03',827,206,'2005-08-09 10:20:03',2,'2006-02-15 21:30:53'), - (11023,'2005-08-02 05:36:38',3617,6,'2005-08-10 05:39:38',1,'2006-02-15 21:30:53'), - (11024,'2005-08-02 05:38:31',2284,427,'2005-08-11 04:47:31',1,'2006-02-15 21:30:53'), - (11025,'2005-08-02 05:39:12',2253,419,'2005-08-08 00:09:12',2,'2006-02-15 21:30:53'), - (11026,'2005-08-02 05:46:05',3554,531,'2005-08-07 06:27:05',2,'2006-02-15 21:30:53'), - (11027,'2005-08-02 05:47:10',571,412,'2005-08-05 23:51:10',1,'2006-02-15 21:30:53'), - (11028,'2005-08-02 05:48:20',2764,66,'2005-08-10 11:21:20',1,'2006-02-15 21:30:53'), - (11029,'2005-08-02 05:51:10',1023,45,'2005-08-05 04:15:10',1,'2006-02-15 21:30:53'), - (11030,'2005-08-02 05:51:20',1437,569,'2005-08-06 04:20:20',1,'2006-02-15 21:30:53'), - (11031,'2005-08-02 05:52:58',1205,361,'2005-08-07 07:14:58',2,'2006-02-15 21:30:53'), - (11032,'2005-08-02 05:53:35',1119,359,'2005-08-05 02:58:35',2,'2006-02-15 21:30:53'), - (11033,'2005-08-02 05:54:17',3323,155,'2005-08-09 10:50:17',2,'2006-02-15 21:30:53'), - (11034,'2005-08-02 05:54:53',2939,586,'2005-08-09 04:14:53',1,'2006-02-15 21:30:53'), - (11035,'2005-08-02 05:55:39',3776,305,'2005-08-08 06:46:39',2,'2006-02-15 21:30:53'), - (11036,'2005-08-02 05:56:29',2054,502,'2005-08-05 05:00:29',2,'2006-02-15 21:30:53'), - (11037,'2005-08-02 05:58:12',4291,220,'2005-08-07 11:26:12',1,'2006-02-15 21:30:53'), - (11038,'2005-08-02 05:59:42',4452,403,'2005-08-08 04:37:42',2,'2006-02-15 21:30:53'), - (11039,'2005-08-02 06:00:53',549,170,'2005-08-05 06:19:53',2,'2006-02-15 21:30:53'), - (11040,'2005-08-02 06:03:22',2297,223,'2005-08-03 07:58:22',1,'2006-02-15 21:30:53'), - (11041,'2005-08-02 06:03:53',1897,435,'2005-08-03 11:57:53',1,'2006-02-15 21:30:53'), - (11042,'2005-08-02 06:04:33',4149,439,'2005-08-11 01:30:33',1,'2006-02-15 21:30:53'), - (11043,'2005-08-02 06:04:44',65,573,'2005-08-06 11:37:44',1,'2006-02-15 21:30:53'), - (11044,'2005-08-02 06:05:27',2922,122,'2005-08-06 05:15:27',1,'2006-02-15 21:30:53'), - (11045,'2005-08-02 06:07:54',2214,402,'2005-08-08 00:37:54',1,'2006-02-15 21:30:53'), - (11046,'2005-08-02 06:08:34',2105,526,'2005-08-06 08:45:34',2,'2006-02-15 21:30:53'), - (11047,'2005-08-02 06:09:20',2267,416,'2005-08-11 08:36:20',1,'2006-02-15 21:30:53'), - (11048,'2005-08-02 06:15:07',206,491,'2005-08-04 02:47:07',2,'2006-02-15 21:30:53'), - (11049,'2005-08-02 06:15:40',4352,38,'2005-08-11 10:09:40',2,'2006-02-15 21:30:53'), - (11050,'2005-08-02 06:17:16',2077,234,'2005-08-09 05:58:16',1,'2006-02-15 21:30:53'), - (11051,'2005-08-02 06:23:39',4189,446,'2005-08-06 06:46:39',2,'2006-02-15 21:30:53'), - (11052,'2005-08-02 06:26:19',1089,331,'2005-08-06 04:20:19',2,'2006-02-15 21:30:53'), - (11053,'2005-08-02 06:27:13',2599,50,'2005-08-09 11:24:13',2,'2006-02-15 21:30:53'), - (11054,'2005-08-02 06:33:07',728,577,'2005-08-10 02:52:07',2,'2006-02-15 21:30:53'), - (11055,'2005-08-02 06:36:05',3851,182,'2005-08-06 00:36:05',1,'2006-02-15 21:30:53'), - (11056,'2005-08-02 06:36:27',1404,88,'2005-08-10 06:02:27',1,'2006-02-15 21:30:53'), - (11057,'2005-08-02 06:38:19',3143,137,'2005-08-11 03:43:19',1,'2006-02-15 21:30:53'), - (11058,'2005-08-02 06:38:44',3270,274,'2005-08-06 06:45:44',1,'2006-02-15 21:30:53'), - (11059,'2005-08-02 06:41:38',428,189,'2005-08-09 04:34:38',1,'2006-02-15 21:30:53'), - (11060,'2005-08-02 06:48:18',3395,496,'2005-08-10 11:49:18',1,'2006-02-15 21:30:53'), - (11061,'2005-08-02 06:50:18',809,245,'2005-08-07 07:41:18',2,'2006-02-15 21:30:53'), - (11062,'2005-08-02 06:52:54',2014,346,'2005-08-07 10:59:54',1,'2006-02-15 21:30:53'), - (11063,'2005-08-02 06:53:48',2261,461,'2005-08-05 03:38:48',2,'2006-02-15 21:30:53'), - (11064,'2005-08-02 06:55:17',3012,338,'2005-08-06 03:29:17',1,'2006-02-15 21:30:53'), - (11065,'2005-08-02 06:57:55',2226,357,'2005-08-06 01:31:55',2,'2006-02-15 21:30:53'), - (11066,'2005-08-02 06:58:32',4213,373,'2005-08-10 01:27:32',2,'2006-02-15 21:30:53'), - (11067,'2005-08-02 07:03:24',965,85,'2005-08-10 08:59:24',2,'2006-02-15 21:30:53'), - (11068,'2005-08-02 07:08:07',1262,52,'2005-08-09 11:15:07',2,'2006-02-15 21:30:53'), - (11069,'2005-08-02 07:09:34',57,4,'2005-08-08 08:39:34',1,'2006-02-15 21:30:53'), - (11070,'2005-08-02 07:10:39',4020,298,'2005-08-03 07:43:39',1,'2006-02-15 21:30:53'), - (11071,'2005-08-02 07:10:53',4264,294,'2005-08-07 09:58:53',1,'2006-02-15 21:30:53'), - (11072,'2005-08-02 07:10:57',3078,21,'2005-08-04 07:42:57',1,'2006-02-15 21:30:53'), - (11073,'2005-08-02 07:13:03',4232,234,'2005-08-03 05:46:03',1,'2006-02-15 21:30:53'), - (11074,'2005-08-02 07:21:43',1439,277,'2005-08-08 05:18:43',1,'2006-02-15 21:30:53'), - (11075,'2005-08-02 07:24:23',3027,503,'2005-08-08 04:55:23',1,'2006-02-15 21:30:53'), - (11076,'2005-08-02 07:24:47',837,211,'2005-08-10 09:16:47',1,'2006-02-15 21:30:53'), - (11077,'2005-08-02 07:26:43',4254,158,'2005-08-09 10:34:43',2,'2006-02-15 21:30:53'), - (11078,'2005-08-02 07:26:58',2362,587,'2005-08-07 01:59:58',2,'2006-02-15 21:30:53'), - (11079,'2005-08-02 07:29:10',3185,29,'2005-08-07 01:59:10',2,'2006-02-15 21:30:53'), - (11080,'2005-08-02 07:29:56',4303,571,'2005-08-08 05:58:56',1,'2006-02-15 21:30:53'), - (11081,'2005-08-02 07:30:14',3804,513,'2005-08-09 08:50:14',1,'2006-02-15 21:30:53'), - (11082,'2005-08-02 07:30:19',3037,190,'2005-08-07 05:20:19',2,'2006-02-15 21:30:53'), - (11083,'2005-08-02 07:32:01',4395,295,'2005-08-08 02:23:01',1,'2006-02-15 21:30:53'), - (11084,'2005-08-02 07:34:19',32,369,'2005-08-07 09:30:19',1,'2006-02-15 21:30:53'), - (11085,'2005-08-02 07:36:44',3207,276,'2005-08-04 03:32:44',1,'2006-02-15 21:30:53'), - (11086,'2005-08-02 07:38:44',552,371,'2005-08-11 06:30:44',1,'2006-02-15 21:30:53'), - (11087,'2005-08-02 07:41:41',654,2,'2005-08-10 10:37:41',2,'2006-02-15 21:30:53'), - (11088,'2005-08-02 07:48:31',2739,138,'2005-08-05 08:09:31',2,'2006-02-15 21:30:53'), - (11089,'2005-08-02 07:52:20',825,421,'2005-08-07 07:24:20',1,'2006-02-15 21:30:53'), - (11090,'2005-08-02 07:56:40',2743,89,'2005-08-10 07:58:40',1,'2006-02-15 21:30:53'), - (11091,'2005-08-02 07:56:41',1659,423,'2005-08-07 05:35:41',2,'2006-02-15 21:30:53'), - (11092,'2005-08-02 07:58:50',569,60,'2005-08-04 03:23:50',2,'2006-02-15 21:30:53'), - (11093,'2005-08-02 07:59:49',239,82,'2005-08-11 06:01:49',1,'2006-02-15 21:30:53'), - (11094,'2005-08-02 08:03:02',3095,18,'2005-08-03 11:34:02',1,'2006-02-15 21:30:53'), - (11095,'2005-08-02 08:03:20',3517,278,'2005-08-10 05:20:20',1,'2006-02-15 21:30:53'), - (11096,'2005-08-02 08:05:19',1436,34,'2005-08-04 07:28:19',2,'2006-02-15 21:30:53'), - (11097,'2005-08-02 08:05:46',2493,575,'2005-08-10 12:00:46',2,'2006-02-15 21:30:53'), - (11098,'2005-08-02 08:06:18',158,570,'2005-08-11 04:50:18',2,'2006-02-15 21:30:53'), - (11099,'2005-08-02 08:07:12',1444,102,'2005-08-07 12:11:12',2,'2006-02-15 21:30:53'), - (11100,'2005-08-02 08:08:00',3047,65,'2005-08-10 07:19:00',1,'2006-02-15 21:30:53'), - (11101,'2005-08-02 08:08:24',2621,80,'2005-08-06 05:55:24',1,'2006-02-15 21:30:53'), - (11102,'2005-08-02 08:08:30',3112,73,'2005-08-04 09:16:30',1,'2006-02-15 21:30:53'), - (11103,'2005-08-02 08:09:54',1879,158,'2005-08-07 12:05:54',1,'2006-02-15 21:30:53'), - (11104,'2005-08-02 08:09:58',3042,196,'2005-08-05 11:55:58',1,'2006-02-15 21:30:53'), - (11105,'2005-08-02 08:13:31',3170,245,'2005-08-03 11:08:31',1,'2006-02-15 21:30:53'), - (11106,'2005-08-02 08:17:38',2307,287,'2005-08-03 07:54:38',1,'2006-02-15 21:30:53'), - (11107,'2005-08-02 08:19:38',2217,410,'2005-08-07 08:46:38',2,'2006-02-15 21:30:53'), - (11108,'2005-08-02 08:20:01',560,447,'2005-08-03 13:22:01',2,'2006-02-15 21:30:53'), - (11109,'2005-08-02 08:20:29',2683,479,'2005-08-09 11:35:29',2,'2006-02-15 21:30:53'), - (11110,'2005-08-02 08:20:31',4311,4,'2005-08-04 05:06:31',2,'2006-02-15 21:30:53'), - (11111,'2005-08-02 08:21:27',334,378,'2005-08-06 07:48:27',2,'2006-02-15 21:30:53'), - (11112,'2005-08-02 08:25:14',526,207,'2005-08-03 08:41:14',1,'2006-02-15 21:30:53'), - (11113,'2005-08-02 08:26:24',1654,231,'2005-08-07 09:24:24',2,'2006-02-15 21:30:53'), - (11114,'2005-08-02 08:26:45',1273,572,'2005-08-03 08:41:45',2,'2006-02-15 21:30:53'), - (11115,'2005-08-02 08:31:06',3812,408,'2005-08-04 02:36:06',2,'2006-02-15 21:30:53'), - (11116,'2005-08-02 08:34:40',434,344,'2005-08-09 04:56:40',1,'2006-02-15 21:30:53'), - (11117,'2005-08-02 08:36:03',1613,474,'2005-08-05 06:56:03',2,'2006-02-15 21:30:53'), - (11118,'2005-08-02 08:44:18',2411,15,'2005-08-05 08:08:18',2,'2006-02-15 21:30:53'), - (11119,'2005-08-02 08:44:44',4307,489,'2005-08-10 11:32:44',2,'2006-02-15 21:30:53'), - (11120,'2005-08-02 08:47:04',4185,322,'2005-08-05 05:33:04',1,'2006-02-15 21:30:53'), - (11121,'2005-08-02 08:48:31',1025,572,'2005-08-04 05:08:31',2,'2006-02-15 21:30:53'), - (11122,'2005-08-02 08:49:09',3021,383,'2005-08-08 04:33:09',1,'2006-02-15 21:30:53'), - (11123,'2005-08-02 08:54:17',1926,150,'2005-08-09 11:11:17',2,'2006-02-15 21:30:53'), - (11124,'2005-08-02 08:55:25',698,249,'2005-08-10 10:59:25',1,'2006-02-15 21:30:53'), - (11125,'2005-08-02 08:55:35',2081,237,'2005-08-03 09:12:35',1,'2006-02-15 21:30:53'), - (11126,'2005-08-02 08:59:04',3310,47,'2005-08-04 11:00:04',1,'2006-02-15 21:30:53'), - (11127,'2005-08-02 09:00:59',1106,351,'2005-08-05 11:54:59',2,'2006-02-15 21:30:53'), - (11128,'2005-08-02 09:03:25',3472,386,'2005-08-09 04:36:25',1,'2006-02-15 21:30:53'), - (11129,'2005-08-02 09:08:44',23,566,'2005-08-04 04:00:44',1,'2006-02-15 21:30:53'), - (11130,'2005-08-02 09:08:59',684,329,'2005-08-09 07:50:59',2,'2006-02-15 21:30:53'), - (11131,'2005-08-02 09:10:04',1860,293,'2005-08-08 09:59:04',2,'2006-02-15 21:30:53'), - (11132,'2005-08-02 09:14:09',2212,398,'2005-08-08 06:39:09',1,'2006-02-15 21:30:53'), - (11133,'2005-08-02 09:15:45',675,120,'2005-08-04 10:39:45',1,'2006-02-15 21:30:53'), - (11134,'2005-08-02 09:19:22',2641,372,'2005-08-11 03:56:22',1,'2006-02-15 21:30:53'), - (11135,'2005-08-02 09:22:25',799,32,'2005-08-04 14:30:25',2,'2006-02-15 21:30:53'), - (11136,'2005-08-02 09:22:57',1315,559,'2005-08-08 14:12:57',2,'2006-02-15 21:30:53'), - (11137,'2005-08-02 09:25:31',2500,310,'2005-08-08 08:10:31',1,'2006-02-15 21:30:53'), - (11138,'2005-08-02 09:26:16',4250,458,'2005-08-11 07:50:16',2,'2006-02-15 21:30:53'), - (11139,'2005-08-02 09:27:36',1011,236,'2005-08-08 14:07:36',2,'2006-02-15 21:30:53'), - (11140,'2005-08-02 09:27:45',3836,132,'2005-08-05 04:10:45',1,'2006-02-15 21:30:53'), - (11141,'2005-08-02 09:29:11',1614,15,'2005-08-04 07:50:11',1,'2006-02-15 21:30:53'), - (11142,'2005-08-02 09:30:11',2954,306,'2005-08-05 06:52:11',1,'2006-02-15 21:30:53'), - (11143,'2005-08-02 09:32:54',3382,100,'2005-08-05 12:04:54',2,'2006-02-15 21:30:53'), - (11144,'2005-08-02 09:39:17',2724,376,'2005-08-03 11:53:17',2,'2006-02-15 21:30:53'), - (11145,'2005-08-02 09:43:24',1270,291,'2005-08-05 15:29:24',1,'2006-02-15 21:30:53'), - (11146,'2005-08-02 09:45:32',2488,552,'2005-08-07 07:33:32',1,'2006-02-15 21:30:53'), - (11147,'2005-08-02 09:45:54',1562,597,'2005-08-07 07:28:54',1,'2006-02-15 21:30:53'), - (11148,'2005-08-02 09:47:08',2991,230,'2005-08-08 10:57:08',1,'2006-02-15 21:30:53'), - (11149,'2005-08-02 09:51:43',3254,358,'2005-08-11 09:40:43',2,'2006-02-15 21:30:53'), - (11150,'2005-08-02 09:51:46',2193,527,'2005-08-05 09:03:46',2,'2006-02-15 21:30:53'), - (11151,'2005-08-02 09:52:44',3939,391,'2005-08-05 06:29:44',2,'2006-02-15 21:30:53'), - (11152,'2005-08-02 09:53:36',3887,494,'2005-08-11 14:58:36',1,'2006-02-15 21:30:53'), - (11153,'2005-08-02 09:54:19',1546,220,'2005-08-10 14:57:19',1,'2006-02-15 21:30:53'), - (11154,'2005-08-02 09:54:50',697,160,'2005-08-06 14:48:50',2,'2006-02-15 21:30:53'), - (11155,'2005-08-02 09:55:28',2001,73,'2005-08-03 06:00:28',2,'2006-02-15 21:30:53'), - (11156,'2005-08-02 09:56:06',907,465,'2005-08-04 13:36:06',2,'2006-02-15 21:30:53'), - (11157,'2005-08-02 09:58:15',1313,244,'2005-08-06 04:23:15',2,'2006-02-15 21:30:53'), - (11158,'2005-08-02 09:58:28',530,190,'2005-08-10 13:54:28',2,'2006-02-15 21:30:53'), - (11159,'2005-08-02 10:00:55',4575,249,'2005-08-05 10:38:55',1,'2006-02-15 21:30:53'), - (11160,'2005-08-02 10:05:30',3260,436,'2005-08-07 08:30:30',1,'2006-02-15 21:30:53'), - (11161,'2005-08-02 10:05:57',3321,503,'2005-08-06 05:05:57',2,'2006-02-15 21:30:53'), - (11162,'2005-08-02 10:07:54',1809,277,'2005-08-05 11:35:54',2,'2006-02-15 21:30:53'), - (11163,'2005-08-02 10:08:40',1925,505,'2005-08-05 14:59:40',1,'2006-02-15 21:30:53'), - (11164,'2005-08-02 10:10:56',4450,580,'2005-08-10 11:20:56',2,'2006-02-15 21:30:53'), - (11165,'2005-08-02 10:12:17',2059,513,'2005-08-04 11:09:17',1,'2006-02-15 21:30:53'), - (11166,'2005-08-02 10:14:58',638,11,'2005-08-11 11:43:58',1,'2006-02-15 21:30:53'), - (11167,'2005-08-02 10:15:51',148,451,'2005-08-09 09:18:51',1,'2006-02-15 21:30:53'), - (11168,'2005-08-02 10:19:42',468,555,'2005-08-04 08:42:42',1,'2006-02-15 21:30:53'), - (11169,'2005-08-02 10:19:42',2392,329,'2005-08-07 05:45:42',1,'2006-02-15 21:30:53'), - (11170,'2005-08-02 10:21:53',1333,547,'2005-08-08 11:08:53',1,'2006-02-15 21:30:53'), - (11171,'2005-08-02 10:23:41',3117,339,'2005-08-04 14:22:41',2,'2006-02-15 21:30:53'), - (11172,'2005-08-02 10:27:52',1207,76,'2005-08-11 12:47:52',1,'2006-02-15 21:30:53'), - (11173,'2005-08-02 10:28:00',4296,146,'2005-08-10 14:53:00',1,'2006-02-15 21:30:53'), - (11174,'2005-08-02 10:32:11',1551,328,'2005-08-09 12:30:11',1,'2006-02-15 21:30:53'), - (11175,'2005-08-02 10:38:47',85,164,'2005-08-07 07:11:47',2,'2006-02-15 21:30:53'), - (11176,'2005-08-02 10:39:43',1448,37,'2005-08-09 14:42:43',2,'2006-02-15 21:30:53'), - (11177,'2005-08-02 10:43:48',1149,2,'2005-08-10 10:55:48',2,'2006-02-15 21:30:53'), - (11178,'2005-08-02 10:48:10',2613,342,'2005-08-06 06:07:10',1,'2006-02-15 21:30:53'), - (11179,'2005-08-02 10:50:06',4376,5,'2005-08-04 05:24:06',1,'2006-02-15 21:30:53'), - (11180,'2005-08-02 10:54:30',3632,534,'2005-08-11 15:55:30',1,'2006-02-15 21:30:53'), - (11181,'2005-08-02 10:55:03',3127,557,'2005-08-07 10:43:03',1,'2006-02-15 21:30:53'), - (11182,'2005-08-02 10:55:14',605,54,'2005-08-06 05:58:14',1,'2006-02-15 21:30:53'), - (11183,'2005-08-02 11:00:32',833,102,'2005-08-04 08:59:32',2,'2006-02-15 21:30:53'), - (11184,'2005-08-02 11:01:26',871,259,'2005-08-11 06:29:26',1,'2006-02-15 21:30:53'), - (11185,'2005-08-02 11:04:35',1215,469,'2005-08-05 13:48:35',2,'2006-02-15 21:30:53'), - (11186,'2005-08-02 11:12:08',733,353,'2005-08-03 10:46:08',1,'2006-02-15 21:30:53'), - (11187,'2005-08-02 11:16:19',3626,410,'2005-08-11 06:11:19',1,'2006-02-15 21:30:53'), - (11188,'2005-08-02 11:17:11',1372,485,'2005-08-08 16:46:11',2,'2006-02-15 21:30:53'), - (11189,'2005-08-02 11:17:23',729,565,'2005-08-09 16:30:23',2,'2006-02-15 21:30:53'), - (11190,'2005-08-02 11:21:34',922,254,'2005-08-05 05:23:34',1,'2006-02-15 21:30:53'), - (11191,'2005-08-02 11:24:07',1097,571,'2005-08-10 10:39:07',1,'2006-02-15 21:30:53'), - (11192,'2005-08-02 11:29:41',1998,349,'2005-08-07 06:01:41',2,'2006-02-15 21:30:53'), - (11193,'2005-08-02 11:31:33',2246,292,'2005-08-04 14:00:33',1,'2006-02-15 21:30:53'), - (11194,'2005-08-02 11:35:53',2732,135,'2005-08-10 11:28:53',1,'2006-02-15 21:30:53'), - (11195,'2005-08-02 11:42:23',4359,177,'2005-08-03 08:29:23',1,'2006-02-15 21:30:53'), - (11196,'2005-08-02 11:42:40',2648,126,'2005-08-10 11:58:40',2,'2006-02-15 21:30:53'), - (11197,'2005-08-02 11:45:07',3041,122,'2005-08-03 09:07:07',1,'2006-02-15 21:30:53'), - (11198,'2005-08-02 11:45:15',2908,540,'2005-08-10 11:42:15',2,'2006-02-15 21:30:53'), - (11199,'2005-08-02 11:47:40',3926,578,'2005-08-10 06:52:40',2,'2006-02-15 21:30:53'), - (11200,'2005-08-02 11:48:36',2730,98,'2005-08-07 08:35:36',2,'2006-02-15 21:30:53'), - (11201,'2005-08-02 11:49:16',1501,195,'2005-08-11 08:39:16',1,'2006-02-15 21:30:53'), - (11202,'2005-08-02 11:51:57',3625,231,'2005-08-08 09:41:57',1,'2006-02-15 21:30:53'), - (11203,'2005-08-02 11:52:41',4520,92,'2005-08-10 15:52:41',2,'2006-02-15 21:30:53'), - (11204,'2005-08-02 11:56:31',3578,247,'2005-08-06 14:16:31',2,'2006-02-15 21:30:53'), - (11205,'2005-08-02 11:56:54',4321,552,'2005-08-05 08:24:54',1,'2006-02-15 21:30:53'), - (11206,'2005-08-02 11:58:03',4131,72,'2005-08-07 12:36:03',2,'2006-02-15 21:30:53'), - (11207,'2005-08-02 12:01:30',4470,481,'2005-08-05 07:56:30',1,'2006-02-15 21:30:53'), - (11208,'2005-08-02 12:02:37',4566,320,'2005-08-05 10:56:37',1,'2006-02-15 21:30:53'), - (11209,'2005-08-02 12:09:45',3219,24,'2005-08-07 08:52:45',1,'2006-02-15 21:30:53'), - (11210,'2005-08-02 12:15:54',422,202,'2005-08-04 16:18:54',2,'2006-02-15 21:30:53'), - (11211,'2005-08-02 12:16:48',1722,245,'2005-08-03 10:40:48',1,'2006-02-15 21:30:53'), - (11212,'2005-08-02 12:18:29',4007,343,'2005-08-05 16:05:29',2,'2006-02-15 21:30:53'), - (11213,'2005-08-02 12:18:35',1007,584,'2005-08-05 08:44:35',2,'2006-02-15 21:30:53'), - (11214,'2005-08-02 12:19:50',2722,407,'2005-08-11 06:38:50',1,'2006-02-15 21:30:53'), - (11215,'2005-08-02 12:20:42',379,197,'2005-08-06 14:01:42',1,'2006-02-15 21:30:53'), - (11216,'2005-08-02 12:23:43',1109,473,'2005-08-03 13:19:43',1,'2006-02-15 21:30:53'), - (11217,'2005-08-02 12:26:31',1201,417,'2005-08-09 09:53:31',2,'2006-02-15 21:30:53'), - (11218,'2005-08-02 12:29:12',1126,500,'2005-08-10 16:13:12',2,'2006-02-15 21:30:53'), - (11219,'2005-08-02 12:30:20',2889,461,'2005-08-08 13:42:20',2,'2006-02-15 21:30:53'), - (11220,'2005-08-02 12:31:41',3777,84,'2005-08-05 08:23:41',2,'2006-02-15 21:30:53'), - (11221,'2005-08-02 12:32:12',1689,146,'2005-08-03 17:13:12',1,'2006-02-15 21:30:53'), - (11222,'2005-08-02 12:32:28',1780,407,'2005-08-11 18:15:28',2,'2006-02-15 21:30:53'), - (11223,'2005-08-02 12:34:27',1994,597,'2005-08-07 14:21:27',1,'2006-02-15 21:30:53'), - (11224,'2005-08-02 12:40:38',3938,181,'2005-08-04 10:02:38',2,'2006-02-15 21:30:53'), - (11225,'2005-08-02 12:43:27',3721,159,'2005-08-04 18:41:27',2,'2006-02-15 21:30:53'), - (11226,'2005-08-02 12:47:30',79,282,'2005-08-06 11:24:30',1,'2006-02-15 21:30:53'), - (11227,'2005-08-02 12:48:05',1101,65,'2005-08-11 14:08:05',1,'2006-02-15 21:30:53'), - (11228,'2005-08-02 12:55:23',2561,144,'2005-08-08 12:31:23',1,'2006-02-15 21:30:53'), - (11229,'2005-08-02 12:56:37',941,332,'2005-08-11 11:13:37',2,'2006-02-15 21:30:53'), - (11230,'2005-08-02 12:59:08',1463,257,'2005-08-04 13:42:08',1,'2006-02-15 21:30:53'), - (11231,'2005-08-02 13:02:11',1100,90,'2005-08-07 10:05:11',2,'2006-02-15 21:30:53'), - (11232,'2005-08-02 13:04:12',971,8,'2005-08-10 15:39:12',1,'2006-02-15 21:30:53'), - (11233,'2005-08-02 13:06:11',2221,266,'2005-08-08 15:02:11',1,'2006-02-15 21:30:53'), - (11234,'2005-08-02 13:12:17',1020,27,'2005-08-05 17:37:17',1,'2006-02-15 21:30:53'), - (11235,'2005-08-02 13:13:21',2501,127,'2005-08-03 07:17:21',1,'2006-02-15 21:30:53'), - (11236,'2005-08-02 13:17:21',145,420,'2005-08-09 09:53:21',2,'2006-02-15 21:30:53'), - (11237,'2005-08-02 13:24:01',2668,426,'2005-08-05 11:41:01',2,'2006-02-15 21:30:53'), - (11238,'2005-08-02 13:25:50',2705,506,'2005-08-08 19:12:50',2,'2006-02-15 21:30:53'), - (11239,'2005-08-02 13:27:11',189,111,'2005-08-03 14:36:11',1,'2006-02-15 21:30:53'), - (11240,'2005-08-02 13:28:30',2170,597,'2005-08-05 11:40:30',1,'2006-02-15 21:30:53'), - (11241,'2005-08-02 13:29:24',3657,543,'2005-08-11 11:36:24',2,'2006-02-15 21:30:53'), - (11242,'2005-08-02 13:32:00',1041,434,'2005-08-10 19:24:00',2,'2006-02-15 21:30:53'), - (11243,'2005-08-02 13:32:48',2517,361,'2005-08-11 18:55:48',1,'2006-02-15 21:30:53'), - (11244,'2005-08-02 13:33:24',3423,142,'2005-08-10 10:18:24',2,'2006-02-15 21:30:53'), - (11245,'2005-08-02 13:33:50',2609,92,'2005-08-04 10:20:50',2,'2006-02-15 21:30:53'), - (11246,'2005-08-02 13:33:56',3577,550,'2005-08-03 08:52:56',2,'2006-02-15 21:30:53'), - (11247,'2005-08-02 13:34:08',1661,441,'2005-08-06 16:23:08',2,'2006-02-15 21:30:53'), - (11248,'2005-08-02 13:35:34',4139,312,'2005-08-03 10:37:34',1,'2006-02-15 21:30:53'), - (11249,'2005-08-02 13:35:40',3394,157,'2005-08-07 11:22:40',1,'2006-02-15 21:30:53'), - (11250,'2005-08-02 13:35:42',2223,279,'2005-08-10 12:32:42',2,'2006-02-15 21:30:53'), - (11251,'2005-08-02 13:40:49',2181,532,'2005-08-09 14:16:49',2,'2006-02-15 21:30:53'), - (11252,'2005-08-02 13:42:13',2410,337,'2005-08-06 19:04:13',2,'2006-02-15 21:30:53'), - (11253,'2005-08-02 13:42:44',2898,303,'2005-08-09 17:06:44',2,'2006-02-15 21:30:53'), - (11254,'2005-08-02 13:43:49',56,315,'2005-08-08 13:16:49',1,'2006-02-15 21:30:53'), - (11255,'2005-08-02 13:44:30',3393,569,'2005-08-03 12:00:30',1,'2006-02-15 21:30:53'), - (11256,'2005-08-02 13:44:53',2060,2,'2005-08-04 16:39:53',1,'2006-02-15 21:30:53'), - (11257,'2005-08-02 13:45:05',105,468,'2005-08-11 16:37:05',1,'2006-02-15 21:30:53'), - (11258,'2005-08-02 13:45:39',1576,242,'2005-08-06 07:57:39',1,'2006-02-15 21:30:53'), - (11259,'2005-08-02 13:46:30',896,330,'2005-08-07 14:03:30',1,'2006-02-15 21:30:53'), - (11260,'2005-08-02 13:52:19',4015,207,'2005-08-06 08:13:19',2,'2006-02-15 21:30:53'), - (11261,'2005-08-02 13:54:26',31,204,'2005-08-10 19:04:26',2,'2006-02-15 21:30:53'), - (11262,'2005-08-02 13:58:55',71,348,'2005-08-05 18:09:55',2,'2006-02-15 21:30:53'), - (11263,'2005-08-02 14:02:19',1189,421,'2005-08-07 14:03:19',2,'2006-02-15 21:30:53'), - (11264,'2005-08-02 14:05:18',3420,360,'2005-08-10 08:46:18',2,'2006-02-15 21:30:53'), - (11265,'2005-08-02 14:05:42',3870,531,'2005-08-11 15:27:42',2,'2006-02-15 21:30:53'), - (11266,'2005-08-02 14:07:35',3972,99,'2005-08-04 13:31:35',1,'2006-02-15 21:30:53'), - (11267,'2005-08-02 14:09:08',2045,244,'2005-08-10 12:33:08',1,'2006-02-15 21:30:53'), - (11268,'2005-08-02 14:10:39',3275,558,'2005-08-04 14:35:39',1,'2006-02-15 21:30:53'), - (11269,'2005-08-02 14:11:41',2398,297,'2005-08-08 18:53:41',1,'2006-02-15 21:30:53'), - (11270,'2005-08-02 14:18:07',1882,418,'2005-08-03 08:20:07',1,'2006-02-15 21:30:53'), - (11271,'2005-08-02 14:18:22',4323,93,'2005-08-07 09:35:22',2,'2006-02-15 21:30:53'), - (11272,'2005-08-02 14:20:27',4111,158,'2005-08-07 12:24:27',2,'2006-02-15 21:30:53'), - (11273,'2005-08-02 14:20:55',3383,541,'2005-08-07 12:57:55',1,'2006-02-15 21:30:53'), - (11274,'2005-08-02 14:24:08',1253,70,'2005-08-11 14:56:08',1,'2006-02-15 21:30:53'), - (11275,'2005-08-02 14:25:58',2838,464,'2005-08-07 11:20:58',1,'2006-02-15 21:30:53'), - (11276,'2005-08-02 14:28:46',4226,190,'2005-08-04 14:00:46',1,'2006-02-15 21:30:53'), - (11277,'2005-08-02 14:28:50',2050,68,'2005-08-04 13:50:50',1,'2006-02-15 21:30:53'), - (11278,'2005-08-02 14:29:43',961,143,'2005-08-07 10:13:43',1,'2006-02-15 21:30:53'), - (11279,'2005-08-02 14:30:03',151,125,'2005-08-10 09:49:03',2,'2006-02-15 21:30:53'), - (11280,'2005-08-02 14:34:33',1846,134,'2005-08-08 15:40:33',2,'2006-02-15 21:30:53'), - (11281,'2005-08-02 14:35:01',2210,137,'2005-08-07 17:28:01',1,'2006-02-15 21:30:53'), - (11282,'2005-08-02 14:35:03',1824,273,'2005-08-03 16:02:03',2,'2006-02-15 21:30:53'), - (11283,'2005-08-02 14:39:46',312,134,'2005-08-05 10:19:46',2,'2006-02-15 21:30:53'), - (11284,'2005-08-02 14:42:45',172,8,'2005-08-04 11:55:45',2,'2006-02-15 21:30:53'), - (11285,'2005-08-02 14:44:02',3849,585,'2005-08-11 16:45:02',2,'2006-02-15 21:30:53'), - (11286,'2005-08-02 14:44:22',1319,207,'2005-08-10 09:01:22',2,'2006-02-15 21:30:53'), - (11287,'2005-08-02 14:49:51',927,55,'2005-08-09 09:19:51',2,'2006-02-15 21:30:53'), - (11288,'2005-08-02 14:54:08',1478,298,'2005-08-11 12:22:08',1,'2006-02-15 21:30:53'), - (11289,'2005-08-02 14:55:00',2869,10,'2005-08-11 13:57:00',1,'2006-02-15 21:30:53'), - (11290,'2005-08-02 14:57:44',425,582,'2005-08-09 19:36:44',2,'2006-02-15 21:30:53'), - (11291,'2005-08-02 14:57:58',491,417,'2005-08-11 09:04:58',2,'2006-02-15 21:30:53'), - (11292,'2005-08-02 14:58:41',210,13,'2005-08-06 14:38:41',2,'2006-02-15 21:30:53'), - (11293,'2005-08-02 15:00:43',1514,475,'2005-08-11 17:49:43',1,'2006-02-15 21:30:53'), - (11294,'2005-08-02 15:08:27',855,411,'2005-08-03 18:28:27',1,'2006-02-15 21:30:53'), - (11295,'2005-08-02 15:10:06',423,67,'2005-08-10 09:52:06',1,'2006-02-15 21:30:53'), - (11296,'2005-08-02 15:15:27',247,154,'2005-08-11 16:12:27',1,'2006-02-15 21:30:53'), - (11297,'2005-08-02 15:22:47',2531,62,'2005-08-11 18:45:47',1,'2006-02-15 21:30:53'), - (11298,'2005-08-02 15:32:32',1663,35,'2005-08-06 20:22:32',1,'2006-02-15 21:30:53'), - (11299,'2005-08-02 15:36:52',3232,1,'2005-08-10 16:40:52',2,'2006-02-15 21:30:53'), - (11300,'2005-08-02 15:37:42',3032,552,'2005-08-11 14:25:42',1,'2006-02-15 21:30:53'), - (11301,'2005-08-02 15:37:59',676,502,'2005-08-04 10:57:59',2,'2006-02-15 21:30:53'), - (11302,'2005-08-02 15:38:03',1918,51,'2005-08-09 10:33:03',2,'2006-02-15 21:30:53'), - (11303,'2005-08-02 15:39:18',1817,417,'2005-08-05 10:59:18',1,'2006-02-15 21:30:53'), - (11304,'2005-08-02 15:40:10',2592,413,'2005-08-06 16:12:10',2,'2006-02-15 21:30:53'), - (11305,'2005-08-02 15:44:55',1690,341,'2005-08-08 16:42:55',2,'2006-02-15 21:30:53'), - (11306,'2005-08-02 15:45:10',13,247,'2005-08-03 21:14:10',2,'2006-02-15 21:30:53'), - (11307,'2005-08-02 15:48:08',1490,15,'2005-08-06 20:33:08',2,'2006-02-15 21:30:53'), - (11308,'2005-08-02 15:50:44',699,16,'2005-08-05 11:38:44',2,'2006-02-15 21:30:53'), - (11309,'2005-08-02 15:50:55',607,275,'2005-08-09 18:28:55',1,'2006-02-15 21:30:53'), - (11310,'2005-08-02 15:51:58',3601,415,'2005-08-07 12:34:58',1,'2006-02-15 21:30:53'), - (11311,'2005-08-02 15:53:48',204,197,'2005-08-03 16:32:48',1,'2006-02-15 21:30:53'), - (11312,'2005-08-02 15:56:51',1093,190,'2005-08-07 20:56:51',2,'2006-02-15 21:30:53'), - (11313,'2005-08-02 16:02:51',2689,419,'2005-08-03 14:54:51',1,'2006-02-15 21:30:53'), - (11314,'2005-08-02 16:04:08',2790,26,'2005-08-04 18:47:08',1,'2006-02-15 21:30:53'), - (11315,'2005-08-02 16:05:17',1116,13,'2005-08-05 16:33:17',1,'2006-02-15 21:30:53'), - (11316,'2005-08-02 16:07:49',521,108,'2005-08-10 13:22:49',1,'2006-02-15 21:30:53'), - (11317,'2005-08-02 16:08:52',1889,502,'2005-08-08 21:12:52',1,'2006-02-15 21:30:53'), - (11318,'2005-08-02 16:09:11',2386,532,'2005-08-07 11:28:11',2,'2006-02-15 21:30:53'), - (11319,'2005-08-02 16:10:09',4069,178,'2005-08-09 11:21:09',2,'2006-02-15 21:30:53'), - (11320,'2005-08-02 16:13:28',3362,550,'2005-08-05 21:23:28',1,'2006-02-15 21:30:53'), - (11321,'2005-08-02 16:15:07',205,266,'2005-08-04 20:35:07',2,'2006-02-15 21:30:53'), - (11322,'2005-08-02 16:23:17',761,418,'2005-08-09 19:55:17',2,'2006-02-15 21:30:53'), - (11323,'2005-08-02 16:29:57',3784,419,'2005-08-06 16:01:57',1,'2006-02-15 21:30:53'), - (11324,'2005-08-02 16:31:17',2900,540,'2005-08-08 15:38:17',2,'2006-02-15 21:30:53'), - (11325,'2005-08-02 16:33:11',4514,422,'2005-08-08 13:42:11',1,'2006-02-15 21:30:53'), - (11326,'2005-08-02 16:34:29',1762,530,'2005-08-03 17:40:29',2,'2006-02-15 21:30:53'), - (11327,'2005-08-02 16:40:47',773,361,'2005-08-03 22:13:47',1,'2006-02-15 21:30:53'), - (11328,'2005-08-02 16:42:38',2031,219,'2005-08-04 21:02:38',1,'2006-02-15 21:30:53'), - (11329,'2005-08-02 16:42:52',2677,399,'2005-08-08 16:45:52',1,'2006-02-15 21:30:53'), - (11330,'2005-08-02 16:45:33',4326,75,'2005-08-04 15:15:33',2,'2006-02-15 21:30:53'), - (11331,'2005-08-02 16:49:01',3789,568,'2005-08-09 19:15:01',1,'2006-02-15 21:30:53'), - (11332,'2005-08-02 16:52:57',2381,467,'2005-08-04 14:13:57',1,'2006-02-15 21:30:53'), - (11333,'2005-08-02 16:53:00',3335,225,'2005-08-07 20:49:00',2,'2006-02-15 21:30:53'), - (11334,'2005-08-02 16:53:20',1504,560,'2005-08-11 20:47:20',1,'2006-02-15 21:30:53'), - (11335,'2005-08-02 16:57:37',2968,157,'2005-08-09 19:43:37',1,'2006-02-15 21:30:53'), - (11336,'2005-08-02 16:58:56',1949,473,'2005-08-06 16:56:56',1,'2006-02-15 21:30:53'), - (11337,'2005-08-02 16:59:09',3428,366,'2005-08-10 20:41:09',2,'2006-02-15 21:30:53'), - (11338,'2005-08-02 17:00:12',3689,26,'2005-08-03 18:54:12',1,'2006-02-15 21:30:53'), - (11339,'2005-08-02 17:02:06',705,263,'2005-08-08 21:12:06',1,'2006-02-15 21:30:53'), - (11340,'2005-08-02 17:05:43',1403,366,'2005-08-09 13:25:43',1,'2006-02-15 21:30:53'), - (11341,'2005-08-02 17:09:24',3586,15,'2005-08-09 19:48:24',2,'2006-02-15 21:30:53'), - (11342,'2005-08-02 17:11:35',4251,179,'2005-08-07 15:04:35',1,'2006-02-15 21:30:53'), - (11343,'2005-08-02 17:12:30',564,466,'2005-08-09 12:08:30',1,'2006-02-15 21:30:53'), - (11344,'2005-08-02 17:13:26',365,38,'2005-08-07 16:44:26',1,'2006-02-15 21:30:53'), - (11345,'2005-08-02 17:14:19',1895,405,'2005-08-11 14:02:19',2,'2006-02-15 21:30:53'), - (11346,'2005-08-02 17:15:38',584,100,'2005-08-04 13:31:38',2,'2006-02-15 21:30:53'), - (11347,'2005-08-02 17:18:07',195,217,'2005-08-05 12:30:07',1,'2006-02-15 21:30:53'), - (11348,'2005-08-02 17:18:38',1704,389,'2005-08-06 16:11:38',2,'2006-02-15 21:30:53'), - (11349,'2005-08-02 17:21:49',1871,73,'2005-08-06 18:40:49',1,'2006-02-15 21:30:53'), - (11350,'2005-08-02 17:22:59',1265,598,'2005-08-09 19:56:59',2,'2006-02-15 21:30:53'), - (11351,'2005-08-02 17:28:07',242,198,'2005-08-09 21:55:07',1,'2006-02-15 21:30:53'), - (11352,'2005-08-02 17:29:39',2760,546,'2005-08-10 15:31:39',1,'2006-02-15 21:30:53'), - (11353,'2005-08-02 17:34:45',1729,444,'2005-08-09 16:01:45',1,'2006-02-15 21:30:53'), - (11354,'2005-08-02 17:35:10',1887,569,'2005-08-09 12:07:10',2,'2006-02-15 21:30:53'), - (11355,'2005-08-02 17:37:43',2673,185,'2005-08-05 19:59:43',1,'2006-02-15 21:30:53'), - (11356,'2005-08-02 17:42:40',303,200,'2005-08-11 23:29:40',1,'2006-02-15 21:30:53'), - (11357,'2005-08-02 17:42:49',2644,148,'2005-08-11 18:14:49',1,'2006-02-15 21:30:53'), - (11358,'2005-08-02 17:45:02',2361,56,'2005-08-11 18:16:02',1,'2006-02-15 21:30:53'), - (11359,'2005-08-02 17:45:55',1648,466,'2005-08-10 20:53:55',2,'2006-02-15 21:30:53'), - (11360,'2005-08-02 17:46:04',1750,66,'2005-08-04 21:02:04',2,'2006-02-15 21:30:53'), - (11361,'2005-08-02 17:46:34',1124,547,'2005-08-03 15:21:34',1,'2006-02-15 21:30:53'), - (11362,'2005-08-02 17:47:25',2628,331,'2005-08-07 20:14:25',1,'2006-02-15 21:30:53'), - (11363,'2005-08-02 17:48:39',3190,274,'2005-08-05 17:20:39',1,'2006-02-15 21:30:53'), - (11364,'2005-08-02 17:53:36',4515,44,'2005-08-03 14:16:36',1,'2006-02-15 21:30:53'), - (11365,'2005-08-02 18:00:09',1151,508,'2005-08-04 13:40:09',2,'2006-02-15 21:30:53'), - (11366,'2005-08-02 18:01:25',3583,280,'2005-08-11 15:02:25',1,'2006-02-15 21:30:53'), - (11367,'2005-08-02 18:01:38',1440,1,'2005-08-04 13:19:38',1,'2006-02-15 21:30:53'), - (11368,'2005-08-02 18:03:05',866,153,'2005-08-07 20:40:05',1,'2006-02-15 21:30:53'), - (11369,'2005-08-02 18:04:41',2480,480,'2005-08-09 18:41:41',1,'2006-02-15 21:30:53'), - (11370,'2005-08-02 18:06:01',3077,146,'2005-08-04 15:10:01',1,'2006-02-15 21:30:53'), - (11371,'2005-08-02 18:07:36',324,561,'2005-08-06 17:52:36',1,'2006-02-15 21:30:53'), - (11372,'2005-08-02 18:10:50',796,327,'2005-08-07 17:58:50',1,'2006-02-15 21:30:53'), - (11373,'2005-08-02 18:14:12',181,267,'2005-08-06 23:37:12',1,'2006-02-15 21:30:53'), - (11374,'2005-08-02 18:14:54',2805,424,'2005-08-04 18:22:54',1,'2006-02-15 21:30:53'), - (11375,'2005-08-02 18:14:56',1064,346,'2005-08-08 23:29:56',1,'2006-02-15 21:30:53'), - (11376,'2005-08-02 18:16:00',2530,177,'2005-08-11 23:38:00',2,'2006-02-15 21:30:53'), - (11377,'2005-08-02 18:16:47',3334,119,'2005-08-08 13:46:47',1,'2006-02-15 21:30:53'), - (11378,'2005-08-02 18:16:52',3824,188,'2005-08-03 14:25:52',1,'2006-02-15 21:30:53'), - (11379,'2005-08-02 18:16:55',251,61,'2005-08-07 18:12:55',1,'2006-02-15 21:30:53'), - (11380,'2005-08-02 18:17:32',1046,551,'2005-08-03 19:26:32',2,'2006-02-15 21:30:53'), - (11381,'2005-08-02 18:19:29',993,451,'2005-08-08 20:39:29',2,'2006-02-15 21:30:53'), - (11382,'2005-08-02 18:20:52',3848,407,'2005-08-07 17:06:52',1,'2006-02-15 21:30:53'), - (11383,'2005-08-02 18:22:05',257,445,'2005-08-11 17:18:05',1,'2006-02-15 21:30:53'), - (11384,'2005-08-02 18:23:01',2840,225,'2005-08-05 17:59:01',1,'2006-02-15 21:30:53'), - (11385,'2005-08-02 18:23:11',2478,192,'2005-08-06 12:37:11',1,'2006-02-15 21:30:53'), - (11386,'2005-08-02 18:24:03',519,183,'2005-08-06 21:22:03',1,'2006-02-15 21:30:53'), - (11387,'2005-08-02 18:32:38',2491,481,'2005-08-07 19:08:38',2,'2006-02-15 21:30:53'), - (11388,'2005-08-02 18:35:55',477,369,'2005-08-09 21:56:55',1,'2006-02-15 21:30:53'), - (11389,'2005-08-02 18:39:12',3267,270,'2005-08-03 23:23:12',2,'2006-02-15 21:30:53'), - (11390,'2005-08-02 18:39:16',3135,294,'2005-08-04 21:43:16',1,'2006-02-15 21:30:53'), - (11391,'2005-08-02 18:40:12',2039,403,'2005-08-10 15:55:12',1,'2006-02-15 21:30:53'), - (11392,'2005-08-02 18:41:11',261,146,'2005-08-11 21:41:11',1,'2006-02-15 21:30:53'), - (11393,'2005-08-02 18:44:29',1033,501,'2005-08-11 23:58:29',1,'2006-02-15 21:30:53'), - (11394,'2005-08-02 18:44:45',2087,257,'2005-08-06 22:51:45',2,'2006-02-15 21:30:53'), - (11395,'2005-08-02 18:47:44',4234,225,'2005-08-10 17:07:44',2,'2006-02-15 21:30:53'), - (11396,'2005-08-02 18:48:29',1155,59,'2005-08-04 16:05:29',2,'2006-02-15 21:30:53'), - (11397,'2005-08-02 18:53:14',2566,470,'2005-08-09 18:09:14',1,'2006-02-15 21:30:53'), - (11398,'2005-08-02 18:55:15',3952,6,'2005-08-10 19:50:15',2,'2006-02-15 21:30:53'), - (11399,'2005-08-02 18:56:28',2094,565,'2005-08-11 23:19:28',1,'2006-02-15 21:30:53'), - (11400,'2005-08-02 19:00:52',3150,9,'2005-08-09 19:45:52',2,'2006-02-15 21:30:53'), - (11401,'2005-08-02 19:05:06',1799,544,'2005-08-09 22:34:06',1,'2006-02-15 21:30:53'), - (11402,'2005-08-02 19:07:21',3291,561,'2005-08-07 20:59:21',1,'2006-02-15 21:30:53'), - (11403,'2005-08-02 19:10:21',4072,587,'2005-08-04 00:44:21',2,'2006-02-15 21:30:53'), - (11404,'2005-08-02 19:12:40',3285,60,'2005-08-11 22:38:40',2,'2006-02-15 21:30:53'), - (11405,'2005-08-02 19:13:39',418,10,'2005-08-07 19:19:39',2,'2006-02-15 21:30:53'), - (11406,'2005-08-02 19:16:10',2502,525,'2005-08-04 20:51:10',2,'2006-02-15 21:30:53'), - (11407,'2005-08-02 19:18:43',3437,513,'2005-08-08 16:15:43',2,'2006-02-15 21:30:53'), - (11408,'2005-08-02 19:25:13',1779,83,'2005-08-06 17:12:13',1,'2006-02-15 21:30:53'), - (11409,'2005-08-02 19:26:51',3691,418,'2005-08-07 19:55:51',1,'2006-02-15 21:30:53'), - (11410,'2005-08-02 19:29:01',692,592,'2005-08-11 16:50:01',1,'2006-02-15 21:30:53'), - (11411,'2005-08-02 19:29:47',1497,141,'2005-08-09 16:27:47',2,'2006-02-15 21:30:53'), - (11412,'2005-08-02 19:32:51',2271,141,'2005-08-11 22:16:51',1,'2006-02-15 21:30:53'), - (11413,'2005-08-02 19:35:19',1115,297,'2005-08-05 21:33:19',2,'2006-02-15 21:30:53'), - (11414,'2005-08-02 19:43:07',1772,353,'2005-08-07 15:22:07',2,'2006-02-15 21:30:53'), - (11415,'2005-08-02 19:43:38',2197,572,'2005-08-10 15:13:38',1,'2006-02-15 21:30:53'), - (11416,'2005-08-02 19:44:04',1848,58,'2005-08-11 15:30:04',1,'2006-02-15 21:30:53'), - (11417,'2005-08-02 19:44:46',3083,437,'2005-08-11 21:43:46',2,'2006-02-15 21:30:53'), - (11418,'2005-08-02 19:45:33',4490,91,'2005-08-06 17:40:33',1,'2006-02-15 21:30:53'), - (11419,'2005-08-02 19:46:38',514,444,'2005-08-11 14:49:38',1,'2006-02-15 21:30:53'), - (11420,'2005-08-02 19:47:56',3928,158,'2005-08-05 21:48:56',2,'2006-02-15 21:30:53'), - (11421,'2005-08-02 19:51:53',3361,473,'2005-08-12 00:50:53',2,'2006-02-15 21:30:53'), - (11422,'2005-08-02 19:52:08',342,72,'2005-08-11 18:40:08',2,'2006-02-15 21:30:53'), - (11423,'2005-08-02 19:57:13',3431,241,'2005-08-06 00:54:13',2,'2006-02-15 21:30:53'), - (11424,'2005-08-02 19:57:42',1030,84,'2005-08-10 16:57:42',2,'2006-02-15 21:30:53'), - (11425,'2005-08-02 19:58:48',989,419,'2005-08-03 19:30:48',2,'2006-02-15 21:30:53'), - (11426,'2005-08-02 20:00:09',130,572,'2005-08-09 01:30:09',2,'2006-02-15 21:30:53'), - (11427,'2005-08-02 20:02:39',3287,403,'2005-08-04 22:26:39',2,'2006-02-15 21:30:53'), - (11428,'2005-08-02 20:03:10',722,326,'2005-08-04 01:55:10',1,'2006-02-15 21:30:53'), - (11429,'2005-08-02 20:03:52',1098,348,'2005-08-10 16:38:52',2,'2006-02-15 21:30:53'), - (11430,'2005-08-02 20:04:36',2258,140,'2005-08-08 19:43:36',1,'2006-02-15 21:30:53'), - (11431,'2005-08-02 20:05:16',1409,271,'2005-08-04 00:05:16',2,'2006-02-15 21:30:53'), - (11432,'2005-08-02 20:10:01',959,540,'2005-08-07 01:28:01',1,'2006-02-15 21:30:53'), - (11433,'2005-08-02 20:13:10',1,518,'2005-08-11 21:35:10',1,'2006-02-15 21:30:53'), - (11434,'2005-08-02 20:13:14',3154,391,'2005-08-05 15:01:14',1,'2006-02-15 21:30:53'), - (11435,'2005-08-02 20:14:23',1625,502,'2005-08-05 20:40:23',1,'2006-02-15 21:30:53'), - (11436,'2005-08-02 20:16:06',3834,106,'2005-08-05 20:40:06',2,'2006-02-15 21:30:53'), - (11437,'2005-08-02 20:20:06',2679,225,'2005-08-05 22:17:06',2,'2006-02-15 21:30:53'), - (11438,'2005-08-02 20:21:08',1040,372,'2005-08-10 22:12:08',1,'2006-02-15 21:30:53'), - (11439,'2005-08-02 20:22:45',2897,18,'2005-08-04 18:30:45',1,'2006-02-15 21:30:53'), - (11440,'2005-08-02 20:24:02',2727,306,'2005-08-07 16:42:02',2,'2006-02-15 21:30:53'), - (11441,'2005-08-02 20:25:41',1027,389,'2005-08-05 00:05:41',2,'2006-02-15 21:30:53'), - (11442,'2005-08-02 20:26:19',2598,208,'2005-08-07 00:33:19',2,'2006-02-15 21:30:53'), - (11443,'2005-08-02 20:29:30',1291,581,'2005-08-07 01:08:30',2,'2006-02-15 21:30:53'), - (11444,'2005-08-02 20:32:55',1419,28,'2005-08-08 23:21:55',2,'2006-02-15 21:30:53'), - (11445,'2005-08-02 20:33:35',3340,108,'2005-08-08 16:02:35',2,'2006-02-15 21:30:53'), - (11446,'2005-08-02 20:33:37',748,342,'2005-08-03 18:22:37',1,'2006-02-15 21:30:53'), - (11447,'2005-08-02 20:36:25',3868,508,'2005-08-07 18:52:25',1,'2006-02-15 21:30:53'), - (11448,'2005-08-02 20:44:33',1185,496,'2005-08-05 22:58:33',2,'2006-02-15 21:30:53'), - (11449,'2005-08-02 20:44:43',3279,443,'2005-08-07 23:47:43',2,'2006-02-15 21:30:53'), - (11450,'2005-08-02 20:45:54',2009,214,'2005-08-08 17:17:54',2,'2006-02-15 21:30:53'), - (11451,'2005-08-02 20:45:56',776,515,'2005-08-06 21:42:56',2,'2006-02-15 21:30:53'), - (11452,'2005-08-02 20:59:52',1245,35,'2005-08-12 01:16:52',1,'2006-02-15 21:30:53'), - (11453,'2005-08-02 21:00:05',4578,84,'2005-08-08 22:03:05',2,'2006-02-15 21:30:53'), - (11454,'2005-08-02 21:04:39',2901,199,'2005-08-05 19:03:39',1,'2006-02-15 21:30:53'), - (11455,'2005-08-02 21:07:06',2000,498,'2005-08-12 01:21:06',1,'2006-02-15 21:30:53'), - (11456,'2005-08-02 21:14:04',3638,322,'2005-08-07 19:49:04',2,'2006-02-15 21:30:53'), - (11457,'2005-08-02 21:14:16',1642,379,'2005-08-10 02:39:16',2,'2006-02-15 21:30:53'), - (11458,'2005-08-02 21:24:02',3514,575,'2005-08-04 01:32:02',2,'2006-02-15 21:30:53'), - (11459,'2005-08-02 21:25:25',3730,392,'2005-08-04 19:57:25',2,'2006-02-15 21:30:53'), - (11460,'2005-08-02 21:28:03',4113,403,'2005-08-08 18:24:03',1,'2006-02-15 21:30:53'), - (11461,'2005-08-02 21:35:00',4343,65,'2005-08-05 01:34:00',1,'2006-02-15 21:30:53'), - (11462,'2005-08-02 21:36:46',167,268,'2005-08-10 01:48:46',1,'2006-02-15 21:30:53'), - (11463,'2005-08-02 21:37:36',1944,138,'2005-08-08 03:11:36',2,'2006-02-15 21:30:53'), - (11464,'2005-08-02 21:42:07',538,577,'2005-08-03 21:44:07',2,'2006-02-15 21:30:53'), - (11465,'2005-08-02 21:43:52',2190,447,'2005-08-10 22:24:52',1,'2006-02-15 21:30:53'), - (11466,'2005-08-02 21:46:46',3363,556,'2005-08-06 01:42:46',1,'2006-02-15 21:30:53'), - (11467,'2005-08-02 21:47:07',246,117,'2005-08-09 00:50:07',1,'2006-02-15 21:30:53'), - (11468,'2005-08-02 21:47:26',3168,413,'2005-08-05 02:30:26',2,'2006-02-15 21:30:53'), - (11469,'2005-08-02 21:48:09',230,77,'2005-08-06 18:37:09',1,'2006-02-15 21:30:53'), - (11470,'2005-08-02 21:48:28',2379,346,'2005-08-05 23:58:28',2,'2006-02-15 21:30:53'), - (11471,'2005-08-02 21:49:03',3378,355,'2005-08-08 00:17:03',1,'2006-02-15 21:30:53'), - (11472,'2005-08-02 21:49:06',1829,410,'2005-08-11 20:17:06',1,'2006-02-15 21:30:53'), - (11473,'2005-08-02 21:52:03',620,536,'2005-08-09 02:01:03',1,'2006-02-15 21:30:53'), - (11474,'2005-08-02 21:53:08',574,214,'2005-08-05 22:36:08',1,'2006-02-15 21:30:53'), - (11475,'2005-08-02 21:55:09',3687,194,'2005-08-09 20:28:09',2,'2006-02-15 21:30:53'), - (11476,'2005-08-02 22:03:47',724,144,'2005-08-09 02:19:47',1,'2006-02-15 21:30:53'), - (11477,'2005-08-02 22:09:01',1671,47,'2005-08-07 03:46:01',2,'2006-02-15 21:30:53'), - (11478,'2005-08-02 22:09:05',3932,197,'2005-08-04 18:02:05',1,'2006-02-15 21:30:53'), - (11479,'2005-08-02 22:18:13',4077,237,'2005-08-12 00:43:13',1,'2006-02-15 21:30:53'), - (11480,'2005-08-02 22:18:24',4161,14,'2005-08-04 21:22:24',2,'2006-02-15 21:30:53'), - (11481,'2005-08-02 22:18:41',4028,234,'2005-08-09 23:43:41',2,'2006-02-15 21:30:53'), - (11482,'2005-08-02 22:24:31',1400,134,'2005-08-04 01:48:31',1,'2006-02-15 21:30:53'), - (11483,'2005-08-02 22:28:22',1586,45,'2005-08-11 18:06:22',1,'2006-02-15 21:30:53'), - (11484,'2005-08-02 22:28:23',330,165,'2005-08-04 20:51:23',2,'2006-02-15 21:30:53'), - (11485,'2005-08-02 22:33:25',1872,326,'2005-08-04 23:26:25',2,'2006-02-15 21:30:53'), - (11486,'2005-08-02 22:34:06',1610,236,'2005-08-09 00:46:06',2,'2006-02-15 21:30:53'), - (11487,'2005-08-02 22:35:05',734,239,'2005-08-08 00:54:05',2,'2006-02-15 21:30:53'), - (11488,'2005-08-02 22:35:15',2520,45,'2005-08-09 00:28:15',2,'2006-02-15 21:30:53'), - (11489,'2005-08-02 22:35:28',3001,474,'2005-08-04 00:29:28',2,'2006-02-15 21:30:53'), - (11490,'2005-08-02 22:36:00',1178,156,'2005-08-09 16:36:00',1,'2006-02-15 21:30:53'), - (11491,'2005-08-02 22:44:50',268,307,'2005-08-11 01:55:50',2,'2006-02-15 21:30:53'), - (11492,'2005-08-02 22:46:47',4037,349,'2005-08-09 19:54:47',2,'2006-02-15 21:30:53'), - (11493,'2005-08-02 22:47:00',3375,124,'2005-08-10 20:53:00',2,'2006-02-15 21:30:53'), - (11494,'2005-08-02 22:51:23',3994,579,'2005-08-09 01:52:23',1,'2006-02-15 21:30:53'), - (11495,'2005-08-16 22:51:20',1265,247,'2005-08-23 00:44:20',1,'2006-02-15 21:30:53'), - (11496,'2006-02-14 15:16:03',2047,155,NULL,1,'2006-02-15 21:30:53'), - (11497,'2005-08-16 22:52:30',436,12,'2005-08-21 19:52:30',1,'2006-02-15 21:30:53'), - (11498,'2005-08-16 22:52:54',487,482,'2005-08-25 03:27:54',2,'2006-02-15 21:30:53'), - (11499,'2005-08-16 22:54:12',3857,172,'2005-08-24 03:37:12',2,'2006-02-15 21:30:53'), - (11500,'2005-08-16 23:01:22',4003,584,'2005-08-24 22:54:22',1,'2006-02-15 21:30:53'), - (11501,'2005-08-16 23:04:53',2147,23,'2005-08-19 20:57:53',2,'2006-02-15 21:30:53'), - (11502,'2005-08-16 23:06:30',4470,11,'2005-08-19 03:49:30',1,'2006-02-15 21:30:53'), - (11503,'2005-08-16 23:10:34',1496,526,'2005-08-25 03:55:34',1,'2006-02-15 21:30:53'), - (11504,'2005-08-16 23:16:46',2132,350,'2005-08-18 20:49:46',2,'2006-02-15 21:30:53'), - (11505,'2005-08-16 23:18:47',3344,34,'2005-08-23 19:52:47',2,'2006-02-15 21:30:53'), - (11506,'2005-08-16 23:25:48',1529,565,'2005-08-22 18:17:48',1,'2006-02-15 21:30:53'), - (11507,'2005-08-16 23:26:43',4197,236,'2005-08-24 22:48:43',2,'2006-02-15 21:30:53'), - (11508,'2005-08-16 23:27:36',2688,19,'2005-08-25 01:34:36',2,'2006-02-15 21:30:53'), - (11509,'2005-08-16 23:29:53',2750,273,'2005-08-19 02:09:53',1,'2006-02-15 21:30:53'), - (11510,'2005-08-16 23:30:07',2997,400,'2005-08-25 17:35:07',1,'2006-02-15 21:30:53'), - (11511,'2005-08-16 23:39:59',2127,397,'2005-08-18 18:04:59',1,'2006-02-15 21:30:53'), - (11512,'2005-08-16 23:51:06',1248,373,'2005-08-26 02:06:06',2,'2006-02-15 21:30:53'), - (11513,'2005-08-16 23:51:33',4473,499,'2005-08-24 01:37:33',2,'2006-02-15 21:30:53'), - (11514,'2005-08-16 23:53:10',4240,423,'2005-08-23 22:04:10',1,'2006-02-15 21:30:53'), - (11515,'2005-08-16 23:54:34',1053,279,'2005-08-21 19:00:34',1,'2006-02-15 21:30:53'), - (11516,'2005-08-16 23:54:47',1860,90,'2005-08-17 20:05:47',1,'2006-02-15 21:30:53'), - (11517,'2005-08-16 23:56:28',4266,280,'2005-08-21 22:40:28',1,'2006-02-15 21:30:53'), - (11518,'2005-08-16 23:59:49',3297,407,'2005-08-17 22:51:49',2,'2006-02-15 21:30:53'), - (11519,'2005-08-17 00:01:27',1034,381,'2005-08-19 04:54:27',2,'2006-02-15 21:30:53'), - (11520,'2005-08-17 00:04:28',3536,119,'2005-08-26 02:03:28',1,'2006-02-15 21:30:53'), - (11521,'2005-08-17 00:04:54',463,229,'2005-08-21 00:57:54',1,'2006-02-15 21:30:53'), - (11522,'2005-08-17 00:05:05',2033,599,'2005-08-24 04:56:05',1,'2006-02-15 21:30:53'), - (11523,'2005-08-17 00:10:10',1329,421,'2005-08-24 22:39:10',1,'2006-02-15 21:30:53'), - (11524,'2005-08-17 00:10:55',317,533,'2005-08-23 05:30:55',1,'2006-02-15 21:30:53'), - (11525,'2005-08-17 00:15:31',1107,174,'2005-08-20 21:14:31',1,'2006-02-15 21:30:53'), - (11526,'2005-08-17 00:17:38',2419,572,'2005-08-18 03:59:38',2,'2006-02-15 21:30:53'), - (11527,'2005-08-17 00:25:06',162,264,'2005-08-22 21:13:06',1,'2006-02-15 21:30:53'), - (11528,'2005-08-17 00:27:23',893,14,'2005-08-22 06:12:23',2,'2006-02-15 21:30:53'), - (11529,'2005-08-17 00:28:01',3071,4,'2005-08-19 04:47:01',2,'2006-02-15 21:30:53'), - (11530,'2005-08-17 00:29:00',365,400,'2005-08-22 03:22:00',1,'2006-02-15 21:30:53'), - (11531,'2005-08-17 00:30:04',1817,278,'2005-08-20 01:12:04',2,'2006-02-15 21:30:53'), - (11532,'2005-08-17 00:34:14',1947,413,'2005-08-22 19:37:14',2,'2006-02-15 21:30:53'), - (11533,'2005-08-17 00:34:53',4252,264,'2005-08-22 06:10:53',1,'2006-02-15 21:30:53'), - (11534,'2005-08-17 00:35:27',2414,144,'2005-08-24 01:36:27',1,'2006-02-15 21:30:53'), - (11535,'2005-08-17 00:39:54',1649,356,'2005-08-24 20:46:54',2,'2006-02-15 21:30:53'), - (11536,'2005-08-17 00:40:03',2735,428,'2005-08-21 19:11:03',1,'2006-02-15 21:30:53'), - (11537,'2005-08-17 00:41:08',190,474,'2005-08-19 00:25:08',2,'2006-02-15 21:30:53'), - (11538,'2005-08-17 00:44:04',554,431,'2005-08-18 03:43:04',2,'2006-02-15 21:30:53'), - (11539,'2005-08-17 00:45:41',2064,264,'2005-08-19 06:03:41',1,'2006-02-15 21:30:53'), - (11540,'2005-08-17 00:48:03',3385,370,'2005-08-25 03:46:03',1,'2006-02-15 21:30:53'), - (11541,'2006-02-14 15:16:03',2026,335,NULL,1,'2006-02-15 21:30:53'), - (11542,'2005-08-17 00:51:32',2155,7,'2005-08-24 20:29:32',2,'2006-02-15 21:30:53'), - (11543,'2005-08-17 00:54:28',2860,238,'2005-08-25 04:31:28',2,'2006-02-15 21:30:53'), - (11544,'2005-08-17 00:55:07',836,439,'2005-08-22 19:25:07',1,'2006-02-15 21:30:53'), - (11545,'2005-08-17 00:56:06',3198,257,'2005-08-25 22:47:06',1,'2006-02-15 21:30:53'), - (11546,'2005-08-17 00:57:36',2522,24,'2005-08-18 23:16:36',1,'2006-02-15 21:30:53'), - (11547,'2005-08-17 00:59:24',737,114,'2005-08-20 04:03:24',2,'2006-02-15 21:30:53'), - (11548,'2005-08-17 00:59:47',480,323,'2005-08-22 05:09:47',1,'2006-02-15 21:30:53'), - (11549,'2005-08-17 01:01:48',945,402,'2005-08-19 21:24:48',2,'2006-02-15 21:30:53'), - (11550,'2005-08-17 01:02:06',2972,339,'2005-08-22 21:44:06',1,'2006-02-15 21:30:53'), - (11551,'2005-08-17 01:03:49',3356,168,'2005-08-18 22:31:49',1,'2006-02-15 21:30:53'), - (11552,'2005-08-17 01:04:29',1143,230,'2005-08-23 23:07:29',1,'2006-02-15 21:30:53'), - (11553,'2005-08-17 01:04:31',3317,360,'2005-08-24 00:44:31',1,'2006-02-15 21:30:53'), - (11554,'2005-08-17 01:05:17',2212,460,'2005-08-20 06:20:17',2,'2006-02-15 21:30:53'), - (11555,'2005-08-17 01:08:59',2569,372,'2005-08-18 06:09:59',2,'2006-02-15 21:30:53'), - (11556,'2005-08-17 01:11:53',373,9,'2005-08-18 23:41:53',1,'2006-02-15 21:30:53'), - (11557,'2005-08-17 01:19:20',2376,416,'2005-08-24 02:25:20',1,'2006-02-15 21:30:53'), - (11558,'2005-08-17 01:19:52',1681,403,'2005-08-19 00:47:52',2,'2006-02-15 21:30:53'), - (11559,'2005-08-17 01:20:26',1812,385,'2005-08-24 03:11:26',1,'2006-02-15 21:30:53'), - (11560,'2005-08-17 01:20:30',2316,320,'2005-08-18 04:29:30',2,'2006-02-15 21:30:53'), - (11561,'2005-08-17 01:23:09',189,149,'2005-08-23 21:02:09',2,'2006-02-15 21:30:53'), - (11562,'2005-08-17 01:23:39',2992,424,'2005-08-26 06:16:39',1,'2006-02-15 21:30:53'), - (11563,'2006-02-14 15:16:03',1545,83,NULL,1,'2006-02-15 21:30:53'), - (11564,'2005-08-17 01:27:49',2237,332,'2005-08-19 22:07:49',1,'2006-02-15 21:30:53'), - (11565,'2005-08-17 01:28:05',173,83,'2005-08-23 23:33:05',2,'2006-02-15 21:30:53'), - (11566,'2005-08-17 01:28:35',4020,520,'2005-08-20 22:42:35',1,'2006-02-15 21:30:53'), - (11567,'2005-08-17 01:28:43',567,558,'2005-08-24 20:20:43',2,'2006-02-15 21:30:53'), - (11568,'2005-08-17 01:30:01',183,342,'2005-08-18 22:21:01',2,'2006-02-15 21:30:53'), - (11569,'2005-08-17 01:31:04',2592,504,'2005-08-24 03:36:04',2,'2006-02-15 21:30:53'), - (11570,'2005-08-17 01:34:32',2466,343,'2005-08-24 05:47:32',1,'2006-02-15 21:30:53'), - (11571,'2005-08-17 01:37:51',203,296,'2005-08-17 20:30:51',1,'2006-02-15 21:30:53'), - (11572,'2005-08-17 01:37:55',3512,515,'2005-08-19 06:22:55',2,'2006-02-15 21:30:53'), - (11573,'2005-08-17 01:38:18',639,146,'2005-08-19 05:06:18',2,'2006-02-15 21:30:53'), - (11574,'2005-08-17 01:38:19',3596,277,'2005-08-18 20:30:19',2,'2006-02-15 21:30:53'), - (11575,'2005-08-17 01:50:26',1725,319,'2005-08-18 00:43:26',1,'2006-02-15 21:30:53'), - (11576,'2005-08-17 01:53:20',327,293,'2005-08-19 00:15:20',1,'2006-02-15 21:30:53'), - (11577,'2006-02-14 15:16:03',4106,219,NULL,2,'2006-02-15 21:30:53'), - (11578,'2005-08-17 01:54:13',192,590,'2005-08-26 02:00:13',2,'2006-02-15 21:30:53'), - (11579,'2005-08-17 01:57:49',4256,356,'2005-08-22 02:42:49',1,'2006-02-15 21:30:53'), - (11580,'2005-08-17 01:59:07',1346,436,'2005-08-21 06:18:07',2,'2006-02-15 21:30:53'), - (11581,'2005-08-17 02:03:02',1249,231,'2005-08-24 03:53:02',2,'2006-02-15 21:30:53'), - (11582,'2005-08-17 02:03:49',2115,339,'2005-08-24 03:29:49',1,'2006-02-15 21:30:53'), - (11583,'2005-08-17 02:08:13',133,542,'2005-08-20 23:13:13',2,'2006-02-15 21:30:53'), - (11584,'2005-08-17 02:13:26',3906,479,'2005-08-22 01:24:26',2,'2006-02-15 21:30:53'), - (11585,'2005-08-17 02:14:36',753,297,'2005-08-20 07:37:36',2,'2006-02-15 21:30:53'), - (11586,'2005-08-17 02:20:42',3140,465,'2005-08-26 05:01:42',1,'2006-02-15 21:30:53'), - (11587,'2005-08-17 02:21:03',1319,156,'2005-08-25 21:02:03',2,'2006-02-15 21:30:53'), - (11588,'2005-08-17 02:26:23',2480,565,'2005-08-22 02:32:23',1,'2006-02-15 21:30:53'), - (11589,'2005-08-17 02:28:22',3480,554,'2005-08-25 00:08:22',1,'2006-02-15 21:30:53'), - (11590,'2005-08-17 02:28:33',3600,491,'2005-08-20 03:13:33',1,'2006-02-15 21:30:53'), - (11591,'2005-08-17 02:29:41',1670,6,'2005-08-23 20:47:41',1,'2006-02-15 21:30:53'), - (11592,'2005-08-17 02:36:04',720,383,'2005-08-19 00:31:04',1,'2006-02-15 21:30:53'), - (11593,'2006-02-14 15:16:03',817,99,NULL,1,'2006-02-15 21:30:53'), - (11594,'2005-08-17 02:47:02',319,198,'2005-08-22 05:14:02',2,'2006-02-15 21:30:53'), - (11595,'2005-08-17 02:53:14',466,350,'2005-08-26 02:05:14',1,'2006-02-15 21:30:53'), - (11596,'2005-08-17 02:53:55',1674,290,'2005-08-26 02:19:55',1,'2006-02-15 21:30:53'), - (11597,'2005-08-17 03:02:56',4073,272,'2005-08-26 04:47:56',1,'2006-02-15 21:30:53'), - (11598,'2005-08-17 03:03:07',1949,319,'2005-08-22 21:05:07',2,'2006-02-15 21:30:53'), - (11599,'2005-08-17 03:08:10',3749,112,'2005-08-25 05:01:10',2,'2006-02-15 21:30:53'), - (11600,'2005-08-17 03:12:04',1978,400,'2005-08-23 07:10:04',1,'2006-02-15 21:30:53'), - (11601,'2005-08-17 03:14:47',1098,471,'2005-08-20 00:21:47',2,'2006-02-15 21:30:53'), - (11602,'2005-08-17 03:21:19',2082,391,'2005-08-19 05:23:19',1,'2006-02-15 21:30:53'), - (11603,'2005-08-17 03:22:10',3910,406,'2005-08-18 06:48:10',1,'2006-02-15 21:30:53'), - (11604,'2005-08-17 03:28:27',1820,388,'2005-08-19 05:38:27',2,'2006-02-15 21:30:53'), - (11605,'2005-08-17 03:30:57',1292,455,'2005-08-24 07:02:57',2,'2006-02-15 21:30:53'), - (11606,'2005-08-17 03:32:43',4138,499,'2005-08-18 04:30:43',1,'2006-02-15 21:30:53'), - (11607,'2005-08-17 03:36:06',4345,242,'2005-08-20 01:06:06',1,'2006-02-15 21:30:53'), - (11608,'2005-08-17 03:36:52',1673,448,'2005-08-25 07:17:52',2,'2006-02-15 21:30:53'), - (11609,'2005-08-17 03:41:11',351,73,'2005-08-25 01:30:11',2,'2006-02-15 21:30:53'), - (11610,'2005-08-17 03:43:37',3048,275,'2005-08-20 22:14:37',1,'2006-02-15 21:30:53'), - (11611,'2006-02-14 15:16:03',1857,192,NULL,2,'2006-02-15 21:30:53'), - (11612,'2005-08-17 03:48:51',375,526,'2005-08-20 03:03:51',1,'2006-02-15 21:30:53'), - (11613,'2005-08-17 03:50:33',2486,126,'2005-08-25 00:37:33',2,'2006-02-15 21:30:53'), - (11614,'2005-08-17 03:52:18',805,2,'2005-08-20 07:04:18',1,'2006-02-15 21:30:53'), - (11615,'2005-08-17 03:54:35',4331,436,'2005-08-23 06:54:35',2,'2006-02-15 21:30:53'), - (11616,'2005-08-17 04:00:01',2588,36,'2005-08-20 23:03:01',2,'2006-02-15 21:30:53'), - (11617,'2005-08-17 04:00:40',1898,324,'2005-08-18 00:36:40',1,'2006-02-15 21:30:53'), - (11618,'2005-08-17 04:01:36',954,175,'2005-08-23 01:02:36',1,'2006-02-15 21:30:53'), - (11619,'2005-08-17 04:03:26',3652,374,'2005-08-22 03:07:26',1,'2006-02-15 21:30:53'), - (11620,'2005-08-17 04:06:22',3801,502,'2005-08-17 23:53:22',1,'2006-02-15 21:30:53'), - (11621,'2005-08-17 04:13:45',3708,216,'2005-08-26 01:00:45',1,'2006-02-15 21:30:53'), - (11622,'2005-08-17 04:15:46',499,220,'2005-08-24 04:48:46',1,'2006-02-15 21:30:53'), - (11623,'2005-08-17 04:15:47',759,163,'2005-08-19 04:11:47',2,'2006-02-15 21:30:53'), - (11624,'2005-08-17 04:17:42',606,527,'2005-08-18 02:46:42',1,'2006-02-15 21:30:53'), - (11625,'2005-08-17 04:18:52',712,521,'2005-08-25 03:05:52',2,'2006-02-15 21:30:53'), - (11626,'2005-08-17 04:25:42',4279,266,'2005-08-23 05:46:42',1,'2006-02-15 21:30:53'), - (11627,'2005-08-17 04:25:47',3945,168,'2005-08-26 02:54:47',2,'2006-02-15 21:30:53'), - (11628,'2005-08-17 04:27:18',3656,256,'2005-08-25 01:12:18',2,'2006-02-15 21:30:53'), - (11629,'2005-08-17 04:27:24',786,299,'2005-08-26 10:25:24',2,'2006-02-15 21:30:53'), - (11630,'2005-08-17 04:27:46',688,72,'2005-08-19 09:58:46',2,'2006-02-15 21:30:53'), - (11631,'2005-08-17 04:28:56',59,168,'2005-08-24 00:42:56',2,'2006-02-15 21:30:53'), - (11632,'2005-08-17 04:29:32',2551,238,'2005-08-22 03:44:32',1,'2006-02-15 21:30:53'), - (11633,'2005-08-17 04:30:09',1706,468,'2005-08-20 06:56:09',1,'2006-02-15 21:30:53'), - (11634,'2005-08-17 04:31:49',2576,206,'2005-08-21 02:51:49',1,'2006-02-15 21:30:53'), - (11635,'2005-08-17 04:33:17',2642,98,'2005-08-21 07:50:17',2,'2006-02-15 21:30:53'), - (11636,'2005-08-17 04:36:31',791,276,'2005-08-24 00:03:31',2,'2006-02-15 21:30:53'), - (11637,'2005-08-17 04:36:39',479,283,'2005-08-18 02:17:39',1,'2006-02-15 21:30:53'), - (11638,'2005-08-17 04:39:09',3421,152,'2005-08-25 06:42:09',2,'2006-02-15 21:30:53'), - (11639,'2005-08-17 04:43:29',3985,462,'2005-08-25 01:04:29',2,'2006-02-15 21:30:53'), - (11640,'2005-08-17 04:44:33',1718,501,'2005-08-21 09:29:33',2,'2006-02-15 21:30:53'), - (11641,'2005-08-17 04:45:39',2717,79,'2005-08-20 10:38:39',1,'2006-02-15 21:30:53'), - (11642,'2005-08-17 04:48:05',3790,25,'2005-08-18 01:53:05',2,'2006-02-15 21:30:53'), - (11643,'2005-08-17 04:49:35',1378,197,'2005-08-24 07:05:35',1,'2006-02-15 21:30:53'), - (11644,'2005-08-17 04:49:46',1760,438,'2005-08-24 08:49:46',1,'2006-02-15 21:30:53'), - (11645,'2005-08-17 04:50:56',4261,35,'2005-08-25 23:03:56',1,'2006-02-15 21:30:53'), - (11646,'2006-02-14 15:16:03',478,11,NULL,2,'2006-02-15 21:30:53'), - (11647,'2005-08-17 04:54:14',3016,110,'2005-08-23 04:16:14',2,'2006-02-15 21:30:53'), - (11648,'2005-08-17 04:56:16',3362,465,'2005-08-26 00:53:16',2,'2006-02-15 21:30:53'), - (11649,'2005-08-17 04:59:26',3222,217,'2005-08-20 04:02:26',2,'2006-02-15 21:30:53'), - (11650,'2005-08-17 05:00:03',3979,418,'2005-08-22 01:45:03',2,'2006-02-15 21:30:53'), - (11651,'2005-08-17 05:02:25',3681,143,'2005-08-24 08:15:25',2,'2006-02-15 21:30:53'), - (11652,'2006-02-14 15:16:03',1622,597,NULL,2,'2006-02-15 21:30:53'), - (11653,'2005-08-17 05:06:10',4475,358,'2005-08-24 03:09:10',2,'2006-02-15 21:30:53'), - (11654,'2005-08-17 05:06:19',1048,218,'2005-08-18 04:32:19',2,'2006-02-15 21:30:53'), - (11655,'2005-08-17 05:11:07',1699,113,'2005-08-26 10:18:07',1,'2006-02-15 21:30:53'), - (11656,'2005-08-17 05:11:09',1451,56,'2005-08-25 07:51:09',1,'2006-02-15 21:30:53'), - (11657,'2006-02-14 15:16:03',3043,53,NULL,2,'2006-02-15 21:30:53'), - (11658,'2005-08-17 05:19:17',2008,422,'2005-08-24 07:03:17',2,'2006-02-15 21:30:53'), - (11659,'2005-08-17 05:20:45',2881,112,'2005-08-22 10:18:45',1,'2006-02-15 21:30:53'), - (11660,'2005-08-17 05:22:42',4081,525,'2005-08-23 01:03:42',1,'2006-02-15 21:30:53'), - (11661,'2005-08-17 05:25:57',1008,27,'2005-08-25 04:37:57',1,'2006-02-15 21:30:53'), - (11662,'2005-08-17 05:27:37',2730,177,'2005-08-26 09:56:37',2,'2006-02-15 21:30:53'), - (11663,'2005-08-17 05:30:19',3798,373,'2005-08-25 08:14:19',1,'2006-02-15 21:30:53'), - (11664,'2005-08-17 05:35:52',1343,433,'2005-08-18 02:40:52',1,'2006-02-15 21:30:53'), - (11665,'2005-08-17 05:36:57',334,254,'2005-08-23 01:38:57',1,'2006-02-15 21:30:53'), - (11666,'2005-08-17 05:45:10',250,531,'2005-08-19 06:47:10',2,'2006-02-15 21:30:53'), - (11667,'2005-08-17 05:46:55',1516,582,'2005-08-26 08:19:55',1,'2006-02-15 21:30:53'), - (11668,'2005-08-17 05:47:32',2162,249,'2005-08-20 03:11:32',1,'2006-02-15 21:30:53'), - (11669,'2005-08-17 05:48:51',3224,487,'2005-08-22 01:22:51',1,'2006-02-15 21:30:53'), - (11670,'2005-08-17 05:48:59',4437,286,'2005-08-19 08:51:59',1,'2006-02-15 21:30:53'), - (11671,'2005-08-17 05:50:21',3569,338,'2005-08-20 03:43:21',1,'2006-02-15 21:30:53'), - (11672,'2006-02-14 15:16:03',3947,521,NULL,2,'2006-02-15 21:30:53'), - (11673,'2005-08-17 05:54:15',823,303,'2005-08-21 08:12:15',2,'2006-02-15 21:30:53'), - (11674,'2005-08-17 05:56:27',582,306,'2005-08-24 08:50:27',2,'2006-02-15 21:30:53'), - (11675,'2005-08-17 05:57:54',1322,514,'2005-08-21 23:57:54',1,'2006-02-15 21:30:53'), - (11676,'2006-02-14 15:16:03',4496,216,NULL,2,'2006-02-15 21:30:53'), - (11677,'2005-08-17 06:06:26',2206,407,'2005-08-20 04:35:26',2,'2006-02-15 21:30:53'), - (11678,'2005-08-17 06:07:39',3511,176,'2005-08-21 10:51:39',2,'2006-02-15 21:30:53'), - (11679,'2005-08-17 06:08:54',3337,72,'2005-08-21 07:50:54',1,'2006-02-15 21:30:53'), - (11680,'2005-08-17 06:12:27',4538,221,'2005-08-23 08:54:27',1,'2006-02-15 21:30:53'), - (11681,'2005-08-17 06:13:30',1260,543,'2005-08-26 01:29:30',2,'2006-02-15 21:30:53'), - (11682,'2005-08-17 06:13:40',2544,387,'2005-08-18 06:11:40',1,'2006-02-15 21:30:53'), - (11683,'2005-08-17 06:15:17',2603,66,'2005-08-26 05:33:17',1,'2006-02-15 21:30:53'), - (11684,'2005-08-17 06:27:15',4277,517,'2005-08-22 02:11:15',2,'2006-02-15 21:30:53'), - (11685,'2005-08-17 06:39:16',3552,51,'2005-08-22 04:20:16',2,'2006-02-15 21:30:53'), - (11686,'2005-08-17 06:39:30',1393,392,'2005-08-21 10:19:30',2,'2006-02-15 21:30:53'), - (11687,'2005-08-17 06:39:59',1977,169,'2005-08-23 04:53:59',1,'2006-02-15 21:30:53'), - (11688,'2005-08-17 06:41:58',2229,82,'2005-08-25 04:38:58',1,'2006-02-15 21:30:53'), - (11689,'2005-08-17 06:42:08',2390,419,'2005-08-26 06:09:08',1,'2006-02-15 21:30:53'), - (11690,'2005-08-17 06:44:22',3934,267,'2005-08-24 03:49:22',1,'2006-02-15 21:30:53'), - (11691,'2005-08-17 06:51:05',2529,515,'2005-08-24 09:53:05',1,'2006-02-15 21:30:53'), - (11692,'2005-08-17 06:52:41',1222,350,'2005-08-24 12:17:41',2,'2006-02-15 21:30:53'), - (11693,'2005-08-17 06:56:56',793,221,'2005-08-24 06:20:56',2,'2006-02-15 21:30:53'), - (11694,'2005-08-17 06:57:30',3540,410,'2005-08-24 07:52:30',1,'2006-02-15 21:30:53'), - (11695,'2005-08-17 07:01:08',1110,386,'2005-08-21 09:21:08',1,'2006-02-15 21:30:53'), - (11696,'2005-08-17 07:01:09',3816,522,'2005-08-21 09:12:09',2,'2006-02-15 21:30:53'), - (11697,'2005-08-17 07:09:19',383,329,'2005-08-19 02:02:19',1,'2006-02-15 21:30:53'), - (11698,'2005-08-17 07:09:59',3946,353,'2005-08-19 04:31:59',1,'2006-02-15 21:30:53'), - (11699,'2005-08-17 07:11:58',3997,339,'2005-08-26 12:08:58',1,'2006-02-15 21:30:53'), - (11700,'2005-08-17 07:12:31',2365,104,'2005-08-18 04:21:31',2,'2006-02-15 21:30:53'), - (11701,'2005-08-17 07:15:47',993,34,'2005-08-19 01:44:47',2,'2006-02-15 21:30:53'), - (11702,'2005-08-17 07:18:56',3286,526,'2005-08-24 06:33:56',1,'2006-02-15 21:30:53'), - (11703,'2005-08-17 07:19:29',1692,279,'2005-08-20 09:35:29',2,'2006-02-15 21:30:53'), - (11704,'2005-08-17 07:21:22',1099,135,'2005-08-25 06:06:22',1,'2006-02-15 21:30:53'), - (11705,'2005-08-17 07:22:25',4242,489,'2005-08-18 06:42:25',1,'2006-02-15 21:30:53'), - (11706,'2005-08-17 07:23:46',4234,414,'2005-08-18 10:13:46',2,'2006-02-15 21:30:53'), - (11707,'2005-08-17 07:24:59',1030,581,'2005-08-24 10:40:59',1,'2006-02-15 21:30:53'), - (11708,'2005-08-17 07:26:47',76,582,'2005-08-22 04:11:47',1,'2006-02-15 21:30:53'), - (11709,'2006-02-14 15:16:03',1720,330,NULL,1,'2006-02-15 21:30:53'), - (11710,'2005-08-17 07:29:44',613,553,'2005-08-19 02:06:44',2,'2006-02-15 21:30:53'), - (11711,'2005-08-17 07:30:55',1503,470,'2005-08-18 09:21:55',1,'2006-02-15 21:30:53'), - (11712,'2005-08-17 07:32:51',3607,203,'2005-08-21 09:18:51',2,'2006-02-15 21:30:53'), - (11713,'2005-08-17 07:34:05',1919,590,'2005-08-25 07:49:05',1,'2006-02-15 21:30:53'), - (11714,'2005-08-17 07:34:55',17,151,'2005-08-18 04:07:55',1,'2006-02-15 21:30:53'), - (11715,'2005-08-17 07:40:55',1615,452,'2005-08-25 11:19:55',1,'2006-02-15 21:30:53'), - (11716,'2005-08-17 07:40:55',3054,287,'2005-08-21 05:56:55',1,'2006-02-15 21:30:53'), - (11717,'2005-08-17 07:44:09',1371,566,'2005-08-20 09:39:09',2,'2006-02-15 21:30:53'), - (11718,'2005-08-17 07:44:42',3673,555,'2005-08-23 03:02:42',2,'2006-02-15 21:30:53'), - (11719,'2005-08-17 07:46:05',2054,338,'2005-08-23 08:52:05',1,'2006-02-15 21:30:53'), - (11720,'2005-08-17 07:46:54',1707,121,'2005-08-26 04:19:54',2,'2006-02-15 21:30:53'), - (11721,'2005-08-17 07:49:17',1923,46,'2005-08-18 04:08:17',1,'2006-02-15 21:30:53'), - (11722,'2005-08-17 07:53:03',2430,321,'2005-08-22 06:56:03',2,'2006-02-15 21:30:53'), - (11723,'2005-08-17 07:56:22',1665,341,'2005-08-22 03:49:22',1,'2006-02-15 21:30:53'), - (11724,'2005-08-17 08:04:44',4484,207,'2005-08-25 03:25:44',2,'2006-02-15 21:30:53'), - (11725,'2005-08-17 08:09:00',519,45,'2005-08-18 09:50:00',1,'2006-02-15 21:30:53'), - (11726,'2005-08-17 08:11:10',4438,266,'2005-08-22 05:45:10',1,'2006-02-15 21:30:53'), - (11727,'2005-08-17 08:12:20',98,6,'2005-08-19 12:45:20',1,'2006-02-15 21:30:53'), - (11728,'2005-08-17 08:12:26',726,444,'2005-08-18 03:26:26',1,'2006-02-15 21:30:53'), - (11729,'2005-08-17 08:14:41',2819,215,'2005-08-22 02:54:41',1,'2006-02-15 21:30:53'), - (11730,'2005-08-17 08:22:00',3817,98,'2005-08-22 05:43:00',2,'2006-02-15 21:30:53'), - (11731,'2005-08-17 08:24:35',917,52,'2005-08-24 02:54:35',2,'2006-02-15 21:30:53'), - (11732,'2005-08-17 08:29:46',460,137,'2005-08-23 14:21:46',2,'2006-02-15 21:30:53'), - (11733,'2005-08-17 08:31:03',439,251,'2005-08-21 05:44:03',2,'2006-02-15 21:30:53'), - (11734,'2005-08-17 08:34:22',4063,337,'2005-08-25 11:56:22',2,'2006-02-15 21:30:53'), - (11735,'2005-08-17 08:35:42',2555,452,'2005-08-26 11:04:42',1,'2006-02-15 21:30:53'), - (11736,'2005-08-17 08:40:55',4217,535,'2005-08-26 09:03:55',1,'2006-02-15 21:30:53'), - (11737,'2005-08-17 08:42:08',4128,549,'2005-08-19 08:14:08',1,'2006-02-15 21:30:53'), - (11738,'2005-08-17 08:45:55',3042,347,'2005-08-26 07:09:55',1,'2006-02-15 21:30:53'), - (11739,'2006-02-14 15:16:03',4568,373,NULL,2,'2006-02-15 21:30:53'), - (11740,'2005-08-17 08:48:31',2441,27,'2005-08-24 07:47:31',2,'2006-02-15 21:30:53'), - (11741,'2005-08-17 08:48:39',1819,473,'2005-08-20 07:37:39',1,'2006-02-15 21:30:53'), - (11742,'2005-08-17 08:48:43',596,470,'2005-08-23 07:18:43',2,'2006-02-15 21:30:53'), - (11743,'2005-08-17 08:49:05',294,336,'2005-08-22 08:53:05',2,'2006-02-15 21:30:53'), - (11744,'2005-08-17 08:54:30',297,26,'2005-08-25 03:28:30',1,'2006-02-15 21:30:53'), - (11745,'2005-08-17 09:00:01',4018,240,'2005-08-26 14:29:01',2,'2006-02-15 21:30:53'), - (11746,'2005-08-17 09:03:24',4571,299,'2005-08-25 06:08:24',2,'2006-02-15 21:30:53'), - (11747,'2005-08-17 09:03:31',1041,555,'2005-08-19 08:23:31',2,'2006-02-15 21:30:53'), - (11748,'2005-08-17 09:04:02',1175,595,'2005-08-21 12:22:02',2,'2006-02-15 21:30:53'), - (11749,'2005-08-17 09:04:03',4141,567,'2005-08-19 09:32:03',2,'2006-02-15 21:30:53'), - (11750,'2005-08-17 09:07:00',665,190,'2005-08-23 08:16:00',2,'2006-02-15 21:30:53'), - (11751,'2005-08-17 09:07:56',3309,51,'2005-08-26 13:16:56',1,'2006-02-15 21:30:53'), - (11752,'2005-08-17 09:10:55',1833,481,'2005-08-18 06:22:55',1,'2006-02-15 21:30:53'), - (11753,'2005-08-17 09:11:52',2599,43,'2005-08-25 05:03:52',2,'2006-02-15 21:30:53'), - (11754,'2006-02-14 15:16:03',3747,163,NULL,2,'2006-02-15 21:30:53'), - (11755,'2005-08-17 09:15:35',3457,513,'2005-08-23 06:28:35',2,'2006-02-15 21:30:53'), - (11756,'2005-08-17 09:29:22',1798,198,'2005-08-21 12:17:22',1,'2006-02-15 21:30:53'), - (11757,'2006-02-14 15:16:03',1295,550,NULL,2,'2006-02-15 21:30:53'), - (11758,'2005-08-17 09:33:02',11,533,'2005-08-24 05:03:02',2,'2006-02-15 21:30:53'), - (11759,'2005-08-17 09:41:23',2655,108,'2005-08-19 11:58:23',2,'2006-02-15 21:30:53'), - (11760,'2005-08-17 09:44:22',626,545,'2005-08-24 14:39:22',2,'2006-02-15 21:30:53'), - (11761,'2005-08-17 09:44:59',2230,13,'2005-08-25 07:46:59',1,'2006-02-15 21:30:53'), - (11762,'2005-08-17 09:48:06',1204,244,'2005-08-26 13:12:06',2,'2006-02-15 21:30:53'), - (11763,'2005-08-17 09:51:39',872,586,'2005-08-21 10:15:39',2,'2006-02-15 21:30:53'), - (11764,'2005-08-17 09:51:54',4502,252,'2005-08-20 07:11:54',1,'2006-02-15 21:30:53'), - (11765,'2005-08-17 09:55:28',4311,308,'2005-08-19 15:53:28',2,'2006-02-15 21:30:53'), - (11766,'2005-08-17 09:58:40',2999,544,'2005-08-21 04:59:40',1,'2006-02-15 21:30:53'), - (11767,'2005-08-17 10:00:40',2374,77,'2005-08-25 04:14:40',2,'2006-02-15 21:30:53'), - (11768,'2005-08-17 10:02:29',1307,564,'2005-08-23 10:26:29',1,'2006-02-15 21:30:53'), - (11769,'2005-08-17 10:04:49',1406,418,'2005-08-20 09:22:49',1,'2006-02-15 21:30:53'), - (11770,'2005-08-17 10:05:05',2862,475,'2005-08-20 15:59:05',1,'2006-02-15 21:30:53'), - (11771,'2005-08-17 10:17:09',2575,324,'2005-08-25 10:58:09',1,'2006-02-15 21:30:53'), - (11772,'2005-08-17 10:18:57',1021,237,'2005-08-26 12:48:57',2,'2006-02-15 21:30:53'), - (11773,'2005-08-17 10:19:51',1886,384,'2005-08-23 04:30:51',1,'2006-02-15 21:30:53'), - (11774,'2005-08-17 10:20:39',1679,488,'2005-08-23 13:37:39',1,'2006-02-15 21:30:53'), - (11775,'2005-08-17 10:25:53',256,574,'2005-08-22 08:37:53',2,'2006-02-15 21:30:53'), - (11776,'2005-08-17 10:27:19',2400,306,'2005-08-20 14:02:19',2,'2006-02-15 21:30:53'), - (11777,'2005-08-17 10:27:19',4065,83,'2005-08-26 13:10:19',1,'2006-02-15 21:30:53'), - (11778,'2005-08-17 10:31:40',1306,213,'2005-08-25 13:53:40',2,'2006-02-15 21:30:53'), - (11779,'2005-08-17 10:31:58',181,126,'2005-08-24 15:28:58',2,'2006-02-15 21:30:53'), - (11780,'2005-08-17 10:34:24',2268,297,'2005-08-21 04:55:24',1,'2006-02-15 21:30:53'), - (11781,'2005-08-17 10:37:00',1853,506,'2005-08-21 12:03:00',2,'2006-02-15 21:30:53'), - (11782,'2006-02-14 15:16:03',4098,354,NULL,1,'2006-02-15 21:30:53'), - (11783,'2005-08-17 10:39:24',979,152,'2005-08-21 12:43:24',2,'2006-02-15 21:30:53'), - (11784,'2005-08-17 10:48:05',3101,297,'2005-08-19 06:47:05',1,'2006-02-15 21:30:53'), - (11785,'2005-08-17 10:54:46',2760,182,'2005-08-23 14:15:46',2,'2006-02-15 21:30:53'), - (11786,'2005-08-17 10:57:40',1487,435,'2005-08-24 06:48:40',2,'2006-02-15 21:30:53'), - (11787,'2005-08-17 10:59:00',1980,195,'2005-08-19 05:56:00',1,'2006-02-15 21:30:53'), - (11788,'2005-08-17 10:59:18',1310,560,'2005-08-22 11:12:18',1,'2006-02-15 21:30:53'), - (11789,'2005-08-17 10:59:24',851,150,'2005-08-26 16:17:24',1,'2006-02-15 21:30:53'), - (11790,'2005-08-17 11:00:08',2384,451,'2005-08-20 05:15:08',2,'2006-02-15 21:30:53'), - (11791,'2005-08-17 11:01:11',3640,219,'2005-08-22 06:31:11',2,'2006-02-15 21:30:53'), - (11792,'2005-08-17 11:03:53',3703,376,'2005-08-26 06:34:53',1,'2006-02-15 21:30:53'), - (11793,'2005-08-17 11:05:53',1955,352,'2005-08-25 12:25:53',1,'2006-02-15 21:30:53'), - (11794,'2005-08-17 11:08:48',3486,453,'2005-08-20 13:36:48',2,'2006-02-15 21:30:53'), - (11795,'2005-08-17 11:13:38',2220,565,'2005-08-19 14:20:38',2,'2006-02-15 21:30:53'), - (11796,'2005-08-17 11:16:47',3983,435,'2005-08-18 16:55:47',2,'2006-02-15 21:30:53'), - (11797,'2005-08-17 11:17:21',1142,546,'2005-08-18 09:14:21',2,'2006-02-15 21:30:53'), - (11798,'2005-08-17 11:21:43',3974,448,'2005-08-25 07:43:43',2,'2006-02-15 21:30:53'), - (11799,'2005-08-17 11:25:25',40,501,'2005-08-25 13:03:25',2,'2006-02-15 21:30:53'), - (11800,'2005-08-17 11:29:52',2284,350,'2005-08-21 08:37:52',1,'2006-02-15 21:30:53'), - (11801,'2005-08-17 11:30:11',659,126,'2005-08-23 09:54:11',1,'2006-02-15 21:30:53'), - (11802,'2005-08-17 11:32:51',2815,221,'2005-08-22 10:56:51',1,'2006-02-15 21:30:53'), - (11803,'2005-08-17 11:42:08',3648,160,'2005-08-22 07:45:08',2,'2006-02-15 21:30:53'), - (11804,'2005-08-17 11:42:45',1040,556,'2005-08-25 07:11:45',1,'2006-02-15 21:30:53'), - (11805,'2005-08-17 11:48:47',1208,208,'2005-08-26 11:06:47',2,'2006-02-15 21:30:53'), - (11806,'2005-08-17 11:49:28',3203,125,'2005-08-22 15:42:28',1,'2006-02-15 21:30:53'), - (11807,'2005-08-17 11:51:15',4052,201,'2005-08-21 11:47:15',2,'2006-02-15 21:30:53'), - (11808,'2005-08-17 11:51:16',4042,462,'2005-08-18 14:01:16',2,'2006-02-15 21:30:53'), - (11809,'2005-08-17 11:51:39',1136,305,'2005-08-24 17:14:39',1,'2006-02-15 21:30:53'), - (11810,'2005-08-17 11:56:48',1548,270,'2005-08-20 17:39:48',1,'2006-02-15 21:30:53'), - (11811,'2005-08-17 11:59:18',195,130,'2005-08-18 09:13:18',2,'2006-02-15 21:30:53'), - (11812,'2005-08-17 12:00:54',119,132,'2005-08-18 16:08:54',1,'2006-02-15 21:30:53'), - (11813,'2005-08-17 12:06:54',1074,36,'2005-08-21 17:52:54',2,'2006-02-15 21:30:53'), - (11814,'2005-08-17 12:09:20',3462,509,'2005-08-25 16:56:20',2,'2006-02-15 21:30:53'), - (11815,'2005-08-17 12:13:26',272,192,'2005-08-22 17:15:26',2,'2006-02-15 21:30:53'), - (11816,'2005-08-17 12:14:16',3897,224,'2005-08-19 06:15:16',2,'2006-02-15 21:30:53'), - (11817,'2005-08-17 12:20:01',2297,38,'2005-08-19 18:06:01',1,'2006-02-15 21:30:53'), - (11818,'2005-08-17 12:22:04',213,512,'2005-08-25 15:59:04',2,'2006-02-15 21:30:53'), - (11819,'2005-08-17 12:25:17',656,208,'2005-08-19 16:12:17',1,'2006-02-15 21:30:53'), - (11820,'2005-08-17 12:25:33',2801,401,'2005-08-19 07:04:33',2,'2006-02-15 21:30:53'), - (11821,'2005-08-17 12:27:55',2711,20,'2005-08-18 07:07:55',1,'2006-02-15 21:30:53'), - (11822,'2005-08-17 12:32:39',1317,263,'2005-08-18 12:30:39',2,'2006-02-15 21:30:53'), - (11823,'2005-08-17 12:36:37',2626,352,'2005-08-22 11:10:37',2,'2006-02-15 21:30:53'), - (11824,'2005-08-17 12:37:54',2639,1,'2005-08-19 10:11:54',2,'2006-02-15 21:30:53'), - (11825,'2005-08-17 12:43:30',2656,296,'2005-08-20 15:25:30',1,'2006-02-15 21:30:53'), - (11826,'2005-08-17 12:43:46',1837,536,'2005-08-19 16:59:46',2,'2006-02-15 21:30:53'), - (11827,'2005-08-17 12:44:27',3064,523,'2005-08-24 13:31:27',1,'2006-02-15 21:30:53'), - (11828,'2005-08-17 12:48:28',2593,268,'2005-08-24 09:24:28',2,'2006-02-15 21:30:53'), - (11829,'2005-08-17 12:52:04',2207,563,'2005-08-19 10:50:04',2,'2006-02-15 21:30:53'), - (11830,'2005-08-17 12:53:15',3713,522,'2005-08-25 08:08:15',1,'2006-02-15 21:30:53'), - (11831,'2005-08-17 12:54:47',4562,32,'2005-08-21 11:21:47',1,'2006-02-15 21:30:53'), - (11832,'2005-08-17 12:55:31',2331,125,'2005-08-19 08:31:31',1,'2006-02-15 21:30:53'), - (11833,'2005-08-17 13:00:33',3728,424,'2005-08-18 13:45:33',2,'2006-02-15 21:30:53'), - (11834,'2005-08-17 13:00:40',2407,261,'2005-08-22 12:50:40',1,'2006-02-15 21:30:53'), - (11835,'2005-08-17 13:03:13',2796,479,'2005-08-19 10:50:13',1,'2006-02-15 21:30:53'), - (11836,'2005-08-17 13:03:36',2253,198,'2005-08-19 17:15:36',1,'2006-02-15 21:30:53'), - (11837,'2005-08-17 13:04:41',1085,81,'2005-08-26 14:19:41',1,'2006-02-15 21:30:53'), - (11838,'2005-08-17 13:06:00',3576,161,'2005-08-20 11:44:00',1,'2006-02-15 21:30:53'), - (11839,'2005-08-17 13:08:45',2282,80,'2005-08-18 15:05:45',2,'2006-02-15 21:30:53'), - (11840,'2005-08-17 13:09:01',1824,491,'2005-08-19 17:42:01',1,'2006-02-15 21:30:53'), - (11841,'2005-08-17 13:12:20',1524,270,'2005-08-21 11:16:20',2,'2006-02-15 21:30:53'), - (11842,'2005-08-17 13:13:37',2680,422,'2005-08-20 08:32:37',1,'2006-02-15 21:30:53'), - (11843,'2005-08-17 13:14:50',3091,187,'2005-08-22 11:31:50',2,'2006-02-15 21:30:53'), - (11844,'2005-08-17 13:16:04',3791,368,'2005-08-18 10:16:04',1,'2006-02-15 21:30:53'), - (11845,'2005-08-17 13:16:38',14,65,'2005-08-18 11:21:38',1,'2006-02-15 21:30:53'), - (11846,'2005-08-17 13:18:29',3306,283,'2005-08-22 18:05:29',2,'2006-02-15 21:30:53'), - (11847,'2006-02-14 15:16:03',1784,337,NULL,1,'2006-02-15 21:30:53'), - (11848,'2006-02-14 15:16:03',3680,152,NULL,1,'2006-02-15 21:30:53'), - (11849,'2005-08-17 13:24:55',1191,92,'2005-08-22 12:50:55',2,'2006-02-15 21:30:53'), - (11850,'2005-08-17 13:30:15',1437,80,'2005-08-21 17:24:15',1,'2006-02-15 21:30:53'), - (11851,'2005-08-17 13:30:27',3225,376,'2005-08-20 15:34:27',2,'2006-02-15 21:30:53'), - (11852,'2005-08-17 13:38:27',2358,596,'2005-08-24 08:50:27',1,'2006-02-15 21:30:53'), - (11853,'2005-08-17 13:39:32',3888,6,'2005-08-23 18:44:32',2,'2006-02-15 21:30:53'), - (11854,'2005-08-17 13:42:52',137,313,'2005-08-26 14:04:52',1,'2006-02-15 21:30:53'), - (11855,'2005-08-17 13:43:07',1062,535,'2005-08-26 08:07:07',1,'2006-02-15 21:30:53'), - (11856,'2005-08-17 13:44:49',305,28,'2005-08-21 17:20:49',1,'2006-02-15 21:30:53'), - (11857,'2005-08-17 13:48:30',101,146,'2005-08-18 15:55:30',1,'2006-02-15 21:30:53'), - (11858,'2005-08-17 13:50:31',3483,503,'2005-08-19 08:45:31',2,'2006-02-15 21:30:53'), - (11859,'2005-08-17 13:51:20',423,144,'2005-08-21 13:47:20',2,'2006-02-15 21:30:53'), - (11860,'2005-08-17 13:52:26',4354,257,'2005-08-24 14:47:26',1,'2006-02-15 21:30:53'), - (11861,'2005-08-17 13:53:47',2674,232,'2005-08-21 16:07:47',1,'2006-02-15 21:30:53'), - (11862,'2005-08-17 13:54:53',2604,529,'2005-08-19 10:48:53',1,'2006-02-15 21:30:53'), - (11863,'2005-08-17 13:56:01',1003,112,'2005-08-23 18:38:01',1,'2006-02-15 21:30:53'), - (11864,'2005-08-17 14:02:01',2985,96,'2005-08-21 19:54:01',1,'2006-02-15 21:30:53'), - (11865,'2005-08-17 14:03:46',2577,345,'2005-08-19 08:39:46',1,'2006-02-15 21:30:53'), - (11866,'2006-02-14 15:16:03',2758,200,NULL,2,'2006-02-15 21:30:53'), - (11867,'2005-08-17 14:04:28',938,434,'2005-08-21 10:08:28',1,'2006-02-15 21:30:53'), - (11868,'2005-08-17 14:05:34',2909,445,'2005-08-19 15:47:34',1,'2006-02-15 21:30:53'), - (11869,'2005-08-17 14:10:22',3453,19,'2005-08-24 18:39:22',1,'2006-02-15 21:30:53'), - (11870,'2005-08-17 14:11:28',4251,432,'2005-08-24 16:43:28',1,'2006-02-15 21:30:53'), - (11871,'2005-08-17 14:11:44',3013,484,'2005-08-18 17:50:44',1,'2006-02-15 21:30:53'), - (11872,'2005-08-17 14:11:45',4306,113,'2005-08-21 17:02:45',2,'2006-02-15 21:30:53'), - (11873,'2005-08-17 14:14:39',4021,554,'2005-08-18 17:20:39',2,'2006-02-15 21:30:53'), - (11874,'2005-08-17 14:16:40',2637,467,'2005-08-18 15:51:40',2,'2006-02-15 21:30:53'), - (11875,'2005-08-17 14:16:48',1787,294,'2005-08-26 14:20:48',1,'2006-02-15 21:30:53'), - (11876,'2005-08-17 14:18:21',3982,426,'2005-08-20 19:48:21',1,'2006-02-15 21:30:53'), - (11877,'2005-08-17 14:21:11',4528,445,'2005-08-25 19:46:11',1,'2006-02-15 21:30:53'), - (11878,'2005-08-17 14:23:52',255,549,'2005-08-21 14:23:52',1,'2006-02-15 21:30:53'), - (11879,'2005-08-17 14:25:09',2500,312,'2005-08-26 09:19:09',1,'2006-02-15 21:30:53'), - (11880,'2005-08-17 14:28:28',1539,597,'2005-08-26 12:32:28',2,'2006-02-15 21:30:53'), - (11881,'2005-08-17 14:31:56',3124,272,'2005-08-21 11:05:56',1,'2006-02-15 21:30:53'), - (11882,'2005-08-17 14:33:41',2401,234,'2005-08-26 17:25:41',2,'2006-02-15 21:30:53'), - (11883,'2005-08-17 14:41:28',221,551,'2005-08-19 09:54:28',1,'2006-02-15 21:30:53'), - (11884,'2005-08-17 14:43:23',797,178,'2005-08-25 15:38:23',1,'2006-02-15 21:30:53'), - (11885,'2005-08-17 14:53:53',3931,481,'2005-08-22 10:59:53',1,'2006-02-15 21:30:53'), - (11886,'2005-08-17 14:58:51',608,204,'2005-08-19 16:07:51',2,'2006-02-15 21:30:53'), - (11887,'2005-08-17 15:03:13',3290,54,'2005-08-19 09:49:13',1,'2006-02-15 21:30:53'), - (11888,'2005-08-17 15:04:05',1100,160,'2005-08-25 18:52:05',2,'2006-02-15 21:30:53'), - (11889,'2005-08-17 15:08:27',293,395,'2005-08-18 17:10:27',1,'2006-02-15 21:30:53'), - (11890,'2005-08-17 15:08:43',3023,487,'2005-08-26 14:56:43',2,'2006-02-15 21:30:53'), - (11891,'2005-08-17 15:11:55',2619,115,'2005-08-22 11:11:55',2,'2006-02-15 21:30:53'), - (11892,'2005-08-17 15:13:21',746,227,'2005-08-21 09:19:21',2,'2006-02-15 21:30:53'), - (11893,'2005-08-17 15:13:29',2321,496,'2005-08-25 11:09:29',1,'2006-02-15 21:30:53'), - (11894,'2005-08-17 15:15:01',1223,67,'2005-08-26 13:49:01',1,'2006-02-15 21:30:53'), - (11895,'2005-08-17 15:15:07',2156,236,'2005-08-18 11:00:07',2,'2006-02-15 21:30:53'), - (11896,'2005-08-17 15:19:54',259,436,'2005-08-24 18:22:54',2,'2006-02-15 21:30:53'), - (11897,'2005-08-17 15:24:06',3904,238,'2005-08-23 11:50:06',2,'2006-02-15 21:30:53'), - (11898,'2005-08-17 15:24:12',3163,169,'2005-08-24 13:36:12',2,'2006-02-15 21:30:53'), - (11899,'2005-08-17 15:29:12',3179,84,'2005-08-24 17:41:12',1,'2006-02-15 21:30:53'), - (11900,'2005-08-17 15:30:44',1931,239,'2005-08-19 16:12:44',1,'2006-02-15 21:30:53'), - (11901,'2005-08-17 15:35:47',4274,70,'2005-08-20 10:33:47',2,'2006-02-15 21:30:53'), - (11902,'2005-08-17 15:37:34',1387,63,'2005-08-22 17:28:34',2,'2006-02-15 21:30:53'), - (11903,'2005-08-17 15:37:45',1196,542,'2005-08-23 18:31:45',2,'2006-02-15 21:30:53'), - (11904,'2005-08-17 15:39:26',2846,145,'2005-08-21 18:24:26',2,'2006-02-15 21:30:53'), - (11905,'2005-08-17 15:40:18',2725,349,'2005-08-26 15:14:18',2,'2006-02-15 21:30:53'), - (11906,'2005-08-17 15:40:46',325,478,'2005-08-20 15:20:46',2,'2006-02-15 21:30:53'), - (11907,'2005-08-17 15:40:47',3928,505,'2005-08-20 19:55:47',2,'2006-02-15 21:30:53'), - (11908,'2005-08-17 15:43:09',3390,314,'2005-08-24 14:32:09',2,'2006-02-15 21:30:53'), - (11909,'2006-02-14 15:16:03',871,474,NULL,1,'2006-02-15 21:30:53'), - (11910,'2005-08-17 15:44:37',4254,418,'2005-08-19 10:58:37',2,'2006-02-15 21:30:53'), - (11911,'2005-08-17 15:51:35',3578,472,'2005-08-26 20:26:35',2,'2006-02-15 21:30:53'), - (11912,'2005-08-17 15:51:49',744,573,'2005-08-24 18:48:49',1,'2006-02-15 21:30:53'), - (11913,'2005-08-17 15:53:17',741,295,'2005-08-24 18:50:17',2,'2006-02-15 21:30:53'), - (11914,'2005-08-17 16:04:42',1634,230,'2005-08-22 19:29:42',1,'2006-02-15 21:30:53'), - (11915,'2005-08-17 16:05:28',1557,269,'2005-08-25 19:53:28',2,'2006-02-15 21:30:53'), - (11916,'2005-08-17 16:05:51',2631,86,'2005-08-20 10:23:51',1,'2006-02-15 21:30:53'), - (11917,'2005-08-17 16:08:17',1608,270,'2005-08-20 20:01:17',1,'2006-02-15 21:30:53'), - (11918,'2005-08-17 16:08:42',2169,533,'2005-08-20 20:12:42',1,'2006-02-15 21:30:53'), - (11919,'2005-08-17 16:08:49',4497,40,'2005-08-20 16:59:49',2,'2006-02-15 21:30:53'), - (11920,'2005-08-17 16:10:19',4253,402,'2005-08-20 13:54:19',2,'2006-02-15 21:30:53'), - (11921,'2005-08-17 16:12:27',494,485,'2005-08-25 22:07:27',1,'2006-02-15 21:30:53'), - (11922,'2005-08-17 16:20:37',3707,15,'2005-08-26 16:53:37',2,'2006-02-15 21:30:53'), - (11923,'2005-08-17 16:21:47',1907,72,'2005-08-18 14:26:47',2,'2006-02-15 21:30:53'), - (11924,'2005-08-17 16:22:05',1711,202,'2005-08-26 12:34:05',1,'2006-02-15 21:30:53'), - (11925,'2005-08-17 16:23:04',1441,370,'2005-08-21 11:38:04',1,'2006-02-15 21:30:53'), - (11926,'2005-08-17 16:25:02',2111,516,'2005-08-22 11:36:02',1,'2006-02-15 21:30:53'), - (11927,'2005-08-17 16:25:03',3134,178,'2005-08-23 16:41:03',1,'2006-02-15 21:30:53'), - (11928,'2005-08-17 16:28:24',79,261,'2005-08-23 17:50:24',2,'2006-02-15 21:30:53'), - (11929,'2005-08-17 16:28:51',3765,327,'2005-08-25 19:36:51',1,'2006-02-15 21:30:53'), - (11930,'2005-08-17 16:28:53',1299,5,'2005-08-25 10:31:53',1,'2006-02-15 21:30:53'), - (11931,'2005-08-17 16:35:14',2022,242,'2005-08-19 19:16:14',1,'2006-02-15 21:30:53'), - (11932,'2005-08-17 16:36:12',151,364,'2005-08-18 19:34:12',2,'2006-02-15 21:30:53'), - (11933,'2005-08-17 16:38:20',2574,438,'2005-08-22 14:31:20',1,'2006-02-15 21:30:53'), - (11934,'2005-08-17 16:40:00',1230,596,'2005-08-20 20:13:00',2,'2006-02-15 21:30:53'), - (11935,'2005-08-17 16:42:13',1640,66,'2005-08-22 20:38:13',2,'2006-02-15 21:30:53'), - (11936,'2005-08-17 16:45:34',1127,380,'2005-08-21 13:33:34',2,'2006-02-15 21:30:53'), - (11937,'2005-08-17 16:48:36',2926,515,'2005-08-24 19:01:36',1,'2006-02-15 21:30:53'), - (11938,'2005-08-17 16:54:54',3927,426,'2005-08-24 19:18:54',1,'2006-02-15 21:30:53'), - (11939,'2005-08-17 16:55:57',3305,516,'2005-08-24 21:36:57',1,'2006-02-15 21:30:53'), - (11940,'2005-08-17 16:56:28',1188,163,'2005-08-18 15:09:28',1,'2006-02-15 21:30:53'), - (11941,'2005-08-17 16:56:57',159,566,'2005-08-24 16:29:57',1,'2006-02-15 21:30:53'), - (11942,'2006-02-14 15:16:03',4094,576,NULL,2,'2006-02-15 21:30:53'), - (11943,'2005-08-17 17:00:42',4466,69,'2005-08-26 22:07:42',1,'2006-02-15 21:30:53'), - (11944,'2005-08-17 17:02:42',27,389,'2005-08-21 16:40:42',2,'2006-02-15 21:30:53'), - (11945,'2005-08-17 17:05:33',1108,380,'2005-08-20 18:37:33',2,'2006-02-15 21:30:53'), - (11946,'2005-08-17 17:05:53',2953,569,'2005-08-19 13:56:53',1,'2006-02-15 21:30:53'), - (11947,'2005-08-17 17:08:13',2928,220,'2005-08-23 21:53:13',1,'2006-02-15 21:30:53'), - (11948,'2005-08-17 17:11:05',3329,40,'2005-08-25 21:16:05',2,'2006-02-15 21:30:53'), - (11949,'2005-08-17 17:12:26',854,198,'2005-08-23 20:48:26',1,'2006-02-15 21:30:53'), - (11950,'2005-08-17 17:13:16',4412,190,'2005-08-26 21:25:16',1,'2006-02-15 21:30:53'), - (11951,'2005-08-17 17:14:02',1394,155,'2005-08-26 12:04:02',2,'2006-02-15 21:30:53'), - (11952,'2005-08-17 17:14:57',2411,288,'2005-08-19 19:15:57',1,'2006-02-15 21:30:53'), - (11953,'2005-08-17 17:16:42',2993,399,'2005-08-23 18:28:42',1,'2006-02-15 21:30:53'), - (11954,'2005-08-17 17:18:36',220,145,'2005-08-18 19:49:36',1,'2006-02-15 21:30:53'), - (11955,'2005-08-17 17:21:35',1221,319,'2005-08-24 22:06:35',1,'2006-02-15 21:30:53'), - (11956,'2005-08-17 17:22:05',2533,457,'2005-08-25 22:19:05',2,'2006-02-15 21:30:53'), - (11957,'2005-08-17 17:22:29',1924,198,'2005-08-23 21:47:29',2,'2006-02-15 21:30:53'), - (11958,'2005-08-17 17:23:20',2061,217,'2005-08-24 14:47:20',2,'2006-02-15 21:30:53'), - (11959,'2005-08-17 17:23:35',2694,101,'2005-08-20 20:57:35',1,'2006-02-15 21:30:53'), - (11960,'2005-08-17 17:24:30',3924,84,'2005-08-18 14:28:30',1,'2006-02-15 21:30:53'), - (11961,'2005-08-17 17:28:01',2015,276,'2005-08-21 20:43:01',1,'2006-02-15 21:30:53'), - (11962,'2005-08-17 17:34:38',4384,29,'2005-08-21 12:59:38',2,'2006-02-15 21:30:53'), - (11963,'2005-08-17 17:35:47',232,211,'2005-08-23 16:19:47',2,'2006-02-15 21:30:53'), - (11964,'2005-08-17 17:37:03',2225,309,'2005-08-25 11:55:03',2,'2006-02-15 21:30:53'), - (11965,'2005-08-17 17:39:45',194,490,'2005-08-19 12:05:45',1,'2006-02-15 21:30:53'), - (11966,'2005-08-17 17:40:04',3702,283,'2005-08-20 15:45:04',1,'2006-02-15 21:30:53'), - (11967,'2005-08-17 17:45:00',1151,521,'2005-08-22 13:03:00',1,'2006-02-15 21:30:53'), - (11968,'2005-08-17 17:47:34',698,239,'2005-08-18 19:40:34',1,'2006-02-15 21:30:53'), - (11969,'2005-08-17 17:49:37',668,550,'2005-08-19 19:45:37',2,'2006-02-15 21:30:53'), - (11970,'2005-08-17 17:53:09',1779,21,'2005-08-24 14:41:09',1,'2006-02-15 21:30:53'), - (11971,'2005-08-17 17:53:42',2756,131,'2005-08-18 12:11:42',2,'2006-02-15 21:30:53'), - (11972,'2005-08-17 17:55:46',1282,308,'2005-08-22 15:31:46',2,'2006-02-15 21:30:53'), - (11973,'2005-08-17 17:55:58',1472,131,'2005-08-21 19:55:58',2,'2006-02-15 21:30:53'), - (11974,'2005-08-17 17:56:48',1609,485,'2005-08-21 19:14:48',2,'2006-02-15 21:30:53'), - (11975,'2005-08-17 17:58:39',3843,458,'2005-08-20 19:11:39',2,'2006-02-15 21:30:53'), - (11976,'2005-08-17 17:59:19',498,373,'2005-08-23 14:51:19',2,'2006-02-15 21:30:53'), - (11977,'2005-08-17 18:01:15',1528,536,'2005-08-23 23:03:15',1,'2006-02-15 21:30:53'), - (11978,'2005-08-17 18:02:10',4380,499,'2005-08-18 20:40:10',2,'2006-02-15 21:30:53'), - (11979,'2005-08-17 18:07:13',568,255,'2005-08-19 23:12:13',1,'2006-02-15 21:30:53'), - (11980,'2005-08-17 18:10:18',4165,589,'2005-08-20 13:28:18',1,'2006-02-15 21:30:53'), - (11981,'2005-08-17 18:10:40',3228,294,'2005-08-20 16:56:40',1,'2006-02-15 21:30:53'), - (11982,'2005-08-17 18:13:07',118,186,'2005-08-18 19:06:07',1,'2006-02-15 21:30:53'), - (11983,'2005-08-17 18:13:55',2580,304,'2005-08-23 18:27:55',2,'2006-02-15 21:30:53'), - (11984,'2005-08-17 18:16:30',3577,96,'2005-08-24 21:09:30',2,'2006-02-15 21:30:53'), - (11985,'2005-08-17 18:19:44',2208,198,'2005-08-18 19:14:44',2,'2006-02-15 21:30:53'), - (11986,'2005-08-17 18:21:58',1610,352,'2005-08-18 13:05:58',1,'2006-02-15 21:30:53'), - (11987,'2005-08-17 18:21:59',1478,494,'2005-08-25 19:20:59',1,'2006-02-15 21:30:53'), - (11988,'2005-08-17 18:23:50',3429,62,'2005-08-18 22:30:50',2,'2006-02-15 21:30:53'), - (11989,'2005-08-17 18:23:58',3686,439,'2005-08-20 20:31:58',2,'2006-02-15 21:30:53'), - (11990,'2005-08-17 18:26:22',3012,17,'2005-08-19 14:34:22',2,'2006-02-15 21:30:53'), - (11991,'2005-08-17 18:27:08',940,361,'2005-08-25 14:07:08',1,'2006-02-15 21:30:53'), - (11992,'2005-08-17 18:27:22',4132,136,'2005-08-26 22:38:22',2,'2006-02-15 21:30:53'), - (11993,'2005-08-17 18:27:49',295,303,'2005-08-21 00:04:49',1,'2006-02-15 21:30:53'), - (11994,'2005-08-17 18:29:35',3428,319,'2005-08-25 23:39:35',1,'2006-02-15 21:30:53'), - (11995,'2006-02-14 15:16:03',3953,69,NULL,1,'2006-02-15 21:30:53'), - (11996,'2005-08-17 18:34:37',2720,510,'2005-08-20 22:25:37',2,'2006-02-15 21:30:53'), - (11997,'2005-08-17 18:34:38',2193,411,'2005-08-26 00:12:38',2,'2006-02-15 21:30:53'), - (11998,'2005-08-17 18:46:21',4258,299,'2005-08-18 20:29:21',1,'2006-02-15 21:30:53'), - (11999,'2005-08-17 18:47:07',4333,125,'2005-08-20 23:26:07',2,'2006-02-15 21:30:53'), - (12000,'2005-08-17 18:49:44',2256,149,'2005-08-24 16:34:44',2,'2006-02-15 21:30:53'), - (12001,'2006-02-14 15:16:03',4158,52,NULL,2,'2006-02-15 21:30:53'), - (12002,'2005-08-17 18:56:02',1386,75,'2005-08-20 17:36:02',1,'2006-02-15 21:30:53'), - (12003,'2005-08-17 18:56:05',3868,70,'2005-08-18 23:52:05',1,'2006-02-15 21:30:53'), - (12004,'2005-08-17 18:56:53',2690,499,'2005-08-26 14:56:53',1,'2006-02-15 21:30:53'), - (12005,'2005-08-17 18:56:55',2062,403,'2005-08-25 20:23:55',2,'2006-02-15 21:30:53'), - (12006,'2005-08-17 19:09:12',4072,272,'2005-08-24 13:50:12',1,'2006-02-15 21:30:53'), - (12007,'2005-08-17 19:10:34',3007,268,'2005-08-24 14:09:34',1,'2006-02-15 21:30:53'), - (12008,'2005-08-17 19:16:18',865,562,'2005-08-18 14:24:18',2,'2006-02-15 21:30:53'), - (12009,'2006-02-14 15:16:03',2134,296,NULL,2,'2006-02-15 21:30:53'), - (12010,'2005-08-17 19:17:54',1076,554,'2005-08-26 00:41:54',1,'2006-02-15 21:30:53'), - (12011,'2005-08-17 19:19:44',495,313,'2005-08-23 00:56:44',2,'2006-02-15 21:30:53'), - (12012,'2005-08-17 19:20:48',2698,69,'2005-08-22 16:50:48',1,'2006-02-15 21:30:53'), - (12013,'2005-08-17 19:23:02',3530,586,'2005-08-23 00:31:02',2,'2006-02-15 21:30:53'), - (12014,'2005-08-17 19:29:44',1778,554,'2005-08-23 20:40:44',1,'2006-02-15 21:30:53'), - (12015,'2005-08-17 19:32:44',593,11,'2005-08-23 13:36:44',2,'2006-02-15 21:30:53'), - (12016,'2005-08-17 19:33:24',2109,327,'2005-08-21 19:59:24',2,'2006-02-15 21:30:53'), - (12017,'2005-08-17 19:33:49',344,573,'2005-08-22 01:16:49',2,'2006-02-15 21:30:53'), - (12018,'2005-08-17 19:44:46',1921,319,'2005-08-26 20:24:46',1,'2006-02-15 21:30:53'), - (12019,'2005-08-17 19:48:55',2566,90,'2005-08-21 18:20:55',1,'2006-02-15 21:30:53'), - (12020,'2005-08-17 19:50:33',3258,72,'2005-08-25 17:54:33',1,'2006-02-15 21:30:53'), - (12021,'2005-08-17 19:52:43',3977,27,'2005-08-23 21:49:43',1,'2006-02-15 21:30:53'), - (12022,'2005-08-17 19:52:45',2067,461,'2005-08-18 18:26:45',2,'2006-02-15 21:30:53'), - (12023,'2005-08-17 19:54:54',247,22,'2005-08-26 23:03:54',1,'2006-02-15 21:30:53'), - (12024,'2005-08-17 19:57:34',2398,484,'2005-08-21 23:00:34',2,'2006-02-15 21:30:53'), - (12025,'2005-08-17 19:59:06',4019,209,'2005-08-23 14:39:06',2,'2006-02-15 21:30:53'), - (12026,'2005-08-17 20:00:10',1568,468,'2005-08-26 01:54:10',1,'2006-02-15 21:30:53'), - (12027,'2005-08-17 20:01:12',45,285,'2005-08-26 21:08:12',2,'2006-02-15 21:30:53'), - (12028,'2005-08-17 20:03:47',607,316,'2005-08-23 17:09:47',2,'2006-02-15 21:30:53'), - (12029,'2005-08-17 20:07:01',3516,148,'2005-08-19 19:36:01',2,'2006-02-15 21:30:53'), - (12030,'2005-08-17 20:10:48',449,434,'2005-08-19 00:32:48',1,'2006-02-15 21:30:53'), - (12031,'2005-08-17 20:11:35',2793,10,'2005-08-24 23:48:35',2,'2006-02-15 21:30:53'), - (12032,'2005-08-17 20:14:26',1106,141,'2005-08-26 16:01:26',1,'2006-02-15 21:30:53'), - (12033,'2005-08-17 20:14:34',2731,321,'2005-08-26 00:22:34',2,'2006-02-15 21:30:53'), - (12034,'2005-08-17 20:15:31',834,321,'2005-08-24 15:46:31',2,'2006-02-15 21:30:53'), - (12035,'2005-08-17 20:18:06',2335,469,'2005-08-21 16:41:06',2,'2006-02-15 21:30:53'), - (12036,'2005-08-17 20:19:06',3620,85,'2005-08-18 19:57:06',2,'2006-02-15 21:30:53'), - (12037,'2005-08-17 20:21:35',766,356,'2005-08-22 17:16:35',2,'2006-02-15 21:30:53'), - (12038,'2005-08-17 20:28:26',3794,148,'2005-08-20 23:09:26',2,'2006-02-15 21:30:53'), - (12039,'2005-08-17 20:29:08',4404,563,'2005-08-23 21:20:08',2,'2006-02-15 21:30:53'), - (12040,'2005-08-17 20:29:56',1288,558,'2005-08-26 22:17:56',1,'2006-02-15 21:30:53'), - (12041,'2005-08-17 20:34:33',2389,295,'2005-08-19 00:47:33',1,'2006-02-15 21:30:53'), - (12042,'2005-08-17 20:36:37',1772,570,'2005-08-21 15:03:37',1,'2006-02-15 21:30:53'), - (12043,'2005-08-17 20:38:21',3706,592,'2005-08-22 16:52:21',2,'2006-02-15 21:30:53'), - (12044,'2005-08-17 20:39:37',3377,388,'2005-08-19 18:34:37',1,'2006-02-15 21:30:53'), - (12045,'2005-08-17 20:40:46',469,556,'2005-08-20 18:18:46',2,'2006-02-15 21:30:53'), - (12046,'2005-08-17 20:47:46',3895,435,'2005-08-19 16:09:46',2,'2006-02-15 21:30:53'), - (12047,'2005-08-17 20:48:32',3886,251,'2005-08-26 00:07:32',1,'2006-02-15 21:30:53'), - (12048,'2005-08-17 20:49:24',3773,466,'2005-08-27 02:01:24',2,'2006-02-15 21:30:53'), - (12049,'2005-08-17 20:53:27',2433,178,'2005-08-26 19:45:27',2,'2006-02-15 21:30:53'), - (12050,'2005-08-17 20:55:25',2348,405,'2005-08-22 20:31:25',2,'2006-02-15 21:30:53'), - (12051,'2005-08-17 20:56:15',4001,579,'2005-08-25 19:08:15',1,'2006-02-15 21:30:53'), - (12052,'2005-08-17 20:57:02',99,536,'2005-08-25 19:04:02',1,'2006-02-15 21:30:53'), - (12053,'2005-08-17 20:57:27',4448,280,'2005-08-20 19:51:27',1,'2006-02-15 21:30:53'), - (12054,'2005-08-17 20:59:56',3780,53,'2005-08-23 19:57:56',1,'2006-02-15 21:30:53'), - (12055,'2005-08-17 21:02:19',1481,35,'2005-08-18 15:24:19',1,'2006-02-15 21:30:53'), - (12056,'2005-08-17 21:03:48',1091,460,'2005-08-21 22:42:48',2,'2006-02-15 21:30:53'), - (12057,'2005-08-17 21:04:35',1878,263,'2005-08-25 00:17:35',1,'2006-02-15 21:30:53'), - (12058,'2005-08-17 21:07:41',2438,540,'2005-08-26 16:07:41',1,'2006-02-15 21:30:53'), - (12059,'2005-08-17 21:09:23',4111,393,'2005-08-25 23:09:23',1,'2006-02-15 21:30:53'), - (12060,'2005-08-17 21:11:57',2373,127,'2005-08-21 01:42:57',1,'2006-02-15 21:30:53'), - (12061,'2005-08-17 21:13:35',144,532,'2005-08-22 19:18:35',1,'2006-02-15 21:30:53'), - (12062,'2005-08-17 21:24:47',1791,330,'2005-08-20 20:35:47',2,'2006-02-15 21:30:53'), - (12063,'2005-08-17 21:24:48',1141,550,'2005-08-23 22:10:48',2,'2006-02-15 21:30:53'), - (12064,'2006-02-14 15:16:03',298,284,NULL,1,'2006-02-15 21:30:53'), - (12065,'2005-08-17 21:31:46',3644,77,'2005-08-26 02:26:46',2,'2006-02-15 21:30:53'), - (12066,'2006-02-14 15:16:03',2474,267,NULL,2,'2006-02-15 21:30:53'), - (12067,'2005-08-17 21:36:47',2013,514,'2005-08-22 01:10:47',2,'2006-02-15 21:30:53'), - (12068,'2005-08-17 21:37:08',4327,388,'2005-08-26 00:10:08',1,'2006-02-15 21:30:53'), - (12069,'2005-08-17 21:39:40',631,389,'2005-08-22 01:12:40',2,'2006-02-15 21:30:53'), - (12070,'2005-08-17 21:46:47',1357,158,'2005-08-22 22:59:47',1,'2006-02-15 21:30:53'), - (12071,'2005-08-17 21:49:14',1874,507,'2005-08-22 18:20:14',1,'2006-02-15 21:30:53'), - (12072,'2005-08-17 21:50:25',209,61,'2005-08-25 22:36:25',2,'2006-02-15 21:30:53'), - (12073,'2005-08-17 21:50:39',2939,173,'2005-08-21 02:59:39',1,'2006-02-15 21:30:53'), - (12074,'2005-08-17 21:50:57',711,417,'2005-08-20 00:58:57',2,'2006-02-15 21:30:53'), - (12075,'2005-08-17 21:54:55',3147,125,'2005-08-23 23:04:55',1,'2006-02-15 21:30:53'), - (12076,'2005-08-17 21:58:19',4278,298,'2005-08-20 22:10:19',1,'2006-02-15 21:30:53'), - (12077,'2005-08-17 21:59:14',3589,550,'2005-08-22 03:23:14',1,'2006-02-15 21:30:53'), - (12078,'2005-08-17 22:00:22',684,137,'2005-08-24 02:54:22',2,'2006-02-15 21:30:53'), - (12079,'2005-08-17 22:04:17',646,230,'2005-08-24 20:22:17',2,'2006-02-15 21:30:53'), - (12080,'2005-08-17 22:08:04',1491,394,'2005-08-19 22:55:04',2,'2006-02-15 21:30:53'), - (12081,'2005-08-17 22:10:46',620,597,'2005-08-22 22:37:46',1,'2006-02-15 21:30:53'), - (12082,'2005-08-17 22:13:15',3435,521,'2005-08-24 18:30:15',1,'2006-02-15 21:30:53'), - (12083,'2005-08-17 22:13:37',1985,474,'2005-08-19 19:01:37',2,'2006-02-15 21:30:53'), - (12084,'2005-08-17 22:16:49',2706,60,'2005-08-24 17:42:49',2,'2006-02-15 21:30:53'), - (12085,'2005-08-17 22:17:09',600,31,'2005-08-21 01:45:09',1,'2006-02-15 21:30:53'), - (12086,'2005-08-17 22:20:01',3963,140,'2005-08-26 02:14:01',1,'2006-02-15 21:30:53'), - (12087,'2005-08-17 22:20:12',324,144,'2005-08-20 02:11:12',2,'2006-02-15 21:30:53'), - (12088,'2005-08-17 22:20:16',1754,360,'2005-08-25 23:30:16',2,'2006-02-15 21:30:53'), - (12089,'2005-08-17 22:20:29',651,538,'2005-08-24 02:12:29',1,'2006-02-15 21:30:53'), - (12090,'2005-08-17 22:21:43',3392,391,'2005-08-20 23:53:43',2,'2006-02-15 21:30:53'), - (12091,'2005-08-17 22:22:50',2161,555,'2005-08-27 03:55:50',1,'2006-02-15 21:30:53'), - (12092,'2005-08-17 22:28:15',3964,38,'2005-08-18 16:46:15',2,'2006-02-15 21:30:53'), - (12093,'2005-08-17 22:28:40',216,141,'2005-08-22 02:05:40',1,'2006-02-15 21:30:53'), - (12094,'2005-08-17 22:31:04',1050,130,'2005-08-23 22:45:04',1,'2006-02-15 21:30:53'), - (12095,'2005-08-17 22:32:37',1089,46,'2005-08-20 04:00:37',1,'2006-02-15 21:30:53'), - (12096,'2005-08-17 22:32:50',44,463,'2005-08-25 03:33:50',1,'2006-02-15 21:30:53'), - (12097,'2005-08-17 22:35:24',4135,325,'2005-08-18 20:31:24',2,'2006-02-15 21:30:53'), - (12098,'2005-08-17 22:38:31',534,545,'2005-08-20 01:56:31',1,'2006-02-15 21:30:53'), - (12099,'2005-08-17 22:38:54',1743,195,'2005-08-18 21:29:54',2,'2006-02-15 21:30:53'), - (12100,'2005-08-17 22:41:10',4365,391,'2005-08-24 21:31:10',2,'2006-02-15 21:30:53'), - (12101,'2006-02-14 15:16:03',1556,479,NULL,1,'2006-02-15 21:30:53'), - (12102,'2005-08-17 22:45:26',4268,392,'2005-08-24 01:47:26',2,'2006-02-15 21:30:53'), - (12103,'2005-08-17 22:49:09',4363,153,'2005-08-24 21:53:09',1,'2006-02-15 21:30:53'), - (12104,'2005-08-17 22:53:00',4551,16,'2005-08-23 19:49:00',1,'2006-02-15 21:30:53'), - (12105,'2005-08-17 22:54:45',2848,390,'2005-08-21 00:33:45',2,'2006-02-15 21:30:53'), - (12106,'2005-08-17 22:55:32',3234,465,'2005-08-19 23:55:32',2,'2006-02-15 21:30:53'), - (12107,'2005-08-17 22:56:24',1060,141,'2005-08-24 19:36:24',1,'2006-02-15 21:30:53'), - (12108,'2005-08-17 22:56:39',1675,207,'2005-08-26 19:37:39',1,'2006-02-15 21:30:53'), - (12109,'2005-08-17 22:58:35',1423,509,'2005-08-25 19:44:35',2,'2006-02-15 21:30:53'), - (12110,'2005-08-17 22:59:46',2984,511,'2005-08-23 17:51:46',1,'2006-02-15 21:30:53'), - (12111,'2005-08-17 22:59:55',2905,317,'2005-08-22 19:33:55',2,'2006-02-15 21:30:53'), - (12112,'2005-08-17 23:00:31',4290,576,'2005-08-25 02:05:31',1,'2006-02-15 21:30:53'), - (12113,'2005-08-17 23:01:00',2707,393,'2005-08-25 03:57:00',2,'2006-02-15 21:30:53'), - (12114,'2005-08-17 23:02:00',1405,65,'2005-08-26 18:02:00',1,'2006-02-15 21:30:53'), - (12115,'2005-08-17 23:04:15',1228,457,'2005-08-20 22:25:15',2,'2006-02-15 21:30:53'), - (12116,'2006-02-14 15:16:03',3082,560,NULL,2,'2006-02-15 21:30:53'), - (12117,'2005-08-17 23:11:12',4140,303,'2005-08-22 23:56:12',1,'2006-02-15 21:30:53'), - (12118,'2005-08-17 23:14:25',158,89,'2005-08-26 22:26:25',1,'2006-02-15 21:30:53'), - (12119,'2005-08-17 23:16:44',4298,567,'2005-08-20 02:13:44',2,'2006-02-15 21:30:53'), - (12120,'2005-08-17 23:16:46',2912,323,'2005-08-19 00:11:46',2,'2006-02-15 21:30:53'), - (12121,'2005-08-17 23:20:40',3423,69,'2005-08-22 21:30:40',2,'2006-02-15 21:30:53'), - (12122,'2005-08-17 23:20:45',4030,375,'2005-08-25 04:23:45',2,'2006-02-15 21:30:53'), - (12123,'2005-08-17 23:22:18',361,497,'2005-08-19 23:36:18',2,'2006-02-15 21:30:53'), - (12124,'2005-08-17 23:22:46',2036,22,'2005-08-21 01:40:46',1,'2006-02-15 21:30:53'), - (12125,'2005-08-17 23:24:25',136,573,'2005-08-25 03:08:25',2,'2006-02-15 21:30:53'), - (12126,'2005-08-17 23:25:21',2304,302,'2005-08-23 21:51:21',1,'2006-02-15 21:30:53'), - (12127,'2006-02-14 15:16:03',4218,582,NULL,2,'2006-02-15 21:30:53'), - (12128,'2005-08-17 23:31:09',2252,415,'2005-08-24 05:07:09',2,'2006-02-15 21:30:53'), - (12129,'2005-08-17 23:31:25',891,146,'2005-08-26 19:10:25',2,'2006-02-15 21:30:53'), - (12130,'2006-02-14 15:16:03',1358,516,NULL,2,'2006-02-15 21:30:53'), - (12131,'2005-08-17 23:34:16',3380,21,'2005-08-26 01:18:16',1,'2006-02-15 21:30:53'), - (12132,'2005-08-17 23:37:03',2600,403,'2005-08-22 04:53:03',2,'2006-02-15 21:30:53'), - (12133,'2005-08-17 23:47:16',1958,132,'2005-08-19 03:46:16',2,'2006-02-15 21:30:53'), - (12134,'2005-08-17 23:49:43',2682,288,'2005-08-21 21:00:43',1,'2006-02-15 21:30:53'), - (12135,'2005-08-17 23:50:24',1019,381,'2005-08-23 18:01:24',2,'2006-02-15 21:30:53'), - (12136,'2005-08-17 23:51:30',3944,527,'2005-08-23 01:35:30',1,'2006-02-15 21:30:53'), - (12137,'2005-08-17 23:52:26',3632,109,'2005-08-27 00:19:26',1,'2006-02-15 21:30:53'), - (12138,'2005-08-17 23:55:54',388,317,'2005-08-26 23:32:54',1,'2006-02-15 21:30:53'), - (12139,'2005-08-17 23:57:13',1537,342,'2005-08-24 19:13:13',1,'2006-02-15 21:30:53'), - (12140,'2005-08-17 23:57:55',322,408,'2005-08-21 20:09:55',2,'2006-02-15 21:30:53'), - (12141,'2006-02-14 15:16:03',731,101,NULL,1,'2006-02-15 21:30:53'), - (12142,'2005-08-18 00:04:12',3748,373,'2005-08-24 01:24:12',2,'2006-02-15 21:30:53'), - (12143,'2005-08-18 00:06:26',2876,117,'2005-08-24 02:45:26',2,'2006-02-15 21:30:53'), - (12144,'2006-02-14 15:16:03',512,587,NULL,1,'2006-02-15 21:30:53'), - (12145,'2005-08-18 00:10:04',3482,5,'2005-08-26 00:51:04',1,'2006-02-15 21:30:53'), - (12146,'2005-08-18 00:10:04',3833,434,'2005-08-25 19:18:04',2,'2006-02-15 21:30:53'), - (12147,'2005-08-18 00:10:20',705,41,'2005-08-23 20:36:20',2,'2006-02-15 21:30:53'), - (12148,'2005-08-18 00:13:15',2409,254,'2005-08-20 01:27:15',2,'2006-02-15 21:30:53'), - (12149,'2005-08-18 00:13:51',3696,277,'2005-08-26 19:47:51',1,'2006-02-15 21:30:53'), - (12150,'2005-08-18 00:13:55',3781,555,'2005-08-20 23:35:55',2,'2006-02-15 21:30:53'), - (12151,'2005-08-18 00:14:03',1976,4,'2005-08-18 23:52:03',2,'2006-02-15 21:30:53'), - (12152,'2005-08-18 00:21:35',2797,367,'2005-08-22 02:51:35',1,'2006-02-15 21:30:53'), - (12153,'2005-08-18 00:22:30',3929,387,'2005-08-23 04:13:30',2,'2006-02-15 21:30:53'), - (12154,'2005-08-18 00:23:56',2491,163,'2005-08-21 00:31:56',2,'2006-02-15 21:30:53'), - (12155,'2005-08-18 00:24:30',2065,315,'2005-08-18 19:12:30',2,'2006-02-15 21:30:53'), - (12156,'2005-08-18 00:27:33',3270,212,'2005-08-26 01:43:33',1,'2006-02-15 21:30:53'), - (12157,'2005-08-18 00:33:45',2311,569,'2005-08-22 19:33:45',1,'2006-02-15 21:30:53'), - (12158,'2005-08-18 00:34:20',4121,289,'2005-08-22 20:10:20',2,'2006-02-15 21:30:53'), - (12159,'2005-08-18 00:36:09',2243,106,'2005-08-27 06:31:09',1,'2006-02-15 21:30:53'), - (12160,'2005-08-18 00:37:59',1328,481,'2005-08-19 20:51:59',1,'2006-02-15 21:30:53'), - (12161,'2005-08-18 00:41:46',2420,444,'2005-08-26 22:59:46',2,'2006-02-15 21:30:53'), - (12162,'2005-08-18 00:44:30',2697,284,'2005-08-25 03:34:30',1,'2006-02-15 21:30:53'), - (12163,'2005-08-18 00:46:01',1349,455,'2005-08-22 06:16:01',1,'2006-02-15 21:30:53'), - (12164,'2005-08-18 00:46:38',3849,587,'2005-08-19 04:38:38',2,'2006-02-15 21:30:53'), - (12165,'2005-08-18 00:53:37',4215,24,'2005-08-27 00:09:37',2,'2006-02-15 21:30:53'), - (12166,'2005-08-18 00:57:06',3627,184,'2005-08-26 03:13:06',2,'2006-02-15 21:30:53'), - (12167,'2005-08-18 01:00:02',3085,338,'2005-08-21 00:04:02',2,'2006-02-15 21:30:53'), - (12168,'2005-08-18 01:03:52',2859,535,'2005-08-18 20:19:52',1,'2006-02-15 21:30:53'), - (12169,'2005-08-18 01:05:54',2281,323,'2005-08-24 02:16:54',2,'2006-02-15 21:30:53'), - (12170,'2005-08-18 01:06:10',1125,289,'2005-08-25 02:40:10',2,'2006-02-15 21:30:53'), - (12171,'2005-08-18 01:06:13',454,457,'2005-08-22 19:39:13',2,'2006-02-15 21:30:53'), - (12172,'2005-08-18 01:07:00',1162,226,'2005-08-22 21:01:00',2,'2006-02-15 21:30:53'), - (12173,'2005-08-18 01:08:34',2830,41,'2005-08-24 20:52:34',1,'2006-02-15 21:30:53'), - (12174,'2005-08-18 01:08:53',1458,101,'2005-08-20 03:28:53',1,'2006-02-15 21:30:53'), - (12175,'2005-08-18 01:10:17',4558,328,'2005-08-19 05:25:17',2,'2006-02-15 21:30:53'), - (12176,'2005-08-18 01:10:33',3873,255,'2005-08-24 02:45:33',2,'2006-02-15 21:30:53'), - (12177,'2005-08-18 01:15:47',522,470,'2005-08-24 23:23:47',2,'2006-02-15 21:30:53'), - (12178,'2005-08-18 01:17:32',1152,276,'2005-08-25 19:32:32',1,'2006-02-15 21:30:53'), - (12179,'2005-08-18 01:21:21',1499,222,'2005-08-19 00:59:21',1,'2006-02-15 21:30:53'), - (12180,'2005-08-18 01:28:15',2276,20,'2005-08-20 20:52:15',2,'2006-02-15 21:30:53'), - (12181,'2005-08-18 01:28:18',532,81,'2005-08-23 21:17:18',2,'2006-02-15 21:30:53'), - (12182,'2005-08-18 01:30:19',296,555,'2005-08-21 05:52:19',1,'2006-02-15 21:30:53'), - (12183,'2005-08-18 01:34:13',3153,344,'2005-08-24 04:38:13',1,'2006-02-15 21:30:53'), - (12184,'2005-08-18 01:36:00',1723,51,'2005-08-21 01:59:00',1,'2006-02-15 21:30:53'), - (12185,'2005-08-18 01:40:14',1558,588,'2005-08-25 05:04:14',1,'2006-02-15 21:30:53'), - (12186,'2005-08-18 01:43:36',1342,312,'2005-08-23 07:13:36',1,'2006-02-15 21:30:53'), - (12187,'2005-08-18 01:45:50',3360,38,'2005-08-22 20:12:50',1,'2006-02-15 21:30:53'), - (12188,'2005-08-18 01:51:43',2989,456,'2005-08-18 22:23:43',1,'2006-02-15 21:30:53'), - (12189,'2005-08-18 01:51:44',1764,363,'2005-08-26 01:01:44',1,'2006-02-15 21:30:53'), - (12190,'2005-08-18 01:54:44',2464,28,'2005-08-27 04:32:44',1,'2006-02-15 21:30:53'), - (12191,'2005-08-18 01:57:11',2667,316,'2005-08-22 22:53:11',2,'2006-02-15 21:30:53'), - (12192,'2005-08-18 02:01:40',3450,270,'2005-08-21 05:45:40',1,'2006-02-15 21:30:53'), - (12193,'2005-08-18 02:03:59',1086,290,'2005-08-25 05:32:59',2,'2006-02-15 21:30:53'), - (12194,'2005-08-18 02:04:47',292,558,'2005-08-25 20:45:47',2,'2006-02-15 21:30:53'), - (12195,'2005-08-18 02:07:49',943,347,'2005-08-19 23:54:49',2,'2006-02-15 21:30:53'), - (12196,'2005-08-18 02:08:48',4302,111,'2005-08-26 00:39:48',1,'2006-02-15 21:30:53'), - (12197,'2005-08-18 02:08:58',3687,564,'2005-08-26 21:54:58',2,'2006-02-15 21:30:53'), - (12198,'2005-08-18 02:09:20',1628,86,'2005-08-21 21:28:20',2,'2006-02-15 21:30:53'), - (12199,'2005-08-18 02:09:23',424,96,'2005-08-22 20:33:23',1,'2006-02-15 21:30:53'), - (12200,'2005-08-18 02:12:33',840,52,'2005-08-18 20:47:33',2,'2006-02-15 21:30:53'), - (12201,'2005-08-18 02:14:06',3676,540,'2005-08-23 04:44:06',1,'2006-02-15 21:30:53'), - (12202,'2005-08-18 02:14:08',672,563,'2005-08-24 04:35:08',1,'2006-02-15 21:30:53'), - (12203,'2005-08-18 02:18:52',4228,591,'2005-08-22 21:01:52',1,'2006-02-15 21:30:53'), - (12204,'2005-08-18 02:20:35',304,575,'2005-08-26 01:27:35',2,'2006-02-15 21:30:53'), - (12205,'2005-08-18 02:21:08',774,437,'2005-08-27 00:08:08',2,'2006-02-15 21:30:53'), - (12206,'2005-08-18 02:22:20',3275,254,'2005-08-23 05:36:20',1,'2006-02-15 21:30:53'), - (12207,'2005-08-18 02:24:07',3745,265,'2005-08-22 07:53:07',1,'2006-02-15 21:30:53'), - (12208,'2005-08-18 02:25:25',2039,551,'2005-08-20 04:53:25',2,'2006-02-15 21:30:53'), - (12209,'2005-08-18 02:27:20',279,243,'2005-08-21 00:41:20',2,'2006-02-15 21:30:53'), - (12210,'2005-08-18 02:27:29',3035,217,'2005-08-20 23:32:29',2,'2006-02-15 21:30:53'), - (12211,'2005-08-18 02:31:18',1484,19,'2005-08-26 02:36:18',1,'2006-02-15 21:30:53'), - (12212,'2005-08-18 02:33:29',3898,449,'2005-08-25 07:10:29',2,'2006-02-15 21:30:53'), - (12213,'2005-08-18 02:33:55',4058,157,'2005-08-24 03:14:55',1,'2006-02-15 21:30:53'), - (12214,'2005-08-18 02:34:22',2094,231,'2005-08-21 07:48:22',2,'2006-02-15 21:30:53'), - (12215,'2005-08-18 02:35:39',4095,47,'2005-08-24 00:36:39',1,'2006-02-15 21:30:53'), - (12216,'2005-08-18 02:37:07',4139,131,'2005-08-19 02:09:07',2,'2006-02-15 21:30:53'), - (12217,'2005-08-18 02:44:44',2556,105,'2005-08-24 03:27:44',1,'2006-02-15 21:30:53'), - (12218,'2005-08-18 02:48:14',1933,70,'2005-08-21 01:52:14',2,'2006-02-15 21:30:53'), - (12219,'2005-08-18 02:49:54',2249,271,'2005-08-23 07:52:54',1,'2006-02-15 21:30:53'), - (12220,'2005-08-18 02:50:02',982,530,'2005-08-22 00:20:02',1,'2006-02-15 21:30:53'), - (12221,'2005-08-18 02:50:51',2488,98,'2005-08-27 06:22:51',2,'2006-02-15 21:30:53'), - (12222,'2006-02-14 15:16:03',3949,22,NULL,1,'2006-02-15 21:30:53'), - (12223,'2005-08-18 02:58:40',4142,397,'2005-08-23 23:30:40',2,'2006-02-15 21:30:53'), - (12224,'2005-08-18 02:59:09',1781,372,'2005-08-19 06:22:09',1,'2006-02-15 21:30:53'), - (12225,'2005-08-18 03:00:11',1876,306,'2005-08-24 05:01:11',1,'2006-02-15 21:30:53'), - (12226,'2005-08-18 03:00:48',682,234,'2005-08-25 00:43:48',2,'2006-02-15 21:30:53'), - (12227,'2005-08-18 03:04:28',3671,591,'2005-08-21 08:52:28',2,'2006-02-15 21:30:53'), - (12228,'2005-08-18 03:08:10',2772,9,'2005-08-20 02:48:10',1,'2006-02-15 21:30:53'), - (12229,'2005-08-18 03:08:23',1123,382,'2005-08-22 03:42:23',1,'2006-02-15 21:30:53'), - (12230,'2005-08-18 03:11:04',1910,231,'2005-08-27 04:06:04',1,'2006-02-15 21:30:53'), - (12231,'2005-08-18 03:11:44',1115,231,'2005-08-24 03:26:44',1,'2006-02-15 21:30:53'), - (12232,'2005-08-18 03:14:14',2399,87,'2005-08-19 05:44:14',2,'2006-02-15 21:30:53'), - (12233,'2005-08-18 03:16:54',174,535,'2005-08-22 04:48:54',2,'2006-02-15 21:30:53'), - (12234,'2005-08-18 03:17:33',3823,352,'2005-08-25 04:44:33',2,'2006-02-15 21:30:53'), - (12235,'2005-08-18 03:17:50',957,595,'2005-08-20 02:49:50',1,'2006-02-15 21:30:53'), - (12236,'2005-08-18 03:19:29',1190,474,'2005-08-23 07:39:29',2,'2006-02-15 21:30:53'), - (12237,'2005-08-18 03:24:38',4422,381,'2005-08-25 09:05:38',1,'2006-02-15 21:30:53'), - (12238,'2005-08-18 03:25:08',4043,46,'2005-08-20 02:41:08',2,'2006-02-15 21:30:53'), - (12239,'2005-08-18 03:26:42',1948,75,'2005-08-24 23:48:42',1,'2006-02-15 21:30:53'), - (12240,'2005-08-18 03:27:11',1168,30,'2005-08-26 04:34:11',2,'2006-02-15 21:30:53'), - (12241,'2005-08-18 03:33:17',1261,248,'2005-08-21 03:13:17',2,'2006-02-15 21:30:53'), - (12242,'2005-08-18 03:37:31',2095,121,'2005-08-25 06:50:31',1,'2006-02-15 21:30:53'), - (12243,'2005-08-18 03:38:54',1829,354,'2005-08-27 06:56:54',2,'2006-02-15 21:30:53'), - (12244,'2005-08-18 03:39:11',4441,362,'2005-08-21 02:57:11',2,'2006-02-15 21:30:53'), - (12245,'2005-08-18 03:46:40',2960,576,'2005-08-24 22:27:40',2,'2006-02-15 21:30:53'), - (12246,'2005-08-18 03:48:41',3199,258,'2005-08-25 05:12:41',1,'2006-02-15 21:30:53'), - (12247,'2005-08-18 03:51:51',2264,254,'2005-08-24 05:36:51',2,'2006-02-15 21:30:53'), - (12248,'2005-08-18 03:53:18',2120,562,'2005-08-22 04:53:18',1,'2006-02-15 21:30:53'), - (12249,'2005-08-18 03:53:34',3586,135,'2005-08-21 01:14:34',1,'2006-02-15 21:30:53'), - (12250,'2005-08-18 03:57:29',921,1,'2005-08-22 23:05:29',1,'2006-02-15 21:30:53'), - (12251,'2005-08-18 03:59:02',3044,276,'2005-08-19 02:38:02',1,'2006-02-15 21:30:53'), - (12252,'2005-08-18 03:59:51',127,350,'2005-08-25 08:54:51',2,'2006-02-15 21:30:53'), - (12253,'2005-08-18 04:00:50',566,446,'2005-08-19 04:43:50',1,'2006-02-15 21:30:53'), - (12254,'2005-08-18 04:05:29',2858,6,'2005-08-23 04:17:29',1,'2006-02-15 21:30:53'), - (12255,'2005-08-18 04:07:20',2100,266,'2005-08-21 22:19:20',1,'2006-02-15 21:30:53'), - (12256,'2005-08-18 04:09:39',2975,572,'2005-08-22 01:53:39',2,'2006-02-15 21:30:53'), - (12257,'2005-08-18 04:11:03',269,87,'2005-08-25 01:20:03',2,'2006-02-15 21:30:53'), - (12258,'2005-08-18 04:11:13',2861,83,'2005-08-21 23:40:13',2,'2006-02-15 21:30:53'), - (12259,'2005-08-18 04:14:35',2904,429,'2005-08-18 22:30:35',2,'2006-02-15 21:30:53'), - (12260,'2005-08-18 04:15:43',1352,150,'2005-08-26 23:31:43',1,'2006-02-15 21:30:53'), - (12261,'2005-08-18 04:16:06',4076,485,'2005-08-27 08:04:06',1,'2006-02-15 21:30:53'), - (12262,'2005-08-18 04:16:15',591,125,'2005-08-20 09:16:15',1,'2006-02-15 21:30:53'), - (12263,'2005-08-18 04:16:18',4053,131,'2005-08-21 07:22:18',1,'2006-02-15 21:30:53'), - (12264,'2005-08-18 04:17:33',3073,87,'2005-08-26 08:07:33',1,'2006-02-15 21:30:53'), - (12265,'2005-08-18 04:22:01',537,247,'2005-08-20 03:22:01',1,'2006-02-15 21:30:53'), - (12266,'2005-08-18 04:22:31',2192,467,'2005-08-19 04:25:31',2,'2006-02-15 21:30:53'), - (12267,'2005-08-18 04:24:30',652,388,'2005-08-26 03:01:30',2,'2006-02-15 21:30:53'), - (12268,'2005-08-18 04:26:54',93,39,'2005-08-23 06:40:54',2,'2006-02-15 21:30:53'), - (12269,'2005-08-18 04:27:54',724,573,'2005-08-25 07:03:54',1,'2006-02-15 21:30:53'), - (12270,'2005-08-18 04:32:05',2456,190,'2005-08-21 01:37:05',2,'2006-02-15 21:30:53'), - (12271,'2005-08-18 04:33:11',3866,471,'2005-08-20 23:10:11',1,'2006-02-15 21:30:53'), - (12272,'2005-08-18 04:39:10',1964,15,'2005-08-24 09:41:10',1,'2006-02-15 21:30:53'), - (12273,'2005-08-18 04:40:50',3539,431,'2005-08-25 01:44:50',2,'2006-02-15 21:30:53'), - (12274,'2005-08-18 04:41:47',265,47,'2005-08-27 07:00:47',1,'2006-02-15 21:30:53'), - (12275,'2005-08-18 04:42:02',1474,507,'2005-08-25 00:50:02',1,'2006-02-15 21:30:53'), - (12276,'2005-08-18 04:43:22',4491,397,'2005-08-22 01:49:22',2,'2006-02-15 21:30:53'), - (12277,'2006-02-14 15:16:03',407,33,NULL,2,'2006-02-15 21:30:53'), - (12278,'2005-08-18 04:46:45',3205,294,'2005-08-24 08:59:45',2,'2006-02-15 21:30:53'), - (12279,'2005-08-18 04:47:30',4159,421,'2005-08-19 09:47:30',2,'2006-02-15 21:30:53'), - (12280,'2005-08-18 04:49:27',4032,46,'2005-08-21 03:39:27',2,'2006-02-15 21:30:53'), - (12281,'2005-08-18 04:50:32',4576,417,'2005-08-21 00:14:32',2,'2006-02-15 21:30:53'), - (12282,'2005-08-18 04:54:20',3623,173,'2005-08-23 05:28:20',2,'2006-02-15 21:30:53'), - (12283,'2005-08-18 04:54:25',574,240,'2005-08-23 04:02:25',1,'2006-02-15 21:30:53'), - (12284,'2005-08-18 04:55:49',3162,147,'2005-08-22 08:45:49',2,'2006-02-15 21:30:53'), - (12285,'2005-08-18 04:56:43',3531,215,'2005-08-19 23:32:43',2,'2006-02-15 21:30:53'), - (12286,'2005-08-18 04:57:59',3729,34,'2005-08-18 23:20:59',2,'2006-02-15 21:30:53'), - (12287,'2005-08-18 04:58:06',2238,136,'2005-08-24 00:06:06',1,'2006-02-15 21:30:53'), - (12288,'2005-08-18 05:01:20',4401,523,'2005-08-25 09:51:20',2,'2006-02-15 21:30:53'), - (12289,'2005-08-18 05:05:28',443,575,'2005-08-26 09:02:28',1,'2006-02-15 21:30:53'), - (12290,'2005-08-18 05:08:03',4100,283,'2005-08-23 08:10:03',2,'2006-02-15 21:30:53'), - (12291,'2005-08-18 05:08:37',4270,73,'2005-08-23 09:01:37',1,'2006-02-15 21:30:53'), - (12292,'2005-08-18 05:08:54',1417,58,'2005-08-27 02:51:54',1,'2006-02-15 21:30:53'), - (12293,'2005-08-18 05:13:36',614,514,'2005-08-25 04:00:36',2,'2006-02-15 21:30:53'), - (12294,'2005-08-18 05:14:44',2479,4,'2005-08-27 01:32:44',2,'2006-02-15 21:30:53'), - (12295,'2005-08-18 05:15:46',1651,532,'2005-08-26 02:23:46',2,'2006-02-15 21:30:53'), - (12296,'2005-08-18 05:16:28',2091,258,'2005-08-22 10:32:28',1,'2006-02-15 21:30:53'), - (12297,'2005-08-18 05:19:57',903,436,'2005-08-21 00:53:57',1,'2006-02-15 21:30:53'), - (12298,'2005-08-18 05:30:31',904,46,'2005-08-27 07:33:31',1,'2006-02-15 21:30:53'), - (12299,'2005-08-18 05:32:32',892,176,'2005-08-22 08:14:32',2,'2006-02-15 21:30:53'), - (12300,'2005-08-18 05:36:14',3213,540,'2005-08-25 00:20:14',2,'2006-02-15 21:30:53'), - (12301,'2005-08-18 05:36:20',2293,317,'2005-08-23 03:15:20',1,'2006-02-15 21:30:53'), - (12302,'2005-08-18 05:41:39',765,514,'2005-08-22 06:02:39',1,'2006-02-15 21:30:53'), - (12303,'2005-08-18 05:43:22',1604,245,'2005-08-27 08:54:22',2,'2006-02-15 21:30:53'), - (12304,'2005-08-18 05:44:29',1381,228,'2005-08-24 04:31:29',1,'2006-02-15 21:30:53'), - (12305,'2005-08-18 05:46:29',4463,534,'2005-08-22 11:14:29',2,'2006-02-15 21:30:53'), - (12306,'2005-08-18 05:47:55',3853,541,'2005-08-21 01:56:55',1,'2006-02-15 21:30:53'), - (12307,'2005-08-18 05:48:23',2679,187,'2005-08-26 02:32:23',1,'2006-02-15 21:30:53'), - (12308,'2005-08-18 05:48:53',2877,569,'2005-08-22 09:03:53',1,'2006-02-15 21:30:53'), - (12309,'2005-08-18 05:58:40',762,9,'2005-08-20 02:20:40',2,'2006-02-15 21:30:53'), - (12310,'2005-08-18 06:02:34',3814,385,'2005-08-24 01:08:34',2,'2006-02-15 21:30:53'), - (12311,'2005-08-18 06:07:00',1650,211,'2005-08-21 07:54:00',2,'2006-02-15 21:30:53'), - (12312,'2005-08-18 06:07:26',80,185,'2005-08-21 02:07:26',2,'2006-02-15 21:30:53'), - (12313,'2005-08-18 06:07:31',2053,180,'2005-08-27 00:20:31',1,'2006-02-15 21:30:53'), - (12314,'2005-08-18 06:10:02',2204,455,'2005-08-25 02:48:02',1,'2006-02-15 21:30:53'), - (12315,'2005-08-18 06:15:06',2012,579,'2005-08-24 07:45:06',2,'2006-02-15 21:30:53'), - (12316,'2005-08-18 06:16:09',4325,94,'2005-08-27 05:54:09',2,'2006-02-15 21:30:53'), - (12317,'2005-08-18 06:17:06',90,510,'2005-08-22 08:56:06',1,'2006-02-15 21:30:53'), - (12318,'2005-08-18 06:21:56',3694,332,'2005-08-27 06:07:56',1,'2006-02-15 21:30:53'), - (12319,'2005-08-18 06:26:45',999,368,'2005-08-23 01:35:45',1,'2006-02-15 21:30:53'), - (12320,'2005-08-18 06:26:51',3248,267,'2005-08-20 04:00:51',1,'2006-02-15 21:30:53'), - (12321,'2005-08-18 06:27:05',516,274,'2005-08-24 02:26:05',1,'2006-02-15 21:30:53'), - (12322,'2005-08-18 06:35:28',4235,365,'2005-08-23 07:34:28',1,'2006-02-15 21:30:53'), - (12323,'2005-08-18 06:36:22',4107,336,'2005-08-26 11:36:22',1,'2006-02-15 21:30:53'), - (12324,'2005-08-18 06:38:20',2436,221,'2005-08-20 02:28:20',2,'2006-02-15 21:30:53'), - (12325,'2005-08-18 06:41:30',1844,404,'2005-08-26 02:49:30',1,'2006-02-15 21:30:53'), - (12326,'2005-08-18 06:41:59',1865,114,'2005-08-19 10:16:59',2,'2006-02-15 21:30:53'), - (12327,'2005-08-18 06:43:22',2425,261,'2005-08-25 10:50:22',2,'2006-02-15 21:30:53'), - (12328,'2005-08-18 06:43:56',1355,77,'2005-08-23 10:19:56',2,'2006-02-15 21:30:53'), - (12329,'2005-08-18 06:44:30',3127,397,'2005-08-25 04:05:30',1,'2006-02-15 21:30:53'), - (12330,'2005-08-18 06:46:33',889,587,'2005-08-26 11:35:33',2,'2006-02-15 21:30:53'), - (12331,'2005-08-18 06:47:19',4565,483,'2005-08-25 05:51:19',2,'2006-02-15 21:30:53'), - (12332,'2005-08-18 06:51:05',627,235,'2005-08-20 04:28:05',2,'2006-02-15 21:30:53'), - (12333,'2005-08-18 06:51:39',4370,18,'2005-08-21 01:44:39',2,'2006-02-15 21:30:53'), - (12334,'2005-08-18 06:52:36',2629,160,'2005-08-25 12:06:36',1,'2006-02-15 21:30:53'), - (12335,'2005-08-18 06:59:15',2776,150,'2005-08-20 06:47:15',1,'2006-02-15 21:30:53'), - (12336,'2005-08-18 06:59:41',2484,75,'2005-08-23 01:36:41',1,'2006-02-15 21:30:53'), - (12337,'2005-08-18 07:02:24',4221,117,'2005-08-20 10:11:24',1,'2006-02-15 21:30:53'), - (12338,'2005-08-18 07:04:24',274,408,'2005-08-19 08:36:24',2,'2006-02-15 21:30:53'), - (12339,'2005-08-18 07:05:06',1600,370,'2005-08-19 02:27:06',2,'2006-02-15 21:30:53'), - (12340,'2005-08-18 07:07:01',3561,239,'2005-08-20 05:06:01',1,'2006-02-15 21:30:53'), - (12341,'2005-08-18 07:09:27',130,154,'2005-08-21 03:44:27',1,'2006-02-15 21:30:53'), - (12342,'2005-08-18 07:12:46',1408,63,'2005-08-21 07:44:46',1,'2006-02-15 21:30:53'), - (12343,'2005-08-18 07:15:13',448,507,'2005-08-27 11:07:13',1,'2006-02-15 21:30:53'), - (12344,'2005-08-18 07:15:19',3675,269,'2005-08-24 04:58:19',2,'2006-02-15 21:30:53'), - (12345,'2005-08-18 07:16:58',2359,44,'2005-08-25 05:50:58',1,'2006-02-15 21:30:53'), - (12346,'2005-08-18 07:17:55',1200,265,'2005-08-21 11:35:55',2,'2006-02-15 21:30:53'), - (12347,'2005-08-18 07:18:10',1788,454,'2005-08-19 05:49:10',1,'2006-02-15 21:30:53'), - (12348,'2005-08-18 07:21:47',434,186,'2005-08-25 04:41:47',2,'2006-02-15 21:30:53'), - (12349,'2005-08-18 07:23:42',4191,545,'2005-08-19 04:25:42',1,'2006-02-15 21:30:53'), - (12350,'2005-08-18 07:29:46',1333,172,'2005-08-21 12:50:46',1,'2006-02-15 21:30:53'), - (12351,'2005-08-18 07:32:12',2299,95,'2005-08-24 04:29:12',2,'2006-02-15 21:30:53'), - (12352,'2006-02-14 15:16:03',643,155,NULL,1,'2006-02-15 21:30:53'), - (12353,'2005-08-18 07:33:08',1594,141,'2005-08-21 03:42:08',2,'2006-02-15 21:30:53'), - (12354,'2005-08-18 07:34:07',2913,499,'2005-08-26 05:56:07',1,'2006-02-15 21:30:53'), - (12355,'2005-08-18 07:36:23',4112,452,'2005-08-20 08:59:23',1,'2006-02-15 21:30:53'), - (12356,'2005-08-18 07:37:05',493,529,'2005-08-24 10:49:05',1,'2006-02-15 21:30:53'), - (12357,'2005-08-18 07:40:52',166,19,'2005-08-22 02:51:52',1,'2006-02-15 21:30:53'), - (12358,'2005-08-18 07:41:43',504,16,'2005-08-20 03:46:43',1,'2006-02-15 21:30:53'), - (12359,'2005-08-18 07:44:05',4172,28,'2005-08-19 02:26:05',1,'2006-02-15 21:30:53'), - (12360,'2005-08-18 07:46:35',929,123,'2005-08-26 12:01:35',1,'2006-02-15 21:30:53'), - (12361,'2005-08-18 07:47:31',1418,250,'2005-08-22 12:08:31',2,'2006-02-15 21:30:53'), - (12362,'2005-08-18 07:48:05',3131,367,'2005-08-20 05:16:05',2,'2006-02-15 21:30:53'), - (12363,'2005-08-18 07:52:49',3447,181,'2005-08-26 03:20:49',2,'2006-02-15 21:30:53'), - (12364,'2005-08-18 07:55:09',3398,84,'2005-08-19 05:29:09',2,'2006-02-15 21:30:53'), - (12365,'2005-08-18 07:55:09',4350,303,'2005-08-24 05:42:09',1,'2006-02-15 21:30:53'), - (12366,'2005-08-18 07:55:14',3799,115,'2005-08-22 06:12:14',1,'2006-02-15 21:30:53'), - (12367,'2005-08-18 07:57:14',1822,7,'2005-08-27 07:07:14',2,'2006-02-15 21:30:53'), - (12368,'2005-08-18 07:57:38',3777,392,'2005-08-25 05:49:38',2,'2006-02-15 21:30:53'), - (12369,'2005-08-18 07:57:43',484,337,'2005-08-26 09:36:43',1,'2006-02-15 21:30:53'), - (12370,'2005-08-18 07:57:47',3343,503,'2005-08-22 11:32:47',1,'2006-02-15 21:30:53'), - (12371,'2005-08-18 08:02:46',622,451,'2005-08-19 02:50:46',2,'2006-02-15 21:30:53'), - (12372,'2005-08-18 08:04:35',2982,131,'2005-08-27 08:13:35',2,'2006-02-15 21:30:53'), - (12373,'2005-08-18 08:07:25',777,367,'2005-08-27 03:41:25',1,'2006-02-15 21:30:53'), - (12374,'2005-08-18 08:07:45',939,74,'2005-08-26 10:42:45',2,'2006-02-15 21:30:53'), - (12375,'2005-08-18 08:20:08',3508,365,'2005-08-21 08:50:08',2,'2006-02-15 21:30:53'), - (12376,'2005-08-18 08:20:29',852,116,'2005-08-20 13:20:29',1,'2006-02-15 21:30:53'), - (12377,'2005-08-18 08:26:05',4564,31,'2005-08-23 02:51:05',2,'2006-02-15 21:30:53'), - (12378,'2005-08-18 08:26:13',4418,266,'2005-08-19 07:21:13',1,'2006-02-15 21:30:53'), - (12379,'2005-08-18 08:26:48',2879,99,'2005-08-19 10:08:48',2,'2006-02-15 21:30:53'), - (12380,'2005-08-18 08:27:28',55,215,'2005-08-25 02:58:28',2,'2006-02-15 21:30:53'), - (12381,'2005-08-18 08:31:43',3651,190,'2005-08-23 12:24:43',2,'2006-02-15 21:30:53'); -INSERT INTO rental VALUES (12382,'2005-08-18 08:32:33',3049,566,'2005-08-26 03:45:33',2,'2006-02-15 21:30:53'), - (12383,'2005-08-18 08:36:03',1641,295,'2005-08-23 03:30:03',2,'2006-02-15 21:30:53'), - (12384,'2005-08-18 08:36:58',2557,193,'2005-08-23 05:08:58',1,'2006-02-15 21:30:53'), - (12385,'2005-08-18 08:39:33',3143,146,'2005-08-21 14:22:33',1,'2006-02-15 21:30:53'), - (12386,'2005-08-18 08:45:57',3303,199,'2005-08-24 04:50:57',2,'2006-02-15 21:30:53'), - (12387,'2005-08-18 08:46:24',3604,530,'2005-08-21 02:56:24',2,'2006-02-15 21:30:53'), - (12388,'2005-08-18 08:48:09',4016,555,'2005-08-26 09:05:09',2,'2006-02-15 21:30:53'), - (12389,'2005-08-18 08:48:36',1891,394,'2005-08-22 08:59:36',2,'2006-02-15 21:30:53'), - (12390,'2005-08-18 08:51:42',3603,377,'2005-08-23 13:06:42',1,'2006-02-15 21:30:53'), - (12391,'2005-08-18 08:52:53',1507,307,'2005-08-22 12:15:53',2,'2006-02-15 21:30:53'), - (12392,'2005-08-18 08:57:58',2695,113,'2005-08-25 05:20:58',2,'2006-02-15 21:30:53'), - (12393,'2005-08-18 09:02:41',2435,396,'2005-08-26 12:47:41',1,'2006-02-15 21:30:53'), - (12394,'2005-08-18 09:05:15',3605,330,'2005-08-23 11:10:15',1,'2006-02-15 21:30:53'), - (12395,'2005-08-18 09:06:30',2020,541,'2005-08-21 12:09:30',2,'2006-02-15 21:30:53'), - (12396,'2005-08-18 09:11:23',3624,40,'2005-08-26 05:35:23',2,'2006-02-15 21:30:53'), - (12397,'2005-08-18 09:12:52',1872,371,'2005-08-27 10:44:52',2,'2006-02-15 21:30:53'), - (12398,'2005-08-18 09:13:24',4247,321,'2005-08-27 14:58:24',1,'2006-02-15 21:30:53'), - (12399,'2005-08-18 09:13:42',3950,347,'2005-08-27 11:44:42',1,'2006-02-15 21:30:53'), - (12400,'2005-08-18 09:19:12',1767,10,'2005-08-26 06:52:12',1,'2006-02-15 21:30:53'), - (12401,'2005-08-18 09:20:51',4314,479,'2005-08-21 05:50:51',2,'2006-02-15 21:30:53'), - (12402,'2005-08-18 09:27:34',385,123,'2005-08-25 13:10:34',2,'2006-02-15 21:30:53'), - (12403,'2005-08-18 09:31:05',2124,440,'2005-08-23 09:54:05',2,'2006-02-15 21:30:53'), - (12404,'2005-08-18 09:36:34',1097,342,'2005-08-23 10:12:34',2,'2006-02-15 21:30:53'), - (12405,'2005-08-18 09:37:30',228,266,'2005-08-27 13:11:30',2,'2006-02-15 21:30:53'), - (12406,'2005-08-18 09:38:02',4368,510,'2005-08-22 12:56:02',1,'2006-02-15 21:30:53'), - (12407,'2005-08-18 09:39:26',391,220,'2005-08-24 05:19:26',2,'2006-02-15 21:30:53'), - (12408,'2005-08-18 09:40:38',2360,143,'2005-08-19 04:45:38',1,'2006-02-15 21:30:53'), - (12409,'2005-08-18 09:43:58',2568,64,'2005-08-19 15:02:58',2,'2006-02-15 21:30:53'), - (12410,'2005-08-18 09:45:33',1904,210,'2005-08-27 08:50:33',1,'2006-02-15 21:30:53'), - (12411,'2005-08-18 09:47:57',1234,181,'2005-08-21 05:54:57',2,'2006-02-15 21:30:53'), - (12412,'2005-08-18 09:49:52',1578,75,'2005-08-23 12:32:52',2,'2006-02-15 21:30:53'), - (12413,'2005-08-18 09:50:34',3466,366,'2005-08-23 05:57:34',2,'2006-02-15 21:30:53'), - (12414,'2005-08-18 09:50:40',4454,32,'2005-08-26 06:45:40',2,'2006-02-15 21:30:53'), - (12415,'2005-08-18 09:54:01',392,443,'2005-08-24 15:41:01',1,'2006-02-15 21:30:53'), - (12416,'2005-08-18 09:56:48',3784,515,'2005-08-22 12:34:48',1,'2006-02-15 21:30:53'), - (12417,'2005-08-18 09:57:00',3500,71,'2005-08-19 08:56:00',1,'2006-02-15 21:30:53'), - (12418,'2005-08-18 09:59:36',4186,241,'2005-08-19 11:35:36',2,'2006-02-15 21:30:53'), - (12419,'2005-08-18 10:01:48',3111,133,'2005-08-19 13:40:48',1,'2006-02-15 21:30:53'), - (12420,'2005-08-18 10:01:50',452,477,'2005-08-22 08:14:50',1,'2006-02-15 21:30:53'), - (12421,'2005-08-18 10:04:06',4067,158,'2005-08-24 08:45:06',2,'2006-02-15 21:30:53'), - (12422,'2005-08-18 10:13:12',1855,451,'2005-08-20 14:36:12',2,'2006-02-15 21:30:53'), - (12423,'2005-08-18 10:14:52',1014,470,'2005-08-26 13:16:52',2,'2006-02-15 21:30:53'), - (12424,'2005-08-18 10:16:57',2055,319,'2005-08-27 04:41:57',1,'2006-02-15 21:30:53'), - (12425,'2005-08-18 10:18:06',2000,405,'2005-08-27 08:16:06',2,'2006-02-15 21:30:53'), - (12426,'2005-08-18 10:24:11',799,75,'2005-08-22 15:34:11',2,'2006-02-15 21:30:53'), - (12427,'2005-08-18 10:24:17',1759,333,'2005-08-27 14:22:17',1,'2006-02-15 21:30:53'), - (12428,'2005-08-18 10:24:21',3735,121,'2005-08-24 05:12:21',1,'2006-02-15 21:30:53'), - (12429,'2005-08-18 10:26:46',2994,436,'2005-08-27 13:23:46',1,'2006-02-15 21:30:53'), - (12430,'2005-08-18 10:32:41',2840,196,'2005-08-22 16:16:41',1,'2006-02-15 21:30:53'), - (12431,'2005-08-18 10:34:59',4461,89,'2005-08-22 14:42:59',1,'2006-02-15 21:30:53'), - (12432,'2005-08-18 10:35:13',2543,263,'2005-08-26 08:20:13',2,'2006-02-15 21:30:53'), - (12433,'2005-08-18 10:37:49',1776,552,'2005-08-19 08:00:49',1,'2006-02-15 21:30:53'), - (12434,'2005-08-18 10:38:08',3078,314,'2005-08-22 16:14:08',2,'2006-02-15 21:30:53'), - (12435,'2005-08-18 10:38:31',3211,160,'2005-08-26 15:18:31',1,'2006-02-15 21:30:53'), - (12436,'2005-08-18 10:41:05',3761,499,'2005-08-23 07:36:05',2,'2006-02-15 21:30:53'), - (12437,'2005-08-18 10:42:43',4036,467,'2005-08-26 11:58:43',2,'2006-02-15 21:30:53'), - (12438,'2005-08-18 10:42:52',2043,186,'2005-08-25 11:42:52',1,'2006-02-15 21:30:53'), - (12439,'2005-08-18 10:44:57',3204,153,'2005-08-22 06:51:57',1,'2006-02-15 21:30:53'), - (12440,'2005-08-18 10:47:35',2779,474,'2005-08-21 11:10:35',2,'2006-02-15 21:30:53'), - (12441,'2005-08-18 10:47:57',2163,561,'2005-08-26 07:11:57',2,'2006-02-15 21:30:53'), - (12442,'2005-08-18 10:50:07',78,270,'2005-08-21 08:06:07',1,'2006-02-15 21:30:53'), - (12443,'2005-08-18 10:50:59',2048,233,'2005-08-26 07:48:59',2,'2006-02-15 21:30:53'), - (12444,'2005-08-18 10:53:12',1639,285,'2005-08-19 13:54:12',2,'2006-02-15 21:30:53'), - (12445,'2005-08-18 10:56:20',3347,350,'2005-08-21 16:46:20',1,'2006-02-15 21:30:53'), - (12446,'2005-08-18 10:56:29',2138,448,'2005-08-23 05:30:29',1,'2006-02-15 21:30:53'), - (12447,'2005-08-18 10:57:01',4084,469,'2005-08-27 06:05:01',1,'2006-02-15 21:30:53'), - (12448,'2005-08-18 10:59:04',3889,72,'2005-08-21 06:45:04',2,'2006-02-15 21:30:53'), - (12449,'2005-08-18 11:03:04',663,285,'2005-08-19 07:34:04',1,'2006-02-15 21:30:53'), - (12450,'2005-08-18 11:04:04',3439,518,'2005-08-22 07:24:04',1,'2006-02-15 21:30:53'), - (12451,'2005-08-18 11:04:42',2780,183,'2005-08-20 08:20:42',1,'2006-02-15 21:30:53'), - (12452,'2005-08-18 11:14:35',4260,358,'2005-08-27 09:09:35',1,'2006-02-15 21:30:53'), - (12453,'2005-08-18 11:17:07',2487,104,'2005-08-25 12:34:07',1,'2006-02-15 21:30:53'), - (12454,'2005-08-18 11:19:02',4219,184,'2005-08-19 12:00:02',2,'2006-02-15 21:30:53'), - (12455,'2005-08-18 11:19:47',4478,46,'2005-08-22 16:08:47',2,'2006-02-15 21:30:53'), - (12456,'2005-08-18 11:21:51',4578,85,'2005-08-21 13:28:51',1,'2006-02-15 21:30:53'), - (12457,'2006-02-14 15:16:03',2145,80,NULL,2,'2006-02-15 21:30:53'), - (12458,'2005-08-18 11:22:53',4579,277,'2005-08-22 14:30:53',2,'2006-02-15 21:30:53'), - (12459,'2005-08-18 11:25:11',421,39,'2005-08-22 06:13:11',1,'2006-02-15 21:30:53'), - (12460,'2005-08-18 11:25:13',3550,419,'2005-08-27 06:27:13',2,'2006-02-15 21:30:53'), - (12461,'2005-08-18 11:28:14',1569,27,'2005-08-21 09:47:14',1,'2006-02-15 21:30:53'), - (12462,'2005-08-18 11:28:55',890,574,'2005-08-20 12:06:55',2,'2006-02-15 21:30:53'), - (12463,'2005-08-18 11:31:34',30,214,'2005-08-23 12:04:34',1,'2006-02-15 21:30:53'), - (12464,'2005-08-18 11:33:34',1954,157,'2005-08-27 14:33:34',1,'2006-02-15 21:30:53'), - (12465,'2005-08-18 11:35:02',1733,486,'2005-08-21 11:52:02',2,'2006-02-15 21:30:53'), - (12466,'2005-08-18 11:36:55',2686,462,'2005-08-23 13:46:55',1,'2006-02-15 21:30:53'), - (12467,'2005-08-18 11:40:09',1414,212,'2005-08-19 13:33:09',2,'2006-02-15 21:30:53'), - (12468,'2005-08-18 11:41:47',1689,80,'2005-08-24 16:43:47',2,'2006-02-15 21:30:53'), - (12469,'2005-08-18 11:53:07',2395,237,'2005-08-24 16:00:07',1,'2006-02-15 21:30:53'), - (12470,'2005-08-18 11:55:42',1290,82,'2005-08-24 08:27:42',2,'2006-02-15 21:30:53'), - (12471,'2005-08-18 11:57:00',242,101,'2005-08-26 13:17:00',2,'2006-02-15 21:30:53'), - (12472,'2005-08-18 11:58:48',4458,297,'2005-08-27 16:37:48',2,'2006-02-15 21:30:53'), - (12473,'2005-08-18 11:59:44',1237,303,'2005-08-21 13:38:44',1,'2006-02-15 21:30:53'), - (12474,'2005-08-18 12:10:03',2240,78,'2005-08-27 17:05:03',1,'2006-02-15 21:30:53'), - (12475,'2005-08-18 12:14:21',3118,401,'2005-08-24 14:43:21',2,'2006-02-15 21:30:53'), - (12476,'2005-08-18 12:22:40',2784,122,'2005-08-20 17:29:40',2,'2006-02-15 21:30:53'), - (12477,'2005-08-18 12:25:01',4516,74,'2005-08-25 17:25:01',2,'2006-02-15 21:30:53'), - (12478,'2005-08-18 12:25:16',4512,42,'2005-08-22 06:27:16',2,'2006-02-15 21:30:53'), - (12479,'2005-08-18 12:26:37',1119,401,'2005-08-21 18:08:37',2,'2006-02-15 21:30:53'), - (12480,'2005-08-18 12:26:43',3339,446,'2005-08-26 13:23:43',1,'2006-02-15 21:30:53'), - (12481,'2005-08-18 12:31:34',2424,218,'2005-08-21 16:08:34',2,'2006-02-15 21:30:53'), - (12482,'2005-08-18 12:37:36',3778,247,'2005-08-26 09:53:36',1,'2006-02-15 21:30:53'), - (12483,'2005-08-18 12:38:37',1805,488,'2005-08-24 13:26:37',1,'2006-02-15 21:30:53'), - (12484,'2005-08-18 12:39:37',3690,300,'2005-08-24 08:47:37',2,'2006-02-15 21:30:53'), - (12485,'2005-08-18 12:41:41',422,345,'2005-08-22 16:38:41',2,'2006-02-15 21:30:53'), - (12486,'2005-08-18 12:42:50',2991,515,'2005-08-27 13:41:50',2,'2006-02-15 21:30:53'), - (12487,'2005-08-18 12:45:24',2554,485,'2005-08-22 12:39:24',1,'2006-02-15 21:30:53'), - (12488,'2005-08-18 12:48:22',3323,29,'2005-08-19 16:19:22',1,'2006-02-15 21:30:53'), - (12489,'2006-02-14 15:16:03',387,60,NULL,2,'2006-02-15 21:30:53'), - (12490,'2005-08-18 12:48:45',1577,187,'2005-08-27 15:53:45',1,'2006-02-15 21:30:53'), - (12491,'2005-08-18 12:48:45',2354,247,'2005-08-22 12:40:45',2,'2006-02-15 21:30:53'), - (12492,'2005-08-18 12:49:04',2839,224,'2005-08-26 17:55:04',1,'2006-02-15 21:30:53'), - (12493,'2005-08-18 12:53:38',3029,487,'2005-08-27 13:15:38',2,'2006-02-15 21:30:53'), - (12494,'2005-08-18 12:53:49',3845,522,'2005-08-26 15:52:49',1,'2006-02-15 21:30:53'), - (12495,'2005-08-18 12:56:37',1225,102,'2005-08-22 06:58:37',1,'2006-02-15 21:30:53'), - (12496,'2005-08-18 12:58:25',456,489,'2005-08-27 18:43:25',2,'2006-02-15 21:30:53'), - (12497,'2005-08-18 12:58:40',824,388,'2005-08-24 08:24:40',1,'2006-02-15 21:30:53'), - (12498,'2005-08-18 13:01:08',1063,408,'2005-08-21 13:12:08',1,'2006-02-15 21:30:53'), - (12499,'2005-08-18 13:05:37',2611,42,'2005-08-19 07:41:37',1,'2006-02-15 21:30:53'), - (12500,'2005-08-18 13:05:51',36,310,'2005-08-19 14:54:51',2,'2006-02-15 21:30:53'), - (12501,'2005-08-18 13:13:13',728,173,'2005-08-23 07:24:13',2,'2006-02-15 21:30:53'), - (12502,'2005-08-18 13:16:31',2153,235,'2005-08-19 17:47:31',1,'2006-02-15 21:30:53'), - (12503,'2005-08-18 13:16:46',3548,379,'2005-08-19 10:24:46',2,'2006-02-15 21:30:53'), - (12504,'2005-08-18 13:17:07',4429,44,'2005-08-24 09:13:07',2,'2006-02-15 21:30:53'), - (12505,'2005-08-18 13:17:30',3741,406,'2005-08-23 18:03:30',1,'2006-02-15 21:30:53'), - (12506,'2006-02-14 15:16:03',1132,114,NULL,2,'2006-02-15 21:30:53'), - (12507,'2005-08-18 13:19:13',199,584,'2005-08-27 11:48:13',2,'2006-02-15 21:30:53'), - (12508,'2005-08-18 13:20:13',1059,29,'2005-08-22 12:55:13',1,'2006-02-15 21:30:53'), - (12509,'2005-08-18 13:21:52',2462,175,'2005-08-20 12:14:52',2,'2006-02-15 21:30:53'), - (12510,'2005-08-18 13:22:25',3051,394,'2005-08-27 17:38:25',2,'2006-02-15 21:30:53'), - (12511,'2005-08-18 13:23:19',919,447,'2005-08-22 11:43:19',2,'2006-02-15 21:30:53'), - (12512,'2005-08-18 13:28:27',3959,148,'2005-08-26 19:08:27',2,'2006-02-15 21:30:53'), - (12513,'2005-08-18 13:31:45',29,527,'2005-08-25 08:26:45',1,'2006-02-15 21:30:53'), - (12514,'2005-08-18 13:33:55',3310,400,'2005-08-23 12:50:55',2,'2006-02-15 21:30:53'), - (12515,'2005-08-18 13:39:26',2703,63,'2005-08-22 09:05:26',1,'2006-02-15 21:30:53'), - (12516,'2005-08-18 13:39:53',1332,302,'2005-08-20 08:33:53',1,'2006-02-15 21:30:53'), - (12517,'2005-08-18 13:40:20',2908,520,'2005-08-27 14:04:20',1,'2006-02-15 21:30:53'), - (12518,'2005-08-18 13:41:32',3860,264,'2005-08-23 13:01:32',1,'2006-02-15 21:30:53'), - (12519,'2005-08-18 13:42:14',2394,203,'2005-08-24 16:44:14',1,'2006-02-15 21:30:53'), - (12520,'2005-08-18 13:42:45',681,52,'2005-08-23 12:54:45',2,'2006-02-15 21:30:53'), - (12521,'2005-08-18 13:43:07',1022,369,'2005-08-21 07:53:07',1,'2006-02-15 21:30:53'), - (12522,'2005-08-18 13:45:40',4435,342,'2005-08-27 17:05:40',1,'2006-02-15 21:30:53'), - (12523,'2005-08-18 13:45:41',888,230,'2005-08-27 10:46:41',1,'2006-02-15 21:30:53'), - (12524,'2006-02-14 15:16:03',857,438,NULL,1,'2006-02-15 21:30:53'), - (12525,'2005-08-18 13:48:31',2357,96,'2005-08-23 13:04:31',2,'2006-02-15 21:30:53'), - (12526,'2005-08-18 13:48:43',3541,54,'2005-08-19 10:05:43',1,'2006-02-15 21:30:53'), - (12527,'2005-08-18 13:48:46',2536,459,'2005-08-26 13:31:46',2,'2006-02-15 21:30:53'), - (12528,'2005-08-18 13:52:41',3381,398,'2005-08-27 09:09:41',2,'2006-02-15 21:30:53'), - (12529,'2005-08-18 13:53:36',1956,382,'2005-08-19 18:20:36',2,'2006-02-15 21:30:53'), - (12530,'2005-08-18 13:54:48',1054,521,'2005-08-26 08:58:48',2,'2006-02-15 21:30:53'), - (12531,'2005-08-18 13:57:50',2771,27,'2005-08-22 09:46:50',2,'2006-02-15 21:30:53'), - (12532,'2005-08-18 13:57:58',114,184,'2005-08-24 14:58:58',2,'2006-02-15 21:30:53'), - (12533,'2005-08-18 14:01:40',795,331,'2005-08-20 15:32:40',1,'2006-02-15 21:30:53'), - (12534,'2005-08-18 14:04:41',995,187,'2005-08-25 16:57:41',1,'2006-02-15 21:30:53'), - (12535,'2005-08-18 14:05:22',2944,516,'2005-08-25 16:35:22',1,'2006-02-15 21:30:53'), - (12536,'2005-08-18 14:06:06',2343,373,'2005-08-25 14:21:06',1,'2006-02-15 21:30:53'), - (12537,'2005-08-18 14:06:39',57,56,'2005-08-25 09:36:39',2,'2006-02-15 21:30:53'), - (12538,'2005-08-18 14:09:09',1373,118,'2005-08-23 19:12:09',1,'2006-02-15 21:30:53'), - (12539,'2005-08-18 14:10:09',3259,136,'2005-08-19 19:44:09',2,'2006-02-15 21:30:53'), - (12540,'2005-08-18 14:17:30',2826,304,'2005-08-26 15:33:30',2,'2006-02-15 21:30:53'), - (12541,'2005-08-18 14:18:30',4357,584,'2005-08-26 10:24:30',1,'2006-02-15 21:30:53'), - (12542,'2005-08-18 14:21:11',1920,230,'2005-08-20 16:06:11',2,'2006-02-15 21:30:53'), - (12543,'2005-08-18 14:23:55',330,324,'2005-08-20 12:42:55',1,'2006-02-15 21:30:53'), - (12544,'2005-08-18 14:25:51',3783,354,'2005-08-26 18:42:51',1,'2006-02-15 21:30:53'), - (12545,'2005-08-18 14:28:00',1988,168,'2005-08-26 14:10:00',1,'2006-02-15 21:30:53'), - (12546,'2005-08-18 14:29:37',610,30,'2005-08-26 09:47:37',1,'2006-02-15 21:30:53'), - (12547,'2005-08-18 14:29:39',3046,591,'2005-08-22 16:52:39',2,'2006-02-15 21:30:53'), - (12548,'2005-08-18 14:35:26',750,426,'2005-08-27 18:58:26',1,'2006-02-15 21:30:53'), - (12549,'2005-08-18 14:38:07',1010,377,'2005-08-21 08:45:07',1,'2006-02-15 21:30:53'), - (12550,'2005-08-18 14:40:38',4267,138,'2005-08-19 13:33:38',2,'2006-02-15 21:30:53'), - (12551,'2005-08-18 14:46:26',2195,15,'2005-08-19 16:59:26',2,'2006-02-15 21:30:53'), - (12552,'2005-08-18 14:46:34',4303,413,'2005-08-20 11:02:34',2,'2006-02-15 21:30:53'), - (12553,'2005-08-18 14:46:54',2893,454,'2005-08-22 13:41:54',1,'2006-02-15 21:30:53'), - (12554,'2005-08-18 14:47:28',715,404,'2005-08-25 14:34:28',2,'2006-02-15 21:30:53'), - (12555,'2005-08-18 14:49:22',4434,557,'2005-08-26 14:11:22',2,'2006-02-15 21:30:53'), - (12556,'2005-08-18 14:49:55',1984,3,'2005-08-24 15:20:55',2,'2006-02-15 21:30:53'), - (12557,'2005-08-18 14:51:03',313,364,'2005-08-19 13:30:03',2,'2006-02-15 21:30:53'), - (12558,'2005-08-18 14:52:35',167,289,'2005-08-26 09:45:35',2,'2006-02-15 21:30:53'), - (12559,'2005-08-18 14:53:58',39,513,'2005-08-25 20:22:58',1,'2006-02-15 21:30:53'), - (12560,'2005-08-18 14:54:19',829,596,'2005-08-27 13:39:19',1,'2006-02-15 21:30:53'), - (12561,'2005-08-18 14:58:51',812,392,'2005-08-20 10:53:51',1,'2006-02-15 21:30:53'), - (12562,'2005-08-18 15:00:03',529,212,'2005-08-23 12:55:03',2,'2006-02-15 21:30:53'), - (12563,'2005-08-18 15:08:29',2552,393,'2005-08-27 15:15:29',1,'2006-02-15 21:30:53'), - (12564,'2005-08-18 15:11:35',263,348,'2005-08-22 11:45:35',2,'2006-02-15 21:30:53'), - (12565,'2005-08-18 15:12:17',1284,211,'2005-08-19 12:26:17',2,'2006-02-15 21:30:53'), - (12566,'2005-08-18 15:13:04',1684,407,'2005-08-21 19:29:04',2,'2006-02-15 21:30:53'), - (12567,'2005-08-18 15:14:36',2931,308,'2005-08-26 18:56:36',1,'2006-02-15 21:30:53'), - (12568,'2005-08-18 15:15:44',2654,569,'2005-08-22 19:32:44',2,'2006-02-15 21:30:53'), - (12569,'2005-08-18 15:20:46',1009,29,'2005-08-24 12:38:46',2,'2006-02-15 21:30:53'), - (12570,'2005-08-18 15:23:31',3973,211,'2005-08-22 09:59:31',2,'2006-02-15 21:30:53'), - (12571,'2005-08-18 15:31:18',1013,591,'2005-08-23 15:20:18',2,'2006-02-15 21:30:53'), - (12572,'2005-08-18 15:32:54',1366,253,'2005-08-21 10:30:54',1,'2006-02-15 21:30:53'), - (12573,'2005-08-18 15:32:57',1416,182,'2005-08-21 18:29:57',2,'2006-02-15 21:30:53'), - (12574,'2006-02-14 15:16:03',177,317,NULL,2,'2006-02-15 21:30:53'), - (12575,'2005-08-18 15:37:42',3441,117,'2005-08-25 19:17:42',1,'2006-02-15 21:30:53'), - (12576,'2005-08-18 15:38:31',329,119,'2005-08-22 21:29:31',2,'2006-02-15 21:30:53'), - (12577,'2005-08-18 15:39:46',4134,16,'2005-08-25 18:05:46',2,'2006-02-15 21:30:53'), - (12578,'2005-08-18 15:47:11',930,514,'2005-08-21 10:55:11',1,'2006-02-15 21:30:53'), - (12579,'2005-08-18 15:47:49',3021,547,'2005-08-20 18:12:49',2,'2006-02-15 21:30:53'), - (12580,'2005-08-18 15:49:08',1197,53,'2005-08-24 11:03:08',2,'2006-02-15 21:30:53'), - (12581,'2005-08-18 15:49:15',4309,70,'2005-08-23 20:18:15',1,'2006-02-15 21:30:53'), - (12582,'2005-08-18 15:51:12',4467,462,'2005-08-20 12:05:12',1,'2006-02-15 21:30:53'), - (12583,'2005-08-18 15:51:36',3090,108,'2005-08-20 18:47:36',2,'2006-02-15 21:30:53'), - (12584,'2005-08-18 15:51:36',4487,371,'2005-08-25 19:21:36',1,'2006-02-15 21:30:53'), - (12585,'2005-08-18 15:52:12',773,110,'2005-08-22 21:00:12',1,'2006-02-15 21:30:53'), - (12586,'2005-08-18 15:54:39',4245,460,'2005-08-21 19:29:39',1,'2006-02-15 21:30:53'), - (12587,'2005-08-18 16:03:13',3081,499,'2005-08-25 19:30:13',1,'2006-02-15 21:30:53'), - (12588,'2005-08-18 16:04:45',694,415,'2005-08-23 20:30:45',1,'2006-02-15 21:30:53'), - (12589,'2005-08-18 16:06:31',956,275,'2005-08-27 17:20:31',1,'2006-02-15 21:30:53'), - (12590,'2005-08-18 16:11:35',2624,308,'2005-08-23 10:35:35',1,'2006-02-15 21:30:53'), - (12591,'2005-08-18 16:16:41',723,546,'2005-08-24 10:29:41',2,'2006-02-15 21:30:53'), - (12592,'2005-08-18 16:17:50',1618,305,'2005-08-25 20:20:50',1,'2006-02-15 21:30:53'), - (12593,'2005-08-18 16:17:54',4092,72,'2005-08-21 18:02:54',2,'2006-02-15 21:30:53'), - (12594,'2005-08-18 16:24:24',4421,198,'2005-08-25 15:45:24',1,'2006-02-15 21:30:53'), - (12595,'2005-08-18 16:27:08',1662,286,'2005-08-19 14:53:08',1,'2006-02-15 21:30:53'), - (12596,'2005-08-18 16:29:35',3662,378,'2005-08-24 16:48:35',1,'2006-02-15 21:30:53'), - (12597,'2005-08-18 16:34:02',3804,474,'2005-08-25 17:30:02',2,'2006-02-15 21:30:53'), - (12598,'2005-08-18 16:34:03',3159,340,'2005-08-22 16:44:03',1,'2006-02-15 21:30:53'), - (12599,'2005-08-18 16:42:45',2032,34,'2005-08-23 18:27:45',2,'2006-02-15 21:30:53'), - (12600,'2005-08-18 16:44:24',1475,171,'2005-08-25 17:28:24',1,'2006-02-15 21:30:53'), - (12601,'2005-08-18 16:47:52',3099,598,'2005-08-24 11:05:52',1,'2006-02-15 21:30:53'), - (12602,'2005-08-18 16:49:50',2001,533,'2005-08-21 11:13:50',2,'2006-02-15 21:30:53'), - (12603,'2005-08-18 16:56:20',2769,119,'2005-08-25 11:50:20',2,'2006-02-15 21:30:53'), - (12604,'2005-08-18 16:58:48',4127,12,'2005-08-19 19:36:48',1,'2006-02-15 21:30:53'), - (12605,'2005-08-18 16:59:37',1359,496,'2005-08-20 18:09:37',1,'2006-02-15 21:30:53'), - (12606,'2005-08-18 17:02:21',359,275,'2005-08-24 22:38:21',1,'2006-02-15 21:30:53'), - (12607,'2005-08-18 17:03:49',2130,526,'2005-08-19 18:29:49',1,'2006-02-15 21:30:53'), - (12608,'2005-08-18 17:05:15',624,366,'2005-08-23 17:00:15',2,'2006-02-15 21:30:53'), - (12609,'2005-08-18 17:06:22',2327,486,'2005-08-20 21:30:22',1,'2006-02-15 21:30:53'), - (12610,'2006-02-14 15:16:03',3181,269,NULL,1,'2006-02-15 21:30:53'), - (12611,'2005-08-18 17:09:42',1925,359,'2005-08-24 11:57:42',2,'2006-02-15 21:30:53'), - (12612,'2005-08-18 17:10:05',1035,129,'2005-08-26 15:55:05',2,'2006-02-15 21:30:53'), - (12613,'2005-08-18 17:16:01',3877,8,'2005-08-23 18:40:01',2,'2006-02-15 21:30:53'), - (12614,'2005-08-18 17:16:03',2233,60,'2005-08-26 16:56:03',2,'2006-02-15 21:30:53'), - (12615,'2005-08-18 17:16:07',2191,29,'2005-08-27 12:57:07',1,'2006-02-15 21:30:53'), - (12616,'2005-08-18 17:22:41',2952,476,'2005-08-25 18:52:41',2,'2006-02-15 21:30:53'), - (12617,'2005-08-18 17:22:48',3573,564,'2005-08-24 17:40:48',2,'2006-02-15 21:30:53'), - (12618,'2005-08-18 17:24:02',302,117,'2005-08-19 15:22:02',1,'2006-02-15 21:30:53'), - (12619,'2005-08-18 17:24:15',980,592,'2005-08-21 15:56:15',1,'2006-02-15 21:30:53'), - (12620,'2005-08-18 17:26:38',2663,221,'2005-08-25 13:24:38',1,'2006-02-15 21:30:53'), - (12621,'2005-08-18 17:31:36',4566,439,'2005-08-24 16:43:36',2,'2006-02-15 21:30:53'), - (12622,'2005-08-18 17:34:11',278,529,'2005-08-24 16:10:11',1,'2006-02-15 21:30:53'), - (12623,'2005-08-18 17:34:19',3670,177,'2005-08-20 21:30:19',1,'2006-02-15 21:30:53'), - (12624,'2005-08-18 17:35:00',1135,434,'2005-08-27 12:18:00',2,'2006-02-15 21:30:53'), - (12625,'2005-08-18 17:36:19',2645,108,'2005-08-23 11:42:19',1,'2006-02-15 21:30:53'), - (12626,'2005-08-18 17:36:45',4230,361,'2005-08-26 17:12:45',1,'2006-02-15 21:30:53'), - (12627,'2005-08-18 17:37:11',3760,150,'2005-08-19 14:59:11',2,'2006-02-15 21:30:53'), - (12628,'2005-08-18 17:40:25',3210,520,'2005-08-25 13:39:25',1,'2006-02-15 21:30:53'), - (12629,'2005-08-18 17:40:33',1705,459,'2005-08-26 21:09:33',1,'2006-02-15 21:30:53'), - (12630,'2005-08-18 17:49:28',1457,452,'2005-08-24 12:23:28',1,'2006-02-15 21:30:53'), - (12631,'2005-08-18 17:52:51',2782,339,'2005-08-25 14:40:51',2,'2006-02-15 21:30:53'), - (12632,'2005-08-18 17:54:21',827,381,'2005-08-22 18:58:21',1,'2006-02-15 21:30:53'), - (12633,'2005-08-18 17:55:38',4341,469,'2005-08-23 17:19:38',2,'2006-02-15 21:30:53'), - (12634,'2005-08-18 17:58:14',1037,549,'2005-08-19 21:08:14',2,'2006-02-15 21:30:53'), - (12635,'2005-08-18 18:00:23',331,15,'2005-08-23 16:40:23',2,'2006-02-15 21:30:53'), - (12636,'2005-08-18 18:00:29',1645,380,'2005-08-26 20:08:29',2,'2006-02-15 21:30:53'), - (12637,'2005-08-18 18:06:53',4005,145,'2005-08-19 17:36:53',1,'2006-02-15 21:30:53'), - (12638,'2005-08-18 18:11:39',2849,172,'2005-08-25 21:54:39',2,'2006-02-15 21:30:53'), - (12639,'2005-08-18 18:13:05',562,500,'2005-08-27 16:00:05',2,'2006-02-15 21:30:53'), - (12640,'2005-08-18 18:14:49',1715,544,'2005-08-24 21:25:49',1,'2006-02-15 21:30:53'), - (12641,'2005-08-18 18:18:08',776,467,'2005-08-19 23:17:08',1,'2006-02-15 21:30:53'), - (12642,'2005-08-18 18:19:16',2080,167,'2005-08-20 17:30:16',2,'2006-02-15 21:30:53'), - (12643,'2005-08-18 18:21:06',2245,165,'2005-08-24 14:26:06',1,'2006-02-15 21:30:53'), - (12644,'2005-08-18 18:22:27',1511,300,'2005-08-26 00:01:27',1,'2006-02-15 21:30:53'), - (12645,'2006-02-14 15:16:03',1658,457,NULL,1,'2006-02-15 21:30:53'), - (12646,'2005-08-18 18:25:06',3103,388,'2005-08-24 18:45:06',1,'2006-02-15 21:30:53'), - (12647,'2005-08-18 18:29:51',323,520,'2005-08-27 22:51:51',1,'2006-02-15 21:30:53'), - (12648,'2005-08-18 18:30:21',3545,519,'2005-08-25 19:17:21',1,'2006-02-15 21:30:53'), - (12649,'2005-08-18 18:31:47',3201,530,'2005-08-22 21:07:47',2,'2006-02-15 21:30:53'), - (12650,'2005-08-18 18:33:20',3237,276,'2005-08-21 17:45:20',2,'2006-02-15 21:30:53'), - (12651,'2005-08-18 18:36:16',8,34,'2005-08-22 22:01:16',1,'2006-02-15 21:30:53'), - (12652,'2005-08-18 18:48:58',2118,9,'2005-08-21 14:15:58',1,'2006-02-15 21:30:53'), - (12653,'2005-08-18 18:53:17',3353,78,'2005-08-26 14:08:17',1,'2006-02-15 21:30:53'), - (12654,'2005-08-18 18:56:40',2217,438,'2005-08-20 17:51:40',2,'2006-02-15 21:30:53'), - (12655,'2005-08-18 18:57:44',859,533,'2005-08-27 22:40:44',2,'2006-02-15 21:30:53'), - (12656,'2005-08-18 18:58:35',3981,286,'2005-08-21 00:41:35',1,'2006-02-15 21:30:53'), - (12657,'2005-08-18 19:02:16',3621,100,'2005-08-21 14:59:16',1,'2006-02-15 21:30:53'), - (12658,'2005-08-18 19:05:42',4320,193,'2005-08-19 19:08:42',1,'2006-02-15 21:30:53'), - (12659,'2005-08-18 19:05:49',336,329,'2005-08-24 22:12:49',2,'2006-02-15 21:30:53'), - (12660,'2005-08-18 19:07:23',414,21,'2005-08-27 17:20:23',2,'2006-02-15 21:30:53'), - (12661,'2005-08-18 19:10:10',1547,333,'2005-08-22 20:30:10',1,'2006-02-15 21:30:53'), - (12662,'2005-08-18 19:10:41',1412,75,'2005-08-23 16:59:41',1,'2006-02-15 21:30:53'), - (12663,'2005-08-18 19:10:52',1163,375,'2005-08-19 15:46:52',1,'2006-02-15 21:30:53'), - (12664,'2005-08-18 19:10:54',2732,577,'2005-08-25 19:19:54',1,'2006-02-15 21:30:53'), - (12665,'2006-02-14 15:16:03',1701,410,NULL,2,'2006-02-15 21:30:53'), - (12666,'2005-08-18 19:11:41',4156,251,'2005-08-21 18:04:41',2,'2006-02-15 21:30:53'), - (12667,'2005-08-18 19:11:45',104,545,'2005-08-27 13:34:45',2,'2006-02-15 21:30:53'), - (12668,'2005-08-18 19:16:47',1986,14,'2005-08-19 16:31:47',1,'2006-02-15 21:30:53'), - (12669,'2005-08-18 19:17:47',4530,433,'2005-08-24 14:55:47',1,'2006-02-15 21:30:53'), - (12670,'2005-08-18 19:17:58',1716,580,'2005-08-23 20:54:58',2,'2006-02-15 21:30:53'), - (12671,'2005-08-18 19:19:59',1734,577,'2005-08-23 17:53:59',2,'2006-02-15 21:30:53'), - (12672,'2006-02-14 15:16:03',1722,228,NULL,1,'2006-02-15 21:30:53'), - (12673,'2005-08-18 19:21:56',4204,535,'2005-08-26 22:44:56',2,'2006-02-15 21:30:53'), - (12674,'2005-08-18 19:24:56',636,185,'2005-08-26 22:16:56',2,'2006-02-15 21:30:53'), - (12675,'2005-08-18 19:34:02',569,140,'2005-08-23 13:36:02',2,'2006-02-15 21:30:53'), - (12676,'2005-08-18 19:34:40',2581,393,'2005-08-20 18:03:40',2,'2006-02-15 21:30:53'), - (12677,'2005-08-18 19:36:05',1311,334,'2005-08-22 21:23:05',2,'2006-02-15 21:30:53'), - (12678,'2005-08-18 19:41:27',2504,181,'2005-08-23 15:14:27',2,'2006-02-15 21:30:53'), - (12679,'2005-08-18 19:42:11',1535,463,'2005-08-25 01:01:11',1,'2006-02-15 21:30:53'), - (12680,'2005-08-18 19:43:46',833,259,'2005-08-27 00:08:46',2,'2006-02-15 21:30:53'), - (12681,'2005-08-18 19:48:06',1570,518,'2005-08-23 15:05:06',2,'2006-02-15 21:30:53'), - (12682,'2006-02-14 15:16:03',1148,245,NULL,2,'2006-02-15 21:30:53'), - (12683,'2005-08-18 19:50:43',1802,166,'2005-08-26 00:47:43',1,'2006-02-15 21:30:53'), - (12684,'2005-08-18 19:51:27',978,196,'2005-08-19 15:56:27',1,'2006-02-15 21:30:53'), - (12685,'2005-08-18 19:51:29',4283,114,'2005-08-27 14:58:29',2,'2006-02-15 21:30:53'), - (12686,'2005-08-18 19:55:09',501,385,'2005-08-26 14:17:09',1,'2006-02-15 21:30:53'), - (12687,'2005-08-18 19:57:39',3092,285,'2005-08-27 01:36:39',2,'2006-02-15 21:30:53'), - (12688,'2005-08-18 19:59:54',2315,65,'2005-08-26 18:52:54',2,'2006-02-15 21:30:53'), - (12689,'2005-08-18 20:06:34',1066,296,'2005-08-22 20:11:34',2,'2006-02-15 21:30:53'), - (12690,'2005-08-18 20:06:57',3574,361,'2005-08-24 20:54:57',2,'2006-02-15 21:30:53'), - (12691,'2005-08-18 20:07:46',3744,534,'2005-08-26 18:49:46',2,'2006-02-15 21:30:53'), - (12692,'2005-08-18 20:09:19',2781,273,'2005-08-21 00:14:19',1,'2006-02-15 21:30:53'), - (12693,'2005-08-18 20:10:19',1543,584,'2005-08-25 21:11:19',1,'2006-02-15 21:30:53'), - (12694,'2005-08-18 20:10:39',1741,268,'2005-08-25 20:47:39',1,'2006-02-15 21:30:53'), - (12695,'2005-08-18 20:11:35',446,483,'2005-08-25 18:29:35',1,'2006-02-15 21:30:53'), - (12696,'2005-08-18 20:13:08',3989,374,'2005-08-19 18:02:08',2,'2006-02-15 21:30:53'), - (12697,'2005-08-18 20:14:56',2774,152,'2005-08-23 21:54:56',1,'2006-02-15 21:30:53'), - (12698,'2006-02-14 15:16:03',3657,497,NULL,1,'2006-02-15 21:30:53'), - (12699,'2005-08-18 20:20:59',3695,66,'2005-08-22 17:00:59',1,'2006-02-15 21:30:53'), - (12700,'2005-08-18 20:24:46',540,397,'2005-08-23 21:50:46',1,'2006-02-15 21:30:53'), - (12701,'2005-08-18 20:26:47',2337,489,'2005-08-26 23:36:47',2,'2006-02-15 21:30:53'), - (12702,'2005-08-18 20:30:33',1884,474,'2005-08-27 01:22:33',2,'2006-02-15 21:30:53'), - (12703,'2005-08-18 20:37:13',1278,453,'2005-08-26 16:13:13',1,'2006-02-15 21:30:53'), - (12704,'2005-08-18 20:43:00',51,93,'2005-08-21 22:28:00',2,'2006-02-15 21:30:53'), - (12705,'2005-08-18 20:44:14',2342,517,'2005-08-23 20:46:14',1,'2006-02-15 21:30:53'), - (12706,'2005-08-18 20:44:34',1079,170,'2005-08-26 21:47:34',1,'2006-02-15 21:30:53'), - (12707,'2005-08-18 20:52:02',1565,426,'2005-08-25 19:03:02',2,'2006-02-15 21:30:53'), - (12708,'2005-08-18 20:59:17',3448,28,'2005-08-24 22:40:17',1,'2006-02-15 21:30:53'), - (12709,'2005-08-18 20:59:51',3878,476,'2005-08-26 01:21:51',2,'2006-02-15 21:30:53'), - (12710,'2005-08-18 21:02:50',3011,310,'2005-08-26 15:07:50',2,'2006-02-15 21:30:53'), - (12711,'2005-08-18 21:03:32',2530,122,'2005-08-26 17:31:32',1,'2006-02-15 21:30:53'), - (12712,'2005-08-18 21:04:13',2628,444,'2005-08-25 18:15:13',2,'2006-02-15 21:30:53'), - (12713,'2005-08-18 21:07:28',1505,56,'2005-08-24 17:46:28',1,'2006-02-15 21:30:53'), - (12714,'2005-08-18 21:08:01',868,372,'2005-08-27 17:09:01',2,'2006-02-15 21:30:53'), - (12715,'2005-08-18 21:09:38',3768,266,'2005-08-21 20:25:38',1,'2006-02-15 21:30:53'), - (12716,'2006-02-14 15:16:03',858,570,NULL,2,'2006-02-15 21:30:53'), - (12717,'2005-08-18 21:15:40',3551,167,'2005-08-20 00:59:40',2,'2006-02-15 21:30:53'), - (12718,'2005-08-18 21:21:44',3221,176,'2005-08-20 01:01:44',1,'2006-02-15 21:30:53'), - (12719,'2006-02-14 15:16:03',1094,87,NULL,2,'2006-02-15 21:30:53'), - (12720,'2005-08-18 21:28:42',2676,419,'2005-08-25 18:02:42',1,'2006-02-15 21:30:53'), - (12721,'2005-08-18 21:30:12',1045,239,'2005-08-22 22:45:12',1,'2006-02-15 21:30:53'), - (12722,'2005-08-18 21:33:53',913,416,'2005-08-27 23:47:53',2,'2006-02-15 21:30:53'), - (12723,'2005-08-18 21:34:16',4167,430,'2005-08-22 22:37:16',1,'2006-02-15 21:30:53'), - (12724,'2005-08-18 21:37:20',2224,242,'2005-08-27 21:56:20',2,'2006-02-15 21:30:53'), - (12725,'2005-08-18 21:43:09',4071,51,'2005-08-23 18:50:09',1,'2006-02-15 21:30:53'), - (12726,'2005-08-18 21:44:46',20,397,'2005-08-19 21:58:46',2,'2006-02-15 21:30:53'), - (12727,'2005-08-18 21:45:15',15,178,'2005-08-24 15:52:15',1,'2006-02-15 21:30:53'), - (12728,'2005-08-18 21:47:48',3156,129,'2005-08-25 16:13:48',1,'2006-02-15 21:30:53'), - (12729,'2005-08-18 21:52:59',3711,424,'2005-08-21 00:02:59',1,'2006-02-15 21:30:53'), - (12730,'2005-08-18 21:55:01',75,7,'2005-08-22 01:23:01',1,'2006-02-15 21:30:53'), - (12731,'2005-08-18 21:55:38',1719,128,'2005-08-23 20:30:38',1,'2006-02-15 21:30:53'), - (12732,'2005-08-18 21:57:50',3307,535,'2005-08-19 18:28:50',2,'2006-02-15 21:30:53'), - (12733,'2005-08-18 21:59:00',3243,144,'2005-08-24 02:25:00',1,'2006-02-15 21:30:53'), - (12734,'2005-08-18 22:04:52',3619,121,'2005-08-25 00:34:52',1,'2006-02-15 21:30:53'), - (12735,'2005-08-18 22:04:54',3679,383,'2005-08-23 21:19:54',2,'2006-02-15 21:30:53'), - (12736,'2006-02-14 15:16:03',3591,244,NULL,2,'2006-02-15 21:30:53'), - (12737,'2005-08-18 22:11:37',736,204,'2005-08-26 04:08:37',1,'2006-02-15 21:30:53'), - (12738,'2005-08-18 22:11:47',4313,589,'2005-08-27 17:55:47',2,'2006-02-15 21:30:53'), - (12739,'2005-08-18 22:15:18',4129,292,'2005-08-27 00:37:18',2,'2006-02-15 21:30:53'), - (12740,'2005-08-18 22:17:04',1157,330,'2005-08-23 23:42:04',1,'2006-02-15 21:30:53'), - (12741,'2005-08-18 22:17:05',2084,435,'2005-08-25 20:07:05',2,'2006-02-15 21:30:53'), - (12742,'2005-08-18 22:22:03',1742,68,'2005-08-22 04:01:03',1,'2006-02-15 21:30:53'), - (12743,'2005-08-18 22:22:31',2630,565,'2005-08-27 00:31:31',1,'2006-02-15 21:30:53'), - (12744,'2005-08-18 22:22:36',3815,593,'2005-08-24 00:26:36',1,'2006-02-15 21:30:53'), - (12745,'2005-08-18 22:22:45',262,24,'2005-08-20 01:44:45',2,'2006-02-15 21:30:53'), - (12746,'2006-02-14 15:16:03',1012,211,NULL,1,'2006-02-15 21:30:53'), - (12747,'2005-08-18 22:28:22',4075,549,'2005-08-22 22:25:22',2,'2006-02-15 21:30:53'), - (12748,'2005-08-18 22:29:05',3249,373,'2005-08-24 18:25:05',2,'2006-02-15 21:30:53'), - (12749,'2005-08-18 22:31:21',828,388,'2005-08-20 22:53:21',1,'2006-02-15 21:30:53'), - (12750,'2005-08-18 22:32:39',3717,535,'2005-08-26 01:54:39',1,'2006-02-15 21:30:53'), - (12751,'2005-08-18 22:33:22',2791,352,'2005-08-20 20:28:22',2,'2006-02-15 21:30:53'), - (12752,'2005-08-18 22:33:36',3595,514,'2005-08-27 23:55:36',1,'2006-02-15 21:30:53'), - (12753,'2005-08-18 22:37:39',1494,470,'2005-08-27 00:21:39',2,'2006-02-15 21:30:53'), - (12754,'2005-08-18 22:37:41',4154,134,'2005-08-27 20:17:41',2,'2006-02-15 21:30:53'), - (12755,'2005-08-18 22:38:47',105,439,'2005-08-22 23:58:47',1,'2006-02-15 21:30:53'), - (12756,'2005-08-18 22:52:13',1840,89,'2005-08-21 17:22:13',1,'2006-02-15 21:30:53'), - (12757,'2005-08-18 22:57:45',1095,147,'2005-08-21 22:43:45',1,'2006-02-15 21:30:53'), - (12758,'2005-08-18 22:58:34',2279,30,'2005-08-22 23:33:34',1,'2006-02-15 21:30:53'), - (12759,'2006-02-14 15:16:03',4193,354,NULL,2,'2006-02-15 21:30:53'), - (12760,'2005-08-18 23:03:19',4188,363,'2005-08-24 17:53:19',1,'2006-02-15 21:30:53'), - (12761,'2005-08-18 23:05:22',2684,364,'2005-08-22 01:08:22',2,'2006-02-15 21:30:53'), - (12762,'2005-08-18 23:06:54',3909,502,'2005-08-21 18:30:54',1,'2006-02-15 21:30:53'), - (12763,'2005-08-18 23:07:01',393,472,'2005-08-21 18:45:01',1,'2006-02-15 21:30:53'), - (12764,'2005-08-18 23:14:15',26,183,'2005-08-22 20:23:15',1,'2006-02-15 21:30:53'), - (12765,'2005-08-18 23:21:50',2244,298,'2005-08-28 04:42:50',2,'2006-02-15 21:30:53'), - (12766,'2005-08-18 23:25:20',3737,50,'2005-08-27 04:43:20',1,'2006-02-15 21:30:53'), - (12767,'2005-08-18 23:25:49',3351,432,'2005-08-28 02:40:49',2,'2006-02-15 21:30:53'), - (12768,'2005-08-18 23:26:11',1993,458,'2005-08-19 20:31:11',2,'2006-02-15 21:30:53'), - (12769,'2005-08-18 23:26:40',926,504,'2005-08-25 03:03:40',1,'2006-02-15 21:30:53'), - (12770,'2005-08-18 23:29:00',1654,575,'2005-08-26 20:57:00',2,'2006-02-15 21:30:53'), - (12771,'2005-08-18 23:29:23',3076,484,'2005-08-22 17:31:23',2,'2006-02-15 21:30:53'), - (12772,'2005-08-18 23:29:25',1179,397,'2005-08-23 20:32:25',1,'2006-02-15 21:30:53'), - (12773,'2005-08-18 23:32:19',4390,360,'2005-08-27 04:40:19',1,'2006-02-15 21:30:53'), - (12774,'2005-08-18 23:34:22',3601,21,'2005-08-28 05:00:22',2,'2006-02-15 21:30:53'), - (12775,'2005-08-18 23:35:56',4374,54,'2005-08-26 18:37:56',1,'2006-02-15 21:30:53'), - (12776,'2005-08-18 23:37:33',2345,55,'2005-08-23 03:07:33',1,'2006-02-15 21:30:53'), - (12777,'2005-08-18 23:39:22',3467,130,'2005-08-27 20:28:22',1,'2006-02-15 21:30:53'), - (12778,'2005-08-18 23:40:23',3626,290,'2005-08-19 18:14:23',2,'2006-02-15 21:30:53'), - (12779,'2005-08-18 23:44:00',1814,325,'2005-08-26 05:27:00',2,'2006-02-15 21:30:53'), - (12780,'2005-08-18 23:48:16',54,373,'2005-08-20 18:13:16',2,'2006-02-15 21:30:53'), - (12781,'2005-08-18 23:50:24',1187,168,'2005-08-21 02:31:24',1,'2006-02-15 21:30:53'), - (12782,'2005-08-18 23:56:23',1454,495,'2005-08-25 18:47:23',1,'2006-02-15 21:30:53'), - (12783,'2005-08-19 00:01:14',1109,503,'2005-08-21 22:02:14',2,'2006-02-15 21:30:53'), - (12784,'2005-08-19 00:02:46',447,513,'2005-08-20 04:39:46',1,'2006-02-15 21:30:53'), - (12785,'2005-08-19 00:05:49',4190,145,'2005-08-21 04:39:49',2,'2006-02-15 21:30:53'), - (12786,'2006-02-14 15:16:03',97,512,NULL,1,'2006-02-15 21:30:53'), - (12787,'2005-08-19 00:07:58',2023,278,'2005-08-24 00:42:58',2,'2006-02-15 21:30:53'), - (12788,'2005-08-19 00:15:09',644,90,'2005-08-27 21:54:09',1,'2006-02-15 21:30:53'), - (12789,'2005-08-19 00:16:19',2412,557,'2005-08-25 00:18:19',2,'2006-02-15 21:30:53'), - (12790,'2005-08-19 00:16:54',1281,44,'2005-08-26 02:00:54',1,'2006-02-15 21:30:53'), - (12791,'2005-08-19 00:17:09',3594,573,'2005-08-22 23:46:09',1,'2006-02-15 21:30:53'), - (12792,'2006-02-14 15:16:03',1435,405,NULL,2,'2006-02-15 21:30:53'), - (12793,'2005-08-19 00:20:36',1195,403,'2005-08-28 02:43:36',1,'2006-02-15 21:30:53'), - (12794,'2005-08-19 00:20:37',1586,336,'2005-08-26 01:48:37',1,'2006-02-15 21:30:53'), - (12795,'2005-08-19 00:21:52',2745,360,'2005-08-22 22:13:52',2,'2006-02-15 21:30:53'), - (12796,'2005-08-19 00:22:24',1285,368,'2005-08-19 22:53:24',2,'2006-02-15 21:30:53'), - (12797,'2005-08-19 00:24:08',1595,5,'2005-08-21 22:53:08',2,'2006-02-15 21:30:53'), - (12798,'2005-08-19 00:24:33',4244,534,'2005-08-21 23:01:33',2,'2006-02-15 21:30:53'), - (12799,'2005-08-19 00:27:01',3885,197,'2005-08-22 03:30:01',2,'2006-02-15 21:30:53'), - (12800,'2005-08-19 00:27:11',257,545,'2005-08-22 01:08:11',1,'2006-02-15 21:30:53'), - (12801,'2005-08-19 00:27:19',960,202,'2005-08-26 03:10:19',1,'2006-02-15 21:30:53'), - (12802,'2005-08-19 00:27:41',2461,462,'2005-08-28 03:24:41',1,'2006-02-15 21:30:53'), - (12803,'2005-08-19 00:28:21',1058,390,'2005-08-23 02:02:21',1,'2006-02-15 21:30:53'), - (12804,'2005-08-19 00:33:15',147,365,'2005-08-28 02:16:15',2,'2006-02-15 21:30:53'), - (12805,'2005-08-19 00:36:34',2964,345,'2005-08-26 20:38:34',1,'2006-02-15 21:30:53'), - (12806,'2005-08-19 00:37:26',4488,423,'2005-08-23 18:49:26',2,'2006-02-15 21:30:53'), - (12807,'2005-08-19 00:38:46',2323,513,'2005-08-28 03:37:46',2,'2006-02-15 21:30:53'), - (12808,'2005-08-19 00:40:41',3920,55,'2005-08-21 06:39:41',2,'2006-02-15 21:30:53'), - (12809,'2005-08-19 00:42:24',2005,22,'2005-08-23 06:06:24',1,'2006-02-15 21:30:53'), - (12810,'2005-08-19 00:44:10',1340,250,'2005-08-22 22:30:10',2,'2006-02-15 21:30:53'), - (12811,'2005-08-19 00:51:28',641,54,'2005-08-24 01:57:28',2,'2006-02-15 21:30:53'), - (12812,'2005-08-19 00:54:02',4024,450,'2005-08-22 20:35:02',2,'2006-02-15 21:30:53'), - (12813,'2005-08-19 00:54:22',3285,500,'2005-08-19 21:17:22',2,'2006-02-15 21:30:53'), - (12814,'2005-08-19 00:58:24',204,465,'2005-08-21 05:46:24',1,'2006-02-15 21:30:53'), - (12815,'2005-08-19 00:59:42',435,588,'2005-08-25 21:43:42',2,'2006-02-15 21:30:53'), - (12816,'2005-08-19 01:04:05',4051,342,'2005-08-24 01:25:05',1,'2006-02-15 21:30:53'), - (12817,'2005-08-19 01:04:35',1246,113,'2005-08-25 21:14:35',1,'2006-02-15 21:30:53'), - (12818,'2005-08-19 01:04:59',3069,528,'2005-08-26 21:39:59',2,'2006-02-15 21:30:53'), - (12819,'2005-08-19 01:05:05',1117,542,'2005-08-22 05:50:05',1,'2006-02-15 21:30:53'), - (12820,'2005-08-19 01:05:08',2936,127,'2005-08-21 05:37:08',2,'2006-02-15 21:30:53'), - (12821,'2005-08-19 01:07:02',3418,41,'2005-08-23 01:22:02',2,'2006-02-15 21:30:53'), - (12822,'2005-08-19 01:15:24',419,426,'2005-08-20 06:38:24',1,'2006-02-15 21:30:53'), - (12823,'2005-08-19 01:15:47',426,316,'2005-08-22 05:32:47',2,'2006-02-15 21:30:53'), - (12824,'2005-08-19 01:18:00',1875,247,'2005-08-22 01:12:00',2,'2006-02-15 21:30:53'), - (12825,'2005-08-19 01:23:58',4495,328,'2005-08-20 00:19:58',2,'2006-02-15 21:30:53'), - (12826,'2005-08-19 01:25:11',1277,439,'2005-08-27 01:22:11',1,'2006-02-15 21:30:53'), - (12827,'2005-08-19 01:27:23',880,253,'2005-08-27 02:22:23',2,'2006-02-15 21:30:53'), - (12828,'2005-08-19 01:37:47',4208,378,'2005-08-24 22:31:47',2,'2006-02-15 21:30:53'), - (12829,'2005-08-19 01:38:18',1129,326,'2005-08-25 22:23:18',2,'2006-02-15 21:30:53'), - (12830,'2005-08-19 01:40:25',4080,409,'2005-08-20 23:49:25',2,'2006-02-15 21:30:53'), - (12831,'2005-08-19 01:40:43',1916,183,'2005-08-28 05:22:43',1,'2006-02-15 21:30:53'), - (12832,'2005-08-19 01:41:44',2820,563,'2005-08-24 23:15:44',2,'2006-02-15 21:30:53'), - (12833,'2005-08-19 01:42:28',3723,59,'2005-08-26 20:13:28',1,'2006-02-15 21:30:53'), - (12834,'2005-08-19 01:47:30',757,133,'2005-08-24 20:08:30',1,'2006-02-15 21:30:53'), - (12835,'2005-08-19 01:47:45',1477,124,'2005-08-26 00:58:45',2,'2006-02-15 21:30:53'), - (12836,'2005-08-19 01:48:33',1380,196,'2005-08-23 04:46:33',1,'2006-02-15 21:30:53'), - (12837,'2005-08-19 01:51:09',2288,495,'2005-08-22 07:14:09',2,'2006-02-15 21:30:53'), - (12838,'2005-08-19 01:51:50',1207,308,'2005-08-27 23:12:50',1,'2006-02-15 21:30:53'), - (12839,'2005-08-19 01:53:43',1970,360,'2005-08-28 02:27:43',2,'2006-02-15 21:30:53'), - (12840,'2005-08-19 01:54:11',2098,182,'2005-08-28 01:11:11',2,'2006-02-15 21:30:53'), - (12841,'2005-08-19 01:55:55',4233,257,'2005-08-24 02:56:55',1,'2006-02-15 21:30:53'), - (12842,'2005-08-19 01:57:21',2540,119,'2005-08-28 01:10:21',1,'2006-02-15 21:30:53'), - (12843,'2005-08-19 01:58:54',3279,128,'2005-08-20 00:20:54',2,'2006-02-15 21:30:53'), - (12844,'2005-08-19 01:59:08',4146,584,'2005-08-24 22:21:08',1,'2006-02-15 21:30:53'), - (12845,'2005-08-19 02:02:37',1698,106,'2005-08-22 01:08:37',1,'2006-02-15 21:30:53'), - (12846,'2005-08-19 02:03:26',286,305,'2005-08-25 07:39:26',2,'2006-02-15 21:30:53'), - (12847,'2005-08-19 02:04:07',384,91,'2005-08-23 20:13:07',2,'2006-02-15 21:30:53'), - (12848,'2005-08-19 02:05:11',2833,539,'2005-08-24 05:27:11',2,'2006-02-15 21:30:53'), - (12849,'2005-08-19 02:05:37',3489,280,'2005-08-23 07:00:37',1,'2006-02-15 21:30:53'), - (12850,'2005-08-19 02:08:06',1816,440,'2005-08-20 21:06:06',2,'2006-02-15 21:30:53'), - (12851,'2005-08-19 02:12:12',3311,194,'2005-08-25 23:51:12',1,'2006-02-15 21:30:53'), - (12852,'2005-08-19 02:12:40',2446,260,'2005-08-19 23:42:40',1,'2006-02-15 21:30:53'), - (12853,'2005-08-19 02:15:32',3753,232,'2005-08-27 21:26:32',2,'2006-02-15 21:30:53'), - (12854,'2005-08-19 02:18:51',4577,362,'2005-08-24 04:16:51',2,'2006-02-15 21:30:53'), - (12855,'2005-08-19 02:18:58',2900,242,'2005-08-19 20:50:58',1,'2006-02-15 21:30:53'), - (12856,'2005-08-19 02:19:13',132,4,'2005-08-23 07:49:13',2,'2006-02-15 21:30:53'), - (12857,'2005-08-19 02:20:13',4307,443,'2005-08-20 20:20:13',1,'2006-02-15 21:30:53'), - (12858,'2005-08-19 02:22:16',3024,144,'2005-08-26 07:25:16',2,'2006-02-15 21:30:53'), - (12859,'2005-08-19 02:23:23',2289,139,'2005-08-28 04:55:23',2,'2006-02-15 21:30:53'), - (12860,'2005-08-19 02:24:41',778,548,'2005-08-25 07:43:41',1,'2006-02-15 21:30:53'), - (12861,'2005-08-19 02:30:24',3115,287,'2005-08-22 08:23:24',1,'2006-02-15 21:30:53'), - (12862,'2005-08-19 02:31:59',473,198,'2005-08-26 08:16:59',2,'2006-02-15 21:30:53'), - (12863,'2005-08-19 02:35:59',780,234,'2005-08-21 21:13:59',1,'2006-02-15 21:30:53'), - (12864,'2005-08-19 02:38:26',4481,465,'2005-08-22 21:42:26',2,'2006-02-15 21:30:53'), - (12865,'2005-08-19 02:38:50',3437,460,'2005-08-21 02:33:50',1,'2006-02-15 21:30:53'), - (12866,'2005-08-19 02:39:47',1766,229,'2005-08-27 02:14:47',1,'2006-02-15 21:30:53'), - (12867,'2005-08-19 02:40:11',4499,330,'2005-08-20 04:01:11',1,'2006-02-15 21:30:53'), - (12868,'2005-08-19 02:47:19',4054,551,'2005-08-20 00:30:19',2,'2006-02-15 21:30:53'), - (12869,'2005-08-19 02:50:36',3939,99,'2005-08-26 21:38:36',2,'2006-02-15 21:30:53'), - (12870,'2005-08-19 02:54:38',991,86,'2005-08-27 00:45:38',1,'2006-02-15 21:30:53'), - (12871,'2005-08-19 02:55:36',2625,217,'2005-08-22 01:00:36',2,'2006-02-15 21:30:53'), - (12872,'2005-08-19 02:57:37',1975,54,'2005-08-22 23:23:37',1,'2006-02-15 21:30:53'), - (12873,'2005-08-19 03:05:41',2140,138,'2005-08-22 06:57:41',2,'2006-02-15 21:30:53'), - (12874,'2005-08-19 03:07:57',848,254,'2005-08-22 22:42:57',2,'2006-02-15 21:30:53'), - (12875,'2005-08-19 03:10:21',1708,483,'2005-08-26 01:00:21',2,'2006-02-15 21:30:53'), - (12876,'2005-08-19 03:12:19',803,356,'2005-08-20 02:24:19',2,'2006-02-15 21:30:53'), - (12877,'2005-08-19 03:16:58',1016,40,'2005-08-25 02:10:58',2,'2006-02-15 21:30:53'), - (12878,'2005-08-19 03:17:08',1182,596,'2005-08-23 03:44:08',1,'2006-02-15 21:30:53'), - (12879,'2005-08-19 03:22:55',3556,210,'2005-08-24 22:00:55',1,'2006-02-15 21:30:53'), - (12880,'2005-08-19 03:27:17',3386,552,'2005-08-28 06:16:17',2,'2006-02-15 21:30:53'), - (12881,'2005-08-19 03:28:13',1432,121,'2005-08-25 05:25:13',1,'2006-02-15 21:30:53'), - (12882,'2005-08-19 03:33:46',911,153,'2005-08-21 22:49:46',1,'2006-02-15 21:30:53'), - (12883,'2005-08-19 03:33:47',964,555,'2005-08-23 21:55:47',1,'2006-02-15 21:30:53'), - (12884,'2005-08-19 03:34:04',2768,348,'2005-08-28 01:00:04',2,'2006-02-15 21:30:53'), - (12885,'2005-08-19 03:37:25',883,185,'2005-08-20 22:10:25',1,'2006-02-15 21:30:53'), - (12886,'2005-08-19 03:38:32',2157,174,'2005-08-26 02:17:32',1,'2006-02-15 21:30:53'), - (12887,'2005-08-19 03:38:54',1214,150,'2005-08-27 08:45:54',1,'2006-02-15 21:30:53'), - (12888,'2005-08-19 03:41:09',4398,146,'2005-08-24 07:09:09',2,'2006-02-15 21:30:53'), - (12889,'2005-08-19 03:41:31',4376,515,'2005-08-27 00:46:31',2,'2006-02-15 21:30:53'), - (12890,'2005-08-19 03:42:08',3831,150,'2005-08-19 23:08:08',1,'2006-02-15 21:30:53'), - (12891,'2006-02-14 15:16:03',2764,388,NULL,2,'2006-02-15 21:30:53'), - (12892,'2005-08-19 03:46:34',1044,121,'2005-08-21 05:11:34',2,'2006-02-15 21:30:53'), - (12893,'2005-08-19 03:46:43',168,498,'2005-08-20 08:38:43',2,'2006-02-15 21:30:53'), - (12894,'2005-08-19 03:49:28',4581,541,'2005-08-25 01:51:28',2,'2006-02-15 21:30:53'), - (12895,'2005-08-19 03:50:48',4372,396,'2005-08-26 09:13:48',1,'2006-02-15 21:30:53'), - (12896,'2005-08-19 03:52:44',148,220,'2005-08-24 22:27:44',1,'2006-02-15 21:30:53'), - (12897,'2006-02-14 15:16:03',1512,178,NULL,2,'2006-02-15 21:30:53'), - (12898,'2005-08-19 03:54:34',1555,586,'2005-08-23 08:14:34',2,'2006-02-15 21:30:53'), - (12899,'2005-08-19 04:03:34',830,105,'2005-08-20 08:34:34',2,'2006-02-15 21:30:53'), - (12900,'2005-08-19 04:03:49',849,408,'2005-08-24 22:11:49',2,'2006-02-15 21:30:53'), - (12901,'2006-02-14 15:16:03',2799,180,NULL,2,'2006-02-15 21:30:53'), - (12902,'2006-02-14 15:16:03',464,91,NULL,2,'2006-02-15 21:30:53'), - (12903,'2005-08-19 04:09:38',2340,302,'2005-08-26 03:24:38',2,'2006-02-15 21:30:53'), - (12904,'2005-08-19 04:10:50',459,257,'2005-08-27 23:24:50',1,'2006-02-15 21:30:53'), - (12905,'2005-08-19 04:13:37',1043,480,'2005-08-26 23:52:37',1,'2006-02-15 21:30:53'), - (12906,'2005-08-19 04:13:43',2060,401,'2005-08-20 04:24:43',1,'2006-02-15 21:30:53'), - (12907,'2005-08-19 04:16:13',2844,422,'2005-08-27 02:43:13',1,'2006-02-15 21:30:53'), - (12908,'2005-08-19 04:19:05',175,340,'2005-08-25 09:50:05',1,'2006-02-15 21:30:53'), - (12909,'2005-08-19 04:20:25',4300,210,'2005-08-24 06:40:25',2,'2006-02-15 21:30:53'), - (12910,'2005-08-19 04:23:13',3968,128,'2005-08-20 22:27:13',1,'2006-02-15 21:30:53'), - (12911,'2005-08-19 04:24:10',1770,367,'2005-08-26 00:35:10',2,'2006-02-15 21:30:53'), - (12912,'2005-08-19 04:24:35',1747,364,'2005-08-27 07:13:35',2,'2006-02-15 21:30:53'), - (12913,'2005-08-19 04:25:39',3719,356,'2005-08-25 07:23:39',1,'2006-02-15 21:30:53'), - (12914,'2005-08-19 04:25:59',4396,501,'2005-08-23 08:04:59',2,'2006-02-15 21:30:53'), - (12915,'2006-02-14 15:16:03',2651,516,NULL,1,'2006-02-15 21:30:53'), - (12916,'2005-08-19 04:27:05',2277,157,'2005-08-21 02:33:05',2,'2006-02-15 21:30:53'), - (12917,'2005-08-19 04:27:11',107,152,'2005-08-20 03:04:11',2,'2006-02-15 21:30:53'), - (12918,'2005-08-19 04:31:36',972,13,'2005-08-25 05:50:36',1,'2006-02-15 21:30:53'), - (12919,'2005-08-19 04:32:15',2121,263,'2005-08-24 05:56:15',2,'2006-02-15 21:30:53'), - (12920,'2005-08-19 04:32:32',2516,511,'2005-08-27 00:44:32',2,'2006-02-15 21:30:53'), - (12921,'2005-08-19 04:47:48',781,234,'2005-08-25 00:07:48',2,'2006-02-15 21:30:53'), - (12922,'2005-08-19 04:48:48',342,25,'2005-08-23 23:32:48',1,'2006-02-15 21:30:53'), - (12923,'2005-08-19 04:50:20',1390,531,'2005-08-22 10:42:20',1,'2006-02-15 21:30:53'), - (12924,'2005-08-19 04:51:47',3807,519,'2005-08-26 07:50:47',1,'2006-02-15 21:30:53'), - (12925,'2005-08-19 04:59:01',3361,57,'2005-08-27 02:03:01',2,'2006-02-15 21:30:53'), - (12926,'2005-08-19 05:00:16',23,336,'2005-08-26 06:12:16',2,'2006-02-15 21:30:53'), - (12927,'2005-08-19 05:02:46',1171,223,'2005-08-23 01:08:46',1,'2006-02-15 21:30:53'), - (12928,'2005-08-19 05:04:09',4531,353,'2005-08-24 09:09:09',2,'2006-02-15 21:30:53'), - (12929,'2005-08-19 05:05:23',1531,310,'2005-08-25 04:37:23',1,'2006-02-15 21:30:53'), - (12930,'2005-08-19 05:11:32',4410,414,'2005-08-22 02:20:32',2,'2006-02-15 21:30:53'), - (12931,'2005-08-19 05:11:47',3070,407,'2005-08-21 00:59:47',1,'2006-02-15 21:30:53'), - (12932,'2005-08-19 05:17:30',2295,416,'2005-08-21 09:24:30',1,'2006-02-15 21:30:53'), - (12933,'2005-08-19 05:18:20',4103,589,'2005-08-27 00:13:20',1,'2006-02-15 21:30:53'), - (12934,'2005-08-19 05:18:42',3242,591,'2005-08-24 10:42:42',1,'2006-02-15 21:30:53'), - (12935,'2005-08-19 05:20:25',193,279,'2005-08-21 03:10:25',2,'2006-02-15 21:30:53'), - (12936,'2005-08-19 05:25:06',654,387,'2005-08-28 08:21:06',1,'2006-02-15 21:30:53'), - (12937,'2005-08-19 05:25:30',3826,348,'2005-08-22 10:40:30',2,'2006-02-15 21:30:53'), - (12938,'2006-02-14 15:16:03',3987,28,NULL,1,'2006-02-15 21:30:53'), - (12939,'2005-08-19 05:38:25',3375,181,'2005-08-23 23:52:25',1,'2006-02-15 21:30:53'), - (12940,'2005-08-19 05:38:29',2222,340,'2005-08-20 08:15:29',1,'2006-02-15 21:30:53'), - (12941,'2005-08-19 05:39:26',2951,195,'2005-08-22 09:50:26',2,'2006-02-15 21:30:53'), - (12942,'2005-08-19 05:40:36',3938,103,'2005-08-27 02:04:36',1,'2006-02-15 21:30:53'), - (12943,'2005-08-19 05:46:26',3930,547,'2005-08-22 03:26:26',2,'2006-02-15 21:30:53'), - (12944,'2005-08-19 05:48:12',2956,148,'2005-08-28 10:10:12',1,'2006-02-15 21:30:53'), - (12945,'2005-08-19 05:51:46',3638,312,'2005-08-23 11:22:46',2,'2006-02-15 21:30:53'), - (12946,'2005-08-19 05:53:34',2066,444,'2005-08-20 07:30:34',1,'2006-02-15 21:30:53'), - (12947,'2005-08-19 05:54:21',935,499,'2005-08-22 09:17:21',1,'2006-02-15 21:30:53'), - (12948,'2005-08-19 05:55:14',4173,442,'2005-08-22 01:05:14',2,'2006-02-15 21:30:53'), - (12949,'2005-08-19 05:55:52',4209,279,'2005-08-23 00:01:52',1,'2006-02-15 21:30:53'), - (12950,'2005-08-19 05:55:58',1064,463,'2005-08-23 08:05:58',1,'2006-02-15 21:30:53'), - (12951,'2005-08-19 05:56:44',2143,70,'2005-08-24 11:28:44',2,'2006-02-15 21:30:53'), - (12952,'2005-08-19 06:00:52',2460,228,'2005-08-20 02:17:52',1,'2006-02-15 21:30:53'), - (12953,'2005-08-19 06:04:07',3954,429,'2005-08-28 11:05:07',1,'2006-02-15 21:30:53'), - (12954,'2005-08-19 06:04:34',3592,63,'2005-08-28 02:12:34',2,'2006-02-15 21:30:53'), - (12955,'2005-08-19 06:05:58',2040,410,'2005-08-26 04:24:58',2,'2006-02-15 21:30:53'), - (12956,'2005-08-19 06:06:26',3613,241,'2005-08-28 08:37:26',2,'2006-02-15 21:30:53'), - (12957,'2005-08-19 06:12:44',2219,512,'2005-08-28 10:49:44',2,'2006-02-15 21:30:53'), - (12958,'2005-08-19 06:19:21',4214,569,'2005-08-20 02:21:21',1,'2006-02-15 21:30:53'), - (12959,'2006-02-14 15:16:03',1540,284,NULL,2,'2006-02-15 21:30:53'), - (12960,'2005-08-19 06:21:52',3498,152,'2005-08-25 04:16:52',1,'2006-02-15 21:30:53'), - (12961,'2005-08-19 06:22:37',4529,386,'2005-08-23 00:49:37',1,'2006-02-15 21:30:53'), - (12962,'2005-08-19 06:22:48',575,171,'2005-08-27 07:47:48',1,'2006-02-15 21:30:53'), - (12963,'2005-08-19 06:26:04',1521,2,'2005-08-23 11:37:04',2,'2006-02-15 21:30:53'), - (12964,'2005-08-19 06:29:13',2854,142,'2005-08-22 12:23:13',2,'2006-02-15 21:30:53'), - (12965,'2005-08-19 06:33:00',4308,430,'2005-08-22 02:02:00',1,'2006-02-15 21:30:53'), - (12966,'2005-08-19 06:37:48',3196,69,'2005-08-26 03:59:48',2,'2006-02-15 21:30:53'), - (12967,'2005-08-19 06:37:51',3404,170,'2005-08-25 06:58:51',2,'2006-02-15 21:30:53'), - (12968,'2005-08-19 06:38:18',3108,166,'2005-08-20 08:29:18',1,'2006-02-15 21:30:53'), - (12969,'2005-08-19 06:38:59',191,224,'2005-08-25 09:09:59',2,'2006-02-15 21:30:53'), - (12970,'2006-02-14 15:16:03',3999,216,NULL,1,'2006-02-15 21:30:53'), - (12971,'2005-08-19 06:42:43',3504,492,'2005-08-23 10:49:43',2,'2006-02-15 21:30:53'), - (12972,'2005-08-19 06:43:28',1218,55,'2005-08-27 11:30:28',1,'2006-02-15 21:30:53'), - (12973,'2005-08-19 06:48:11',128,163,'2005-08-22 07:18:11',2,'2006-02-15 21:30:53'), - (12974,'2005-08-19 06:51:02',3599,218,'2005-08-25 11:48:02',2,'2006-02-15 21:30:53'), - (12975,'2005-08-19 06:51:19',3300,236,'2005-08-25 04:22:19',1,'2006-02-15 21:30:53'), - (12976,'2005-08-19 06:52:58',66,592,'2005-08-26 11:23:58',2,'2006-02-15 21:30:53'), - (12977,'2005-08-19 06:55:33',2004,388,'2005-08-27 07:38:33',2,'2006-02-15 21:30:53'), - (12978,'2005-08-19 06:57:27',3252,167,'2005-08-20 09:10:27',2,'2006-02-15 21:30:53'), - (12979,'2005-08-19 07:00:35',1227,267,'2005-08-21 06:12:35',2,'2006-02-15 21:30:53'), - (12980,'2005-08-19 07:03:14',1854,144,'2005-08-26 05:07:14',1,'2006-02-15 21:30:53'), - (12981,'2005-08-19 07:04:00',3925,481,'2005-08-21 09:17:00',1,'2006-02-15 21:30:53'), - (12982,'2005-08-19 07:06:34',1258,44,'2005-08-21 06:53:34',1,'2006-02-15 21:30:53'), - (12983,'2005-08-19 07:06:51',406,148,'2005-08-28 10:35:51',2,'2006-02-15 21:30:53'), - (12984,'2005-08-19 07:06:51',4211,537,'2005-08-22 04:04:51',1,'2006-02-15 21:30:53'), - (12985,'2005-08-19 07:08:05',4133,83,'2005-08-24 02:25:05',1,'2006-02-15 21:30:53'), - (12986,'2005-08-19 07:09:36',1145,210,'2005-08-22 05:01:36',1,'2006-02-15 21:30:53'), - (12987,'2005-08-19 07:11:44',3665,134,'2005-08-20 04:17:44',1,'2006-02-15 21:30:53'), - (12988,'2006-02-14 15:16:03',81,236,NULL,2,'2006-02-15 21:30:53'), - (12989,'2005-08-19 07:19:04',2929,306,'2005-08-21 10:58:04',1,'2006-02-15 21:30:53'), - (12990,'2005-08-19 07:20:39',1825,360,'2005-08-21 12:31:39',2,'2006-02-15 21:30:53'), - (12991,'2005-08-19 07:21:24',2227,126,'2005-08-21 04:31:24',2,'2006-02-15 21:30:53'), - (12992,'2005-08-19 07:23:06',3022,597,'2005-08-23 06:11:06',2,'2006-02-15 21:30:53'), - (12993,'2005-08-19 07:24:03',4225,484,'2005-08-26 07:15:03',2,'2006-02-15 21:30:53'), - (12994,'2005-08-19 07:26:10',3809,506,'2005-08-20 07:02:10',2,'2006-02-15 21:30:53'), - (12995,'2005-08-19 07:26:30',2069,566,'2005-08-25 12:47:30',2,'2006-02-15 21:30:53'), - (12996,'2005-08-19 07:31:32',4445,380,'2005-08-25 11:59:32',1,'2006-02-15 21:30:53'), - (12997,'2005-08-19 07:31:46',1661,311,'2005-08-24 09:20:46',2,'2006-02-15 21:30:53'), - (12998,'2005-08-19 07:32:16',2301,354,'2005-08-24 01:56:16',2,'2006-02-15 21:30:53'), - (12999,'2005-08-19 07:34:53',661,24,'2005-08-26 03:57:53',1,'2006-02-15 21:30:53'), - (13000,'2005-08-19 07:36:42',2341,141,'2005-08-22 08:50:42',1,'2006-02-15 21:30:53'), - (13001,'2005-08-19 07:36:44',2505,254,'2005-08-22 13:06:44',1,'2006-02-15 21:30:53'), - (13002,'2005-08-19 07:37:58',3892,477,'2005-08-26 11:32:58',2,'2006-02-15 21:30:53'), - (13003,'2005-08-19 07:39:29',3431,451,'2005-08-23 05:48:29',2,'2006-02-15 21:30:53'), - (13004,'2005-08-19 07:40:08',771,442,'2005-08-20 11:49:08',1,'2006-02-15 21:30:53'), - (13005,'2005-08-19 07:45:42',3417,104,'2005-08-20 12:45:42',2,'2006-02-15 21:30:53'), - (13006,'2005-08-19 07:47:16',3157,134,'2005-08-21 06:17:16',1,'2006-02-15 21:30:53'), - (13007,'2005-08-19 07:47:43',4280,430,'2005-08-26 02:48:43',2,'2006-02-15 21:30:53'), - (13008,'2006-02-14 15:16:03',1838,181,NULL,1,'2006-02-15 21:30:53'), - (13009,'2005-08-19 07:50:35',677,376,'2005-08-21 06:04:35',1,'2006-02-15 21:30:53'), - (13010,'2005-08-19 07:52:21',825,413,'2005-08-27 12:51:21',1,'2006-02-15 21:30:53'), - (13011,'2005-08-19 07:53:58',1998,529,'2005-08-24 12:00:58',1,'2006-02-15 21:30:53'), - (13012,'2005-08-19 07:54:59',1690,145,'2005-08-26 09:50:59',2,'2006-02-15 21:30:53'), - (13013,'2005-08-19 07:55:51',841,293,'2005-08-26 05:14:51',1,'2006-02-15 21:30:53'), - (13014,'2005-08-19 07:56:08',3400,344,'2005-08-21 10:20:08',2,'2006-02-15 21:30:53'), - (13015,'2005-08-19 07:56:51',3461,126,'2005-08-28 07:05:51',2,'2006-02-15 21:30:53'), - (13016,'2005-08-19 07:57:14',3095,175,'2005-08-23 03:29:14',1,'2006-02-15 21:30:53'), - (13017,'2005-08-19 08:02:24',2160,104,'2005-08-26 07:32:24',1,'2006-02-15 21:30:53'), - (13018,'2005-08-19 08:04:50',2122,168,'2005-08-26 11:46:50',1,'2006-02-15 21:30:53'), - (13019,'2005-08-19 08:07:43',2827,597,'2005-08-20 12:09:43',2,'2006-02-15 21:30:53'), - (13020,'2005-08-19 08:07:50',4501,92,'2005-08-28 11:42:50',1,'2006-02-15 21:30:53'), - (13021,'2005-08-19 08:08:04',1242,309,'2005-08-26 12:04:04',2,'2006-02-15 21:30:53'), - (13022,'2006-02-14 15:16:03',2266,336,NULL,2,'2006-02-15 21:30:53'), - (13023,'2005-08-19 08:13:54',1566,69,'2005-08-27 13:18:54',1,'2006-02-15 21:30:53'), - (13024,'2005-08-19 08:19:21',2917,401,'2005-08-27 05:18:21',1,'2006-02-15 21:30:53'), - (13025,'2006-02-14 15:16:03',4066,269,NULL,1,'2006-02-15 21:30:53'), - (13026,'2005-08-19 08:22:45',3026,79,'2005-08-21 09:31:45',1,'2006-02-15 21:30:53'), - (13027,'2005-08-19 08:25:16',3756,128,'2005-08-25 13:42:16',1,'2006-02-15 21:30:53'), - (13028,'2005-08-19 08:27:23',2165,371,'2005-08-24 03:46:23',1,'2006-02-15 21:30:53'), - (13029,'2005-08-19 08:28:04',3283,293,'2005-08-22 12:25:04',2,'2006-02-15 21:30:53'), - (13030,'2005-08-19 08:28:11',2614,240,'2005-08-24 07:20:11',1,'2006-02-15 21:30:53'), - (13031,'2005-08-19 08:30:04',1525,567,'2005-08-23 09:35:04',2,'2006-02-15 21:30:53'), - (13032,'2005-08-19 08:31:50',3699,82,'2005-08-23 04:00:50',2,'2006-02-15 21:30:53'), - (13033,'2005-08-19 08:34:39',1682,344,'2005-08-28 10:13:39',1,'2006-02-15 21:30:53'), - (13034,'2005-08-19 08:41:29',990,387,'2005-08-20 07:36:29',2,'2006-02-15 21:30:53'), - (13035,'2005-08-19 08:46:45',4082,135,'2005-08-22 11:42:45',1,'2006-02-15 21:30:53'), - (13036,'2005-08-19 08:48:37',1469,20,'2005-08-22 04:13:37',2,'2006-02-15 21:30:53'), - (13037,'2005-08-19 08:53:57',65,275,'2005-08-28 08:56:57',2,'2006-02-15 21:30:53'), - (13038,'2005-08-19 08:55:16',2226,532,'2005-08-25 12:23:16',2,'2006-02-15 21:30:53'), - (13039,'2005-08-19 08:55:19',1952,370,'2005-08-20 07:39:19',2,'2006-02-15 21:30:53'), - (13040,'2005-08-19 09:04:24',4113,425,'2005-08-23 12:36:24',2,'2006-02-15 21:30:53'), - (13041,'2005-08-19 09:05:38',1576,462,'2005-08-27 06:34:38',1,'2006-02-15 21:30:53'), - (13042,'2005-08-19 09:06:08',1047,414,'2005-08-22 13:46:08',2,'2006-02-15 21:30:53'), - (13043,'2005-08-19 09:07:13',24,127,'2005-08-27 07:49:13',1,'2006-02-15 21:30:53'), - (13044,'2005-08-19 09:14:31',809,142,'2005-08-20 11:16:31',1,'2006-02-15 21:30:53'), - (13045,'2005-08-19 09:17:35',389,254,'2005-08-23 12:04:35',1,'2006-02-15 21:30:53'), - (13046,'2005-08-19 09:21:10',965,37,'2005-08-26 13:00:10',2,'2006-02-15 21:30:53'), - (13047,'2005-08-19 09:24:49',2704,394,'2005-08-24 11:06:49',2,'2006-02-15 21:30:53'), - (13048,'2005-08-19 09:25:06',1029,486,'2005-08-28 11:18:06',2,'2006-02-15 21:30:53'), - (13049,'2005-08-19 09:25:40',4122,53,'2005-08-27 10:19:40',2,'2006-02-15 21:30:53'), - (13050,'2005-08-19 09:31:23',3682,131,'2005-08-26 06:56:23',2,'2006-02-15 21:30:53'), - (13051,'2005-08-19 09:31:33',4064,90,'2005-08-28 06:15:33',1,'2006-02-15 21:30:53'), - (13052,'2005-08-19 09:31:42',3036,502,'2005-08-28 15:11:42',2,'2006-02-15 21:30:53'), - (13053,'2005-08-19 09:31:48',2044,140,'2005-08-28 07:51:48',2,'2006-02-15 21:30:53'), - (13054,'2005-08-19 09:34:02',2983,325,'2005-08-23 05:25:02',2,'2006-02-15 21:30:53'), - (13055,'2005-08-19 09:36:28',3580,485,'2005-08-24 05:53:28',2,'2006-02-15 21:30:53'), - (13056,'2006-02-14 15:16:03',3751,115,NULL,2,'2006-02-15 21:30:53'), - (13057,'2005-08-19 09:40:05',876,105,'2005-08-28 13:22:05',2,'2006-02-15 21:30:53'), - (13058,'2005-08-19 09:40:53',2437,24,'2005-08-26 05:48:53',2,'2006-02-15 21:30:53'), - (13059,'2005-08-19 09:42:01',3810,341,'2005-08-21 12:07:01',1,'2006-02-15 21:30:53'), - (13060,'2005-08-19 09:43:25',507,22,'2005-08-28 15:22:25',1,'2006-02-15 21:30:53'), - (13061,'2005-08-19 09:43:39',730,576,'2005-08-24 10:03:39',1,'2006-02-15 21:30:53'), - (13062,'2005-08-19 09:44:17',1790,385,'2005-08-27 11:42:17',1,'2006-02-15 21:30:53'), - (13063,'2005-08-19 09:45:41',1192,5,'2005-08-24 09:11:41',2,'2006-02-15 21:30:53'), - (13064,'2005-08-19 09:46:53',4131,588,'2005-08-21 08:29:53',1,'2006-02-15 21:30:53'), - (13065,'2005-08-19 09:48:52',1887,518,'2005-08-22 07:12:52',1,'2006-02-15 21:30:53'), - (13066,'2005-08-19 09:50:39',3730,336,'2005-08-22 14:01:39',1,'2006-02-15 21:30:53'), - (13067,'2005-08-19 09:51:17',3825,172,'2005-08-25 09:58:17',2,'2006-02-15 21:30:53'), - (13068,'2005-08-19 09:55:16',3019,1,'2005-08-20 14:44:16',2,'2006-02-15 21:30:53'), - (13069,'2005-08-19 09:55:20',368,299,'2005-08-24 04:10:20',2,'2006-02-15 21:30:53'), - (13070,'2005-08-19 09:56:23',2214,235,'2005-08-24 09:08:23',2,'2006-02-15 21:30:53'), - (13071,'2005-08-19 10:01:07',527,578,'2005-08-26 14:26:07',1,'2006-02-15 21:30:53'), - (13072,'2005-08-19 10:03:30',2313,447,'2005-08-22 14:27:30',2,'2006-02-15 21:30:53'), - (13073,'2005-08-19 10:05:38',855,506,'2005-08-26 07:37:38',2,'2006-02-15 21:30:53'), - (13074,'2005-08-19 10:06:53',3266,341,'2005-08-28 09:56:53',2,'2006-02-15 21:30:53'), - (13075,'2005-08-19 10:10:10',4125,224,'2005-08-21 08:44:10',2,'2006-02-15 21:30:53'), - (13076,'2005-08-19 10:10:26',1226,201,'2005-08-22 05:41:26',1,'2006-02-15 21:30:53'), - (13077,'2005-08-19 10:15:19',433,241,'2005-08-21 06:51:19',2,'2006-02-15 21:30:53'), - (13078,'2005-08-19 10:16:43',4104,479,'2005-08-27 11:35:43',2,'2006-02-15 21:30:53'), - (13079,'2006-02-14 15:16:03',733,107,NULL,1,'2006-02-15 21:30:53'), - (13080,'2005-08-19 10:18:00',4222,452,'2005-08-22 06:37:00',2,'2006-02-15 21:30:53'), - (13081,'2005-08-19 10:19:06',3077,170,'2005-08-20 05:49:06',1,'2006-02-15 21:30:53'), - (13082,'2005-08-19 10:19:19',2117,387,'2005-08-28 05:02:19',1,'2006-02-15 21:30:53'), - (13083,'2005-08-19 10:26:45',3469,455,'2005-08-23 05:31:45',2,'2006-02-15 21:30:53'), - (13084,'2005-08-19 10:27:25',3792,204,'2005-08-26 07:32:25',2,'2006-02-15 21:30:53'), - (13085,'2005-08-19 10:28:22',360,215,'2005-08-22 07:37:22',2,'2006-02-15 21:30:53'), - (13086,'2005-08-19 10:32:28',3712,350,'2005-08-26 07:57:28',2,'2006-02-15 21:30:53'), - (13087,'2005-08-19 10:33:52',2693,171,'2005-08-27 09:15:52',2,'2006-02-15 21:30:53'), - (13088,'2005-08-19 10:36:11',4281,457,'2005-08-21 09:12:11',1,'2006-02-15 21:30:53'), - (13089,'2005-08-19 10:38:56',1783,63,'2005-08-24 12:41:56',1,'2006-02-15 21:30:53'), - (13090,'2005-08-19 10:39:54',1447,52,'2005-08-28 10:31:54',1,'2006-02-15 21:30:53'), - (13091,'2005-08-19 10:40:10',1815,127,'2005-08-23 09:03:10',1,'2006-02-15 21:30:53'), - (13092,'2005-08-19 10:41:09',4359,480,'2005-08-25 05:11:09',2,'2006-02-15 21:30:53'), - (13093,'2005-08-19 10:46:16',1667,160,'2005-08-26 08:05:16',1,'2006-02-15 21:30:53'), - (13094,'2005-08-19 10:47:58',3178,494,'2005-08-21 06:20:58',1,'2006-02-15 21:30:53'), - (13095,'2005-08-19 10:48:10',520,508,'2005-08-28 06:15:10',1,'2006-02-15 21:30:53'), - (13096,'2005-08-19 10:49:03',420,13,'2005-08-21 05:33:03',1,'2006-02-15 21:30:53'), - (13097,'2005-08-19 10:50:43',4194,157,'2005-08-24 11:10:43',2,'2006-02-15 21:30:53'), - (13098,'2005-08-19 10:51:59',3770,51,'2005-08-24 11:27:59',1,'2006-02-15 21:30:53'), - (13099,'2005-08-19 10:55:19',969,436,'2005-08-27 10:54:19',1,'2006-02-15 21:30:53'), - (13100,'2005-08-19 10:55:45',916,451,'2005-08-25 12:28:45',1,'2006-02-15 21:30:53'), - (13101,'2005-08-19 11:01:54',1804,39,'2005-08-27 16:06:54',2,'2006-02-15 21:30:53'), - (13102,'2005-08-19 11:02:03',2885,285,'2005-08-28 13:05:03',2,'2006-02-15 21:30:53'), - (13103,'2005-08-19 11:05:51',1751,274,'2005-08-26 09:16:51',2,'2006-02-15 21:30:53'), - (13104,'2005-08-19 11:06:06',310,591,'2005-08-21 13:50:06',2,'2006-02-15 21:30:53'), - (13105,'2005-08-19 11:06:16',729,279,'2005-08-27 15:21:16',1,'2006-02-15 21:30:53'), - (13106,'2006-02-14 15:16:03',3212,440,NULL,1,'2006-02-15 21:30:53'), - (13107,'2005-08-19 11:13:58',3870,356,'2005-08-20 15:03:58',2,'2006-02-15 21:30:53'), - (13108,'2006-02-14 15:16:03',3630,73,NULL,1,'2006-02-15 21:30:53'), - (13109,'2005-08-19 11:23:20',46,259,'2005-08-25 17:05:20',1,'2006-02-15 21:30:53'), - (13110,'2005-08-19 11:24:37',62,447,'2005-08-21 05:48:37',1,'2006-02-15 21:30:53'), - (13111,'2005-08-19 11:25:10',580,26,'2005-08-21 05:52:10',2,'2006-02-15 21:30:53'), - (13112,'2005-08-19 11:27:10',2074,259,'2005-08-22 05:32:10',1,'2006-02-15 21:30:53'), - (13113,'2005-08-19 11:27:20',2393,573,'2005-08-23 12:40:20',1,'2006-02-15 21:30:53'), - (13114,'2005-08-19 11:27:32',4342,550,'2005-08-28 11:21:32',2,'2006-02-15 21:30:53'), - (13115,'2005-08-19 11:27:43',1961,84,'2005-08-20 10:58:43',1,'2006-02-15 21:30:53'), - (13116,'2005-08-19 11:31:41',1544,150,'2005-08-27 16:05:41',1,'2006-02-15 21:30:53'), - (13117,'2005-08-19 11:33:20',3430,385,'2005-08-20 11:55:20',2,'2006-02-15 21:30:53'), - (13118,'2005-08-19 11:39:58',470,181,'2005-08-25 14:44:58',1,'2006-02-15 21:30:53'), - (13119,'2005-08-19 11:44:59',1401,240,'2005-08-20 12:30:59',2,'2006-02-15 21:30:53'), - (13120,'2005-08-19 11:47:38',2273,314,'2005-08-26 08:20:38',2,'2006-02-15 21:30:53'), - (13121,'2005-08-19 11:51:39',3517,251,'2005-08-22 11:50:39',2,'2006-02-15 21:30:53'), - (13122,'2005-08-19 11:53:49',3319,277,'2005-08-26 16:01:49',2,'2006-02-15 21:30:53'), - (13123,'2005-08-19 11:55:13',2804,220,'2005-08-21 05:55:13',2,'2006-02-15 21:30:53'), - (13124,'2005-08-19 11:55:59',2105,78,'2005-08-26 06:01:59',2,'2006-02-15 21:30:53'), - (13125,'2005-08-19 11:57:49',3722,192,'2005-08-26 07:53:49',1,'2006-02-15 21:30:53'), - (13126,'2005-08-19 12:00:28',1392,253,'2005-08-28 17:27:28',1,'2006-02-15 21:30:53'), - (13127,'2005-08-19 12:04:03',2582,178,'2005-08-27 13:56:03',1,'2006-02-15 21:30:53'), - (13128,'2005-08-19 12:04:16',485,206,'2005-08-26 16:06:16',2,'2006-02-15 21:30:53'), - (13129,'2005-08-19 12:05:04',4455,274,'2005-08-26 10:24:04',1,'2006-02-15 21:30:53'), - (13130,'2005-08-19 12:06:42',2006,254,'2005-08-23 12:08:42',1,'2006-02-15 21:30:53'), - (13131,'2005-08-19 12:08:13',1466,480,'2005-08-27 13:43:13',2,'2006-02-15 21:30:53'), - (13132,'2005-08-19 12:10:57',1748,529,'2005-08-27 12:22:57',2,'2006-02-15 21:30:53'), - (13133,'2005-08-19 12:11:03',1635,523,'2005-08-28 12:36:03',2,'2006-02-15 21:30:53'), - (13134,'2005-08-19 12:14:14',1354,184,'2005-08-20 11:52:14',1,'2006-02-15 21:30:53'), - (13135,'2005-08-19 12:22:52',1585,361,'2005-08-21 14:04:52',2,'2006-02-15 21:30:53'), - (13136,'2005-08-19 12:24:23',2532,50,'2005-08-28 08:37:23',2,'2006-02-15 21:30:53'), - (13137,'2005-08-19 12:26:32',4431,20,'2005-08-22 13:26:32',1,'2006-02-15 21:30:53'), - (13138,'2005-08-19 12:30:01',3138,214,'2005-08-21 06:35:01',2,'2006-02-15 21:30:53'), - (13139,'2005-08-19 12:32:10',2099,554,'2005-08-24 12:12:10',1,'2006-02-15 21:30:53'), - (13140,'2005-08-19 12:35:56',4210,323,'2005-08-27 18:24:56',2,'2006-02-15 21:30:53'), - (13141,'2005-08-19 12:41:41',4545,376,'2005-08-21 08:17:41',2,'2006-02-15 21:30:53'), - (13142,'2005-08-19 12:42:28',1404,269,'2005-08-26 14:52:28',1,'2006-02-15 21:30:53'), - (13143,'2005-08-19 12:44:38',1655,371,'2005-08-25 10:59:38',2,'2006-02-15 21:30:53'), - (13144,'2005-08-19 12:45:55',3766,456,'2005-08-27 10:37:55',2,'2006-02-15 21:30:53'), - (13145,'2005-08-19 12:53:53',1383,72,'2005-08-23 08:06:53',1,'2006-02-15 21:30:53'), - (13146,'2005-08-19 12:54:42',1463,116,'2005-08-26 07:31:42',1,'2006-02-15 21:30:53'), - (13147,'2005-08-19 12:55:09',3490,37,'2005-08-22 18:10:09',1,'2006-02-15 21:30:53'), - (13148,'2005-08-19 12:55:30',1762,137,'2005-08-21 11:01:30',1,'2006-02-15 21:30:53'), - (13149,'2005-08-19 13:07:12',1436,40,'2005-08-28 18:12:12',1,'2006-02-15 21:30:53'), - (13150,'2005-08-19 13:08:19',1514,457,'2005-08-25 18:00:19',1,'2006-02-15 21:30:53'), - (13151,'2005-08-19 13:08:23',3045,16,'2005-08-20 12:38:23',2,'2006-02-15 21:30:53'), - (13152,'2005-08-19 13:09:32',3571,597,'2005-08-25 14:47:32',1,'2006-02-15 21:30:53'), - (13153,'2005-08-19 13:09:47',3896,431,'2005-08-23 17:35:47',2,'2006-02-15 21:30:53'), - (13154,'2005-08-19 13:09:54',2465,255,'2005-08-26 16:40:54',1,'2006-02-15 21:30:53'), - (13155,'2005-08-19 13:10:23',290,442,'2005-08-25 19:07:23',2,'2006-02-15 21:30:53'), - (13156,'2005-08-19 13:10:42',770,512,'2005-08-25 15:08:42',2,'2006-02-15 21:30:53'), - (13157,'2005-08-19 13:12:28',4391,592,'2005-08-20 10:41:28',1,'2006-02-15 21:30:53'), - (13158,'2005-08-19 13:18:10',944,327,'2005-08-25 09:27:10',1,'2006-02-15 21:30:53'), - (13159,'2005-08-19 13:19:59',2300,497,'2005-08-21 09:22:59',2,'2006-02-15 21:30:53'), - (13160,'2005-08-19 13:21:04',410,484,'2005-08-22 18:49:04',1,'2006-02-15 21:30:53'), - (13161,'2006-02-14 15:16:03',986,175,NULL,1,'2006-02-15 21:30:53'), - (13162,'2005-08-19 13:28:26',1845,478,'2005-08-24 17:37:26',1,'2006-02-15 21:30:53'), - (13163,'2005-08-19 13:29:46',3068,57,'2005-08-22 07:48:46',2,'2006-02-15 21:30:53'), - (13164,'2005-08-19 13:30:55',1104,145,'2005-08-26 10:12:55',2,'2006-02-15 21:30:53'), - (13165,'2005-08-19 13:34:10',138,289,'2005-08-21 18:33:10',2,'2006-02-15 21:30:53'), - (13166,'2005-08-19 13:36:28',4386,504,'2005-08-22 07:57:28',1,'2006-02-15 21:30:53'), - (13167,'2005-08-19 13:36:41',557,120,'2005-08-23 15:29:41',2,'2006-02-15 21:30:53'), - (13168,'2005-08-19 13:37:28',2210,186,'2005-08-27 17:54:28',2,'2006-02-15 21:30:53'), - (13169,'2005-08-19 13:43:35',1709,141,'2005-08-26 09:31:35',1,'2006-02-15 21:30:53'), - (13170,'2005-08-19 13:45:48',1072,176,'2005-08-27 11:00:48',2,'2006-02-15 21:30:53'), - (13171,'2005-08-19 13:48:54',1765,122,'2005-08-27 18:57:54',1,'2006-02-15 21:30:53'), - (13172,'2005-08-19 13:49:07',1301,298,'2005-08-20 19:39:07',2,'2006-02-15 21:30:53'), - (13173,'2005-08-19 13:50:36',1304,29,'2005-08-26 12:34:36',2,'2006-02-15 21:30:53'), - (13174,'2005-08-19 13:52:50',2303,482,'2005-08-22 14:43:50',2,'2006-02-15 21:30:53'), - (13175,'2005-08-19 13:54:53',3187,239,'2005-08-20 16:25:53',2,'2006-02-15 21:30:53'), - (13176,'2005-08-19 13:56:54',2269,1,'2005-08-23 08:50:54',2,'2006-02-15 21:30:53'), - (13177,'2005-08-19 13:56:58',3172,126,'2005-08-23 13:13:58',2,'2006-02-15 21:30:53'), - (13178,'2006-02-14 15:16:03',693,394,NULL,1,'2006-02-15 21:30:53'), - (13179,'2005-08-19 13:59:53',1624,104,'2005-08-25 12:10:53',1,'2006-02-15 21:30:53'), - (13180,'2005-08-19 14:00:38',3443,322,'2005-08-20 09:56:38',1,'2006-02-15 21:30:53'), - (13181,'2005-08-19 14:00:56',1256,128,'2005-08-24 13:52:56',2,'2006-02-15 21:30:53'), - (13182,'2006-02-14 15:16:03',364,496,NULL,2,'2006-02-15 21:30:53'), - (13183,'2005-08-19 14:09:26',2404,301,'2005-08-28 08:44:26',2,'2006-02-15 21:30:53'), - (13184,'2005-08-19 14:16:18',4395,393,'2005-08-20 08:44:18',1,'2006-02-15 21:30:53'), - (13185,'2005-08-19 14:22:30',241,174,'2005-08-20 10:13:30',2,'2006-02-15 21:30:53'), - (13186,'2005-08-19 14:23:19',2802,176,'2005-08-28 11:26:19',1,'2006-02-15 21:30:53'), - (13187,'2005-08-19 14:24:48',1944,543,'2005-08-20 19:37:48',1,'2006-02-15 21:30:53'), - (13188,'2005-08-19 14:27:03',583,472,'2005-08-28 09:15:03',2,'2006-02-15 21:30:53'), - (13189,'2005-08-19 14:27:16',3444,368,'2005-08-28 10:34:16',1,'2006-02-15 21:30:53'), - (13190,'2005-08-19 14:27:59',4316,290,'2005-08-26 13:45:59',1,'2006-02-15 21:30:53'), - (13191,'2005-08-19 14:28:48',2753,371,'2005-08-23 12:53:48',2,'2006-02-15 21:30:53'), - (13192,'2005-08-19 14:30:06',966,532,'2005-08-27 15:20:06',1,'2006-02-15 21:30:53'), - (13193,'2005-08-19 14:33:45',523,118,'2005-08-28 08:46:45',2,'2006-02-15 21:30:53'), - (13194,'2005-08-19 14:34:12',2473,58,'2005-08-26 10:18:12',2,'2006-02-15 21:30:53'), - (13195,'2005-08-19 14:39:14',2537,565,'2005-08-24 10:30:14',2,'2006-02-15 21:30:53'), - (13196,'2005-08-19 14:40:32',458,202,'2005-08-26 18:15:32',2,'2006-02-15 21:30:53'), - (13197,'2005-08-19 14:44:03',3190,358,'2005-08-22 10:11:03',1,'2006-02-15 21:30:53'), - (13198,'2005-08-19 14:47:18',4273,169,'2005-08-21 18:09:18',2,'2006-02-15 21:30:53'), - (13199,'2005-08-19 14:53:22',4291,339,'2005-08-27 19:03:22',2,'2006-02-15 21:30:53'), - (13200,'2005-08-19 14:55:58',2746,577,'2005-08-27 11:35:58',2,'2006-02-15 21:30:53'), - (13201,'2005-08-19 14:56:05',111,508,'2005-08-25 14:37:05',1,'2006-02-15 21:30:53'), - (13202,'2005-08-19 14:58:30',3546,381,'2005-08-27 17:10:30',1,'2006-02-15 21:30:53'), - (13203,'2005-08-19 15:00:58',804,257,'2005-08-27 15:38:58',2,'2006-02-15 21:30:53'), - (13204,'2005-08-19 15:02:48',4524,152,'2005-08-24 18:07:48',1,'2006-02-15 21:30:53'), - (13205,'2005-08-19 15:05:26',2616,495,'2005-08-25 10:41:26',2,'2006-02-15 21:30:53'), - (13206,'2005-08-19 15:05:34',2477,504,'2005-08-21 20:37:34',2,'2006-02-15 21:30:53'), - (13207,'2005-08-19 15:14:38',674,58,'2005-08-27 16:09:38',1,'2006-02-15 21:30:53'), - (13208,'2005-08-19 15:18:55',609,435,'2005-08-24 11:59:55',1,'2006-02-15 21:30:53'), - (13209,'2006-02-14 15:16:03',1574,5,NULL,2,'2006-02-15 21:30:53'), - (13210,'2005-08-19 15:23:38',2789,487,'2005-08-21 11:57:38',1,'2006-02-15 21:30:53'), - (13211,'2005-08-19 15:23:41',1968,289,'2005-08-22 16:58:41',1,'2006-02-15 21:30:53'), - (13212,'2005-08-19 15:24:07',3691,158,'2005-08-24 21:03:07',1,'2006-02-15 21:30:53'), - (13213,'2005-08-19 15:25:48',1546,13,'2005-08-22 09:32:48',1,'2006-02-15 21:30:53'), - (13214,'2005-08-19 15:31:06',2675,157,'2005-08-20 19:58:06',2,'2006-02-15 21:30:53'), - (13215,'2005-08-19 15:35:38',3740,460,'2005-08-27 12:16:38',1,'2006-02-15 21:30:53'), - (13216,'2005-08-19 15:36:05',4335,422,'2005-08-25 19:03:05',2,'2006-02-15 21:30:53'), - (13217,'2005-08-19 15:38:39',616,565,'2005-08-21 14:33:39',1,'2006-02-15 21:30:53'), - (13218,'2005-08-19 15:39:39',4148,257,'2005-08-22 17:28:39',1,'2006-02-15 21:30:53'), - (13219,'2005-08-19 15:40:28',2075,288,'2005-08-22 21:20:28',2,'2006-02-15 21:30:53'), - (13220,'2005-08-19 15:42:32',1017,448,'2005-08-25 13:37:32',1,'2006-02-15 21:30:53'), - (13221,'2005-08-19 15:45:47',120,468,'2005-08-26 21:10:47',1,'2006-02-15 21:30:53'), - (13222,'2005-08-19 15:47:58',1656,91,'2005-08-26 12:43:58',1,'2006-02-15 21:30:53'), - (13223,'2005-08-19 15:52:04',332,461,'2005-08-22 16:27:04',1,'2006-02-15 21:30:53'), - (13224,'2005-08-19 15:52:13',3086,526,'2005-08-28 20:53:13',2,'2006-02-15 21:30:53'), - (13225,'2005-08-19 15:54:33',1420,562,'2005-08-25 16:40:33',1,'2006-02-15 21:30:53'), - (13226,'2005-08-19 16:05:36',2850,46,'2005-08-21 10:07:36',2,'2006-02-15 21:30:53'), - (13227,'2005-08-19 16:05:38',2759,288,'2005-08-20 21:39:38',1,'2006-02-15 21:30:53'), - (13228,'2005-08-19 16:08:16',2497,571,'2005-08-20 18:55:16',1,'2006-02-15 21:30:53'), - (13229,'2005-08-19 16:08:33',634,283,'2005-08-22 19:54:33',2,'2006-02-15 21:30:53'), - (13230,'2005-08-19 16:12:07',3645,151,'2005-08-21 12:19:07',1,'2006-02-15 21:30:53'), - (13231,'2005-08-19 16:12:49',2126,280,'2005-08-27 17:14:49',2,'2006-02-15 21:30:53'), - (13232,'2005-08-19 16:13:32',2370,206,'2005-08-28 14:42:32',2,'2006-02-15 21:30:53'), - (13233,'2005-08-19 16:14:41',1057,279,'2005-08-24 21:13:41',1,'2006-02-15 21:30:53'), - (13234,'2005-08-19 16:17:15',976,559,'2005-08-27 12:36:15',1,'2006-02-15 21:30:53'), - (13235,'2005-08-19 16:17:53',3902,367,'2005-08-27 14:57:53',1,'2006-02-15 21:30:53'), - (13236,'2005-08-19 16:18:24',4574,267,'2005-08-27 17:48:24',2,'2006-02-15 21:30:53'), - (13237,'2005-08-19 16:18:36',1272,169,'2005-08-25 15:22:36',2,'2006-02-15 21:30:53'), - (13238,'2005-08-19 16:20:56',985,348,'2005-08-23 15:51:56',2,'2006-02-15 21:30:53'), - (13239,'2005-08-19 16:22:13',3296,541,'2005-08-23 19:26:13',1,'2006-02-15 21:30:53'), - (13240,'2005-08-19 16:22:14',1411,179,'2005-08-20 13:24:14',1,'2006-02-15 21:30:53'), - (13241,'2005-08-19 16:25:00',3106,33,'2005-08-26 12:27:00',2,'2006-02-15 21:30:53'), - (13242,'2005-08-19 16:28:47',230,414,'2005-08-24 22:13:47',2,'2006-02-15 21:30:53'), - (13243,'2005-08-19 16:33:16',355,251,'2005-08-25 13:19:16',2,'2006-02-15 21:30:53'), - (13244,'2005-08-19 16:43:04',3246,298,'2005-08-22 15:21:04',2,'2006-02-15 21:30:53'), - (13245,'2005-08-19 16:43:41',1001,261,'2005-08-20 21:17:41',1,'2006-02-15 21:30:53'), - (13246,'2006-02-14 15:16:03',1849,411,NULL,2,'2006-02-15 21:30:53'), - (13247,'2005-08-19 16:45:59',1271,24,'2005-08-25 15:25:59',1,'2006-02-15 21:30:53'), - (13248,'2005-08-19 16:47:41',2864,559,'2005-08-28 18:11:41',2,'2006-02-15 21:30:53'), - (13249,'2005-08-19 16:47:41',3084,377,'2005-08-20 13:30:41',1,'2006-02-15 21:30:53'), - (13250,'2005-08-19 16:47:55',2524,448,'2005-08-26 16:54:55',2,'2006-02-15 21:30:53'), - (13251,'2005-08-19 16:48:37',4216,111,'2005-08-20 16:33:37',1,'2006-02-15 21:30:53'), - (13252,'2005-08-19 16:50:50',775,451,'2005-08-22 22:09:50',2,'2006-02-15 21:30:53'), - (13253,'2005-08-19 16:53:56',472,399,'2005-08-20 11:38:56',2,'2006-02-15 21:30:53'), - (13254,'2005-08-19 16:54:01',3412,532,'2005-08-27 19:50:01',2,'2006-02-15 21:30:53'), - (13255,'2005-08-19 16:54:12',1101,150,'2005-08-28 17:00:12',1,'2006-02-15 21:30:53'), - (13256,'2005-08-19 16:54:12',2719,289,'2005-08-28 16:54:12',1,'2006-02-15 21:30:53'), - (13257,'2005-08-19 17:01:20',164,300,'2005-08-24 17:26:20',1,'2006-02-15 21:30:53'), - (13258,'2005-08-19 17:05:37',2246,349,'2005-08-24 17:36:37',2,'2006-02-15 21:30:53'), - (13259,'2005-08-19 17:08:53',2518,458,'2005-08-23 14:14:53',1,'2006-02-15 21:30:53'), - (13260,'2005-08-19 17:09:22',578,251,'2005-08-24 21:31:22',2,'2006-02-15 21:30:53'), - (13261,'2006-02-14 15:16:03',3538,417,NULL,1,'2006-02-15 21:30:53'), - (13262,'2005-08-19 17:20:15',4483,184,'2005-08-26 18:28:15',2,'2006-02-15 21:30:53'), - (13263,'2005-08-19 17:26:55',214,206,'2005-08-28 20:07:55',2,'2006-02-15 21:30:53'), - (13264,'2005-08-19 17:27:10',1881,109,'2005-08-27 16:00:10',1,'2006-02-15 21:30:53'), - (13265,'2005-08-19 17:29:00',3933,314,'2005-08-20 12:59:00',2,'2006-02-15 21:30:53'), - (13266,'2005-08-19 17:31:20',1326,571,'2005-08-21 11:41:20',2,'2006-02-15 21:30:53'), - (13267,'2005-08-19 17:31:36',550,335,'2005-08-21 13:47:36',1,'2006-02-15 21:30:53'), - (13268,'2005-08-19 17:33:50',1166,255,'2005-08-25 17:15:50',2,'2006-02-15 21:30:53'), - (13269,'2005-08-19 17:34:00',2382,461,'2005-08-20 15:17:00',2,'2006-02-15 21:30:53'), - (13270,'2005-08-19 17:41:16',405,159,'2005-08-23 20:22:16',2,'2006-02-15 21:30:53'), - (13271,'2005-08-19 17:42:06',3872,242,'2005-08-27 18:39:06',2,'2006-02-15 21:30:53'), - (13272,'2005-08-19 17:49:13',2531,145,'2005-08-23 15:49:13',2,'2006-02-15 21:30:53'), - (13273,'2005-08-19 17:49:13',4181,433,'2005-08-21 14:15:13',1,'2006-02-15 21:30:53'), - (13274,'2005-08-19 17:50:03',704,272,'2005-08-20 14:39:03',2,'2006-02-15 21:30:53'), - (13275,'2005-08-19 17:53:38',710,377,'2005-08-23 16:29:38',2,'2006-02-15 21:30:53'), - (13276,'2005-08-19 17:53:42',625,516,'2005-08-28 20:49:42',2,'2006-02-15 21:30:53'), - (13277,'2005-08-19 17:57:35',3820,316,'2005-08-25 15:45:35',2,'2006-02-15 21:30:53'), - (13278,'2005-08-19 17:57:53',2691,282,'2005-08-22 23:16:53',1,'2006-02-15 21:30:53'), - (13279,'2005-08-19 18:02:18',2472,343,'2005-08-24 22:15:18',2,'2006-02-15 21:30:53'), - (13280,'2005-08-19 18:02:51',218,368,'2005-08-21 23:17:51',2,'2006-02-15 21:30:53'), - (13281,'2005-08-19 18:07:47',113,220,'2005-08-20 21:51:47',2,'2006-02-15 21:30:53'), - (13282,'2005-08-19 18:08:18',4373,59,'2005-08-24 14:08:18',1,'2006-02-15 21:30:53'), - (13283,'2005-08-19 18:10:19',2602,180,'2005-08-23 16:09:19',2,'2006-02-15 21:30:53'), - (13284,'2005-08-19 18:12:31',2128,338,'2005-08-25 21:26:31',2,'2006-02-15 21:30:53'), - (13285,'2005-08-19 18:18:44',2139,182,'2005-08-20 12:33:44',1,'2006-02-15 21:30:53'), - (13286,'2005-08-19 18:28:07',2685,245,'2005-08-22 17:23:07',2,'2006-02-15 21:30:53'), - (13287,'2005-08-19 18:28:24',2716,569,'2005-08-26 20:13:24',2,'2006-02-15 21:30:53'), - (13288,'2005-08-19 18:30:10',3558,162,'2005-08-20 19:20:10',2,'2006-02-15 21:30:53'), - (13289,'2005-08-19 18:31:30',3527,497,'2005-08-20 13:43:30',1,'2006-02-15 21:30:53'), - (13290,'2005-08-19 18:31:50',4174,23,'2005-08-25 15:49:50',2,'2006-02-15 21:30:53'), - (13291,'2005-08-19 18:32:11',1631,243,'2005-08-20 18:22:11',2,'2006-02-15 21:30:53'), - (13292,'2005-08-19 18:35:32',1336,171,'2005-08-22 00:27:32',1,'2006-02-15 21:30:53'), - (13293,'2005-08-19 18:35:52',380,399,'2005-08-23 17:18:52',2,'2006-02-15 21:30:53'), - (13294,'2005-08-19 18:36:35',156,534,'2005-08-20 13:57:35',1,'2006-02-15 21:30:53'), - (13295,'2006-02-14 15:16:03',2408,229,NULL,1,'2006-02-15 21:30:53'), - (13296,'2005-08-19 18:43:53',1728,300,'2005-08-21 23:30:53',2,'2006-02-15 21:30:53'), - (13297,'2005-08-19 18:45:49',3818,359,'2005-08-22 14:58:49',2,'2006-02-15 21:30:53'), - (13298,'2006-02-14 15:16:03',2133,361,NULL,2,'2006-02-15 21:30:53'), - (13299,'2005-08-19 18:46:33',4385,373,'2005-08-22 20:45:33',1,'2006-02-15 21:30:53'), - (13300,'2005-08-19 18:46:56',842,531,'2005-08-28 20:23:56',2,'2006-02-15 21:30:53'), - (13301,'2005-08-19 18:53:15',2261,494,'2005-08-26 21:37:15',1,'2006-02-15 21:30:53'), - (13302,'2005-08-19 18:54:26',4041,51,'2005-08-21 23:01:26',1,'2006-02-15 21:30:53'), - (13303,'2005-08-19 18:55:21',34,184,'2005-08-23 18:49:21',2,'2006-02-15 21:30:53'), - (13304,'2005-08-19 18:56:32',2979,405,'2005-08-23 20:04:32',2,'2006-02-15 21:30:53'), - (13305,'2005-08-19 18:57:05',2386,337,'2005-08-28 22:28:05',1,'2006-02-15 21:30:53'), - (13306,'2005-08-19 18:57:29',2742,229,'2005-08-20 20:09:29',2,'2006-02-15 21:30:53'), - (13307,'2005-08-19 18:58:44',2242,547,'2005-08-22 00:15:44',1,'2006-02-15 21:30:53'), - (13308,'2005-08-19 18:59:42',3189,414,'2005-08-28 13:21:42',2,'2006-02-15 21:30:53'), - (13309,'2005-08-19 19:04:00',2108,91,'2005-08-28 23:08:00',2,'2006-02-15 21:30:53'), - (13310,'2005-08-19 19:05:16',2563,311,'2005-08-23 22:47:16',1,'2006-02-15 21:30:53'), - (13311,'2005-08-19 19:07:09',3890,520,'2005-08-20 23:07:09',1,'2006-02-15 21:30:53'), - (13312,'2005-08-19 19:09:14',2891,418,'2005-08-23 00:50:14',2,'2006-02-15 21:30:53'), - (13313,'2005-08-19 19:11:41',3709,580,'2005-08-21 23:53:41',2,'2006-02-15 21:30:53'), - (13314,'2005-08-19 19:12:43',2899,347,'2005-08-27 00:20:43',2,'2006-02-15 21:30:53'), - (13315,'2005-08-19 19:16:18',3151,54,'2005-08-21 20:58:18',1,'2006-02-15 21:30:53'), - (13316,'2005-08-19 19:23:30',4450,10,'2005-08-22 23:37:30',1,'2006-02-15 21:30:53'), - (13317,'2005-08-19 19:25:42',3349,20,'2005-08-20 20:57:42',2,'2006-02-15 21:30:53'), - (13318,'2005-08-19 19:33:57',1389,413,'2005-08-21 17:52:57',2,'2006-02-15 21:30:53'), - (13319,'2005-08-19 19:35:13',2496,438,'2005-08-27 17:59:13',1,'2006-02-15 21:30:53'), - (13320,'2005-08-19 19:35:33',4522,172,'2005-08-24 20:09:33',2,'2006-02-15 21:30:53'), - (13321,'2005-08-19 19:40:37',4183,280,'2005-08-21 19:09:37',2,'2006-02-15 21:30:53'), - (13322,'2005-08-19 19:43:08',2149,559,'2005-08-24 16:30:08',2,'2006-02-15 21:30:53'), - (13323,'2005-08-19 19:48:07',1055,133,'2005-08-23 15:28:07',1,'2006-02-15 21:30:53'), - (13324,'2005-08-19 19:51:00',4349,564,'2005-08-20 20:26:00',1,'2006-02-15 21:30:53'), - (13325,'2005-08-19 19:52:02',2388,334,'2005-08-22 21:14:02',1,'2006-02-15 21:30:53'), - (13326,'2005-08-19 19:52:52',429,576,'2005-08-20 18:56:52',1,'2006-02-15 21:30:53'), - (13327,'2005-08-19 19:55:45',1808,72,'2005-08-22 15:05:45',2,'2006-02-15 21:30:53'), - (13328,'2005-08-19 19:56:01',605,462,'2005-08-20 22:16:01',2,'2006-02-15 21:30:53'), - (13329,'2005-08-19 19:56:55',3136,373,'2005-08-25 01:19:55',2,'2006-02-15 21:30:53'), - (13330,'2005-08-19 19:59:21',4276,297,'2005-08-20 15:34:21',2,'2006-02-15 21:30:53'), - (13331,'2005-08-19 20:00:25',3867,23,'2005-08-21 17:03:25',1,'2006-02-15 21:30:53'), - (13332,'2005-08-19 20:00:51',3144,503,'2005-08-25 14:30:51',1,'2006-02-15 21:30:53'), - (13333,'2006-02-14 15:16:03',1092,64,NULL,2,'2006-02-15 21:30:53'), - (13334,'2005-08-19 20:02:33',461,379,'2005-08-22 00:45:33',1,'2006-02-15 21:30:53'), - (13335,'2005-08-19 20:03:18',1861,74,'2005-08-24 20:09:18',2,'2006-02-15 21:30:53'), - (13336,'2005-08-19 20:03:22',1011,289,'2005-08-24 23:42:22',1,'2006-02-15 21:30:53'), - (13337,'2005-08-19 20:06:57',3584,374,'2005-08-20 16:31:57',1,'2006-02-15 21:30:53'), - (13338,'2005-08-19 20:09:59',3739,86,'2005-08-23 22:59:59',2,'2006-02-15 21:30:53'), - (13339,'2005-08-19 20:18:36',1428,15,'2005-08-28 21:34:36',1,'2006-02-15 21:30:53'), - (13340,'2005-08-19 20:18:39',4358,45,'2005-08-28 21:06:39',2,'2006-02-15 21:30:53'), - (13341,'2005-08-19 20:18:53',1749,460,'2005-08-27 14:36:53',1,'2006-02-15 21:30:53'), - (13342,'2005-08-19 20:21:36',3476,172,'2005-08-21 16:26:36',1,'2006-02-15 21:30:53'), - (13343,'2005-08-19 20:22:08',1032,591,'2005-08-27 17:21:08',1,'2006-02-15 21:30:53'), - (13344,'2005-08-19 20:22:44',4392,514,'2005-08-25 18:39:44',1,'2006-02-15 21:30:53'), - (13345,'2005-08-19 20:25:24',47,55,'2005-08-27 20:38:24',1,'2006-02-15 21:30:53'), - (13346,'2005-08-19 20:28:21',4541,131,'2005-08-28 00:28:21',2,'2006-02-15 21:30:53'), - (13347,'2005-08-19 20:28:48',4038,562,'2005-08-28 19:33:48',2,'2006-02-15 21:30:53'), - (13348,'2005-08-19 20:31:48',275,456,'2005-08-21 21:01:48',1,'2006-02-15 21:30:53'), - (13349,'2005-08-19 20:43:16',4262,234,'2005-08-20 16:21:16',1,'2006-02-15 21:30:53'), - (13350,'2005-08-19 20:44:00',3523,214,'2005-08-27 01:23:00',2,'2006-02-15 21:30:53'), - (13351,'2006-02-14 15:16:03',4130,42,NULL,2,'2006-02-15 21:30:53'), - (13352,'2005-08-19 20:51:40',2689,80,'2005-08-24 01:22:40',1,'2006-02-15 21:30:53'), - (13353,'2005-08-19 20:53:43',2790,131,'2005-08-25 01:25:43',1,'2006-02-15 21:30:53'), - (13354,'2005-08-19 20:55:23',1356,213,'2005-08-27 20:09:23',2,'2006-02-15 21:30:53'), - (13355,'2005-08-19 20:59:19',585,396,'2005-08-23 21:44:19',1,'2006-02-15 21:30:53'), - (13356,'2005-08-19 21:02:21',2713,324,'2005-08-24 00:31:21',1,'2006-02-15 21:30:53'), - (13357,'2005-08-19 21:02:59',3295,393,'2005-08-25 23:46:59',2,'2006-02-15 21:30:53'), - (13358,'2005-08-19 21:04:20',1510,439,'2005-08-24 20:49:20',2,'2006-02-15 21:30:53'), - (13359,'2005-08-19 21:04:49',4175,434,'2005-08-27 01:46:49',1,'2006-02-15 21:30:53'), - (13360,'2005-08-19 21:05:11',3396,327,'2005-08-24 16:05:11',2,'2006-02-15 21:30:53'), - (13361,'2005-08-19 21:07:22',4289,107,'2005-08-21 21:26:22',2,'2006-02-15 21:30:53'), - (13362,'2005-08-19 21:07:54',869,565,'2005-08-20 17:29:54',2,'2006-02-15 21:30:53'), - (13363,'2005-08-19 21:07:59',588,288,'2005-08-21 17:08:59',1,'2006-02-15 21:30:53'), - (13364,'2005-08-19 21:09:30',2773,236,'2005-08-25 18:37:30',1,'2006-02-15 21:30:53'), - (13365,'2005-08-19 21:12:37',4136,307,'2005-08-25 19:56:37',2,'2006-02-15 21:30:53'), - (13366,'2005-08-19 21:14:45',602,259,'2005-08-21 03:06:45',1,'2006-02-15 21:30:53'), - (13367,'2005-08-19 21:19:27',4569,290,'2005-08-24 15:22:27',2,'2006-02-15 21:30:53'), - (13368,'2005-08-19 21:19:35',1073,342,'2005-08-21 16:12:35',2,'2006-02-15 21:30:53'), - (13369,'2005-08-19 21:19:47',2728,116,'2005-08-24 23:25:47',1,'2006-02-15 21:30:53'), - (13370,'2005-08-19 21:20:11',239,101,'2005-08-25 22:51:11',1,'2006-02-15 21:30:53'), - (13371,'2005-08-19 21:21:47',3401,34,'2005-08-26 16:17:47',2,'2006-02-15 21:30:53'), - (13372,'2005-08-19 21:23:19',3366,150,'2005-08-24 22:12:19',1,'2006-02-15 21:30:53'), - (13373,'2005-08-19 21:23:31',4045,7,'2005-08-25 22:38:31',1,'2006-02-15 21:30:53'), - (13374,'2006-02-14 15:16:03',2721,227,NULL,1,'2006-02-15 21:30:53'), - (13375,'2005-08-19 21:31:31',949,120,'2005-08-29 00:17:31',1,'2006-02-15 21:30:53'), - (13376,'2005-08-19 21:31:45',898,40,'2005-08-22 01:14:45',2,'2006-02-15 21:30:53'), - (13377,'2005-08-19 21:32:23',1316,572,'2005-08-25 22:24:23',1,'2006-02-15 21:30:53'), - (13378,'2005-08-19 21:33:35',2708,368,'2005-08-20 22:47:35',1,'2006-02-15 21:30:53'), - (13379,'2005-08-19 21:33:39',1623,227,'2005-08-22 21:00:39',1,'2006-02-15 21:30:53'), - (13380,'2005-08-19 21:36:58',4250,451,'2005-08-22 23:55:58',1,'2006-02-15 21:30:53'), - (13381,'2005-08-19 21:37:57',2823,21,'2005-08-21 18:07:57',2,'2006-02-15 21:30:53'), - (13382,'2005-08-19 21:38:41',3720,436,'2005-08-28 15:49:41',1,'2006-02-15 21:30:53'), - (13383,'2005-08-19 21:38:44',3193,434,'2005-08-28 23:22:44',2,'2006-02-15 21:30:53'), - (13384,'2005-08-19 21:38:51',1462,440,'2005-08-23 17:55:51',1,'2006-02-15 21:30:53'), - (13385,'2005-08-19 21:39:35',4323,252,'2005-08-22 22:38:35',2,'2006-02-15 21:30:53'), - (13386,'2005-08-19 21:43:58',4476,324,'2005-08-24 20:29:58',2,'2006-02-15 21:30:53'), - (13387,'2005-08-19 21:46:10',123,504,'2005-08-24 01:16:10',1,'2006-02-15 21:30:53'), - (13388,'2005-08-19 21:46:49',942,317,'2005-08-27 16:18:49',1,'2006-02-15 21:30:53'), - (13389,'2005-08-19 21:52:51',3352,257,'2005-08-25 02:38:51',1,'2006-02-15 21:30:53'), - (13390,'2006-02-14 15:16:03',2855,135,NULL,1,'2006-02-15 21:30:53'), - (13391,'2005-08-19 22:01:42',4220,16,'2005-08-24 22:20:42',2,'2006-02-15 21:30:53'), - (13392,'2005-08-19 22:03:22',692,409,'2005-08-28 19:27:22',1,'2006-02-15 21:30:53'), - (13393,'2005-08-19 22:03:46',958,15,'2005-08-28 19:19:46',2,'2006-02-15 21:30:53'), - (13394,'2005-08-19 22:05:19',2597,45,'2005-08-21 23:53:19',1,'2006-02-15 21:30:53'), - (13395,'2005-08-19 22:05:40',53,80,'2005-08-22 01:31:40',2,'2006-02-15 21:30:53'), - (13396,'2005-08-19 22:06:09',4169,517,'2005-08-23 23:26:09',2,'2006-02-15 21:30:53'), - (13397,'2005-08-19 22:06:35',3863,379,'2005-08-29 01:11:35',2,'2006-02-15 21:30:53'), - (13398,'2005-08-19 22:08:48',3376,405,'2005-08-23 03:24:48',1,'2006-02-15 21:30:53'), - (13399,'2005-08-19 22:09:28',2309,21,'2005-08-25 20:25:28',2,'2006-02-15 21:30:53'), - (13400,'2005-08-19 22:11:44',2173,179,'2005-08-20 23:27:44',2,'2006-02-15 21:30:53'), - (13401,'2005-08-19 22:16:16',488,139,'2005-08-25 19:01:16',2,'2006-02-15 21:30:53'), - (13402,'2005-08-19 22:16:53',3264,372,'2005-08-22 22:28:53',1,'2006-02-15 21:30:53'), - (13403,'2005-08-19 22:18:07',3241,3,'2005-08-27 19:23:07',1,'2006-02-15 21:30:53'), - (13404,'2005-08-19 22:18:42',416,414,'2005-08-23 16:29:42',2,'2006-02-15 21:30:53'), - (13405,'2005-08-19 22:20:49',1554,181,'2005-08-28 21:21:49',1,'2006-02-15 21:30:53'), - (13406,'2005-08-19 22:22:01',3031,113,'2005-08-22 18:16:01',1,'2006-02-15 21:30:53'), - (13407,'2005-08-19 22:26:26',2512,131,'2005-08-22 16:34:26',1,'2006-02-15 21:30:53'), - (13408,'2005-08-19 22:34:51',2795,575,'2005-08-21 03:30:51',1,'2006-02-15 21:30:53'), - (13409,'2005-08-19 22:36:26',873,214,'2005-08-22 01:52:26',2,'2006-02-15 21:30:53'), - (13410,'2005-08-19 22:41:44',1421,104,'2005-08-26 18:05:44',2,'2006-02-15 21:30:53'), - (13411,'2005-08-19 22:43:38',4425,21,'2005-08-26 18:29:38',2,'2006-02-15 21:30:53'), - (13412,'2005-08-19 22:46:35',2806,404,'2005-08-26 18:06:35',1,'2006-02-15 21:30:53'), - (13413,'2005-08-19 22:46:46',1501,390,'2005-08-24 22:52:46',1,'2006-02-15 21:30:53'), - (13414,'2005-08-19 22:47:34',4126,438,'2005-08-21 02:50:34',1,'2006-02-15 21:30:53'), - (13415,'2005-08-19 22:48:09',1105,181,'2005-08-25 02:09:09',1,'2006-02-15 21:30:53'), - (13416,'2005-08-19 22:48:48',1075,204,'2005-08-21 22:09:48',2,'2006-02-15 21:30:53'), - (13417,'2005-08-19 22:51:39',92,468,'2005-08-23 03:34:39',1,'2006-02-15 21:30:53'), - (13418,'2005-08-19 22:53:56',2113,246,'2005-08-28 02:05:56',2,'2006-02-15 21:30:53'), - (13419,'2006-02-14 15:16:03',3507,537,NULL,1,'2006-02-15 21:30:53'), - (13420,'2005-08-19 22:57:25',1796,102,'2005-08-28 22:46:25',1,'2006-02-15 21:30:53'), - (13421,'2006-02-14 15:16:03',9,366,NULL,1,'2006-02-15 21:30:53'), - (13422,'2005-08-19 23:07:24',3835,404,'2005-08-28 04:12:24',2,'2006-02-15 21:30:53'), - (13423,'2005-08-19 23:07:42',546,311,'2005-08-26 20:45:42',1,'2006-02-15 21:30:53'), - (13424,'2005-08-19 23:10:09',4340,216,'2005-08-23 02:25:09',1,'2006-02-15 21:30:53'), - (13425,'2005-08-19 23:11:44',2274,340,'2005-08-25 21:19:44',2,'2006-02-15 21:30:53'), - (13426,'2005-08-19 23:15:00',3409,213,'2005-08-21 01:53:00',2,'2006-02-15 21:30:53'), - (13427,'2005-08-19 23:19:02',3120,239,'2005-08-21 18:30:02',1,'2006-02-15 21:30:53'), - (13428,'2006-02-14 15:16:03',106,44,NULL,2,'2006-02-15 21:30:53'), - (13429,'2005-08-19 23:25:37',3677,23,'2005-08-28 01:04:37',2,'2006-02-15 21:30:53'), - (13430,'2005-08-19 23:25:43',2852,381,'2005-08-22 18:41:43',1,'2006-02-15 21:30:53'), - (13431,'2005-08-19 23:28:15',1700,229,'2005-08-25 04:44:15',1,'2006-02-15 21:30:53'), - (13432,'2005-08-19 23:29:06',2216,78,'2005-08-23 00:57:06',1,'2006-02-15 21:30:53'), - (13433,'2005-08-19 23:30:53',1647,171,'2005-08-22 05:18:53',2,'2006-02-15 21:30:53'), - (13434,'2005-08-19 23:34:26',2073,221,'2005-08-23 18:33:26',1,'2006-02-15 21:30:53'), - (13435,'2005-08-19 23:35:44',3919,30,'2005-08-24 18:14:44',2,'2006-02-15 21:30:53'), - (13436,'2005-08-19 23:36:25',2499,29,'2005-08-23 18:38:25',1,'2006-02-15 21:30:53'), - (13437,'2005-08-19 23:37:52',2292,67,'2005-08-28 22:17:52',1,'2006-02-15 21:30:53'), - (13438,'2005-08-19 23:38:02',1750,520,'2005-08-26 21:36:02',1,'2006-02-15 21:30:53'), - (13439,'2005-08-19 23:42:16',3535,551,'2005-08-26 21:24:16',2,'2006-02-15 21:30:53'), - (13440,'2005-08-19 23:42:52',2842,260,'2005-08-25 19:19:52',1,'2006-02-15 21:30:53'), - (13441,'2005-08-19 23:48:23',3188,125,'2005-08-28 23:47:23',1,'2006-02-15 21:30:53'), - (13442,'2005-08-19 23:50:45',2432,356,'2005-08-27 22:01:45',2,'2006-02-15 21:30:53'), - (13443,'2005-08-19 23:53:42',3161,236,'2005-08-28 05:37:42',1,'2006-02-15 21:30:53'), - (13444,'2005-08-20 00:00:24',2564,37,'2005-08-21 05:59:24',2,'2006-02-15 21:30:53'), - (13445,'2005-08-20 00:05:33',1630,495,'2005-08-21 21:20:33',1,'2006-02-15 21:30:53'), - (13446,'2005-08-20 00:06:13',3226,488,'2005-08-22 19:56:13',1,'2006-02-15 21:30:53'), - (13447,'2005-08-20 00:09:36',285,542,'2005-08-25 01:22:36',1,'2006-02-15 21:30:53'), - (13448,'2005-08-20 00:12:43',2870,327,'2005-08-25 02:33:43',1,'2006-02-15 21:30:53'), - (13449,'2005-08-20 00:17:01',1297,400,'2005-08-23 20:42:01',2,'2006-02-15 21:30:53'), - (13450,'2005-08-20 00:18:15',135,61,'2005-08-24 19:36:15',1,'2006-02-15 21:30:53'), - (13451,'2005-08-20 00:18:25',3837,6,'2005-08-29 01:08:25',1,'2006-02-15 21:30:53'), - (13452,'2005-08-20 00:20:07',2449,430,'2005-08-25 05:43:07',1,'2006-02-15 21:30:53'), - (13453,'2005-08-20 00:30:51',2203,164,'2005-08-28 18:43:51',2,'2006-02-15 21:30:53'), - (13454,'2005-08-20 00:30:52',1553,430,'2005-08-27 19:45:52',2,'2006-02-15 21:30:53'), - (13455,'2005-08-20 00:32:17',1315,133,'2005-08-26 19:33:17',1,'2006-02-15 21:30:53'), - (13456,'2005-08-20 00:33:19',1644,13,'2005-08-22 01:47:19',1,'2006-02-15 21:30:53'), - (13457,'2005-08-20 00:33:22',1220,256,'2005-08-26 21:37:22',2,'2006-02-15 21:30:53'), - (13458,'2005-08-20 00:35:30',4223,228,'2005-08-21 20:51:30',1,'2006-02-15 21:30:53'), - (13459,'2005-08-20 00:45:40',3666,114,'2005-08-29 02:53:40',2,'2006-02-15 21:30:53'), - (13460,'2005-08-20 00:48:24',244,410,'2005-08-28 04:13:24',2,'2006-02-15 21:30:53'), - (13461,'2005-08-20 00:49:04',2621,421,'2005-08-28 02:49:04',2,'2006-02-15 21:30:53'), - (13462,'2005-08-20 00:49:19',3865,489,'2005-08-26 06:21:19',2,'2006-02-15 21:30:53'), - (13463,'2005-08-20 00:50:54',510,21,'2005-08-28 23:00:54',1,'2006-02-15 21:30:53'), - (13464,'2006-02-14 15:16:03',4292,576,NULL,1,'2006-02-15 21:30:53'), - (13465,'2005-08-20 00:54:14',1305,575,'2005-08-21 20:55:14',2,'2006-02-15 21:30:53'), - (13466,'2005-08-20 00:55:16',3088,262,'2005-08-22 22:48:16',1,'2006-02-15 21:30:53'), - (13467,'2005-08-20 00:56:44',696,373,'2005-08-20 20:16:44',1,'2006-02-15 21:30:53'), - (13468,'2005-08-20 00:56:44',1851,266,'2005-08-29 06:26:44',1,'2006-02-15 21:30:53'), - (13469,'2005-08-20 00:59:36',1410,235,'2005-08-24 22:41:36',1,'2006-02-15 21:30:53'), - (13470,'2005-08-20 01:01:16',3097,141,'2005-08-21 03:19:16',1,'2006-02-15 21:30:53'), - (13471,'2005-08-20 01:02:26',1391,296,'2005-08-25 06:37:26',2,'2006-02-15 21:30:53'), - (13472,'2005-08-20 01:03:31',3074,137,'2005-08-28 02:54:31',1,'2006-02-15 21:30:53'), - (13473,'2005-08-20 01:03:50',381,390,'2005-08-22 02:33:50',2,'2006-02-15 21:30:53'), - (13474,'2005-08-20 01:04:32',1209,116,'2005-08-21 20:26:32',2,'2006-02-15 21:30:53'), - (13475,'2005-08-20 01:05:05',3214,68,'2005-08-20 20:22:05',2,'2006-02-15 21:30:53'), - (13476,'2005-08-20 01:06:04',2866,7,'2005-08-24 23:56:04',1,'2006-02-15 21:30:53'), - (13477,'2005-08-20 01:07:00',1442,222,'2005-08-26 02:47:00',1,'2006-02-15 21:30:53'), - (13478,'2005-08-20 01:07:14',2190,466,'2005-08-22 03:41:14',1,'2006-02-15 21:30:53'), - (13479,'2005-08-20 01:09:11',1262,87,'2005-08-26 05:35:11',2,'2006-02-15 21:30:53'), - (13480,'2005-08-20 01:10:27',206,16,'2005-08-27 22:18:27',2,'2006-02-15 21:30:53'), - (13481,'2005-08-20 01:11:12',2678,157,'2005-08-26 23:07:12',2,'2006-02-15 21:30:53'), - (13482,'2005-08-20 01:14:30',1627,183,'2005-08-24 04:57:30',1,'2006-02-15 21:30:53'), - (13483,'2005-08-20 01:16:38',2550,441,'2005-08-21 20:43:38',2,'2006-02-15 21:30:53'), - (13484,'2005-08-20 01:16:52',1533,152,'2005-08-22 23:47:52',2,'2006-02-15 21:30:53'), - (13485,'2005-08-20 01:20:14',3802,379,'2005-08-22 01:28:14',2,'2006-02-15 21:30:53'), - (13486,'2006-02-14 15:16:03',4460,274,NULL,1,'2006-02-15 21:30:53'), - (13487,'2005-08-20 01:27:05',2609,458,'2005-08-24 00:41:05',2,'2006-02-15 21:30:53'), - (13488,'2005-08-20 01:28:42',867,444,'2005-08-25 06:17:42',2,'2006-02-15 21:30:53'), - (13489,'2005-08-20 01:29:06',2934,443,'2005-08-27 21:11:06',1,'2006-02-15 21:30:53'), - (13490,'2005-08-20 01:29:29',238,18,'2005-08-21 22:36:29',2,'2006-02-15 21:30:53'), - (13491,'2005-08-20 01:30:56',2503,258,'2005-08-28 23:26:56',2,'2006-02-15 21:30:53'), - (13492,'2005-08-20 01:32:04',1155,462,'2005-08-29 02:14:04',2,'2006-02-15 21:30:53'), - (13493,'2005-08-20 01:33:36',2927,37,'2005-08-24 06:32:36',1,'2006-02-15 21:30:53'), - (13494,'2005-08-20 01:36:34',1632,414,'2005-08-21 06:52:34',1,'2006-02-15 21:30:53'), - (13495,'2005-08-20 01:40:25',3881,92,'2005-08-23 06:32:25',2,'2006-02-15 21:30:53'), - (13496,'2005-08-20 01:42:29',3040,454,'2005-08-29 06:47:29',2,'2006-02-15 21:30:53'), - (13497,'2005-08-20 01:46:38',1296,481,'2005-08-26 05:37:38',2,'2006-02-15 21:30:53'), - (13498,'2005-08-20 01:51:23',1603,578,'2005-08-24 05:32:23',1,'2006-02-15 21:30:53'), - (13499,'2005-08-20 01:52:30',1893,300,'2005-08-28 04:57:30',1,'2006-02-15 21:30:53'), - (13500,'2005-08-20 01:54:39',1353,577,'2005-08-25 21:23:39',1,'2006-02-15 21:30:53'), - (13501,'2005-08-20 01:56:20',4369,390,'2005-08-22 23:07:20',2,'2006-02-15 21:30:53'), - (13502,'2005-08-20 01:58:15',1324,309,'2005-08-21 20:21:15',1,'2006-02-15 21:30:53'), - (13503,'2005-08-20 02:00:33',453,15,'2005-08-28 21:03:33',1,'2006-02-15 21:30:53'), - (13504,'2005-08-20 02:01:48',4322,293,'2005-08-25 21:52:48',2,'2006-02-15 21:30:53'), - (13505,'2005-08-20 02:05:57',914,536,'2005-08-23 05:52:57',1,'2006-02-15 21:30:53'), - (13506,'2005-08-20 02:07:06',1334,261,'2005-08-26 08:06:06',1,'2006-02-15 21:30:53'), - (13507,'2005-08-20 02:10:27',3324,478,'2005-08-23 04:03:27',2,'2006-02-15 21:30:53'), - (13508,'2005-08-20 02:12:54',4120,408,'2005-08-28 21:47:54',2,'2006-02-15 21:30:53'), - (13509,'2005-08-20 02:14:16',3698,128,'2005-08-22 06:36:16',2,'2006-02-15 21:30:53'), - (13510,'2005-08-20 02:18:30',691,107,'2005-08-27 01:33:30',1,'2006-02-15 21:30:53'), - (13511,'2005-08-20 02:21:40',2973,23,'2005-08-21 03:26:40',1,'2006-02-15 21:30:53'), - (13512,'2005-08-20 02:27:13',4508,62,'2005-08-28 04:40:13',2,'2006-02-15 21:30:53'), - (13513,'2005-08-20 02:27:53',1653,454,'2005-08-22 06:10:53',1,'2006-02-15 21:30:53'), - (13514,'2005-08-20 02:28:09',3407,96,'2005-08-25 00:41:09',1,'2006-02-15 21:30:53'), - (13515,'2005-08-20 02:29:47',3438,194,'2005-08-23 08:12:47',2,'2006-02-15 21:30:53'), - (13516,'2005-08-20 02:32:45',4286,95,'2005-08-27 04:38:45',1,'2006-02-15 21:30:53'), - (13517,'2005-08-20 02:33:17',533,186,'2005-08-23 22:40:17',2,'2006-02-15 21:30:53'), - (13518,'2005-08-20 02:36:17',352,528,'2005-08-24 08:06:17',1,'2006-02-15 21:30:53'), - (13519,'2005-08-20 02:37:07',182,12,'2005-08-23 01:26:07',2,'2006-02-15 21:30:53'), - (13520,'2005-08-20 02:41:46',3326,74,'2005-08-22 01:53:46',1,'2006-02-15 21:30:53'), - (13521,'2005-08-20 02:42:28',2586,384,'2005-08-22 06:12:28',1,'2006-02-15 21:30:53'), - (13522,'2005-08-20 02:44:06',2940,343,'2005-08-28 05:30:06',1,'2006-02-15 21:30:53'), - (13523,'2005-08-20 02:47:03',163,572,'2005-08-28 07:43:03',1,'2006-02-15 21:30:53'), - (13524,'2005-08-20 02:48:43',4557,593,'2005-08-27 03:14:43',2,'2006-02-15 21:30:53'), - (13525,'2005-08-20 02:50:44',3514,111,'2005-08-26 22:58:44',2,'2006-02-15 21:30:53'), - (13526,'2005-08-20 02:58:42',1966,277,'2005-08-27 22:36:42',2,'2006-02-15 21:30:53'), - (13527,'2005-08-20 03:00:47',4424,521,'2005-08-25 01:03:47',1,'2006-02-15 21:30:53'), - (13528,'2005-08-20 03:03:31',1847,202,'2005-08-26 03:09:31',1,'2006-02-15 21:30:53'), - (13529,'2005-08-20 03:07:47',1979,193,'2005-08-21 21:50:47',1,'2006-02-15 21:30:53'), - (13530,'2005-08-20 03:12:43',597,156,'2005-08-23 09:01:43',2,'2006-02-15 21:30:53'), - (13531,'2005-08-20 03:26:10',2778,156,'2005-08-25 03:41:10',1,'2006-02-15 21:30:53'), - (13532,'2005-08-20 03:29:28',1433,168,'2005-08-23 22:53:28',2,'2006-02-15 21:30:53'), - (13533,'2005-08-20 03:30:00',1801,436,'2005-08-27 05:53:00',1,'2006-02-15 21:30:53'), - (13534,'2006-02-14 15:16:03',2476,75,NULL,1,'2006-02-15 21:30:53'), - (13535,'2005-08-20 03:30:25',1563,86,'2005-08-28 04:35:25',1,'2006-02-15 21:30:53'), - (13536,'2005-08-20 03:35:16',667,183,'2005-08-25 04:06:16',2,'2006-02-15 21:30:53'), - (13537,'2005-08-20 03:39:15',2521,418,'2005-08-23 22:03:15',2,'2006-02-15 21:30:53'), - (13538,'2006-02-14 15:16:03',581,279,NULL,1,'2006-02-15 21:30:53'), - (13539,'2005-08-20 03:40:27',3110,518,'2005-08-27 07:15:27',1,'2006-02-15 21:30:53'), - (13540,'2005-08-20 03:41:23',3785,557,'2005-08-27 09:09:23',2,'2006-02-15 21:30:53'), - (13541,'2005-08-20 03:41:41',1363,15,'2005-08-24 23:14:41',1,'2006-02-15 21:30:53'), - (13542,'2005-08-20 03:41:57',4543,147,'2005-08-29 03:21:57',2,'2006-02-15 21:30:53'), - (13543,'2005-08-20 03:43:13',2142,163,'2005-08-29 07:14:13',2,'2006-02-15 21:30:53'), - (13544,'2005-08-20 03:44:26',58,538,'2005-08-27 22:11:26',1,'2006-02-15 21:30:53'), - (13545,'2005-08-20 03:50:15',615,417,'2005-08-27 22:24:15',1,'2006-02-15 21:30:53'), - (13546,'2005-08-20 03:50:24',2492,390,'2005-08-28 03:04:24',2,'2006-02-15 21:30:53'), - (13547,'2005-08-20 03:53:16',3122,456,'2005-08-25 04:02:16',1,'2006-02-15 21:30:53'), - (13548,'2005-08-20 03:53:20',4389,319,'2005-08-27 21:54:20',1,'2006-02-15 21:30:53'), - (13549,'2005-08-20 03:58:41',508,274,'2005-08-28 22:49:41',1,'2006-02-15 21:30:53'), - (13550,'2005-08-20 03:58:51',208,206,'2005-08-28 00:45:51',2,'2006-02-15 21:30:53'), - (13551,'2005-08-20 04:00:30',1049,503,'2005-08-21 06:26:30',2,'2006-02-15 21:30:53'), - (13552,'2005-08-20 04:03:51',758,578,'2005-08-23 02:48:51',2,'2006-02-15 21:30:53'), - (13553,'2005-08-20 04:07:21',4407,314,'2005-08-28 09:55:21',1,'2006-02-15 21:30:53'), - (13554,'2005-08-20 04:08:39',2648,569,'2005-08-28 07:11:39',2,'2006-02-15 21:30:53'), - (13555,'2005-08-20 04:09:50',3176,93,'2005-08-29 05:20:50',1,'2006-02-15 21:30:53'), - (13556,'2005-08-20 04:10:26',3914,266,'2005-08-26 06:45:26',2,'2006-02-15 21:30:53'), - (13557,'2005-08-20 04:12:41',2290,23,'2005-08-21 02:33:41',2,'2006-02-15 21:30:53'), - (13558,'2005-08-20 04:13:17',1551,564,'2005-08-24 06:38:17',1,'2006-02-15 21:30:53'), - (13559,'2005-08-20 04:16:07',2413,444,'2005-08-24 23:23:07',1,'2006-02-15 21:30:53'), - (13560,'2005-08-20 04:17:16',820,56,'2005-08-28 08:38:16',1,'2006-02-15 21:30:53'), - (13561,'2006-02-14 15:16:03',3202,530,NULL,1,'2006-02-15 21:30:53'), - (13562,'2005-08-20 04:31:45',4547,36,'2005-08-25 09:59:45',1,'2006-02-15 21:30:53'), - (13563,'2005-08-20 04:33:31',599,366,'2005-08-24 07:08:31',2,'2006-02-15 21:30:53'), - (13564,'2005-08-20 04:34:46',678,36,'2005-08-28 23:18:46',2,'2006-02-15 21:30:53'), - (13565,'2005-08-20 04:38:52',3378,214,'2005-08-27 07:17:52',1,'2006-02-15 21:30:53'), - (13566,'2005-08-20 04:45:32',4397,558,'2005-08-28 02:12:32',2,'2006-02-15 21:30:53'), - (13567,'2005-08-20 04:49:21',543,242,'2005-08-26 10:27:21',1,'2006-02-15 21:30:53'), - (13568,'2005-08-20 05:02:46',1243,151,'2005-08-27 03:12:46',2,'2006-02-15 21:30:53'), - (13569,'2005-08-20 05:02:59',1934,496,'2005-08-28 00:51:59',1,'2006-02-15 21:30:53'), - (13570,'2005-08-20 05:04:57',2808,188,'2005-08-24 06:19:57',2,'2006-02-15 21:30:53'), - (13571,'2005-08-20 05:05:14',1251,458,'2005-08-25 03:59:14',2,'2006-02-15 21:30:53'), - (13572,'2005-08-20 05:07:27',660,11,'2005-08-23 23:33:27',1,'2006-02-15 21:30:53'), - (13573,'2005-08-20 05:10:14',3032,59,'2005-08-22 00:59:14',1,'2006-02-15 21:30:53'), - (13574,'2005-08-20 05:10:39',2383,552,'2005-08-21 02:21:39',2,'2006-02-15 21:30:53'), - (13575,'2005-08-20 05:15:20',2729,339,'2005-08-28 07:36:20',2,'2006-02-15 21:30:53'), - (13576,'2005-08-20 05:19:56',2669,223,'2005-08-22 09:08:56',2,'2006-02-15 21:30:53'), - (13577,'2006-02-14 15:16:03',3844,448,NULL,2,'2006-02-15 21:30:53'), - (13578,'2006-02-14 15:16:03',4301,352,NULL,2,'2006-02-15 21:30:53'), - (13579,'2005-08-20 05:22:06',4237,333,'2005-08-28 02:33:06',2,'2006-02-15 21:30:53'), - (13580,'2005-08-20 05:23:34',4419,526,'2005-08-23 02:45:34',1,'2006-02-15 21:30:53'), - (13581,'2005-08-20 05:26:15',1753,119,'2005-08-21 11:07:15',2,'2006-02-15 21:30:53'), - (13582,'2005-08-20 05:28:11',211,166,'2005-08-23 02:06:11',2,'2006-02-15 21:30:53'), - (13583,'2005-08-20 05:29:45',176,74,'2005-08-26 06:49:45',1,'2006-02-15 21:30:53'), - (13584,'2006-02-14 15:16:03',3966,548,NULL,2,'2006-02-15 21:30:53'), - (13585,'2005-08-20 05:32:23',3314,470,'2005-08-27 23:36:23',1,'2006-02-15 21:30:53'), - (13586,'2005-08-20 05:40:33',4544,445,'2005-08-25 01:32:33',2,'2006-02-15 21:30:53'), - (13587,'2006-02-14 15:16:03',2455,431,NULL,2,'2006-02-15 21:30:53'), - (13588,'2005-08-20 05:47:11',702,279,'2005-08-28 02:45:11',2,'2006-02-15 21:30:53'), - (13589,'2005-08-20 05:47:25',3216,574,'2005-08-23 01:29:25',2,'2006-02-15 21:30:53'), - (13590,'2005-08-20 05:48:59',4417,264,'2005-08-25 00:44:59',2,'2006-02-15 21:30:53'), - (13591,'2005-08-20 05:50:05',3089,390,'2005-08-27 08:43:05',2,'2006-02-15 21:30:53'), - (13592,'2005-08-20 05:50:35',1509,470,'2005-08-23 04:52:35',1,'2006-02-15 21:30:53'), - (13593,'2005-08-20 05:50:52',261,585,'2005-08-27 05:28:52',2,'2006-02-15 21:30:53'), - (13594,'2005-08-20 05:53:31',3424,7,'2005-08-23 09:01:31',1,'2006-02-15 21:30:53'), - (13595,'2005-08-20 05:54:27',673,545,'2005-08-29 01:25:27',1,'2006-02-15 21:30:53'), - (13596,'2005-08-20 05:58:58',482,513,'2005-08-27 08:35:58',1,'2006-02-15 21:30:53'), - (13597,'2005-08-20 05:59:05',3697,72,'2005-08-24 05:38:05',2,'2006-02-15 21:30:53'), - (13598,'2005-08-20 05:59:17',2803,259,'2005-08-29 01:02:17',1,'2006-02-15 21:30:53'), - (13599,'2005-08-20 06:00:03',3333,150,'2005-08-29 07:56:03',1,'2006-02-15 21:30:53'), - (13600,'2005-08-20 06:00:25',431,528,'2005-08-28 02:39:25',1,'2006-02-15 21:30:53'), - (13601,'2005-08-20 06:01:15',2166,189,'2005-08-29 06:14:15',2,'2006-02-15 21:30:53'), - (13602,'2005-08-20 06:02:02',2805,348,'2005-08-27 04:51:02',1,'2006-02-15 21:30:53'), - (13603,'2005-08-20 06:02:48',937,362,'2005-08-29 09:39:48',1,'2006-02-15 21:30:53'), - (13604,'2005-08-20 06:03:33',4352,353,'2005-08-21 07:06:33',1,'2006-02-15 21:30:53'), - (13605,'2005-08-20 06:06:17',4446,522,'2005-08-26 00:53:17',2,'2006-02-15 21:30:53'), - (13606,'2005-08-20 06:07:01',83,146,'2005-08-27 04:59:01',2,'2006-02-15 21:30:53'), - (13607,'2005-08-20 06:08:42',2692,491,'2005-08-21 01:59:42',2,'2006-02-15 21:30:53'), - (13608,'2005-08-20 06:10:44',4110,193,'2005-08-24 07:08:44',1,'2006-02-15 21:30:53'), - (13609,'2005-08-20 06:11:51',299,328,'2005-08-23 04:13:51',2,'2006-02-15 21:30:53'), - (13610,'2005-08-20 06:14:12',2526,3,'2005-08-26 00:44:12',2,'2006-02-15 21:30:53'), - (13611,'2005-08-20 06:20:42',1460,112,'2005-08-28 10:07:42',1,'2006-02-15 21:30:53'), - (13612,'2005-08-20 06:22:08',675,505,'2005-08-28 02:22:08',1,'2006-02-15 21:30:53'), - (13613,'2005-08-20 06:23:53',2415,201,'2005-08-29 11:40:53',2,'2006-02-15 21:30:53'), - (13614,'2005-08-20 06:28:37',3736,381,'2005-08-22 07:54:37',2,'2006-02-15 21:30:53'), - (13615,'2005-08-20 06:28:53',1864,539,'2005-08-27 11:40:53',2,'2006-02-15 21:30:53'), - (13616,'2005-08-20 06:30:33',1694,194,'2005-08-27 09:29:33',2,'2006-02-15 21:30:53'), - (13617,'2005-08-20 06:35:30',4059,526,'2005-08-29 09:03:30',1,'2006-02-15 21:30:53'), - (13618,'2005-08-20 06:36:46',390,390,'2005-08-29 05:17:46',2,'2006-02-15 21:30:53'), - (13619,'2005-08-20 06:39:26',1068,365,'2005-08-23 05:22:26',2,'2006-02-15 21:30:53'), - (13620,'2005-08-20 06:41:27',2361,92,'2005-08-24 11:02:27',1,'2006-02-15 21:30:53'), - (13621,'2005-08-20 06:43:44',3754,581,'2005-08-23 06:25:44',2,'2006-02-15 21:30:53'), - (13622,'2005-08-20 06:45:32',3355,335,'2005-08-25 02:40:32',1,'2006-02-15 21:30:53'), - (13623,'2005-08-20 06:49:46',3948,321,'2005-08-25 05:19:46',2,'2006-02-15 21:30:53'), - (13624,'2005-08-20 06:51:02',430,63,'2005-08-29 02:39:02',1,'2006-02-15 21:30:53'), - (13625,'2005-08-20 06:52:03',60,422,'2005-08-27 07:43:03',1,'2006-02-15 21:30:53'), - (13626,'2005-08-20 06:55:24',594,524,'2005-08-29 12:32:24',1,'2006-02-15 21:30:53'), - (13627,'2005-08-20 06:59:00',603,329,'2005-08-29 11:43:00',2,'2006-02-15 21:30:53'), - (13628,'2005-08-20 07:03:53',1006,500,'2005-08-22 11:27:53',2,'2006-02-15 21:30:53'), - (13629,'2005-08-20 07:04:07',1834,392,'2005-08-25 12:36:07',1,'2006-02-15 21:30:53'), - (13630,'2005-08-20 07:05:56',3346,244,'2005-08-29 04:15:56',1,'2006-02-15 21:30:53'), - (13631,'2005-08-20 07:07:37',1015,535,'2005-08-22 04:01:37',1,'2006-02-15 21:30:53'), - (13632,'2005-08-20 07:10:52',4008,409,'2005-08-29 10:19:52',2,'2006-02-15 21:30:53'), - (13633,'2005-08-20 07:13:47',3227,301,'2005-08-24 11:25:47',1,'2006-02-15 21:30:53'), - (13634,'2005-08-20 07:16:45',850,411,'2005-08-22 03:38:45',1,'2006-02-15 21:30:53'), - (13635,'2005-08-20 07:17:35',669,286,'2005-08-29 06:27:35',1,'2006-02-15 21:30:53'), - (13636,'2005-08-20 07:20:09',1467,349,'2005-08-23 09:58:09',1,'2006-02-15 21:30:53'), - (13637,'2005-08-20 07:21:15',2298,342,'2005-08-24 10:13:15',2,'2006-02-15 21:30:53'), - (13638,'2005-08-20 07:21:15',3255,493,'2005-08-23 11:09:15',2,'2006-02-15 21:30:53'), - (13639,'2005-08-20 07:22:07',2489,562,'2005-08-23 11:24:07',2,'2006-02-15 21:30:53'), - (13640,'2005-08-20 07:22:53',3427,541,'2005-08-21 11:54:53',2,'2006-02-15 21:30:53'), - (13641,'2005-08-20 07:34:42',367,281,'2005-08-26 05:18:42',1,'2006-02-15 21:30:53'), - (13642,'2005-08-20 07:42:17',4415,452,'2005-08-29 10:49:17',1,'2006-02-15 21:30:53'), - (13643,'2005-08-20 07:42:24',2443,398,'2005-08-26 09:13:24',2,'2006-02-15 21:30:53'), - (13644,'2005-08-20 07:46:30',970,464,'2005-08-27 01:54:30',1,'2006-02-15 21:30:53'), - (13645,'2005-08-20 07:47:05',157,387,'2005-08-23 02:58:05',1,'2006-02-15 21:30:53'), - (13646,'2005-08-20 07:47:08',1347,242,'2005-08-29 08:33:08',1,'2006-02-15 21:30:53'), - (13647,'2005-08-20 07:48:07',3269,519,'2005-08-28 07:56:07',2,'2006-02-15 21:30:53'), - (13648,'2005-08-20 07:48:10',3921,596,'2005-08-22 12:15:10',2,'2006-02-15 21:30:53'), - (13649,'2005-08-20 07:48:38',1495,259,'2005-08-23 07:43:38',2,'2006-02-15 21:30:53'), - (13650,'2005-08-20 07:49:06',2644,322,'2005-08-28 10:11:06',1,'2006-02-15 21:30:53'), - (13651,'2005-08-20 07:50:08',1082,256,'2005-08-21 07:11:08',1,'2006-02-15 21:30:53'), - (13652,'2005-08-20 07:52:34',2548,67,'2005-08-23 08:58:34',2,'2006-02-15 21:30:53'), - (13653,'2005-08-20 07:54:54',4029,129,'2005-08-29 06:43:54',1,'2006-02-15 21:30:53'), - (13654,'2005-08-20 07:58:21',1582,469,'2005-08-21 09:40:21',2,'2006-02-15 21:30:53'), - (13655,'2005-08-20 07:59:13',4294,207,'2005-08-22 12:04:13',1,'2006-02-15 21:30:53'), - (13656,'2005-08-20 08:01:07',3180,411,'2005-08-28 13:16:07',2,'2006-02-15 21:30:53'), - (13657,'2005-08-20 08:01:39',1752,414,'2005-08-23 07:31:39',1,'2006-02-15 21:30:53'), - (13658,'2005-08-20 08:02:22',3827,487,'2005-08-28 06:00:22',1,'2006-02-15 21:30:53'), - (13659,'2005-08-20 08:05:52',3610,520,'2005-08-24 12:38:52',1,'2006-02-15 21:30:53'), - (13660,'2005-08-20 08:05:56',3972,72,'2005-08-22 13:22:56',1,'2006-02-15 21:30:53'), - (13661,'2005-08-20 08:05:59',3996,471,'2005-08-29 12:15:59',1,'2006-02-15 21:30:53'), - (13662,'2005-08-20 08:11:58',3880,592,'2005-08-26 13:34:58',1,'2006-02-15 21:30:53'), - (13663,'2005-08-20 08:12:33',3969,240,'2005-08-27 03:23:33',2,'2006-02-15 21:30:53'), - (13664,'2005-08-20 08:18:36',3750,264,'2005-08-26 11:04:36',1,'2006-02-15 21:30:53'), - (13665,'2005-08-20 08:19:20',117,291,'2005-08-28 06:26:20',1,'2006-02-15 21:30:53'), - (13666,'2005-08-20 08:20:19',2007,451,'2005-08-22 03:22:19',1,'2006-02-15 21:30:53'), - (13667,'2005-08-20 08:25:34',3856,280,'2005-08-24 07:04:34',2,'2006-02-15 21:30:53'), - (13668,'2005-08-20 08:26:06',3659,123,'2005-08-25 05:52:06',2,'2006-02-15 21:30:53'), - (13669,'2005-08-20 08:26:32',4504,261,'2005-08-27 08:10:32',2,'2006-02-15 21:30:53'), - (13670,'2005-08-20 08:27:01',1951,147,'2005-08-29 05:59:01',2,'2006-02-15 21:30:53'), - (13671,'2005-08-20 08:27:03',1473,201,'2005-08-26 03:56:03',1,'2006-02-15 21:30:53'), - (13672,'2005-08-20 08:27:27',2068,201,'2005-08-22 06:15:27',2,'2006-02-15 21:30:53'), - (13673,'2005-08-20 08:27:30',343,332,'2005-08-26 05:14:30',1,'2006-02-15 21:30:53'), - (13674,'2005-08-20 08:30:54',3397,36,'2005-08-22 02:59:54',1,'2006-02-15 21:30:53'), - (13675,'2005-08-20 08:32:51',350,493,'2005-08-27 03:52:51',2,'2006-02-15 21:30:53'), - (13676,'2005-08-20 08:33:21',3170,103,'2005-08-25 02:51:21',1,'2006-02-15 21:30:53'), - (13677,'2005-08-20 08:34:41',4013,15,'2005-08-26 11:51:41',2,'2006-02-15 21:30:53'), - (13678,'2005-08-20 08:38:24',1118,337,'2005-08-27 13:54:24',2,'2006-02-15 21:30:53'), - (13679,'2005-08-20 08:39:34',2878,229,'2005-08-29 10:06:34',2,'2006-02-15 21:30:53'), - (13680,'2005-08-20 08:44:06',2822,70,'2005-08-27 09:58:06',2,'2006-02-15 21:30:53'), - (13681,'2005-08-20 08:47:37',3039,328,'2005-08-27 09:47:37',1,'2006-02-15 21:30:53'), - (13682,'2005-08-20 08:50:39',287,30,'2005-08-21 09:05:39',2,'2006-02-15 21:30:53'), - (13683,'2005-08-20 08:54:55',1729,255,'2005-08-24 14:10:55',2,'2006-02-15 21:30:53'), - (13684,'2005-08-20 08:55:53',2213,348,'2005-08-25 08:11:53',1,'2006-02-15 21:30:53'), - (13685,'2005-08-20 08:57:11',3336,260,'2005-08-27 07:26:11',1,'2006-02-15 21:30:53'), - (13686,'2005-08-20 08:57:28',666,306,'2005-08-24 07:21:28',2,'2006-02-15 21:30:53'), - (13687,'2005-08-20 08:57:51',3629,290,'2005-08-22 07:02:51',2,'2006-02-15 21:30:53'), - (13688,'2005-08-20 08:59:38',1116,572,'2005-08-28 04:54:38',2,'2006-02-15 21:30:53'), - (13689,'2005-08-20 09:04:30',819,336,'2005-08-22 05:38:30',2,'2006-02-15 21:30:53'), - (13690,'2005-08-20 09:07:27',3721,513,'2005-08-23 08:03:27',2,'2006-02-15 21:30:53'), - (13691,'2005-08-20 09:07:39',676,548,'2005-08-28 15:03:39',1,'2006-02-15 21:30:53'), - (13692,'2005-08-20 09:07:52',1928,65,'2005-08-21 05:17:52',1,'2006-02-15 21:30:53'), - (13693,'2005-08-20 09:11:42',933,552,'2005-08-24 15:00:42',2,'2006-02-15 21:30:53'), - (13694,'2005-08-20 09:13:23',3654,454,'2005-08-28 06:10:23',1,'2006-02-15 21:30:53'), - (13695,'2005-08-20 09:13:25',3114,258,'2005-08-27 11:51:25',2,'2006-02-15 21:30:53'), - (13696,'2005-08-20 09:16:15',1279,206,'2005-08-21 03:33:15',1,'2006-02-15 21:30:53'), - (13697,'2005-08-20 09:21:08',291,76,'2005-08-29 12:33:08',1,'2006-02-15 21:30:53'), - (13698,'2005-08-20 09:24:26',3829,364,'2005-08-22 05:04:26',2,'2006-02-15 21:30:53'), - (13699,'2005-08-20 09:26:14',3913,21,'2005-08-29 08:16:14',2,'2006-02-15 21:30:53'), - (13700,'2005-08-20 09:26:17',4229,265,'2005-08-27 05:49:17',2,'2006-02-15 21:30:53'), - (13701,'2005-08-20 09:27:05',1643,564,'2005-08-21 14:54:05',1,'2006-02-15 21:30:53'), - (13702,'2005-08-20 09:27:20',700,296,'2005-08-29 15:04:20',2,'2006-02-15 21:30:53'), - (13703,'2005-08-20 09:29:35',2296,356,'2005-08-27 08:03:35',2,'2006-02-15 21:30:53'), - (13704,'2005-08-20 09:32:04',3373,4,'2005-08-23 14:29:04',2,'2006-02-15 21:30:53'), - (13705,'2005-08-20 09:32:23',3663,451,'2005-08-21 13:51:23',1,'2006-02-15 21:30:53'), - (13706,'2005-08-20 09:32:56',3005,363,'2005-08-28 05:22:56',2,'2006-02-15 21:30:53'), - (13707,'2005-08-20 09:33:58',826,232,'2005-08-23 07:44:58',2,'2006-02-15 21:30:53'), - (13708,'2005-08-20 09:34:07',2236,218,'2005-08-26 10:17:07',1,'2006-02-15 21:30:53'), - (13709,'2005-08-20 09:34:51',4089,422,'2005-08-23 04:13:51',1,'2006-02-15 21:30:53'), - (13710,'2005-08-20 09:35:20',756,333,'2005-08-21 05:29:20',2,'2006-02-15 21:30:53'), - (13711,'2005-08-20 09:35:20',2318,453,'2005-08-28 09:06:20',2,'2006-02-15 21:30:53'), - (13712,'2005-08-20 09:38:04',1039,581,'2005-08-21 06:10:04',1,'2006-02-15 21:30:53'), - (13713,'2006-02-14 15:16:03',3075,267,NULL,1,'2006-02-15 21:30:53'), - (13714,'2005-08-20 09:41:09',2659,277,'2005-08-22 06:28:09',1,'2006-02-15 21:30:53'), - (13715,'2005-08-20 09:43:06',1028,292,'2005-08-27 10:22:06',1,'2006-02-15 21:30:53'), - (13716,'2005-08-20 09:48:32',86,386,'2005-08-26 07:20:32',2,'2006-02-15 21:30:53'), - (13717,'2005-08-20 09:50:52',1629,300,'2005-08-28 11:32:52',2,'2006-02-15 21:30:53'), - (13718,'2005-08-20 09:53:44',205,19,'2005-08-29 13:46:44',2,'2006-02-15 21:30:53'), - (13719,'2006-02-14 15:16:03',3547,208,NULL,1,'2006-02-15 21:30:53'), - (13720,'2005-08-20 10:01:39',813,427,'2005-08-27 08:26:39',1,'2006-02-15 21:30:53'), - (13721,'2005-08-20 10:02:59',1444,297,'2005-08-24 07:02:59',2,'2006-02-15 21:30:53'), - (13722,'2005-08-20 10:03:45',1581,422,'2005-08-25 04:26:45',1,'2006-02-15 21:30:53'), - (13723,'2005-08-20 10:05:30',411,110,'2005-08-27 07:43:30',2,'2006-02-15 21:30:53'), - (13724,'2005-08-20 10:07:28',200,80,'2005-08-24 07:47:28',2,'2006-02-15 21:30:53'), - (13725,'2005-08-20 10:08:27',3861,306,'2005-08-28 06:52:27',2,'2006-02-15 21:30:53'), - (13726,'2005-08-20 10:08:40',2258,214,'2005-08-23 14:58:40',1,'2006-02-15 21:30:53'), - (13727,'2005-08-20 10:08:53',4201,85,'2005-08-27 09:30:53',1,'2006-02-15 21:30:53'), - (13728,'2005-08-20 10:11:07',1962,157,'2005-08-23 10:32:07',1,'2006-02-15 21:30:53'), - (13729,'2005-08-20 10:17:08',4108,415,'2005-08-28 15:35:08',1,'2006-02-15 21:30:53'), - (13730,'2005-08-20 10:17:09',1330,548,'2005-08-28 10:45:09',1,'2006-02-15 21:30:53'), - (13731,'2005-08-20 10:22:08',1133,450,'2005-08-21 12:04:08',2,'2006-02-15 21:30:53'), - (13732,'2005-08-20 10:24:41',1138,17,'2005-08-22 04:44:41',1,'2006-02-15 21:30:53'), - (13733,'2005-08-20 10:25:12',3994,85,'2005-08-21 10:49:12',2,'2006-02-15 21:30:53'), - (13734,'2005-08-20 10:29:57',4561,374,'2005-08-25 14:41:57',2,'2006-02-15 21:30:53'), - (13735,'2005-08-20 10:31:01',1813,35,'2005-08-26 05:00:01',1,'2006-02-15 21:30:53'), - (13736,'2005-08-20 10:31:23',3369,32,'2005-08-28 06:51:23',1,'2006-02-15 21:30:53'), - (13737,'2005-08-20 10:41:50',4319,200,'2005-08-25 14:33:50',2,'2006-02-15 21:30:53'), - (13738,'2005-08-20 10:42:42',2748,273,'2005-08-25 09:32:42',1,'2006-02-15 21:30:53'), - (13739,'2005-08-20 10:45:10',3027,441,'2005-08-28 08:46:10',2,'2006-02-15 21:30:53'), - (13740,'2005-08-20 10:48:43',4366,21,'2005-08-29 15:30:43',1,'2006-02-15 21:30:53'), - (13741,'2005-08-20 10:48:47',3887,195,'2005-08-21 11:19:47',1,'2006-02-15 21:30:53'), - (13742,'2005-08-20 10:49:15',1377,580,'2005-08-21 11:05:15',2,'2006-02-15 21:30:53'), - (13743,'2005-08-20 10:51:27',3693,57,'2005-08-24 15:54:27',1,'2006-02-15 21:30:53'), - (13744,'2005-08-20 10:51:45',2962,408,'2005-08-25 06:42:45',2,'2006-02-15 21:30:53'), - (13745,'2005-08-20 10:53:49',1264,142,'2005-08-25 13:25:49',1,'2006-02-15 21:30:53'), - (13746,'2005-08-20 10:55:28',3742,520,'2005-08-25 07:48:28',2,'2006-02-15 21:30:53'), - (13747,'2005-08-20 10:56:06',3332,74,'2005-08-29 10:29:06',1,'2006-02-15 21:30:53'), - (13748,'2005-08-20 10:59:54',2198,410,'2005-08-23 12:33:54',1,'2006-02-15 21:30:53'), - (13749,'2005-08-20 11:00:37',2811,282,'2005-08-26 12:04:37',1,'2006-02-15 21:30:53'), - (13750,'2005-08-20 11:11:42',3363,246,'2005-08-29 16:16:42',2,'2006-02-15 21:30:53'), - (13751,'2005-08-20 11:17:03',185,105,'2005-08-22 14:12:03',2,'2006-02-15 21:30:53'), - (13752,'2005-08-20 11:17:45',1794,77,'2005-08-29 13:25:45',2,'2006-02-15 21:30:53'), - (13753,'2006-02-14 15:16:03',3746,495,NULL,1,'2006-02-15 21:30:53'), - (13754,'2005-08-20 11:18:08',1740,108,'2005-08-22 11:55:08',1,'2006-02-15 21:30:53'), - (13755,'2005-08-20 11:18:53',1927,342,'2005-08-27 06:51:53',2,'2006-02-15 21:30:53'), - (13756,'2006-02-14 15:16:03',1146,252,NULL,2,'2006-02-15 21:30:53'), - (13757,'2005-08-20 11:20:12',1147,14,'2005-08-23 10:14:12',2,'2006-02-15 21:30:53'), - (13758,'2005-08-20 11:21:26',864,255,'2005-08-29 14:37:26',2,'2006-02-15 21:30:53'), - (13759,'2005-08-20 11:24:48',595,269,'2005-08-29 10:29:48',1,'2006-02-15 21:30:53'), - (13760,'2005-08-20 11:26:33',3459,436,'2005-08-27 11:12:33',2,'2006-02-15 21:30:53'), - (13761,'2005-08-20 11:28:50',3149,376,'2005-08-21 12:05:50',2,'2006-02-15 21:30:53'), - (13762,'2005-08-20 11:29:32',451,566,'2005-08-23 17:25:32',1,'2006-02-15 21:30:53'), - (13763,'2005-08-20 11:37:56',4171,469,'2005-08-26 13:12:56',1,'2006-02-15 21:30:53'), - (13764,'2005-08-20 11:38:16',989,386,'2005-08-27 08:01:16',1,'2006-02-15 21:30:53'), - (13765,'2005-08-20 11:39:00',2104,219,'2005-08-21 06:05:00',1,'2006-02-15 21:30:53'), - (13766,'2005-08-20 11:42:01',1313,189,'2005-08-27 13:44:01',2,'2006-02-15 21:30:53'), - (13767,'2005-08-20 11:43:36',2739,506,'2005-08-22 17:10:36',1,'2006-02-15 21:30:53'), - (13768,'2005-08-20 11:43:43',3847,198,'2005-08-27 07:56:43',2,'2006-02-15 21:30:53'), - (13769,'2005-08-20 11:43:52',2868,56,'2005-08-28 13:19:52',1,'2006-02-15 21:30:53'), - (13770,'2005-08-20 11:45:54',998,538,'2005-08-22 17:08:54',1,'2006-02-15 21:30:53'), - (13771,'2005-08-20 11:47:21',2278,512,'2005-08-22 17:09:21',1,'2006-02-15 21:30:53'), - (13772,'2005-08-20 11:47:52',2038,387,'2005-08-28 05:50:52',2,'2006-02-15 21:30:53'), - (13773,'2005-08-20 11:50:14',3389,64,'2005-08-26 12:35:14',1,'2006-02-15 21:30:53'), - (13774,'2005-08-20 11:54:01',735,244,'2005-08-22 13:25:01',2,'2006-02-15 21:30:53'), - (13775,'2005-08-20 11:56:30',1858,116,'2005-08-28 12:48:30',2,'2006-02-15 21:30:53'), - (13776,'2005-08-20 11:57:06',2439,137,'2005-08-26 10:55:06',1,'2006-02-15 21:30:53'), - (13777,'2005-08-20 12:03:35',3587,29,'2005-08-27 10:13:35',1,'2006-02-15 21:30:53'), - (13778,'2005-08-20 12:03:44',2385,539,'2005-08-28 12:09:44',1,'2006-02-15 21:30:53'), - (13779,'2005-08-20 12:03:54',63,440,'2005-08-28 15:24:54',2,'2006-02-15 21:30:53'), - (13780,'2006-02-14 15:16:03',1775,14,NULL,2,'2006-02-15 21:30:53'), - (13781,'2005-08-20 12:06:45',971,368,'2005-08-26 06:50:45',2,'2006-02-15 21:30:53'), - (13782,'2005-08-20 12:09:26',577,305,'2005-08-23 08:31:26',2,'2006-02-15 21:30:53'), - (13783,'2005-08-20 12:11:03',2643,28,'2005-08-21 15:53:03',2,'2006-02-15 21:30:53'), - (13784,'2005-08-20 12:11:28',3087,431,'2005-08-25 08:11:28',1,'2006-02-15 21:30:53'), - (13785,'2005-08-20 12:11:46',379,453,'2005-08-21 06:39:46',1,'2006-02-15 21:30:53'), - (13786,'2005-08-20 12:13:24',515,94,'2005-08-28 07:24:24',2,'2006-02-15 21:30:53'), - (13787,'2005-08-20 12:15:23',253,188,'2005-08-27 06:24:23',2,'2006-02-15 21:30:53'), - (13788,'2005-08-20 12:15:41',3177,393,'2005-08-28 16:28:41',2,'2006-02-15 21:30:53'), - (13789,'2005-08-20 12:16:38',2523,53,'2005-08-25 07:29:38',1,'2006-02-15 21:30:53'), - (13790,'2005-08-20 12:17:27',1385,11,'2005-08-25 12:20:27',1,'2006-02-15 21:30:53'), - (13791,'2005-08-20 12:21:05',1890,67,'2005-08-22 17:58:05',1,'2006-02-15 21:30:53'), - (13792,'2005-08-20 12:21:37',4157,78,'2005-08-27 14:28:37',1,'2006-02-15 21:30:53'), - (13793,'2005-08-20 12:22:04',2598,424,'2005-08-27 09:51:04',2,'2006-02-15 21:30:53'), - (13794,'2005-08-20 12:25:32',2148,557,'2005-08-23 06:38:32',2,'2006-02-15 21:30:53'), - (13795,'2005-08-20 12:32:09',2837,331,'2005-08-21 17:28:09',1,'2006-02-15 21:30:53'), - (13796,'2005-08-20 12:32:32',28,209,'2005-08-29 10:48:32',2,'2006-02-15 21:30:53'), - (13797,'2005-08-20 12:33:36',2857,529,'2005-08-25 18:03:36',1,'2006-02-15 21:30:53'), - (13798,'2006-02-14 15:16:03',526,15,NULL,2,'2006-02-15 21:30:53'), - (13799,'2005-08-20 12:36:42',4413,196,'2005-08-28 08:47:42',1,'2006-02-15 21:30:53'), - (13800,'2005-08-20 12:40:48',1552,407,'2005-08-22 15:06:48',1,'2006-02-15 21:30:53'), - (13801,'2005-08-20 12:40:53',1464,433,'2005-08-21 16:29:53',1,'2006-02-15 21:30:53'), - (13802,'2005-08-20 12:44:53',2079,156,'2005-08-22 09:18:53',2,'2006-02-15 21:30:53'), - (13803,'2005-08-20 12:46:17',1084,486,'2005-08-24 15:44:17',2,'2006-02-15 21:30:53'), - (13804,'2005-08-20 12:46:32',2232,19,'2005-08-29 14:04:32',2,'2006-02-15 21:30:53'), - (13805,'2005-08-20 12:53:12',349,454,'2005-08-27 15:21:12',1,'2006-02-15 21:30:53'), - (13806,'2005-08-20 12:53:46',444,341,'2005-08-21 10:36:46',1,'2006-02-15 21:30:53'), - (13807,'2005-08-20 12:55:40',3822,4,'2005-08-28 09:06:40',2,'2006-02-15 21:30:53'), - (13808,'2005-08-20 12:55:43',3689,262,'2005-08-29 11:01:43',2,'2006-02-15 21:30:53'), - (13809,'2005-08-20 12:56:03',1597,207,'2005-08-27 11:58:03',1,'2006-02-15 21:30:53'), - (13810,'2005-08-20 12:59:38',2228,450,'2005-08-21 17:40:38',1,'2006-02-15 21:30:53'), - (13811,'2005-08-20 13:00:30',1235,168,'2005-08-24 10:18:30',1,'2006-02-15 21:30:53'), - (13812,'2005-08-20 13:01:43',2788,122,'2005-08-22 16:32:43',2,'2006-02-15 21:30:53'), - (13813,'2005-08-20 13:03:26',601,455,'2005-08-25 08:42:26',1,'2006-02-15 21:30:53'), - (13814,'2005-08-20 13:07:23',2129,436,'2005-08-22 16:23:23',2,'2006-02-15 21:30:53'), - (13815,'2005-08-20 13:08:53',3388,582,'2005-08-29 13:11:53',2,'2006-02-15 21:30:53'), - (13816,'2005-08-20 13:13:56',273,27,'2005-08-25 09:46:56',1,'2006-02-15 21:30:53'), - (13817,'2005-08-20 13:15:30',1935,293,'2005-08-22 18:48:30',2,'2006-02-15 21:30:53'), - (13818,'2005-08-20 13:20:09',1283,495,'2005-08-21 18:41:09',1,'2006-02-15 21:30:53'), - (13819,'2005-08-20 13:23:15',1459,296,'2005-08-22 16:02:15',2,'2006-02-15 21:30:53'), - (13820,'2005-08-20 13:26:37',3191,81,'2005-08-27 14:05:37',1,'2006-02-15 21:30:53'), - (13821,'2005-08-20 13:33:47',2402,355,'2005-08-25 18:09:47',1,'2006-02-15 21:30:53'), - (13822,'2005-08-20 13:39:28',807,499,'2005-08-24 07:40:28',1,'2006-02-15 21:30:53'), - (13823,'2005-08-20 13:42:10',3875,89,'2005-08-22 18:45:10',1,'2006-02-15 21:30:53'), - (13824,'2005-08-20 13:43:12',2845,413,'2005-08-22 17:26:12',1,'2006-02-15 21:30:53'), - (13825,'2005-08-20 13:43:22',2135,167,'2005-08-29 19:13:22',1,'2006-02-15 21:30:53'), - (13826,'2005-08-20 13:46:38',401,436,'2005-08-29 13:07:38',1,'2006-02-15 21:30:53'), - (13827,'2005-08-20 13:47:19',1103,342,'2005-08-28 09:13:19',1,'2006-02-15 21:30:53'), - (13828,'2005-08-20 13:49:52',2391,450,'2005-08-25 07:49:52',2,'2006-02-15 21:30:53'), - (13829,'2005-08-20 13:50:17',3980,146,'2005-08-24 11:30:17',2,'2006-02-15 21:30:53'), - (13830,'2005-08-20 13:57:59',2874,61,'2005-08-25 11:29:59',1,'2006-02-15 21:30:53'), - (13831,'2005-08-20 13:59:35',570,480,'2005-08-24 12:50:35',1,'2006-02-15 21:30:53'), - (13832,'2005-08-20 14:00:25',3299,29,'2005-08-28 10:11:25',1,'2006-02-15 21:30:53'), - (13833,'2005-08-20 14:00:29',792,175,'2005-08-29 12:01:29',2,'2006-02-15 21:30:53'), - (13834,'2005-08-20 14:03:08',875,426,'2005-08-22 10:12:08',1,'2006-02-15 21:30:53'), - (13835,'2005-08-20 14:06:33',3738,143,'2005-08-26 12:15:33',2,'2006-02-15 21:30:53'), - (13836,'2005-08-20 14:18:16',4271,375,'2005-08-21 18:13:16',2,'2006-02-15 21:30:53'), - (13837,'2005-08-20 14:19:03',3220,67,'2005-08-22 16:25:03',2,'2006-02-15 21:30:53'), - (13838,'2005-08-20 14:22:46',1134,437,'2005-08-29 12:28:46',2,'2006-02-15 21:30:53'), - (13839,'2005-08-20 14:23:16',1056,437,'2005-08-26 19:11:16',2,'2006-02-15 21:30:53'), - (13840,'2005-08-20 14:23:20',1211,40,'2005-08-28 11:53:20',1,'2006-02-15 21:30:53'), - (13841,'2005-08-20 14:25:18',3277,203,'2005-08-29 15:49:18',1,'2006-02-15 21:30:53'), - (13842,'2005-08-20 14:29:37',4337,180,'2005-08-29 18:19:37',1,'2006-02-15 21:30:53'), - (13843,'2005-08-20 14:30:01',3058,308,'2005-08-27 10:06:01',2,'2006-02-15 21:30:53'), - (13844,'2005-08-20 14:30:26',983,179,'2005-08-29 17:08:26',1,'2006-02-15 21:30:53'), - (13845,'2005-08-20 14:31:21',3993,559,'2005-08-29 18:29:21',1,'2006-02-15 21:30:53'), - (13846,'2005-08-20 14:32:31',3289,257,'2005-08-28 16:58:31',1,'2006-02-15 21:30:53'), - (13847,'2005-08-20 14:33:59',2647,82,'2005-08-25 08:49:59',1,'2006-02-15 21:30:53'), - (13848,'2005-08-20 14:37:49',802,447,'2005-08-25 13:15:49',1,'2006-02-15 21:30:53'), - (13849,'2005-08-20 14:42:34',3774,261,'2005-08-24 13:09:34',2,'2006-02-15 21:30:53'), - (13850,'2005-08-20 14:43:03',3030,546,'2005-08-27 11:41:03',2,'2006-02-15 21:30:53'), - (13851,'2005-08-20 14:44:22',3278,80,'2005-08-22 18:10:22',1,'2006-02-15 21:30:53'), - (13852,'2005-08-20 14:45:23',85,535,'2005-08-22 16:47:23',2,'2006-02-15 21:30:53'), - (13853,'2005-08-20 14:47:02',1680,186,'2005-08-26 20:32:02',1,'2006-02-15 21:30:53'), - (13854,'2005-08-20 14:48:42',4192,158,'2005-08-21 14:55:42',2,'2006-02-15 21:30:53'), - (13855,'2005-08-20 14:48:55',1617,96,'2005-08-28 14:45:55',1,'2006-02-15 21:30:53'), - (13856,'2005-08-20 14:49:32',4196,407,'2005-08-29 12:37:32',2,'2006-02-15 21:30:53'), - (13857,'2005-08-20 14:50:06',2542,366,'2005-08-24 10:38:06',2,'2006-02-15 21:30:53'), - (13858,'2005-08-20 14:50:57',2167,33,'2005-08-23 12:10:57',2,'2006-02-15 21:30:53'), - (13859,'2005-08-20 14:53:43',4381,504,'2005-08-28 09:50:43',1,'2006-02-15 21:30:53'), - (13860,'2005-08-20 14:55:09',558,275,'2005-08-22 20:42:09',1,'2006-02-15 21:30:53'), - (13861,'2005-08-20 14:56:53',303,154,'2005-08-22 18:13:53',2,'2006-02-15 21:30:53'), - (13862,'2005-08-20 14:57:01',3271,170,'2005-08-27 10:48:01',2,'2006-02-15 21:30:53'), - (13863,'2005-08-20 14:57:50',2417,563,'2005-08-29 15:36:50',2,'2006-02-15 21:30:53'), - (13864,'2005-08-20 14:59:55',3935,214,'2005-08-22 09:30:55',2,'2006-02-15 21:30:53'), - (13865,'2005-08-20 15:04:09',3647,275,'2005-08-24 10:06:09',2,'2006-02-15 21:30:53'), - (13866,'2005-08-20 15:05:29',3432,343,'2005-08-23 11:27:29',2,'2006-02-15 21:30:53'), - (13867,'2005-08-20 15:05:42',4514,591,'2005-08-29 10:48:42',2,'2006-02-15 21:30:53'), - (13868,'2005-08-20 15:06:26',3173,51,'2005-08-22 19:08:26',2,'2006-02-15 21:30:53'), - (13869,'2005-08-20 15:08:57',1990,386,'2005-08-29 13:13:57',2,'2006-02-15 21:30:53'), - (13870,'2005-08-20 15:09:16',563,167,'2005-08-28 10:00:16',2,'2006-02-15 21:30:53'), - (13871,'2005-08-20 15:10:13',3206,372,'2005-08-29 19:43:13',2,'2006-02-15 21:30:53'), - (13872,'2005-08-20 15:10:30',2416,421,'2005-08-24 10:14:30',2,'2006-02-15 21:30:53'), - (13873,'2005-08-20 15:11:11',1683,306,'2005-08-22 20:13:11',2,'2006-02-15 21:30:53'), - (13874,'2005-08-20 15:11:48',72,86,'2005-08-21 18:26:48',2,'2006-02-15 21:30:53'), - (13875,'2005-08-20 15:13:11',348,83,'2005-08-21 13:11:11',1,'2006-02-15 21:30:53'), - (13876,'2005-08-20 15:15:28',3137,334,'2005-08-23 12:42:28',2,'2006-02-15 21:30:53'), - (13877,'2005-08-20 15:16:18',3387,5,'2005-08-22 18:20:18',1,'2006-02-15 21:30:53'), - (13878,'2005-08-20 15:17:38',49,481,'2005-08-21 21:11:38',2,'2006-02-15 21:30:53'), - (13879,'2005-08-20 15:18:10',4022,112,'2005-08-22 19:23:10',2,'2006-02-15 21:30:53'), - (13880,'2005-08-20 15:18:20',3911,268,'2005-08-24 18:03:20',2,'2006-02-15 21:30:53'), - (13881,'2005-08-20 15:18:55',2831,144,'2005-08-25 11:25:55',1,'2006-02-15 21:30:53'), - (13882,'2005-08-20 15:23:26',3245,51,'2005-08-22 13:03:26',1,'2006-02-15 21:30:53'), - (13883,'2005-08-20 15:28:53',584,568,'2005-08-21 13:11:53',1,'2006-02-15 21:30:53'), - (13884,'2005-08-20 15:30:51',3182,466,'2005-08-26 13:34:51',1,'2006-02-15 21:30:53'), - (13885,'2005-08-20 15:32:09',3195,537,'2005-08-26 15:54:09',1,'2006-02-15 21:30:53'), - (13886,'2005-08-20 15:34:43',2248,73,'2005-08-26 11:48:43',2,'2006-02-15 21:30:53'), - (13887,'2005-08-20 15:39:00',4002,413,'2005-08-24 16:17:00',2,'2006-02-15 21:30:53'), - (13888,'2005-08-20 15:39:42',1943,297,'2005-08-28 13:41:42',1,'2006-02-15 21:30:53'), - (13889,'2005-08-20 15:40:06',4406,501,'2005-08-22 14:09:06',2,'2006-02-15 21:30:53'), - (13890,'2005-08-20 15:41:00',2965,54,'2005-08-22 16:00:00',1,'2006-02-15 21:30:53'), - (13891,'2005-08-20 15:42:05',2042,289,'2005-08-25 13:26:05',1,'2006-02-15 21:30:53'), - (13892,'2005-08-20 15:50:17',1236,337,'2005-08-29 13:33:17',2,'2006-02-15 21:30:53'), - (13893,'2005-08-20 15:52:52',3503,390,'2005-08-27 16:21:52',2,'2006-02-15 21:30:53'), - (13894,'2005-08-20 15:55:20',2649,360,'2005-08-26 17:26:20',2,'2006-02-15 21:30:53'), - (13895,'2005-08-20 15:58:28',3060,12,'2005-08-26 15:07:28',2,'2006-02-15 21:30:53'), - (13896,'2005-08-20 15:59:56',1338,278,'2005-08-21 20:14:56',2,'2006-02-15 21:30:53'), - (13897,'2005-08-20 16:02:28',628,258,'2005-08-23 14:29:28',1,'2006-02-15 21:30:53'), - (13898,'2006-02-14 15:16:03',4007,369,NULL,2,'2006-02-15 21:30:53'), - (13899,'2005-08-20 16:05:11',427,204,'2005-08-23 15:14:11',2,'2006-02-15 21:30:53'), - (13900,'2005-08-20 16:05:41',1140,66,'2005-08-22 15:13:41',1,'2006-02-15 21:30:53'), - (13901,'2005-08-20 16:06:53',3281,166,'2005-08-28 11:30:53',1,'2006-02-15 21:30:53'), - (13902,'2005-08-20 16:07:08',1165,275,'2005-08-24 16:43:08',2,'2006-02-15 21:30:53'), - (13903,'2005-08-20 16:07:55',1676,272,'2005-08-25 18:26:55',1,'2006-02-15 21:30:53'), - (13904,'2005-08-20 16:11:34',721,93,'2005-08-26 12:46:34',1,'2006-02-15 21:30:53'), - (13905,'2005-08-20 16:12:48',2714,437,'2005-08-28 16:05:48',1,'2006-02-15 21:30:53'), - (13906,'2005-08-20 16:16:03',3960,87,'2005-08-21 13:29:03',2,'2006-02-15 21:30:53'), - (13907,'2005-08-20 16:17:27',806,328,'2005-08-24 20:14:27',2,'2006-02-15 21:30:53'), - (13908,'2005-08-20 16:21:40',3661,532,'2005-08-29 21:16:40',1,'2006-02-15 21:30:53'), - (13909,'2005-08-20 16:26:36',1508,309,'2005-08-21 20:59:36',2,'2006-02-15 21:30:53'), - (13910,'2005-08-20 16:30:49',252,133,'2005-08-24 13:30:49',2,'2006-02-15 21:30:53'), - (13911,'2005-08-20 16:31:33',4400,304,'2005-08-28 19:26:33',2,'2006-02-15 21:30:53'), - (13912,'2005-08-20 16:32:10',968,207,'2005-08-29 17:37:10',2,'2006-02-15 21:30:53'), - (13913,'2005-08-20 16:37:35',4259,197,'2005-08-26 13:12:35',2,'2006-02-15 21:30:53'), - (13914,'2005-08-20 16:38:57',3037,237,'2005-08-26 14:53:57',2,'2006-02-15 21:30:53'), - (13915,'2005-08-20 16:42:53',1180,129,'2005-08-23 20:30:53',2,'2006-02-15 21:30:53'), - (13916,'2005-08-20 16:43:02',2971,302,'2005-08-25 19:21:02',1,'2006-02-15 21:30:53'), - (13917,'2005-08-20 16:43:28',4326,10,'2005-08-29 16:44:28',2,'2006-02-15 21:30:53'), - (13918,'2005-08-20 16:47:32',3301,248,'2005-08-21 12:00:32',2,'2006-02-15 21:30:53'), - (13919,'2005-08-20 16:47:34',909,129,'2005-08-23 21:27:34',2,'2006-02-15 21:30:53'), - (13920,'2005-08-20 16:51:18',3200,460,'2005-08-27 16:05:18',2,'2006-02-15 21:30:53'), - (13921,'2005-08-20 16:57:11',3943,59,'2005-08-22 19:25:11',2,'2006-02-15 21:30:53'), - (13922,'2005-08-20 17:02:37',1398,237,'2005-08-29 19:28:37',1,'2006-02-15 21:30:53'), - (13923,'2005-08-20 17:05:02',3129,588,'2005-08-27 11:22:02',2,'2006-02-15 21:30:53'), - (13924,'2005-08-20 17:05:18',3066,444,'2005-08-23 16:54:18',2,'2006-02-15 21:30:53'), - (13925,'2005-08-20 17:05:34',4034,565,'2005-08-27 15:32:34',2,'2006-02-15 21:30:53'), - (13926,'2005-08-20 17:09:27',932,158,'2005-08-28 13:42:27',2,'2006-02-15 21:30:53'), - (13927,'2005-08-20 17:11:58',4284,417,'2005-08-24 12:44:58',1,'2006-02-15 21:30:53'), - (13928,'2005-08-20 17:12:28',1121,244,'2005-08-21 13:33:28',1,'2006-02-15 21:30:53'), - (13929,'2005-08-20 17:13:48',946,57,'2005-08-28 15:19:48',1,'2006-02-15 21:30:53'), - (13930,'2005-08-20 17:15:06',3585,58,'2005-08-21 14:29:06',1,'2006-02-15 21:30:53'), - (13931,'2005-08-20 17:16:10',3884,32,'2005-08-27 12:03:10',2,'2006-02-15 21:30:53'), - (13932,'2005-08-20 17:17:00',471,441,'2005-08-24 14:06:00',1,'2006-02-15 21:30:53'), - (13933,'2005-08-20 17:17:07',647,159,'2005-08-22 18:10:07',2,'2006-02-15 21:30:53'), - (13934,'2005-08-20 17:18:48',4567,457,'2005-08-26 15:31:48',1,'2006-02-15 21:30:53'), - (13935,'2005-08-20 17:20:49',4426,205,'2005-08-24 16:52:49',2,'2006-02-15 21:30:53'), - (13936,'2005-08-20 17:22:35',1731,364,'2005-08-23 20:07:35',2,'2006-02-15 21:30:53'), - (13937,'2005-08-20 17:22:51',1755,172,'2005-08-27 15:51:51',1,'2006-02-15 21:30:53'), - (13938,'2005-08-20 17:24:45',3743,463,'2005-08-21 18:39:45',1,'2006-02-15 21:30:53'), - (13939,'2005-08-20 17:28:01',2700,585,'2005-08-23 14:40:01',2,'2006-02-15 21:30:53'), - (13940,'2005-08-20 17:28:57',2638,187,'2005-08-27 22:07:57',1,'2006-02-15 21:30:53'), - (13941,'2006-02-14 15:16:03',2727,476,NULL,2,'2006-02-15 21:30:53'), - (13942,'2005-08-20 17:30:52',4403,211,'2005-08-25 13:46:52',2,'2006-02-15 21:30:53'), - (13943,'2005-08-20 17:31:18',22,464,'2005-08-24 11:33:18',1,'2006-02-15 21:30:53'), - (13944,'2005-08-20 17:41:16',3685,408,'2005-08-23 12:02:16',1,'2006-02-15 21:30:53'), - (13945,'2005-08-20 17:43:56',3328,270,'2005-08-26 19:19:56',1,'2006-02-15 21:30:53'), - (13946,'2005-08-20 17:44:32',3564,529,'2005-08-28 19:19:32',1,'2006-02-15 21:30:53'), - (13947,'2005-08-20 17:46:06',2562,218,'2005-08-29 23:44:06',2,'2006-02-15 21:30:53'), - (13948,'2005-08-20 17:50:48',4033,410,'2005-08-25 20:56:48',2,'2006-02-15 21:30:53'), - (13949,'2005-08-20 17:55:13',1518,34,'2005-08-22 20:49:13',1,'2006-02-15 21:30:53'), - (13950,'2005-08-20 17:58:00',3978,93,'2005-08-29 23:23:00',1,'2006-02-15 21:30:53'), - (13951,'2005-08-20 17:58:11',2034,40,'2005-08-26 14:50:11',2,'2006-02-15 21:30:53'), - (13952,'2006-02-14 15:16:03',224,199,NULL,2,'2006-02-15 21:30:53'), - (13953,'2005-08-20 18:00:37',1818,371,'2005-08-28 14:52:37',1,'2006-02-15 21:30:53'), - (13954,'2005-08-20 18:02:41',3812,207,'2005-08-27 21:52:41',2,'2006-02-15 21:30:53'), - (13955,'2005-08-20 18:05:12',2613,273,'2005-08-29 18:25:12',1,'2006-02-15 21:30:53'), - (13956,'2005-08-20 18:08:19',3757,484,'2005-08-29 17:03:19',1,'2006-02-15 21:30:53'), - (13957,'2005-08-20 18:09:04',2889,179,'2005-08-23 16:52:04',1,'2006-02-15 21:30:53'), - (13958,'2005-08-20 18:11:44',2380,33,'2005-08-28 14:59:44',1,'2006-02-15 21:30:53'), - (13959,'2005-08-20 18:16:21',2283,142,'2005-08-22 13:56:21',2,'2006-02-15 21:30:53'), - (13960,'2005-08-20 18:16:26',4177,459,'2005-08-29 14:06:26',1,'2006-02-15 21:30:53'), - (13961,'2005-08-20 18:16:34',2271,129,'2005-08-21 16:14:34',1,'2006-02-15 21:30:53'), - (13962,'2005-08-20 18:18:06',1434,348,'2005-08-24 22:16:06',2,'2006-02-15 21:30:53'), - (13963,'2005-08-20 18:20:18',4145,368,'2005-08-24 21:26:18',1,'2006-02-15 21:30:53'), - (13964,'2005-08-20 18:24:26',108,128,'2005-08-21 21:19:26',2,'2006-02-15 21:30:53'), - (13965,'2006-02-14 15:16:03',670,324,NULL,2,'2006-02-15 21:30:53'), - (13966,'2005-08-20 18:28:28',4520,260,'2005-08-22 16:49:28',2,'2006-02-15 21:30:53'), - (13967,'2005-08-20 18:28:46',2751,459,'2005-08-26 17:37:46',2,'2006-02-15 21:30:53'), - (13968,'2006-02-14 15:16:03',3715,15,NULL,2,'2006-02-15 21:30:53'), - (13969,'2005-08-20 18:42:40',1836,237,'2005-08-27 17:33:40',2,'2006-02-15 21:30:53'), - (13970,'2005-08-20 18:43:34',1942,418,'2005-08-22 15:17:34',2,'2006-02-15 21:30:53'), - (13971,'2005-08-20 18:44:53',1678,64,'2005-08-22 16:25:53',2,'2006-02-15 21:30:53'), - (13972,'2005-08-20 18:52:17',1687,553,'2005-08-28 15:19:17',1,'2006-02-15 21:30:53'), - (13973,'2005-08-20 18:52:43',1181,58,'2005-08-21 19:11:43',1,'2006-02-15 21:30:53'), - (13974,'2005-08-20 18:54:59',1912,479,'2005-08-28 13:02:59',1,'2006-02-15 21:30:53'), - (13975,'2005-08-20 18:58:23',3821,286,'2005-08-25 20:58:23',1,'2006-02-15 21:30:53'), - (13976,'2005-08-20 19:02:16',1785,278,'2005-08-25 17:58:16',2,'2006-02-15 21:30:53'), - (13977,'2005-08-20 19:02:34',1126,115,'2005-08-24 14:14:34',1,'2006-02-15 21:30:53'), - (13978,'2005-08-20 19:03:25',1263,260,'2005-08-27 18:02:25',2,'2006-02-15 21:30:53'), - (13979,'2005-08-20 19:03:49',2998,211,'2005-08-24 21:23:49',1,'2006-02-15 21:30:53'), - (13980,'2005-08-20 19:04:40',1067,391,'2005-08-21 18:36:40',2,'2006-02-15 21:30:53'), - (13981,'2005-08-20 19:07:20',3342,249,'2005-08-23 15:13:20',1,'2006-02-15 21:30:53'), - (13982,'2005-08-20 19:08:25',2901,448,'2005-08-28 15:59:25',2,'2006-02-15 21:30:53'), - (13983,'2005-08-20 19:08:32',457,231,'2005-08-29 23:45:32',1,'2006-02-15 21:30:53'), - (13984,'2005-08-20 19:12:30',2183,473,'2005-08-29 22:04:30',1,'2006-02-15 21:30:53'), - (13985,'2005-08-20 19:13:06',1081,339,'2005-08-24 21:24:06',2,'2006-02-15 21:30:53'), - (13986,'2005-08-20 19:13:23',3701,152,'2005-08-22 20:59:23',2,'2006-02-15 21:30:53'), - (13987,'2005-08-20 19:19:30',1443,246,'2005-08-23 15:37:30',2,'2006-02-15 21:30:53'), - (13988,'2005-08-20 19:21:28',3567,466,'2005-08-21 22:20:28',2,'2006-02-15 21:30:53'), - (13989,'2005-08-20 19:27:50',1470,252,'2005-08-28 15:17:50',2,'2006-02-15 21:30:53'), - (13990,'2005-08-20 19:29:23',2272,481,'2005-08-25 18:50:23',2,'2006-02-15 21:30:53'), - (13991,'2005-08-20 19:29:44',1971,296,'2005-08-24 21:10:44',1,'2006-02-15 21:30:53'), - (13992,'2005-08-20 19:30:35',2798,136,'2005-08-24 19:09:35',2,'2006-02-15 21:30:53'), - (13993,'2005-08-20 19:32:29',1158,93,'2005-08-26 16:59:29',2,'2006-02-15 21:30:53'), - (13994,'2005-08-20 19:33:21',142,180,'2005-08-24 20:55:21',1,'2006-02-15 21:30:53'), - (13995,'2005-08-20 19:34:43',3789,381,'2005-08-25 22:25:43',2,'2006-02-15 21:30:53'), - (13996,'2005-08-20 19:45:43',3341,306,'2005-08-22 16:47:43',2,'2006-02-15 21:30:53'), - (13997,'2005-08-20 19:51:28',2330,175,'2005-08-26 01:29:28',2,'2006-02-15 21:30:53'), - (13998,'2005-08-20 19:52:38',3936,530,'2005-08-26 14:57:38',1,'2006-02-15 21:30:53'), - (13999,'2005-08-20 19:53:32',4149,239,'2005-08-26 19:01:32',1,'2006-02-15 21:30:53'), - (14000,'2005-08-20 20:06:05',3907,276,'2005-08-28 17:02:05',1,'2006-02-15 21:30:53'), - (14001,'2005-08-20 20:07:15',1318,120,'2005-08-27 00:50:15',2,'2006-02-15 21:30:53'), - (14002,'2005-08-20 20:12:19',87,33,'2005-08-23 00:23:19',1,'2006-02-15 21:30:53'), - (14003,'2005-08-20 20:16:06',3165,256,'2005-08-28 14:36:06',1,'2006-02-15 21:30:53'), - (14004,'2005-08-20 20:16:35',3445,358,'2005-08-28 17:23:35',2,'2006-02-15 21:30:53'), - (14005,'2005-08-20 20:19:05',1415,135,'2005-08-26 01:42:05',2,'2006-02-15 21:30:53'), - (14006,'2005-08-20 20:21:36',2189,186,'2005-08-21 15:26:36',1,'2006-02-15 21:30:53'), - (14007,'2005-08-20 20:22:47',374,284,'2005-08-28 20:40:47',2,'2006-02-15 21:30:53'), - (14008,'2005-08-20 20:26:00',2427,560,'2005-08-28 17:23:00',2,'2006-02-15 21:30:53'), - (14009,'2005-08-20 20:26:53',3004,382,'2005-08-21 23:32:53',2,'2006-02-15 21:30:53'), - (14010,'2005-08-20 20:29:46',934,537,'2005-08-26 17:37:46',2,'2006-02-15 21:30:53'), - (14011,'2005-08-20 20:32:56',1212,379,'2005-08-28 21:44:56',1,'2006-02-15 21:30:53'), - (14012,'2005-08-20 20:42:12',1866,274,'2005-08-23 23:10:12',2,'2006-02-15 21:30:53'), - (14013,'2005-08-20 20:42:50',3941,496,'2005-08-25 21:37:50',2,'2006-02-15 21:30:53'), - (14014,'2005-08-20 20:47:09',2188,335,'2005-08-21 22:08:09',2,'2006-02-15 21:30:53'), - (14015,'2005-08-20 20:47:43',3145,554,'2005-08-26 19:37:43',1,'2006-02-15 21:30:53'), - (14016,'2005-08-20 20:52:03',509,220,'2005-08-23 18:04:03',2,'2006-02-15 21:30:53'), - (14017,'2005-08-20 20:55:32',920,230,'2005-08-23 16:12:32',1,'2006-02-15 21:30:53'), - (14018,'2006-02-14 15:16:03',2136,533,NULL,2,'2006-02-15 21:30:53'), - (14019,'2005-08-20 20:59:15',1929,202,'2005-08-28 17:29:15',2,'2006-02-15 21:30:53'), - (14020,'2005-08-20 20:59:43',2257,72,'2005-08-23 17:11:43',2,'2006-02-15 21:30:53'), - (14021,'2005-08-20 21:02:12',4394,147,'2005-08-27 22:15:12',1,'2006-02-15 21:30:53'), - (14022,'2005-08-20 21:08:49',4068,170,'2005-08-29 21:57:49',1,'2006-02-15 21:30:53'), - (14023,'2005-08-20 21:10:32',2668,304,'2005-08-23 20:57:32',1,'2006-02-15 21:30:53'), - (14024,'2005-08-20 21:13:58',1492,87,'2005-08-29 23:02:58',1,'2006-02-15 21:30:53'), - (14025,'2005-08-20 21:19:36',4521,37,'2005-08-29 23:39:36',1,'2006-02-15 21:30:53'), - (14026,'2005-08-20 21:21:08',115,231,'2005-08-22 23:19:08',2,'2006-02-15 21:30:53'), - (14027,'2005-08-20 21:21:34',284,432,'2005-08-28 17:46:34',1,'2006-02-15 21:30:53'), - (14028,'2005-08-20 21:23:03',4061,158,'2005-08-25 17:29:03',2,'2006-02-15 21:30:53'), - (14029,'2005-08-20 21:23:11',2653,219,'2005-08-22 18:01:11',2,'2006-02-15 21:30:53'), - (14030,'2005-08-20 21:23:54',1027,127,'2005-08-27 01:19:54',1,'2006-02-15 21:30:53'), - (14031,'2005-08-20 21:24:24',440,361,'2005-08-23 21:47:24',2,'2006-02-15 21:30:53'), - (14032,'2005-08-20 21:26:55',3542,317,'2005-08-26 19:19:55',1,'2006-02-15 21:30:53'), - (14033,'2005-08-20 21:30:53',525,243,'2005-08-23 01:45:53',2,'2006-02-15 21:30:53'), - (14034,'2005-08-20 21:31:52',3484,200,'2005-08-29 00:13:52',1,'2006-02-15 21:30:53'), - (14035,'2005-08-20 21:31:58',2035,260,'2005-08-22 16:28:58',1,'2006-02-15 21:30:53'), - (14036,'2005-08-20 21:35:27',202,256,'2005-08-23 03:29:27',1,'2006-02-15 21:30:53'), - (14037,'2005-08-20 21:35:58',3655,372,'2005-08-29 23:06:58',2,'2006-02-15 21:30:53'), - (14038,'2005-08-20 21:39:23',1069,589,'2005-08-27 23:57:23',2,'2006-02-15 21:30:53'), - (14039,'2005-08-20 21:39:43',4187,383,'2005-08-24 19:03:43',1,'2006-02-15 21:30:53'), - (14040,'2005-08-20 21:43:44',905,17,'2005-08-25 16:30:44',1,'2006-02-15 21:30:53'), - (14041,'2005-08-20 21:45:23',52,247,'2005-08-26 01:42:23',1,'2006-02-15 21:30:53'), - (14042,'2005-08-20 21:45:51',505,322,'2005-08-23 19:57:51',2,'2006-02-15 21:30:53'), - (14043,'2005-08-20 21:46:43',1485,586,'2005-08-21 18:27:43',2,'2006-02-15 21:30:53'), - (14044,'2005-08-20 21:48:38',1422,145,'2005-08-29 02:56:38',1,'2006-02-15 21:30:53'), - (14045,'2005-08-20 21:50:11',3010,509,'2005-08-25 19:03:11',2,'2006-02-15 21:30:53'), - (14046,'2005-08-20 21:53:21',2352,524,'2005-08-23 17:51:21',2,'2006-02-15 21:30:53'), - (14047,'2005-08-20 22:00:43',186,579,'2005-08-24 03:17:43',2,'2006-02-15 21:30:53'), - (14048,'2005-08-20 22:03:18',3475,105,'2005-08-25 02:57:18',2,'2006-02-15 21:30:53'), - (14049,'2005-08-20 22:08:55',1335,112,'2005-08-28 20:24:55',1,'2006-02-15 21:30:53'), - (14050,'2005-08-20 22:09:04',1737,596,'2005-08-26 01:39:04',2,'2006-02-15 21:30:53'), - (14051,'2005-08-20 22:09:51',4012,362,'2005-08-29 04:04:51',2,'2006-02-15 21:30:53'), - (14052,'2005-08-20 22:11:46',3893,514,'2005-08-22 20:26:46',2,'2006-02-15 21:30:53'), - (14053,'2005-08-20 22:13:59',2177,5,'2005-08-26 20:50:59',2,'2006-02-15 21:30:53'), - (14054,'2005-08-20 22:17:01',338,50,'2005-08-21 21:34:01',1,'2006-02-15 21:30:53'), - (14055,'2005-08-20 22:18:00',1571,148,'2005-08-22 02:09:00',2,'2006-02-15 21:30:53'), - (14056,'2005-08-20 22:18:53',1300,22,'2005-08-27 01:05:53',2,'2006-02-15 21:30:53'), - (14057,'2005-08-20 22:22:59',1526,333,'2005-08-25 16:58:59',2,'2006-02-15 21:30:53'), - (14058,'2005-08-20 22:24:35',178,430,'2005-08-30 02:26:35',1,'2006-02-15 21:30:53'), - (14059,'2005-08-20 22:24:44',2045,141,'2005-08-26 21:25:44',2,'2006-02-15 21:30:53'), - (14060,'2006-02-14 15:16:03',3100,175,NULL,2,'2006-02-15 21:30:53'), - (14061,'2005-08-20 22:32:11',73,53,'2005-08-22 19:28:11',1,'2006-02-15 21:30:53'), - (14062,'2005-08-20 22:34:34',2841,239,'2005-08-25 17:11:34',2,'2006-02-15 21:30:53'), - (14063,'2005-08-20 22:36:40',1215,275,'2005-08-25 00:18:40',2,'2006-02-15 21:30:53'), - (14064,'2005-08-20 22:39:16',2938,103,'2005-08-22 00:45:16',2,'2006-02-15 21:30:53'), - (14065,'2005-08-20 22:40:47',3758,190,'2005-08-24 01:47:47',1,'2006-02-15 21:30:53'), - (14066,'2005-08-20 22:45:58',2444,274,'2005-08-29 00:23:58',2,'2006-02-15 21:30:53'), - (14067,'2005-08-20 22:49:23',1376,259,'2005-08-29 22:28:23',2,'2006-02-15 21:30:53'), - (14068,'2005-08-20 22:50:59',818,412,'2005-08-29 00:45:59',1,'2006-02-15 21:30:53'), - (14069,'2005-08-20 22:51:25',2239,197,'2005-08-30 00:30:25',2,'2006-02-15 21:30:53'), - (14070,'2005-08-20 22:56:34',846,581,'2005-08-29 22:02:34',1,'2006-02-15 21:30:53'), - (14071,'2005-08-20 23:01:56',2471,550,'2005-08-22 02:14:56',1,'2006-02-15 21:30:53'), - (14072,'2005-08-20 23:07:10',2387,515,'2005-08-23 03:38:10',2,'2006-02-15 21:30:53'), - (14073,'2005-08-20 23:12:57',2996,230,'2005-08-28 18:47:57',2,'2006-02-15 21:30:53'), - (14074,'2005-08-20 23:16:07',1303,506,'2005-08-26 04:45:07',1,'2006-02-15 21:30:53'), - (14075,'2005-08-20 23:18:54',3793,32,'2005-08-26 21:59:54',2,'2006-02-15 21:30:53'), - (14076,'2005-08-20 23:20:10',1070,574,'2005-08-24 04:00:10',1,'2006-02-15 21:30:53'), - (14077,'2005-08-20 23:24:07',3184,21,'2005-08-29 02:53:07',1,'2006-02-15 21:30:53'), - (14078,'2005-08-20 23:26:40',1642,396,'2005-08-28 02:30:40',1,'2006-02-15 21:30:53'), - (14079,'2005-08-20 23:29:25',3528,348,'2005-08-25 04:16:25',2,'2006-02-15 21:30:53'), - (14080,'2005-08-20 23:29:50',3962,266,'2005-08-26 00:33:50',1,'2006-02-15 21:30:53'), - (14081,'2005-08-20 23:35:13',589,392,'2005-08-28 01:41:13',2,'2006-02-15 21:30:53'), - (14082,'2005-08-20 23:42:00',3767,179,'2005-08-27 00:59:00',1,'2006-02-15 21:30:53'), - (14083,'2005-08-20 23:42:31',1823,176,'2005-08-28 21:44:31',1,'2006-02-15 21:30:53'), - (14084,'2005-08-20 23:42:46',900,37,'2005-08-24 20:06:46',1,'2006-02-15 21:30:53'), - (14085,'2005-08-20 23:46:24',3506,471,'2005-08-29 02:31:24',2,'2006-02-15 21:30:53'), - (14086,'2005-08-20 23:47:54',3244,253,'2005-08-27 22:49:54',1,'2006-02-15 21:30:53'), - (14087,'2005-08-20 23:53:40',2368,289,'2005-08-26 20:22:40',1,'2006-02-15 21:30:53'), - (14088,'2005-08-20 23:57:24',1184,518,'2005-08-28 21:49:24',1,'2006-02-15 21:30:53'), - (14089,'2005-08-20 23:59:02',1400,425,'2005-08-27 00:19:02',1,'2006-02-15 21:30:53'), - (14090,'2005-08-21 00:11:16',3254,168,'2005-08-23 19:48:16',2,'2006-02-15 21:30:53'), - (14091,'2005-08-21 00:11:17',3304,53,'2005-08-27 18:38:17',1,'2006-02-15 21:30:53'), - (14092,'2005-08-21 00:14:32',1596,273,'2005-08-24 22:22:32',2,'2006-02-15 21:30:53'), - (14093,'2005-08-21 00:21:29',1176,177,'2005-08-22 04:01:29',1,'2006-02-15 21:30:53'), - (14094,'2005-08-21 00:21:35',3674,471,'2005-08-23 05:27:35',2,'2006-02-15 21:30:53'), - (14095,'2005-08-21 00:25:45',1550,489,'2005-08-28 23:00:45',1,'2006-02-15 21:30:53'), - (14096,'2005-08-21 00:27:46',2089,342,'2005-08-22 22:53:46',1,'2006-02-15 21:30:53'), - (14097,'2005-08-21 00:28:48',4351,88,'2005-08-29 22:15:48',1,'2006-02-15 21:30:53'), - (14098,'2005-08-21 00:30:32',6,554,NULL,2,'2006-02-23 04:12:08'), - (14099,'2005-08-21 00:31:03',2452,224,'2005-08-27 03:18:03',2,'2006-02-15 21:30:53'), - (14100,'2005-08-21 00:31:07',4295,397,'2005-08-25 05:31:07',2,'2006-02-15 21:30:53'), - (14101,'2005-08-21 00:33:03',1892,19,'2005-08-24 01:59:03',1,'2006-02-15 21:30:53'), - (14102,'2005-08-21 00:35:21',3772,584,'2005-08-30 04:51:21',2,'2006-02-15 21:30:53'), - (14103,'2005-08-21 00:37:00',1438,409,'2005-08-25 22:09:00',2,'2006-02-15 21:30:53'), - (14104,'2005-08-21 00:37:44',912,178,'2005-08-21 22:55:44',2,'2006-02-15 21:30:53'), - (14105,'2005-08-21 00:44:34',1111,71,'2005-08-29 19:00:34',1,'2006-02-15 21:30:53'), - (14106,'2005-08-21 00:46:01',2673,315,'2005-08-27 23:44:01',1,'2006-02-15 21:30:53'), - (14107,'2006-02-14 15:16:03',3998,251,NULL,1,'2006-02-15 21:30:53'), - (14108,'2005-08-21 00:52:45',4339,243,'2005-08-21 19:35:45',2,'2006-02-15 21:30:53'), - (14109,'2005-08-21 00:52:58',1046,180,'2005-08-22 00:09:58',2,'2006-02-15 21:30:53'), - (14110,'2005-08-21 00:53:09',2709,35,'2005-08-24 05:33:09',2,'2006-02-15 21:30:53'), - (14111,'2005-08-21 00:59:01',1294,130,'2005-08-22 20:43:01',2,'2006-02-15 21:30:53'), - (14112,'2005-08-21 01:00:46',734,141,'2005-08-27 03:46:46',1,'2006-02-15 21:30:53'), - (14113,'2005-08-21 01:03:30',931,288,'2005-08-23 06:46:30',2,'2006-02-15 21:30:53'), - (14114,'2005-08-21 01:07:11',2270,8,'2005-08-24 20:33:11',1,'2006-02-15 21:30:53'), - (14115,'2005-08-21 01:10:29',1945,257,'2005-08-24 01:21:29',1,'2006-02-15 21:30:53'), - (14116,'2005-08-21 01:11:17',2356,142,'2005-08-24 23:45:17',2,'2006-02-15 21:30:53'), - (14117,'2005-08-21 01:11:59',573,493,'2005-08-22 06:56:59',1,'2006-02-15 21:30:53'), - (14118,'2005-08-21 01:13:37',2605,337,'2005-08-28 02:35:37',2,'2006-02-15 21:30:53'), - (14119,'2005-08-21 01:15:59',129,53,'2005-08-27 23:36:59',2,'2006-02-15 21:30:53'), - (14120,'2005-08-21 01:25:00',4069,302,'2005-08-24 23:21:00',2,'2006-02-15 21:30:53'), - (14121,'2005-08-21 01:26:33',4207,417,'2005-08-28 22:47:33',2,'2006-02-15 21:30:53'), - (14122,'2005-08-21 01:29:01',3955,86,'2005-08-27 05:31:01',1,'2006-02-15 21:30:53'), - (14123,'2005-08-21 01:31:25',143,66,'2005-08-23 02:32:25',1,'2006-02-15 21:30:53'), - (14124,'2005-08-21 01:31:51',311,35,'2005-08-24 22:20:51',2,'2006-02-15 21:30:53'), - (14125,'2005-08-21 01:32:16',2174,265,'2005-08-26 00:09:16',1,'2006-02-15 21:30:53'), - (14126,'2005-08-21 01:32:17',2738,215,'2005-08-23 01:02:17',1,'2006-02-15 21:30:53'), - (14127,'2005-08-21 01:33:32',4532,550,'2005-08-22 02:47:32',2,'2006-02-15 21:30:53'), - (14128,'2005-08-21 01:35:58',2594,81,'2005-08-21 21:23:58',2,'2006-02-15 21:30:53'), - (14129,'2005-08-21 01:42:15',3572,362,'2005-08-23 20:04:15',2,'2006-02-15 21:30:53'), - (14130,'2005-08-21 01:43:11',3859,352,'2005-08-27 21:16:11',2,'2006-02-15 21:30:53'), - (14131,'2005-08-21 01:43:40',4382,267,'2005-08-29 02:00:40',2,'2006-02-15 21:30:53'), - (14132,'2005-08-21 01:43:58',3806,91,'2005-08-26 20:16:58',2,'2006-02-15 21:30:53'), - (14133,'2005-08-21 01:44:14',2463,453,'2005-08-30 02:19:14',2,'2006-02-15 21:30:53'), - (14134,'2005-08-21 01:45:54',2159,497,'2005-08-24 01:36:54',1,'2006-02-15 21:30:53'), - (14135,'2005-08-21 01:53:54',347,59,'2005-08-27 05:57:54',1,'2006-02-15 21:30:53'), - (14136,'2005-08-21 01:57:26',268,135,'2005-08-28 01:11:26',1,'2006-02-15 21:30:53'), - (14137,'2006-02-14 15:16:03',2346,53,NULL,2,'2006-02-15 21:30:53'), - (14138,'2005-08-21 01:59:37',1238,121,'2005-08-30 01:17:37',2,'2006-02-15 21:30:53'), - (14139,'2005-08-21 02:04:33',2280,561,'2005-08-22 04:16:33',2,'2006-02-15 21:30:53'), - (14140,'2005-08-21 02:04:57',2070,65,'2005-08-29 06:41:57',2,'2006-02-15 21:30:53'), - (14141,'2005-08-21 02:07:22',4527,190,'2005-08-30 07:32:22',1,'2006-02-15 21:30:53'), - (14142,'2005-08-21 02:07:43',1479,544,'2005-08-23 02:37:43',2,'2006-02-15 21:30:53'), - (14143,'2005-08-21 02:10:32',2549,146,'2005-08-23 23:50:32',1,'2006-02-15 21:30:53'), - (14144,'2005-08-21 02:10:57',2366,46,'2005-08-28 01:02:57',1,'2006-02-15 21:30:53'), - (14145,'2005-08-21 02:11:38',150,314,'2005-08-22 22:19:38',2,'2006-02-15 21:30:53'), - (14146,'2005-08-21 02:13:31',2151,192,'2005-08-24 22:47:31',2,'2006-02-15 21:30:53'), - (14147,'2005-08-21 02:14:03',1476,366,'2005-08-27 22:38:03',1,'2006-02-15 21:30:53'), - (14148,'2005-08-21 02:17:49',1605,528,'2005-08-22 00:12:49',1,'2006-02-15 21:30:53'), - (14149,'2005-08-21 02:22:47',3371,518,'2005-08-24 02:36:47',1,'2006-02-15 21:30:53'), - (14150,'2005-08-21 02:23:03',2324,161,'2005-08-25 22:50:03',2,'2006-02-15 21:30:53'), - (14151,'2005-08-21 02:23:25',2785,426,'2005-08-30 07:08:25',1,'2006-02-15 21:30:53'), - (14152,'2005-08-21 02:23:50',2561,379,'2005-08-25 06:05:50',1,'2006-02-15 21:30:53'), - (14153,'2005-08-21 02:24:33',1502,120,'2005-08-27 05:28:33',2,'2006-02-15 21:30:53'), - (14154,'2005-08-21 02:30:00',951,468,'2005-08-28 01:41:00',2,'2006-02-15 21:30:53'), - (14155,'2005-08-21 02:31:35',769,148,'2005-08-27 06:00:35',2,'2006-02-15 21:30:53'), - (14156,'2005-08-21 02:35:16',437,147,'2005-08-27 01:32:16',2,'2006-02-15 21:30:53'), - (14157,'2005-08-21 02:43:15',4471,128,'2005-08-24 02:47:15',1,'2006-02-15 21:30:53'), - (14158,'2005-08-21 02:43:20',474,114,'2005-08-28 02:19:20',1,'2006-02-15 21:30:53'), - (14159,'2005-08-21 02:45:58',3231,144,'2005-08-27 04:53:58',1,'2006-02-15 21:30:53'), - (14160,'2006-02-14 15:16:03',2428,493,NULL,2,'2006-02-15 21:30:53'), - (14161,'2005-08-21 02:51:59',2744,21,'2005-08-28 21:38:59',2,'2006-02-15 21:30:53'), - (14162,'2005-08-21 02:55:34',3788,315,'2005-08-27 00:13:34',1,'2006-02-15 21:30:53'), - (14163,'2005-08-21 02:56:52',1007,204,'2005-08-21 21:03:52',2,'2006-02-15 21:30:53'), - (14164,'2005-08-21 02:58:02',2381,274,'2005-08-29 23:17:02',2,'2006-02-15 21:30:53'), - (14165,'2005-08-21 02:59:17',4151,150,'2005-08-24 23:09:17',2,'2006-02-15 21:30:53'), - (14166,'2005-08-21 02:59:31',2457,190,'2005-08-24 23:19:31',2,'2006-02-15 21:30:53'), - (14167,'2005-08-21 02:59:48',1005,64,'2005-08-29 22:17:48',1,'2006-02-15 21:30:53'), - (14168,'2005-08-21 03:00:03',1321,49,'2005-08-29 06:04:03',2,'2006-02-15 21:30:53'), - (14169,'2005-08-21 03:00:31',3800,396,'2005-08-30 01:16:31',1,'2006-02-15 21:30:53'), - (14170,'2005-08-21 03:00:39',894,259,'2005-08-27 23:07:39',1,'2006-02-15 21:30:53'), - (14171,'2005-08-21 03:00:42',4179,320,'2005-08-24 00:54:42',1,'2006-02-15 21:30:53'), - (14172,'2006-02-14 15:16:03',2158,450,NULL,2,'2006-02-15 21:30:53'), - (14173,'2005-08-21 03:01:01',3175,152,'2005-08-22 02:40:01',1,'2006-02-15 21:30:53'), - (14174,'2005-08-21 03:01:45',1862,29,'2005-08-22 07:19:45',2,'2006-02-15 21:30:53'), - (14175,'2006-02-14 15:16:03',2021,452,NULL,1,'2006-02-15 21:30:53'), - (14176,'2005-08-21 03:09:23',4420,556,'2005-08-26 21:26:23',1,'2006-02-15 21:30:53'), - (14177,'2005-08-21 03:11:33',409,121,'2005-08-28 21:41:33',2,'2006-02-15 21:30:53'), - (14178,'2005-08-21 03:13:45',2178,524,'2005-08-22 01:50:45',1,'2006-02-15 21:30:53'), - (14179,'2005-08-21 03:14:27',3956,79,'2005-08-26 00:46:27',2,'2006-02-15 21:30:53'), - (14180,'2005-08-21 03:16:15',796,262,'2005-08-24 22:31:15',2,'2006-02-15 21:30:53'), - (14181,'2005-08-21 03:16:30',197,210,'2005-08-29 06:25:30',2,'2006-02-15 21:30:53'), - (14182,'2005-08-21 03:17:10',2422,519,'2005-08-24 21:46:10',1,'2006-02-15 21:30:53'), - (14183,'2005-08-21 03:24:29',1888,26,'2005-08-22 07:25:29',2,'2006-02-15 21:30:53'), - (14184,'2005-08-21 03:24:50',3759,148,'2005-08-29 01:46:50',2,'2006-02-15 21:30:53'), - (14185,'2005-08-21 03:28:37',3957,579,'2005-08-26 01:15:37',1,'2006-02-15 21:30:53'), - (14186,'2005-08-21 03:31:07',3158,461,'2005-08-28 07:29:07',2,'2006-02-15 21:30:53'), - (14187,'2005-08-21 03:32:03',4031,275,'2005-08-25 03:29:03',2,'2006-02-15 21:30:53'), - (14188,'2005-08-21 03:32:04',4492,548,'2005-08-22 07:26:04',1,'2006-02-15 21:30:53'), - (14189,'2005-08-21 03:32:17',2209,127,'2005-08-22 04:46:17',2,'2006-02-15 21:30:53'), - (14190,'2005-08-21 03:35:21',4203,517,'2005-08-29 07:35:21',2,'2006-02-15 21:30:53'), - (14191,'2005-08-21 03:35:58',301,423,'2005-08-28 00:28:58',1,'2006-02-15 21:30:53'), - (14192,'2005-08-21 03:37:42',3563,26,'2005-08-28 05:31:42',2,'2006-02-15 21:30:53'), - (14193,'2005-08-21 03:38:27',513,25,'2005-08-28 09:16:27',1,'2006-02-15 21:30:53'), - (14194,'2005-08-21 03:40:11',2003,138,'2005-08-26 07:38:11',1,'2006-02-15 21:30:53'), - (14195,'2005-08-21 03:40:35',3732,93,'2005-08-23 01:22:35',1,'2006-02-15 21:30:53'), - (14196,'2005-08-21 03:40:40',4477,281,'2005-08-25 05:55:40',1,'2006-02-15 21:30:53'), - (14197,'2005-08-21 03:47:25',340,469,'2005-08-30 09:15:25',2,'2006-02-15 21:30:53'), - (14198,'2005-08-21 03:48:31',465,381,'2005-08-24 07:10:31',2,'2006-02-15 21:30:53'), - (14199,'2005-08-21 03:48:43',658,442,'2005-08-23 04:01:43',1,'2006-02-15 21:30:53'), - (14200,'2005-08-21 03:51:27',2339,349,'2005-08-29 22:00:27',1,'2006-02-15 21:30:53'), - (14201,'2005-08-21 03:51:34',314,427,'2005-08-30 03:42:34',2,'2006-02-15 21:30:53'), - (14202,'2005-08-21 03:51:52',1995,473,'2005-08-22 09:35:52',1,'2006-02-15 21:30:53'), - (14203,'2005-08-21 03:51:52',3668,95,'2005-08-24 06:13:52',2,'2006-02-15 21:30:53'), - (14204,'2006-02-14 15:16:03',4334,287,NULL,1,'2006-02-15 21:30:53'), - (14205,'2005-08-21 03:57:15',315,406,'2005-08-30 08:46:15',2,'2006-02-15 21:30:53'), - (14206,'2005-08-21 03:59:26',860,279,'2005-08-26 03:52:26',1,'2006-02-15 21:30:53'), - (14207,'2005-08-21 04:08:19',1327,569,'2005-08-29 07:59:19',2,'2006-02-15 21:30:53'), - (14208,'2005-08-21 04:09:18',4180,299,'2005-08-22 03:29:18',1,'2006-02-15 21:30:53'), - (14209,'2005-08-21 04:17:56',896,472,'2005-08-27 06:57:56',1,'2006-02-15 21:30:53'), - (14210,'2005-08-21 04:28:02',1867,468,'2005-08-24 02:14:02',2,'2006-02-15 21:30:53'), - (14211,'2005-08-21 04:29:11',300,372,'2005-08-24 02:50:11',2,'2006-02-15 21:30:53'), - (14212,'2005-08-21 04:29:26',4540,354,'2005-08-24 00:46:26',2,'2006-02-15 21:30:53'), - (14213,'2005-08-21 04:30:47',382,511,'2005-08-24 23:01:47',1,'2006-02-15 21:30:53'), - (14214,'2005-08-21 04:30:49',4510,198,'2005-08-26 04:42:49',1,'2006-02-15 21:30:53'), - (14215,'2005-08-21 04:34:11',35,54,'2005-08-27 10:30:11',2,'2006-02-15 21:30:53'), - (14216,'2006-02-14 15:16:03',3763,186,NULL,1,'2006-02-15 21:30:53'), - (14217,'2005-08-21 04:37:56',2847,66,'2005-08-26 03:55:56',2,'2006-02-15 21:30:53'), - (14218,'2005-08-21 04:43:59',4087,104,'2005-08-27 10:29:59',1,'2006-02-15 21:30:53'), - (14219,'2006-02-14 15:16:03',3718,334,NULL,2,'2006-02-15 21:30:53'), - (14220,'2006-02-14 15:16:03',2618,162,NULL,1,'2006-02-15 21:30:53'), - (14221,'2005-08-21 04:49:41',3824,51,'2005-08-29 23:52:41',1,'2006-02-15 21:30:53'), - (14222,'2005-08-21 04:49:48',714,7,'2005-08-25 05:34:48',2,'2006-02-15 21:30:53'), - (14223,'2005-08-21 04:51:51',514,392,'2005-08-29 00:37:51',1,'2006-02-15 21:30:53'), - (14224,'2005-08-21 04:53:08',3634,323,'2005-08-27 04:12:08',2,'2006-02-15 21:30:53'), - (14225,'2005-08-21 04:53:37',984,4,'2005-08-25 23:39:37',2,'2006-02-15 21:30:53'), - (14226,'2005-08-21 04:55:37',1793,316,'2005-08-24 04:32:37',1,'2006-02-15 21:30:53'), - (14227,'2005-08-21 04:56:31',4102,277,'2005-08-22 05:04:31',2,'2006-02-15 21:30:53'), - (14228,'2005-08-21 04:57:08',2016,71,'2005-08-25 00:06:08',2,'2006-02-15 21:30:53'), - (14229,'2005-08-21 04:57:15',4479,186,'2005-08-26 10:00:15',1,'2006-02-15 21:30:53'), - (14230,'2005-08-21 04:57:29',844,584,'2005-08-27 08:14:29',2,'2006-02-15 21:30:53'), - (14231,'2005-08-21 05:04:34',1244,307,'2005-08-23 04:58:34',1,'2006-02-15 21:30:53'), - (14232,'2005-08-21 05:07:02',2710,176,'2005-08-29 06:57:02',1,'2006-02-15 21:30:53'), - (14233,'2005-08-21 05:07:08',2943,599,'2005-08-28 03:20:08',1,'2006-02-15 21:30:53'), - (14234,'2005-08-21 05:07:12',1439,271,'2005-08-23 06:44:12',2,'2006-02-15 21:30:53'), - (14235,'2005-08-21 05:08:42',125,558,'2005-08-29 23:36:42',1,'2006-02-15 21:30:53'), - (14236,'2005-08-21 05:13:16',172,25,'2005-08-26 04:03:16',2,'2006-02-15 21:30:53'), - (14237,'2005-08-21 05:15:00',3284,410,'2005-08-25 10:06:00',1,'2006-02-15 21:30:53'), - (14238,'2005-08-21 05:16:40',3148,192,'2005-08-30 02:13:40',2,'2006-02-15 21:30:53'), - (14239,'2005-08-21 05:18:57',1559,416,'2005-08-22 00:12:57',2,'2006-02-15 21:30:53'), - (14240,'2005-08-21 05:19:39',3294,12,'2005-08-22 23:25:39',2,'2006-02-15 21:30:53'), - (14241,'2005-08-21 05:24:55',2547,291,'2005-08-30 03:33:55',1,'2006-02-15 21:30:53'), - (14242,'2005-08-21 05:25:59',1588,68,'2005-08-27 07:22:59',1,'2006-02-15 21:30:53'), - (14243,'2006-02-14 15:16:03',1489,264,NULL,1,'2006-02-15 21:30:53'), - (14244,'2005-08-21 05:29:55',1150,43,'2005-08-24 01:06:55',1,'2006-02-15 21:30:53'), - (14245,'2005-08-21 05:30:54',975,354,'2005-08-26 07:02:54',1,'2006-02-15 21:30:53'), - (14246,'2005-08-21 05:34:09',3499,120,'2005-08-26 06:12:09',1,'2006-02-15 21:30:53'), - (14247,'2005-08-21 05:35:17',267,302,'2005-08-26 03:22:17',1,'2006-02-15 21:30:53'), - (14248,'2005-08-21 05:35:57',725,293,'2005-08-28 05:53:57',2,'2006-02-15 21:30:53'), - (14249,'2005-08-21 05:38:05',695,268,'2005-08-28 09:07:05',2,'2006-02-15 21:30:53'), - (14250,'2005-08-21 05:39:35',3008,313,'2005-08-28 10:06:35',2,'2006-02-15 21:30:53'), - (14251,'2005-08-21 05:42:20',139,486,'2005-08-26 06:20:20',2,'2006-02-15 21:30:53'), - (14252,'2005-08-21 05:44:07',2660,13,'2005-08-29 08:53:07',1,'2006-02-15 21:30:53'), - (14253,'2005-08-21 05:47:52',4246,456,'2005-08-25 04:28:52',1,'2006-02-15 21:30:53'), - (14254,'2005-08-21 05:51:28',1549,589,'2005-08-29 06:05:28',2,'2006-02-15 21:30:53'), - (14255,'2005-08-21 05:51:37',3125,492,'2005-08-29 10:00:37',1,'2006-02-15 21:30:53'), - (14256,'2005-08-21 05:52:27',2922,331,'2005-08-29 02:10:27',2,'2006-02-15 21:30:53'), - (14257,'2005-08-21 05:52:57',3830,178,'2005-08-29 03:18:57',2,'2006-02-15 21:30:53'), - (14258,'2005-08-21 05:56:36',752,359,'2005-08-26 06:14:36',1,'2006-02-15 21:30:53'), - (14259,'2005-08-21 06:00:22',3705,583,'2005-08-22 05:38:22',2,'2006-02-15 21:30:53'), - (14260,'2005-08-21 06:01:08',2961,40,'2005-08-29 09:01:08',2,'2006-02-15 21:30:53'), - (14261,'2005-08-21 06:07:24',1426,166,'2005-08-26 09:57:24',1,'2006-02-15 21:30:53'), - (14262,'2005-08-21 06:08:13',1430,324,'2005-08-30 10:55:13',1,'2006-02-15 21:30:53'), - (14263,'2005-08-21 06:08:15',2595,533,'2005-08-29 09:22:15',2,'2006-02-15 21:30:53'), - (14264,'2005-08-21 06:18:22',3426,295,'2005-08-25 08:08:22',1,'2006-02-15 21:30:53'), - (14265,'2005-08-21 06:20:14',3116,134,'2005-08-23 09:05:14',1,'2006-02-15 21:30:53'), - (14266,'2005-08-21 06:20:51',3543,269,'2005-08-23 00:44:51',1,'2006-02-15 21:30:53'), - (14267,'2006-02-14 15:16:03',2199,527,NULL,2,'2006-02-15 21:30:53'), - (14268,'2005-08-21 06:21:24',2442,278,'2005-08-23 05:39:24',2,'2006-02-15 21:30:53'), - (14269,'2005-08-21 06:22:07',531,241,'2005-08-30 00:41:07',2,'2006-02-15 21:30:53'), - (14270,'2005-08-21 06:22:18',4083,171,'2005-08-27 08:04:18',1,'2006-02-15 21:30:53'), - (14271,'2005-08-21 06:23:29',4506,224,'2005-08-27 04:49:29',1,'2006-02-15 21:30:53'), - (14272,'2005-08-21 06:24:55',3908,243,'2005-08-28 02:25:55',1,'2006-02-15 21:30:53'), - (14273,'2005-08-21 06:26:48',2640,388,'2005-08-30 10:34:48',1,'2006-02-15 21:30:53'), - (14274,'2005-08-21 06:29:20',3183,405,'2005-08-26 06:25:20',2,'2006-02-15 21:30:53'), - (14275,'2005-08-21 06:30:30',3238,163,'2005-08-25 12:28:30',1,'2006-02-15 21:30:53'), - (14276,'2005-08-21 06:34:05',3637,318,'2005-08-28 10:13:05',2,'2006-02-15 21:30:53'), - (14277,'2005-08-21 06:34:41',2652,566,'2005-08-28 10:53:41',2,'2006-02-15 21:30:53'), - (14278,'2006-02-14 15:16:03',2334,557,NULL,2,'2006-02-15 21:30:53'), - (14279,'2005-08-21 06:39:08',3325,387,'2005-08-29 11:01:08',2,'2006-02-15 21:30:53'), - (14280,'2005-08-21 06:39:58',1561,481,'2005-08-23 04:50:58',1,'2006-02-15 21:30:53'), - (14281,'2005-08-21 06:40:48',1848,166,'2005-08-26 11:42:48',2,'2006-02-15 21:30:53'), - (14282,'2005-08-21 06:41:29',3107,450,'2005-08-22 12:37:29',1,'2006-02-15 21:30:53'), - (14283,'2005-08-21 06:44:14',3052,253,'2005-08-24 01:01:14',1,'2006-02-15 21:30:53'), - (14284,'2005-08-21 06:44:37',633,486,'2005-08-28 05:03:37',1,'2006-02-15 21:30:53'), - (14285,'2005-08-21 06:50:48',402,249,'2005-08-28 11:35:48',1,'2006-02-15 21:30:53'), - (14286,'2005-08-21 06:53:53',2377,558,'2005-08-27 11:37:53',2,'2006-02-15 21:30:53'), - (14287,'2005-08-21 06:53:59',2426,427,'2005-08-25 03:10:59',2,'2006-02-15 21:30:53'), - (14288,'2005-08-21 06:57:34',587,512,'2005-08-26 11:32:34',1,'2006-02-15 21:30:53'), - (14289,'2005-08-21 06:58:49',1185,103,'2005-08-25 11:29:49',2,'2006-02-15 21:30:53'), - (14290,'2005-08-21 07:02:59',790,366,'2005-08-28 02:57:59',1,'2006-02-15 21:30:53'), - (14291,'2005-08-21 07:03:05',3988,56,'2005-08-26 12:56:05',2,'2006-02-15 21:30:53'), - (14292,'2005-08-21 07:06:20',1959,251,'2005-08-22 01:39:20',2,'2006-02-15 21:30:53'), - (14293,'2005-08-21 07:06:47',3555,364,'2005-08-22 05:07:47',2,'2006-02-15 21:30:53'), - (14294,'2005-08-21 07:07:26',354,455,'2005-08-22 02:20:26',2,'2006-02-15 21:30:53'), - (14295,'2005-08-21 07:09:27',2187,336,'2005-08-22 01:27:27',2,'2006-02-15 21:30:53'), - (14296,'2005-08-21 07:13:23',3813,275,'2005-08-26 11:14:23',1,'2006-02-15 21:30:53'), - (14297,'2005-08-21 07:13:46',1712,566,'2005-08-25 09:07:46',1,'2006-02-15 21:30:53'), - (14298,'2005-08-21 07:17:10',4317,410,'2005-08-25 10:10:10',1,'2006-02-15 21:30:53'), - (14299,'2005-08-21 07:18:57',4028,342,'2005-08-24 01:28:57',1,'2006-02-15 21:30:53'), - (14300,'2005-08-21 07:19:37',690,382,'2005-08-25 12:06:37',2,'2006-02-15 21:30:53'), - (14301,'2005-08-21 07:19:48',283,162,'2005-08-28 02:06:48',1,'2006-02-15 21:30:53'), - (14302,'2005-08-21 07:19:57',1287,511,'2005-08-28 02:59:57',1,'2006-02-15 21:30:53'), - (14303,'2005-08-21 07:22:43',992,475,'2005-08-24 11:52:43',1,'2006-02-15 21:30:53'), - (14304,'2005-08-21 07:23:10',2650,417,'2005-08-26 11:21:10',2,'2006-02-15 21:30:53'), - (14305,'2005-08-21 07:29:05',2056,58,'2005-08-27 08:18:05',1,'2006-02-15 21:30:53'), - (14306,'2005-08-21 07:32:35',4027,453,'2005-08-30 05:53:35',1,'2006-02-15 21:30:53'), - (14307,'2005-08-21 07:34:52',2894,328,'2005-08-29 09:45:52',1,'2006-02-15 21:30:53'), - (14308,'2005-08-21 07:43:21',3478,419,'2005-08-25 02:39:21',2,'2006-02-15 21:30:53'), - (14309,'2005-08-21 07:44:17',4447,468,'2005-08-30 07:23:17',2,'2006-02-15 21:30:53'), - (14310,'2005-08-21 07:44:32',95,177,'2005-08-22 09:02:32',1,'2006-02-15 21:30:53'), - (14311,'2005-08-21 07:45:47',1761,69,'2005-08-27 02:23:47',2,'2006-02-15 21:30:53'), - (14312,'2005-08-21 07:48:34',1090,238,'2005-08-23 04:45:34',1,'2006-02-15 21:30:53'), - (14313,'2005-08-21 07:49:53',3384,468,'2005-08-30 05:52:53',2,'2006-02-15 21:30:53'), - (14314,'2005-08-21 07:50:14',4115,178,'2005-08-24 10:47:14',2,'2006-02-15 21:30:53'), - (14315,'2005-08-21 07:56:39',1164,459,'2005-08-27 04:52:39',1,'2006-02-15 21:30:53'), - (14316,'2005-08-21 07:59:47',386,64,'2005-08-23 02:20:47',2,'2006-02-15 21:30:53'), - (14317,'2005-08-21 08:00:40',2090,471,'2005-08-27 06:52:40',1,'2006-02-15 21:30:53'), - (14318,'2006-02-14 15:16:03',1042,508,NULL,2,'2006-02-15 21:30:53'), - (14319,'2005-08-21 08:00:55',4480,410,'2005-08-26 05:04:55',1,'2006-02-15 21:30:53'), - (14320,'2005-08-21 08:04:40',3121,199,'2005-08-22 02:09:40',1,'2006-02-15 21:30:53'), - (14321,'2005-08-21 08:05:12',967,236,'2005-08-23 02:17:12',1,'2006-02-15 21:30:53'), - (14322,'2005-08-21 08:06:30',2818,221,'2005-08-29 10:12:30',2,'2006-02-15 21:30:53'), - (14323,'2005-08-21 08:08:43',1257,97,'2005-08-25 10:44:43',1,'2006-02-15 21:30:53'), - (14324,'2005-08-21 08:10:56',1361,155,'2005-08-30 12:09:56',1,'2006-02-15 21:30:53'), - (14325,'2005-08-21 08:15:38',4432,313,'2005-08-23 08:08:38',2,'2006-02-15 21:30:53'), - (14326,'2005-08-21 08:15:41',1052,17,'2005-08-27 05:22:41',1,'2006-02-15 21:30:53'), - (14327,'2005-08-21 08:18:18',553,457,'2005-08-30 02:21:18',2,'2006-02-15 21:30:53'), - (14328,'2005-08-21 08:18:20',3194,489,'2005-08-25 03:05:20',2,'2006-02-15 21:30:53'), - (14329,'2005-08-21 08:22:56',3544,6,'2005-08-28 02:22:56',2,'2006-02-15 21:30:53'), - (14330,'2005-08-21 08:29:20',763,84,'2005-08-30 03:59:20',2,'2006-02-15 21:30:53'), - (14331,'2005-08-21 08:29:38',3128,372,'2005-08-29 13:18:38',2,'2006-02-15 21:30:53'), - (14332,'2005-08-21 08:30:43',1388,496,'2005-08-29 10:51:43',1,'2006-02-15 21:30:53'), - (14333,'2005-08-21 08:31:03',2976,93,'2005-08-28 03:39:03',2,'2006-02-15 21:30:53'), - (14334,'2005-08-21 08:32:32',1448,595,'2005-08-25 02:53:32',2,'2006-02-15 21:30:53'), - (14335,'2005-08-21 08:33:07',2610,263,'2005-08-26 14:16:07',1,'2006-02-15 21:30:53'), - (14336,'2005-08-21 08:33:42',3166,362,'2005-08-23 03:27:42',1,'2006-02-15 21:30:53'), - (14337,'2005-08-21 08:34:26',3529,506,'2005-08-24 11:31:26',1,'2006-02-15 21:30:53'), - (14338,'2005-08-21 08:36:03',1789,205,'2005-08-24 12:31:03',2,'2006-02-15 21:30:53'), - (14339,'2005-08-21 08:37:15',1744,30,'2005-08-26 03:37:15',2,'2006-02-15 21:30:53'), - (14340,'2005-08-21 08:38:21',2181,230,'2005-08-25 09:25:21',1,'2006-02-15 21:30:53'), - (14341,'2005-08-21 08:38:24',4498,560,'2005-08-26 12:36:24',1,'2006-02-15 21:30:53'), - (14342,'2005-08-21 08:39:26',2749,559,'2005-08-23 11:40:26',2,'2006-02-15 21:30:53'), - (14343,'2005-08-21 08:40:21',3769,238,'2005-08-29 03:06:21',1,'2006-02-15 21:30:53'), - (14344,'2005-08-21 08:40:56',1562,341,'2005-08-27 12:40:56',1,'2006-02-15 21:30:53'), - (14345,'2005-08-21 08:41:15',1726,598,'2005-08-24 11:59:15',1,'2006-02-15 21:30:53'), - (14346,'2005-08-21 08:42:26',109,17,'2005-08-23 09:18:26',2,'2006-02-15 21:30:53'), - (14347,'2005-08-21 08:42:31',3862,214,'2005-08-25 07:11:31',2,'2006-02-15 21:30:53'), - (14348,'2005-08-21 08:54:26',885,496,'2005-08-24 02:55:26',2,'2006-02-15 21:30:53'), - (14349,'2005-08-21 08:54:53',96,119,'2005-08-30 14:27:53',1,'2006-02-15 21:30:53'), - (14350,'2005-08-21 08:58:38',3174,222,'2005-08-30 03:29:38',2,'2006-02-15 21:30:53'), - (14351,'2005-08-21 09:04:20',2037,66,'2005-08-25 05:27:20',1,'2006-02-15 21:30:53'), - (14352,'2005-08-21 09:06:29',1224,527,'2005-08-28 13:36:29',1,'2006-02-15 21:30:53'), - (14353,'2005-08-21 09:07:50',1612,129,'2005-08-22 10:31:50',2,'2006-02-15 21:30:53'), - (14354,'2005-08-21 09:08:14',1137,382,'2005-08-30 05:27:14',1,'2006-02-15 21:30:53'), - (14355,'2005-08-21 09:08:29',649,271,'2005-08-27 10:08:29',2,'2006-02-15 21:30:53'), - (14356,'2005-08-21 09:08:51',3169,65,'2005-08-24 04:36:51',2,'2006-02-15 21:30:53'), - (14357,'2005-08-21 09:13:09',2906,233,'2005-08-22 05:41:09',2,'2006-02-15 21:30:53'), - (14358,'2005-08-21 09:14:28',861,112,'2005-08-24 05:05:28',1,'2006-02-15 21:30:53'), - (14359,'2005-08-21 09:16:19',1841,401,'2005-08-22 09:28:19',1,'2006-02-15 21:30:53'), - (14360,'2005-08-21 09:16:40',2677,246,'2005-08-29 11:43:40',2,'2006-02-15 21:30:53'), - (14361,'2006-02-14 15:16:03',1231,191,NULL,2,'2006-02-15 21:30:53'), - (14362,'2005-08-21 09:19:49',1992,312,'2005-08-26 11:06:49',1,'2006-02-15 21:30:53'), - (14363,'2005-08-21 09:20:03',2579,560,'2005-08-23 14:26:03',1,'2006-02-15 21:30:53'), - (14364,'2005-08-21 09:25:11',3513,236,'2005-08-29 09:04:11',1,'2006-02-15 21:30:53'), - (14365,'2005-08-21 09:25:13',618,457,'2005-08-27 11:48:13',1,'2006-02-15 21:30:53'), - (14366,'2005-08-21 09:31:39',4011,524,'2005-08-26 11:55:39',2,'2006-02-15 21:30:53'), - (14367,'2005-08-21 09:31:44',870,244,'2005-08-26 03:54:44',2,'2006-02-15 21:30:53'), - (14368,'2005-08-21 09:31:47',2063,351,'2005-08-30 04:17:47',1,'2006-02-15 21:30:53'), - (14369,'2005-08-21 09:33:44',1636,392,'2005-08-25 08:56:44',1,'2006-02-15 21:30:53'), - (14370,'2005-08-21 09:35:14',3520,161,'2005-08-27 05:21:14',2,'2006-02-15 21:30:53'), - (14371,'2005-08-21 09:37:16',2197,221,'2005-08-27 13:50:16',2,'2006-02-15 21:30:53'), - (14372,'2005-08-21 09:39:50',1953,520,'2005-08-28 13:36:50',1,'2006-02-15 21:30:53'), - (14373,'2005-08-21 09:44:53',4433,268,'2005-08-25 15:37:53',1,'2006-02-15 21:30:53'), - (14374,'2006-02-14 15:16:03',236,213,NULL,2,'2006-02-15 21:30:53'), - (14375,'2005-08-21 09:46:35',2507,550,'2005-08-26 10:24:35',2,'2006-02-15 21:30:53'), - (14376,'2005-08-21 09:48:56',1936,582,'2005-08-22 12:15:56',2,'2006-02-15 21:30:53'), - (14377,'2005-08-21 09:49:28',1325,6,'2005-08-29 13:34:28',1,'2006-02-15 21:30:53'), - (14378,'2005-08-21 09:50:02',810,515,'2005-08-30 09:07:02',1,'2006-02-15 21:30:53'), - (14379,'2005-08-21 09:53:03',3062,136,'2005-08-24 14:32:03',1,'2006-02-15 21:30:53'), - (14380,'2005-08-21 09:53:52',1523,198,'2005-08-25 05:03:52',2,'2006-02-15 21:30:53'), - (14381,'2005-08-21 09:55:47',811,391,'2005-08-25 08:23:47',1,'2006-02-15 21:30:53'), - (14382,'2005-08-21 10:01:03',4119,119,'2005-08-22 13:21:03',2,'2006-02-15 21:30:53'), - (14383,'2005-08-21 10:02:05',1941,482,'2005-08-24 12:21:05',2,'2006-02-15 21:30:53'), - (14384,'2005-08-21 10:02:37',2429,371,'2005-08-26 08:20:37',1,'2006-02-15 21:30:53'), - (14385,'2005-08-21 10:02:55',4356,317,'2005-08-25 07:19:55',2,'2006-02-15 21:30:53'), - (14386,'2005-08-21 10:06:34',3402,514,'2005-08-25 14:19:34',1,'2006-02-15 21:30:53'), - (14387,'2005-08-21 10:10:01',1286,295,'2005-08-28 14:16:01',2,'2006-02-15 21:30:53'), - (14388,'2005-08-21 10:15:13',1078,274,'2005-08-30 13:41:13',2,'2006-02-15 21:30:53'), - (14389,'2005-08-21 10:15:20',2718,145,'2005-08-27 05:39:20',1,'2006-02-15 21:30:53'), - (14390,'2005-08-21 10:15:38',3951,366,'2005-08-28 05:50:38',2,'2006-02-15 21:30:53'), - (14391,'2005-08-21 10:16:27',3117,205,'2005-08-23 07:00:27',2,'2006-02-15 21:30:53'), - (14392,'2005-08-21 10:19:25',847,586,'2005-08-28 15:57:25',2,'2006-02-15 21:30:53'), - (14393,'2005-08-21 10:22:51',3937,368,'2005-08-29 08:28:51',1,'2006-02-15 21:30:53'), - (14394,'2005-08-21 10:23:10',4555,118,'2005-08-28 09:33:10',1,'2006-02-15 21:30:53'), - (14395,'2005-08-21 10:24:00',632,506,'2005-08-28 12:23:00',2,'2006-02-15 21:30:53'), - (14396,'2005-08-21 10:24:54',3855,353,'2005-08-22 04:49:54',2,'2006-02-15 21:30:53'), - (14397,'2005-08-21 10:25:56',3883,47,'2005-08-24 07:48:56',1,'2006-02-15 21:30:53'), - (14398,'2005-08-21 10:27:21',357,505,'2005-08-23 10:46:21',2,'2006-02-15 21:30:53'), - (14399,'2005-08-21 10:33:23',3582,188,'2005-08-27 08:00:23',1,'2006-02-15 21:30:53'), - (14400,'2005-08-21 10:33:45',3891,569,'2005-08-26 12:05:45',1,'2006-02-15 21:30:53'), - (14401,'2005-08-21 10:36:20',3468,407,'2005-08-30 06:45:20',1,'2006-02-15 21:30:53'), - (14402,'2005-08-21 10:38:17',749,467,'2005-08-27 08:36:17',2,'2006-02-15 21:30:53'), - (14403,'2005-08-21 10:40:34',3581,297,'2005-08-29 11:29:34',1,'2006-02-15 21:30:53'), - (14404,'2005-08-21 10:43:04',3660,192,'2005-08-30 10:00:04',1,'2006-02-15 21:30:53'), - (14405,'2005-08-21 10:45:01',2777,470,'2005-08-30 04:48:01',2,'2006-02-15 21:30:53'), - (14406,'2005-08-21 10:46:35',2741,181,'2005-08-28 15:55:35',1,'2006-02-15 21:30:53'), - (14407,'2005-08-21 10:46:51',2403,500,'2005-08-25 09:28:51',2,'2006-02-15 21:30:53'), - (14408,'2005-08-21 10:47:24',222,593,'2005-08-27 08:18:24',1,'2006-02-15 21:30:53'), - (14409,'2005-08-21 10:53:35',1161,314,'2005-08-25 10:40:35',2,'2006-02-15 21:30:53'), - (14410,'2005-08-21 10:54:49',839,196,'2005-08-26 08:28:49',2,'2006-02-15 21:30:53'), - (14411,'2005-08-21 10:54:57',2125,502,'2005-08-22 13:17:57',2,'2006-02-15 21:30:53'), - (14412,'2005-08-21 11:02:09',212,121,'2005-08-29 06:44:09',1,'2006-02-15 21:30:53'), - (14413,'2005-08-21 11:06:33',50,367,'2005-08-29 16:10:33',1,'2006-02-15 21:30:53'), - (14414,'2005-08-21 11:08:17',1757,515,'2005-08-23 08:37:17',2,'2006-02-15 21:30:53'), - (14415,'2006-02-14 15:16:03',2670,561,NULL,2,'2006-02-15 21:30:53'), - (14416,'2005-08-21 11:11:46',3002,384,'2005-08-25 12:33:46',1,'2006-02-15 21:30:53'), - (14417,'2005-08-21 11:13:35',1768,596,'2005-08-25 11:27:35',1,'2006-02-15 21:30:53'), - (14418,'2005-08-21 11:14:26',89,442,'2005-08-28 08:34:26',2,'2006-02-15 21:30:53'), - (14419,'2005-08-21 11:15:46',3146,221,'2005-08-30 16:37:46',1,'2006-02-15 21:30:53'), - (14420,'2005-08-21 11:16:15',2495,551,'2005-08-24 06:06:15',2,'2006-02-15 21:30:53'), - (14421,'2005-08-21 11:20:21',4402,406,'2005-08-24 06:26:21',1,'2006-02-15 21:30:53'), - (14422,'2005-08-21 11:21:46',1382,361,'2005-08-25 13:15:46',1,'2006-02-15 21:30:53'), - (14423,'2005-08-21 11:23:59',2873,521,'2005-08-26 11:52:59',2,'2006-02-15 21:30:53'), - (14424,'2005-08-21 11:24:11',2535,489,'2005-08-29 13:13:11',2,'2006-02-15 21:30:53'), - (14425,'2006-02-14 15:16:03',2752,560,NULL,2,'2006-02-15 21:30:53'), - (14426,'2006-02-14 15:16:03',2902,315,NULL,1,'2006-02-15 21:30:53'), - (14427,'2005-08-21 11:26:06',2353,163,'2005-08-27 10:39:06',1,'2006-02-15 21:30:53'), - (14428,'2005-08-21 11:27:07',1614,458,'2005-08-29 09:50:07',1,'2006-02-15 21:30:53'), - (14429,'2005-08-21 11:29:43',2513,66,'2005-08-24 12:05:43',1,'2006-02-15 21:30:53'), - (14430,'2005-08-21 11:31:11',2623,5,'2005-08-26 06:29:11',1,'2006-02-15 21:30:53'), - (14431,'2005-08-21 11:31:15',1572,106,'2005-08-26 11:22:15',2,'2006-02-15 21:30:53'), - (14432,'2005-08-21 11:36:15',2294,138,'2005-08-24 08:02:15',2,'2006-02-15 21:30:53'), - (14433,'2005-08-21 11:36:34',732,401,'2005-08-26 08:51:34',1,'2006-02-15 21:30:53'), - (14434,'2005-08-21 11:40:46',2085,549,'2005-08-24 05:50:46',1,'2006-02-15 21:30:53'), - (14435,'2005-08-21 11:44:37',2919,169,'2005-08-24 08:04:37',1,'2006-02-15 21:30:53'), - (14436,'2005-08-21 11:48:27',3473,560,'2005-08-25 15:49:27',2,'2006-02-15 21:30:53'), - (14437,'2005-08-21 11:48:32',1504,136,'2005-08-25 11:06:32',2,'2006-02-15 21:30:53'), - (14438,'2005-08-21 11:51:10',1621,392,'2005-08-28 17:10:10',1,'2006-02-15 21:30:53'), - (14439,'2005-08-21 11:52:41',3903,564,'2005-08-30 10:36:41',1,'2006-02-15 21:30:53'), - (14440,'2005-08-21 11:59:04',3495,194,'2005-08-23 10:10:04',1,'2006-02-15 21:30:53'), - (14441,'2005-08-21 11:59:38',1210,260,'2005-08-26 11:17:38',2,'2006-02-15 21:30:53'), - (14442,'2005-08-21 12:00:21',122,205,'2005-08-23 17:00:21',2,'2006-02-15 21:30:53'), - (14443,'2005-08-21 12:06:32',376,447,'2005-08-29 13:44:32',2,'2006-02-15 21:30:53'), - (14444,'2005-08-21 12:07:25',2211,225,'2005-08-28 08:36:25',2,'2006-02-15 21:30:53'), - (14445,'2005-08-21 12:07:42',3186,256,'2005-08-22 17:51:42',2,'2006-02-15 21:30:53'), - (14446,'2005-08-21 12:10:41',4367,21,'2005-08-26 14:42:41',1,'2006-02-15 21:30:53'), - (14447,'2005-08-21 12:12:05',1889,584,'2005-08-27 14:47:05',2,'2006-02-15 21:30:53'), - (14448,'2005-08-21 12:13:10',1937,263,'2005-08-30 08:46:10',1,'2006-02-15 21:30:53'), - (14449,'2005-08-21 12:13:18',653,529,'2005-08-27 15:41:18',2,'2006-02-15 21:30:53'), - (14450,'2005-08-21 12:21:25',1194,48,'2005-08-26 14:35:25',2,'2006-02-15 21:30:53'), - (14451,'2005-08-21 12:21:44',3967,467,'2005-08-22 15:07:44',2,'2006-02-15 21:30:53'), - (14452,'2005-08-21 12:23:20',4231,325,'2005-08-27 06:26:20',1,'2006-02-15 21:30:53'), - (14453,'2005-08-21 12:33:34',3312,237,'2005-08-27 11:10:34',1,'2006-02-15 21:30:53'), - (14454,'2005-08-21 12:35:49',2475,150,'2005-08-22 16:28:49',2,'2006-02-15 21:30:53'), - (14455,'2005-08-21 12:36:11',3442,68,'2005-08-27 08:12:11',2,'2006-02-15 21:30:53'), - (14456,'2005-08-21 12:38:09',2520,125,'2005-08-26 08:29:09',1,'2006-02-15 21:30:53'), - (14457,'2005-08-21 12:47:38',4288,340,'2005-08-25 13:07:38',1,'2006-02-15 21:30:53'), - (14458,'2005-08-21 12:47:53',1769,256,'2005-08-30 17:09:53',2,'2006-02-15 21:30:53'), - (14459,'2005-08-21 12:48:08',1532,98,'2005-08-27 10:50:08',2,'2006-02-15 21:30:53'), - (14460,'2005-08-21 12:48:48',4137,120,'2005-08-30 16:34:48',2,'2006-02-15 21:30:53'), - (14461,'2005-08-21 12:50:33',371,42,'2005-08-30 13:35:33',1,'2006-02-15 21:30:53'), - (14462,'2005-08-21 12:50:57',2201,96,'2005-08-27 10:42:57',2,'2006-02-15 21:30:53'), - (14463,'2005-08-21 12:51:49',1403,365,'2005-08-29 12:17:49',1,'2006-02-15 21:30:53'), - (14464,'2005-08-21 12:52:54',2310,121,'2005-08-25 16:42:54',1,'2006-02-15 21:30:53'), - (14465,'2005-08-21 12:54:22',4206,262,'2005-08-28 10:46:22',2,'2006-02-15 21:30:53'), - (14466,'2005-08-21 13:03:13',923,442,'2005-08-22 15:19:13',2,'2006-02-15 21:30:53'), - (14467,'2005-08-21 13:03:33',1498,522,'2005-08-28 15:28:33',1,'2006-02-15 21:30:53'), - (14468,'2005-08-21 13:07:10',4168,224,'2005-08-30 19:05:10',2,'2006-02-15 21:30:53'), - (14469,'2005-08-21 13:07:24',1957,554,'2005-08-24 10:37:24',1,'2006-02-15 21:30:53'), - (14470,'2005-08-21 13:09:41',3899,379,'2005-08-23 10:20:41',2,'2006-02-15 21:30:53'), - (14471,'2005-08-21 13:10:40',1254,395,'2005-08-26 16:49:40',1,'2006-02-15 21:30:53'), - (14472,'2005-08-21 13:13:57',4097,184,'2005-08-23 14:04:57',2,'2006-02-15 21:30:53'), - (14473,'2005-08-21 13:19:03',2747,298,'2005-08-23 15:12:03',1,'2006-02-15 21:30:53'), - (14474,'2005-08-21 13:22:48',2632,294,'2005-08-27 14:13:48',2,'2006-02-15 21:30:53'), - (14475,'2005-08-21 13:24:32',3164,2,'2005-08-27 08:59:32',2,'2006-02-15 21:30:53'), - (14476,'2005-08-21 13:31:07',2821,101,'2005-08-23 17:06:07',1,'2006-02-15 21:30:53'), - (14477,'2005-08-21 13:32:38',1564,126,'2005-08-25 18:02:38',2,'2006-02-15 21:30:53'), - (14478,'2005-08-21 13:33:28',2990,231,'2005-08-25 13:33:28',2,'2006-02-15 21:30:53'), - (14479,'2005-08-21 13:35:54',2235,324,'2005-08-29 12:12:54',2,'2006-02-15 21:30:53'), - (14480,'2005-08-21 13:36:40',229,411,'2005-08-26 08:39:40',1,'2006-02-15 21:30:53'), - (14481,'2005-08-21 13:41:14',4099,367,'2005-08-30 07:53:14',2,'2006-02-15 21:30:53'), - (14482,'2005-08-21 13:42:45',2765,23,'2005-08-27 11:55:45',1,'2006-02-15 21:30:53'), - (14483,'2005-08-21 13:43:59',37,275,'2005-08-28 16:38:59',2,'2006-02-15 21:30:53'), - (14484,'2005-08-21 13:47:29',3714,418,'2005-08-23 18:25:29',1,'2006-02-15 21:30:53'), - (14485,'2005-08-21 13:52:07',1637,241,'2005-08-30 13:06:07',2,'2006-02-15 21:30:53'), - (14486,'2005-08-21 13:52:54',3119,138,'2005-08-23 07:58:54',1,'2006-02-15 21:30:53'), - (14487,'2005-08-21 13:53:33',2578,526,'2005-08-29 19:32:33',1,'2006-02-15 21:30:53'), - (14488,'2006-02-14 15:16:03',4202,75,NULL,2,'2006-02-15 21:30:53'), - (14489,'2005-08-21 13:53:59',2312,9,'2005-08-30 15:45:59',2,'2006-02-15 21:30:53'), - (14490,'2005-08-21 13:54:15',1771,205,'2005-08-28 19:08:15',2,'2006-02-15 21:30:53'), - (14491,'2005-08-21 13:55:39',2072,226,'2005-08-29 17:51:39',1,'2006-02-15 21:30:53'), - (14492,'2005-08-21 13:59:08',1591,266,'2005-08-23 11:09:08',1,'2006-02-15 21:30:53'), - (14493,'2005-08-21 14:01:44',2590,389,'2005-08-28 17:20:44',1,'2006-02-15 21:30:53'), - (14494,'2005-08-21 14:02:50',169,5,'2005-08-22 16:45:50',2,'2006-02-15 21:30:53'), - (14495,'2005-08-21 14:04:39',3215,429,'2005-08-22 16:53:39',2,'2006-02-15 21:30:53'), - (14496,'2005-08-21 14:07:35',2185,223,'2005-08-24 12:31:35',1,'2006-02-15 21:30:53'), - (14497,'2005-08-21 14:09:47',3240,254,'2005-08-22 11:10:47',2,'2006-02-15 21:30:53'), - (14498,'2005-08-21 14:10:44',3971,544,'2005-08-23 08:29:44',1,'2006-02-15 21:30:53'), - (14499,'2005-08-21 14:11:19',4109,292,'2005-08-23 16:10:19',2,'2006-02-15 21:30:53'), - (14500,'2005-08-21 14:11:30',2024,451,'2005-08-27 12:19:30',1,'2006-02-15 21:30:53'), - (14501,'2005-08-21 14:14:38',3588,576,'2005-08-25 17:58:38',1,'2006-02-15 21:30:53'), - (14502,'2005-08-21 14:22:28',2986,378,'2005-08-23 10:40:28',1,'2006-02-15 21:30:53'), - (14503,'2006-02-14 15:16:03',2144,188,NULL,1,'2006-02-15 21:30:53'), - (14504,'2005-08-21 14:23:01',4536,312,'2005-08-27 13:56:01',1,'2006-02-15 21:30:53'), - (14505,'2005-08-21 14:26:28',2172,203,'2005-08-29 17:34:28',1,'2006-02-15 21:30:53'), - (14506,'2005-08-21 14:32:27',4493,537,'2005-08-24 19:02:27',2,'2006-02-15 21:30:53'), - (14507,'2005-08-21 14:32:45',1969,175,'2005-08-28 09:50:45',2,'2006-02-15 21:30:53'), - (14508,'2005-08-21 14:33:58',703,396,'2005-08-27 10:45:58',2,'2006-02-15 21:30:53'), - (14509,'2005-08-21 14:39:58',541,520,'2005-08-26 13:19:58',1,'2006-02-15 21:30:53'), - (14510,'2005-08-21 14:44:41',1868,547,'2005-08-30 20:19:41',1,'2006-02-15 21:30:53'), - (14511,'2005-08-21 14:45:34',4452,16,'2005-08-28 10:36:34',2,'2006-02-15 21:30:53'), - (14512,'2005-08-21 14:47:09',579,51,'2005-08-24 18:10:09',2,'2006-02-15 21:30:53'), - (14513,'2005-08-21 14:51:35',4265,185,'2005-08-24 13:24:35',2,'2006-02-15 21:30:53'), - (14514,'2005-08-21 14:51:52',1259,295,'2005-08-30 10:40:52',2,'2006-02-15 21:30:53'), - (14515,'2005-08-21 14:52:14',2215,242,'2005-08-27 10:27:14',1,'2006-02-15 21:30:53'), - (14516,'2006-02-14 15:16:03',713,457,NULL,2,'2006-02-15 21:30:53'), - (14517,'2005-08-21 14:57:03',3568,311,'2005-08-24 13:52:03',2,'2006-02-15 21:30:53'), - (14518,'2005-08-21 14:58:58',2734,82,'2005-08-24 13:19:58',2,'2006-02-15 21:30:53'), - (14519,'2005-08-21 14:59:29',1541,403,'2005-08-22 11:48:29',2,'2006-02-15 21:30:53'), - (14520,'2005-08-21 15:00:49',4533,150,'2005-08-30 19:04:49',1,'2006-02-15 21:30:53'), - (14521,'2005-08-21 15:01:32',1538,200,'2005-08-28 19:12:32',1,'2006-02-15 21:30:53'), - (14522,'2005-08-21 15:01:34',2101,535,'2005-08-25 16:37:34',1,'2006-02-15 21:30:53'), - (14523,'2005-08-21 15:03:45',345,433,'2005-08-22 18:06:45',2,'2006-02-15 21:30:53'), - (14524,'2005-08-21 15:05:27',4409,374,'2005-08-29 12:07:27',2,'2006-02-15 21:30:53'), - (14525,'2005-08-21 15:06:49',3020,420,'2005-08-22 16:30:49',1,'2006-02-15 21:30:53'), - (14526,'2006-02-14 15:16:03',1799,534,NULL,1,'2006-02-15 21:30:53'), - (14527,'2005-08-21 15:07:42',3496,232,'2005-08-23 12:31:42',1,'2006-02-15 21:30:53'), - (14528,'2005-08-21 15:08:05',4305,46,'2005-08-26 15:58:05',2,'2006-02-15 21:30:53'), - (14529,'2005-08-21 15:08:31',1774,380,'2005-08-29 17:15:31',1,'2006-02-15 21:30:53'), - (14530,'2005-08-21 15:10:50',1905,77,'2005-08-26 09:20:50',2,'2006-02-15 21:30:53'), - (14531,'2006-02-14 15:16:03',4296,568,NULL,2,'2006-02-15 21:30:53'), - (14532,'2005-08-21 15:15:03',2057,37,'2005-08-25 17:41:03',2,'2006-02-15 21:30:53'), - (14533,'2005-08-21 15:15:19',2202,586,'2005-08-26 12:47:19',1,'2006-02-15 21:30:53'), - (14534,'2005-08-21 15:16:29',2514,56,'2005-08-26 16:18:29',1,'2006-02-15 21:30:53'), - (14535,'2005-08-21 15:22:37',530,412,'2005-08-29 19:23:37',2,'2006-02-15 21:30:53'), - (14536,'2005-08-21 15:22:50',2615,48,'2005-08-27 17:03:50',1,'2006-02-15 21:30:53'), - (14537,'2005-08-21 15:24:24',3755,405,'2005-08-23 17:14:24',2,'2006-02-15 21:30:53'), - (14538,'2005-08-21 15:28:15',3348,471,'2005-08-22 19:55:15',2,'2006-02-15 21:30:53'), - (14539,'2005-08-21 15:29:47',3340,41,'2005-08-28 19:01:47',1,'2006-02-15 21:30:53'), - (14540,'2005-08-21 15:34:23',2362,28,'2005-08-27 11:51:23',2,'2006-02-15 21:30:53'), - (14541,'2005-08-21 15:34:32',1275,576,'2005-08-25 13:18:32',1,'2006-02-15 21:30:53'), - (14542,'2005-08-21 15:36:34',1247,101,'2005-08-27 20:24:34',2,'2006-02-15 21:30:53'), - (14543,'2005-08-21 15:39:01',709,579,'2005-08-28 09:47:01',1,'2006-02-15 21:30:53'), - (14544,'2005-08-21 15:41:01',2445,589,'2005-08-24 15:20:01',1,'2006-02-15 21:30:53'), - (14545,'2005-08-21 15:44:23',2459,13,'2005-08-29 20:09:23',2,'2006-02-15 21:30:53'), - (14546,'2005-08-21 15:50:50',1515,466,'2005-08-23 11:37:50',2,'2006-02-15 21:30:53'), - (14547,'2005-08-21 15:51:38',1172,265,'2005-08-26 15:35:38',1,'2006-02-15 21:30:53'), - (14548,'2005-08-21 15:53:52',226,299,'2005-08-25 15:39:52',2,'2006-02-15 21:30:53'), - (14549,'2005-08-21 15:54:21',4117,155,'2005-08-22 17:22:21',1,'2006-02-15 21:30:53'), - (14550,'2005-08-21 15:56:39',2814,473,'2005-08-23 21:40:39',1,'2006-02-15 21:30:53'), - (14551,'2005-08-21 15:57:25',496,521,'2005-08-28 11:10:25',2,'2006-02-15 21:30:53'), - (14552,'2005-08-21 15:59:27',1991,477,'2005-08-27 11:46:27',1,'2006-02-15 21:30:53'), - (14553,'2005-08-21 15:59:40',3160,434,'2005-08-23 11:54:40',2,'2006-02-15 21:30:53'), - (14554,'2005-08-21 16:03:01',31,38,'2005-08-26 13:09:01',2,'2006-02-15 21:30:53'), - (14555,'2005-08-21 16:03:02',1926,440,'2005-08-23 14:18:02',1,'2006-02-15 21:30:53'), - (14556,'2005-08-21 16:03:27',475,265,'2005-08-29 15:49:27',1,'2006-02-15 21:30:53'), - (14557,'2005-08-21 16:05:11',483,490,'2005-08-27 16:37:11',1,'2006-02-15 21:30:53'), - (14558,'2005-08-21 16:10:50',3958,273,'2005-08-28 16:36:50',2,'2006-02-15 21:30:53'), - (14559,'2005-08-21 16:11:35',3842,433,'2005-08-30 15:26:35',1,'2006-02-15 21:30:53'), - (14560,'2005-08-21 16:13:47',1616,579,'2005-08-26 15:19:47',1,'2006-02-15 21:30:53'), - (14561,'2005-08-21 16:20:43',2498,443,'2005-08-27 16:48:43',1,'2006-02-15 21:30:53'), - (14562,'2005-08-21 16:22:59',3501,107,'2005-08-22 21:15:59',1,'2006-02-15 21:30:53'), - (14563,'2005-08-21 16:23:53',3984,212,'2005-08-25 11:30:53',2,'2006-02-15 21:30:53'), - (14564,'2005-08-21 16:24:43',3250,22,'2005-08-26 16:58:43',1,'2006-02-15 21:30:53'), - (14565,'2005-08-21 16:24:45',4160,250,'2005-08-25 14:42:45',1,'2006-02-15 21:30:53'), - (14566,'2005-08-21 16:25:05',84,87,'2005-08-26 10:31:05',1,'2006-02-15 21:30:53'), - (14567,'2005-08-21 16:27:25',3805,214,'2005-08-26 10:47:25',1,'2006-02-15 21:30:53'), - (14568,'2005-08-21 16:30:48',3331,582,'2005-08-22 13:49:48',1,'2006-02-15 21:30:53'), - (14569,'2005-08-21 16:31:22',884,15,'2005-08-25 21:27:22',2,'2006-02-15 21:30:53'), - (14570,'2005-08-21 16:32:32',955,32,'2005-08-30 12:03:32',2,'2006-02-15 21:30:53'), - (14571,'2005-08-21 16:40:26',2218,296,'2005-08-29 17:10:26',1,'2006-02-15 21:30:53'), - (14572,'2005-08-21 16:44:31',1397,538,'2005-08-26 16:35:31',2,'2006-02-15 21:30:53'), - (14573,'2005-08-21 16:44:32',2423,240,'2005-08-23 14:01:32',2,'2006-02-15 21:30:53'), - (14574,'2005-08-21 16:50:34',1611,62,'2005-08-26 14:24:34',2,'2006-02-15 21:30:53'), - (14575,'2005-08-21 16:51:34',3752,159,'2005-08-30 20:13:34',2,'2006-02-15 21:30:53'), - (14576,'2005-08-21 16:52:03',1189,45,'2005-08-28 19:43:03',2,'2006-02-15 21:30:53'), - (14577,'2005-08-21 16:52:29',1965,126,'2005-08-26 12:30:29',1,'2006-02-15 21:30:53'), - (14578,'2005-08-21 16:53:38',3141,389,'2005-08-28 20:36:38',2,'2006-02-15 21:30:53'), - (14579,'2005-08-21 16:54:47',1205,260,'2005-08-28 12:35:47',1,'2006-02-15 21:30:53'), - (14580,'2005-08-21 16:56:39',1440,448,'2005-08-28 15:25:39',1,'2006-02-15 21:30:53'), - (14581,'2005-08-21 17:07:08',751,243,'2005-08-26 16:02:08',1,'2006-02-15 21:30:53'), - (14582,'2005-08-21 17:08:33',1004,438,'2005-08-29 18:04:33',2,'2006-02-15 21:30:53'), - (14583,'2005-08-21 17:11:47',1203,455,'2005-08-24 16:16:47',2,'2006-02-15 21:30:53'), - (14584,'2005-08-21 17:15:33',2617,481,'2005-08-24 20:24:33',2,'2006-02-15 21:30:53'), - (14585,'2005-08-21 17:18:33',82,30,'2005-08-26 11:36:33',1,'2006-02-15 21:30:53'), - (14586,'2005-08-21 17:19:09',3094,182,'2005-08-26 17:00:09',1,'2006-02-15 21:30:53'), - (14587,'2005-08-21 17:20:55',2329,250,'2005-08-26 17:17:55',1,'2006-02-15 21:30:53'), - (14588,'2005-08-21 17:25:53',1350,219,'2005-08-28 21:47:53',2,'2006-02-15 21:30:53'), - (14589,'2005-08-21 17:28:55',2810,179,'2005-08-22 23:06:55',1,'2006-02-15 21:30:53'), - (14590,'2005-08-21 17:29:10',2633,526,'2005-08-28 20:15:10',1,'2006-02-15 21:30:53'), - (14591,'2005-08-21 17:30:09',3410,538,'2005-08-24 12:27:09',1,'2006-02-15 21:30:53'), - (14592,'2005-08-21 17:30:17',2681,563,'2005-08-22 20:06:17',2,'2006-02-15 21:30:53'), - (14593,'2005-08-21 17:33:18',1399,564,'2005-08-24 22:11:18',1,'2006-02-15 21:30:53'), - (14594,'2005-08-21 17:34:24',2978,62,'2005-08-26 22:04:24',2,'2006-02-15 21:30:53'), - (14595,'2005-08-21 17:35:17',1879,118,'2005-08-27 12:11:17',1,'2006-02-15 21:30:53'), - (14596,'2005-08-21 17:38:37',2010,472,'2005-08-30 20:28:37',1,'2006-02-15 21:30:53'), - (14597,'2005-08-21 17:39:41',1160,472,'2005-08-25 14:07:41',1,'2006-02-15 21:30:53'), - (14598,'2005-08-21 17:40:05',1113,359,'2005-08-29 18:16:05',2,'2006-02-15 21:30:53'), - (14599,'2005-08-21 17:43:42',4575,599,'2005-08-22 18:53:42',1,'2006-02-15 21:30:53'), - (14600,'2005-08-21 17:45:21',3532,255,'2005-08-28 19:03:21',1,'2006-02-15 21:30:53'), - (14601,'2005-08-21 17:45:52',548,406,'2005-08-29 15:10:52',1,'2006-02-15 21:30:53'), - (14602,'2005-08-21 17:48:49',3771,370,'2005-08-28 21:38:49',1,'2006-02-15 21:30:53'), - (14603,'2005-08-21 17:51:06',94,26,'2005-08-28 15:36:06',1,'2006-02-15 21:30:53'), - (14604,'2006-02-14 15:16:03',1024,585,NULL,2,'2006-02-15 21:30:53'), - (14605,'2005-08-21 17:56:06',476,394,'2005-08-24 18:35:06',1,'2006-02-15 21:30:53'), - (14606,'2006-02-14 15:16:03',2291,592,NULL,2,'2006-02-15 21:30:53'), - (14607,'2005-08-21 17:56:50',4518,417,'2005-08-22 17:44:50',2,'2006-02-15 21:30:53'), - (14608,'2005-08-21 17:57:22',3321,90,'2005-08-25 13:20:22',1,'2006-02-15 21:30:53'), - (14609,'2005-08-21 17:57:26',1206,551,'2005-08-25 14:04:26',2,'2006-02-15 21:30:53'), - (14610,'2005-08-21 17:59:09',1894,260,'2005-08-29 21:36:09',2,'2006-02-15 21:30:53'), - (14611,'2005-08-21 18:01:41',4078,443,'2005-08-26 12:34:41',1,'2006-02-15 21:30:53'), - (14612,'2005-08-21 18:03:15',4105,445,'2005-08-27 13:39:15',1,'2006-02-15 21:30:53'), - (14613,'2005-08-21 18:03:20',3841,20,'2005-08-26 19:46:20',1,'2006-02-15 21:30:53'), - (14614,'2005-08-21 18:03:51',3053,468,'2005-08-30 13:37:51',1,'2006-02-15 21:30:53'), - (14615,'2005-08-21 18:06:32',2332,171,'2005-08-30 13:19:32',2,'2006-02-15 21:30:53'), - (14616,'2006-02-14 15:16:03',4537,532,NULL,1,'2006-02-15 21:30:53'), - (14617,'2005-08-21 18:07:40',3562,51,'2005-08-24 23:48:40',2,'2006-02-15 21:30:53'), - (14618,'2005-08-21 18:09:51',4490,270,'2005-08-28 22:47:51',1,'2006-02-15 21:30:53'), - (14619,'2005-08-21 18:10:03',1589,338,'2005-08-23 13:40:03',2,'2006-02-15 21:30:53'), - (14620,'2005-08-21 18:10:43',3272,78,'2005-08-22 15:19:43',2,'2006-02-15 21:30:53'), - (14621,'2005-08-21 18:17:59',3622,344,'2005-08-23 14:16:59',1,'2006-02-15 21:30:53'), - (14622,'2005-08-21 18:25:59',2702,559,'2005-08-31 00:11:59',2,'2006-02-15 21:30:53'), - (14623,'2005-08-21 18:29:13',901,33,'2005-08-26 20:48:13',2,'2006-02-15 21:30:53'), - (14624,'2005-08-21 18:32:42',4,344,'2005-08-23 21:09:42',1,'2006-02-15 21:30:53'), - (14625,'2005-08-21 18:34:21',2661,507,'2005-08-29 21:41:21',1,'2006-02-15 21:30:53'), - (14626,'2005-08-21 18:35:44',1038,554,'2005-08-25 23:54:44',2,'2006-02-15 21:30:53'), - (14627,'2005-08-21 18:35:54',2470,49,'2005-08-30 21:17:54',1,'2006-02-15 21:30:53'), - (14628,'2005-08-21 18:37:24',3636,331,'2005-08-27 20:25:24',2,'2006-02-15 21:30:53'), - (14629,'2005-08-21 18:39:52',761,148,'2005-08-25 19:14:52',2,'2006-02-15 21:30:53'), - (14630,'2005-08-21 18:43:44',4049,294,'2005-08-29 17:08:44',2,'2006-02-15 21:30:53'), - (14631,'2005-08-21 18:47:49',782,209,'2005-08-28 16:54:49',1,'2006-02-15 21:30:53'), - (14632,'2005-08-21 18:48:06',2807,38,'2005-08-25 00:33:06',2,'2006-02-15 21:30:53'), - (14633,'2005-08-21 18:51:10',2137,551,'2005-08-25 13:07:10',1,'2006-02-15 21:30:53'), - (14634,'2005-08-21 18:51:28',486,494,'2005-08-29 19:30:28',2,'2006-02-15 21:30:53'), - (14635,'2005-08-21 18:51:43',2171,108,'2005-08-27 16:30:43',2,'2006-02-15 21:30:53'), - (14636,'2005-08-21 18:59:17',1671,339,'2005-08-23 13:19:17',2,'2006-02-15 21:30:53'), - (14637,'2005-08-21 19:01:00',1846,76,'2005-08-26 23:03:00',2,'2006-02-15 21:30:53'), - (14638,'2005-08-21 19:01:36',3583,216,'2005-08-22 15:09:36',2,'2006-02-15 21:30:53'), - (14639,'2005-08-21 19:01:39',3510,210,'2005-08-26 14:08:39',1,'2006-02-15 21:30:53'), - (14640,'2005-08-21 19:03:19',1880,253,'2005-08-27 00:37:19',2,'2006-02-15 21:30:53'), - (14641,'2005-08-21 19:05:23',2205,147,'2005-08-22 22:30:23',2,'2006-02-15 21:30:53'), - (14642,'2005-08-21 19:09:40',1280,81,'2005-08-30 13:25:40',2,'2006-02-15 21:30:53'), - (14643,'2005-08-21 19:11:58',798,119,'2005-08-29 19:52:58',1,'2006-02-15 21:30:53'), - (14644,'2005-08-21 19:12:12',3905,453,'2005-08-29 17:08:12',1,'2006-02-15 21:30:53'), - (14645,'2005-08-21 19:12:47',2369,334,'2005-08-25 21:42:47',1,'2006-02-15 21:30:53'), - (14646,'2005-08-21 19:14:48',948,186,'2005-08-23 17:15:48',1,'2006-02-15 21:30:53'), - (14647,'2005-08-21 19:15:33',3854,36,'2005-08-30 18:58:33',2,'2006-02-15 21:30:53'), - (14648,'2005-08-21 19:18:01',2250,284,'2005-08-25 14:59:01',2,'2006-02-15 21:30:53'), - (14649,'2005-08-21 19:19:21',4074,43,'2005-08-22 17:23:21',1,'2006-02-15 21:30:53'), - (14650,'2005-08-21 19:24:51',1274,190,'2005-08-25 13:58:51',2,'2006-02-15 21:30:53'), - (14651,'2005-08-21 19:31:09',4037,544,'2005-08-28 14:26:09',2,'2006-02-15 21:30:53'), - (14652,'2005-08-21 19:32:05',4163,453,'2005-08-23 23:33:05',2,'2006-02-15 21:30:53'), - (14653,'2005-08-21 19:35:59',491,593,'2005-08-24 15:31:59',1,'2006-02-15 21:30:53'), - (14654,'2005-08-21 19:36:59',687,173,'2005-08-23 22:03:59',2,'2006-02-15 21:30:53'), - (14655,'2005-08-21 19:37:10',785,253,'2005-08-22 15:43:10',1,'2006-02-15 21:30:53'), - (14656,'2005-08-21 19:39:28',4205,201,'2005-08-24 01:36:28',2,'2006-02-15 21:30:53'), - (14657,'2005-08-21 19:39:43',477,244,'2005-08-26 22:39:43',2,'2006-02-15 21:30:53'), - (14658,'2005-08-21 19:41:50',1465,473,'2005-08-25 16:11:50',1,'2006-02-15 21:30:53'), - (14659,'2005-08-21 19:42:36',928,119,'2005-08-26 14:06:36',1,'2006-02-15 21:30:53'), - (14660,'2005-08-21 19:43:21',3433,452,'2005-08-22 20:42:21',1,'2006-02-15 21:30:53'), - (14661,'2005-08-21 19:44:21',745,469,'2005-08-27 14:35:21',1,'2006-02-15 21:30:53'), - (14662,'2005-08-21 19:45:27',2969,403,'2005-08-23 14:44:27',2,'2006-02-15 21:30:53'), - (14663,'2005-08-21 19:47:55',2351,150,'2005-08-27 17:36:55',2,'2006-02-15 21:30:53'), - (14664,'2005-08-21 19:48:47',4377,153,'2005-08-27 16:47:47',1,'2006-02-15 21:30:53'), - (14665,'2005-08-21 19:49:46',2896,58,'2005-08-30 18:00:46',1,'2006-02-15 21:30:53'), - (14666,'2005-08-21 19:51:09',2560,122,'2005-08-30 22:42:09',2,'2006-02-15 21:30:53'), - (14667,'2005-08-21 19:51:11',2608,55,'2005-08-23 17:37:11',1,'2006-02-15 21:30:53'), - (14668,'2005-08-21 19:51:30',1450,152,'2005-08-29 19:38:30',2,'2006-02-15 21:30:53'), - (14669,'2005-08-21 19:54:06',3154,317,'2005-08-25 23:12:06',1,'2006-02-15 21:30:53'), - (14670,'2005-08-21 19:54:11',4324,537,'2005-08-27 21:42:11',2,'2006-02-15 21:30:53'), - (14671,'2005-08-21 19:59:30',2622,53,'2005-08-22 19:39:30',1,'2006-02-15 21:30:53'), - (14672,'2005-08-21 19:59:33',4144,325,'2005-08-30 19:40:33',1,'2006-02-15 21:30:53'), - (14673,'2005-08-21 20:01:18',1827,445,'2005-08-25 18:55:18',1,'2006-02-15 21:30:53'), - (14674,'2005-08-21 20:01:34',572,300,'2005-08-27 18:33:34',1,'2006-02-15 21:30:53'), - (14675,'2005-08-21 20:01:51',328,170,'2005-08-26 14:30:51',2,'2006-02-15 21:30:53'), - (14676,'2005-08-21 20:02:18',877,49,'2005-08-26 21:55:18',1,'2006-02-15 21:30:53'), - (14677,'2005-08-21 20:12:30',4411,26,'2005-08-28 15:11:30',1,'2006-02-15 21:30:53'), - (14678,'2005-08-21 20:12:43',1911,383,'2005-08-31 02:11:43',2,'2006-02-15 21:30:53'), - (14679,'2005-08-21 20:14:58',1520,193,'2005-08-23 23:39:58',1,'2006-02-15 21:30:53'), - (14680,'2005-08-21 20:19:52',4469,524,'2005-08-28 17:10:52',1,'2006-02-15 21:30:53'), - (14681,'2005-08-21 20:25:13',1083,212,'2005-08-30 19:48:13',1,'2006-02-15 21:30:53'), - (14682,'2005-08-21 20:25:57',2974,314,'2005-08-28 00:42:57',2,'2006-02-15 21:30:53'), - (14683,'2005-08-21 20:27:44',3850,342,'2005-08-29 16:54:44',1,'2006-02-15 21:30:53'), - (14684,'2005-08-21 20:28:26',3593,369,'2005-08-28 19:01:26',2,'2006-02-15 21:30:53'), - (14685,'2005-08-21 20:31:25',1320,69,'2005-08-22 21:02:25',1,'2006-02-15 21:30:53'), - (14686,'2005-08-21 20:32:08',814,34,'2005-08-26 18:07:08',1,'2006-02-15 21:30:53'), - (14687,'2005-08-21 20:32:16',306,550,'2005-08-26 16:17:16',2,'2006-02-15 21:30:53'), - (14688,'2005-08-21 20:32:37',2573,219,'2005-08-27 00:06:37',2,'2006-02-15 21:30:53'), - (14689,'2005-08-21 20:33:00',1124,463,'2005-08-22 18:10:00',1,'2006-02-15 21:30:53'), - (14690,'2005-08-21 20:42:25',3649,456,'2005-08-29 18:42:25',2,'2006-02-15 21:30:53'), - (14691,'2005-08-21 20:42:29',2131,404,'2005-08-24 01:22:29',1,'2006-02-15 21:30:53'), - (14692,'2005-08-21 20:43:21',1908,192,'2005-08-28 19:02:21',1,'2006-02-15 21:30:53'), - (14693,'2005-08-21 20:44:19',3454,269,'2005-08-29 00:37:19',2,'2006-02-15 21:30:53'), - (14694,'2005-08-21 20:46:42',2767,363,'2005-08-23 16:18:42',1,'2006-02-15 21:30:53'), - (14695,'2005-08-21 20:46:47',412,206,'2005-08-22 22:25:47',2,'2006-02-15 21:30:53'), - (14696,'2005-08-21 20:48:05',3776,435,'2005-08-25 14:55:05',1,'2006-02-15 21:30:53'), - (14697,'2005-08-21 20:49:21',48,409,'2005-08-26 01:39:21',2,'2006-02-15 21:30:53'), - (14698,'2005-08-21 20:49:58',4255,196,'2005-08-29 20:13:58',2,'2006-02-15 21:30:53'), - (14699,'2005-08-21 20:50:48',1427,3,'2005-08-29 18:08:48',2,'2006-02-15 21:30:53'), - (14700,'2005-08-21 20:53:40',3446,360,'2005-08-23 22:01:40',1,'2006-02-15 21:30:53'), - (14701,'2005-08-21 20:54:32',3034,34,'2005-08-30 16:46:32',1,'2006-02-15 21:30:53'), - (14702,'2005-08-21 21:00:03',4096,345,'2005-08-30 16:59:03',1,'2006-02-15 21:30:53'), - (14703,'2005-08-21 21:01:19',4329,29,'2005-08-22 15:13:19',2,'2006-02-15 21:30:53'), - (14704,'2005-08-21 21:02:22',4062,248,'2005-08-27 23:10:22',2,'2006-02-15 21:30:53'), - (14705,'2005-08-21 21:02:55',2493,243,'2005-08-25 20:20:55',2,'2006-02-15 21:30:53'), - (14706,'2005-08-21 21:04:42',4494,589,'2005-08-22 19:55:42',2,'2006-02-15 21:30:53'), - (14707,'2005-08-21 21:06:29',2916,530,'2005-08-30 23:37:29',1,'2006-02-15 21:30:53'), - (14708,'2005-08-21 21:07:23',2828,226,'2005-08-28 15:47:23',1,'2006-02-15 21:30:53'), - (14709,'2005-08-21 21:07:59',1856,300,'2005-08-31 02:19:59',1,'2006-02-15 21:30:53'), - (14710,'2005-08-21 21:15:23',1922,587,'2005-08-30 19:45:23',1,'2006-02-15 21:30:53'), - (14711,'2005-08-21 21:22:07',1973,448,'2005-08-30 16:24:07',2,'2006-02-15 21:30:53'), - (14712,'2005-08-21 21:22:56',1198,226,'2005-08-25 01:53:56',1,'2006-02-15 21:30:53'), - (14713,'2005-08-21 21:27:24',3350,148,'2005-08-23 20:26:24',1,'2006-02-15 21:30:53'), - (14714,'2005-08-21 21:27:43',1,279,'2005-08-30 22:26:43',1,'2006-02-15 21:30:53'), - (14715,'2005-08-21 21:28:18',4453,287,'2005-08-26 22:13:18',2,'2006-02-15 21:30:53'), - (14716,'2005-08-21 21:29:55',2285,78,'2005-08-23 18:34:55',2,'2006-02-15 21:30:53'), - (14717,'2005-08-21 21:30:39',3839,366,'2005-08-26 16:58:39',2,'2006-02-15 21:30:53'), - (14718,'2005-08-21 21:39:25',3618,340,'2005-08-26 22:07:25',2,'2006-02-15 21:30:53'), - (14719,'2005-08-21 21:41:57',4091,599,'2005-08-25 20:37:57',1,'2006-02-15 21:30:53'), - (14720,'2005-08-21 21:43:53',3617,395,'2005-08-25 18:21:53',1,'2006-02-15 21:30:53'), - (14721,'2005-08-21 21:50:51',4257,349,'2005-08-30 19:21:51',1,'2006-02-15 21:30:53'), - (14722,'2005-08-21 21:50:53',2930,236,'2005-08-30 03:13:53',1,'2006-02-15 21:30:53'), - (14723,'2005-08-21 21:52:32',2755,548,'2005-08-31 00:03:32',2,'2006-02-15 21:30:53'), - (14724,'2005-08-21 21:53:47',3559,552,'2005-08-23 20:14:47',2,'2006-02-15 21:30:53'), - (14725,'2005-08-21 22:02:08',4427,403,'2005-08-23 03:59:08',2,'2006-02-15 21:30:53'), - (14726,'2005-08-21 22:08:52',4556,216,'2005-08-22 18:28:52',1,'2006-02-15 21:30:53'), - (14727,'2005-08-21 22:12:45',650,275,'2005-08-25 00:46:45',1,'2006-02-15 21:30:53'), - (14728,'2005-08-21 22:15:36',2671,474,'2005-08-25 17:14:36',2,'2006-02-15 21:30:53'), - (14729,'2005-08-21 22:16:57',2483,289,'2005-08-27 21:32:57',1,'2006-02-15 21:30:53'), - (14730,'2005-08-21 22:21:11',2949,439,'2005-08-30 03:02:11',1,'2006-02-15 21:30:53'), - (14731,'2005-08-21 22:21:49',1351,154,'2005-08-24 16:27:49',1,'2006-02-15 21:30:53'), - (14732,'2005-08-21 22:22:29',1915,482,'2005-08-23 18:34:29',1,'2006-02-15 21:30:53'), - (14733,'2005-08-21 22:22:33',398,408,'2005-08-26 21:01:33',1,'2006-02-15 21:30:53'), - (14734,'2006-02-14 15:16:03',1369,448,NULL,2,'2006-02-15 21:30:53'), - (14735,'2005-08-21 22:25:09',950,35,'2005-08-23 21:16:09',1,'2006-02-15 21:30:53'), - (14736,'2005-08-21 22:25:53',207,139,'2005-08-25 19:01:53',2,'2006-02-15 21:30:53'), - (14737,'2005-08-21 22:27:11',1842,124,'2005-08-25 18:51:11',2,'2006-02-15 21:30:53'), - (14738,'2005-08-21 22:29:13',3315,521,'2005-08-29 21:19:13',1,'2006-02-15 21:30:53'), - (14739,'2005-08-21 22:33:22',4026,226,'2005-08-22 19:45:22',1,'2006-02-15 21:30:53'), - (14740,'2005-08-21 22:35:33',1717,333,'2005-08-26 17:49:33',1,'2006-02-15 21:30:53'), - (14741,'2006-02-14 15:16:03',612,60,NULL,2,'2006-02-15 21:30:53'), - (14742,'2005-08-21 22:39:01',2988,421,'2005-08-26 00:17:01',1,'2006-02-15 21:30:53'), - (14743,'2005-08-21 22:41:56',4570,2,'2005-08-29 00:18:56',1,'2006-02-15 21:30:53'), - (14744,'2005-08-21 22:45:21',800,213,'2005-08-29 23:57:21',1,'2006-02-15 21:30:53'), - (14745,'2005-08-21 22:53:01',4399,277,'2005-08-23 23:22:01',1,'2006-02-15 21:30:53'), - (14746,'2005-08-21 22:54:02',3197,284,'2005-08-27 17:04:02',2,'2006-02-15 21:30:53'), - (14747,'2005-08-21 23:00:02',201,153,'2005-08-26 18:58:02',2,'2006-02-15 21:30:53'), - (14748,'2005-08-21 23:02:02',1697,81,'2005-08-28 05:01:02',2,'2006-02-15 21:30:53'), - (14749,'2005-08-21 23:08:33',831,235,'2005-08-29 20:46:33',2,'2006-02-15 21:30:53'), - (14750,'2005-08-21 23:09:32',918,303,'2005-08-30 00:46:32',2,'2006-02-15 21:30:53'), - (14751,'2005-08-21 23:11:23',1156,195,'2005-08-30 20:01:23',2,'2006-02-15 21:30:53'), - (14752,'2005-08-21 23:11:42',1252,362,'2005-08-28 22:12:42',1,'2006-02-15 21:30:53'), - (14753,'2005-08-21 23:11:43',1803,155,'2005-08-22 22:25:43',2,'2006-02-15 21:30:53'), - (14754,'2005-08-21 23:17:26',2355,137,'2005-08-29 18:55:26',2,'2006-02-15 21:30:53'), - (14755,'2005-08-21 23:18:08',862,328,'2005-08-27 01:06:08',2,'2006-02-15 21:30:53'), - (14756,'2005-08-21 23:21:23',564,288,'2005-08-24 01:44:23',1,'2006-02-15 21:30:53'), - (14757,'2005-08-21 23:23:37',1154,473,'2005-08-26 23:24:37',2,'2006-02-15 21:30:53'), - (14758,'2005-08-21 23:24:52',2372,339,'2005-08-27 04:25:52',2,'2006-02-15 21:30:53'), - (14759,'2005-08-21 23:28:58',3871,362,'2005-08-31 00:35:58',2,'2006-02-15 21:30:53'), - (14760,'2006-02-14 15:16:03',1367,355,NULL,1,'2006-02-15 21:30:53'), - (14761,'2005-08-21 23:30:28',2657,490,'2005-08-26 03:26:28',1,'2006-02-15 21:30:53'), - (14762,'2005-08-21 23:33:57',4249,1,'2005-08-23 01:30:57',1,'2006-02-15 21:30:53'), - (14763,'2005-08-21 23:34:00',1480,116,'2005-08-31 03:58:00',2,'2006-02-15 21:30:53'), - (14764,'2005-08-21 23:37:47',1270,529,'2005-08-24 00:23:47',2,'2006-02-15 21:30:53'), - (14765,'2005-08-21 23:40:28',2817,435,'2005-08-25 04:55:28',2,'2006-02-15 21:30:53'), - (14766,'2005-08-21 23:42:20',768,523,'2005-08-26 03:46:20',1,'2006-02-15 21:30:53'), - (14767,'2005-08-21 23:43:00',1232,69,'2005-08-29 05:26:00',1,'2006-02-15 21:30:53'), - (14768,'2005-08-21 23:44:53',3465,570,'2005-08-27 20:33:53',1,'2006-02-15 21:30:53'), - (14769,'2006-02-14 15:16:03',1800,361,NULL,1,'2006-02-15 21:30:53'), - (14770,'2005-08-21 23:47:16',2977,372,'2005-08-25 04:48:16',1,'2006-02-15 21:30:53'), - (14771,'2005-08-21 23:50:15',2665,149,'2005-08-28 22:55:15',2,'2006-02-15 21:30:53'), - (14772,'2005-08-21 23:50:39',4047,411,'2005-08-30 20:44:39',2,'2006-02-15 21:30:53'), - (14773,'2005-08-21 23:50:57',2541,413,'2005-08-26 04:45:57',2,'2006-02-15 21:30:53'), - (14774,'2005-08-21 23:52:32',3185,252,'2005-08-26 23:42:32',2,'2006-02-15 21:30:53'), - (14775,'2005-08-21 23:53:07',4044,400,'2005-08-22 18:07:07',2,'2006-02-15 21:30:53'), - (14776,'2005-08-21 23:53:35',3488,15,'2005-08-24 02:00:35',2,'2006-02-15 21:30:53'), - (14777,'2005-08-21 23:55:50',237,389,'2005-08-28 04:31:50',1,'2006-02-15 21:30:53'), - (14778,'2005-08-21 23:56:30',2152,396,'2005-08-26 00:07:30',2,'2006-02-15 21:30:53'), - (14779,'2005-08-22 00:00:56',1087,279,'2005-08-31 00:01:56',2,'2006-02-15 21:30:53'), - (14780,'2005-08-22 00:06:33',3171,491,'2005-08-22 22:02:33',2,'2006-02-15 21:30:53'), - (14781,'2005-08-22 00:15:12',3458,71,'2005-08-29 21:02:12',1,'2006-02-15 21:30:53'), - (14782,'2005-08-22 00:17:20',1727,211,'2005-08-23 01:24:20',1,'2006-02-15 21:30:53'), - (14783,'2005-08-22 00:21:57',3419,332,'2005-08-28 01:27:57',2,'2006-02-15 21:30:53'), - (14784,'2005-08-22 00:23:13',441,117,'2005-08-28 03:42:13',1,'2006-02-15 21:30:53'), - (14785,'2005-08-22 00:24:37',1981,560,'2005-08-25 04:15:37',1,'2006-02-15 21:30:53'), - (14786,'2005-08-22 00:24:42',2959,370,'2005-08-25 19:36:42',1,'2006-02-15 21:30:53'), - (14787,'2005-08-22 00:25:59',2634,38,'2005-08-28 22:30:59',2,'2006-02-15 21:30:53'), - (14788,'2005-08-22 00:27:59',1917,139,'2005-08-29 23:54:59',2,'2006-02-15 21:30:53'), - (14789,'2005-08-22 00:29:39',2344,279,'2005-08-25 02:25:39',1,'2006-02-15 21:30:53'), - (14790,'2005-08-22 00:34:17',1002,397,'2005-08-31 02:27:17',1,'2006-02-15 21:30:53'), - (14791,'2005-08-22 00:35:55',1490,317,'2005-08-30 20:23:55',1,'2006-02-15 21:30:53'), - (14792,'2005-08-22 00:36:41',4436,396,'2005-08-30 18:58:41',1,'2006-02-15 21:30:53'), - (14793,'2005-08-22 00:37:57',4285,154,'2005-08-29 05:44:57',2,'2006-02-15 21:30:53'), - (14794,'2005-08-22 00:39:31',413,156,'2005-08-28 20:08:31',2,'2006-02-15 21:30:53'), - (14795,'2005-08-22 00:40:22',1695,303,'2005-08-26 01:37:22',1,'2006-02-15 21:30:53'), - (14796,'2005-08-22 00:40:49',941,441,'2005-08-30 03:59:49',1,'2006-02-15 21:30:53'), - (14797,'2005-08-22 00:41:24',1131,546,'2005-08-23 18:51:24',1,'2006-02-15 21:30:53'), - (14798,'2005-08-22 00:44:08',7,92,'2005-08-27 02:18:08',2,'2006-02-15 21:30:53'), - (14799,'2005-08-22 00:44:57',1276,454,'2005-08-24 20:08:57',2,'2006-02-15 21:30:53'), - (14800,'2005-08-22 00:46:18',3554,533,'2005-08-26 01:44:18',2,'2006-02-15 21:30:53'), - (14801,'2005-08-22 00:46:54',1677,184,'2005-08-30 19:03:54',1,'2006-02-15 21:30:53'), - (14802,'2005-08-22 00:48:23',707,505,'2005-08-28 01:02:23',1,'2006-02-15 21:30:53'), - (14803,'2005-08-22 00:49:10',2525,278,'2005-08-22 23:44:10',2,'2006-02-15 21:30:53'), - (14804,'2005-08-22 00:51:25',372,94,'2005-08-26 21:15:25',1,'2006-02-15 21:30:53'), - (14805,'2005-08-22 00:52:01',783,169,'2005-08-23 03:28:01',2,'2006-02-15 21:30:53'), - (14806,'2005-08-22 00:53:08',2049,231,'2005-08-23 06:26:08',2,'2006-02-15 21:30:53'), - (14807,'2005-08-22 00:57:43',335,90,'2005-08-26 23:40:43',1,'2006-02-15 21:30:53'), - (14808,'2005-08-22 00:58:35',1657,362,'2005-08-29 20:16:35',2,'2006-02-15 21:30:53'), - (14809,'2005-08-22 01:00:42',1077,188,'2005-08-29 19:55:42',1,'2006-02-15 21:30:53'), - (14810,'2005-08-22 01:08:34',1982,78,'2005-08-25 07:00:34',2,'2006-02-15 21:30:53'), - (14811,'2005-08-22 01:09:04',1613,53,'2005-08-26 19:30:04',1,'2006-02-15 21:30:53'), - (14812,'2005-08-22 01:10:32',4282,211,'2005-08-26 05:21:32',1,'2006-02-15 21:30:53'), - (14813,'2005-08-22 01:11:37',3364,142,'2005-08-24 05:57:37',2,'2006-02-15 21:30:53'), - (14814,'2005-08-22 01:12:14',3109,250,'2005-08-27 23:24:14',2,'2006-02-15 21:30:53'), - (14815,'2005-08-22 01:12:44',1183,314,'2005-08-24 01:42:44',2,'2006-02-15 21:30:53'), - (14816,'2005-08-22 01:15:51',4086,534,'2005-08-28 04:11:51',1,'2006-02-15 21:30:53'), - (14817,'2005-08-22 01:17:16',910,215,'2005-08-27 02:43:16',1,'2006-02-15 21:30:53'), - (14818,'2005-08-22 01:17:18',1619,580,'2005-08-26 05:40:18',1,'2006-02-15 21:30:53'), - (14819,'2005-08-22 01:17:19',2890,410,'2005-08-30 05:54:19',1,'2006-02-15 21:30:53'), - (14820,'2005-08-22 01:18:37',1409,52,'2005-08-23 19:44:37',1,'2006-02-15 21:30:53'), - (14821,'2005-08-22 01:20:19',3155,62,'2005-08-29 03:06:19',2,'2006-02-15 21:30:53'), - (14822,'2005-08-22 01:21:14',2835,52,'2005-08-30 03:59:14',1,'2006-02-15 21:30:53'), - (14823,'2005-08-22 01:24:42',680,503,'2005-08-22 19:45:42',2,'2006-02-15 21:30:53'), - (14824,'2005-08-22 01:27:51',4162,594,'2005-08-23 03:24:51',2,'2006-02-15 21:30:53'), - (14825,'2005-08-22 01:27:57',1449,1,'2005-08-27 07:01:57',2,'2006-02-15 21:30:53'), - (14826,'2005-08-22 01:32:14',4023,426,'2005-08-23 03:52:14',2,'2006-02-15 21:30:53'), - (14827,'2005-08-22 01:32:32',2267,88,'2005-08-31 06:21:32',2,'2006-02-15 21:30:53'), - (14828,'2005-08-22 01:34:05',4114,319,'2005-08-27 06:27:05',2,'2006-02-15 21:30:53'), - (14829,'2005-08-22 01:35:37',3606,546,'2005-08-23 19:55:37',2,'2006-02-15 21:30:53'), - (14830,'2005-08-22 01:37:19',637,590,'2005-08-27 20:10:19',1,'2006-02-15 21:30:53'), - (14831,'2005-08-22 01:40:49',3370,156,'2005-08-23 02:47:49',1,'2006-02-15 21:30:53'), - (14832,'2005-08-22 01:43:29',1828,494,'2005-08-29 07:19:29',2,'2006-02-15 21:30:53'), - (14833,'2005-08-22 01:45:18',1960,551,'2005-08-28 21:24:18',1,'2006-02-15 21:30:53'), - (14834,'2005-08-22 01:45:58',3105,262,'2005-08-28 20:52:58',1,'2006-02-15 21:30:53'), - (14835,'2005-08-22 01:49:07',755,404,'2005-08-30 04:28:07',1,'2006-02-15 21:30:53'), - (14836,'2005-08-22 01:52:26',4287,418,'2005-08-22 23:39:26',1,'2006-02-15 21:30:53'), - (14837,'2005-08-22 01:54:52',2251,43,'2005-08-29 02:24:52',1,'2006-02-15 21:30:53'), - (14838,'2005-08-22 01:57:34',506,404,'2005-08-25 06:34:34',1,'2006-02-15 21:30:53'), - (14839,'2005-08-22 01:58:15',3440,567,'2005-08-24 05:24:15',2,'2006-02-15 21:30:53'), - (14840,'2005-08-22 01:58:42',1240,354,'2005-08-29 22:32:42',2,'2006-02-15 21:30:53'), - (14841,'2005-08-22 02:03:30',4017,384,'2005-08-28 02:08:30',2,'2006-02-15 21:30:53'), - (14842,'2005-08-22 02:04:38',2511,467,'2005-08-30 06:46:38',2,'2006-02-15 21:30:53'), - (14843,'2005-08-22 02:05:25',3000,454,'2005-08-28 22:11:25',1,'2006-02-15 21:30:53'), - (14844,'2005-08-22 02:09:12',145,513,'2005-08-31 05:43:12',1,'2006-02-15 21:30:53'), - (14845,'2005-08-22 02:12:44',69,292,'2005-08-24 02:36:44',2,'2006-02-15 21:30:53'), - (14846,'2005-08-22 02:13:48',3840,309,'2005-08-30 05:39:48',1,'2006-02-15 21:30:53'), - (14847,'2005-08-22 02:13:51',2995,327,'2005-08-29 03:42:51',2,'2006-02-15 21:30:53'), - (14848,'2005-08-22 02:14:19',395,218,'2005-08-26 02:54:19',2,'2006-02-15 21:30:53'), - (14849,'2005-08-22 02:15:26',3354,177,'2005-08-28 00:56:26',2,'2006-02-15 21:30:53'), - (14850,'2005-08-22 02:16:55',2405,435,'2005-08-26 21:08:55',1,'2006-02-15 21:30:53'), - (14851,'2005-08-22 02:20:44',1139,180,'2005-08-26 08:02:44',2,'2006-02-15 21:30:53'), - (14852,'2005-08-22 02:25:53',2262,352,'2005-08-25 04:27:53',1,'2006-02-15 21:30:53'), - (14853,'2005-08-22 02:26:33',3575,388,'2005-08-31 02:49:33',2,'2006-02-15 21:30:53'), - (14854,'2005-08-22 02:26:47',1989,117,'2005-08-23 05:53:47',1,'2006-02-15 21:30:53'), - (14855,'2005-08-22 02:27:32',1668,187,'2005-08-31 03:35:32',1,'2006-02-15 21:30:53'), - (14856,'2005-08-22 02:31:51',3292,151,'2005-08-26 23:41:51',2,'2006-02-15 21:30:53'), - (14857,'2005-08-22 02:42:39',4150,232,'2005-08-24 21:26:39',2,'2006-02-15 21:30:53'), - (14858,'2005-08-22 02:46:18',366,499,'2005-08-30 08:22:18',1,'2006-02-15 21:30:53'), - (14859,'2005-08-22 02:46:35',2150,463,'2005-08-24 22:37:35',2,'2006-02-15 21:30:53'), - (14860,'2005-08-22 02:47:07',1368,418,'2005-08-28 00:00:07',1,'2006-02-15 21:30:53'), - (14861,'2005-08-22 02:48:05',1806,422,'2005-08-27 00:50:05',1,'2006-02-15 21:30:53'), - (14862,'2005-08-22 02:51:41',3479,78,'2005-08-28 06:30:41',2,'2006-02-15 21:30:53'), - (14863,'2005-08-22 02:57:04',779,440,'2005-08-30 03:24:04',2,'2006-02-15 21:30:53'), - (14864,'2005-08-22 02:57:06',2872,460,'2005-08-22 22:19:06',1,'2006-02-15 21:30:53'), - (14865,'2005-08-22 03:06:38',3775,94,'2005-08-23 04:26:38',1,'2006-02-15 21:30:53'), - (14866,'2005-08-22 03:11:35',2607,445,'2005-08-30 00:10:35',1,'2006-02-15 21:30:53'), - (14867,'2005-08-22 03:14:46',271,114,'2005-08-25 03:53:46',2,'2006-02-15 21:30:53'), - (14868,'2005-08-22 03:15:01',4383,160,'2005-08-25 01:24:01',1,'2006-02-15 21:30:53'), - (14869,'2005-08-22 03:20:26',455,21,'2005-08-23 05:25:26',2,'2006-02-15 21:30:53'), - (14870,'2005-08-22 03:23:20',2170,512,'2005-08-23 06:50:20',2,'2006-02-15 21:30:53'), - (14871,'2005-08-22 03:23:24',3411,204,'2005-08-23 22:23:24',2,'2006-02-15 21:30:53'), - (14872,'2005-08-22 03:23:41',962,15,'2005-08-29 23:25:41',1,'2006-02-15 21:30:53'), - (14873,'2005-08-22 03:31:06',3533,314,'2005-08-31 05:34:06',1,'2006-02-15 21:30:53'), - (14874,'2005-08-22 03:32:05',1782,268,'2005-08-24 07:02:05',2,'2006-02-15 21:30:53'), - (14875,'2005-08-22 03:34:39',3912,513,'2005-08-26 03:40:39',1,'2006-02-15 21:30:53'), - (14876,'2005-08-22 03:39:29',3669,210,'2005-08-23 06:53:29',1,'2006-02-15 21:30:53'), - (14877,'2005-08-22 03:39:56',974,266,'2005-08-24 03:41:56',2,'2006-02-15 21:30:53'), - (14878,'2006-02-14 15:16:03',1202,441,NULL,2,'2006-02-15 21:30:53'), - (14879,'2005-08-22 03:42:12',2154,148,'2005-08-27 06:14:12',1,'2006-02-15 21:30:53'), - (14880,'2005-08-22 03:44:36',3615,224,'2005-08-24 05:45:36',2,'2006-02-15 21:30:53'), - (14881,'2005-08-22 03:47:39',210,425,'2005-08-26 05:58:39',2,'2006-02-15 21:30:53'), - (14882,'2005-08-22 03:52:21',12,417,'2005-08-25 04:50:21',2,'2006-02-15 21:30:53'), - (14883,'2005-08-22 03:55:02',1946,177,'2005-08-28 02:51:02',1,'2006-02-15 21:30:53'), - (14884,'2005-08-22 03:57:08',2957,547,'2005-08-23 07:11:08',1,'2006-02-15 21:30:53'), - (14885,'2005-08-22 03:58:29',2097,248,'2005-08-30 05:26:29',1,'2006-02-15 21:30:53'), - (14886,'2005-08-22 03:59:01',4330,379,'2005-08-23 01:22:01',1,'2006-02-15 21:30:53'), - (14887,'2005-08-22 04:04:31',56,421,'2005-08-31 02:30:31',1,'2006-02-15 21:30:53'), - (14888,'2005-08-22 04:09:18',3345,91,'2005-08-23 07:34:18',2,'2006-02-15 21:30:53'), - (14889,'2005-08-22 04:10:10',1579,299,'2005-08-24 06:23:10',2,'2006-02-15 21:30:53'), - (14890,'2005-08-22 04:10:49',517,346,'2005-08-30 23:23:49',1,'2006-02-15 21:30:53'), - (14891,'2005-08-22 04:11:02',288,482,'2005-08-27 03:22:02',1,'2006-02-15 21:30:53'), - (14892,'2005-08-22 04:15:05',3061,82,'2005-08-31 06:07:05',1,'2006-02-15 21:30:53'), - (14893,'2005-08-22 04:15:48',2336,461,'2005-08-30 08:05:48',1,'2006-02-15 21:30:53'), - (14894,'2005-08-22 04:16:56',3494,347,'2005-08-24 00:30:56',2,'2006-02-15 21:30:53'), - (14895,'2005-08-22 04:19:23',4462,340,'2005-08-27 04:02:23',1,'2006-02-15 21:30:53'), - (14896,'2005-08-22 04:20:55',2508,569,'2005-08-29 05:11:55',2,'2006-02-15 21:30:53'), - (14897,'2005-08-22 04:22:31',1607,175,'2005-08-26 00:09:31',1,'2006-02-15 21:30:53'), - (14898,'2005-08-22 04:26:34',1736,299,'2005-08-31 10:04:34',1,'2006-02-15 21:30:53'), - (14899,'2005-08-22 04:26:38',3700,304,'2005-08-31 08:36:38',2,'2006-02-15 21:30:53'), - (14900,'2005-08-22 04:27:48',3420,329,'2005-08-25 03:50:48',2,'2006-02-15 21:30:53'), - (14901,'2005-08-22 04:31:37',4297,258,'2005-08-29 08:24:37',1,'2006-02-15 21:30:53'), - (14902,'2005-08-22 04:31:50',866,423,'2005-08-23 23:47:50',2,'2006-02-15 21:30:53'), - (14903,'2005-08-22 04:31:50',1795,51,'2005-08-25 22:53:50',2,'2006-02-15 21:30:53'), - (14904,'2005-08-22 04:32:01',722,71,'2005-08-29 05:21:01',1,'2006-02-15 21:30:53'), - (14905,'2005-08-22 04:34:22',4166,286,'2005-08-26 04:00:22',2,'2006-02-15 21:30:53'), - (14906,'2005-08-22 04:38:18',153,366,'2005-08-29 23:03:18',1,'2006-02-15 21:30:53'), - (14907,'2005-08-22 04:44:09',2469,116,'2005-08-25 09:53:09',1,'2006-02-15 21:30:53'), - (14908,'2005-08-22 04:44:10',102,349,'2005-08-25 05:09:10',2,'2006-02-15 21:30:53'), - (14909,'2005-08-22 04:48:44',1997,155,'2005-08-25 04:59:44',1,'2006-02-15 21:30:53'), - (14910,'2005-08-22 04:50:52',1266,540,'2005-08-25 04:14:52',1,'2006-02-15 21:30:53'), - (14911,'2005-08-22 04:51:42',353,273,'2005-08-28 05:37:42',1,'2006-02-15 21:30:53'), - (14912,'2005-08-22 04:51:42',2658,404,'2005-08-23 23:50:42',1,'2006-02-15 21:30:53'), - (14913,'2005-08-22 04:52:13',3609,503,'2005-08-23 06:49:13',2,'2006-02-15 21:30:53'), - (14914,'2005-08-22 04:53:35',4348,156,'2005-08-26 10:35:35',1,'2006-02-15 21:30:53'), - (14915,'2006-02-14 15:16:03',112,349,NULL,1,'2006-02-15 21:30:53'), - (14916,'2005-08-22 04:56:57',2110,80,'2005-08-24 06:36:57',2,'2006-02-15 21:30:53'), - (14917,'2005-08-22 05:03:59',377,289,'2005-08-29 04:00:59',2,'2006-02-15 21:30:53'), - (14918,'2005-08-22 05:06:38',4056,154,'2005-08-30 01:44:38',2,'2006-02-15 21:30:53'), - (14919,'2005-08-22 05:07:17',1587,244,'2005-08-30 06:41:17',2,'2006-02-15 21:30:53'), - (14920,'2005-08-22 05:08:58',3357,106,'2005-08-23 02:51:58',1,'2006-02-15 21:30:53'), - (14921,'2005-08-22 05:12:24',3724,284,'2005-08-26 08:20:24',2,'2006-02-15 21:30:53'), - (14922,'2005-08-22 05:13:05',2322,151,'2005-08-30 04:59:05',1,'2006-02-15 21:30:53'), - (14923,'2005-08-22 05:13:33',3434,460,'2005-08-28 01:39:33',2,'2006-02-15 21:30:53'), - (14924,'2005-08-22 05:15:17',4189,118,'2005-08-23 10:11:17',1,'2006-02-15 21:30:53'), - (14925,'2005-08-22 05:16:16',442,128,'2005-08-30 02:47:16',2,'2006-02-15 21:30:53'), - (14926,'2005-08-22 05:18:44',2448,357,'2005-08-26 02:18:44',1,'2006-02-15 21:30:53'), - (14927,'2005-08-22 05:31:53',952,193,'2005-08-27 07:04:53',1,'2006-02-15 21:30:53'), - (14928,'2006-02-14 15:16:03',4375,472,NULL,1,'2006-02-15 21:30:53'), - (14929,'2005-08-22 05:32:38',4195,546,'2005-08-28 00:02:38',1,'2006-02-15 21:30:53'), - (14930,'2005-08-22 05:38:32',2875,584,'2005-08-30 07:21:32',1,'2006-02-15 21:30:53'), - (14931,'2005-08-22 05:38:55',657,63,'2005-08-28 04:15:55',2,'2006-02-15 21:30:53'), - (14932,'2005-08-22 05:40:39',2259,516,'2005-08-23 11:02:39',2,'2006-02-15 21:30:53'), - (14933,'2006-02-14 15:16:03',1186,21,NULL,2,'2006-02-15 21:30:53'), - (14934,'2005-08-22 05:47:15',815,226,'2005-08-26 11:32:15',1,'2006-02-15 21:30:53'), - (14935,'2005-08-22 05:47:31',2025,380,'2005-08-29 00:33:31',2,'2006-02-15 21:30:53'), - (14936,'2005-08-22 05:51:26',3710,241,'2005-08-29 10:21:26',2,'2006-02-15 21:30:53'), - (14937,'2005-08-22 05:51:59',1241,348,'2005-08-31 01:45:59',2,'2006-02-15 21:30:53'), - (14938,'2005-08-22 05:52:39',408,541,'2005-08-31 11:43:39',1,'2006-02-15 21:30:53'), - (14939,'2005-08-22 05:53:52',719,328,'2005-08-27 06:20:52',1,'2006-02-15 21:30:53'), - (14940,'2005-08-22 05:54:03',2635,46,'2005-08-24 05:52:03',2,'2006-02-15 21:30:53'), - (14941,'2005-08-22 05:58:23',2328,574,'2005-08-28 10:58:23',1,'2006-02-15 21:30:53'), - (14942,'2005-08-22 05:58:27',32,471,'2005-08-31 10:08:27',1,'2006-02-15 21:30:53'), - (14943,'2005-08-22 05:59:59',3515,265,'2005-08-26 10:31:59',2,'2006-02-15 21:30:53'), - (14944,'2005-08-22 06:01:26',535,153,'2005-08-24 10:33:26',2,'2006-02-15 21:30:53'), - (14945,'2005-08-22 06:05:38',1567,304,'2005-08-29 12:01:38',1,'2006-02-15 21:30:53'), - (14946,'2005-08-22 06:07:10',1395,308,'2005-08-28 05:25:10',1,'2006-02-15 21:30:53'), - (14947,'2005-08-22 06:07:52',3497,68,'2005-08-28 01:12:52',2,'2006-02-15 21:30:53'), - (14948,'2005-08-22 06:10:53',2914,488,'2005-08-28 11:24:53',2,'2006-02-15 21:30:53'), - (14949,'2005-08-22 06:12:16',2434,111,'2005-08-25 08:25:16',2,'2006-02-15 21:30:53'), - (14950,'2005-08-22 06:17:12',635,362,'2005-08-27 08:48:12',2,'2006-02-15 21:30:53'), - (14951,'2005-08-22 06:19:37',2800,197,'2005-08-30 05:51:37',2,'2006-02-15 21:30:53'), - (14952,'2005-08-22 06:20:07',2950,575,'2005-08-28 01:18:07',1,'2006-02-15 21:30:53'), - (14953,'2005-08-22 06:23:54',816,182,'2005-08-28 03:19:54',1,'2006-02-15 21:30:53'), - (14954,'2006-02-14 15:16:03',3608,525,NULL,1,'2006-02-15 21:30:53'), - (14955,'2005-08-22 06:25:52',1534,445,'2005-08-25 12:13:52',2,'2006-02-15 21:30:53'), - (14956,'2005-08-22 06:26:16',3650,571,'2005-08-25 11:06:16',2,'2006-02-15 21:30:53'), - (14957,'2005-08-22 06:29:34',1384,323,'2005-08-26 04:52:34',2,'2006-02-15 21:30:53'), - (14958,'2005-08-22 06:30:10',1710,347,'2005-08-28 09:43:10',2,'2006-02-15 21:30:53'), - (14959,'2005-08-22 06:30:28',2009,569,'2005-08-25 09:48:28',1,'2006-02-15 21:30:53'), - (14960,'2005-08-22 06:31:36',3316,147,'2005-08-29 07:10:36',2,'2006-02-15 21:30:53'), - (14961,'2005-08-22 06:35:50',3274,52,'2005-08-31 04:07:50',2,'2006-02-15 21:30:53'), - (14962,'2005-08-22 06:37:43',3104,449,'2005-08-29 03:44:43',2,'2006-02-15 21:30:53'), - (14963,'2005-08-22 06:38:10',2672,384,'2005-08-31 05:35:10',2,'2006-02-15 21:30:53'), - (14964,'2005-08-22 06:39:24',2302,500,'2005-08-26 06:05:24',1,'2006-02-15 21:30:53'), - (14965,'2005-08-22 06:45:53',1036,148,'2005-08-27 10:05:53',1,'2006-02-15 21:30:53'), - (14966,'2005-08-22 06:45:57',679,259,'2005-08-31 10:02:57',1,'2006-02-15 21:30:53'), - (14967,'2005-08-22 06:46:03',289,67,'2005-08-23 01:02:03',2,'2006-02-15 21:30:53'), - (14968,'2005-08-22 06:46:59',3302,129,'2005-08-29 07:36:59',1,'2006-02-15 21:30:53'), - (14969,'2005-08-22 06:49:15',4060,120,'2005-08-29 05:52:15',1,'2006-02-15 21:30:53'), - (14970,'2005-08-22 06:49:29',536,529,'2005-08-29 08:47:29',1,'2006-02-15 21:30:53'), - (14971,'2005-08-22 06:52:49',1883,378,'2005-08-28 06:27:49',2,'2006-02-15 21:30:53'), - (14972,'2005-08-22 06:53:21',3422,310,'2005-08-29 02:25:21',1,'2006-02-15 21:30:53'), - (14973,'2005-08-22 06:59:28',2888,201,'2005-08-30 02:28:28',1,'2006-02-15 21:30:53'), - (14974,'2005-08-22 07:04:25',2596,157,'2005-08-27 12:39:25',1,'2006-02-15 21:30:53'), - (14975,'2005-08-22 07:07:50',924,244,'2005-08-28 07:23:50',2,'2006-02-15 21:30:53'), - (14976,'2005-08-22 07:10:26',77,581,'2005-08-28 07:22:26',1,'2006-02-15 21:30:53'), - (14977,'2005-08-22 07:12:53',4093,59,'2005-08-30 08:11:53',2,'2006-02-15 21:30:53'), - (14978,'2005-08-22 07:13:15',699,94,'2005-08-25 12:26:15',1,'2006-02-15 21:30:53'), - (14979,'2005-08-22 07:16:36',2320,387,'2005-08-24 02:29:36',2,'2006-02-15 21:30:53'), - (14980,'2005-08-22 07:16:45',2701,518,'2005-08-26 06:04:45',2,'2006-02-15 21:30:53'), - (14981,'2005-08-22 07:19:05',1239,544,'2005-08-26 03:08:05',2,'2006-02-15 21:30:53'), - (14982,'2005-08-22 07:20:55',2333,542,'2005-08-31 04:35:55',2,'2006-02-15 21:30:53'), - (14983,'2005-08-22 07:32:23',3579,363,'2005-08-30 11:39:23',2,'2006-02-15 21:30:53'), - (14984,'2005-08-22 07:35:31',1704,334,'2005-08-30 02:32:31',1,'2006-02-15 21:30:53'), - (14985,'2005-08-22 07:35:56',2017,29,'2005-08-29 13:17:56',1,'2006-02-15 21:30:53'), - (14986,'2005-08-22 07:37:24',1493,278,'2005-08-23 04:22:24',2,'2006-02-15 21:30:53'), - (14987,'2005-08-22 07:41:08',1513,138,'2005-08-24 03:15:08',2,'2006-02-15 21:30:53'), - (14988,'2005-08-22 07:46:05',2114,186,'2005-08-29 06:43:05',1,'2006-02-15 21:30:53'), - (14989,'2005-08-22 07:47:07',1431,58,'2005-08-26 04:42:07',2,'2006-02-15 21:30:53'), - (14990,'2005-08-22 07:48:01',4057,198,'2005-08-24 06:41:01',2,'2006-02-15 21:30:53'), - (14991,'2005-08-22 07:50:44',708,172,'2005-08-30 06:32:44',2,'2006-02-15 21:30:53'), - (14992,'2005-08-22 07:51:47',4430,415,'2005-08-25 08:17:47',2,'2006-02-15 21:30:53'), - (14993,'2005-08-22 07:52:18',3416,437,'2005-08-27 02:13:18',1,'2006-02-15 21:30:53'), - (14994,'2005-08-22 07:52:24',1601,509,'2005-08-26 09:57:24',1,'2006-02-15 21:30:53'), - (14995,'2005-08-22 07:52:31',4178,482,'2005-08-24 05:16:31',1,'2006-02-15 21:30:53'), - (14996,'2005-08-22 07:52:41',1178,411,'2005-08-29 02:35:41',1,'2006-02-15 21:30:53'), - (14997,'2005-08-22 07:53:00',2724,29,'2005-08-28 03:47:00',2,'2006-02-15 21:30:53'), - (14998,'2005-08-22 07:53:14',3852,92,'2005-08-24 03:46:14',2,'2006-02-15 21:30:53'), - (14999,'2005-08-22 07:54:47',3399,594,'2005-08-23 08:39:47',1,'2006-02-15 21:30:53'), - (15000,'2005-08-22 07:54:58',3080,161,'2005-08-24 12:46:58',2,'2006-02-15 21:30:53'), - (15001,'2005-08-22 08:00:49',2869,186,'2005-08-27 05:53:49',2,'2006-02-15 21:30:53'), - (15002,'2005-08-22 08:06:00',4198,242,'2005-08-24 10:48:00',1,'2006-02-15 21:30:53'), - (15003,'2005-08-22 08:11:24',4009,167,'2005-08-28 08:49:24',1,'2006-02-15 21:30:53'), - (15004,'2005-08-22 08:15:21',4464,375,'2005-08-28 10:35:21',1,'2006-02-15 21:30:53'), - (15005,'2005-08-22 08:15:44',2897,335,'2005-08-24 09:52:44',2,'2006-02-15 21:30:53'), - (15006,'2005-08-22 08:20:15',2967,97,'2005-08-23 11:57:15',1,'2006-02-15 21:30:53'), - (15007,'2005-08-22 08:21:21',3692,165,'2005-08-27 04:44:21',2,'2006-02-15 21:30:53'), - (15008,'2005-08-22 08:24:32',961,277,'2005-08-31 13:48:32',2,'2006-02-15 21:30:53'), - (15009,'2005-08-22 08:27:27',4025,325,'2005-08-26 05:57:27',2,'2006-02-15 21:30:53'), - (15010,'2005-08-22 08:30:17',171,508,'2005-08-29 13:24:17',2,'2006-02-15 21:30:53'), - (15011,'2005-08-22 08:31:07',2722,329,'2005-08-24 04:47:07',1,'2006-02-15 21:30:53'), - (15012,'2005-08-22 08:42:32',1584,454,'2005-08-28 05:04:32',1,'2006-02-15 21:30:53'), - (15013,'2005-08-22 08:42:45',141,141,'2005-08-24 05:20:45',2,'2006-02-15 21:30:53'), - (15014,'2005-08-22 08:43:11',3678,373,'2005-08-31 02:55:11',1,'2006-02-15 21:30:53'), - (15015,'2005-08-22 08:43:50',3067,14,'2005-08-31 06:53:50',2,'2006-02-15 21:30:53'), - (15016,'2005-08-22 08:47:35',879,434,'2005-08-28 14:23:35',2,'2006-02-15 21:30:53'), - (15017,'2005-08-22 08:47:44',3975,144,'2005-08-29 08:16:44',1,'2006-02-15 21:30:53'), - (15018,'2005-08-22 08:52:38',394,504,'2005-08-25 08:08:38',1,'2006-02-15 21:30:53'), - (15019,'2005-08-22 08:52:53',3425,450,'2005-08-25 13:07:53',2,'2006-02-15 21:30:53'), - (15020,'2005-08-22 08:54:12',3460,267,'2005-08-27 04:54:12',1,'2006-02-15 21:30:53'), - (15021,'2006-02-14 15:16:03',418,100,NULL,2,'2006-02-15 21:30:53'), - (15022,'2005-08-22 08:55:43',249,506,'2005-08-31 05:35:43',2,'2006-02-15 21:30:53'), - (15023,'2005-08-22 08:56:48',358,296,'2005-08-29 08:13:48',1,'2006-02-15 21:30:53'), - (15024,'2005-08-22 08:57:10',1831,139,'2005-08-24 10:39:10',1,'2006-02-15 21:30:53'), - (15025,'2005-08-22 08:57:24',2107,257,'2005-08-24 06:09:24',2,'2006-02-15 21:30:53'), - (15026,'2005-08-22 09:01:52',4328,66,'2005-08-28 09:21:52',1,'2006-02-15 21:30:53'), - (15027,'2005-08-22 09:03:04',326,478,'2005-08-29 04:03:04',2,'2006-02-15 21:30:53'), - (15028,'2005-08-22 09:03:44',4248,37,'2005-08-30 11:28:44',1,'2006-02-15 21:30:53'), - (15029,'2005-08-22 09:04:53',2234,139,'2005-08-25 09:03:53',1,'2006-02-15 21:30:53'), - (15030,'2005-08-22 09:10:21',3168,341,'2005-08-24 06:00:21',2,'2006-02-15 21:30:53'), - (15031,'2005-08-22 09:11:48',3926,430,'2005-08-27 06:11:48',1,'2006-02-15 21:30:53'), - (15032,'2005-08-22 09:14:09',3414,467,'2005-08-25 09:50:09',2,'2006-02-15 21:30:53'), - (15033,'2005-08-22 09:25:24',2431,168,'2005-08-28 09:56:24',2,'2006-02-15 21:30:53'), - (15034,'2005-08-22 09:33:08',1331,235,'2005-08-29 13:04:08',1,'2006-02-15 21:30:53'), - (15035,'2005-08-22 09:34:32',339,513,'2005-08-28 10:23:32',1,'2006-02-15 21:30:53'), - (15036,'2005-08-22 09:36:00',874,280,'2005-08-23 08:12:00',2,'2006-02-15 21:30:53'), - (15037,'2005-08-22 09:36:33',4517,234,'2005-08-31 11:20:33',2,'2006-02-15 21:30:53'), - (15038,'2005-08-22 09:37:27',1685,3,'2005-08-23 14:39:27',1,'2006-02-15 21:30:53'), - (15039,'2005-08-22 09:37:54',895,180,'2005-08-28 12:23:54',1,'2006-02-15 21:30:53'), - (15040,'2005-08-22 09:41:09',3207,523,'2005-08-23 12:49:09',2,'2006-02-15 21:30:53'), - (15041,'2005-08-22 09:43:18',1913,372,'2005-08-23 11:04:18',2,'2006-02-15 21:30:53'), - (15042,'2005-08-22 09:47:37',3796,553,'2005-08-31 04:42:37',1,'2006-02-15 21:30:53'), - (15043,'2005-08-22 09:49:32',3797,182,'2005-08-28 13:50:32',1,'2006-02-15 21:30:53'), - (15044,'2005-08-22 09:51:54',4513,439,'2005-08-31 12:45:54',1,'2006-02-15 21:30:53'), - (15045,'2005-08-22 09:53:23',3485,161,'2005-08-26 10:09:23',2,'2006-02-15 21:30:53'), - (15046,'2005-08-22 09:54:54',1536,474,'2005-08-26 07:34:54',1,'2006-02-15 21:30:53'), - (15047,'2005-08-22 09:57:16',1309,19,'2005-08-23 11:39:16',1,'2006-02-15 21:30:53'), - (15048,'2005-08-22 10:00:04',2895,27,'2005-08-26 08:26:04',1,'2006-02-15 21:30:53'), - (15049,'2005-08-22 10:06:28',1573,102,'2005-08-26 15:12:28',1,'2006-02-15 21:30:53'), - (15050,'2005-08-22 10:07:52',3961,167,'2005-08-23 04:45:52',1,'2006-02-15 21:30:53'), - (15051,'2005-08-22 10:08:50',1419,300,'2005-08-28 10:23:50',1,'2006-02-15 21:30:53'), - (15052,'2005-08-22 10:09:19',2349,147,'2005-08-31 09:27:19',2,'2006-02-15 21:30:53'), - (15053,'2005-08-22 10:13:09',1065,374,'2005-08-28 12:42:09',2,'2006-02-15 21:30:53'), - (15054,'2005-08-22 10:14:33',2314,44,'2005-08-25 15:07:33',1,'2006-02-15 21:30:53'), - (15055,'2005-08-22 10:14:39',623,125,'2005-08-25 07:25:39',2,'2006-02-15 21:30:53'), - (15056,'2005-08-22 10:15:54',1871,503,'2005-08-25 07:21:54',1,'2006-02-15 21:30:53'), - (15057,'2005-08-22 10:19:58',4534,20,'2005-08-28 05:12:58',1,'2006-02-15 21:30:53'), - (15058,'2005-08-22 10:20:55',3537,288,'2005-08-26 12:37:55',1,'2006-02-15 21:30:53'), - (15059,'2005-08-22 10:22:00',4079,564,'2005-08-29 07:01:00',2,'2006-02-15 21:30:53'), - (15060,'2005-08-22 10:24:32',2740,63,'2005-08-31 11:17:32',2,'2006-02-15 21:30:53'), - (15061,'2005-08-22 10:29:44',3436,90,'2005-08-24 14:40:44',1,'2006-02-15 21:30:53'), - (15062,'2005-08-22 10:34:39',4393,139,'2005-08-26 13:09:39',2,'2006-02-15 21:30:53'), - (15063,'2005-08-22 10:39:51',1159,30,'2005-08-25 16:03:51',2,'2006-02-15 21:30:53'), - (15064,'2005-08-22 10:41:58',1233,425,'2005-08-28 13:34:58',2,'2006-02-15 21:30:53'), - (15065,'2005-08-22 10:46:44',468,510,'2005-08-27 09:40:44',2,'2006-02-15 21:30:53'), - (15066,'2005-08-22 10:49:06',2712,530,'2005-08-23 10:25:06',1,'2006-02-15 21:30:53'), - (15067,'2005-08-22 10:49:21',3684,461,'2005-08-24 09:01:21',1,'2006-02-15 21:30:53'), - (15068,'2005-08-22 10:50:13',3268,373,'2005-08-26 05:04:13',2,'2006-02-15 21:30:53'), - (15069,'2005-08-22 10:55:42',592,568,'2005-08-28 06:59:42',2,'2006-02-15 21:30:53'), - (15070,'2005-08-22 10:55:45',2687,441,'2005-08-26 09:23:45',1,'2006-02-15 21:30:53'), - (15071,'2005-08-22 10:58:43',417,541,'2005-08-31 14:53:43',1,'2006-02-15 21:30:53'), - (15072,'2005-08-22 10:58:45',2871,405,'2005-08-30 16:18:45',1,'2006-02-15 21:30:53'), - (15073,'2005-08-22 11:01:15',3970,336,'2005-08-31 09:23:15',1,'2006-02-15 21:30:53'), - (15074,'2005-08-22 11:02:52',3112,567,'2005-08-28 07:59:52',2,'2006-02-15 21:30:53'), - (15075,'2005-08-22 11:04:52',1938,535,'2005-08-30 05:06:52',1,'2006-02-15 21:30:53'), - (15076,'2005-08-22 11:05:34',4170,287,'2005-08-27 14:40:34',1,'2006-02-15 21:30:53'), - (15077,'2005-08-22 11:09:18',3142,503,'2005-08-29 08:41:18',1,'2006-02-15 21:30:53'), - (15078,'2005-08-22 11:09:31',3001,197,'2005-08-25 12:16:31',1,'2006-02-15 21:30:53'), - (15079,'2005-08-22 11:09:56',4552,540,'2005-08-24 15:40:56',2,'2006-02-15 21:30:53'), - (15080,'2005-08-22 11:11:51',927,133,'2005-08-23 13:09:51',1,'2006-02-15 21:30:53'), - (15081,'2005-08-22 11:14:31',2501,313,'2005-08-28 14:23:31',2,'2006-02-15 21:30:53'), - (15082,'2005-08-22 11:17:06',2046,137,'2005-08-28 06:40:06',1,'2006-02-15 21:30:53'), - (15083,'2005-08-22 11:17:37',1691,397,'2005-08-28 06:27:37',2,'2006-02-15 21:30:53'), - (15084,'2005-08-22 11:17:59',821,287,'2005-08-23 09:23:59',1,'2006-02-15 21:30:53'), - (15085,'2005-08-22 11:19:22',1669,67,'2005-08-25 09:04:22',2,'2006-02-15 21:30:53'), - (15086,'2005-08-22 11:21:08',264,494,'2005-08-30 08:18:08',2,'2006-02-15 21:30:53'), - (15087,'2005-08-22 11:24:09',233,404,'2005-08-27 16:42:09',2,'2006-02-15 21:30:53'), - (15088,'2005-08-22 11:28:26',4199,377,'2005-08-24 15:46:26',2,'2006-02-15 21:30:53'), - (15089,'2005-08-22 11:34:06',3288,61,'2005-08-31 12:45:06',1,'2006-02-15 21:30:53'), - (15090,'2005-08-22 11:34:33',2918,582,'2005-08-31 06:09:33',2,'2006-02-15 21:30:53'), - (15091,'2005-08-22 11:34:43',2092,477,'2005-08-23 16:52:43',2,'2006-02-15 21:30:53'), - (15092,'2005-08-22 11:36:16',2418,464,'2005-08-28 09:49:16',2,'2006-02-15 21:30:53'), - (15093,'2005-08-22 11:39:03',3534,60,'2005-08-23 06:16:03',2,'2006-02-15 21:30:53'), - (15094,'2006-02-14 15:16:03',922,424,NULL,1,'2006-02-15 21:30:53'), - (15095,'2005-08-22 11:41:35',489,202,'2005-08-25 16:44:35',2,'2006-02-15 21:30:53'), - (15096,'2005-08-22 11:43:04',1983,33,'2005-08-29 12:16:04',2,'2006-02-15 21:30:53'), - (15097,'2005-08-22 11:43:42',2838,475,'2005-08-27 10:25:42',1,'2006-02-15 21:30:53'), - (15098,'2005-08-22 11:48:19',4414,88,'2005-08-31 11:07:19',2,'2006-02-15 21:30:53'), - (15099,'2005-08-22 11:49:16',1940,86,'2005-08-26 06:38:16',2,'2006-02-15 21:30:53'), - (15100,'2005-08-22 11:55:03',4489,312,'2005-08-25 14:55:03',1,'2006-02-15 21:30:53'), - (15101,'2005-08-22 11:56:02',683,335,'2005-08-28 13:08:02',2,'2006-02-15 21:30:53'), - (15102,'2005-08-22 11:58:58',2317,555,'2005-08-29 08:37:58',1,'2006-02-15 21:30:53'), - (15103,'2005-08-22 12:01:06',853,101,'2005-08-25 14:40:06',2,'2006-02-15 21:30:53'), - (15104,'2005-08-22 12:01:16',4550,359,'2005-08-27 17:48:16',1,'2006-02-15 21:30:53'), - (15105,'2005-08-22 12:01:33',3965,338,'2005-08-26 14:29:33',2,'2006-02-15 21:30:53'), - (15106,'2005-08-22 12:01:48',399,155,'2005-08-27 16:12:48',1,'2006-02-15 21:30:53'), - (15107,'2005-08-22 12:05:02',2378,376,'2005-08-23 11:09:02',1,'2006-02-15 21:30:53'), - (15108,'2005-08-22 12:10:07',3463,447,'2005-08-26 14:46:07',2,'2006-02-15 21:30:53'), - (15109,'2005-08-22 12:12:58',565,588,'2005-08-30 07:20:58',1,'2006-02-15 21:30:53'), - (15110,'2005-08-22 12:16:46',1379,72,'2005-08-26 13:36:46',1,'2006-02-15 21:30:53'), - (15111,'2005-08-22 12:21:43',4101,119,'2005-08-24 09:31:43',1,'2006-02-15 21:30:53'), - (15112,'2005-08-22 12:21:49',2832,160,'2005-08-27 11:03:49',1,'2006-02-15 21:30:53'), - (15113,'2005-08-22 12:23:59',4338,424,'2005-08-27 09:59:59',1,'2006-02-15 21:30:53'), - (15114,'2005-08-22 12:24:55',2481,121,'2005-08-31 17:06:55',1,'2006-02-15 21:30:53'), - (15115,'2005-08-22 12:28:01',1739,33,'2005-08-26 16:12:01',1,'2006-02-15 21:30:53'), - (15116,'2005-08-22 12:35:40',518,217,'2005-08-23 17:58:40',1,'2006-02-15 21:30:53'), - (15117,'2005-08-22 12:38:20',2502,292,'2005-08-27 07:36:20',2,'2006-02-15 21:30:53'), - (15118,'2005-08-22 12:38:37',2081,473,'2005-08-29 14:01:37',2,'2006-02-15 21:30:53'), - (15119,'2005-08-22 12:41:33',4526,288,'2005-08-23 14:44:33',2,'2006-02-15 21:30:53'), - (15120,'2005-08-22 12:42:47',3083,11,'2005-08-23 14:21:47',1,'2006-02-15 21:30:53'), - (15121,'2005-08-22 12:46:37',2981,415,'2005-08-25 17:42:37',1,'2006-02-15 21:30:53'), - (15122,'2005-08-22 12:47:45',1686,91,'2005-08-29 13:18:45',2,'2006-02-15 21:30:53'), - (15123,'2005-08-22 12:48:44',1455,445,'2005-08-27 11:07:44',1,'2006-02-15 21:30:53'), - (15124,'2005-08-22 12:51:38',1598,39,'2005-08-26 09:05:38',1,'2006-02-15 21:30:53'), - (15125,'2005-08-22 12:53:22',3942,221,'2005-08-29 18:44:22',1,'2006-02-15 21:30:53'), - (15126,'2005-08-22 12:53:58',1902,459,'2005-08-28 07:39:58',1,'2006-02-15 21:30:53'), - (15127,'2005-08-22 12:56:29',2397,287,'2005-08-26 10:58:29',1,'2006-02-15 21:30:53'), - (15128,'2005-08-22 12:57:26',3229,457,'2005-08-30 11:35:26',2,'2006-02-15 21:30:53'), - (15129,'2005-08-22 13:03:52',3782,234,'2005-08-29 10:56:52',2,'2006-02-15 21:30:53'), - (15130,'2005-08-22 13:04:32',2375,536,'2005-08-30 17:24:32',1,'2006-02-15 21:30:53'), - (15131,'2005-08-22 13:06:26',1930,119,'2005-08-30 16:43:26',1,'2006-02-15 21:30:53'), - (15132,'2005-08-22 13:11:25',3474,393,'2005-08-27 17:04:25',2,'2006-02-15 21:30:53'), - (15133,'2005-08-22 13:17:43',3408,137,'2005-08-26 08:40:43',1,'2006-02-15 21:30:53'), - (15134,'2005-08-22 13:18:25',4442,22,'2005-08-29 18:03:25',1,'2006-02-15 21:30:53'), - (15135,'2005-08-22 13:19:19',555,284,'2005-08-27 17:09:19',2,'2006-02-15 21:30:53'), - (15136,'2005-08-22 13:19:25',2606,435,'2005-08-24 07:28:25',2,'2006-02-15 21:30:53'), - (15137,'2005-08-22 13:20:28',856,241,'2005-08-26 09:35:28',1,'2006-02-15 21:30:53'), - (15138,'2005-08-22 13:36:30',2467,50,'2005-08-27 15:35:30',1,'2006-02-15 21:30:53'), - (15139,'2005-08-22 13:38:11',2018,237,'2005-08-30 09:00:11',1,'2006-02-15 21:30:53'), - (15140,'2005-08-22 13:39:20',1402,414,'2005-08-30 18:19:20',2,'2006-02-15 21:30:53'), - (15141,'2005-08-22 13:41:49',227,541,'2005-08-28 15:25:49',2,'2006-02-15 21:30:53'), - (15142,'2005-08-22 13:44:32',1337,351,'2005-08-29 14:19:32',1,'2006-02-15 21:30:53'), - (15143,'2005-08-22 13:46:24',1519,274,'2005-08-25 09:47:24',2,'2006-02-15 21:30:53'), - (15144,'2005-08-22 13:49:18',559,527,'2005-08-26 11:11:18',2,'2006-02-15 21:30:53'), - (15145,'2005-08-22 13:53:04',2179,2,'2005-08-31 15:51:04',1,'2006-02-15 21:30:53'), - (15146,'2005-08-22 13:57:55',3102,72,'2005-08-28 12:57:55',2,'2006-02-15 21:30:53'), - (15147,'2005-08-22 13:58:23',2553,4,'2005-08-28 14:33:23',2,'2006-02-15 21:30:53'), - (15148,'2005-08-22 13:59:19',3704,359,'2005-08-31 13:59:19',2,'2006-02-15 21:30:53'), - (15149,'2005-08-22 14:08:06',3059,537,'2005-08-25 08:25:06',1,'2006-02-15 21:30:53'), - (15150,'2005-08-22 14:12:05',1797,161,'2005-08-27 12:47:05',1,'2006-02-15 21:30:53'), - (15151,'2005-08-22 14:23:11',4070,463,'2005-08-30 14:01:11',1,'2006-02-15 21:30:53'), - (15152,'2005-08-22 14:25:21',739,123,'2005-08-31 14:28:21',1,'2006-02-15 21:30:53'), - (15153,'2005-08-22 14:26:01',1051,512,'2005-08-27 14:17:01',2,'2006-02-15 21:30:53'), - (15154,'2005-08-22 14:27:37',3395,106,'2005-08-29 20:04:37',2,'2006-02-15 21:30:53'), - (15155,'2005-08-22 14:27:46',2641,43,'2005-08-23 17:46:46',2,'2006-02-15 21:30:53'), - (15156,'2005-08-22 14:29:11',1174,494,'2005-08-30 17:48:11',2,'2006-02-15 21:30:53'), - (15157,'2005-08-22 14:30:09',1909,580,'2005-08-29 18:28:09',1,'2006-02-15 21:30:53'), - (15158,'2005-08-22 14:30:39',3614,588,'2005-08-27 15:55:39',1,'2006-02-15 21:30:53'), - (15159,'2005-08-22 14:32:25',4355,525,'2005-08-24 11:19:25',2,'2006-02-15 21:30:53'), - (15160,'2005-08-22 14:33:50',4321,249,'2005-08-28 11:26:50',1,'2006-02-15 21:30:53'), - (15161,'2005-08-22 14:37:22',1445,20,'2005-08-27 17:40:22',1,'2006-02-15 21:30:53'), - (15162,'2005-08-22 14:41:05',1756,439,'2005-08-27 20:23:05',2,'2006-02-15 21:30:53'), - (15163,'2005-08-22 14:43:13',3597,100,'2005-08-26 14:26:13',1,'2006-02-15 21:30:53'), - (15164,'2005-08-22 14:47:53',997,193,'2005-08-25 16:05:53',1,'2006-02-15 21:30:53'), - (15165,'2005-08-22 14:59:30',3664,168,'2005-08-29 15:46:30',2,'2006-02-15 21:30:53'), - (15166,'2005-08-22 15:05:37',1530,504,'2005-08-30 12:22:37',2,'2006-02-15 21:30:53'), - (15167,'2006-02-14 15:16:03',973,190,NULL,2,'2006-02-15 21:30:53'), - (15168,'2005-08-22 15:14:20',3218,526,'2005-08-25 20:12:20',2,'2006-02-15 21:30:53'), - (15169,'2005-08-22 15:21:56',794,76,'2005-08-28 09:40:56',1,'2006-02-15 21:30:53'), - (15170,'2005-08-22 15:22:15',2123,521,'2005-08-23 20:32:15',1,'2006-02-15 21:30:53'), - (15171,'2005-08-22 15:23:59',1201,119,'2005-08-28 12:05:59',2,'2006-02-15 21:30:53'), - (15172,'2005-08-22 15:25:33',2367,511,'2005-08-23 17:29:33',1,'2006-02-15 21:30:53'), - (15173,'2005-08-22 15:26:29',2585,338,'2005-08-29 14:03:29',1,'2006-02-15 21:30:53'), - (15174,'2005-08-22 15:26:36',19,111,'2005-08-31 10:47:36',2,'2006-02-15 21:30:53'), - (15175,'2005-08-22 15:29:15',4318,380,'2005-08-27 15:11:15',2,'2006-02-15 21:30:53'), - (15176,'2005-08-22 15:30:25',3063,115,'2005-08-31 20:00:25',1,'2006-02-15 21:30:53'), - (15177,'2005-08-22 15:34:49',838,493,'2005-08-26 12:54:49',1,'2006-02-15 21:30:53'), - (15178,'2005-08-22 15:36:04',1745,15,'2005-08-26 21:00:04',2,'2006-02-15 21:30:53'), - (15179,'2005-08-22 15:36:22',450,328,'2005-08-31 19:57:22',1,'2006-02-15 21:30:53'), - (15180,'2005-08-22 15:42:57',234,532,'2005-08-24 12:49:57',2,'2006-02-15 21:30:53'), - (15181,'2005-08-22 15:46:20',3900,266,'2005-08-27 09:56:20',1,'2006-02-15 21:30:53'), - (15182,'2005-08-22 15:47:05',645,443,'2005-08-25 11:55:05',1,'2006-02-15 21:30:53'), - (15183,'2005-08-22 15:49:54',2696,268,'2005-08-25 12:29:54',1,'2006-02-15 21:30:53'), - (15184,'2005-08-22 15:51:12',1193,471,'2005-08-24 19:23:12',2,'2006-02-15 21:30:53'), - (15185,'2005-08-22 15:52:50',2948,472,'2005-08-31 20:38:50',1,'2006-02-15 21:30:53'), - (15186,'2005-08-22 15:52:57',1323,104,'2005-08-24 21:12:57',1,'2006-02-15 21:30:53'), - (15187,'2005-08-22 15:53:32',2338,461,'2005-08-27 14:21:32',1,'2006-02-15 21:30:53'), - (15188,'2005-08-22 15:55:48',131,478,'2005-08-29 19:10:48',1,'2006-02-15 21:30:53'), - (15189,'2005-08-22 15:56:42',2559,398,'2005-08-29 12:20:42',1,'2006-02-15 21:30:53'), - (15190,'2005-08-22 15:57:38',2096,84,'2005-08-24 13:46:38',1,'2006-02-15 21:30:53'), - (15191,'2006-02-14 15:16:03',3688,75,NULL,1,'2006-02-15 21:30:53'), - (15192,'2005-08-22 16:06:23',4213,216,'2005-08-27 13:12:23',1,'2006-02-15 21:30:53'), - (15193,'2005-08-22 16:06:49',1033,40,'2005-08-25 17:23:49',1,'2006-02-15 21:30:53'), - (15194,'2005-08-22 16:07:34',1217,332,'2005-08-26 19:16:34',1,'2006-02-15 21:30:53'), - (15195,'2005-08-22 16:08:23',1080,508,'2005-08-30 17:56:23',2,'2006-02-15 21:30:53'), - (15196,'2005-08-22 16:11:32',1413,181,'2005-08-30 22:06:32',1,'2006-02-15 21:30:53'), - (15197,'2005-08-22 16:14:25',2915,159,'2005-08-26 16:22:25',2,'2006-02-15 21:30:53'), - (15198,'2005-08-22 16:15:33',1253,396,'2005-08-29 20:49:33',1,'2006-02-15 21:30:53'), - (15199,'2005-08-22 16:17:49',18,216,'2005-08-25 20:12:49',1,'2006-02-15 21:30:53'), - (15200,'2005-08-22 16:22:53',1000,374,'2005-08-24 10:25:53',2,'2006-02-15 21:30:53'), - (15201,'2005-08-22 16:24:42',4456,301,'2005-08-31 17:54:42',1,'2006-02-15 21:30:53'), - (15202,'2005-08-22 16:26:53',2119,374,'2005-08-23 13:49:53',2,'2006-02-15 21:30:53'), - (15203,'2005-08-22 16:28:00',743,568,'2005-08-26 16:55:00',2,'2006-02-15 21:30:53'), - (15204,'2005-08-22 16:30:43',1471,317,'2005-08-26 20:37:43',2,'2006-02-15 21:30:53'), - (15205,'2005-08-22 16:32:23',3276,489,'2005-08-27 16:08:23',1,'2006-02-15 21:30:53'), - (15206,'2005-08-22 16:33:39',3901,524,'2005-08-31 11:41:39',1,'2006-02-15 21:30:53'), - (15207,'2005-08-22 16:35:25',1149,442,'2005-08-23 14:06:25',1,'2006-02-15 21:30:53'), - (15208,'2005-08-22 16:35:47',4346,267,'2005-08-30 15:16:47',1,'2006-02-15 21:30:53'), - (15209,'2005-08-22 16:37:32',1620,588,'2005-08-25 19:04:32',1,'2006-02-15 21:30:53'), - (15210,'2005-08-22 16:37:36',3811,332,'2005-08-29 11:54:36',1,'2006-02-15 21:30:53'), - (15211,'2005-08-22 16:40:21',3025,410,'2005-08-28 13:33:21',2,'2006-02-15 21:30:53'), - (15212,'2005-08-22 16:44:26',2182,562,'2005-08-27 20:26:26',1,'2006-02-15 21:30:53'), - (15213,'2005-08-22 16:49:02',2002,166,'2005-08-31 20:22:02',1,'2006-02-15 21:30:53'), - (15214,'2005-08-22 16:53:29',1500,574,'2005-08-24 14:17:29',1,'2006-02-15 21:30:53'), - (15215,'2005-08-22 16:55:26',1906,344,'2005-08-25 20:19:26',1,'2006-02-15 21:30:53'), - (15216,'2005-08-22 16:57:02',1633,166,'2005-08-24 16:11:02',2,'2006-02-15 21:30:53'), - (15217,'2005-08-22 16:58:31',91,90,'2005-08-23 22:33:31',1,'2006-02-15 21:30:53'), - (15218,'2005-08-22 16:59:05',10,139,'2005-08-30 17:01:05',1,'2006-02-15 21:30:53'), - (15219,'2005-08-22 17:00:31',3313,544,'2005-08-31 20:16:31',1,'2006-02-15 21:30:53'), - (15220,'2005-08-22 17:02:23',187,128,'2005-08-28 21:02:23',1,'2006-02-15 21:30:53'), - (15221,'2005-08-22 17:12:29',110,253,'2005-08-24 20:46:29',2,'2006-02-15 21:30:53'), - (15222,'2005-08-22 17:12:30',1360,390,'2005-08-27 15:10:30',2,'2006-02-15 21:30:53'), - (15223,'2005-08-22 17:13:39',2263,541,'2005-08-27 11:17:39',2,'2006-02-15 21:30:53'), - (15224,'2005-08-22 17:18:05',33,81,'2005-08-29 14:35:05',2,'2006-02-15 21:30:53'), - (15225,'2005-08-22 17:18:32',1646,224,'2005-08-24 17:25:32',1,'2006-02-15 21:30:53'), - (15226,'2005-08-22 17:20:17',318,54,'2005-08-31 15:36:17',1,'2006-02-15 21:30:53'), - (15227,'2005-08-22 17:22:41',2987,151,'2005-08-23 20:59:41',1,'2006-02-15 21:30:53'), - (15228,'2005-08-22 17:27:23',2485,48,'2005-08-29 11:38:23',2,'2006-02-15 21:30:53'), - (15229,'2005-08-22 17:30:25',320,63,'2005-08-23 14:13:25',1,'2006-02-15 21:30:53'), - (15230,'2005-08-22 17:31:41',2572,466,'2005-08-25 21:57:41',2,'2006-02-15 21:30:53'), - (15231,'2005-08-22 17:32:57',2980,187,'2005-08-25 13:06:57',1,'2006-02-15 21:30:53'), - (15232,'2005-08-22 17:37:02',61,5,'2005-08-25 18:45:02',1,'2006-02-15 21:30:53'), - (15233,'2005-08-22 17:41:53',4405,197,'2005-08-24 12:59:53',2,'2006-02-15 21:30:53'), - (15234,'2006-02-14 15:16:03',908,228,NULL,2,'2006-02-15 21:30:53'), - (15235,'2005-08-22 17:43:12',2726,416,'2005-08-29 23:03:12',2,'2006-02-15 21:30:53'), - (15236,'2005-08-22 17:44:27',4124,557,'2005-08-24 23:25:27',1,'2006-02-15 21:30:53'), - (15237,'2005-08-22 17:44:30',4485,148,'2005-08-24 12:51:30',1,'2006-02-15 21:30:53'), - (15238,'2005-08-22 17:46:12',403,70,'2005-08-29 16:41:12',1,'2006-02-15 21:30:53'), - (15239,'2005-08-22 17:46:17',1809,501,'2005-08-26 19:03:17',1,'2006-02-15 21:30:53'), - (15240,'2005-08-22 17:46:41',2014,11,'2005-08-23 15:08:41',2,'2006-02-15 21:30:53'), - (15241,'2005-08-22 17:47:40',832,337,'2005-08-29 15:28:40',2,'2006-02-15 21:30:53'), - (15242,'2005-08-22 17:48:10',2106,364,'2005-08-27 23:32:10',1,'2006-02-15 21:30:53'), - (15243,'2005-08-22 17:48:28',4408,308,'2005-08-31 13:22:28',1,'2006-02-15 21:30:53'), - (15244,'2005-08-22 17:48:42',1486,271,'2005-08-28 13:17:42',2,'2006-02-15 21:30:53'), - (15245,'2005-08-22 17:49:35',2545,298,'2005-08-26 18:25:35',2,'2006-02-15 21:30:53'), - (15246,'2005-08-22 17:50:49',3786,100,'2005-08-30 22:21:49',1,'2006-02-15 21:30:53'), - (15247,'2005-08-22 17:52:05',4572,250,'2005-08-31 21:37:05',1,'2006-02-15 21:30:53'), - (15248,'2005-08-22 17:53:06',977,20,'2005-08-25 18:43:06',2,'2006-02-15 21:30:53'), - (15249,'2005-08-22 17:58:27',121,444,'2005-08-30 14:55:27',1,'2006-02-15 21:30:53'), - (15250,'2005-08-22 18:03:11',2176,143,'2005-08-27 12:19:11',2,'2006-02-15 21:30:53'), - (15251,'2005-08-22 18:03:57',1994,285,'2005-08-23 20:56:57',2,'2006-02-15 21:30:53'), - (15252,'2005-08-22 18:04:22',1821,453,'2005-08-25 17:14:22',2,'2006-02-15 21:30:53'), - (15253,'2005-08-22 18:05:21',4143,333,'2005-08-23 18:06:21',2,'2006-02-15 21:30:53'), - (15254,'2005-08-22 18:13:07',3762,209,'2005-08-24 21:55:07',1,'2006-02-15 21:30:53'), - (15255,'2005-08-22 18:16:50',3415,84,'2005-08-28 14:14:50',2,'2006-02-15 21:30:53'), - (15256,'2005-08-22 18:20:07',1873,198,'2005-08-28 12:57:07',1,'2006-02-15 21:30:53'), - (15257,'2005-08-22 18:21:04',915,223,'2005-08-30 20:13:04',1,'2006-02-15 21:30:53'), - (15258,'2005-08-22 18:22:44',788,293,'2005-08-25 16:54:44',1,'2006-02-15 21:30:53'), - (15259,'2005-08-22 18:23:23',3261,488,'2005-08-27 13:06:23',1,'2006-02-15 21:30:53'), - (15260,'2005-08-22 18:24:16',3135,274,'2005-08-24 21:26:16',1,'2006-02-15 21:30:53'), - (15261,'2005-08-22 18:24:34',2200,140,'2005-08-27 19:53:34',1,'2006-02-15 21:30:53'), - (15262,'2005-08-22 18:25:21',2534,298,'2005-08-28 22:19:21',1,'2006-02-15 21:30:53'), - (15263,'2005-08-22 18:27:33',184,324,'2005-08-30 14:05:33',1,'2006-02-15 21:30:53'), - (15264,'2005-08-22 18:27:38',4459,440,'2005-08-24 12:39:38',1,'2006-02-15 21:30:53'), - (15265,'2005-08-22 18:35:59',1763,512,'2005-08-28 21:18:59',2,'2006-02-15 21:30:53'), - (15266,'2005-08-22 18:37:24',1870,124,'2005-08-23 17:34:24',2,'2006-02-15 21:30:53'), - (15267,'2005-08-22 18:37:48',2966,153,'2005-08-24 00:22:48',1,'2006-02-15 21:30:53'), - (15268,'2005-08-22 18:39:11',1245,301,'2005-08-26 21:46:11',1,'2006-02-15 21:30:53'), - (15269,'2005-08-22 18:39:44',524,275,'2005-08-24 17:29:44',1,'2006-02-15 21:30:53'), - (15270,'2005-08-22 18:48:42',4123,262,'2005-08-28 15:38:42',2,'2006-02-15 21:30:53'), - (15271,'2005-08-22 18:48:48',4232,59,'2005-08-30 00:45:48',2,'2006-02-15 21:30:53'), - (15272,'2005-08-22 18:49:40',1664,422,'2005-08-28 21:22:40',1,'2006-02-15 21:30:53'), - (15273,'2005-08-22 18:53:28',2558,422,'2005-08-30 18:58:28',2,'2006-02-15 21:30:53'), - (15274,'2005-08-22 18:55:52',3519,515,'2005-08-23 20:02:52',1,'2006-02-15 21:30:53'), - (15275,'2005-08-22 18:57:39',1522,597,'2005-08-23 19:00:39',2,'2006-02-15 21:30:53'), - (15276,'2005-08-22 18:59:01',4523,490,'2005-08-23 19:49:01',2,'2006-02-15 21:30:53'), - (15277,'2005-08-22 19:02:48',1780,217,'2005-08-31 18:53:48',2,'2006-02-15 21:30:53'), - (15278,'2005-08-22 19:06:47',2454,472,'2005-08-25 01:00:47',2,'2006-02-15 21:30:53'), - (15279,'2005-08-22 19:08:49',1088,363,'2005-08-30 00:38:49',2,'2006-02-15 21:30:53'), - (15280,'2005-08-22 19:09:52',3464,317,'2005-08-28 00:39:52',1,'2006-02-15 21:30:53'), - (15281,'2005-08-22 19:10:26',3992,543,'2005-08-27 21:55:26',2,'2006-02-15 21:30:53'), - (15282,'2006-02-14 15:16:03',1932,163,NULL,1,'2006-02-15 21:30:53'), - (15283,'2005-08-22 19:16:04',1688,219,'2005-08-31 21:05:04',1,'2006-02-15 21:30:53'), - (15284,'2005-08-22 19:17:08',2265,393,'2005-08-29 13:28:08',2,'2006-02-15 21:30:53'), - (15285,'2005-08-22 19:17:24',481,233,'2005-08-25 00:25:24',1,'2006-02-15 21:30:53'), - (15286,'2005-08-22 19:17:56',3731,74,'2005-08-29 16:08:56',2,'2006-02-15 21:30:53'), - (15287,'2005-08-22 19:19:37',308,535,'2005-08-29 16:05:37',1,'2006-02-15 21:30:53'), - (15288,'2005-08-22 19:23:58',1999,475,'2005-08-26 23:28:58',1,'2006-02-15 21:30:53'), - (15289,'2005-08-22 19:27:24',1026,513,'2005-08-30 22:21:24',1,'2006-02-15 21:30:53'), - (15290,'2005-08-22 19:28:02',270,404,'2005-08-31 20:04:02',2,'2006-02-15 21:30:53'), - (15291,'2005-08-22 19:28:04',1461,494,'2005-08-26 15:07:04',1,'2006-02-15 21:30:53'), - (15292,'2005-08-22 19:28:56',3072,337,'2005-08-28 22:39:56',2,'2006-02-15 21:30:53'), - (15293,'2006-02-14 15:16:03',1219,263,NULL,2,'2006-02-15 21:30:53'), - (15294,'2006-02-14 15:16:03',70,108,NULL,1,'2006-02-15 21:30:53'), - (15295,'2005-08-22 19:36:21',2164,186,'2005-08-31 00:07:21',2,'2006-02-15 21:30:53'), - (15296,'2005-08-22 19:37:20',2715,55,'2005-08-24 15:16:20',1,'2006-02-15 21:30:53'), - (15297,'2006-02-14 15:16:03',3192,327,NULL,2,'2006-02-15 21:30:53'), - (15298,'2005-08-22 19:41:37',1446,1,'2005-08-28 22:49:37',1,'2006-02-15 21:30:53'), - (15299,'2005-08-22 19:42:57',767,381,'2005-08-23 15:29:57',2,'2006-02-15 21:30:53'), - (15300,'2005-08-22 19:44:00',2319,399,'2005-08-25 22:49:00',2,'2006-02-15 21:30:53'), - (15301,'2005-08-22 19:44:16',619,454,'2005-08-26 22:57:16',2,'2006-02-15 21:30:53'), - (15302,'2005-08-22 19:44:53',188,320,'2005-08-24 18:13:53',2,'2006-02-15 21:30:53'), - (15303,'2005-08-22 19:44:59',1672,390,'2005-08-30 21:59:59',1,'2006-02-15 21:30:53'), - (15304,'2005-08-22 19:45:57',4332,112,'2005-08-28 00:21:57',2,'2006-02-15 21:30:53'), - (15305,'2005-08-22 19:46:05',671,529,'2005-08-27 19:11:05',2,'2006-02-15 21:30:53'), - (15306,'2005-08-22 19:46:36',521,340,'2005-08-27 14:09:36',1,'2006-02-15 21:30:53'), - (15307,'2005-08-22 19:54:26',4525,598,'2005-08-29 01:38:26',2,'2006-02-15 21:30:53'), - (15308,'2005-08-22 19:54:31',987,329,'2005-08-26 23:09:31',1,'2006-02-15 21:30:53'), - (15309,'2005-08-22 19:54:52',2743,141,'2005-08-24 23:00:52',2,'2006-02-15 21:30:53'), - (15310,'2005-08-22 19:56:41',2546,360,'2005-08-24 16:32:41',2,'2006-02-15 21:30:53'), - (15311,'2005-08-22 19:56:52',3612,176,'2005-08-31 20:15:52',2,'2006-02-15 21:30:53'), - (15312,'2005-08-22 19:58:15',2509,280,'2005-08-25 19:21:15',2,'2006-02-15 21:30:53'), - (15313,'2005-08-22 19:59:42',2587,333,'2005-08-24 15:03:42',2,'2006-02-15 21:30:53'), - (15314,'2006-02-14 15:16:03',2754,412,NULL,1,'2006-02-15 21:30:53'), - (15315,'2005-08-22 20:03:46',312,1,'2005-08-30 01:51:46',2,'2006-02-15 21:30:53'), - (15316,'2005-08-22 20:07:03',1830,422,'2005-08-27 18:45:03',1,'2006-02-15 21:30:53'), - (15317,'2005-08-22 20:14:13',2325,512,'2005-08-29 18:32:13',1,'2006-02-15 21:30:53'), - (15318,'2005-08-22 20:15:16',1738,60,'2005-08-25 14:17:16',1,'2006-02-15 21:30:53'), - (15319,'2005-08-22 20:17:17',3041,188,'2005-08-25 01:06:17',2,'2006-02-15 21:30:53'), - (15320,'2005-08-22 20:17:49',648,407,'2005-08-28 17:31:49',1,'2006-02-15 21:30:53'), - (15321,'2005-08-22 20:20:04',4152,384,'2005-08-24 23:26:04',2,'2006-02-15 21:30:53'), - (15322,'2005-08-22 20:20:30',3553,263,'2005-08-25 01:26:30',2,'2006-02-15 21:30:53'), - (15323,'2005-08-22 20:22:40',1153,178,'2005-08-26 00:35:40',1,'2006-02-15 21:30:53'), - (15324,'2005-08-22 20:23:13',161,93,'2005-08-29 18:23:13',1,'2006-02-15 21:30:53'), - (15325,'2005-08-22 20:27:38',3549,74,'2005-08-23 15:24:38',1,'2006-02-15 21:30:53'), - (15326,'2006-02-14 15:16:03',3320,58,NULL,1,'2006-02-15 21:30:53'), - (15327,'2005-08-22 20:31:24',1018,450,'2005-08-30 23:52:24',1,'2006-02-15 21:30:53'), - (15328,'2005-08-22 20:31:38',4546,274,'2005-08-29 20:17:38',1,'2006-02-15 21:30:53'), - (15329,'2005-08-22 20:32:39',1900,521,'2005-08-23 17:15:39',1,'2006-02-15 21:30:53'), - (15330,'2005-08-22 20:35:30',689,427,'2005-08-30 21:54:30',1,'2006-02-15 21:30:53'), - (15331,'2005-08-22 20:37:57',146,147,'2005-08-25 21:56:57',1,'2006-02-15 21:30:53'), - (15332,'2005-08-22 20:41:53',3368,162,'2005-08-24 01:45:53',1,'2006-02-15 21:30:53'), - (15333,'2005-08-22 20:44:06',1839,142,'2005-08-29 22:34:06',2,'2006-02-15 21:30:53'), - (15334,'2005-08-22 20:44:35',3882,407,'2005-08-29 23:03:35',2,'2006-02-15 21:30:53'), - (15335,'2005-08-22 20:44:55',1593,363,'2005-08-28 21:43:55',1,'2006-02-15 21:30:53'), - (15336,'2005-08-22 20:47:48',490,461,'2005-08-31 18:17:48',2,'2006-02-15 21:30:53'), - (15337,'2005-08-22 20:49:51',280,237,'2005-08-26 23:27:51',1,'2006-02-15 21:30:53'), - (15338,'2005-08-22 20:51:24',502,13,'2005-08-24 23:41:24',2,'2006-02-15 21:30:53'), - (15339,'2005-08-22 20:52:12',1660,331,'2005-08-26 00:36:12',2,'2006-02-15 21:30:53'), - (15340,'2005-08-22 20:55:56',3653,313,'2005-08-27 18:52:56',1,'2006-02-15 21:30:53'), - (15341,'2005-08-22 20:56:31',3359,91,'2005-08-30 17:25:31',1,'2006-02-15 21:30:53'), - (15342,'2005-08-22 20:56:41',3287,459,'2005-08-26 22:51:41',2,'2006-02-15 21:30:53'), - (15343,'2005-08-22 21:01:25',2589,538,'2005-08-28 16:15:25',1,'2006-02-15 21:30:53'), - (15344,'2005-08-22 21:01:48',3560,193,'2005-08-27 15:47:48',1,'2006-02-15 21:30:53'), - (15345,'2005-08-22 21:05:50',3481,277,'2005-08-26 20:30:50',1,'2006-02-15 21:30:53'), - (15346,'2005-08-22 21:06:00',3525,266,'2005-08-28 22:08:00',1,'2006-02-15 21:30:53'), - (15347,'2005-08-22 21:12:19',3764,519,'2005-08-24 20:12:19',1,'2006-02-15 21:30:53'), - (15348,'2005-08-22 21:13:46',3846,587,'2005-08-24 17:06:46',1,'2006-02-15 21:30:53'), - (15349,'2005-08-22 21:13:51',4055,587,'2005-08-23 20:55:51',1,'2006-02-15 21:30:53'), - (15350,'2005-08-22 21:15:29',1170,488,'2005-08-24 02:56:29',1,'2006-02-15 21:30:53'), - (15351,'2005-08-22 21:15:46',3260,154,'2005-08-23 17:38:46',1,'2006-02-15 21:30:53'), - (15352,'2005-08-22 21:16:54',16,560,'2005-08-31 00:38:54',2,'2006-02-15 21:30:53'), - (15353,'2005-08-22 21:18:08',3470,368,'2005-08-25 20:29:08',2,'2006-02-15 21:30:53'), - (15354,'2005-08-22 21:18:59',4212,412,'2005-08-27 20:12:59',2,'2006-02-15 21:30:53'), - (15355,'2005-08-22 21:19:24',3477,493,'2005-08-28 20:36:24',2,'2006-02-15 21:30:53'), - (15356,'2005-08-22 21:24:19',4507,539,'2005-08-25 22:32:19',2,'2006-02-15 21:30:53'), - (15357,'2005-08-22 21:28:59',727,24,'2005-08-25 17:15:59',1,'2006-02-15 21:30:53'), - (15358,'2005-08-22 21:29:14',822,448,'2005-08-31 00:10:14',2,'2006-02-15 21:30:53'), - (15359,'2005-08-22 21:34:00',4505,77,'2005-08-29 18:59:00',1,'2006-02-15 21:30:53'), - (15360,'2005-08-22 21:36:51',1950,531,'2005-08-24 16:46:51',1,'2006-02-15 21:30:53'), - (15361,'2005-08-22 21:39:45',1407,380,'2005-08-23 17:32:45',2,'2006-02-15 21:30:53'), - (15362,'2005-08-22 21:40:20',1023,497,'2005-08-29 15:55:20',1,'2006-02-15 21:30:53'), - (15363,'2005-08-22 21:41:40',2326,480,'2005-08-23 21:40:40',1,'2006-02-15 21:30:53'), - (15364,'2005-08-22 21:41:41',4184,204,'2005-08-28 00:49:41',1,'2006-02-15 21:30:53'), - (15365,'2005-08-22 21:42:17',3382,327,'2005-09-01 03:14:17',2,'2006-02-15 21:30:53'), - (15366,'2005-08-22 21:45:57',1453,374,'2005-08-30 16:35:57',1,'2006-02-15 21:30:53'), - (15367,'2005-08-22 21:47:53',160,355,'2005-08-27 17:54:53',2,'2006-02-15 21:30:53'), - (15368,'2005-08-22 21:57:15',1130,370,'2005-08-29 16:28:15',1,'2006-02-15 21:30:53'), - (15369,'2005-08-22 21:58:06',881,121,'2005-08-26 00:27:06',2,'2006-02-15 21:30:53'), - (15370,'2005-08-22 21:59:29',67,10,'2005-08-27 16:32:29',1,'2006-02-15 21:30:53'), - (15371,'2006-02-14 15:16:03',3672,94,NULL,2,'2006-02-15 21:30:53'), - (15372,'2005-08-22 21:59:51',3876,273,'2005-08-23 17:01:51',1,'2006-02-15 21:30:53'), - (15373,'2005-08-22 22:08:11',4439,14,'2005-08-24 01:05:11',2,'2006-02-15 21:30:53'), - (15374,'2005-08-22 22:09:09',4275,8,'2005-08-31 01:10:09',1,'2006-02-15 21:30:53'), - (15375,'2005-08-22 22:12:02',3864,191,'2005-08-24 00:50:02',2,'2006-02-15 21:30:53'), - (15376,'2005-08-22 22:21:35',2963,390,'2005-08-28 20:56:35',1,'2006-02-15 21:30:53'), - (15377,'2005-08-22 22:22:33',3405,551,'2005-08-29 18:41:33',1,'2006-02-15 21:30:53'), - (15378,'2005-08-22 22:25:17',1483,340,'2005-08-30 17:04:17',1,'2006-02-15 21:30:53'), - (15379,'2005-08-22 22:26:13',1899,148,'2005-08-31 18:19:13',1,'2006-02-15 21:30:53'), - (15380,'2005-08-22 22:28:15',3642,423,'2005-08-28 23:21:15',1,'2006-02-15 21:30:53'), - (15381,'2005-08-22 22:28:36',845,110,'2005-08-24 19:26:36',2,'2006-02-15 21:30:53'), - (15382,'2005-08-22 22:30:50',333,376,'2005-08-24 04:07:50',2,'2006-02-15 21:30:53'), - (15383,'2005-08-22 22:31:20',686,405,'2005-08-28 17:43:20',1,'2006-02-15 21:30:53'), - (15384,'2005-08-22 22:34:44',3208,26,'2005-08-23 23:25:44',2,'2006-02-15 21:30:53'), - (15385,'2005-08-22 22:37:34',140,434,'2005-08-26 00:36:34',2,'2006-02-15 21:30:53'), - (15386,'2005-08-22 22:41:14',3056,327,'2005-08-29 22:29:14',1,'2006-02-15 21:30:53'), - (15387,'2005-08-22 22:49:13',3879,323,'2005-08-29 01:49:13',2,'2006-02-15 21:30:53'), - (15388,'2005-08-22 22:49:23',3995,50,'2005-09-01 03:50:23',2,'2006-02-15 21:30:53'), - (15389,'2005-08-22 22:51:13',2077,231,'2005-08-28 23:46:13',1,'2006-02-15 21:30:53'), - (15390,'2005-08-22 22:57:25',462,551,'2005-08-31 18:06:25',1,'2006-02-15 21:30:53'), - (15391,'2005-08-22 23:01:45',3918,482,'2005-08-29 02:59:45',2,'2006-02-15 21:30:53'), - (15392,'2005-08-22 23:02:15',538,410,'2005-09-01 01:14:15',2,'2006-02-15 21:30:53'), - (15393,'2005-08-22 23:04:09',2924,443,'2005-08-27 02:23:09',2,'2006-02-15 21:30:53'), - (15394,'2005-08-22 23:04:21',3455,507,'2005-08-25 20:53:21',2,'2006-02-15 21:30:53'), - (15395,'2005-08-22 23:06:25',2880,526,'2005-08-30 19:18:25',1,'2006-02-15 21:30:53'), - (15396,'2005-08-22 23:07:57',4050,319,'2005-08-28 19:39:57',2,'2006-02-15 21:30:53'), - (15397,'2005-08-22 23:08:46',1482,261,'2005-08-25 20:58:46',1,'2006-02-15 21:30:53'), - (15398,'2005-08-22 23:10:49',4451,109,'2005-08-28 00:49:49',2,'2006-02-15 21:30:53'), - (15399,'2005-08-22 23:11:59',3858,379,'2005-08-26 22:16:59',2,'2006-02-15 21:30:53'), - (15400,'2005-08-22 23:13:03',2664,473,'2005-08-28 18:34:03',1,'2006-02-15 21:30:53'), - (15401,'2005-08-22 23:13:10',1721,103,'2005-09-01 03:44:10',1,'2006-02-15 21:30:53'), - (15402,'2005-08-22 23:17:41',1575,293,'2005-08-30 20:07:41',2,'2006-02-15 21:30:53'), - (15403,'2005-08-22 23:18:10',4315,581,'2005-08-23 18:08:10',2,'2006-02-15 21:30:53'), - (15404,'2005-08-22 23:19:44',3557,211,'2005-08-30 19:58:44',2,'2006-02-15 21:30:53'), - (15405,'2005-08-22 23:20:41',3263,596,'2005-08-25 23:53:41',1,'2006-02-15 21:30:53'), - (15406,'2005-08-22 23:21:22',400,227,'2005-08-28 22:21:22',1,'2006-02-15 21:30:53'), - (15407,'2006-02-14 15:16:03',3330,42,NULL,2,'2006-02-15 21:30:53'), - (15408,'2005-08-22 23:26:32',165,156,'2005-08-30 20:22:32',1,'2006-02-15 21:30:53'), - (15409,'2005-08-22 23:26:32',560,188,'2005-08-24 22:44:32',1,'2006-02-15 21:30:53'), - (15410,'2005-08-22 23:27:43',2052,403,'2005-08-29 05:12:43',2,'2006-02-15 21:30:53'), - (15411,'2005-08-22 23:35:41',4423,461,'2005-08-26 00:51:41',1,'2006-02-15 21:30:53'), - (15412,'2005-08-22 23:37:11',1267,199,'2005-08-28 23:26:11',2,'2006-02-15 21:30:53'), - (15413,'2005-08-22 23:38:01',2494,476,'2005-08-23 19:27:01',2,'2006-02-15 21:30:53'), - (15414,'2005-08-22 23:43:54',718,532,'2005-08-30 18:26:54',1,'2006-02-15 21:30:53'), - (15415,'2005-08-22 23:48:56',4176,204,'2005-09-01 02:05:56',1,'2006-02-15 21:30:53'), - (15416,'2005-08-22 23:51:23',1167,383,'2005-08-29 20:03:23',1,'2006-02-15 21:30:53'), - (15417,'2005-08-22 23:54:04',1826,305,'2005-08-26 22:25:04',1,'2006-02-15 21:30:53'), - (15418,'2005-08-22 23:54:14',808,205,'2005-08-28 04:23:14',2,'2006-02-15 21:30:53'), - (15419,'2005-08-22 23:54:36',1120,450,'2005-08-25 00:52:36',1,'2006-02-15 21:30:53'), - (15420,'2005-08-22 23:55:51',1396,161,'2005-08-31 20:09:51',2,'2006-02-15 21:30:53'), - (15421,'2005-08-22 23:56:37',3,541,'2005-08-25 18:58:37',2,'2006-02-15 21:30:53'), - (15422,'2005-08-22 23:58:09',2601,309,'2005-08-30 19:03:09',2,'2006-02-15 21:30:53'), - (15423,'2006-02-14 15:16:03',1786,596,NULL,1,'2006-02-15 21:30:53'), - (15424,'2005-08-23 00:03:01',3452,138,'2005-08-27 23:27:01',2,'2006-02-15 21:30:53'), - (15425,'2005-08-23 00:05:57',551,259,'2005-09-01 05:08:57',1,'2006-02-15 21:30:53'), - (15426,'2005-08-23 00:07:19',3280,347,'2005-08-26 23:19:19',1,'2006-02-15 21:30:53'), - (15427,'2005-08-23 00:07:53',2775,448,'2005-09-01 02:55:53',2,'2006-02-15 21:30:53'), - (15428,'2005-08-23 00:11:52',4379,402,'2005-08-24 02:35:52',1,'2006-02-15 21:30:53'), - (15429,'2005-08-23 00:20:31',740,241,'2005-08-23 20:22:31',1,'2006-02-15 21:30:53'), - (15430,'2006-02-14 15:16:03',4353,282,NULL,1,'2006-02-15 21:30:53'), - (15431,'2005-08-23 00:26:47',3251,550,'2005-08-31 23:26:47',2,'2006-02-15 21:30:53'), - (15432,'2005-08-23 00:26:52',1896,117,'2005-08-27 06:11:52',1,'2006-02-15 21:30:53'), - (15433,'2005-08-23 00:27:18',155,198,'2005-08-26 21:36:18',1,'2006-02-15 21:30:53'), - (15434,'2005-08-23 00:28:16',4378,518,'2005-08-26 04:27:16',2,'2006-02-15 21:30:53'), - (15435,'2005-08-23 00:28:19',2103,468,'2005-08-26 00:44:19',2,'2006-02-15 21:30:53'), - (15436,'2005-08-23 00:30:26',1527,505,'2005-08-28 06:29:26',1,'2006-02-15 21:30:53'), - (15437,'2005-08-23 00:31:09',4236,368,'2005-08-30 06:17:09',2,'2006-02-15 21:30:53'), - (15438,'2005-08-23 00:31:57',2030,46,'2005-08-26 20:02:57',1,'2006-02-15 21:30:53'), - (15439,'2005-08-23 00:34:28',3848,136,'2005-08-27 01:07:28',1,'2006-02-15 21:30:53'), - (15440,'2005-08-23 00:37:21',2254,559,'2005-08-24 23:24:21',1,'2006-02-15 21:30:53'), - (15441,'2006-02-14 15:16:03',258,422,NULL,2,'2006-02-15 21:30:53'), - (15442,'2005-08-23 00:42:49',1452,42,'2005-08-27 00:35:49',1,'2006-02-15 21:30:53'), - (15443,'2005-08-23 00:44:15',742,598,'2005-09-01 05:33:15',2,'2006-02-15 21:30:53'), - (15444,'2005-08-23 00:46:52',959,153,'2005-08-29 20:37:52',2,'2006-02-15 21:30:53'), - (15445,'2005-08-23 00:48:29',196,28,'2005-08-28 00:33:29',1,'2006-02-15 21:30:53'), - (15446,'2005-08-23 00:49:24',503,379,'2005-08-26 02:09:24',2,'2006-02-15 21:30:53'), - (15447,'2005-08-23 00:53:57',4090,331,'2005-08-29 06:19:57',2,'2006-02-15 21:30:53'), - (15448,'2005-08-23 00:55:24',2903,490,'2005-08-25 02:20:24',1,'2006-02-15 21:30:53'), - (15449,'2005-08-23 00:55:43',2856,461,'2005-08-28 03:41:43',1,'2006-02-15 21:30:53'), - (15450,'2005-08-23 00:56:01',1102,322,'2005-08-24 01:00:01',2,'2006-02-15 21:30:53'), - (15451,'2005-08-23 00:56:27',231,514,'2005-08-24 00:15:27',2,'2006-02-15 21:30:53'), - (15452,'2005-08-23 00:57:12',717,115,'2005-08-28 00:19:12',1,'2006-02-15 21:30:53'), - (15453,'2005-08-23 01:01:01',2,359,'2005-08-30 20:08:01',1,'2006-02-15 21:30:53'), - (15454,'2006-02-14 15:16:03',2946,142,NULL,2,'2006-02-15 21:30:53'), - (15455,'2005-08-23 01:05:00',3991,238,'2005-08-26 22:56:00',1,'2006-02-15 21:30:53'), - (15456,'2005-08-23 01:07:01',2451,262,'2005-08-24 23:28:01',2,'2006-02-15 21:30:53'), - (15457,'2005-08-23 01:07:37',4539,306,'2005-08-26 19:46:37',1,'2006-02-15 21:30:53'), - (15458,'2006-02-14 15:16:03',25,590,NULL,2,'2006-02-15 21:30:53'), - (15459,'2005-08-23 01:09:48',2058,346,'2005-08-24 04:52:48',1,'2006-02-15 21:30:53'), - (15460,'2005-08-23 01:10:42',2907,20,'2005-08-28 20:49:42',2,'2006-02-15 21:30:53'), - (15461,'2005-08-23 01:13:52',4542,103,'2005-08-30 00:44:52',1,'2006-02-15 21:30:53'), - (15462,'2005-08-23 01:14:01',3267,389,'2005-08-29 19:52:01',1,'2006-02-15 21:30:53'), - (15463,'2005-08-23 01:15:07',863,127,'2005-08-29 06:50:07',1,'2006-02-15 21:30:53'), - (15464,'2005-08-23 01:15:18',3235,62,'2005-08-29 02:58:18',2,'2006-02-15 21:30:53'), - (15465,'2005-08-23 01:16:33',362,520,'2005-08-28 20:08:33',2,'2006-02-15 21:30:53'), - (15466,'2005-08-23 01:16:55',571,418,'2005-08-29 22:57:55',1,'2006-02-15 21:30:53'), - (15467,'2005-08-23 01:22:12',3658,103,'2005-08-29 23:42:12',2,'2006-02-15 21:30:53'), - (15468,'2005-08-23 01:25:30',2440,399,'2005-08-28 01:40:30',2,'2006-02-15 21:30:53'), - (15469,'2005-08-23 01:29:59',1939,597,'2005-08-27 04:02:59',1,'2006-02-15 21:30:53'), - (15470,'2005-08-23 01:35:12',3009,416,'2005-09-01 05:33:12',1,'2006-02-15 21:30:53'), - (15471,'2005-08-23 01:38:48',2591,139,'2005-08-31 19:47:48',1,'2006-02-15 21:30:53'), - (15472,'2005-08-23 01:39:05',4293,226,'2005-08-25 04:43:05',1,'2006-02-15 21:30:53'), - (15473,'2005-08-23 01:39:10',356,259,'2005-08-25 03:48:10',1,'2006-02-15 21:30:53'), - (15474,'2005-08-23 01:39:10',3015,188,'2005-08-23 21:46:10',2,'2006-02-15 21:30:53'), - (15475,'2005-08-23 01:44:43',4503,562,'2005-08-23 23:53:43',2,'2006-02-15 21:30:53'), - (15476,'2005-08-23 01:45:07',2478,433,'2005-08-26 21:07:07',2,'2006-02-15 21:30:53'), - (15477,'2005-08-23 01:46:35',2406,142,'2005-08-28 22:12:35',1,'2006-02-15 21:30:53'), - (15478,'2005-08-23 01:50:31',4563,167,'2005-08-27 21:40:31',2,'2006-02-15 21:30:53'), - (15479,'2005-08-23 01:50:53',4182,149,'2005-08-29 00:53:53',1,'2006-02-15 21:30:53'), - (15480,'2005-08-23 01:57:20',3298,577,'2005-08-26 04:43:20',2,'2006-02-15 21:30:53'), - (15481,'2005-08-23 01:59:14',3262,414,'2005-08-27 04:38:14',1,'2006-02-15 21:30:53'), - (15482,'2005-08-23 02:01:20',3923,181,'2005-08-24 03:25:20',2,'2006-02-15 21:30:53'), - (15483,'2005-08-23 02:02:53',2970,173,'2005-08-26 04:13:53',1,'2006-02-15 21:30:53'), - (15484,'2005-08-23 02:04:49',642,342,'2005-08-24 05:46:49',1,'2006-02-15 21:30:53'), - (15485,'2005-08-23 02:04:57',281,114,'2005-08-28 07:05:57',2,'2006-02-15 21:30:53'), - (15486,'2005-08-23 02:05:20',1666,502,'2005-08-29 07:52:20',2,'2006-02-15 21:30:53'), - (15487,'2005-08-23 02:05:51',2636,469,'2005-08-25 04:45:51',1,'2006-02-15 21:30:53'), - (15488,'2005-08-23 02:06:01',4535,385,'2005-08-29 21:35:01',2,'2006-02-15 21:30:53'), - (15489,'2005-08-23 02:06:41',764,285,'2005-08-25 06:50:41',1,'2006-02-15 21:30:53'), - (15490,'2005-08-23 02:08:18',3922,493,'2005-08-30 06:15:18',1,'2006-02-15 21:30:53'), - (15491,'2005-08-23 02:08:40',2059,28,'2005-08-23 20:23:40',2,'2006-02-15 21:30:53'), - (15492,'2005-08-23 02:13:46',1298,520,'2005-08-26 21:53:46',2,'2006-02-15 21:30:53'), - (15493,'2005-08-23 02:20:53',3521,308,'2005-08-25 23:02:53',1,'2006-02-15 21:30:53'), - (15494,'2005-08-23 02:25:09',2968,455,'2005-08-27 00:18:09',1,'2006-02-15 21:30:53'), - (15495,'2005-08-23 02:26:10',4310,193,'2005-08-30 01:07:10',2,'2006-02-15 21:30:53'), - (15496,'2005-08-23 02:30:23',1863,275,'2005-08-31 03:31:23',2,'2006-02-15 21:30:53'), - (15497,'2006-02-14 15:16:03',363,107,NULL,1,'2006-02-15 21:30:53'), - (15498,'2005-08-23 02:33:27',1583,83,'2005-08-23 22:30:27',1,'2006-02-15 21:30:53'), - (15499,'2005-08-23 02:37:19',630,488,'2005-08-23 20:57:19',1,'2006-02-15 21:30:53'), - (15500,'2005-08-23 02:39:37',886,74,'2005-08-27 06:42:37',1,'2006-02-15 21:30:53'), - (15501,'2005-08-23 02:39:56',4468,138,'2005-08-25 04:39:56',1,'2006-02-15 21:30:53'), - (15502,'2005-08-23 02:40:04',3219,433,'2005-08-31 00:36:04',2,'2006-02-15 21:30:53'), - (15503,'2005-08-23 02:44:49',4519,582,'2005-08-27 06:33:49',2,'2006-02-15 21:30:53'), - (15504,'2005-08-23 02:45:21',1967,315,'2005-09-01 03:24:21',2,'2006-02-15 21:30:53'), - (15505,'2005-08-23 02:46:13',1144,375,'2005-08-26 23:34:13',2,'2006-02-15 21:30:53'), - (15506,'2005-08-23 02:48:24',1914,553,'2005-08-28 04:10:24',1,'2006-02-15 21:30:53'), - (15507,'2005-08-23 02:48:26',3130,563,'2005-08-27 01:32:26',1,'2006-02-15 21:30:53'), - (15508,'2005-08-23 02:49:04',4035,293,'2005-08-29 00:58:04',1,'2006-02-15 21:30:53'), - (15509,'2005-08-23 02:51:24',1291,6,'2005-08-31 06:21:24',2,'2006-02-15 21:30:53'), - (15510,'2005-08-23 02:51:27',3239,209,'2005-09-01 02:44:27',2,'2006-02-15 21:30:53'), - (15511,'2005-08-23 02:55:42',3327,303,'2005-08-31 03:14:42',2,'2006-02-15 21:30:53'), - (15512,'2005-08-23 02:57:30',4336,25,'2005-08-25 01:47:30',2,'2006-02-15 21:30:53'), - (15513,'2005-08-23 03:01:56',3779,147,'2005-08-24 23:46:56',2,'2006-02-15 21:30:53'), - (15514,'2005-08-23 03:03:40',2824,366,'2005-08-24 01:06:40',1,'2006-02-15 21:30:53'), - (15515,'2005-08-23 03:03:53',3940,307,'2005-08-25 08:27:53',2,'2006-02-15 21:30:53'), - (15516,'2005-08-23 03:12:54',219,82,'2005-08-30 04:02:54',1,'2006-02-15 21:30:53'), - (15517,'2005-08-23 03:13:01',2221,187,'2005-08-25 21:14:01',2,'2006-02-15 21:30:53'), - (15518,'2005-08-23 03:19:34',3522,410,'2005-08-24 02:55:34',1,'2006-02-15 21:30:53'), - (15519,'2005-08-23 03:23:32',542,443,'2005-08-25 03:48:32',1,'2006-02-15 21:30:53'), - (15520,'2005-08-23 03:30:45',1792,163,'2005-09-01 00:20:45',1,'2006-02-15 21:30:53'), - (15521,'2005-08-23 03:30:51',134,331,'2005-08-28 22:09:51',1,'2006-02-15 21:30:53'), - (15522,'2005-08-23 03:32:31',2396,468,'2005-08-30 02:17:31',2,'2006-02-15 21:30:53'), - (15523,'2005-08-23 03:32:36',2570,432,'2005-08-26 22:08:36',2,'2006-02-15 21:30:53'), - (15524,'2005-08-23 03:36:26',2886,68,'2005-08-26 06:28:26',2,'2006-02-15 21:30:53'), - (15525,'2005-08-23 03:43:32',3509,123,'2005-08-25 07:31:32',2,'2006-02-15 21:30:53'), - (15526,'2005-08-23 03:44:30',2892,516,'2005-08-30 08:19:30',1,'2006-02-15 21:30:53'), - (15527,'2005-08-23 03:44:51',88,393,'2005-08-25 03:09:51',1,'2006-02-15 21:30:53'), - (15528,'2005-08-23 03:45:40',3033,114,'2005-08-25 01:16:40',1,'2006-02-15 21:30:53'), - (15529,'2005-08-23 03:46:47',4015,19,'2005-08-24 00:59:47',1,'2006-02-15 21:30:53'), - (15530,'2005-08-23 03:50:48',154,167,'2005-08-28 22:17:48',2,'2006-02-15 21:30:53'), - (15531,'2005-08-23 03:52:36',2410,355,'2005-08-25 23:21:36',1,'2006-02-15 21:30:53'), - (15532,'2006-02-14 15:16:03',1061,23,NULL,1,'2006-02-15 21:30:53'), - (15533,'2005-08-23 03:54:39',1895,400,'2005-08-26 08:27:39',2,'2006-02-15 21:30:53'), - (15534,'2005-08-23 03:55:54',544,169,'2005-08-24 03:54:54',1,'2006-02-15 21:30:53'), - (15535,'2005-08-23 03:58:02',2371,346,'2005-08-25 05:06:02',2,'2006-02-15 21:30:53'), - (15536,'2005-08-23 03:58:28',4004,98,'2005-08-31 03:28:28',2,'2006-02-15 21:30:53'), - (15537,'2005-08-23 04:00:30',2958,137,'2005-08-24 01:45:30',2,'2006-02-15 21:30:53'), - (15538,'2005-08-23 04:07:37',4226,211,'2005-08-28 07:37:37',1,'2006-02-15 21:30:53'), - (15539,'2005-08-23 04:09:03',2853,582,'2005-08-26 04:01:03',1,'2006-02-15 21:30:53'), - (15540,'2005-08-23 04:12:52',1696,197,'2005-08-31 04:25:52',1,'2006-02-15 21:30:53'), - (15541,'2005-08-23 04:13:53',2762,148,'2005-08-29 05:51:53',1,'2006-02-15 21:30:53'), - (15542,'2006-02-14 15:16:03',21,111,NULL,1,'2006-02-15 21:30:53'), - (15543,'2005-08-23 04:15:41',3836,282,'2005-09-01 05:09:41',2,'2006-02-15 21:30:53'), - (15544,'2005-08-23 04:17:56',1918,30,'2005-09-01 00:43:56',2,'2006-02-15 21:30:53'), - (15545,'2005-08-23 04:20:16',843,513,'2005-08-29 08:22:16',1,'2006-02-15 21:30:53'), - (15546,'2005-08-23 04:20:38',2087,223,'2005-09-01 09:57:38',2,'2006-02-15 21:30:53'), - (15547,'2005-08-23 04:25:50',1488,69,'2005-08-26 00:57:50',1,'2006-02-15 21:30:53'), - (15548,'2005-08-23 04:26:20',2350,334,'2005-08-28 01:27:20',1,'2006-02-15 21:30:53'), - (15549,'2005-08-23 04:27:06',369,170,'2005-09-01 06:07:06',1,'2006-02-15 21:30:53'), - (15550,'2005-08-23 04:27:54',1375,465,'2005-08-29 01:29:54',1,'2006-02-15 21:30:53'), - (15551,'2005-08-23 04:28:25',3570,345,'2005-08-26 07:19:25',1,'2006-02-15 21:30:53'), - (15552,'2005-08-23 04:33:23',4347,527,'2005-09-01 10:25:23',2,'2006-02-15 21:30:53'), - (15553,'2005-08-23 04:33:39',1659,232,'2005-08-25 07:53:39',2,'2006-02-15 21:30:53'), - (15554,'2005-08-23 04:48:12',198,280,'2005-08-29 05:11:12',1,'2006-02-15 21:30:53'), - (15555,'2005-08-23 04:51:52',1869,347,'2005-08-24 01:01:52',1,'2006-02-15 21:30:53'), - (15556,'2005-08-23 04:52:16',3683,108,'2005-09-01 02:05:16',2,'2006-02-15 21:30:53'), - (15557,'2005-08-23 04:52:17',3641,444,'2005-08-30 02:15:17',2,'2006-02-15 21:30:53'), - (15558,'2005-08-23 04:52:22',638,474,'2005-09-01 02:26:22',1,'2006-02-15 21:30:53'), - (15559,'2005-08-23 04:55:05',1773,517,'2005-08-30 09:01:05',2,'2006-02-15 21:30:53'), - (15560,'2005-08-23 05:01:13',3616,107,'2005-09-01 05:02:13',1,'2006-02-15 21:30:53'), - (15561,'2005-08-23 05:02:31',68,469,'2005-09-01 02:51:31',1,'2006-02-15 21:30:53'), - (15562,'2005-08-23 05:04:33',4238,149,'2005-08-27 09:58:33',1,'2006-02-15 21:30:53'), - (15563,'2005-08-23 05:08:58',170,372,'2005-08-24 04:24:58',1,'2006-02-15 21:30:53'), - (15564,'2005-08-23 05:10:42',1268,353,'2005-08-30 03:17:42',1,'2006-02-15 21:30:53'), - (15565,'2005-08-23 05:13:09',71,546,'2005-08-30 08:58:09',2,'2006-02-15 21:30:53'), - (15566,'2005-08-23 05:17:23',4344,76,'2005-09-01 08:09:23',2,'2006-02-15 21:30:53'), - (15567,'2005-08-23 05:20:36',2506,54,'2005-08-24 10:09:36',2,'2006-02-15 21:30:53'), - (15568,'2005-08-23 05:24:09',988,556,'2005-08-27 08:57:09',2,'2006-02-15 21:30:53'), - (15569,'2005-08-23 05:24:29',1071,313,'2005-08-30 08:23:29',2,'2006-02-15 21:30:53'), - (15570,'2005-08-23 05:24:55',4014,557,'2005-08-31 07:06:55',2,'2006-02-15 21:30:53'), - (15571,'2005-08-23 05:26:30',716,57,'2005-08-29 00:54:30',2,'2006-02-15 21:30:53'), - (15572,'2005-08-23 05:28:01',2816,506,'2005-08-27 00:14:01',2,'2006-02-15 21:30:53'), - (15573,'2005-08-23 05:28:36',3133,561,'2005-08-27 05:37:36',2,'2006-02-15 21:30:53'), - (15574,'2005-08-23 05:29:32',3253,130,'2005-09-01 01:25:32',2,'2006-02-15 21:30:53'), - (15575,'2005-08-23 05:30:19',3916,218,'2005-08-27 05:19:19',2,'2006-02-15 21:30:53'), - (15576,'2005-08-23 05:32:03',3257,595,'2005-08-26 02:31:03',1,'2006-02-15 21:30:53'), - (15577,'2006-02-14 15:16:03',539,29,NULL,2,'2006-02-15 21:30:53'), - (15578,'2005-08-23 05:37:13',2829,302,'2005-08-27 01:11:13',1,'2006-02-15 21:30:53'), - (15579,'2005-08-23 05:38:41',3986,480,'2005-08-29 09:18:41',1,'2006-02-15 21:30:53'), - (15580,'2005-08-23 05:39:06',754,279,'2005-09-01 01:14:06',2,'2006-02-15 21:30:53'), - (15581,'2005-08-23 05:42:13',4010,462,'2005-08-28 00:03:13',1,'2006-02-15 21:30:53'), - (15582,'2005-08-23 05:45:44',4264,297,'2005-08-25 07:54:44',2,'2006-02-15 21:30:53'), - (15583,'2005-08-23 05:47:55',4299,215,'2005-08-26 01:46:55',1,'2006-02-15 21:30:53'), - (15584,'2005-08-23 05:49:21',3526,500,'2005-08-27 04:49:21',1,'2006-02-15 21:30:53'), - (15585,'2005-08-23 05:55:22',1177,545,'2005-08-24 11:45:22',2,'2006-02-15 21:30:53'), - (15586,'2005-08-23 05:57:04',3232,148,'2005-08-31 01:59:04',1,'2006-02-15 21:30:53'), - (15587,'2005-08-23 06:00:28',2510,499,'2005-08-29 10:15:28',1,'2006-02-15 21:30:53'), - (15588,'2005-08-23 06:02:35',1810,503,'2005-08-30 04:01:35',2,'2006-02-15 21:30:53'), - (15589,'2005-08-23 06:03:31',2379,22,'2005-08-30 07:44:31',2,'2006-02-15 21:30:53'), - (15590,'2005-08-23 06:09:44',4048,599,'2005-09-01 06:53:44',2,'2006-02-15 21:30:53'), - (15591,'2005-08-23 06:11:52',64,62,'2005-08-25 05:34:52',1,'2006-02-15 21:30:53'), - (15593,'2005-08-23 06:15:09',3734,153,'2005-08-27 07:47:09',2,'2006-02-15 21:30:53'), - (15594,'2005-08-23 06:18:43',4227,567,'2005-09-01 09:09:43',2,'2006-02-15 21:30:53'), - (15595,'2005-08-23 06:19:12',4046,264,'2005-08-31 04:52:12',1,'2006-02-15 21:30:53'), - (15596,'2005-08-23 06:19:51',3834,186,'2005-08-25 03:32:51',1,'2006-02-15 21:30:53'), - (15597,'2005-08-23 06:21:20',3795,420,'2005-08-28 02:47:20',2,'2006-02-15 21:30:53'), - (15598,'2005-08-23 06:23:26',2794,66,'2005-09-01 05:43:26',1,'2006-02-15 21:30:53'), - (15599,'2005-08-23 06:25:07',4560,103,'2005-08-29 00:48:07',1,'2006-02-15 21:30:53'), - (15600,'2005-08-23 06:31:24',2260,113,'2005-08-28 06:53:24',1,'2006-02-15 21:30:53'), - (15601,'2005-08-23 06:33:26',3643,579,'2005-08-24 04:10:26',1,'2006-02-15 21:30:53'), - (15602,'2005-08-23 06:41:07',1429,81,'2005-08-24 07:16:07',1,'2006-02-15 21:30:53'), - (15603,'2005-08-23 06:41:32',2565,6,'2005-08-28 08:51:32',1,'2006-02-15 21:30:53'), - (15604,'2005-08-23 06:44:19',4000,458,'2005-08-29 07:17:19',1,'2006-02-15 21:30:53'), - (15605,'2005-08-23 06:48:47',3152,544,'2005-08-28 06:09:47',1,'2006-02-15 21:30:53'), - (15606,'2005-08-23 06:50:27',1811,279,'2005-08-28 04:23:27',2,'2006-02-15 21:30:53'), - (15607,'2005-08-23 06:54:06',4118,484,'2005-08-26 05:03:06',2,'2006-02-15 21:30:53'), - (15608,'2005-08-23 06:55:26',2921,454,'2005-08-28 10:24:26',1,'2006-02-15 21:30:53'), - (15609,'2005-08-23 06:56:04',1730,256,'2005-09-01 03:25:04',1,'2006-02-15 21:30:53'), - (15610,'2005-08-23 06:56:15',2076,215,'2005-08-24 07:37:15',2,'2006-02-15 21:30:53'), - (15611,'2005-08-23 06:56:18',1713,184,'2005-08-25 06:10:18',1,'2006-02-15 21:30:53'), - (15612,'2005-08-23 06:59:07',3367,305,'2005-09-01 11:26:07',2,'2006-02-15 21:30:53'), - (15613,'2005-08-23 07:03:19',307,461,'2005-08-31 07:50:19',2,'2006-02-15 21:30:53'), - (15614,'2005-08-23 07:05:15',1216,287,'2005-09-01 11:41:15',1,'2006-02-15 21:30:53'), - (15615,'2005-08-23 07:06:00',899,584,'2005-08-30 11:21:00',2,'2006-02-15 21:30:53'), - (15616,'2005-08-23 07:06:38',2947,70,'2005-08-30 04:16:38',1,'2006-02-15 21:30:53'), - (15617,'2005-08-23 07:07:22',4085,569,'2005-08-27 01:24:22',2,'2006-02-15 21:30:53'), - (15618,'2005-08-23 07:07:58',1903,60,'2005-08-29 03:48:58',1,'2006-02-15 21:30:53'), - (15619,'2005-08-23 07:10:14',2468,3,'2005-08-26 07:21:14',2,'2006-02-15 21:30:53'), - (15620,'2005-08-23 07:10:22',1173,270,'2005-08-28 06:51:22',2,'2006-02-15 21:30:53'), - (15621,'2005-08-23 07:13:43',3832,123,'2005-08-29 08:19:43',1,'2006-02-15 21:30:53'), - (15622,'2005-08-23 07:22:02',3335,302,'2005-09-01 06:08:02',2,'2006-02-15 21:30:53'), - (15623,'2005-08-23 07:23:29',3003,525,'2005-08-31 01:47:29',1,'2006-02-15 21:30:53'), - (15624,'2005-08-23 07:24:27',396,105,'2005-08-29 12:36:27',2,'2006-02-15 21:30:53'), - (15625,'2005-08-23 07:25:29',4200,207,'2005-08-27 13:17:29',2,'2006-02-15 21:30:53'), - (15626,'2005-08-23 07:25:34',640,370,'2005-08-28 11:01:34',1,'2006-02-15 21:30:53'), - (15627,'2005-08-23 07:25:38',1364,453,'2005-08-31 02:53:38',2,'2006-02-15 21:30:53'), - (15628,'2005-08-23 07:28:04',1348,408,'2005-08-26 04:23:04',1,'2006-02-15 21:30:53'), - (15629,'2005-08-23 07:28:22',3725,286,'2005-08-29 06:29:22',2,'2006-02-15 21:30:53'), - (15630,'2005-08-23 07:29:13',3590,580,'2005-08-31 04:33:13',2,'2006-02-15 21:30:53'), - (15631,'2005-08-23 07:30:23',2458,93,'2005-08-24 07:23:23',1,'2006-02-15 21:30:53'), - (15632,'2005-08-23 07:30:26',2941,60,'2005-08-24 07:53:26',2,'2006-02-15 21:30:53'), - (15633,'2005-08-23 07:31:10',882,497,'2005-08-26 04:35:10',2,'2006-02-15 21:30:53'), - (15634,'2005-08-23 07:34:18',2517,576,'2005-08-24 12:00:18',2,'2006-02-15 21:30:53'), - (15635,'2005-08-23 07:43:00',3308,4,'2005-08-27 10:47:00',1,'2006-02-15 21:30:53'), - (15636,'2005-08-23 07:50:46',1169,380,'2005-08-26 07:59:46',2,'2006-02-15 21:30:53'), - (15637,'2005-08-23 07:53:38',445,172,'2005-08-29 03:16:38',2,'2006-02-15 21:30:53'), - (15638,'2005-08-23 07:54:54',3358,563,'2005-08-30 13:33:54',2,'2006-02-15 21:30:53'), - (15639,'2005-08-23 08:03:25',42,214,'2005-08-24 10:21:25',2,'2006-02-15 21:30:53'), - (15640,'2005-08-23 08:04:40',3505,262,'2005-08-24 06:38:40',1,'2006-02-15 21:30:53'), - (15641,'2005-08-23 08:06:49',3126,240,'2005-08-24 13:17:49',1,'2006-02-15 21:30:53'), - (15642,'2005-08-23 08:09:11',2627,160,'2005-08-28 05:57:11',1,'2006-02-15 21:30:53'), - (15643,'2005-08-23 08:13:26',103,298,'2005-08-25 05:18:26',2,'2006-02-15 21:30:53'), - (15644,'2006-02-14 15:16:03',3139,43,NULL,2,'2006-02-15 21:30:53'), - (15645,'2006-02-14 15:16:03',3838,214,NULL,2,'2006-02-15 21:30:53'), - (15646,'2005-08-23 08:19:55',3217,114,'2005-08-29 02:32:55',1,'2006-02-15 21:30:53'), - (15647,'2005-08-23 08:23:56',2051,251,'2005-08-26 11:00:56',1,'2006-02-15 21:30:53'), - (15648,'2005-08-23 08:27:57',4039,80,'2005-08-30 08:53:57',2,'2006-02-15 21:30:53'), - (15649,'2005-08-23 08:28:03',415,60,'2005-08-30 05:11:03',1,'2006-02-15 21:30:53'), - (15650,'2005-08-23 08:29:53',2447,353,'2005-08-25 07:23:53',2,'2006-02-15 21:30:53'), - (15651,'2005-08-23 08:31:49',3393,451,'2005-08-26 02:57:49',1,'2006-02-15 21:30:53'), - (15652,'2005-08-23 08:34:10',4440,578,'2005-08-30 12:31:10',1,'2006-02-15 21:30:53'), - (15653,'2005-08-23 08:34:42',2736,439,'2005-09-01 03:07:42',1,'2006-02-15 21:30:53'), - (15654,'2005-08-23 08:34:53',4360,471,'2005-08-30 04:18:53',2,'2006-02-15 21:30:53'), - (15655,'2006-02-14 15:16:03',604,359,NULL,1,'2006-02-15 21:30:53'), - (15656,'2005-08-23 08:38:58',4239,334,'2005-08-24 04:08:58',2,'2006-02-15 21:30:53'), - (15657,'2005-08-23 08:42:40',1897,36,'2005-09-01 13:08:40',1,'2006-02-15 21:30:53'), - (15658,'2005-08-23 08:48:43',3565,22,'2005-08-25 05:38:43',1,'2006-02-15 21:30:53'), - (15659,'2005-08-23 08:48:43',4573,131,'2005-08-27 14:19:43',2,'2006-02-15 21:30:53'), - (15660,'2005-08-23 08:51:21',3223,388,'2005-08-28 06:26:21',2,'2006-02-15 21:30:53'), - (15661,'2005-08-23 08:52:03',1599,346,'2005-08-30 08:17:03',2,'2006-02-15 21:30:53'), - (15662,'2005-08-23 08:52:50',3028,223,'2005-08-24 08:08:50',1,'2006-02-15 21:30:53'), - (15663,'2005-08-23 08:54:26',3291,291,'2005-08-29 02:56:26',1,'2006-02-15 21:30:53'), - (15664,'2005-08-23 08:57:11',2029,351,'2005-08-31 14:19:11',2,'2006-02-15 21:30:53'), - (15665,'2005-08-23 08:59:12',3471,487,'2005-08-24 12:50:12',2,'2006-02-15 21:30:53'), - (15666,'2005-08-23 09:01:10',3406,586,'2005-08-31 12:32:10',2,'2006-02-15 21:30:53'), - (15667,'2005-08-23 09:02:03',1302,73,'2005-08-24 05:47:03',1,'2006-02-15 21:30:53'), - (15668,'2005-08-23 09:02:04',1963,38,'2005-08-29 03:17:04',2,'2006-02-15 21:30:53'), - (15669,'2005-08-23 09:06:17',1542,334,'2005-08-30 08:10:17',2,'2006-02-15 21:30:53'), - (15670,'2005-08-23 09:07:11',2834,211,'2005-08-31 04:32:11',2,'2006-02-15 21:30:53'), - (15671,'2005-08-23 09:08:16',3716,112,'2005-08-29 14:01:16',1,'2006-02-15 21:30:53'), - (15672,'2005-08-23 09:09:18',701,210,'2005-08-27 06:19:18',1,'2006-02-15 21:30:53'), - (15673,'2005-08-23 09:12:50',3096,321,'2005-08-29 12:45:50',2,'2006-02-15 21:30:53'), - (15674,'2005-08-23 09:16:39',4482,90,'2005-09-01 11:57:39',1,'2006-02-15 21:30:53'), - (15675,'2005-08-23 09:18:52',4153,293,'2005-08-30 14:59:52',2,'2006-02-15 21:30:53'), - (15676,'2005-08-23 09:23:08',3874,353,'2005-08-30 06:19:08',2,'2006-02-15 21:30:53'), - (15677,'2005-08-23 09:23:36',2050,109,'2005-08-27 05:01:36',1,'2006-02-15 21:30:53'), - (15678,'2005-08-23 09:23:45',1345,413,'2005-08-27 11:38:45',2,'2006-02-15 21:30:53'), - (15679,'2005-08-23 09:27:29',2945,103,'2005-08-28 09:14:29',1,'2006-02-15 21:30:53'), - (15680,'2005-08-23 09:33:22',1370,169,'2005-08-31 13:29:22',2,'2006-02-15 21:30:53'), - (15681,'2005-08-23 09:35:34',2813,61,'2005-08-27 08:33:34',1,'2006-02-15 21:30:53'), - (15682,'2005-08-23 09:37:34',3293,31,'2005-08-31 06:01:34',1,'2006-02-15 21:30:53'), - (15683,'2005-08-23 09:38:17',3787,168,'2005-08-30 12:31:17',2,'2006-02-15 21:30:53'), - (15684,'2005-08-23 09:40:04',3976,586,'2005-08-28 15:28:04',1,'2006-02-15 21:30:53'), - (15685,'2005-08-23 09:41:28',370,491,'2005-08-30 10:11:28',1,'2006-02-15 21:30:53'), - (15686,'2005-08-23 09:42:21',2041,206,'2005-08-29 12:22:21',1,'2006-02-15 21:30:53'), - (15687,'2005-08-23 09:46:33',276,112,'2005-09-01 06:07:33',1,'2006-02-15 21:30:53'), - (15688,'2005-08-23 09:48:45',2851,105,'2005-08-30 10:28:45',2,'2006-02-15 21:30:53'), - (15689,'2005-08-23 09:52:55',248,259,'2005-08-29 11:15:55',1,'2006-02-15 21:30:53'), - (15690,'2005-08-23 09:53:30',2102,554,'2005-08-29 10:27:30',1,'2006-02-15 21:30:53'), - (15691,'2005-08-23 09:53:54',784,200,'2005-08-27 10:14:54',1,'2006-02-15 21:30:53'), - (15692,'2005-08-23 10:00:02',1852,503,'2005-08-24 05:25:02',1,'2006-02-15 21:30:53'), - (15693,'2005-08-23 10:00:24',748,94,'2005-08-25 08:23:24',1,'2006-02-15 21:30:53'), - (15694,'2005-08-23 10:02:46',3017,506,'2005-08-31 05:46:46',2,'2006-02-15 21:30:53'), - (15695,'2006-02-14 15:16:03',2954,300,NULL,1,'2006-02-15 21:30:53'), - (15696,'2005-08-23 10:04:17',2836,93,'2005-08-25 08:47:17',2,'2006-02-15 21:30:53'), - (15697,'2005-08-23 10:04:36',1987,380,'2005-08-24 05:00:36',2,'2006-02-15 21:30:53'), - (15698,'2005-08-23 10:11:40',4465,395,'2005-08-28 08:50:40',2,'2006-02-15 21:30:53'), - (15699,'2005-08-23 10:20:35',4155,501,'2005-08-30 13:56:35',1,'2006-02-15 21:30:53'), - (15700,'2005-08-23 10:21:21',2935,552,'2005-08-24 15:37:21',1,'2006-02-15 21:30:53'), - (15701,'2005-08-23 10:22:21',2942,516,'2005-08-24 10:52:21',1,'2006-02-15 21:30:53'), - (15702,'2005-08-23 10:23:28',1602,56,'2005-08-29 11:08:28',2,'2006-02-15 21:30:53'), - (15703,'2005-08-23 10:23:48',2883,322,'2005-09-01 06:54:48',2,'2006-02-15 21:30:53'), - (15704,'2005-08-23 10:25:45',738,71,'2005-08-29 16:06:45',2,'2006-02-15 21:30:53'), - (15705,'2005-08-23 10:32:52',936,356,'2005-08-29 13:18:52',2,'2006-02-15 21:30:53'), - (15706,'2005-08-23 10:32:52',4486,220,'2005-08-24 07:03:52',2,'2006-02-15 21:30:53'), - (15707,'2005-08-23 10:35:45',3646,91,'2005-08-27 10:57:45',1,'2006-02-15 21:30:53'), - (15708,'2005-08-23 10:35:51',1974,46,'2005-08-27 16:02:51',1,'2006-02-15 21:30:53'), - (15709,'2005-08-23 10:36:00',346,206,'2005-08-28 06:18:00',2,'2006-02-15 21:30:53'), - (15710,'2006-02-14 15:16:03',1020,421,NULL,1,'2006-02-15 21:30:53'), - (15711,'2005-08-23 10:43:00',789,297,'2005-08-29 16:29:00',1,'2006-02-15 21:30:53'), - (15712,'2005-08-23 10:43:56',1882,351,'2005-08-29 15:35:56',2,'2006-02-15 21:30:53'), - (15713,'2005-08-23 10:56:15',337,432,'2005-08-29 09:14:15',2,'2006-02-15 21:30:53'), - (15714,'2006-02-14 15:16:03',2083,56,NULL,1,'2006-02-15 21:30:53'), - (15715,'2005-08-23 10:57:40',3808,86,'2005-08-28 12:40:40',1,'2006-02-15 21:30:53'), - (15716,'2005-08-23 11:02:00',2812,408,'2005-08-28 14:46:00',1,'2006-02-15 21:30:53'), - (15717,'2006-02-14 15:16:03',902,208,NULL,2,'2006-02-15 21:30:53'), - (15718,'2005-08-23 11:05:17',2180,276,'2005-08-28 12:50:17',1,'2006-02-15 21:30:53'), - (15719,'2005-08-23 11:08:46',3990,599,'2005-08-25 07:25:46',1,'2006-02-15 21:30:53'), - (15720,'2005-08-23 11:15:20',2490,456,'2005-08-31 09:49:20',1,'2006-02-15 21:30:53'), - (15721,'2005-08-23 11:16:16',685,154,'2005-08-28 10:21:16',1,'2006-02-15 21:30:53'), - (15722,'2005-08-23 11:16:29',2809,26,'2005-09-01 13:24:29',2,'2006-02-15 21:30:53'), - (15723,'2005-08-23 11:17:26',3915,504,'2005-08-31 13:58:26',2,'2006-02-15 21:30:53'), - (15724,'2005-08-23 11:22:09',1025,478,'2005-08-28 12:56:09',2,'2006-02-15 21:30:53'), - (15725,'2005-08-23 11:25:00',378,599,'2005-08-26 11:46:00',1,'2006-02-15 21:30:53'), - (15726,'2005-08-23 11:28:26',906,503,'2005-08-28 11:23:26',2,'2006-02-15 21:30:53'), - (15727,'2005-08-23 11:28:49',2184,416,'2005-08-24 06:24:49',2,'2006-02-15 21:30:53'), - (15728,'2005-08-23 11:30:32',2567,323,'2005-08-28 09:52:32',2,'2006-02-15 21:30:53'), - (15729,'2006-02-14 15:16:03',2699,193,NULL,2,'2006-02-15 21:30:53'), - (15730,'2005-08-23 11:32:35',947,147,'2005-08-30 13:46:35',2,'2006-02-15 21:30:53'), - (15731,'2005-08-23 11:33:25',3403,118,'2005-08-24 07:19:25',2,'2006-02-15 21:30:53'), - (15732,'2005-08-23 11:35:12',3247,412,'2005-08-26 12:50:12',2,'2006-02-15 21:30:53'), - (15733,'2005-08-23 11:37:32',4185,512,'2005-08-28 16:27:32',1,'2006-02-15 21:30:53'), - (15734,'2005-08-23 11:40:08',3952,302,'2005-08-27 08:16:08',1,'2006-02-15 21:30:53'), - (15735,'2006-02-14 15:16:03',3167,295,NULL,1,'2006-02-15 21:30:53'), - (15736,'2005-08-23 11:40:30',4272,127,'2005-08-30 12:40:30',1,'2006-02-15 21:30:53'), - (15737,'2005-08-23 11:52:18',996,83,'2005-08-28 15:28:18',1,'2006-02-15 21:30:53'), - (15738,'2005-08-23 11:55:50',556,38,'2005-08-30 15:07:50',1,'2006-02-15 21:30:53'), - (15739,'2005-08-23 11:56:22',266,74,'2005-08-29 16:10:22',2,'2006-02-15 21:30:53'), - (15740,'2005-08-23 12:07:51',100,229,'2005-08-24 13:23:51',2,'2006-02-15 21:30:53'), - (15741,'2005-08-23 12:10:54',4243,126,'2005-08-24 10:08:54',2,'2006-02-15 21:30:53'), - (15742,'2005-08-23 12:11:37',1339,200,'2005-08-31 07:28:37',2,'2006-02-15 21:30:53'), - (15743,'2005-08-23 12:12:05',1625,139,'2005-08-26 11:35:05',1,'2006-02-15 21:30:53'), - (15744,'2005-08-23 12:15:51',2364,59,'2005-08-31 17:19:51',1,'2006-02-15 21:30:53'), - (15745,'2006-02-14 15:16:03',2737,43,NULL,1,'2006-02-15 21:30:53'), - (15746,'2005-08-23 12:26:19',2241,246,'2005-08-26 09:51:19',2,'2006-02-15 21:30:53'), - (15747,'2005-08-23 12:29:24',1517,381,'2005-08-31 08:27:24',2,'2006-02-15 21:30:53'), - (15748,'2005-08-23 12:33:00',2757,380,'2005-08-25 15:15:00',2,'2006-02-15 21:30:53'), - (15749,'2005-08-23 12:33:41',4224,575,'2005-08-24 10:52:41',1,'2006-02-15 21:30:53'), - (15750,'2005-08-23 12:36:05',4474,496,'2005-08-24 17:40:05',2,'2006-02-15 21:30:53'), - (15751,'2005-08-23 12:41:07',697,199,'2005-08-29 07:03:07',2,'2006-02-15 21:30:53'), - (15752,'2005-08-23 12:41:38',2112,17,'2005-09-01 14:06:38',1,'2006-02-15 21:30:53'), - (15753,'2005-08-23 12:43:30',3451,144,'2005-09-01 09:07:30',2,'2006-02-15 21:30:53'), - (15754,'2005-08-23 12:43:42',2306,356,'2005-08-27 17:45:42',2,'2006-02-15 21:30:53'), - (15755,'2005-08-23 12:46:38',511,423,'2005-08-25 12:59:38',1,'2006-02-15 21:30:53'), - (15756,'2005-08-23 12:47:05',878,112,'2005-08-28 08:34:05',2,'2006-02-15 21:30:53'), - (15757,'2005-08-23 12:47:16',1308,356,'2005-08-29 17:19:16',1,'2006-02-15 21:30:53'), - (15758,'2005-08-23 12:47:26',152,46,'2005-08-29 11:05:26',2,'2006-02-15 21:30:53'), - (15759,'2005-08-23 12:47:37',1341,361,'2005-09-01 11:28:37',2,'2006-02-15 21:30:53'), - (15760,'2005-08-23 12:50:00',3050,273,'2005-08-29 15:41:00',2,'2006-02-15 21:30:53'), - (15761,'2005-08-23 12:55:51',4362,416,'2005-08-26 16:51:51',1,'2006-02-15 21:30:53'), - (15762,'2005-08-23 13:01:43',887,351,'2005-08-26 16:35:43',1,'2006-02-15 21:30:53'), - (15763,'2005-08-23 13:02:59',124,158,'2005-08-24 17:45:59',2,'2006-02-15 21:30:53'), - (15764,'2005-08-23 13:05:10',2937,8,'2005-08-25 16:15:10',1,'2006-02-15 21:30:53'), - (15765,'2005-08-23 13:06:19',1250,408,'2005-08-31 12:18:19',1,'2006-02-15 21:30:53'), - (15766,'2005-08-23 13:10:16',1996,436,'2005-08-30 09:27:16',1,'2006-02-15 21:30:53'), - (15767,'2005-08-23 13:14:15',3492,241,'2005-08-27 14:43:15',2,'2006-02-15 21:30:53'), - (15768,'2005-08-23 13:14:47',662,267,'2005-08-29 14:17:47',2,'2006-02-15 21:30:53'), - (15769,'2005-08-23 13:16:15',2392,276,'2005-08-28 18:31:15',1,'2006-02-15 21:30:53'), - (15770,'2005-08-23 13:18:16',1424,113,'2005-08-29 11:31:16',1,'2006-02-15 21:30:53'), - (15771,'2005-08-23 13:18:46',3667,262,'2005-08-26 07:29:46',1,'2006-02-15 21:30:53'), - (15772,'2005-08-23 13:22:56',4343,202,'2005-08-26 10:35:56',2,'2006-02-15 21:30:53'), - (15773,'2005-08-23 13:24:57',1626,189,'2005-08-31 14:16:57',2,'2006-02-15 21:30:53'), - (15774,'2005-08-23 13:25:08',1273,254,'2005-08-28 10:08:08',2,'2006-02-15 21:30:53'), - (15775,'2005-08-23 13:25:44',2146,173,'2005-09-01 16:56:44',1,'2006-02-15 21:30:53'), - (15776,'2005-08-23 13:26:01',43,514,'2005-08-29 18:17:01',1,'2006-02-15 21:30:53'), - (15777,'2005-08-23 13:29:08',4241,130,'2005-08-27 18:50:08',2,'2006-02-15 21:30:53'), - (15778,'2006-02-14 15:16:03',1269,234,NULL,1,'2006-02-15 21:30:53'), - (15779,'2005-08-23 13:33:46',1560,419,'2005-08-28 08:40:46',2,'2006-02-15 21:30:53'), - (15780,'2006-02-14 15:16:03',2911,120,NULL,2,'2006-02-15 21:30:53'), - (15781,'2005-08-23 13:41:05',4449,412,'2005-08-31 13:11:05',1,'2006-02-15 21:30:53'), - (15782,'2005-08-23 13:43:26',3282,245,'2005-08-30 14:03:26',1,'2006-02-15 21:30:53'), - (15783,'2005-08-23 13:45:44',397,247,'2005-08-26 09:18:44',2,'2006-02-15 21:30:53'), - (15784,'2005-08-23 13:46:00',126,425,'2005-08-30 11:49:00',2,'2006-02-15 21:30:53'), - (15785,'2005-08-23 13:46:27',1758,543,'2005-08-27 10:16:27',2,'2006-02-15 21:30:53'), - (15786,'2005-08-23 13:48:34',3132,371,'2005-08-27 15:59:34',1,'2006-02-15 21:30:53'), - (15787,'2005-08-23 13:51:57',2932,123,'2005-08-27 17:06:57',1,'2006-02-15 21:30:53'), - (15788,'2005-08-23 13:54:39',13,269,'2005-08-26 10:17:39',1,'2006-02-15 21:30:53'), - (15789,'2005-08-23 13:56:40',1213,350,'2005-08-27 15:25:40',1,'2006-02-15 21:30:53'), - (15790,'2005-08-23 14:01:07',2887,233,'2005-08-30 10:32:07',2,'2006-02-15 21:30:53'), - (15791,'2005-08-23 14:02:13',4147,445,'2005-09-01 09:03:13',2,'2006-02-15 21:30:53'), - (15792,'2005-08-23 14:05:37',2175,581,'2005-08-28 10:54:37',1,'2006-02-15 21:30:53'), - (15793,'2005-08-23 14:06:19',2863,22,'2005-08-24 19:59:19',2,'2006-02-15 21:30:53'), - (15794,'2006-02-14 15:16:03',3917,579,NULL,2,'2006-02-15 21:30:53'), - (15795,'2005-08-23 14:07:56',4371,417,'2005-08-25 12:10:56',2,'2006-02-15 21:30:53'), - (15796,'2005-08-23 14:12:22',1425,158,'2005-08-28 17:03:22',2,'2006-02-15 21:30:53'), - (15797,'2005-08-23 14:13:47',497,503,'2005-08-25 09:16:47',2,'2006-02-15 21:30:53'), - (15798,'2005-08-23 14:23:03',3803,203,'2005-08-30 17:39:03',2,'2006-02-15 21:30:53'), - (15799,'2005-08-23 14:23:23',2519,215,'2005-08-24 17:15:23',2,'2006-02-15 21:30:53'), - (15800,'2005-08-23 14:23:44',963,43,'2005-08-29 17:04:44',2,'2006-02-15 21:30:53'), - (15801,'2005-08-23 14:26:04',1590,165,'2005-08-28 15:04:04',1,'2006-02-15 21:30:53'), - (15802,'2005-08-23 14:26:51',41,158,'2005-08-29 16:28:51',2,'2006-02-15 21:30:53'), - (15803,'2005-08-23 14:27:07',500,105,'2005-08-28 12:01:07',2,'2006-02-15 21:30:53'), - (15804,'2005-08-23 14:29:16',3338,585,'2005-08-26 08:41:16',1,'2006-02-15 21:30:53'), - (15805,'2005-08-23 14:31:19',4511,8,'2005-08-25 19:01:19',2,'2006-02-15 21:30:53'), - (15806,'2005-08-23 14:31:50',2683,166,'2005-08-27 16:08:50',2,'2006-02-15 21:30:53'), - (15807,'2005-08-23 14:35:10',2705,350,'2005-08-29 19:06:10',2,'2006-02-15 21:30:53'), - (15808,'2005-08-23 14:38:37',1663,446,'2005-08-27 14:45:37',2,'2006-02-15 21:30:53'), - (15809,'2005-08-23 14:42:07',1885,431,'2005-08-27 15:00:07',2,'2006-02-15 21:30:53'), - (15810,'2005-08-23 14:43:15',2196,171,'2005-08-25 17:41:15',1,'2006-02-15 21:30:53'), - (15811,'2005-08-23 14:43:46',3487,300,'2005-08-27 16:43:46',1,'2006-02-15 21:30:53'), - (15812,'2005-08-23 14:47:26',4457,45,'2005-09-01 10:51:26',2,'2006-02-15 21:30:53'), - (15813,'2006-02-14 15:16:03',981,9,NULL,1,'2006-02-15 21:30:53'), - (15814,'2005-08-23 14:52:50',4361,459,'2005-08-27 16:12:50',2,'2006-02-15 21:30:53'), - (15815,'2005-08-23 14:55:47',316,444,'2005-08-24 12:37:47',1,'2006-02-15 21:30:53'), - (15816,'2005-08-23 14:58:06',3628,31,'2005-08-28 13:30:06',1,'2006-02-15 21:30:53'), - (15817,'2005-08-23 14:59:51',598,348,'2005-08-25 15:27:51',1,'2006-02-15 21:30:53'), - (15818,'2005-08-23 14:59:58',2620,439,'2005-08-27 13:13:58',2,'2006-02-15 21:30:53'), - (15819,'2005-08-23 15:01:54',3639,274,'2005-08-31 20:01:54',2,'2006-02-15 21:30:53'), - (15820,'2005-08-23 15:03:13',4553,308,'2005-08-25 20:12:13',1,'2006-02-15 21:30:53'), - (15821,'2005-08-23 15:03:58',1714,233,'2005-08-24 17:46:58',2,'2006-02-15 21:30:53'), - (15822,'2005-08-23 15:05:59',3602,492,'2005-08-24 11:13:59',1,'2006-02-15 21:30:53'), - (15823,'2005-08-23 15:08:00',3047,81,'2005-08-24 17:52:00',2,'2006-02-15 21:30:53'), - (15824,'2005-08-23 15:09:17',2933,371,'2005-08-28 15:14:17',2,'2006-02-15 21:30:53'), - (15825,'2005-08-23 15:10:42',149,346,'2005-08-29 09:28:42',2,'2006-02-15 21:30:53'), - (15826,'2005-08-23 15:15:02',215,311,'2005-08-31 20:39:02',2,'2006-02-15 21:30:53'), - (15827,'2005-08-23 15:15:19',1732,346,'2005-08-24 10:50:19',2,'2006-02-15 21:30:53'), - (15828,'2005-08-23 15:16:32',428,327,'2005-08-29 12:20:32',1,'2006-02-15 21:30:53'), - (15829,'2005-08-23 15:17:14',4387,30,'2005-08-27 13:04:14',1,'2006-02-15 21:30:53'), - (15830,'2005-08-23 15:19:15',309,467,'2005-08-25 18:42:15',2,'2006-02-15 21:30:53'), - (15831,'2005-08-23 15:21:19',3123,401,'2005-08-24 15:47:19',2,'2006-02-15 21:30:53'), - (15832,'2005-08-23 15:21:35',1468,537,'2005-08-30 15:01:35',2,'2006-02-15 21:30:53'), - (15833,'2005-08-23 15:22:15',801,349,'2005-08-31 14:54:15',1,'2006-02-15 21:30:53'), - (15834,'2005-08-23 15:23:50',217,165,'2005-09-01 19:31:50',1,'2006-02-15 21:30:53'), - (15835,'2005-08-23 15:25:27',1362,128,'2005-09-01 16:14:27',2,'2006-02-15 21:30:53'), - (15836,'2005-08-23 15:29:17',260,468,'2005-08-26 11:44:17',2,'2006-02-15 21:30:53'), - (15837,'2005-08-23 15:29:41',4388,283,'2005-08-27 18:17:41',1,'2006-02-15 21:30:53'), - (15838,'2005-08-23 15:30:48',2194,579,'2005-08-31 11:20:48',2,'2006-02-15 21:30:53'), - (15839,'2005-08-23 15:34:46',3726,294,'2005-08-30 21:00:46',2,'2006-02-15 21:30:53'), - (15840,'2005-08-23 15:34:49',1901,316,'2005-08-24 16:54:49',1,'2006-02-15 21:30:53'), - (15841,'2005-08-23 15:35:59',2865,571,'2005-08-30 19:30:59',2,'2006-02-15 21:30:53'), - (15842,'2005-08-23 15:36:05',1850,146,'2005-08-30 14:05:05',2,'2006-02-15 21:30:53'), - (15843,'2005-08-23 15:37:31',611,215,'2005-08-28 18:41:31',2,'2006-02-15 21:30:53'), - (15844,'2005-08-23 15:38:12',2027,119,'2005-08-26 15:18:12',1,'2006-02-15 21:30:53'), - (15845,'2005-08-23 15:38:34',4312,89,'2005-08-25 10:06:34',1,'2006-02-15 21:30:53'), - (15846,'2005-08-23 15:39:18',3635,47,'2005-08-27 14:28:18',2,'2006-02-15 21:30:53'), - (15847,'2005-08-23 15:39:38',2287,163,'2005-08-24 11:46:38',1,'2006-02-15 21:30:53'), - (15848,'2005-08-23 15:41:12',2141,336,'2005-08-26 10:29:12',2,'2006-02-15 21:30:53'), - (15849,'2005-08-23 15:41:20',4077,482,'2005-08-27 15:47:20',2,'2006-02-15 21:30:53'), - (15850,'2005-08-23 15:45:42',586,563,'2005-08-27 19:24:42',1,'2006-02-15 21:30:53'), - (15851,'2005-08-23 15:46:33',2286,469,'2005-08-29 15:52:33',1,'2006-02-15 21:30:53'), - (15852,'2005-08-23 15:47:02',1506,140,'2005-08-25 19:37:02',1,'2006-02-15 21:30:53'), - (15853,'2005-08-23 15:54:20',225,500,'2005-08-24 18:53:20',2,'2006-02-15 21:30:53'), - (15854,'2005-08-23 15:58:05',1648,464,'2005-08-26 19:23:05',1,'2006-02-15 21:30:53'), - (15855,'2005-08-23 15:59:01',2528,192,'2005-08-29 20:26:01',1,'2006-02-15 21:30:53'), - (15856,'2005-08-23 15:59:12',3379,395,'2005-08-25 15:36:12',1,'2006-02-15 21:30:53'), - (15857,'2005-08-23 15:59:51',2733,575,'2005-08-26 12:01:51',2,'2006-02-15 21:30:53'), - (15858,'2005-08-23 16:07:15',4515,81,'2005-08-25 19:36:15',2,'2006-02-15 21:30:53'), - (15859,'2005-08-23 16:08:15',4269,465,'2005-08-28 11:08:15',1,'2006-02-15 21:30:53'), - (15860,'2005-08-23 16:08:40',2583,41,'2005-08-28 15:35:40',1,'2006-02-15 21:30:53'), - (15861,'2005-08-23 16:15:45',1859,256,'2005-09-01 11:37:45',2,'2006-02-15 21:30:53'), - (15862,'2006-02-14 15:16:03',925,215,NULL,1,'2006-02-15 21:30:53'), - (15863,'2005-08-23 16:17:09',2783,328,'2005-08-28 16:10:09',2,'2006-02-15 21:30:53'), - (15864,'2005-08-23 16:18:12',3014,256,'2005-08-29 17:10:12',2,'2006-02-15 21:30:53'), - (15865,'2005-08-23 16:18:25',2031,482,'2005-08-26 10:57:25',2,'2006-02-15 21:30:53'), - (15866,'2005-08-23 16:19:02',3828,296,'2005-08-31 12:29:02',2,'2006-02-15 21:30:53'), - (15867,'2006-02-14 15:16:03',837,505,NULL,2,'2006-02-15 21:30:53'), - (15868,'2005-08-23 16:19:14',2186,306,'2005-08-29 16:14:14',2,'2006-02-15 21:30:53'), - (15869,'2005-08-23 16:22:20',1344,357,'2005-08-27 11:52:20',1,'2006-02-15 21:30:53'), - (15870,'2005-08-23 16:23:08',590,251,'2005-08-28 20:30:08',2,'2006-02-15 21:30:53'), - (15871,'2005-08-23 16:24:24',425,57,'2005-09-01 13:48:24',2,'2006-02-15 21:30:53'), - (15872,'2005-08-23 16:27:24',3391,212,'2005-08-31 11:57:24',1,'2006-02-15 21:30:53'), - (15873,'2005-08-23 16:27:59',4548,577,'2005-08-26 11:11:59',2,'2006-02-15 21:30:53'), - (15874,'2005-08-23 16:30:55',621,132,'2005-08-28 20:57:55',1,'2006-02-15 21:30:53'), - (15875,'2006-02-14 15:16:03',3611,41,NULL,1,'2006-02-15 21:30:53'), - (15876,'2005-08-23 16:32:10',1735,87,'2005-08-24 18:16:10',1,'2006-02-15 21:30:53'), - (15877,'2005-08-23 16:33:33',2307,559,'2005-08-26 10:36:33',2,'2006-02-15 21:30:53'), - (15878,'2005-08-23 16:34:31',1592,493,'2005-08-27 21:51:31',2,'2006-02-15 21:30:53'), - (15879,'2005-08-23 16:42:53',235,482,'2005-08-29 16:21:53',2,'2006-02-15 21:30:53'), - (15880,'2005-08-23 16:43:54',2538,528,'2005-08-31 14:40:54',2,'2006-02-15 21:30:53'), - (15881,'2005-08-23 16:44:25',617,383,'2005-08-29 13:58:25',1,'2006-02-15 21:30:53'), - (15882,'2005-08-23 16:44:31',2028,312,'2005-09-01 15:44:31',2,'2006-02-15 21:30:53'), - (15883,'2005-08-23 16:44:56',2792,550,'2005-08-24 22:42:56',1,'2006-02-15 21:30:53'), - (15884,'2005-08-23 16:45:28',2255,81,'2005-08-27 20:18:28',1,'2006-02-15 21:30:53'), - (15885,'2005-08-23 16:50:43',2116,565,'2005-08-29 20:19:43',1,'2006-02-15 21:30:53'), - (15886,'2005-08-23 16:50:53',3038,91,'2005-08-26 15:38:53',2,'2006-02-15 21:30:53'), - (15887,'2005-08-23 16:54:09',4263,201,'2005-08-26 13:20:09',2,'2006-02-15 21:30:53'), - (15888,'2005-08-23 16:56:14',2955,321,'2005-08-31 14:32:14',1,'2006-02-15 21:30:53'), - (15889,'2005-08-23 16:57:43',787,137,'2005-08-27 22:14:43',1,'2006-02-15 21:30:53'), - (15890,'2005-08-23 16:58:12',3625,87,'2005-08-24 12:23:12',1,'2006-02-15 21:30:53'), - (15891,'2005-08-23 17:00:12',2168,52,'2005-08-31 21:12:12',1,'2006-02-15 21:30:53'), - (15892,'2005-08-23 17:01:00',1365,174,'2005-08-28 12:50:00',1,'2006-02-15 21:30:53'), - (15893,'2005-08-23 17:02:00',2571,438,'2005-08-30 12:45:00',2,'2006-02-15 21:30:53'), - (15894,'2006-02-14 15:16:03',4416,168,NULL,1,'2006-02-15 21:30:53'), - (15895,'2005-08-23 17:09:31',2275,342,'2005-08-30 17:15:31',1,'2006-02-15 21:30:53'), - (15896,'2005-08-23 17:09:56',528,585,'2005-08-31 14:51:56',2,'2006-02-15 21:30:53'), - (15897,'2005-08-23 17:12:31',1652,15,'2005-08-30 17:22:31',1,'2006-02-15 21:30:53'), - (15898,'2005-08-23 17:13:01',3502,88,'2005-08-29 11:22:01',2,'2006-02-15 21:30:53'), - (15899,'2005-08-23 17:16:28',3851,596,'2005-08-29 21:46:28',2,'2006-02-15 21:30:53'), - (15900,'2005-08-23 17:16:30',1112,562,'2005-08-27 18:02:30',1,'2006-02-15 21:30:53'), - (15901,'2005-08-23 17:19:17',2761,226,'2005-08-30 14:24:17',2,'2006-02-15 21:30:53'), - (15902,'2005-08-23 17:28:03',4500,172,'2005-08-30 18:36:03',1,'2006-02-15 21:30:53'), - (15903,'2005-08-23 17:30:40',1289,267,'2005-08-29 14:12:40',1,'2006-02-15 21:30:53'), - (15904,'2005-08-23 17:32:19',179,37,'2005-08-24 21:05:19',2,'2006-02-15 21:30:53'), - (15905,'2005-08-23 17:33:04',3631,59,'2005-08-26 17:38:04',2,'2006-02-15 21:30:53'), - (15906,'2005-08-23 17:36:00',3230,445,'2005-08-28 15:32:00',2,'2006-02-15 21:30:53'), - (15907,'2005-08-23 17:39:35',2898,2,'2005-08-25 23:23:35',1,'2006-02-15 21:30:53'), - (15908,'2005-08-23 17:42:00',2453,135,'2005-08-31 22:32:00',1,'2006-02-15 21:30:53'), - (15909,'2005-08-23 17:42:42',404,452,'2005-08-26 20:25:42',1,'2006-02-15 21:30:53'), - (15910,'2005-08-23 17:43:16',254,456,'2005-08-24 21:55:16',2,'2006-02-15 21:30:53'), - (15911,'2005-08-23 17:44:53',3006,582,'2005-09-01 19:14:53',1,'2006-02-15 21:30:53'), - (15912,'2005-08-23 17:47:40',3079,229,'2005-08-31 14:43:40',2,'2006-02-15 21:30:53'), - (15913,'2005-08-23 17:48:30',3894,93,'2005-08-31 21:17:30',2,'2006-02-15 21:30:53'), - (15914,'2005-08-23 17:49:26',747,557,'2005-08-24 12:20:26',1,'2006-02-15 21:30:53'), - (15915,'2005-08-23 17:52:01',3566,167,'2005-08-24 20:40:01',2,'2006-02-15 21:30:53'), - (15916,'2005-08-23 17:56:01',4580,327,'2005-08-31 21:49:01',2,'2006-02-15 21:30:53'), - (15917,'2005-08-23 17:57:28',2093,589,'2005-08-29 20:03:28',1,'2006-02-15 21:30:53'), - (15918,'2005-08-23 17:57:35',1456,262,'2005-08-28 14:16:35',2,'2006-02-15 21:30:53'), - (15919,'2005-08-23 18:01:31',1746,497,'2005-08-24 16:27:31',1,'2006-02-15 21:30:53'), - (15920,'2005-08-23 18:05:10',243,212,'2005-08-26 18:09:10',1,'2006-02-15 21:30:53'), - (15921,'2005-08-23 18:06:54',223,522,'2005-08-30 20:19:54',2,'2006-02-15 21:30:53'), - (15922,'2005-08-23 18:07:31',1702,263,'2005-09-01 22:27:31',1,'2006-02-15 21:30:53'), - (15923,'2005-08-23 18:08:19',1693,276,'2005-08-26 18:06:19',2,'2006-02-15 21:30:53'), - (15924,'2005-08-23 18:08:59',1114,541,'2005-08-27 12:20:59',2,'2006-02-15 21:30:53'), - (15925,'2005-08-23 18:15:06',3394,440,'2005-08-26 18:09:06',2,'2006-02-15 21:30:53'), - (15926,'2005-08-23 18:20:56',2231,151,'2005-08-24 18:20:56',2,'2006-02-15 21:30:53'), - (15927,'2005-08-23 18:23:11',2450,401,'2005-08-24 15:09:11',1,'2006-02-15 21:30:53'), - (15928,'2005-08-23 18:23:24',2086,75,'2005-09-01 23:43:24',2,'2006-02-15 21:30:53'), - (15929,'2005-08-23 18:23:30',1832,477,'2005-08-27 17:04:30',1,'2006-02-15 21:30:53'), - (15930,'2005-08-23 18:26:51',180,379,'2005-08-31 16:12:51',1,'2006-02-15 21:30:53'), - (15931,'2005-08-23 18:28:09',1128,237,'2005-08-28 23:08:09',1,'2006-02-15 21:30:53'), - (15932,'2005-08-23 18:31:40',4554,405,'2005-08-24 16:30:40',2,'2006-02-15 21:30:53'), - (15933,'2005-08-23 18:36:44',3493,176,'2005-08-26 12:41:44',2,'2006-02-15 21:30:53'), - (15934,'2005-08-23 18:40:41',994,216,'2005-08-25 00:18:41',2,'2006-02-15 21:30:53'), - (15935,'2005-08-23 18:41:11',907,361,'2005-08-25 20:59:11',1,'2006-02-15 21:30:53'), - (15936,'2005-08-23 18:43:11',1293,411,'2005-08-26 00:19:11',1,'2006-02-15 21:30:53'), - (15937,'2005-08-23 18:43:22',2882,194,'2005-08-24 22:53:22',1,'2006-02-15 21:30:53'), - (15938,'2005-08-23 18:43:31',2884,341,'2005-08-31 00:26:31',2,'2006-02-15 21:30:53'), - (15939,'2005-08-23 18:44:21',3209,382,'2005-09-01 17:25:21',2,'2006-02-15 21:30:53'), - (15940,'2005-08-23 18:45:06',1606,86,'2005-08-30 13:00:06',2,'2006-02-15 21:30:53'), - (15941,'2005-08-23 18:46:44',4304,424,'2005-08-31 17:31:44',1,'2006-02-15 21:30:53'), - (15942,'2005-08-23 18:48:40',1096,210,'2005-09-01 18:39:40',2,'2006-02-15 21:30:53'), - (15943,'2005-08-23 18:49:32',706,462,'2005-08-27 19:20:32',1,'2006-02-15 21:30:53'), - (15944,'2005-08-23 18:50:54',4559,348,'2005-08-25 18:04:54',2,'2006-02-15 21:30:53'), - (15945,'2005-08-23 18:51:41',3633,43,'2005-08-28 18:42:41',1,'2006-02-15 21:30:53'), - (15946,'2005-08-23 18:54:07',4549,561,'2005-08-28 21:21:07',1,'2006-02-15 21:30:53'), - (15947,'2005-08-23 18:54:32',1877,580,'2005-08-24 22:39:32',2,'2006-02-15 21:30:53'), - (15948,'2005-08-23 18:59:33',432,520,'2005-08-31 13:02:33',2,'2006-02-15 21:30:53'), - (15949,'2005-08-23 19:06:04',1199,386,'2005-08-26 18:39:04',2,'2006-02-15 21:30:53'), - (15950,'2005-08-23 19:09:39',1374,280,'2005-08-31 17:03:39',2,'2006-02-15 21:30:53'), - (15951,'2005-08-23 19:10:32',3018,446,'2005-08-29 14:17:32',1,'2006-02-15 21:30:53'), - (15952,'2005-08-23 19:11:29',1314,224,'2005-08-28 14:41:29',1,'2006-02-15 21:30:53'), - (15953,'2005-08-23 19:13:46',3727,540,'2005-08-28 23:05:46',1,'2006-02-15 21:30:53'), - (15954,'2005-08-23 19:14:07',576,460,'2005-08-24 20:21:07',1,'2006-02-15 21:30:53'), - (15955,'2005-08-23 19:19:06',2247,349,'2005-08-31 23:34:06',1,'2006-02-15 21:30:53'), - (15956,'2005-08-23 19:19:21',2763,354,'2005-08-25 22:15:21',2,'2006-02-15 21:30:53'), - (15957,'2005-08-23 19:21:22',74,418,'2005-08-31 16:42:22',1,'2006-02-15 21:30:53'), - (15958,'2005-08-23 19:22:36',4164,492,'2005-08-30 01:03:36',1,'2006-02-15 21:30:53'), - (15959,'2005-08-23 19:27:04',547,415,'2005-08-24 15:24:04',1,'2006-02-15 21:30:53'), - (15960,'2005-08-23 19:35:42',1497,431,'2005-08-26 17:36:42',2,'2006-02-15 21:30:53'), - (15961,'2005-08-23 19:35:42',4006,200,'2005-08-30 22:52:42',1,'2006-02-15 21:30:53'), - (15962,'2005-08-23 19:42:04',3491,160,'2005-08-25 23:53:04',1,'2006-02-15 21:30:53'), - (15963,'2005-08-23 19:42:46',3819,134,'2005-08-25 22:12:46',1,'2006-02-15 21:30:53'), - (15964,'2005-08-23 19:45:25',251,141,'2005-08-26 22:43:25',2,'2006-02-15 21:30:53'), - (15965,'2005-08-23 19:46:39',3449,509,'2005-08-24 20:08:39',2,'2006-02-15 21:30:53'), - (15966,'2006-02-14 15:16:03',4472,374,NULL,1,'2006-02-15 21:30:53'), - (15967,'2005-08-23 19:50:06',321,257,'2005-08-29 14:51:06',1,'2006-02-15 21:30:53'), - (15968,'2005-08-23 19:51:29',3598,257,'2005-08-24 15:07:29',1,'2006-02-15 21:30:53'), - (15969,'2005-08-23 19:51:30',1807,327,'2005-08-31 23:50:30',1,'2006-02-15 21:30:53'), - (15970,'2005-08-23 19:54:24',4509,395,'2005-08-24 18:07:24',1,'2006-02-15 21:30:53'), - (15971,'2005-08-23 19:59:33',3456,187,'2005-09-02 01:28:33',1,'2006-02-15 21:30:53'), - (15972,'2005-08-23 20:00:30',4428,25,'2005-08-30 00:25:30',1,'2006-02-15 21:30:53'), - (15973,'2005-08-23 20:04:41',2766,343,'2005-09-01 20:08:41',2,'2006-02-15 21:30:53'), - (15974,'2005-08-23 20:06:04',3518,201,'2005-08-27 17:33:04',2,'2006-02-15 21:30:53'), - (15975,'2005-08-23 20:06:23',2723,174,'2005-08-27 19:52:23',1,'2006-02-15 21:30:53'), - (15976,'2005-08-23 20:07:08',835,227,'2005-08-25 01:47:08',2,'2006-02-15 21:30:53'), - (15977,'2005-08-23 20:07:10',1031,550,'2005-09-01 22:12:10',2,'2006-02-15 21:30:53'), - (15978,'2005-08-23 20:08:18',4444,536,'2005-08-31 17:35:18',2,'2006-02-15 21:30:53'), - (15979,'2005-08-23 20:08:26',3733,536,'2005-08-26 19:19:26',1,'2006-02-15 21:30:53'), - (15980,'2005-08-23 20:10:13',3365,196,'2005-08-24 17:44:13',2,'2006-02-15 21:30:53'), - (15981,'2005-08-23 20:12:17',2867,489,'2005-08-30 20:43:17',1,'2006-02-15 21:30:53'), - (15982,'2005-08-23 20:13:31',2920,370,'2005-09-01 21:51:31',2,'2006-02-15 21:30:53'), - (15983,'2005-08-23 20:13:38',3318,464,'2005-08-30 18:42:38',1,'2006-02-15 21:30:53'), - (15984,'2005-08-23 20:16:27',2011,495,'2005-08-27 01:43:27',1,'2006-02-15 21:30:53'), - (15985,'2005-08-23 20:20:23',2646,179,'2005-08-26 20:55:23',1,'2006-02-15 21:30:53'), - (15986,'2005-08-23 20:20:37',3472,226,'2005-08-29 20:49:37',1,'2006-02-15 21:30:53'), - (15987,'2005-08-23 20:22:17',3150,302,'2005-08-31 21:46:17',2,'2006-02-15 21:30:53'), - (15988,'2005-08-23 20:23:08',3932,400,'2005-08-28 20:50:08',1,'2006-02-15 21:30:53'), - (15989,'2005-08-23 20:24:36',38,96,'2005-08-26 20:35:36',1,'2006-02-15 21:30:53'), - (15990,'2005-08-23 20:25:11',3233,512,'2005-08-25 15:01:11',2,'2006-02-15 21:30:53'), - (15991,'2005-08-23 20:27:34',2078,203,'2005-08-28 16:48:34',2,'2006-02-15 21:30:53'), - (15992,'2005-08-23 20:28:32',3334,589,'2005-08-24 21:35:32',1,'2006-02-15 21:30:53'), - (15993,'2005-08-23 20:28:44',1638,12,'2005-08-27 16:23:44',2,'2006-02-15 21:30:53'), - (15994,'2005-08-23 20:29:10',438,595,'2005-08-28 01:41:10',2,'2006-02-15 21:30:53'), - (15995,'2005-08-23 20:29:56',1122,377,'2005-08-30 18:09:56',1,'2006-02-15 21:30:53'), - (15996,'2005-08-23 20:31:38',3098,151,'2005-08-29 20:58:38',1,'2006-02-15 21:30:53'), - (15997,'2005-08-23 20:40:31',2843,447,'2005-08-26 19:47:31',1,'2006-02-15 21:30:53'), - (15998,'2005-08-23 20:41:09',1229,545,'2005-08-27 00:20:09',1,'2006-02-15 21:30:53'), - (15999,'2005-08-23 20:44:10',2584,377,'2005-08-31 02:38:10',2,'2006-02-15 21:30:53'), - (16000,'2005-08-23 20:44:36',282,71,'2005-08-25 02:29:36',1,'2006-02-15 21:30:53'), - (16001,'2005-08-23 20:45:53',245,108,'2005-08-27 15:52:53',1,'2006-02-15 21:30:53'), - (16002,'2005-08-23 20:47:12',2770,73,'2005-08-27 23:07:12',1,'2006-02-15 21:30:53'), - (16003,'2005-08-23 20:47:28',3413,577,'2005-08-31 23:22:28',1,'2006-02-15 21:30:53'), - (16004,'2005-08-23 20:53:20',2223,147,'2005-08-31 15:15:20',2,'2006-02-15 21:30:53'), - (16005,'2005-08-23 21:00:22',3265,466,'2005-09-02 02:35:22',1,'2006-02-15 21:30:53'), - (16006,'2005-08-23 21:01:09',240,533,'2005-08-25 19:33:09',1,'2006-02-15 21:30:53'), - (16007,'2005-08-23 21:02:43',3236,126,'2005-08-30 23:37:43',2,'2006-02-15 21:30:53'), - (16008,'2005-08-23 21:04:51',3273,189,'2005-08-31 22:09:51',1,'2006-02-15 21:30:53'), - (16009,'2005-08-23 21:07:59',3055,133,'2005-08-29 16:54:59',2,'2006-02-15 21:30:53'), - (16010,'2005-08-23 21:10:24',2539,173,'2005-08-25 17:58:24',1,'2006-02-15 21:30:53'), - (16011,'2005-08-23 21:11:33',1093,389,'2005-08-31 17:51:33',1,'2006-02-15 21:30:53'), - (16012,'2005-08-23 21:13:39',2421,80,'2005-08-30 23:52:39',2,'2006-02-15 21:30:53'), - (16013,'2005-08-23 21:17:17',561,462,'2005-08-26 21:15:17',1,'2006-02-15 21:30:53'), - (16014,'2005-08-23 21:18:31',3322,532,'2005-08-31 17:28:31',2,'2006-02-15 21:30:53'), - (16015,'2005-08-23 21:25:03',3113,50,'2005-08-24 20:05:03',2,'2006-02-15 21:30:53'), - (16016,'2005-08-23 21:26:35',3374,595,'2005-08-28 16:06:35',2,'2006-02-15 21:30:53'), - (16017,'2005-08-23 21:27:11',664,535,'2005-08-24 23:22:11',1,'2006-02-15 21:30:53'), - (16018,'2005-08-23 21:27:35',897,439,'2005-08-30 00:36:35',1,'2006-02-15 21:30:53'), - (16019,'2005-08-23 21:30:45',3093,278,'2005-08-27 23:45:45',2,'2006-02-15 21:30:53'), - (16020,'2005-08-23 21:34:33',277,311,'2005-09-01 18:17:33',1,'2006-02-15 21:30:53'), - (16021,'2005-08-23 21:37:59',3057,314,'2005-08-31 01:52:59',1,'2006-02-15 21:30:53'), - (16022,'2005-08-23 21:44:27',2925,504,'2005-08-28 01:52:27',1,'2006-02-15 21:30:53'), - (16023,'2005-08-23 21:45:02',2347,124,'2005-08-24 21:28:02',1,'2006-02-15 21:30:53'), - (16024,'2005-08-23 21:46:47',2910,473,'2005-08-27 02:06:47',1,'2006-02-15 21:30:53'), - (16025,'2005-08-23 21:48:54',1777,569,'2005-08-24 22:05:54',2,'2006-02-15 21:30:53'), - (16026,'2005-08-23 21:49:22',467,484,'2005-08-27 00:47:22',1,'2006-02-15 21:30:53'), - (16027,'2005-08-23 21:49:33',1724,160,'2005-08-30 16:19:33',2,'2006-02-15 21:30:53'), - (16028,'2005-08-23 21:52:56',2515,119,'2005-08-30 18:16:56',2,'2006-02-15 21:30:53'), - (16029,'2005-08-23 21:54:02',953,143,'2005-08-29 23:55:02',1,'2006-02-15 21:30:53'), - (16030,'2005-08-23 21:56:04',4161,137,'2005-08-31 01:24:04',2,'2006-02-15 21:30:53'), - (16031,'2005-08-23 21:59:26',1843,102,'2005-08-29 20:15:26',1,'2006-02-15 21:30:53'), - (16032,'2005-08-23 21:59:57',2527,447,'2005-08-31 22:46:57',2,'2006-02-15 21:30:53'), - (16033,'2005-08-23 22:06:15',760,226,'2005-09-01 02:36:15',2,'2006-02-15 21:30:53'), - (16034,'2005-08-23 22:06:34',655,502,'2005-08-29 18:44:34',1,'2006-02-15 21:30:53'), - (16035,'2005-08-23 22:08:04',549,37,'2005-08-28 03:46:04',1,'2006-02-15 21:30:53'), - (16036,'2005-08-23 22:12:44',1372,425,'2005-08-25 17:48:44',2,'2006-02-15 21:30:53'), - (16037,'2005-08-23 22:13:04',341,45,'2005-09-01 02:48:04',2,'2006-02-15 21:30:53'), - (16038,'2005-08-23 22:14:31',2612,172,'2005-08-30 03:28:31',1,'2006-02-15 21:30:53'), - (16039,'2005-08-23 22:18:51',545,78,'2005-08-31 19:55:51',2,'2006-02-15 21:30:53'), - (16040,'2005-08-23 22:19:33',3524,195,'2005-09-02 02:19:33',2,'2006-02-15 21:30:53'), - (16041,'2005-08-23 22:20:26',4116,121,'2005-08-25 20:14:26',2,'2006-02-15 21:30:53'), - (16042,'2005-08-23 22:20:40',629,131,'2005-08-24 17:54:40',1,'2006-02-15 21:30:53'), - (16043,'2005-08-23 22:21:03',3869,526,'2005-08-31 03:09:03',2,'2006-02-15 21:30:53'), - (16044,'2005-08-23 22:24:39',1312,468,'2005-08-25 04:08:39',1,'2006-02-15 21:30:53'), - (16045,'2005-08-23 22:25:26',772,14,'2005-08-25 23:54:26',1,'2006-02-15 21:30:53'), - (16046,'2005-08-23 22:26:47',4364,74,'2005-08-27 18:02:47',2,'2006-02-15 21:30:53'), - (16047,'2005-08-23 22:42:48',2088,114,'2005-08-25 02:48:48',2,'2006-02-15 21:30:53'), - (16048,'2005-08-23 22:43:07',2019,103,'2005-08-31 21:33:07',1,'2006-02-15 21:30:53'), - (16049,'2005-08-23 22:50:12',2666,393,'2005-08-30 01:01:12',2,'2006-02-15 21:30:53'); -COMMIT; - --- --- Trigger to enforce rental_date on INSERT --- - -CREATE TRIGGER rental_date BEFORE INSERT ON rental - FOR EACH ROW SET NEW.rental_date = NOW(); - --- --- Dumping data for table staff --- - -SET AUTOCOMMIT=0; - --- --- Dumping data for table `staff` --- - -LOCK TABLES `staff` WRITE; -/*!40000 ALTER TABLE `staff` DISABLE KEYS */; -INSERT INTO `staff` VALUES (1,'Mike','Hillyer',3,0x89504E470D0A1A0A0000000D4948445200000079000000750802000000E55AD965000000097048597300000EC300000EC301C76FA8640000200049444154789C4CBB7794246779FFBBF78F7B7EBE466177677772CE3D9D667AA67BA62776CE39545557CE3974EE9EB049AB95563922104142580830D10203061BB049064CB031D916C160100284505AEDEE4CDD3F16B8B7CE73DE53F5D61F75CEE7BCF53CCFF7FB561DBB7CE9AD972FBDF5AECB6FBD74E7A3B75F7EF4CE7BDE72E9AE375FBAFFCD676EBFF7E29D0F9F3D7BD9303A92AC8360A5522E61088A00300622188051204102385644C8124E950912204880C0F21853A6A92209676012C06990A0CB3859C62808C3CB3003A1641921CB180D6234003325902D95C94C86C966A86C9ACEA5CA81CDB27F1D8DF9F14490CDC5D95C5CCE27B472522EC49844B05E29184056C945D552422D25D84C90CD04F95C984985F8748C4F44D46C522F64D864442EA6A572462C25996C8429249098BF12D9C1E20120B8C91653643E51490489428A2E66987249ACA002849145982EA322C112658C864812C0E90ACEC0040D123AAD8A284F950906205810672B140D900226B218C713028F0A5C85E32A0C03522C44E34504875008A8C8927EEEFCA5BBEE7DE8AE871EBDF0C003F73CFAC8B1BB2EBFEDF29D8F5FB8F8F0A5BB1EBD7CEF5BCEDD71FF85CB0F9EBD78E7DE99DB74AD45E10250444B0510016014800800C14B2809E07809C54B1851C689328E17501220D0324602045E40C9124E02C48DBB1480D365942CC26C056311944711122813C5229ECBE2990C914E9603DB807F13086CD0F190988DC9F94415CCB570A0854335B824173242294D6782423E24E443423E822536E1B897486DD3A91D3AB5C366FC74C2C7A5836C3CC0C6035C2C40C5FC7432C8642368C247A4835436CC64634C22C8A7237236C6A5C27C3AC2656242298D6523C5F0269189C2B11099CF50C502532EB330C256300AC2049C61119C81310240280067408A0648B642B1158286480A2469882201820249A642B310CD801403527C85E1209A85691663A1228C54F05AB5D5DADDBBE7D147EE7AF8A163E72F3E7AFB9D8F9DBFFD814B773D7C70F1AE33B7DDD1E81E08A24A935C2A9C2EA64A4809C5000C2FA16419A3009C2A134419BFF124B480604594047012C0310027CA380D90741967201C2F827419654A0857869862498241B298C6F3712413CEFAD7C0C8361A0F10C980524AE950BA43011DA2A8436915CAF2C514920856627E20E4A3B2692693147209261562124134B84DC6FD74324865C3487C07087841DF1AB0B30AFBD74B1B1E787B1DDCF696FDEBE5C00618D929873673016F251980C2DB68CC4FC6836C3A7C23986C84CC84A85C8407E25A252396E22290620A09BA98A24A19B29CC70A39A602321590864012006910E16092063106C24910254194A9504C85A20192020916A6599826CA1803910C48B120C5C32C0B3354851571A152A8948B2545931B9DEEB14BF7BFE5D2BD8F9EBD748F5A6BC98A41537C269E85CB289005299044F2305644711027011C2F22371063008E9631285F21CA380352148451084102385142D9322A962B7CB1CC95CB5CBE48C49368288004B6A84480CB47944ABACD426DBA52830B6A31A514925C2622E6E364CA4F27835822145F77D3A57C53128058ACC5F1171BEDBE1327FA7A4F0C8EF44E4E8DF69C38393F3A3BD33FE199B56CDAEC6BB3B39BF316EFCCECDAF48CCF66DFB6D9B61D8E759B6DDD665BB558D66D36AFD5BA323BBB3C35E5181EF4DB6DA125BBCF3A1B5D7164B63CA98D95D4C64A39B0412676D88C9F48FAB0A49FCAC5987C98CE45D8629203334C39451412443EC3944B3C54E64080AB54681061419C2EE31C4453004E43248D92144290304E02380D512C44B3104D81340D0B6C45A0218A822914C62A25F8D8F93B1F508DB6C8A918846300564A9780220C1730B48C61008E9410A484A005182FA11C4C13259402701AA2D03286161034073300C15530AA5CE12A0857A960D90C968997039B683450F6AF51898001645B70B105E7CFF26815CA08F988988DB1C98896CF70B1041E89947C3B21CFF2A6C3E15B5983A2D9C72EDCDDA0C58991C11DFFA6DD6E8F6D47DE7AFB83055F86CEE1E570E1AECE9D5327A7C74E8FCF0E4C0596BC2B13733BB6C5B06B25EEF6445CCB21B72BE45A0CB95C81C5C56DABDD333BE7999DF33B1683CEA51D8B6D7BDEBABD60DDB25A5DE3E37EBBC33B37B36D5BF03916226E477AD35DF07B8B813534E1C3E2DB543AC0E4A35426CA1693742949151364362694F31C50E421882D43540961008C054906227984A1009CA9504C85A6409A85580A247954A0409AA9B03444B13043812455618FF19C0697513007DD286568BE82830454ACA020766304732005925499C0F3085644E15C052FA14C85C28B150EC0D862450041329FC1B309A694CEFBD6887490C946A4726297812E6A740B2B1AA5A4928BF2C90019DBD6F34922E8CB6DAC6FCCDBE6FBC6E6FBA796275D3E977F71CADDF3D7438E593703323ECFF6DA8ADBBFB1E1B63993A1D4AA737D62CAB9B916298481B7DDF97630494C4D2EF69D189BEA9F754E39DDF3CE7224CE148B125886A37E381C404301381CA0B3C962C85F8A04CBC120140815BC9BE995B5AC7733E1590BDA9D914557C8B1E85BB06D5AACDB56FBD6826DDB6ADFB6D9422E47C2EBCA6CB9735BAB40700B8D07F144904A87B84C84CBC4F044902F66D9428E2E1479A02240185F2139886020122FA11CC252204D012C0B334C85A6409204081EE5688864619A01A963A574192D205499C072305140A9124E0244A504574A3090072B25B852A8E0258C2CE168B6821511BA8233102A61049EC98A00C017F248D457F2AFA3091F96DCA1B2FE265DEAB2151D4A8BA538990AF2D9A8544849B92416F2C51C76F7D4C4DAFCFCF8ADA7E77B266FD72E9CE5CF465CC9A953D6FBF61E640BF4A7DEFD91AF7EE4D3C5ED6868C3679FB7B99D4B81ADE0F0F0F49B4E0E5A2CCBBDBDA354857FF4F263B3D34BCB4BDB7DA7272D73AE9E937D03A74FAD2DDA7DEEA5947F0B4E46E86C92CBA5B9420A4985E174188A07E068108FC7A04008F487E048140947E14000DCF617D7B7B3EB3BE9B5ADE0E2CAEAF4BC676ACE3536611F1A724F4D6D5AAC3EBB33EE5E2DEE6C83812D2CECA713113A192693112A93A033693A9763F345AE0CD045808550B64250204143140B7302C6B33073A372F208C3C1348F5064193B861551BC84B1108D6610228F93058228E34809858B085C84310043CB2892AF50004E14501EA1F002C043105D28E0A918998E96031B5422241512B7E9CC818434C882588E4AC5189B0E93E90818DA8A7B167DD679F7F8987B6CC237B7B03636B338343DDF3BB9A79EF9CE3F7FBFEC87B3DE9C06AABFFAF62F7EF895EF7CE2BD1F4C6C04FA6FE9EB3F3DDA7362787AC2F657379D762FED6029E2E1330FC6E3C5891947AB7EC6625D8D07F3B37D0BF99DF2A6D377FAE4C0C0E070DF70BFCD6AF13AED602CCC17B37C31CD43D94A2A88E642702A486793543A852792642A4DA553783CC6263354328D4513782255094791700C8B26B26BDBE9B5ADE0A2C73BEFD8B42E3B4666BCB30B5B566B687129ED5DCB6FAF43E11D3C1946E3612C1EA3B3C91BD0E95289AB60375A141AA2B0224E02140D312C44B3154A4458BE428A047B8C2893952C8C1630AC886345F4461626CA185EC2F012861610BC841225B8CA8A54A18C65F26034866753E5E00E14F5E1C95087410F44AA8A16A5728A4A07C8949F4A872AD1ADE4DA926766747566C23339B1393FE7199FDC9CB284AD9EB873B3E88D9C97DBEF79E4C9076E7BE4AD0FBCEBD5DF5CF9FAE7BEEA77BBFD5ECFCCD0000BC1B1EDE82DA7C7FA86E68E9F1A5F746CCC2E2CF7F74F6EAF852EECDE21D3DA7D17EF8532151EE2C60627D2C18C757E7966CAD1DF3736303CD173AADF32679B1C1D9B9D1849473665129091928C9578282B560A742EC516726CA1C0158B54362B56003C9BA2D2593693E7B205269BA73359B15066B2F94A2496F70722ABEBC165CFDABC7571646A7966C63936B969B3FB975DD13537120FC3611F9608A1F1209A0C6199289ECB9225808371B642D0659C0609A28C513045FFB939218BF0B11B94D102F627D0650C0330B80863204200085E045908E640A0928822A9786667BD1209A0D180544875A9CA059996C034960A20091F9208147DDEF4FACAFADCC48E6DD6353EBC3A35B93A3519762EE5D6D64AEB1B44284E470A6A1A3B4355DF7EFBA37489424AE8F9B317280CFDC033EFFADEBFFEEB45BD3172B29F28A05812A172F43DDA25280A1752F0A99323E56CE52DF7BDB9C6AB3A275F689F7DDF934FEB185723C50F3DFC546A3B3D3562ED1B9A3D3934DD3734776270AA7F6CE664DFE0C050BFD33613D9710B58C9A0611ACCC3F914512A4838CA43A008410C04F010284215B654668A25B654624B25329F21F319269F253319229DC6532920120522D1B87733B8ECD998B72D4E4CAF596CEB0BD66D9B2DBFEDCBEFEC94833B9564008CFB2AA90859C852C52253020508612A300154E80A4E96311E6138883886E531BC8063798428627811C14A15048091729904402C9FA74B45329F02233B50D497D958A1D2915D0E3F2391B7A994588ADF900CB9E07A62CBBDB368F5CECDAC4E4D7A26A7DC139341E76276DD8B04C25236A7E6B25C3CC6A7B24CBCF0CCFD6FA73395DB9BE72E76CF7FEF6BDF345F7BED4B9FFED403976E0FF9FCE303E32B4E8F8A2BF18D58EFE941B7C3ED5FF73F7CDB7D3ECF8E460A3A4EBDF9EECB0FDF7D9902219D65E85229B0B989E5C091BE89C153E3AB2B3B3373CBBDC3F3C70726DF746AE4E4C0544FFF68EFE0C0E0D0E96DEF32944F8A389A8F86C9524925491682781896494A262909C6040851304CC410B6027230C440000D1629A080E7D264214B15B2782683A5334CAE804653B9ADE096CDE599B5D847C6D72DCE4DEBD2966329B6EE2D4782E5C80E1C0F208920934BD1B9140B142502A32B3003A13CC2A0F9CA312A8F72108D6440B20833208297CA2450C68B59BA9841E2E17260B3ECDB108B993A0E9E535815C943B18DF496034B050AC1CDF8BA7B67D1EA1C1B738E8DBBC626020E676A6DB5E4DB2192292C9EC4E2093A93653269369B497BD7F164765FAD3D7ED7231F7FFF473EF9B1673FF8DEBF3138C6E772CD8F8E2D599D17C5FD3BF4B36C119B1C9F9A1B9DA8F3F2D30FBD850660AB6DCE62B1CC4C4FEA0205A6433A85843CEE9999A9E9D999C1C1E1F1A189E1D3239363F3A3A3F376FB6A3E0E8C0D4FC5A2D9F1516BCF89B15B8E0FDFDA3B7CD39B8E3B2CF644284657D0A4DFA731549DE70D8613704263059D93658A574856A16885226592127082C5710AAAC8384E978A2C50E411900620B2502073792E57A652792A51C02299CC7A30E2DEB28ECED9261796666DFEE5E5E89A3BBFBD0E057D4070AB1CD981B2312497A10A65B942F115F21856C4498020CB185600A872998740AA904512C1ECA69B48863420776755BE54935B2C9AD85C2E86372B495F7C63716D61626972646972CC3539E99D9B0BBB56B21B9B6030406512442A82262254364D65B36CA1C0154A78322DC3D83BEE7BF0E37FFB810F3FF3F4673EF1EC57FEE51FDF7CFF1DB968C0B7B2B2ED5E1F3835B4BDBC5A8EA46580FAC0DB9F79E0ECE56D9767C5B6B0B2EC08EFF8458C991D199F9D1CF3781CB353A3BE8D35DB9CB5E7446F7FDF484FCFD0891343030353836333A706C6A6A71D9313B36B9E8D9D359F7DC675FAC458CF89D1D3FD63274F0F8E8D4EC100584E278972B1C6B367EB759DE34582964951177485165486D7395E657891667992E6495A24480E814512E330844350A602536590072A3C0032C512932B109912922840D17CDC1B5C9B77D947671C63939ED9B9A0D351F06D17433B85A8BF140F83F1185D285265F0185242A06C09C91744B842E653703C000637A974A886951EDAAF5E5048BE10AFC47CB9E0466AC71B5F75EF2C5A9726879C93C3CBD313EE999990CB5509879068048946C8749CCE27F06C0CCF27D14C922A16381024F3253C5BFAD87BDFFFD98F7FACA50A4F3C76CF079F7EFC0BFFF091671E7FF01B9FFDE4279E79E652736F6DDE550AA62B89FCD966EBF2D983E9B121EBCCCCC2F4ECE4F0F8D4C4349AAFACD9DDD36353535353531393F393D3B3C3D3237D13A74F8EF41C1FEA3B3132D6373D3F6E9D9BB49C1E1C1D181C9D199FF6D85D5B8BDEA981E9C193133323B6B909E760DFF89AC71B0D06B28948259FE9EA5A5BD35BAAA189BACCA9222349ACAC098AC249322B0A342F509C4CB13C490B0C2BB28CC20902C570284101B088E23400B0104496002455A472309D47CAC16CD21B0EB83657E79D6BF356AFC5B66577A4B6B7D281ED4C70078885E154F218552853C5229E4D8091EDD4FA6225BC5E437277D5E5F32A45A4FDB980BB10F216829B51F7D2B6D5BE69B17BA6A76D23836B96E9E89A1B0805A050904CC78964824826D04404CBC48952062FE76808A44B251A00F042E1AEB3075FFED4DF1F18D2C5B6FEAF9F79F6814BFB675A3209678AA90005E5AD03036778F5EFDEF2AE80CBEDF7AE62859CDD323F3B3EBD30639B1B9A999F9A9B9F989F1A98589C754E0D4F8F0D8E8F0E8F8D0E8C0DF78D0E9E1AED3F393C706278BC776CAC7F6C667CBAE7C4A9533D03837DA3B639AB656A6E7C607CF0F4F0D8C0DCF4B863626C616EDEB6B4ECDA58F7847D5B3C863765A92AC88AA4CB922189BA2C6AAAA0A982268B8ACC49322BCA14AF32A240F30CC54AAC28D2BC444B554EA3009447081A44C872850260AC006105184E03957811CF40D9ED987F6563D3E95999B1392667B75DAEF8CE563AB49309EE1CC3324920B88344FCE5ED35A590BC6C884D12E4C05472CB05C67D05BF37BEB6B4B930BF3E3FBF3C3EB9343AE9B55A239BEB99E00E1409A0F130998C6199389E4D51852C59C8E3C53C059619B84C43000D403C526970F42FBEFFEF77765B89B595F39AD055E865DBE4CCE4C0827D7A7A66ECF4F19B6518FEC1E73F0BFB433A04D76906CE16EDB30EDBB4D33669B74FD8A7062696E69C0B6373F3A3B3AEF9C5F989F989E1F1D1BED1C19EC1FE13FD233DA343C7474FDD3470F2D6DE5B6FE93979FCF4F15BFB6EB9A5B7E764FFE0C068DFE9FEBED383274E8DF40C4EF78ECCDC7C6A706074727276CEE6B00603BE7C324D21982A6B8AA2C98AA1C8862A6812AF899C2A8B9A24A822AF48ACACB0AA44CB0AAF72A4C053224F0802C6F3282B621C07E30C4CF0188D1560A280D00594CC4395441E8DE50BFE78D0B5BE3C6B772F385C16DB8E6735B1B17D0C8C8589540C0BFB0F18F44E836B92E5A8D796DB59CD6CAEC557DDCB1313CBA353AEB129E7F0A877763EBFEDCB0783F958B0140FC2E9289A8EE1A904954D53F93C5B2A89302C2008538178149671DC20992A4D3FF3D8638F5CB8B0BD60958AE5BB6AC69B77BB17758D2E021B8B1E4BDF946F764988E7E10D5F6E736B71623AE4DD5998B22E59561646173CD3AE886B7B7D61C539695D18B72C8C5BA64766A607A7C67BC7267A47077B067B4EF49EBCB5BFE7F8D0F19B066F7953EF4D6FEAB9E94D3DB7DC3470EBCD83274F0C9C3E39D073BCAFEFE440EFF1D1A1BE99FEFEE9E1B1F9BEE1C9DEA1B1DEC111ABCD914DE47882D7D59AAC18A2A4297255167459A80AACA28886C8A912AB28ACAA31AAC6A832A748ACCC5382408A322989382F138240711CC110304E54300A40C164162F95B17C194E16D074A91CCEA67DF1ADC5F5E5B925FB84D533673B96F36FD7C8CADD9DEA1989C453BEB8D7960AAC25D63CA145D7FACC827BDCE29958F04E5BC32E0F180E23C954391AA96412703E05E753582143E6724CAEC09501B60CF130CAC2088F622ACD180CD3E4C403D540E3C926497709AE59C1DF7BF7BD2B1323B3C38343BD837FF57FFD3F68ACF8ECA34F7CFCCD6FBB535323AE9535CBE29A6D2DB59D2E050A882FFB9EBBDEDA86A56DBBDB36363F3F3A3B333A3BDC373A7C6A6CA86774E8C4707FCF607FDFF0F1E3FDC78F0FF69C183D7ED3E02D7FDD7FFC96A15BFE7AA8E7D6D1D327C67A8F0F9FBE75A8E7E6A113378F1EBF69A4E7C4E8E99ED1A1C1C9E1A1A9A971CBDC843D164CD4E4BA26EA8656576443936B865CD3D4BAA6D60551E30595E71481554446D2445D14654190785E147985A70481160552100956A03806A3880A2662140BC13400502044952B58BE8C648B3788A736A32BD3CEE5C98563B7D7B4068D00B19D6C7035B6BD92F16F6CDA6C2BD373CEE149C7D0C4CAD87464C953F205A050048D258048144FA5F04C062B64D0521E2DE4895C512801328C8828AED09C4CB11ACBA90C5BE3E506AFB578A51C8E9D95AAEFB9F7E1CFBCEB3D77A97A6A6D756BC161ED9B4CACF8BEF881BFFBE3F7BEFBC67FFFB05ACAC75736D6665D22C03FFBF60F3C75DB437BB000AC46BDA3CEE99BC75C43CEB99333F3A7E7674FCF4FF6CC8EF7CC0C9F9A3A7D72E454CF407FDF48CFF181DEE3C3276F1A3C79CB70EFF1D1C11393C33DD3433D93FDC7C74EDF327AEAE6B1DE9BA67B6F9E3C75F3C8895B067A4F8F0CF48FF79D1A9B9F59B4CEDA399C93295613A4AAAC1B9C5665F586566B190D43D67549D34455979566B5A6F2BCA1C88AC04B1CAFF2B2C12B355E6D2BB57DBD5517B48E5A6FF0DA9E526FB1729564BA92AEA00C55A8A0E9828E712248492083A76028523A16D95CCE84367291ADF8F6FA9ACDB6383DEB989CB60C8E6DD8968AC108148E22F138994955A2613293C253292295C1D2391E840504112A904191225C9170B4C671755150285AA1E82A2F7434BD29AA4D56F8C83B9EB86F77EFDDF7DDFBC977BEE32E454283D1BC67EB6D676E7BEF030F986FBCF48EBBCF4EDEF27F9C23439955BF7BD0725939F795F7FCD325A28BB932CC52495F27D575525CC7293750B22722D33B9BA36BAB236B967EEB54EFFCC4C0FC58DFF454FFEC74FFECDCB0CD3AEA5C1A756D5B36B7E637BCB35ED794C736E1EA3B3E3970F354DF2D13278F8FFCF55F9FEC393978FAE4C8C0E9A98911AB7D6129B011886DF9F39154D217CB0553397F2CB5158A6F06635BFEF87620B2E5DBF17A53914878C7EF5D5973D91C6E9BD3B7BABE6C5F5A5D727B9DABAB8EE5F9B169C7BC6DC3EDB54ECEB9E6ECAE19DBA67D25B4BCE15FDA70CF38379DDE0DAB67DBE1F55A563616568E1563A16C68DBE75ADAB42F3AC6669726AC1B56777865138AA6CB81483918AC44C34034508E05C058984865B8324466CB54BEC495011182340C3728AACEF0128C7115A4C6092A46CA084EE64B1AC51DA8C613F7DE7B57BBFED885837F7AE65DE7782AE158B853129E7DEC913BABF2036D63E14D7FF568B5C9049272A8F244FBC1A7F7DFFE54F76D5F7CFB3F993F78C3FCDE15F3EB2F1E7EF9977FFCF4F77FF8D4673F79DB130F1207ED18C7788AC04AD63BB6B63AB1B63CE9764D795C539E55CBBAD7BA99742732EE44692357F101900F0838C31B16BF63C23D707CA2E7D6919E9EB19B6FEEEBE919E9ED1D3FDD37353232E3B2AF6C2C7957AD6EB7D5E3985AB28E3BBC76EFCAFCCABA636D7D71CD396377D91697ED4B8BB38EC5E9C5558BC735695F995B5C9E5BF22CAC6C3937D79D5B3E77706379DBE3F0BA16DCCB9695CDC54DC7A4C33EB3689F59F438BC4BB32B2BF39EC5C925F79CC7B7B875CCE77285573D8ED109D7E89C67D2EE997478E75DA1E5ADF0CA66606935BABA1E5A598D7ABD51AF37B2BE1E5AF76E2DAF84BC5B3EB737BAB1B5ED72F9DDAB1EFBA273D6BABDB2B9B1E45D73AEAC3BDD6E8B7DDDBA58DC893D75CFFD4FDF7BF99EA6FAED4F7FE873EF7FC77D2DE9BEAAF889C71F69C0650329CCDDF27F1ED2D58F5EBA3F36E67C4FE7D14FDCF78157BFFF92F9AA695E33CD43D3BC669AAF1F9A3FFBA5F99F3FFEE3E7BFFEEB4FFCCBCF3FF2F99F7DE80BDF7AFC631FD87D0C5B29A41CB1882316B08603CE70D81549AC26F21B39C807200108D82A96B7CAF9F5526239BB3CB13A3F641F393577EAF8C4F15B864F9E18EB393D716BCFE8C8F0C2C49025B0E40F2E06E36BC9A4371B5F4D473DF1DC4E21BF9DCF6E664BFE526E279FDCCA647CF962A00C8640305C2E45F3C568114E55CA51000883501404E3502952248A049EC3D00C82A7313483605914CD20953890DB4E6131904E22496FF4987D7462AEAF7F757ADE33B1E01EB37AC6EDDE19C7F294DD6B59599D5DDCB6AF6ED93CEE19E7967D75656EC96D5D765B966DE336D7F4D2BA7DD53DBFB4346D5F9C5D5AB2AC2C8C5B972D2B6ECBB273D2B632B7E89D7765D702EFBDF7A1A72EDD7687427EEDA34FD591F8ED1AF2E65DBDE475013BDE75CB58D831FB9BAF7C89F2EC109EC83FBFF393E68BA6F9AA79EDDAE175F3F0E8E8BA79EDC8FCDDCBD7BFFBBD173FF7B95F7DF463FFF1C4BB9EFBD0477FFCBE0FFDE793EFFFD203EFBD8C74E1B522B80E14BC40691300B6818A1FACF8003C5021823019C2103F0A6E41C57530E408AE4C79660717474E597A4FCCF4F64CBFE9E6815B7B477BFA2627C716344C6E12D536D3AEE1F53DE9A0C5B615581601DE80952AA2AA15B546D6254891408D2F8B7245E2619604080111144C6D732DA1C25365022F22148093658C2CE16409C74B2851C6907C4540388356906439ECDED9747A8F2D8F4FAF4E5A3C130B2BA30BCB2316CFA47D79D2E69AB0AECDBBB69D9E807B33E0DE8C78039BB6D5D0CA4EC41B8C6D84F3FE54CE970442B9FC4EB21CCC2219084E8344010513252C0DE26990C9227C962213009BCCEF91440BCE3FD8148D62F8C1B604FA3D21D77C66C3BD70FAE4072EDFFB9E33776C1D9F79F68EA7CC3F9AE675F32FC7E1E1A179649A57AEBCFCF5AFBFF80FFFF0D3F77CE04B0F3E76F46FDFF8EE537FF3E587DEF2E1FDBBBB195689B37C9C43FC2819C2983041053136424A714A8CD24284E1223CEE27E06D30E349F99DE1D9E195B1C1C5E17E4B7FEFF4A993E3A77A676EED9B9C9C710059B0CAEA0226CAB8AC108A408A1CCE4B842011028F3002C2B1102B618A848812264898C0B3024B730C4E73042393A280712C42722845000803130C8C912588292174199550A6104D07D77CAB768F6B7EC93A613916727A5C23B32BA30BAE61CBCAB86D79C2BE6EF780B17425912D8563595F104E66A07806CB94E16481CA237C9990209A29A0741E618B980852780160419C830816C425985011A68A0A4D5CB9A775DBDD8D7D3691D4F219BD98D2CA4928B09A5BF3C456DC8BC3A32B83530FB1DDC2E4FA6E5AFCF9E77F7C74DD3C324DD33C348FCC1B67E6D1A1F9EAAB2F7FED5F7FFDEC477FF8D4D35F79E42DE68F7EF8B9071EF8E0998B0FB07AA7C0F271824D5268B0C22629220873715A4AF34A8253E3422357ADA63531CAD32112DC2947DD49EB987BACCF36D6BFD07F6AAAF7D464CFC9C953C396D303D3384A7138A7B3AAC22A122D2994A45092C64A12CECA0477E352C07881142542940881A7388E643982516841664589E1789266608443311127B80AA662748757A91C90F545D7ECEE0DA7D735BFE49874EC2C6F1D0B2FAEBAC72DCB238F89FB0000200049444154A373DB0BEEED05F7F2A4CD35BBB0E9F4045737F2813007545800A04B25325F22F325B20411C5325E2891258006201646980AC4A1D80DF9C463B484D30242A8247BAEDA79DB5D0F7CECC9A7F0700C0DF8F9745CC82613AB4B5B76C7FCE9016023E4EE99AED8231FB8F484F9AA69BE6E1E99E675F3D0340FCDC3A33FADEBD75F3B7AFED72F7DE95FFEF7231FFCEE934F7EF8E0DCD1BF7DEB5DF5D6E37AB79545AB5952C9D06DB84A475025CB496956CE0B5256D4B28A92E01A79B95E90B5ACC4C739245849AFE7562DBEE9A1C591DED9FE5393BDBD93274F4DF40D5A4EF74D6108A9B3AA464A554E33244DE33583D3545A36385D262583D36546D1054316749953355E57249DA1788116554E151941E16599E5159A5169C620B936A7F065AC18486CD89617A76CF3A3738E499BDFBD03A74111A18F8596DC4BA3D3CEC1A9D4AAAFB8134B7877366CCE158BD33A3EBF383D1F72AF15C3611E023918A2CA6516426900E62A9842300282F128C621A880920A298A182713824C300A41D5686E5FD11FBF74FBFB1F7A4848263A950ABCBEA1E573E0D676CCB9DC05C9CF3FF8AE2F3DFAFE5F7CEADFCDD74DF3D0BC625E378FCCA3A323D334CD23F3E806ED177F6FFECFCF5EF8ECA7FEFB7DEFFEEA238FBCAFD9FD8F279FBE07659B49A49DA7B50459CB8B6A861793949C66E40CA7E6043EC32A59B19A136B79BE5612F5B22CE644324210317AD316B18C2C8F0F5806FA264FF78FF58ECC0C0C5B87A7ECDB3BC14EBD5BE50D8DD734A5AA4B5595AFEA7C4D650D8DAB1A42DD10EA55B1A14A7595AF1A724D91744DAD29A2210BBAC82B3C2BE8B222B3EC41B58EA50A255FDC3BB3B832B7681BB32CCD3813BEB888F24DA12AC32C9A2F1FF339576D43538EC1A9C256080A456E88432C91C9FB62BEC5F59579D7E2B4C335BBB8B5B85A0AA70C826E8BA24A9206C72A0C25919442732A2D6BB46CB0AA42493AABE98CD295AA1765FD2E43A71309369B092F3AFDB63924E2DF5998B940D1FFF9771F7AEE9F3EF1AB6F7DC3BC76CD340F0FFFFF79FAE8CFE395D7CC3FFCDEFC9F9FFCF263CF7EFDC1473FD23E7890E0DEAE75F672F86E896B141825811919464BB35A9AD333BC9AE5D42CA7A7C566516C14B86691AF978566453500A58337A938135E4E3BA7BCD323F6A181E9BEC189FEE199C161CBF4F4E2D6BA9F230555D06B7AABAA350DB95655EA9ADCD095A6263754A9AE2B4D5DA96B724D97AA55A956556A8656AF197543ABD6557DAFD66C882A98CC6E3856D717DC4B130EDB9035B8189461A123D46482D3399982101641191839E65FD9B08D4C2F4F2E147682370C7E349EA633393A5D600A7021908EAC451D938BCE29A76BC6115E590722718D209A92D0942595615586D7184567359556645A9328B52ED676C5EAE57AF3FE76F3DE66FDED775C0A2C2E2E4D4CB827C69DA74FDD8681DFFFFBF7FFEADF3E73ED85E7CCC3374CF3DA9179F817C87F617DEDA53F9A7F7CF9DA7FFFF8971FFBC4D71F7EFC83CD338FF1F5F300DBCA518D126FE4E86A9E5153949666F50CA7A55925496A695649324686A9E59856496896857A59A8019294E36A60B5BC0D6DD8FC3323B6A971EBA953A3FD83B3E363F6B91957702BAAF255436DD4AAED5AB55B37DA0DBDD5A8EEEA5ACBD0BABAD632F4B6AEB5AA5ABBAEB61B6AD390344D506AA2B267346A9C548EA4BD36F7F2ECE2D2F8E2A6758BC89012209DD3CF56194D26381E23798C94299AC3101A458F4556B7E7FBC69646A7A1600C8DC5D1589C48E5A874964CE6981C406400325BC13395CC76D235E974CD2E2ECD3AD69DCB50268D150B1777BB555ED05849675595D3645657B89A2E1867F4061C0E6970E99987EE7DE2EEBB626B5EDFD2CAEAD48CA77FF0A96EFD7B1FFD9B2B3FFEAAF9879F9B575E368FAE99E6E15FCAA1691E9AE6E1D1D56BE6EB578E7EF382F93F3FFBED673EFB1F6F7FEA1F2E3D743F6D9C87A54E9957F3AC96639524A92449394D8949424AD142921292149F20D51425C5F15A9ED7F39C5E106B90D6451B35B0CA2499D052D839E19A18981D1E981E1FB5CECD2C2FCCAE90105757BB55AD6DE8ED6AB55BAFB5EBD556DD686B4ADBD0F66E84AEEE56D5BDBADC69CA8D3BF62FDCB177562758389E5D9CB15AC7E797A6169746970A3BC57D71BF2B74AAB4B1AB75244290188E235991E6798C960986238863999DC8C2C0C4EAF44261C78FC51378228927B3642AC3E44A6C09E441940620AE82E9048F2421DF4AC035EB5A18B758672C8B367B707D83875183E1349AD70445936B92A86BA27E60B44B3BA14A28F8E49D173FF68EC7341808BBD7FC0ED7FAC8D88322F95F7FFFCC8BFFF985EBBF79CE7CE315D3BC7A74F88679787464FE395F9BE6D1D537CC2BAF9BBFFD9DF93FBFFCFD17BFF4930F3FFBC5071E7F52DD3FC8B39D92A8E705218A2A499A4F507C821213341BC1F938C1C6703649B251444BD34696D5F3829617F592D6429A67A82E1B23B2DE8C6BDA3DDA3F7BBA677472DC3E3BB93C3034DFD03ABB7BE714BD5533F6DA8DB3F55AA75EEB34EA7B55AD5D533A3565D750767575AF661CECD70EF695964250B140C83A61599E5B9EEB9D5D9A5A89AF252540BEA05FE8485D9DD57441AFF286CCC83223F324CB1194CCF22C4E720C7F2CE1DDB1F48F2E8ECD542231229D445271BA54C2331916006800A24088811111273818674152256516604AA1FCAAC5E398B4D9262CAE393B94CAB4657557ABEDEACD86546BC8C6B9E65E2118B10CF62556972AE1ED77DD73F9CE46CB677186E62C9D6CF46BEF79B3F98BEF982F3FFFFFB13EFA53CA3E3A3A3A3A3A328F0ECDD75E35FFF007F3D7CFFFF4539FFAF5273FF3BDA7DEFFC98B0F5EC8310705FE5C45DF2B291D4051322C1B23D818C1C5493A4E60A14AC50708494AC9B04641AC9614BDA455A16AA3526F80D52654CB6FE43C968D9961FB50DF8CDDBA363DEDE81D9C22604AD31B7AADDBA81D34AB676BDA7EA376B65ADDABD7F7EA46B765ECD6A46657DF3D573FE80875289AF53A56E626E717A6ACD671476E3BD3A49AE76AB735F84E8D6FCA8C7263B741E3759192245A921841A0380167648A6730EA5872D36F1D1C5F1818C3D219249D220B592893C68A790A045804A55194230816C7798C14304E40E92AA9EC0AAD2AAEA3496C65D6ED9A5E5A9E77B82DF6F466A046F27B4AF58EBDB3BB5AAD1C89AFDBAC9115D7FADC8458CC5D9024B5503E43D2A27FFD679FF9B0F99B1FBFFEFC73E6F537CCA3378E0EAF9847578F8E8E4CF3F0F0FA55F3E8BA79FD0DF3CA6BE64B2F992FFCEE0F5FFDDA1FFEE58BCF7FFCD35FBEFFF13331E81397DEFA44EDD2C3E241354B4B29524CD1540CA762389BA4980489071031C5A8395EC97206A0D62AB53A5C6FA1F51A583DCF9F0343F0F2ECFADCA87364607EC9B9393A65E91B9B2CA44BD56AD730766BB53355FDA0619CAF1967AA8D835AB5DDAAB6F76BBBB775CE9DADED6503C94DE79A6BC6E19C72DA279CB940B1C9B42EB66E6B2BBBBAD854A5BAC4681AAFABB45C13AA9A5093584564E4AA54A5115A26451E6539843D16F3FAE607C62D83137032C794CB74A988170A1408D0159842301A27789A12288A232811E7154E92295EA5A43A675C685DD049038E23AB56EFE2B46379D6B9615BCEEC84885CF940A9754839B3BA53DC0E82C15076DD1B73D89FBC70E173EF7AE276A4FCD37FFCE8D5FFF9AEF9C64BE6D1B5EB8757CCA337CCA3AB4747D76FB03E3A7CE34FAC5F7DD9FCE3CBE64F9EBBFACD6FFCE6539FF9D9079F7DF6ECDD5F7BDBFB1E661A0F0BDD7A8E5252B89022D41C8FEC007C82A2C2281326942CAFE5050350EA15BD8D351A48A38E181DA2755E3C0F45D06D5764AC7FDE32B33C3262E91D9BFDBF8FF796B358BD7ED6D00F0CFDACA19E33F4034DEB687AA3A1D7CF36769B9C5A891757E75C8E498775CC6A1F732009EC8C71FE62F78E83E6859A5CD7444395AA8A5833A48621D475BEA6F2D51B9B3B02ABE89221D1124F0812210A98782CBD1999EF9B708CCE677D51225726F325BA54622B188B902C427238C713BC48892C4E53082153BC420B2A236ABC2ED39ACAD6DAFA6E936F4111C0EFF0DBC71CF629877DCAEA77ADB6318A4A66B8542E6475CAF912ECF34BC9F8C71F7AE05111FBAF4F7DF0CA2F7E6C5E7DC53CBA6A1E5DBF510FAF1F1D1E1E5E33CDC3AB6FBCFAC69557CCA36BE6EBAF9AAFBE72E57BFFF9C2E7FEF1854F7FE2DBEF7CC7B3172EBD43DFBF13D53A39464B5142821453B492618D2CDF2C286A82E363A49AE58C826814A51AA4D560DD0035159655503E279CC1126472BBB030E1B2CE2C0F0FCEDD7C7ABCBF775A645B8DFAED9A7A50D5CED6AAE76BB533B56A7BB7B3A7906CDA17754DDA17C79C8B63AECD797FD8155341F962EB8E33F5DB6A4A47D35A9A68D4958621566FF4E0BA58574443127551D0784E91C4AAC06A022D09A4C8138244C8C7525B21CBE0C4F2B4B5104920D9229A2B60F93C55AEB020CE2394440837C4ABC8082223889428B3A2C22A32A70A94C2110A4FAA0AA3B7E4EE9EBA4F97B89037BA32EF5A9973E437834C3A776FAD9D5FDED0B3E53604BF7DB7FBE1CB97DE77A6F9DBAFFDB3F9FB5F9B47576F50368FAE9AE6B53FC78D996BE6F537CC575E32FFF882F9931F3CFFD94F7DFFA9A7DE576B7EEEDE47CE17B0BD3CD5CE3346861112A49C62950CAB24692DCD4A714A4DD0529C34B2AC92A18DA254AFE85550954A4C1DD3CF4B6774C42846A0E9219B6D76657CD47AD3C9F14D6F626FF72EA376BE513B575376F7EAE7CE36CF74B5165680D6ACAEE5D945E7A8C333B3165F4DB7D9BDB3DAF98BAD3B6A7CBBA91FE8725757DA75ADA9F3B59AD4D4C5BA26D434A1A62B7545ACA95253959A1CAD09BCCE332A474B3C258AB47A2CBD1D768ECF59C7A632810805C05801204A300B9202CCF0082360BC44CB2AA7898CCC5302C7CA22AFA882A6B0AA4C6B22A9A8ACA12B758937AA5A77BF75B1A51DECEA0775B6965C0F65573612F39EBB893ABD1C55B7939FBCFBBE1F3DFBB75F7CD7A3577FF203F3EAEBA67978F8A7BEE306E5ABE6D11BE6D115F3F015F3F025F3F5E7CDD77E75F4B36FBDF68DCF7CEB9D0FBF8D219F10D4C745FD224475F2683B8DE9314C89E15A8AD293849A40A43824252A721C9693081D05D050010EE5CBBE6C6E3B15F106032B7E34899DAFDDCE80CAE2DCBA7DD6333BE65C9EF776E48386B2B75B3B7BB17DFEBCB18B65CA5EE7AA75C2B6306AF3DAB632BEFC59E3B6DB5B97CF546FD3E56E55EBB66BDD86D6A929BB55B95B95BB2A5FAFAB5D43EDDC80ABF25585330CB966087595AF2B5C4DE46B02AF73ACCA328A2818C7921B61CBE08473D25288246810C18B2005E02C44F328C7C20C878922A908842CD39AC26B3CA7F0ACA4F15A9537EA62C3E0AA8658D559CD901A9250E7F9BA24340DA179C7DE1D68B21C9875DD2FEC99BF33CD6F3DBF17842E152A5F7FE2ADAF7CE78B47BFFE6FF3EA6BA6695E37FFEC3799D75EFBD54FDFF8E58F5EFEFE575FFEF63FFEF6CB1FF9DF4F3FF5938F3EF6DF1F78F8F30FEEBE852EDD0314AADBFE7339E0A08818D15C3552D0A3B01EC38410A44621255AE64259642B5A5A0F479CDEF0A2D76FF7AC2FACACCC2DBA2DCB8BF3CBABCE4D8F6543C1EB688E8FED942CE3EEA5D95509E4CE889DBB76EF38ABEFE6B7E2DB0B6EE7F89C75C2B638B5B269F735B9BD5DED42BB7E41D37615A35B6D1C548D4E5D6B34B55653EDD494DD1B4B5B608DBAB1A74A4D5D696B7243136A55B1A1F1BA2AE8BAD29484BA24D479D6E0688DA1D463595FD43238611F9D4192653C03E179982C635499E01086C3398E96385AE1195DE10C895554D950055DE37583D3ABBC5113AA35B96E480D4D6EE862B321B69B52A7AEB6778DAE01D1E846C0FCE36BE6B557CD6B87E6CBD7BFF4E05B9F69377FF0C9F799D75E348FAEFE59BA5C3F32AF9A4787BFFF8F6FFDEC0B9F79FE0B9FFAE9479FFE97FBCEBD5BC61E80538F32A55A78AD6C9F8297ECDCC6A6BA131236C3D5484E0FE58C08A08641350A09FE0CEB4BA01B8192673BE658B5F48FCEF68D2E0C4E5B87666D6316E794D33DE759B36FA5B6CB1C586B52E7D08C387A7A8188A0FB901A5BF0A800BD386E774E381CA3D6B599B5E052B4C1EE77E58B75FD8CA67524BD296B6D556D1B7AB36AB4EA46B7A5B71B5AA7AE7635A953537635A953FD8BBC549A86DAD295A6AA3454A5A14A4D4568497C4DE4748E56445A3D16DDD8B18FCE38C7E78AA1249E872900C740E4C62F37122D49AC2272BAC4D724DE105845E1355D306E24A91B6557E3AA9A68A852FD06EB96D46A29CD5DA9B157A19F68B7CD577F7BF4BB1F9B872F99575E315F7BCDFCAF1F3D7DAE63BEFC8279FDB5A31B86DE8DECFCEAAB7FFCE1770F7FFA83E7BFF40F3F7FF699BFEB1A8FC24023E8A7BDAB59DB7CD66E05979791152FE1D9AE86B35A20A5055246B8A8040ABC2F2D05739837585ED94A39D676661637E797DCD38ECDF9E5F5D9A52D8B7BC7EE8DAF8633BE6C2108B08056A3F665B8B561F1DF4EEE29FE726CDA55D9CE5A4F2FCCF45AB25BC51AD63D5BBDF3A071B9A59FAFEA07B2D696F58EA2B7B46A47D35AAAD2A86ADDBADA6ED6F60CB5A3295D43D9ABAA7B9AD2ADEABBBADE5594962AB774B5A3CA2D5D692B62A3AA7525BEF627DC8C7E2CBAEEB78ECED84767C0689E28204419C3109C82299160658A971959E53499ADCAC28DCF277455AA1A5243136ABAD8AC299D9AD2B961D6D4944E43E9B694764B69EE29F53328F3ED27DF6AFED737EF0B7BCDEF7DE38D9FFED8BCFA8AF9DA4B5F79FA89D77EFE63F3F0F523F3AA691E1E5EBF621EBEF6C2CF7E605EF99DF9FAEFCD5FFFF4671F79DFFBEAD5CB10A445E2B5745E0BA7D5684608C48D68965AF5939E801C48EB812CBF99E0B7D2F46692DC8CC1DE50D1BD13B3AD25ACEB51E76669335E588F029BF1D2663CEF8D94B79248B84027113ACFD499EEEDEDFBD2DBE507944B8AAFE41F5A903254722D75AE7EFBD9D6E533B53B3BFA859A7620CB4D596B6BDAAEAEEF695A4735DAAADAD4B48EA1755BF57D436D35EB6714A95DD30EDAD5B35575CFD0F674BDABAA6D55EDDE10F486DA51C48626B774A52D0A86C0EB0CA31DCB0553B3BDE3B6E1592C0D120584047002232984B8C15A67559DD514A66A480D453464C950959AAEB534B569A89DBADA35A4564D69196AA7AA75EB6AB7A5755B7AFB4CB553CB81E6733F323FF9E1277371F395DFFDEA1BDFBCFEDC73AF7DFB1BAFFCC7BF9B575E79E9B7FFFB87DF3E6F1E5E37CDABE6B53F9AD75F34AFBCF8EA77FEFD9B6F7BE2BD6AFD2194BD50C43A69B01E2BD4D3652351B89310DFD938F3E1F3F7FD4DF54233546A4421D69B42DD517C3D565ED94939D60A6BC19C2758F6C6428EF580DD13595A4FAFF9F39BE1EC46888C958534A4E5493289F2A02CD1CDA193730FD7EF967D406C6AE53CD7BD50BFB45B3BDFAC9F6935CEB78C33CDDA5EB5D6D6F5B6A175ABEA5EA3BAAFAACD6AB55BABED1B5AB751DDAD1BDDBAB167687B9DDAB94EED5C4DDBD7D58E61EC6A5A47D3767575D750760DB5A3C92D55AA2B628DA6245569B0AC7A2CBAEA9FEA1D5B9CB295A2391624F1128A222483B32CC62AACA2F1BA42A93A6B684243955B8A5C57959AAE3534B5AE6B0D5D6BE94AF3C69B65E8EDAAD6EE56F79B5A6BCF68750AB0F9FBDFFDFC91073E46A2E66BAF5DFBD5FFBEF89D6F5FF9EEBF1FFEF267E6D557CDA3AB7FF8C52F7EF08DAF1FBDF4C2ABCFFDC0BCFAA2F9DB9FBFC5D0DEA535DF293405B77FFBD4B86FC2E2E819DC9E99DF9898CE2DAF229B0139927BF7EE9DFB599C580C404BA1AC7D1B5C8B669777505FAABC1DF3DBD7DC13B685D185B19EB1D193A3B651AB63626171CAE61CB1ACCF2E7169188B00AB0B9BDB2B6930CADE215D56C2F8DA49CBFD7B97BAB5DDBADA6E68BBB56AB7AAB50DB561E86D5DED68DAAEA6EE19DA5EADDA35B46E55DFAD197BF5EA7E55DFADD7761BF5BD86B6DB32F66BFAAEAEB40DADAB69BB9AB6ABCA1D5DEE6A5247111BB25C97E5BA2CD514B1C131FAB1E446787660DC31310F26B32C8452004A112C47F21CC9F3ACA4F09A2ED6AB7253111B9A72A34AB475AD55ABB675AD51ABB6AB5AB3A677EA6ABBAAB5EB46BBA9765A7A7BBFDA3E0071F3F72F3E77EF83EF2B95CC37AE98E6CBE6E14BE61B2F1FBEF0ABC3D7FE609A574DF3DAD16B2F9B2FFDEE936F7EE4E94EF3871F7CBFF9DC7F99575E335FBB66FEE2F79F79F0A98B80CCEFE4A1F54872D19B707AB24B5E6C2B062EFBDFD9B8F36FDBF7319E34E1CD9556E3157F968897539EC0C68CCB3BE7F658D63DF3DEC05230B19AC8AEA5B0085405D5BC374E468AE04E96C9B197DA8F3C76DB7BDBD0593E84794E2F9CD53A0DBD5537BA35A565E8ED4675BFAAB50DB5A5295D43DB37B4FD8671A66EECB5AB078DEA7E4DDFAD197B8DFA5EADB65BADB55BF5FDA6DEADE9BB9AD2D6D55DC3D8D7B45D55ED6AEA9E243415A9CD4B75596E4A4253E69B02AB1D0BAF07C6FB866747C6A16C81284134485008C7E01C430A3CA78882210B7585ABC97C53E69B8AD2529496A23434B5A92A0D4D6D1A6A4B97BB3565D7D0BA55ADDDD03AAD6AA75B6FB701C4FCE6B7AF7FFAB3FF7CE19C79F5C557BFFE99E7DE71EFD71FBBC3BCFEF29F2C27F3DAD15F9CBD2B47CF7FF56BBFFCDA17CC5FFDD07CFEFB2F7DF99FDED3E9EC264AED04B89FA3BA19BA1AC1854D905ACDFEE6F33FF8C187BF687EF7056D0390B6206A0B0C2EEC544260713B9F594D66D752D9ED5C76330B068A5808A442101502B0AD02E607F92C5303AB757CF77CF59EC7EF78BA8DEC611B001F42F7B5BDBAD1ADE9BB2D635F57DA55754F57DA86DE6ED40E1AB5B38DDAD9BA7ED0A8EED76BBB8DEA6EDDD86B18671AB5B3F5FAD96AF5A051DFAB57F755B9A36BFB9ABAF79790D5AE2CB715B92B295D59EA085C5D64EB2A5B3B960BA7C74E0DCF0C8E130042810453A13958A4099E65149ED304AE2AF23549A88B6C5D91DA9C5813E486A4B634ADA3AA6D49A82B5253573B357DD7903A4D75BFA5ED75F54E476E1C70DAA71F79CC7CF1A51FFEEDBBCD577FFBC3872EFEECFCEEC778D4BCFAB2F9C6CBE6F5D7FFAC12CD1B5B8DE6ABAFFCEE9BFFF66F6F7BFCE37BDDBFDBED3E2E886732C06E12D84DE3CD04ADFB716313811D51F3E77F3CFCF10BAF7CF5471F6C3D7C5B4A35A234E603CA9B7934580177C0A2AF04FA4A68102243301180A82042F82B6408E6E264136CB4D14E13EB34C9DD47CF3FDE463BF87A494D317BFAC15EE77CBB71B6631C1852A75E3F5BAF9F6DD40E1AD5FD4EF39CA1756FCCD48CBD66FD4CDDD86BD5CE35EBE76AD5B38DFAF956E3EC0DFAF5EA19CDD8D7AB67547DBF6A9CD1D55D5DDDD3D5BDAABEAFABBB8AD212C5BACCD68F6582C9A1E3FDB689B97222C740240D912CCC7184C4522ACFE8225B17D9FF978AEF8E6EE3BAB386889901D8AB8A6DD9922DC96AA63A7B4721409020584082047B033BD131BD577480942DD7D829B6E39475BC291BA7387136D59BB25FB289B3E9C58913775B9225ABCDF70768EF2ECE3DEFCCE19973005EDC777FF7FD30EF05563CA1D5E5C8CA52786525B4B212D936A635C4EFC5C241CAB781073688B097DC588AA0411AF1E1B81F5342F4D646587DEFE23B3F78517DEFCD97D0F08BA3235F59F5A8372EA957DFBB75FDFDFFE13A47F707D7D4D7DF505FFECD6F3EF9D433BEC8D6A4E75301EAD36854766FE05DF3CB670739C7C62B2FBEAC5E55D56BEA1BBF78F9AD6FFDBFF87060B5CDED318E8D36F42D744DCF77CF0CB5395D6D43E326F770CBE058DBF0B46962CA383E6B9D59ED5D090E8702A391C8141A99C5A3E114E56186EBFBD6FA3CB0170B87C9508888042938CC05FD7438C886FD341260C25E3CECA7837E0A0E739108130C9218C2E3088F450424C247422C1C64910003FBE9A0970C04287F900E87D9B09F0E7BC9D00601FB18D8C7F857D11CBCABA8A6D7D87D47C9EE7B6FBB67B86B606164667E746661D2935BBF2CCE7B7344AF2D45D65660EF3AB6B612F66DA0EBEBA8CF47048374D04F047C78284087834CC847A11116833934C2E2615A80596666597DE79D57BFFD75F59D777F9FD8FAB4A9E7D6B7FF5DFDE0A27AF53DF5C6955B373FB8B5DD78FAF00799772FDDFCCD9FFEF2C5AFFFE8FCC79E67D289614F72640DB78E7D49BCF0E7AFBEA4BEAFAA1FA8B76EDC546F5CBB75F1ED4B3F7EF9E1396CA57E08ED5F5BB3CDC1AE8DD5BEB9FEC6DE51C3F068876BAE7B6EACC33DD13E3E65989CEB9A5FEA5DF53A838151383C89E18B0CBB2E25C2E98EA36DCBCE452488FAC3483882C3211289B0E1301B0AD0413F110A90C10006472804A611840BA1344AF0E13089C0244908084C4722542444C361060ED1E120B3EE4383113A182111940A04E14010F6FBC2411F9C837F23BCB11ED6D85A4CC7EE3C7864CF3DD37D6ECFF0F4F2A4C733E5F1CC2C2DCFAD2FCEAFAF2E05375623DE35D8EFC5BC1B11EF1A1CF0E1E120E5F7628100110A51A120EEF7A3C1200E4728384261288B232C09B332CCB173ABEAC577AFFCF425F5ADB7D4EFFFF4E343A3EAEFFFA05E7947FDE0A27AFD8A7AFDEACD1B573FEAF3A9B754F5E2E55B7FFEDB3BDFFBF1DF9FFBFACF1F7EFA291FF5B1653C3632FFFBCF3DAB5E7C5B7DFF2D55BDAAAAD73F78FB2DF5FAF55F7EF6F94F2CB1EB75AE40D7B2AF7771DE384C8CAFCE989D5326D7B87164DC38EAB1CDCD5B6796BB1716ED9E35C7AADF190C8EC0A109149927A38154CC9F3AB1E724B74E2181088E623C49B31122BC118603281EA6D1108604613810A1714260D89818A53186426981E258842422188BD3702022D2BC48897136265212470A0C2910308987510A438908C2E22407933CC270308DAC87512FACB1341BEEAEBAE3BE3B0F7A862656466756A6165696563796BD2B4BEB2B4BABABCB6B5EAF7F6DD5170CC0C1001208223E6F381C4231948A84B170180E04C3C1603812820982884422300CA330C2A1541CA1C4C5C5CB3FFFB1FAC6DF5FFDECE7D55FFDFAE66F7F73F31FAFDEBCFA9E7AED927AFDB27AE38A7AE3835B373FEAEDA9372F5E52FFF1FADBDFFBD1EF9EFCCC9770E1EBE2D65341EE774F3FF7558CFC7E9C7FFD9B5F50AFBFA65E7C457DE79FEAF5EBAFBEF09F9F09A4379A47E9FE8D70D7ACBF6F66DDEE5E300FCC1A07E74DA3739DE333E6F109937BA16776B17B7EB17BDE3BB4B131BC111A0F61F37834185302D1B6C32D4A50E0BD08BB11A256FDF48A5FF1E3DC061A0B319199157C6903595C879756C39EE58D890564DE0BCF6D042617C3332BBEA985C0CC22B6EA0BCC2C7B273D4BCE89B59139CFC044606675AC6770617462C9ED9E19189A1D1C9976B872BB6966FBC726BA5D9A9E76D3D13D7755DFBEDFD33F822DAEC34BEB81E535643D48FAC3BE8565CC1B44BC013C1096291EF72151421242341720C975580851714A96508EF263714A6682588C14648C1523A4E04592EB487466F69BE733EAC5377FFDB9CFFFFE8B5F56AFBDAD771EBF080000200049444154DEBA7CEB838BEAB54BEAB5F7D51B576EDEB8FA3F4E72F396FAC1956B7FFAE36BDF7EF1E5273EF99D68E6692FB635B9F43C293EED5999DFBFEF298FE78FCF7EF677CF7E46FDDB9FD5AB57D5ABEADF9EFBA1605F11DD6162D83B6F1C9E6CEEB19F6C986EB72F989DB3C6C139D3F0A26D72D136BDDC3DB76C9FF7395742E301782A8CCE2189485209449D8D83E422517BECDCBD7B0F9E3E76FADCB1B3C7F71D3D79E8C4A943D5678F9C3A7BECE4C9A3C70FECDB7FEEC4A993F71EAFBEE7D88903C78FED3F527D6FF5A9A3A70EDF73E4AEBDFBF6DFB1EF9EBDFBF7EDD9577DE0F88983D507EF3C74F7DE03C7EFBDEFF0DD07EEBBF7D8917BEEBDEF9E63F7DD73FCBEFDC78EDD75ECDEBD873586D37547F7DC756CF79D7D2DC6FE5653674D93C3D0D5DB66EA6D330D5ABA1C46B3C364B5B67474B59A06CCBDE69A36C3D946736D8BADA9BDE9444DFDF1332D671A1B4E9CAB3D7EBAA3B6F9C481A3CDA7EB1AAA4F9B4ED774569F6EBDE7EE9EFDFBD48BEFAAD72EBEFBF3FF54AFBDA35E7A5DBDFE9E7AFDB27AE3AA7AE38A7AE38A7AF3EAB52BEFA937AFAAD72EA91FBC7BE5573FBBF2D2F7BE93CA7C26889E1F5F880F4F4A8EA1B5D37553878FA9972FA9972F7E277BFEBB171E7DFBAF7F53AF5CFBFED6A7226DC3C4B0D7EB58749EB64CD4DBCC87CED9ABEBA7DB6C1ED3C0B2C5B5DAE5F6D9E7BCBD33EBBDD3A19145787C9D580887A67CF41A2D069431D3E4EAC8C6C13DF79E3D5C53BDEFC4D13D47EA0ED69DB8F3D4893B4FD6DD5B7FF6D0B9E3FBAA4F1F3A5B7FB8AEE69E9ADA437575F7D6D71EAA3B7ED7C9D3076BAAEF39537BBCC978C6D07EA2D574DA5477B0AEE94853EBF1B6A6632DC633E6D6EA96FAC375F5C71A5A4EB6B7DCD75677B0B1ED68BBB1DAA039BCF7E0C1DBEE3E7BE4D4A1DB0EDCB7FFD83DBBF6571F3871F6C08993FB8E1DBBF3DED307ABEFBDFDE0E13B0E9F3B525B7BACFEECFEB367F69FAA3974E6DCC1D3CD279A4E1FAC693D6B6A3F6B3E77B8C15CDFD37CCAD4D5EAB0B5F6F436DB06EB3A67DAFBAD474F7CF9C14DF5DADB377FF35F7FF8FC336FFCEC47EA8DF76F5DBFA4DEB8ACDEB8ACDE785FBDFA8E7AE92DF5F29BEA6B7FBCFAAB97DEFAF6177FB499DC724F47DAED94CD15313916EA1A1B4ACB3ECB11EAB5B7D5F75EFF463AA15EB9A8DEBC76FDD7BF7B60C2136EEF93DCFEA0DDB3DE331372CCAC5BDD3DF79EB61E3C32D9D8BC68B22E77DA7D3D2341BBDBDBED5AB30FC1A373C4AC975808E31E3889C4910554F289FC0ACD2C93EC1ACD785936242968228E24F0154242A25C48A43758D12B64908CE097591F8FAF90C80ACA073821C4B25E52090AE8224C6F506C900B79C2C1C520B286D07E8A58C543F37E62030F2E04B065343C1B46E790D05C50E36CEF9AE8728E5B9D431DF65173DF7CDFE844B76BB26BC4E398591D5E5C19F278DDAB91297F707C039F0D0746D7E8258CF420C1492F3C1BC49751620523D7287C85E0FC02B64C880151F032D100C7AE60719857560259EF867AE56DF5EA9BAF7EEB9BAFFDC70FD56BEFA9D72EA937AEA8D72EA957DFB975E975F5AD57AEBFFABB5B7FF87F6FBFF8A55F7EECC2A3CB9E88B91BB60E444C8EE5C676C7F1939D77ED639DFDEAA57FA8BFF9F133DE79F5CDDFAB37DFF8F1830FF3260766EAE707E7320B91F87C04195C58E9740E9DA9EF3A7CA4EFC4C9A9A6B68576CB5A67FFBA6560A5AB6FA9CB018F4C12934B21F722B904F3010E5FC1B00D0CF34790753FE60DA31B91C85A38B41246FD446403857D081AC0502F420508CA8F633E04F7A3B931E20B2181081288900104F3C2F07A040D60FE950016C4A8304606228837006F04317F04D98820EBE1F04A00590D21AB214D70DC13995C5D77CDCDF5BA9686C6165DEE95B1D9D5B105DFDC5A6829B03AB3E25FF4F917BCFEF98DF0923FBC14087A7CFEF90D782514F4F8222BA1C84A28B21A44362291B530E643432B01D40BE3BE0813C4E81046F97CA161E73FFEFDEBEAFBAFA97FFBCDADD7FEAC5E7F4FBD7151BDFE9E7AF59D5B975E53DFF9ABFA8FDFDCFCF32FAEFDEC5B7FFACCC7FE05F6E1B64EB4BBD76BB0ACB61AA7EB9AECD5675C0D4DB63BF747ED8EA8B573E6D09D7FFFC253EAA5BF7E83C0168F9EC0ADFDA4631C714CCCB5750F56372E59FAC61BDA5C35B58EE3D58EE3D539BA17DA2D6B965E5FF780BF77081D9D0F8E7AD0D98010E0181F498729381CA130948844A8304206103288A30114F687B110424770C21B61FC08E385A94084F48789409089C064288C078254384286602288207E04F12378080F7B83F0869F8EA04410417D613C0023EB4164DD8F6D0470AF1F59F76B424B2BB837B83A35B330E65E9D995A9F9B599B9B0FCC7982F3CBBEF925BF67CDB7B816585C8FACFAE1157F687523B21E40D6C3C87A185EDB66990E21B82F8207603284D2119C0C207410A602113610E642216E69F1637040FDEF9FA8EFFEF9EA6F7FA2DEBCA45E7B4FBDF28EFAFE9BB7DEFCABFAEA6F6FFDE167577FF1E2E517BFF43516233A4D6BADEDCB6D1D8BAD86D19ABABEEAD3FDA71A469BCC23B5A6B11AC340758DF98E3B470F1CF8D166FA6B343B71FCC44A5BE74A7BCF6C47CF508D61AAC53E6DE8996CB38CD4B5F69E386B3C70AFE5F0317763CB5473BBC7D0E9B3F6ADDBFAFD8313FE510F3CEBA73728D24F623E140E2348280CFB832C4262FE48C41B817D301642607F98082264204207502E88517E84F487715F880C85317F08F505D16038EC0D86D643C1B56078231C58F285567DC87A7075DA135A0984560291B510BC16C2D643B8371859D9082D7B35F0DA0AE65DDF989EF2CE4C861667FCB353C1B9F9E0C242C0B3E45F5C0AAD6E0457D603CB6BFEA555BF6705F16D8457D722CB3E742D8CAC8622CB01CC0BA3BE7070DD0FFB60D807E37E940AA2843742FAC35420C204312588898BCB8F86375EF9D2675E7AE2BC7AE3A27AE51DF5F2DBEAC5D76EBDF6C7CB2FFFF8F2CFBEF3C68B5FF8415696FBEC4BB50D1B26EB5247E774436BF791137D67EB6D0D1DB646737F63CF68D3E0788363BCBEB3FE8E7D03878E054D36FBC16363B52D13750677936DA4A577A27DC0DD6E9F6CEF196D300DD5B6F69FA937DE7BACFDC0E1A1BA86D936E36CA361D1685F758C79473DC1192FBE4E84D731C487237E04F321749824C20401937888C043040193481025601CF687C910CA46283A48D221820C603C46533085870812A1893049230C8D305488A042041BA1083FCA842826C2221B2819A4081F46FA713A40507E8CF0A39AB0672AB2381B5A989D773AA7FAFBA7FAFBE78787E79D43F0F2F2DAF4ECCA8CC7BBBCEEF5ACFA97D67D8B6B1B0B4BB90B9F6723B41240D683C87A10F60723BE10E247103F8AF85164030EAF06A930460551264C8A615A09E3CA865FF12CA4973DEAF54BEAD5776F5D7C537DEF9FB7FEFEBBF7FFEB87AFBDF0DCEF3EF7046FEF5EACAB5968A85F686999AC6BB41F3B3570A6C551D3DED76CE96DB00E36F7B95B9D93AD8333EDFDCE731DAEDAB60543D75CBB65AAD532D9DA3DD1DA3B61189C340ECF5B5D331DBDB3C66E577387E35CC3405DB3F94875FFD99AE976A3A7B37BD9D6E71B9A5C77CDF92637D03592C6A32C2EF3A82011A244883C210884CC913C87F33C2E71382F609C80711CC2F2A810A5631CC2CBA42260A2408A3C2170384F632C87F312218A289F0387B0222E7008CFA2028D8A34427308C3451821C44A88A8F14F0D8567C710CF2CB5B1E19F995D9B98F6CD2FF91796D18D50642D145A0FE780F8112C8891411C0FE15810A3609A8C90144C31304161381EC1688CA1108EC1241A15595CA43196C1590E136522A660F13419DF2224797955FDE0B27AED927AF14DF5ADBF5FFFD3CB1FFCD77FBCF6C2975F7A68D35D7D6AB1A563A1D538D9D8EAAE6D1C385D3F54D7E66EB3BADA7AE6ACAEF1B6FE198373BAA57FDE30B86076CE1B0666DBFBE60D03F38681658B6BC33EE9734C7BCC23A181B9F0E0CC5AB773AEB3DBD9D0EA6C6875D4363A6A6A67CD5D0B9D3DABBD83EB4EB767606C7D62850A30513ECBE3B1289590494524159E94395A115845626212155508254ACA0A210984CCE2324B45394211E9B840C54452D9062571382FE2DBDF96880B3C21F084C021AC80891CC2730823E16C9410654C106141135918833D53E8CA22B2B282AEFB43CBDEF06A10F386512F8C7A112244E3C1DC94A1089824231405D334CAA31192C2398A60598211198123798E14184CE0C9680E02A5F0A42C52529456643A166752193A2A2C6FA81F5C523F784FBDF4E6AD37FF76F36FBFBDFAAB9FFCE35BCFFFF4E31F5B69B3AE1A6C6B26FB545D9BBBA679B2C930D2D0613FD3D47BAE65A8C9E4AC37B91B2D130D1677BD75ACC936DDDA3BDBDE3F6F1874D758A65A7A3DA6A139E3C09CB16FD13C386DB0B9DB4CE623D5DDA76A869A0DCE3693DB6459E81958B20DACF60EAEF58F04263CBEC93536CC0B4C4AE132321153C8B8482A02A548AC22F28AC02A3C29C7B8648C89F2B8C49351914E72748C67E2029BE06845A0148152643A2693520E12218A942452124F893C21C8B828208244C802C6C90417A36585901442D2445697236B2B886F3DECF546FC613880C03E18F5C25488C023188E12384A10184D22148BB13CCCB230C7E30A854B2421502447911C89332CC18B7494C1241697052AC6118A48C6382216653332118B92D1F342F67E36F10021BEF18B9FA9D72EAA175FBBF9FA9F6FBCF2EBCBFFFDD3D7BFFFC28F1E7D68E464CD93A4880D4D8CD71B46EA0CDD279B4EDD76E050F9DE03157BAD27EAE64C3DA13EF7648B75D6E0186BEE9E6BB3F79FE9301EA91BA8B18C77F48D770E8C1BBAC9498F6FC8BD475BB05757766ACF21F3F15A574BE74847D7A4C5BED0ED5CEE1E5AED71FAFAC602230BC1197F8ADDE488984827376317E27C466192329D90A838CFC822171558456063021B13E9A8C4C4625C5261E2513621D2518E8DF25C4C6063321D8B314A9456245A162845A4A33C1915085920648996E36C4C26258196045A1248512625911235D8DA1AE65DC7833E34184483613484E0619408605488206092C41912A7489CC9712D209C888A3C223188C860024DF02C25B2B8C89012434A1C1D63A928472B3C23F34C94A3920A9711C9589C4D64F94C868A5D6062BFFEC6F3EAB58B37DFFEBBFAFA9FD457FEFBD2AFFEE3F5EF7EF3574F7DCA6BB6FCEE8BFF96F26C4CD61B5D3546C7A9B6FE5AB3B9BA659F7EEF9DFA3B06EA6CDC982F6076C76682C1A199AD30EB1B9D83C7961FA3524FB0D96490F1589DE4CCFA893B0F1FA9D8D779A2B9F9E099F6233543ADD6714BEF8C6D60DE36E8B10D2F58FAD7FAC6D75DF3E1F9508C4EF34C9C67E20CA9487C4AE4920A9712E9B84044252A2E3109818AC96C52E152321B979898C22514262E31315148F06C426013329D50A8A842450542CEDD2051519154142A1AA56585926394225292C4CA3223CBA428329286F206A840800CFAF170180FC378182522181522A81099E39A22588A602994A6608A8B303CCCB31141406581905954E0712537B95846F91012C7CA2C23714C52E253312195903229219D15520F8999E72E3CA05EBBA8BEF5CAADD7FEA8BEF2EBCBBFFCE13F5F7CFEE5A73E218FB9FFFA95E71FF6C3534DE6F1E62EDB899629D3D0BC65A2BAF4F8C992EA9D9A8AE6DBEA8EE6DFED6CB0594E354A6BB07F6C71B6676463786ECC3278E2EEE347EF3C7C7BD16DFB4BEF1E6872CC59C7BA4E7718AB1B075A3AC72D7DD35DFD735D4E4FCFE86AFFE4B2637C65681E5DC7793CC63371868A0A7C5C129351252309699E4D284C5A2253717E53E132329B8E0999289F8CF249918EF2A4AC7009814B8A7C4AE2530A975298B44425052A96D3B5C2C4A3B422934A9456A2A49C6062122D49AC2CB3A2420B122B6BA840840E86C950180FC3780423609284713A4C32119A446802A3499C21303AD754E4708E27041E974452C98D2C1EA5708926649A923836CAD032C328021F178504C7C4452E2E0B719157626222CEC6D25CFC419E51AF5D54DFFBE7ADD7FE78F3AFBF7AFF573FFAC7779EFFCD334F3E11F2FFF8634F7C02A63C46DB684BD76053D748937DB6CD35DF34AAFE5955DF507FF7D40F11E3CC6263BFE9CE53BD27DB1A0E9CB29E69EB3EDB613F63EC3AD3D971A8D9784FCB608D7DCD36BBDC33ED6CB699CEB6F4359BC73A1D9E9EA1E9CEFE799B6BDA3AB43430B93AE689ACA2229DE4F0384F27099C67D9A828C464292172518E90443AAE88199E898B5C3C2AA565212E725159486E93CE25453E25B26985CB086452A012029B10D898CCC6653A1663E20A198FD2B118158B51318955245691394561158995355418C1FC2112C6B1304AC0E4B67E1196851902A6088CA6498EC618066779826722148BB1342192B8C45051914EB2A8C2E3124748142193A48C5332412BA2981485842CA465361E9792929C1095A42C25B2522AEAF7ABD72EAA1FBCABBEF177F595DF5F79F9C7AF7FEFABBF7AE6939FC422FF7EE1FC37CE9FF7F60C8CB674BBDB06E68D23CEFB4CDF7EE473EAFB37D56B37D5CBAAFAF7ABAF7CE63B3F4C3CF90524BB50D33D53671FAFB50F9EB20E9CB42C9927A65A86562C531B8E998DC1F9B1CEA1EE3AE370876DBAD3316373CE5A07C70D8E599B6BC631E1712F05573199CF4A4296A7938A9811A5382FC7784111B9284BC98A989285A4C845253E260B718989494C8C671392909685B4C424A27C5AE492029312C5EC871A4FC8744C2064998E45A9448C4CC5C8548C4ECA744CE11232179585B8CC4535144290304EA13401933842132843632C8B710CCA92084D622C857324C6B2B8C860028B0A1C21D1844CE2124DC6783A2931098190453ACA3371964E304C82A513229F12B9A42CA4152E119792921897A454544AA7F924BFEE555FFB9B7AFDA2FAD6ABEA2BBFBDF59B9FFEE3DB5FFAF707B35B6B8B5F8ACB2F3EF27078C8EDAAB774DFD73AD5DCE738D2A8BE7359BD76457DE79FEA2B7F79F7DBDF7DEDB9AFFD24FBD80BE283947D7AA9A56FB6A977A6D1315E6B9F6A1858EB9A090D2EF99C73F33DE38EC6AEBE269BABA377D2D23F6B1F1E35F44C5AFAA72CCEE5A19995F165780D4B8AE7253EC5D34949C84A528A136382189385A42C666429254B29498C8B4242E2132297E49938C72504212509699E898B5C521133229FE2D994CC67152E15E5D3312E19E75351361165530A938E71D9289B5298B8CCC6395A11B9B8C4C4345818276092C6581A63199CA3700EC71812630994C9514F1202854B2426529842E1128D47294CA1882843C5695261A8284BC9221DE7E9A4C0A4793A23305985CD8A548A27E3129310B938CF4425211D17B3312E99C6E8FFF7FCF3EAB58BEA3BFF50DFF8CBDF5FF8D2EF9FFBF4D7B652F4B83BD8EF48ACAF72734BA30DA6F146EBA311FE9FDFFD0FF5EA25F5CADBEAEB7FBAF6CB9FBCF3CD6F7C8DE69136EBEC89A685DA4E4F53CF6C937DA2B66BC538E2B34D11A35E62627DD531396D1D19EE18186C75385BECB3B6918156CB50876DCCDC3F6975CE0F4C863CC1F9D145854966942D994D0A5C5A1052A29896A40CCF2745312D8A69514C4A524AE0E3029794B88CC867583E2D499BB298E199B8C4A724219D7392A8B8A570A95C92897169854B295C4AE132B9BAAA700981520436267271918E6AD0084922348D304498A4609AC1399260499CA1498EA54486141852A2708944650A8BB25494A5A22C19E7A8044F27192ACAD231868A72748CA793229B1198AC48A56426A3306985CB28624614128A945584CDA47C7F52DE1242F0E3B1A87AF55DF58377D48BFFF8F5173EFDB18D95D4CACA6ACFC08CC93A69B6FA86DCDEBE914F09D1375EFA917AF96DF5F2ABEAEBBF575FFDEDD59F7CF70FCF3CF9C0CCE2CC89B6C5D6DE55CBD0A27968CE30B86074AE9846033D331BF6699F736ECEEA9A300F8D5BDC032D7D231DFDAEB69E114BBFABB3CF6D754EF68C4CF54FC25EE2F489864E63EFA71EFC444CC848C2A6C465B72D45CC725C4AFC904A41480942461236453E2B0A9BA2B029099B329F15D9B4C86724219BBB96D9F4878925998B34129F8AF2E9289F56B8445C4CCB6C5CA014898A6A72FAA5508682690665189C235086C06812A7688C61099EC54506531822461332432A0CA970548227E32C15656899A2059E89B2649C63923C9BE2D984226638221665B6647E5364D3029312F96CEE5F92B8CC03D14D7EDDAB5E7A53BDF1B67AE99F3F7DF2F1A0CDEA7538273AFB9C6D9D83ED9D2346DBB8A17BB8A175A3DB119D9BFD179EF8F113F7BFFAFCE7AE7CFF5B2F3FFDF443AB619F7978E0B461B8A17BB8C1DE7FCE3AD6DC3BDDD13F6F1C5EEA1A9BEB1E9BB48C4E748E8C189D333D13032D3DC31D7D831D76A7C9316E1B9EEC1F9B1F5EA0D7E883074E6B80C2381B7DE0FE876525C9B3099E4D8BC279893F2F8B9B029714B8A42426652925096941C888C2A6C0657288CB0F084C8AA1E23C9B90B88C2266643193BB59E453329F959894442515262DD3A9289F8E0919854B494C42A2E21A02A3199CA531265718698C253116C73802656882A709912664964C30448CC6A3242E51844C93319A8C51449426158A92185AE499284BC7783641E0BCC026382AA1B05B229592D9B4CC67252EAB08F78BECA6CC6F26F97886C07FFFA3EFA837DE563F78FB5B0F3DB06432ADF438C7CC032326C780A1A7B7A3BBBFA377B0AD7BB8B57BA0D6B062B62F1B2CF490EBC908F1F5E8E66749E5212F498DAF4DB539FB4E59461A07DC2D8353C6D1F9AEF169937BD4E09CB08E8E5A5C2EF3507F9BC369E8EB6FEBEE33DA9D26C7986570A2DBB53834876E103B0A2A3560FEB0D3F5C8FD0F65B25B5C2C29082989CB726C5A923625695392328A9455A4AC2C66143123F359964CB0644260D2329389729B129761885854DE9484B428242429254929514C2BCA7999DF94998C48A5243A2D31A9289F1598144F27453AAEA1509AC1590AA5719422500683190A97705440618EC07902132922CA10711A8FD284CCD03245C824AEB0749226E3341963E9184BC72421CD31498E494A429A67532C9D94D8FB652623B369914D8B6C4616B7647E53E2320FA41F38CF708FF0B47AFDA2FAC1C55F7FE5CB7346EB8CC5E9EEEC771AEDF6768BDDD86337F6DA9ABB068DBD93B6E1C59E8955C7E4B2C535DFE258E918A4DDABC955FC313CFAB4F4083E1698318E8DB50D8F1B47C74C23A31DAE11A373C43C32699F70599C43E63E7B73A7B3BDDB69E81D35F78D5B0727EDAE55F7FCF8D084264FA7ADD8A9D1E53736B56DA5361FB8F0483491653999E714864F704286E5D39C9091C5CDA8B8151336653A2571598149F3745266D30A9789F15B0A9B9584ACC867783E29CB5949CA705C4A96CE0B5C46E2B2229B51D8ACCC6464262330699E4E494C4A43221485D234C1E3088D232C8172242A53441443781C17094222718522A20CA90894C232CA87BA8ED3649C25132C19E79814C7A4042E23F2DB6F2FF2599EDAFC1FAEF98C246415292B89C90B9907D786C6DA0EDDAB5E7D4FBDFAFEF5DFFE2EE874AFF54F8F750E0D77F6F71A7ABA8DBDA6E6AEEE367B57936DA2677CD43A36DAE91E6973CE98DC33ED43B366D7946568B16B2832E499358C4E1BDC63869109D3A8DBE81AE9181A35385DE6A169C7545FBBDDDE6271B476F636758C187BC68C7DB3BDAE49FB103CB776F4E0318D162ADB79075479874697BFEFEEFD9303C38F64CE6F9EDFA2A2222DC76829C508499A4F094246E2B2516E33CE6D495C46E6B3029B90D9A4C265443AC9D329993F2F099B3C9B92E52D4148715C8AE732029F15F98CC0A4657E5361B3129D96F94D9E4DF3745283233489B134CA13A880E780B00C26919888E3224A880415A3E938454479324E6151868831549426159A54182ACE9209964EF26C5AE0D21C9314F98CC86FD71381CBC87C36F7296571331ADD52C484CFB3D170E8D4998ABBD56BAA7AE39AFAC61BA267CD6D708CD99C23D6C10153BFC3D8DFDDDEDBD5DA6369EA1AB40CBA3A4706DA06C7CCEE31E3A8DB30326E1C196D1F5CB24FBADA1CA306E768FB90BB63D8DD313C6A708E740E0F773847ADEEF1DE315B4BA7F15C93BDD9E432F6F4379B5D9DBD53B6C185BED1A981318D465751B1B7A4E8F6C2923BC1D23D1A9D4E03688E1F3F1A1585679F792673FEC2F90B8FA6372FD08CC87232CFC51439ADC86959CC48425664330293E299384F27453E23F39B229B11B88C246C8AC2A6C06773A296E8B444A7252EAB089B12B7EDD71CAD681098C6111683391CE1094C243091C2051266295CC07111A7648C8A12541C23A21411A3B02885456932CED2899CB4192A41D3718649F06CEA237C540C453623B26999CF8A7C4611330F641F3434771EDB7B74CA38A0DE50D59B37D50FAE7FF9C2E30B5D43D38ED171DBF09079C0DED6DBDD66B7B6745B5BBBCC4D9DC3B69141F3F090C935D8EE1C31B85CEDCE31D3C854E7D842D794BB6378C63A36D3393A6118727738478C036EEB88B373A8A7ADABFD6C634F8BA1BBD1D0DB68761ABBFBDBAD4E63B7CBE63CB2BF1AD0941415DE56567C5769D1BEE2FCDBF5FA320D006900A062CF9EBA33B53673D7D8D028EE8B3C9A7EE0E9873FFEC9071FBD3F9D4DC613BC101584842C67793E297049914DCBFCA6CC9F17D84D81DD1485F3A2705EE0B3398589DC96C06E0A5C46E43322978CF2E9389F8909190D0A732426128884450402132952A450060FD304CAE1388F91124E2B181525A8188E290C91A4F11845C4483C9A239AA5931C97A049856753029312983447E5E6D7A6C46D495C5664D339638909994D255B7FA6F9C0EE038FF119F5A67AEBD62DF59AFAD71FFC029F58F68E2EB83B07C6BA5CFD1DBDDD2DB6EEB6EECE66B3B9C9E830F7F599061C1D7D7D6DFD03ED7DAEF601B76160B4B977B26370BCA3CFDD6A9F6A774CB53BC6DA7A478D7DC3A63E7B7B97A9AED5DCD0646B6AED6FEFEC6B363B5A3B075A2D2E4B7FFDD9C63C4D61BEAEAAA8604F7EE1ED0545B7E5EB77E9C08AD2D23BF4453B35BA420DA8D3E46B347A8D46A7014A0B0F1C3AE8EA1F6403E127325B1F7FE491F399AC2C2ABCA0F082C2738A2CA465719367532C93B38E2D81CFCAE296C867456E4BE2CF8B7C561637653E1BE5B3312E2BF3590D0A0B0422D1A84C201289891429B20447133C8E71042190A448D00AC944095AA1A8184B261822CE90290A4F50649C65522C93A22949E4531C951098B4C86E4A7456A2B33C9D11D84D89CBE68C85E7D3D9D443E1D5505FF7C09EC2AAE7EEFF78EEB132F5BAAABE7BE37389873CBD63F3BD63535DC36EB373C060B7B7DBBA5A3B0DF5ED96964E5BABADA7D5EE68EBB13775395BBBC73A7A879B2DC36D5D231D5D83CDA6E166F3689BCDD56E7334987B9ACCC6734DE686264B5393ADB9B9A7B96DB0D5DCDF6A9AB0F6773518F56091565BA803CB0A0B77EB0A77E90BAB8A0A76EAC04A3D5405E49516EB76960255A5BA2A28AFACA868577ED91E0DA4D7E8418D4E53CE72EF8E000020004944415458513860300808F2C4230F4A3297CA2465598E4553C9C4663AF58028A6192621F0D91CD7DB36C265453E9B4B04516E5366323C9BD6E0A8940381290426939848E11C458A393FC9F53D284AA1288564A22419A5E9B8C0A5593AC9D2498E49716C9A61623C9BE2E994C46D89544660B2B919C4335991DB92844D49C846E5CD989CB277F7F5D81C1550D9C35C66FBA1C99BB7D4EBEABB3FFF33EA5EDB189CF738A6DC56E78875B0B7C3D6DD6AB1B5749A1B0DBD1DB69EC64E4753676FBDA9AFC1E8A86F1FE9B00C347574D7D40F34B4F4D7373BEA5B1D8D1DB69A66F3E946736D8BE16CADBDA5B5BBBEB1ABB6D1DE6C72B45A07DB6C77DF7E779E062A82CA0AF495F9F93BF3753B0BF277EB753B21A01C02CAF540453E58990F56EAC04A3D50990F56EA814A3DB80BD455EA4AAA76141669A03C0DA83D70E0EEC9A1618560CE0BA907E3F73F9A7DE8B10B8F7CFCF1272E3CF460229995C4644C3A1FE3B7243E1595B25129AB485945DA12C5AC246D8A7C4683213C8E0A249EA35B26718540240C91084C61C9782E56D3648C22621411A3C83845C6593AC151098149714C926593349560A8044BA5057693A5D22C93E1842D86DFE4842C27645936298B9BA9F8036BCB015387D5D0DC795BE1ED1F8F5E506FAADB0F4EDE52D56BEA7F7CEE05658944267C73BD33239651A771D065E8EF6BB4D89B4DDD8DED5D0DCD96BA46734DBDF1D4B98E13676A0E1D693F75D674BAC670F2747BF5E9CEB375C633F5D6BA96AEDAE68E3375C6BA264B7D8BA9A6D9DA64EE38671EB44C34D6D9B43B4A8B753B0B7415F9F99505FA9D45FA5D85BA9D85BA9D05BA8A625D791154A6CF2B82340585DA927C6DB10E2CD382E55AA81482CA20A0B4505FA9D757E9A1F2F292DD50618906823420A0D1EB34851A4D814653AADB7BCF3DBDA61E31443D113FFFE4E6831FBBFFC1471F78702BB51993535129CD3351918BF36C4283A23C8E8B2429E3B8886139D205028F1278747BB542446932C77292A6520C99E2A8B4CC6C4A749A63521C97A2D914C7665926257019964EF25C4690B6683ECD706949DC9284CD64F4021EE6A747162C6DB6FDB71FD1690A7FF18D9FAA1FE47692DECC39C9F5572E7DEB135F391F8A0B1E2A341E705BC6DC4697ABB5BFAFD9D2D364EC6A6C31373419CFD5996A1A8DE79A8C679A3B4E359A4E35D8EA5ABA6A9BAD354D9D671BCCE71A3BCE34981A0DA646A3A1DE587BA2A5EEA4C5669C1DED5B2FDD7514D4ED2AD1561682E505FACA02A8AA08AA2A04AA0A808A02A0AC102CD5834505BA123D58940F1440DA02102C05746580AE04048A8A0B7616829525E0AE02A0A200AAD28165F9507959C1AE5D85B795E92BCB4B766A0B8B357AAD46BF43A3DBA129D4DD7ED73E7373CB68EF4064D5FF48F6A1F3E9AD6C764B94255989696054443009252518663194C5310EC3389410094221088526630C15A788184D24692A4513699ED962A92C4F6D0A645A61B31C93A2A90443A7397A93A3D22295E2A8842C9DA7D80CC5A5182E2570E984F200EC27A75CF33D1D8E83BBAA6DF5BD975FCD1DA7A5DECA3DA4AAAAEA0DF5F25F2F7EF7A9179E141ECF0693C41CEA75AF4FF6B8FBDABA1CED96AE968ECEC6E6AEC616736D43674D93F55C8BE56CABF95C6B675D6B577DABB5A6C97CBAD174B6C5D2686A3ADBDE586BDEB7BFE6E851F3D418B132CDDF7DDCA4C9DBA9052B7460453E58A9072A8AF2AB8AA0B202A8AA505B51A4ADD2ED28D541253AA808020B20B018D49668B5C55A6D3100944040290416EBC0323D50A1072AA0BCB202A82A1FACD4811585F9BB8A8BAA0AF3ABF4506561C19EA2C2DBCACAF61617EFCE038B3400A8C90734F99ADB0FDDDDDB6527FCE803D1CD0712E735282CA0A81882191C177154205001C7451497094221718526632C196788384B27293CC1D119864ED34492A733029996E82C4B26786E93A453389960B814CFC7053ECA71319A8B734286E7D39290F6AD44BC8BA1B9D1F9C6138D0932F3E9FB3FFD979FFF51FDDF07F26D6F2D50D5D7AEBFF8E96F3E93796A13C972CB74D0ED1BEB1C721AEDDDCD46737D9BA9AED55CD3663A971BDBCC35EDD65A83B5AEC37CB6CD70A6ADE55447DB19D38993A623C76D1D1D8BE1C063FEE04375ED531AED1D1A60B70EAACA715D00ED2CD45716EA4B754071BEB6B408A8D40315A0B604028B21B010D016024009006CD30D41652058AAD5160379A53A6D798E713D5896AFABD043E57AA83C5F57A587AA0AF4BBC0BC4A08AC2C28D85558B8B3B8F8B622FDAEB2923B34804EA30334853AA0B8E0F8F16A0D0673488447100185050C11715442511EC5651C974932CA507186887154F2A384C7D0498A4C52788221923C91E2A8244327713286B17156497172ECFE071E8CC5D389C4F970980D85281C15C201DCB7141C1F9868A8AEFBFC639FF9DCC39F7E28BAF5D18602F5D687C34D55BDA1AAD7D45F7CFB174FA79FFE98F078C21B5FEA9F99EE71398D5DB6A676E3B9868E330DEDA71A3B4ED5779C6A349F6D339D69379FEA309DED34D5DA6BEF331FBBB7A3A3797E662A8311CF7A361EED1C8CEC3AD8AAD15442FADD7AA8B2B870971EAAD481953AB04C0714E643C5054049BEB6540796415019A82D81805250BB4D748E71002881A012082AD3E92AF550A51EAACC87CA216D891E2C8380521D58A687CA21A01CD49683DA723D5455A0DF59A8DB5904951517DF06E8ABF2F57B4A8BEF28AFDC97575CA901410D1E66B18880C2021C113044C25109C6058490114CCAD908892B3419CF056A964C9078942462241163E9044DC6683A4AB2315A88F14A2A993D2F8AB277DD37313ED3D8689A9A59F705289F0FDB580F6F2C05861DAED3874F7D62F3F1C7940BBEA9E5FF39296E7B2FD8CDED5DD3B754F59AFAEE1FDE7B2AFDCC83D423A131FF986978C4E4E8693276D6B4184F36B6DF57D771BCCE70A6ADF96447C32973F3B99E73C77A4E1D71185B96E767B728E1AB1BF01796439FEB9F489E699BD5807B77E455E9B4E57AB0440F964150050455E875A53AB040071541DA221D509C23779B38B018028B41A008F8086001001401500500940179A57AA042A72D2F80AAF4404581AE4C071417E8CA7440694EECF9BA0A1D5896AFAB28D2EF2A2BD85354789BBE60B75EB7BB38FFF67CFD1E0D1AA17154C0510989086858C0101121448C50104CC288288646093C8EA1510C954922469149028F13789C22930C9DA42885A4F8782CCD738A67716D7874BAB6C57CE464DDD1EAFAF1F1259F8FD8F011CBEB919595D0D2826FB86FBCB9D6406F5017840BF3FDF3EA0739FFB8BE7D3EDF878C6F0FD754F59AFACBEFBE1CF3A7967A57274D13D6B39DD65A53EB7DCD75F79C6DAB6E3A73ACE15C75DBD9EAAEA6BAF1D17ECEE379D88F7F21227E632AFC2FAED5A7C6D63ED5E5E4EE38D6A581F616E8771541158560A90E282CD095E443C53AA0F0236C6B39AF18D49640403900948060695E5E415E5E010815825021001680603104940279A51050A183760140990E2CD34125DB008A7540693E54FED15F0AA0AA7CA8BC30BF0AD09643E04E1DB40BD096EB0A776B309425301145790C933044446101C6051497093C8A630A81C670244A600A814751444211892462141523C9A8226553C9FB498C9D995D6CEDE83C7EAAB6FA7463F5E9E6BA06B3C1D0BB341F585CF4AFAC4796D6C20B0BDE85F9B5B191993E9B73C9BDFCA5C7FF75A677F60FFFF947F5C6B69CFFD75188376FA9376FDDBAA5DEDA3E56E4E67BEA05E5F1BE6657DDA11663ADADE9A4F1F491A65307CED59F3287D7E222FF594AFA322E7D8390BFE5639FDF10BF3EE8FBF4E0F2272D23A98E3E5C53784CA3D909021585BA9D7AB04C0714EBC1927CA834275E1D500CE6150279DBA6AC03CB746019081481401104168240810E2AD2EB4A41B018D4966CD746A042AB2907F24AB7B9DE76928A1C20A80C008AF2F565F950794EEF7AA022E7E63AB0A248BF7BBB36C2A84850311415314C82510945241C53084C26303997BE192A4A1132852951292B4BA9B555FFF0A0DBD0D6696CEF329B1DE7EA8DF5EDDDE71A3B6BEB2D3D56D7ECD8EAD2AC2FB777756525B4E4F12FCCAEAE2E78FBECC3D666DB579F7C7ED5B9119A8BA8D772277ADEF8E874BEFFFDCA1D69A67EA07EFEFE277FFEB97F7FEDDBBF62DC5E8FD93DDA3278EEE069CD8EC27B4F18371FFD5664F36B9ED8D7D613DFF1882F8C125F716C3CED987FACA99BB8F3E4A066C7ED5A6837A02D0773B31EDC9EEC10500E6ACB20B018008A3EF4E522002882A0129DBE18D0E68379F9605EBE1E2CC995CA9C9B7F28FC3200D836770028D3415520500168CB21B0520B9683BA4A4057A6D79542607181AEAC00AA2AD4EDD1013B756065917EB70687150496C3B010414414911058C6D02846C5104CC6300945798696498C674829937C50A493EB2BE13EFB707B9BB9A9B1BDADB5B3A3CD666CB39B8D7DCDED3DC7AA9BCD26E7A46B7962D83337B3B1B604AF2E865796C22B8B81354FC0B71474740D1A6A4D5F7DFA6BD140C2651EBBFAE6CD0F6BE2CDFF4BF387B8A9FEE05FBF3E78ACFEFE292FD6DCCD1807C49EB107E64293A7CDE585BB359A8A10FE60FAC99FAE64BE351B7F7188FC6A7FF05FBB3C4F5846321627AB29BC4FA3BD0D042A40A002D496E58395F9DAD27C6D69BEB61CCA2B03B565397EB550B1565B0882C50058A005F2B5DA426D5E019857A8030AC1BCFC8F8C1B028B75BA5210DC466E2A404039A4AD02F32A41A00A042A00A8420B966B7565507EC58713A55207ECD6417BB4609516ACD004C3420411FD61360C0B28A2206129024723A882E20A824914A5908440E14232B63537B1DC6D196AAC373735749A0C8E1EEBB0CD3460EAE831B4DB3B0D7D16E340976160766CD5D5373DE6F2AC2FC36BCBA1354F6879CEBF30E70BFBE9354FA0B5C9D454DDF88DCF7FE7F1CCE73D83FEFB850B391BB97EF3C636C3B7B653F7FB17AFFDED2FAFBFFDCA7BE6FD67FCAD0E6F8D71E5BE26DF998EB533EDAE43A7DA6F3F7C7AD7618DA6545372F0C2932F118FBD34257D7318F9B7FE8D2F18A71FB5BA52351DAB9ABCBD00785B01B4331FDC050115A0B60C82CA00A004C82B86807228AF2C17A541B01C00CAB4DA62102CD602F93BF274795A3DA02DCC95CD9CF641A0480F9615EA2B7372868052102C0580921D40B1162C07810A08A880A00A102CCD83CA77E82BF2A072BDBE2A5F57A5032B7550950EDA05813BF3753B3541980BC25C1815C2B080C0221C91602C1A8AF008266198C0F349494C1238EF764DDB2C0386B63EABC5D5691EEC774CF4DBC72CC6FE8ED62E8BB1BFBDD1DA631E1A1D98EDB38D0CF54F4D8C2E2ECC6DAC2F0637E6FCF3E3ABEBCB70C447ADCE6DB4D4B61EBBEBC8E71EFBC226FF04E7DFDA98443F78EB867A4BBD79F3BA7A4BBD91E3FA86AADE52DFBFA15E7E4F7DF6A12F0C1FEB183FD2DA7F57B56DEF51F3EE8375C5BB0F43C5C7F4BBEE29BE2B1FDCA5C9DB39B5914C3CFDF331EEEBCEF057ED2BFFD2EEBED03B9AD6DDD6A281EECAD3EED4439505D0CEFFC335500201E53AB00204738A2ED56A0B01A0480BE4E769F5795ABD16C807B4F93AA804048A3EF499A20F4DA3E4A3FBB73D072CD34395B9780E82C579409916AC0081AA02FD2E9DB6420F5569F32A40DD2E10D8A583AA3441980B44D840840D45B848844351112164825672BF6C057C786F8FCBD4DE6B350DD83A9D56D3A0CD3A6CED745A3B07BBAD836683DD60B0B5B47419DA7BDDC3F38E2E57AF757864687A7AC2B3ECF12ECFADCF8F2F4FBB97D656600CE696A6577B0CB6BD15B77FEBB9EF6C898F33A10743CBF1A71EFE57F5DAFF718F9BD7D5FFFAED9B3FFEAFD77FF1937FF69CED6FDA79AC6DE7D1E6DD471B6EBFEF4CC5E1EAB27B8F571CBA277FEF6DF90776686ED78007EE3CDEAB3CF6D22CF7CDBE8D2FF52CFE8B7DE211AB53D2E41DD08077E8A0AA7CA85CA72D07B56540DEF65210044BB5DA520828D76A8B7391439B570068F3B579FABC1DBA1D793A2D900F0045793BF23F2A9B00500200DB17B96F28C7B50E2AD2832505BA0A1028D2412520580A00655AB00A0476E543BBF3C12A9DAE520B5600D04E10A882A00A4D30CC86103E0873C1300BC33C8AF22423B28C343BB56435F7B53575195AEDF6AE117B97BBD736D66D1EB4981C76DB505767BFC5E4686D317798BA4DD6417B8FBBBB6BB8C73ADCDB3DEC76CDCE4D2FAF2DFBA6273C33638B4BF301BF9F84C38CD3317CE6BE53BB2BF6FCE7F77EF9EC275E40D6EF5F7073EBD3548EEB6D13B9A9FEEE2FEF7DF5FB7FFAE2377E1FF166CA347BDAF6D5B6DE79A6E6F6E3F7ED3E72A4FCC091D27B0E96DE7547C1DE7CCD5E103C5E7DDFF059C3EA02FAD945F685EEB5E7CC134F0EB81FDA7B6444B3E32E207FAF1EA8C80532505BA603B70D3A2FAF48A7AB04810AADB614004A72C143ABD1E56920302F1F840AF3F20A727ACF4D02102C8772E11A28D16A8BA1ED60570481857AB0A4082A83B44590B608028B41B05C9B5706682BF3804A405B0E6ACBA0FC0A5D41250896EBC04A08AAD04410210CF3A108178A70C1088D12E2EA6AD835346D35F70D3A26FA7AC61CDD6E47B7BBDB3264EB74DA3B87AD863EABB9CF6CEAE9B4F4983BBBCD9DDDCE21F7C080DB60E8ED6875F4585D9323F3CBF3ABD3139E6EEBE0E49827182471845F5DF29FAA6928DF755BE18EFCE73EF1E5EF7DE3E547D25FF6AE6CAE2C249FFDCC8BEAF50FCDFAA6FAB517FEFB99AFFFF12B2FFCB5EEBEDE52707FCB3D358DFB4E9DDD73BCBAEAF0E1CA7D07CAF7ED2FDEBFB3F04071FE89C347863B2CB8DD9D3E50EF1F43BE6459FEB469EA5363B30F690A4E6834B7EBA03D05FA5D05DA4A9DB602D496E54C390FCC2D05CB80BCE23CB004044B016D3EB0430FECD0E7EDC8CFDB919FB308102880805228AF0CC82B03B565A0B644079681DA92BCBC22082ACB798B0E28D683657AB00CD296E4F262CE9A74DA0A10A882C04A08AAD08115F9BA9D7A7017A4AD02B5E51A38CC60080FC32C45292C9B5C5A0A593B077B7B467B7B4607FA26FA7AC7ECDD2339F4F68CF6F58EDAAC8366538FD1D46534596D5DBDF69E81A1E1B173E79A5B5B6D6663BFAB7F626674DEBBE2EFB30FF7760FAFAD8451982371A9A9D50295EEDAB9F71E30AF5080A3CF3DFB83CF3FF3523CFEDCFC5C72719E57AF6F57C53FFDFE9D4F3CFD934F7CF18FB1F4BFDD7D7BD3DED2A34DFB6A6AEE3C7EE2B6234776DD7BB4EAC081927D7716DE9D0FEE3F7E62ACD940197B33F6F1C78FB7D3AD235BC3C167BBA71F37F6919A1D776980DD20500141157AA032D7C180C0621D540480053AFDF6CA500B958260718E6860871ED2E63A7CC580B610048A2060BB01920B8B90AE08D2158160B11E2A8780523D5091AF2DD781953AB012022A20A022777321585E0055E9753B735910022A406D39A4AD82B4553A6D9506C33804E1705C9C9959B5778F8C386747076607FBC6FA7B47071C23CEC1B1DE1E577797B3B373C06A755AAD03566B5F4ECE5D36474FF7E0A86BB6AED178B6A6A3B9D96A310F0C39467D4BC1A9D185B616DBC2FCDAD2922F1C20FB1D6E4DF1CEFC3DFB4A2BF769F4551383ABCF3CF96D2CF290CC3EAB285FF3463E41E31FCB19C8131FFFF6439FF9D5E3CFFEA5A669F5E4E991C633AE8315C78E941FDA5F71F71D65FBEF28BE6BA7EE2E00D87FC7FE4E63AF649FFC64CFF433C3EB5F6C1CD83CD004774E6C8D7A1ED6000735DADBF450950E2CD3E92AF3C12A1D580901E53AA804020B21B01002738BF252505B960B24605E31985708680BB5797A485BA0038A732A068022102AD46A8B01A00C022A746065CEFA739D905CBE86A00A405B0E68CB7374EB80D202A00C028B732D1408DC0901157AA0B200A800B5651A98927C21B2B76FDCE59A1BEC9F720DCE0E3A2687FBDCC3FD23CEFE91C13E577FAFABDB366031F7F5F6B89CFDE316739FD96CB7581C36EBA0DD3634D83FD9691D6A37F49E3EDDD46519181C9C181D9D3B7BBA756A6C79717E75797E351224F6EE3B925FB6A764E7BE92B23B750577380C93BFF8C1EB78E889F5E54782F0D311EC339E8D47AFDF52AFA8EAFD4FFCFF26BDB449B2EA4CEFDCB39F73F7256FEEB55775373483C440831034BD5655566E95FBCDE5E65A5B37DDD02C12308C101A8B9160D04802216B24C4CC74E0A625B460B0253934310E3C580A3BFC451F663C1361FB1FD8FFC0617F38590D11E74365454665D67BDEFBBCCFFB3CCFDFFDF0A7FFF3CFDEFCFDF2E95EF1F233DDD273F7A41F38E99C5CD69772FA424ACF0B9C05207FE60B7BB5D1DB9BF1DF1626EFC5CFFFF64CF5BBF76FBF528EBE73E3F99F0094433CAB7A4A109F11076347D3744A1D84E68543D041D021C8C5D051FD489145A0AE0EC3E6675907C616633E4521813E41AEE21B945A84988C5A0459043958F310700972297439F60836287528F518F189E6E8D0B75020340B44A32B8DCEB4D99ED66BA3A8BDD7AA8D3B8D69ABDA6F56A266ADD7D8EDD6AABD72B15DDA6995763A9B172BDB9BB59D9DE6F666ADBCD3AA577BCD7A5CA9F51A8DB8B8DDE8B627A59DCED9470AC5ADF67470753A38B832BB5EDE6905C142905AB5FD05DB5D00C87BE8F4A57FFEAFFFFBC7DFFB8FCF3CF9B78757DE7EFCE95B4F3CFFFEBF7EF7F7FFE7FFFEBF773EF8E737DFFB1FFDEB7FBD764F7B7FF6CDCDC7868BEEC9656B7981E773229F9679475F017071A7F6950BCDEF5D88DFDD9AFDACFEE447AB8FBC74B6FEEDFD1BB72F545F04348F449A121F23976297101B11971017211B2113211B211B41076A2E462E820EC5AE1243083630D2093409349166106461ECA8F71FEF8AC7CD4E4C480C480CE5DA50EC329C50884C349B634FB117881D8C7C8A0283240C14E8C801D383A7A3DE61AB356935C6FDCE7EB735EB34A6517DDCAAF6CB3BADE276A352EAEC6CD52B3B51E162AD5EED15B6EADB9B8D62A15DDC6ED4ABBD6AA55DDEED148B8DFA6E3F6ACF0A85D6A5CDFA6070D4694C9EB9F2ECD5C31BA74F9F41CC7313CBA69D33ACAC17AEF8F6D27FFECD3F7DF0B33FBCF8C2EDC3A377F66FDC9A3C7E6BFFC59FFEAB77FECB6BB7FEE98DF7FED77D676F142B2F3477BFE459A796C313393D9BE7D945B190E10BA65801DAC285F28B0F57DF782CBEB5B5F74161FF176B8FBE5C19BF73F4A59F6AC103806520F520B1547D3176207635E4A8275DD55749A018B9C74CCEA0D422D8809A4050CED11C99101AAACA73C6424CC66CCA0CCC2C480C482C7ADCD7446108F12976959A88A987A94F7040512048C890A7131F4C46D727F1E3DDF6A41F4DFAD16434D86F3747D1EEA8531DD68A9DF24E6B67AB5E2DB46A85E8D2D9D2F666A358E89476A27221AAEDF41AE5FE6EA5DB687677AB9D52A139880E1AB5E1C58BE572B9D58F4657A657CE3CF0A8B4D2DCCA18F6826EE6A49195411E20FBD68F7FF3EB5FFFCBABAFFFFAC9A7DE1D3E7173F0F8BBD7FEFCE3C75FFBF86B7FF32FDF7CFB0FF77C2EEE365E487B7F8C409095B90C4F85285C3156F362C5E26B002C7DF1E2B317DB3FDA9AFEB270F0E1F6FEFBA72E7C7DFAF42FCE575F067485E09070971013124B230E633EA301C101463E820E5607581858183A18DA849894197397409308320D10C5B215F9BBE3D1606C30662BF68D9985A8ADA6A5A2D5183B943A8CD994988CF918B9047B18F958F3280AB0E631E48161BC3F191EF6A3D1A03FE9F76751348E5AE36E63D2AAC7D552AB526E558ACD6AA155BEDC2C6FB6372FD50B5BCDC256BD5C6C574ADD62B153ACB4EAA576AF1E17B71BF7DEF7C52B936BA3DEA45CAE964A95B38F5E5C5EBC4BE769DB5876AC35CAB25CCFB8FE12C0CEB75EBDF9D147FFF8E60F3F79EAF99F8DAFDD1A5CBB3DFD935F1D7CEB775F7DE7BF5FFBF2FB77DDDB39B17651E285245BCECA4C9E6757E5D29AB1B6C0176DB204C0CAF9E29F6EB5DEBE30FA79FDFADF5F18BCB7BAF5CAB5173EC89CAA0398A5C427C484CC44D4C6705E058C3FED6B821C865CAAD0035B889A4A41C548C748C7D0C4D05455C6D8F8F49744122C11E40049851E4A8DE2D45570819807B14390A398224501D6029D67290A14880BE881717C30ECEF0DFB7BFDDEB4D79B767A93767B1CB586AD7ABFB1DB55B5AE14DBD542A75688CA5BAD7A296A55FBAD6A7F77A7BD5B8E9AB568D089CBDB95FB3FFF90ED259F3CBAB13F3EBC707EF3739F7FC0F7B38691B28DBCEFACBBE69AA52F197ADE72160172BAAD1B376F7EF2D6DBBF7BEEA50FA74FDCEE1EBE5B39B8357BE593977FF88FB5E82F57364A8E712269AE67F49594CC667976CD585992CB79B9E4B2150056EE7FE4FAF9E8ED73F1FBD5ABBF3DD3FEEBB3F18F0F9EB90DF4CF019466C42358AAED9929ED027D5A6B4A7C0C1DA2D9143A1C5A3AB109961809A831A8318C74A41DD717E90AC19500A268B53216143127C43DDE424D446DC43C446D8C2D821C8A3D4E42AC7904FA48B3E7B7823D308CF6A6BDC371EF601C1FC4F17E77306B77C79D66BF55EFB69ABD6AA55D29B7CA3BADCA76B356ECB4CA834E75306C8EA24AB75668B62BDD381A6E5DD83CFB8547D3C9CCE2D24AABD898C67B671E7CC44BE40C3BE53839CBC89832EB99CB96C8EB3C6D5A4B007AE71E8D5E7FFD83EFFEE093AF7DF3EF0F9FFAC5E0F0BDF2F4DFF49FFEF77FF2DAEF2AB5AF437622E3DD95E09994CCFA24CCE9F90D677DD158C9B0BC4397015858BF6FF450F3AD8BE35F349FFA78E5D2EBA3673FDA895E0578159294649EE426253A45068716C10641D6A70D8E145B7004722D6C1BC42488438D22C810E418E908E9F34D124A0275820DD5E9EA69D089ABFE14212E21EE71C51D425C482C0D9B185B8A6BAAD809231E230EA596520AC1A47B34684EF6E3AB7BC3A3D1702F1ECE7ADD51A73D68D4A372B955AC740AA556B5DA2D17A36AB9572975BBEDC96EB95D2BB63E77CF997C66D573C395E513D9D4E2D2C2EAC953F76C3E72E99E93F75A5668BA7929B2869E35F5B463651D2B6BEAA1A9A7A4486B327B72F5FCCF7FFE8797BFF1D1D7BEFEDBEBCFFC72FFFACF9A07B72A831FDD78E1C3D3F70E005AF4EDA584990965CA81EE9ABFBEE1AC2FC9C52C4D3B3803E812B0CE9C6D7FFFF2958F1ACF7D7CCFF6B79F7AF13F00ED14D0B292644DE67362706271600BE42A9C4548D7B0A96113D179A528B274624B622044102208320425043A4273E0C61A57145039329CFA4CB385E650E860EC701E2866AD781E23BEAA3E632E86A672733833954D03A144D4C4D802A3C1E168B03F1D1D4D4707A3C12C1E4C7BBD69A73D6C36FAF5FAA058EED6EBC34AA9DBA8C6CD4AAFBDDB6B56A2DA6EF4C0C3E7A49F32DCA46327134ED23213B697F6C37C102C58564AE8492A4329D29C257599B1F49CA9A74D3D65C88494213052882FFCE8CDDF7CEBAD7F78FDADFFF6D5573FB9F1FCAF46D73ED8BBF293C1E40700AC72B9E8C9B4A587A1C8A66476C3DF583196F32C9722699BE4115E0168E37CF4A38BB30FAAD77FF558F7FBCDE17781B6CAF0A2454293041C3A6AC184FC0E00000D8F494441541961D8E6D0C0D0BC638D2B0440C485D841C8C448A710518830240830A809A831AC714E0C81758EA44E6C8A0C4EEEF00D87629BE0F948549E03410E233E412E231EC52EA7FE5C9F42FA67852A822C30ECEFC5BDD9B03F1DC77BC3FE743CDAEFF5A6516B18D587EDC6B0511B544ADD6A392A159A8D72B7526C771BA37A293AFFD80E93BE10BE4E5C5BF8961EEA22D04568EA29D3C84891143CD4F524E7812E538287BA4C19322579C29049626600484E26AF5C7BE1D6132F7EF8DC37FED373DFF88783673FFAF3D77E7FFEC2D300E493D6AAC792A14C85229B3716578CE545632527F22996B6480A910560FED176FC76F5FAAF0A073F1DBFF04B7F690768594253260D75E84BEC31E229F744853DD40C4474CE8B113511323134B126A94608C2181EB7B62630D219D6D5CACEB0CE89C1A1A16AAD3CF8B9AA872CB5AFABB58552EF33B8E10B96A0D855641C219D528B62174C46573BEDE1383E887BB3717C301D1DF53AD37E6BD2DE1D342BBD5AA55BABF676CB51AB1ED72ADD72B15D2B76A3DD51541F1B32A9EB499D8592799C3826F30D1108E10BE14BEE4BE6491970EE319190465A9729299292878CF9C24C0398385FB8DE99BDD939BCD979FC76FFFACF0FBFF4E16B7FF1713A7B1E82548266532C9DC4491F27D7ACD5356B352797922213D08485028C73405B89AEDE8EBEF4DBC2F4E6F9C62B405B013487C81D01C427684EAE09B218F1E68E2D31103529B52831119473C909620D10A8314D139AA643288FE540A96A2A99A36C338A3D8CDC3B2391114F7934F397CCC5D8A1D8E5346028A0D853B566CCC64867C461C803D3D1D5D1E070323C9C0E0E86D1743A38EAB766C3F6ACDF9A342BBD56BD5FAB743AED61ADDADBAD746BD541B5D0E954879DDAE8EE530FAA86953C9434619084CE422943881DC67CC93C5D4F501E3091107A8ACBA4E0A16081103E97498013777F61D099BD558EFFAA32FE9BCAF8E6E4C6FBFDEE5F0090F3D96282A693309197F98CC86DD8ABCBC6624E5F08582AE4091B27045B0468B97BE5DDD94B1FB7AFDD5EFAA31868CB4C2C20E26AC4A2C4574551AB0A86360616231E86A6D2F018B538B1746263C810641AA440A3000A0075002D84740DEB00CD115699380CCD432018F9103B88DA84D88CF9403311B521B1307338574F92AB041095EF21C4C4D85092A1443E18C747D3D1D5417F160FF6D4E945B3617FAFDF8E3BCD7EBBD18B5AC3DD4AB7BEDBAFD7BAB55ABF51EE360B9D56A1B3F558C592699DA73909054B70EA4BEEEB22E0D455B115C94343A6743DA9EB09290329031510C5320540D2CE9FDBBB71B3D07D6BBBF383FAFE7B474FDC4E2D9780964AF2BC47C2244EE658262FF3EBDEFA82B99495B994CC062C65A040E759A02DF5AEBC7BF495BFAB0EDE04E46E20363049AB1591105BB134257262E4AA97C744DB62D4E2C46050604820C400324D13084A45F88E03663A803AC48E5AF439F5190A280AD49E498882664F431E2273699B1EE71A30B4390D18F32975103229B639F5297418F2C0383E9A0C0F67E32BE3786F1CEF8DE38361B4D7EB8C07DD71D4EE77DA8346BDD7AC0D3ACD9162DCF552BBBED3AA5EDEEDD54777ADDD0781C57082D380119F535F17A1E4099D853A0B7591943C346452CA50CA90F340F05017492ED300E500D988F6BEBFD97EE3B1C61B676B6F35A26F037CB7616CF834E3A130CB734B7C61DD5E3BE16E2CE88B59994BEB199F252C9A306516680B87CFFEE4E0CBFF76E3CC2100AB002D509264C443C4A3D439CE6C984ADC60C865C845DADC5B41501228A8C6A9C69046E718AD1908E810E818DE09E25818B99C25D99C923B82F814BB4A96521962A5BAA80D9E528B339B6083118F608F10172952882C866D3AE7D7FD3DB5CE8CE383C9F070D4DD8F5B7B516B3CE84EFBD1281E4CE3C15ED49EB49BA3A835EE5407F552BB566CED5CAAB4CAD1B9873725F719F10509049B579C628FD3409080535FB040D12325E9F279FB871ACD00B2DC9FBD51EEBE79AEFEC6E5E65F3D76F16900962C9CF75098C0614EE4D78CB50D637DD55CCB89C59CC8A758D225BE817D83A701CACF9EBAF9ECCBFF0EB0D3002F0896E39A2F69C0884790A572201419049A02D92A5F8A344BD9AF041B040A8E0483738B000141A049B10D156941BA5A61D45672876C70EC11CD56FE80520715F1B8937A50DAF771EACC21C4557D2D9827A8CBA90F26A3ABF160EF60766D7FFAF86870D86FCD068DBD5E73DC6B0EE3DE2C1EECF5BB7B51B4D7E9CCEABBFD4E75D8ACF4CA3BADE276AD52D8DDBCB8B3B07CD2D24383069226044B50E213EC091630E209E133E6721E3091202C60229446DAD44343041A4E02946DC7AF965AAF5FA8FFE576ED7BB9C51D0072697DCDC7C914492D5B2BA7EC93A7CC8D25B19AE3CB39914FD3B487130E094D9A0220FFD24B1F8C7ADF01DA0A128B02A7244D70EAEAC467D8E6C4E2C4A2F3008DCFA1730CB80E8626D418860C03822123502028B12609D419B534AC1F5F9521A8CD9486471C461CC18239704347855D1972295236E39CD811AA336A10A81B34A0C71F8AA189A024D8C0D00671FF6036B9368A8FC6F151DCDBEF77F6DBF571A719F7A3C9A03B556734D81FF6F7BAED517B77502FF54ADB9D9DCDD6D6E5FAE6A56AA5D4A1D41322217982200743F5FD7C4A3D444D426CCE3DC65C2E43AE9084FA5286980700268BA5E71BBDEF5C2C7DA3DB7B1380931659F148E8136F592EDC65AD9F764E9C763616F4E50C5F48B094CF120E752DEA73EC019018C47F2ABCCF032D4B4992319F335B509B604330EF3830A616748B40537D2B821CA4594833B026B1263540A04611E40872B52B2AE943FD178C78043977429473978B989FAEFBD8BD2364DF9981CA2B10D49534A0D8558E04A72EC326C536188FAFC6F1FE6878308E0F4683C36E7B32EA5FE93587FDD668D49D296C190DF6E3DEA4DB8E9BB55EBDDA2B16DADB9BCDADCBF5CB17CA95EDB66165280F28F1054B309C103C4589AF210731073347089F52473538E7811009C65C2642A025EE3ADD887ADF2A14BE3A1B7E0F80A580AC24692A2DC2756BE994B37ECA593F69AF2DE8CB197D29E4690FBB2EB10D6CEBDCD780F7C7F76E032D09518AC190115F105F29CE101A84D842B8041B8C3892FB6A6AA9BA6B4022A0D64289348A358EA05477733C186D082D65B828195AC3264226C1066736674AE9F6307620B454AD213130B3E6616DECCEBB9ECCDFA3AE8D638F11070C2747C3E1C1647C341E1DF6A3493F9A759AA3F66E6F184D07EDB1AA75DC9BF5A351BF376E3706AD7A5CDAE95CBE5CBB7CB172F942F1C2239BEB27EF25DC65CC67C4A72860384158888887982F4552F284426D2943C143446DC65CCC7DA0054EFAA1C3A3EF172E3F77E9E29304AF25D95A9A6652343CE9AE9E723636AC8D13E6468E2F67F8528A654292F44960E3C0A649499336CF7035007082E30422C1DCD9A31E8486DACB2975203420919419080B04A506F89C7240AE6A0DA101A1A58AC2A9AF4808B9130B5119126C50645164E8DC15746E411CC74BCCE3BEB61871187205F1551C851017C279B084224BEDE8FBC378BF17CD86C3A35E6F2F6A4F3AB538DA8DE3D674184D4783FDC9F0F098081E349BC3466D50DCA96F5F2E6D5D2A5E3EB775E1D18B5B9B45216D2A3CC143C1129287047B88A849A8A2E009461C217C45BD197130F5104E012DDB8EBE56DDFAF2D90727265C09F94A407219965FB3D6379C136BD6FAAAB996E3AB59B692668B01C93828B0B12734CBC6810E7D9D859C841C27040929F40908184EA81583520700A9A467447595D2838043209166602434A8D0431EFB353A423A841223819190C2265050248F5D2E8B619B619B619333136141A88EA84EA9A55296947CD60EF695678FB10111C7D860442DF72E38983D31E8EEF5BB7BE3E1955E34EB76A6EDDD41B3D419F7F6A2D660323E188F0E87F1FEA0B73F1C5C6937868DDD6EA950DFBCB873F9D2CEB9C72E5D38BFF9E823E757574E32E962EE236A13EE2A4851F92E41428E7D463C4A3D443C4A128C78940784A701CA34A3AF544ACFDE7B4FDD418B49B69C24D9BC5C583557D6CDF593CEC945B1B4A8AFE5E5528AE65C98B0A16F2157479684B64E7C8A956118A843A0CF5592113B4224141A70EA236A626CDC61D0489BA7AA11E450139FAD3542FA1DD9881293D1B9EBA842C09CBA44ED818A72A8EC19B315D553B55633535D0F463AC192337B1E7F50DA53DCDB5783B1D7990EBA7B8DDD7EA7D957A07170782D1ECE86C383517CD4ED4C1BF55EB3D6AB555A854BC5F30F9F3FFBE0D97367CE3E74EFFD0F3FF0C5C0CF4A19203477F519F1244D3014089C9234C9B1CF884F4902A304C51E222E1329A0254F7FBE5A2E3D6138F7847C3120A9344DAFD92B1BD6DA86B5B1225796F8D2B2BE9413F90CCBBA28B091AB234720D3E21E9B8771FD4F776225B6293704F904076A822164422895BFA5045284748838460243F3386433AFB5863F958A9872B3B083887B07BE39F7309E37FB9DA9A8C09A5397CDC7A325A84D91A14470359F11B2413F9A8D068783EE9E12A17A9D71371AB7EA71D4190DE3FD413C9D4C0FC7A3FDF1E870DCDB3B1A3F3EE94D2B85DD2F9E79E4FEFB1E3C75EAEEF5F5138B0BAB613267DB69463CA63E92F9CA512538A028A428A4703E39194E30E432E652EA01CD3F71F776B97055D74F84229FA0E934CF2C994B1BCEFAAAB9B6ACAFE4596ED9585C94F90CCB0434E960CF249E413D4E5D463C4603041D656F2364CF257CEC61E423E8CDED44645164616D0E0E739305E99FFE8C1D088D3BC88B90AE4A39CF0D2B2E415C4A3D425CCC1C426CA5654BEC29C2A7EE40DD8DA29B921802EB080855EB3B499DFF0F62B8BC81C396A2930000000049454E44AE426082,'Mike.Hillyer@dvdsstaff.com',1,1,'Mike','8cb2237d0679ca88db6464eac60da96345513964','2006-02-15 03:57:16'), - (2,'Jon','Stephens',4,NULL,'Jon.Stephens@dvdsstaff.com',2,1,'Jon',NULL,'2006-02-15 03:57:16'); -/*!40000 ALTER TABLE `staff` ENABLE KEYS */; -UNLOCK TABLES; -COMMIT; - --- --- Dumping data for table store --- - -SET AUTOCOMMIT=0; -INSERT INTO store VALUES (1,1,1,'2006-02-15 04:57:12'), - (2,2,2,'2006-02-15 04:57:12'); -COMMIT; - -SET SQL_MODE=@OLD_SQL_MODE; -SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; -SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; diff --git a/tests/init/data/mysql/test_sample.sql b/tests/init/data/mysql/test_sample.sql deleted file mode 100644 index a18a52b..0000000 --- a/tests/init/data/mysql/test_sample.sql +++ /dev/null @@ -1,159 +0,0 @@ --- MySQL dump 10.13 Distrib 8.0.16, for Linux (x86_64) - - --- --- Table structure for table `all_types8` --- - -DROP TABLE IF EXISTS `all_types`; - -CREATE TABLE `all_types` ( - `boolean` BOOLEAN NOT NULL, - `boolean_ptr` BOOLEAN, - - `tiny_int` TINYINT NOT NULL, - `u_tiny_int` TINYINT unsigned NOT NULL, - - `small_int` SMALLINT NOT NULL, - `u_small_int` SMALLINT unsigned NOT NULL, - - `medium_int` MEDIUMINT NOT NULL, - `u_medium_int` MEDIUMINT unsigned NOT NULL, - - `integer` INT NOT NULL, - `u_integer` INT unsigned NOT NULL, - - `big_int` bigint(20) NOT NULL, - `u_big_int` bigint(20) unsigned NOT NULL, - --- ptr - - `tiny_int_ptr` TINYINT, - `u_tiny_int_ptr` TINYINT unsigned, - - `small_int_ptr` SMALLINT, - `u_small_int_ptr` SMALLINT unsigned, - - `medium_int_ptr` MEDIUMINT, - `u_medium_int_ptr` MEDIUMINT unsigned, - - `integer_ptr` INT, - `u_integer_ptr` INT unsigned, - - `big_int_ptr` bigint(20), - `u_big_int_ptr` bigint(20) unsigned, - - --- floats - `decimal` decimal(5, 2) unsigned NOT NULL, - `decimal_ptr` decimal(5,2), - - `numeric` numeric(5,2) NOT NULL, - `numeric_ptr` numeric(5, 2), - - `float` float NOT NULL, - `float_ptr` float, - - `double` double NOT NULL, - `double_ptr` double, - - `real` real NOT NULL, - `real_ptr` real, - --- bit values - - `bit` bit(10) NOT NULL, - `bit_ptr` bit(10), - --- date and time - `time` time NOT NULL, - `time_ptr` time, - - `date` date NOT NULL, - `date_ptr` date, - - `date_time` datetime NOT NULL, - `date_time_ptr` datetime, - - `timestamp` timestamp NOT NULL, - `timestamp_ptr` timestamp, - - `year` year NOT NULL, - `year_ptr` year, - --- strings - - `char` char(20) NOT NULL, - `char_ptr` char(20), - - `var_char` varchar(20) NOT NULL, - `var_char_ptr` varchar(20), - - `binary` binary(20) NOT NULL, - `binary_ptr` binary(20), - - `var_binary` varbinary(20) NOT NULL, - `var_binary_ptr` varbinary(20), - - `blob` blob NOT NULL, - `blob_ptr` blob, - - `text` text NOT NULL, - `text_ptr` text, - - `enum` enum('value1', 'value2', 'value3') NOT NULL, - `enum_ptr` enum('value1', 'value2', 'value3'), - - `set` set('s1', 's2', 's3') NOT NULL, - `set_ptr` set('s1', 's2', 's3'), - --- json - - `json` json NOT NULL, - `json_ptr` json - - ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - -INSERT INTO `all_types` VALUES -(false, true, --3,3,14,14,-150,150,-1600,1600,5000,50000, --3,3,14,14,-150,150,-1600,1600,50000,50000, -1.11,1.11,2.22,2.22,3.33,3.33,4.44,4.44,5.55,5.55, -_binary '\0',_binary '\0', -'10:11:12.33', '10:11:12.33', '2008-07-04','2008-07-04','2011-12-18 13:17:17','2011-12-18 13:17:17','2007-12-31 23:00:01','2007-12-31 23:00:01',2004,2004,'char','char','varchar','varchar',_binary 'binary\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'binary\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'varbinary',_binary 'varbinary',_binary 'blob',_binary 'blob','text','text','value1','value1','s1','s2','{\"key1\": \"value1\", \"key2\": \"value2\"}','{\"key1\": \"value1\", \"key2\": \"value2\"}'), -(false, NULL, --3,3,14,14,-150,150,-1600,1600,5000,50000, -NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL, -1.11,NULL,2.22,NULL,3.33,NULL,4.44,NULL,5.55,NULL, -_binary '\0',NULL, -'10:11:12.33', NULL, '2008-07-04',NULL,'2011-12-18 13:17:17',NULL,'2007-12-31 23:00:01',NULL,2004,NULL,'char',NULL,'varchar',NULL,_binary 'binary\0\0\0\0\0\0\0\0\0\0\0\0\0\0',NULL,_binary 'varbinary',NULL,_binary 'blob',NULL,'text',NULL,'value1',NULL,'s1',NULL,'{\"key1\": \"value1\", \"key2\": \"value2\"}',NULL); - - - --- Link table -------------------- - -DROP TABLE IF EXISTS test_sample.link; - -CREATE TABLE IF NOT EXISTS test_sample.link ( - id int PRIMARY KEY AUTO_INCREMENT, - url VARCHAR (255) NOT NULL, - name VARCHAR (255) NOT NULL, - description VARCHAR (255) -); - -INSERT INTO test_sample.link (ID, url, name, description) VALUES -(0, 'http://www.youtube.com', 'Youtube' , ''); - --- Link2 table -------------------- - -DROP TABLE IF EXISTS test_sample.link2; - -CREATE TABLE IF NOT EXISTS test_sample.link2 ( - id int PRIMARY KEY AUTO_INCREMENT, - url VARCHAR (255) NOT NULL, - name VARCHAR (255) NOT NULL, - description VARCHAR (255) -); - -INSERT INTO test_sample.link2 (ID, url, name, description) VALUES -(0, 'http://www.youtube.com', 'Youtube' , ''); \ No newline at end of file diff --git a/tests/init/data/postgres/chinook.sql b/tests/init/data/postgres/chinook.sql deleted file mode 100644 index 740164a..0000000 --- a/tests/init/data/postgres/chinook.sql +++ /dev/null @@ -1,15823 +0,0 @@ - -/******************************************************************************* - Chinook Database - Version 1.4 - Script: Chinook_PostgreSql.sql - Description: Creates and populates the Chinook database. - DB Server: PostgreSql - Author: Luis Rocha - License: http://www.codeplex.com/ChinookDatabase/license -********************************************************************************/ - -DROP SCHEMA IF EXISTS chinook cascade; - -CREATE SCHEMA chinook; - - -SET search_path TO chinook; - -/******************************************************************************* - Create Tables -********************************************************************************/ -CREATE TABLE "Album" -( - "AlbumId" INT NOT NULL, - "Title" VARCHAR(160) NOT NULL, - "ArtistId" INT NOT NULL, - CONSTRAINT "PK_Album" PRIMARY KEY ("AlbumId") -); - -CREATE TABLE "Artist" -( - "ArtistId" INT NOT NULL, - "Name" VARCHAR(120), - CONSTRAINT "PK_Artist" PRIMARY KEY ("ArtistId") -); - -CREATE TABLE "Customer" -( - "CustomerId" INT NOT NULL, - "FirstName" VARCHAR(40) NOT NULL, - "LastName" VARCHAR(20) NOT NULL, - "Company" VARCHAR(80), - "Address" VARCHAR(70), - "City" VARCHAR(40), - "State" VARCHAR(40), - "Country" VARCHAR(40), - "PostalCode" VARCHAR(10), - "Phone" VARCHAR(24), - "Fax" VARCHAR(24), - "Email" VARCHAR(60) NOT NULL, - "SupportRepId" INT, - CONSTRAINT "PK_Customer" PRIMARY KEY ("CustomerId") -); - -CREATE TABLE "Employee" -( - "EmployeeId" INT NOT NULL, - "LastName" VARCHAR(20) NOT NULL, - "FirstName" VARCHAR(20) NOT NULL, - "Title" VARCHAR(30), - "ReportsTo" INT, - "BirthDate" TIMESTAMP, - "HireDate" TIMESTAMP, - "Address" VARCHAR(70), - "City" VARCHAR(40), - "State" VARCHAR(40), - "Country" VARCHAR(40), - "PostalCode" VARCHAR(10), - "Phone" VARCHAR(24), - "Fax" VARCHAR(24), - "Email" VARCHAR(60), - CONSTRAINT "PK_Employee" PRIMARY KEY ("EmployeeId") -); - -CREATE TABLE "Genre" -( - "GenreId" INT NOT NULL, - "Name" VARCHAR(120), - CONSTRAINT "PK_Genre" PRIMARY KEY ("GenreId") -); - -CREATE TABLE "Invoice" -( - "InvoiceId" INT NOT NULL, - "CustomerId" INT NOT NULL, - "InvoiceDate" TIMESTAMP NOT NULL, - "BillingAddress" VARCHAR(70), - "BillingCity" VARCHAR(40), - "BillingState" VARCHAR(40), - "BillingCountry" VARCHAR(40), - "BillingPostalCode" VARCHAR(10), - "Total" NUMERIC(10,2) NOT NULL, - CONSTRAINT "PK_Invoice" PRIMARY KEY ("InvoiceId") -); - -CREATE TABLE "InvoiceLine" -( - "InvoiceLineId" INT NOT NULL, - "InvoiceId" INT NOT NULL, - "TrackId" INT NOT NULL, - "UnitPrice" NUMERIC(10,2) NOT NULL, - "Quantity" INT NOT NULL, - CONSTRAINT "PK_InvoiceLine" PRIMARY KEY ("InvoiceLineId") -); - -CREATE TABLE "MediaType" -( - "MediaTypeId" INT NOT NULL, - "Name" VARCHAR(120), - CONSTRAINT "PK_MediaType" PRIMARY KEY ("MediaTypeId") -); - -CREATE TABLE "Playlist" -( - "PlaylistId" INT NOT NULL, - "Name" VARCHAR(120), - CONSTRAINT "PK_Playlist" PRIMARY KEY ("PlaylistId") -); - -CREATE TABLE "PlaylistTrack" -( - "PlaylistId" INT NOT NULL, - "TrackId" INT NOT NULL, - CONSTRAINT "PK_PlaylistTrack" PRIMARY KEY ("PlaylistId", "TrackId") -); - -CREATE TABLE "Track" -( - "TrackId" INT NOT NULL, - "Name" VARCHAR(200) NOT NULL, - "AlbumId" INT, - "MediaTypeId" INT NOT NULL, - "GenreId" INT, - "Composer" VARCHAR(220), - "Milliseconds" INT NOT NULL, - "Bytes" INT, - "UnitPrice" NUMERIC(10,2) NOT NULL, - CONSTRAINT "PK_Track" PRIMARY KEY ("TrackId") -); - - - -/******************************************************************************* - Create Primary Key Unique Indexes -********************************************************************************/ - -/******************************************************************************* - Create Foreign Keys -********************************************************************************/ -ALTER TABLE "Album" ADD CONSTRAINT "FK_AlbumArtistId" - FOREIGN KEY ("ArtistId") REFERENCES "Artist" ("ArtistId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_AlbumArtistId" ON "Album" ("ArtistId"); - -ALTER TABLE "Customer" ADD CONSTRAINT "FK_CustomerSupportRepId" - FOREIGN KEY ("SupportRepId") REFERENCES "Employee" ("EmployeeId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_CustomerSupportRepId" ON "Customer" ("SupportRepId"); - -ALTER TABLE "Employee" ADD CONSTRAINT "FK_EmployeeReportsTo" - FOREIGN KEY ("ReportsTo") REFERENCES "Employee" ("EmployeeId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_EmployeeReportsTo" ON "Employee" ("ReportsTo"); - -ALTER TABLE "Invoice" ADD CONSTRAINT "FK_InvoiceCustomerId" - FOREIGN KEY ("CustomerId") REFERENCES "Customer" ("CustomerId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_InvoiceCustomerId" ON "Invoice" ("CustomerId"); - -ALTER TABLE "InvoiceLine" ADD CONSTRAINT "FK_InvoiceLineInvoiceId" - FOREIGN KEY ("InvoiceId") REFERENCES "Invoice" ("InvoiceId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_InvoiceLineInvoiceId" ON "InvoiceLine" ("InvoiceId"); - -ALTER TABLE "InvoiceLine" ADD CONSTRAINT "FK_InvoiceLineTrackId" - FOREIGN KEY ("TrackId") REFERENCES "Track" ("TrackId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_InvoiceLineTrackId" ON "InvoiceLine" ("TrackId"); - -ALTER TABLE "PlaylistTrack" ADD CONSTRAINT "FK_PlaylistTrackPlaylistId" - FOREIGN KEY ("PlaylistId") REFERENCES "Playlist" ("PlaylistId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -ALTER TABLE "PlaylistTrack" ADD CONSTRAINT "FK_PlaylistTrackTrackId" - FOREIGN KEY ("TrackId") REFERENCES "Track" ("TrackId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_PlaylistTrackTrackId" ON "PlaylistTrack" ("TrackId"); - -ALTER TABLE "Track" ADD CONSTRAINT "FK_TrackAlbumId" - FOREIGN KEY ("AlbumId") REFERENCES "Album" ("AlbumId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_TrackAlbumId" ON "Track" ("AlbumId"); - -ALTER TABLE "Track" ADD CONSTRAINT "FK_TrackGenreId" - FOREIGN KEY ("GenreId") REFERENCES "Genre" ("GenreId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_TrackGenreId" ON "Track" ("GenreId"); - -ALTER TABLE "Track" ADD CONSTRAINT "FK_TrackMediaTypeId" - FOREIGN KEY ("MediaTypeId") REFERENCES "MediaType" ("MediaTypeId") ON DELETE NO ACTION ON UPDATE NO ACTION; - -CREATE INDEX "IFK_TrackMediaTypeId" ON "Track" ("MediaTypeId"); - - -/******************************************************************************* - Populate Tables -********************************************************************************/ -INSERT INTO "Genre" ("GenreId", "Name") VALUES (1, N'Rock'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (2, N'Jazz'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (3, N'Metal'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (4, N'Alternative & Punk'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (5, N'Rock And Roll'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (6, N'Blues'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (7, N'Latin'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (8, N'Reggae'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (9, N'Pop'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (10, N'Soundtrack'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (11, N'Bossa Nova'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (12, N'Easy Listening'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (13, N'Heavy Metal'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (14, N'R&B/Soul'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (15, N'Electronica/Dance'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (16, N'World'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (17, N'Hip Hop/Rap'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (18, N'Science Fiction'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (19, N'TV Shows'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (20, N'Sci Fi & Fantasy'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (21, N'Drama'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (22, N'Comedy'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (23, N'Alternative'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (24, N'Classical'); -INSERT INTO "Genre" ("GenreId", "Name") VALUES (25, N'Opera'); - -INSERT INTO "MediaType" ("MediaTypeId", "Name") VALUES (1, N'MPEG audio file'); -INSERT INTO "MediaType" ("MediaTypeId", "Name") VALUES (2, N'Protected AAC audio file'); -INSERT INTO "MediaType" ("MediaTypeId", "Name") VALUES (3, N'Protected MPEG-4 video file'); -INSERT INTO "MediaType" ("MediaTypeId", "Name") VALUES (4, N'Purchased AAC audio file'); -INSERT INTO "MediaType" ("MediaTypeId", "Name") VALUES (5, N'AAC audio file'); - -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (1, N'AC/DC'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (2, N'Accept'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (3, N'Aerosmith'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (4, N'Alanis Morissette'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (5, N'Alice In Chains'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (6, N'Ant�nio Carlos Jobim'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (7, N'Apocalyptica'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (8, N'Audioslave'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (9, N'BackBeat'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (10, N'Billy Cobham'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (11, N'Black Label Society'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (12, N'Black Sabbath'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (13, N'Body Count'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (14, N'Bruce Dickinson'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (15, N'Buddy Guy'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (16, N'Caetano Veloso'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (17, N'Chico Buarque'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (18, N'Chico Science & Na��o Zumbi'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (19, N'Cidade Negra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (20, N'Cl�udio Zoli'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (21, N'Various Artists'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (22, N'Led Zeppelin'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (23, N'Frank Zappa & Captain Beefheart'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (24, N'Marcos Valle'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (25, N'Milton Nascimento & Bebeto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (26, N'Azymuth'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (27, N'Gilberto Gil'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (28, N'Jo�o Gilberto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (29, N'Bebel Gilberto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (30, N'Jorge Vercilo'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (31, N'Baby Consuelo'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (32, N'Ney Matogrosso'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (33, N'Luiz Melodia'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (34, N'Nando Reis'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (35, N'Pedro Lu�s & A Parede'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (36, N'O Rappa'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (37, N'Ed Motta'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (38, N'Banda Black Rio'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (39, N'Fernanda Porto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (40, N'Os Cariocas'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (41, N'Elis Regina'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (42, N'Milton Nascimento'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (43, N'A Cor Do Som'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (44, N'Kid Abelha'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (45, N'Sandra De S�'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (46, N'Jorge Ben'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (47, N'Hermeto Pascoal'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (48, N'Bar�o Vermelho'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (49, N'Edson, DJ Marky & DJ Patife Featuring Fernanda Porto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (50, N'Metallica'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (51, N'Queen'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (52, N'Kiss'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (53, N'Spyro Gyra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (54, N'Green Day'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (55, N'David Coverdale'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (56, N'Gonzaguinha'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (57, N'Os Mutantes'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (58, N'Deep Purple'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (59, N'Santana'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (60, N'Santana Feat. Dave Matthews'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (61, N'Santana Feat. Everlast'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (62, N'Santana Feat. Rob Thomas'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (63, N'Santana Feat. Lauryn Hill & Cee-Lo'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (64, N'Santana Feat. The Project G&B'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (65, N'Santana Feat. Man�'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (66, N'Santana Feat. Eagle-Eye Cherry'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (67, N'Santana Feat. Eric Clapton'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (68, N'Miles Davis'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (69, N'Gene Krupa'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (70, N'Toquinho & Vin�cius'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (71, N'Vin�cius De Moraes & Baden Powell'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (72, N'Vin�cius De Moraes'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (73, N'Vin�cius E Qurteto Em Cy'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (74, N'Vin�cius E Odette Lara'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (75, N'Vinicius, Toquinho & Quarteto Em Cy'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (76, N'Creedence Clearwater Revival'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (77, N'C�ssia Eller'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (78, N'Def Leppard'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (79, N'Dennis Chambers'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (80, N'Djavan'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (81, N'Eric Clapton'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (82, N'Faith No More'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (83, N'Falamansa'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (84, N'Foo Fighters'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (85, N'Frank Sinatra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (86, N'Funk Como Le Gusta'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (87, N'Godsmack'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (88, N'Guns N'' Roses'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (89, N'Incognito'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (90, N'Iron Maiden'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (91, N'James Brown'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (92, N'Jamiroquai'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (93, N'JET'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (94, N'Jimi Hendrix'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (95, N'Joe Satriani'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (96, N'Jota Quest'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (97, N'Jo�o Suplicy'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (98, N'Judas Priest'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (99, N'Legi�o Urbana'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (100, N'Lenny Kravitz'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (101, N'Lulu Santos'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (102, N'Marillion'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (103, N'Marisa Monte'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (104, N'Marvin Gaye'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (105, N'Men At Work'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (106, N'Mot�rhead'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (107, N'Mot�rhead & Girlschool'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (108, N'M�nica Marianno'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (109, N'M�tley Cr�e'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (110, N'Nirvana'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (111, N'O Ter�o'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (112, N'Olodum'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (113, N'Os Paralamas Do Sucesso'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (114, N'Ozzy Osbourne'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (115, N'Page & Plant'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (116, N'Passengers'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (117, N'Paul D''Ianno'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (118, N'Pearl Jam'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (119, N'Peter Tosh'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (120, N'Pink Floyd'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (121, N'Planet Hemp'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (122, N'R.E.M. Feat. Kate Pearson'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (123, N'R.E.M. Feat. KRS-One'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (124, N'R.E.M.'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (125, N'Raimundos'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (126, N'Raul Seixas'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (127, N'Red Hot Chili Peppers'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (128, N'Rush'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (129, N'Simply Red'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (130, N'Skank'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (131, N'Smashing Pumpkins'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (132, N'Soundgarden'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (133, N'Stevie Ray Vaughan & Double Trouble'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (134, N'Stone Temple Pilots'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (135, N'System Of A Down'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (136, N'Terry Bozzio, Tony Levin & Steve Stevens'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (137, N'The Black Crowes'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (138, N'The Clash'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (139, N'The Cult'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (140, N'The Doors'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (141, N'The Police'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (142, N'The Rolling Stones'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (143, N'The Tea Party'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (144, N'The Who'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (145, N'Tim Maia'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (146, N'Tit�s'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (147, N'Battlestar Galactica'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (148, N'Heroes'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (149, N'Lost'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (150, N'U2'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (151, N'UB40'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (152, N'Van Halen'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (153, N'Velvet Revolver'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (154, N'Whitesnake'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (155, N'Zeca Pagodinho'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (156, N'The Office'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (157, N'Dread Zeppelin'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (158, N'Battlestar Galactica (Classic)'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (159, N'Aquaman'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (160, N'Christina Aguilera featuring BigElf'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (161, N'Aerosmith & Sierra Leone''s Refugee Allstars'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (162, N'Los Lonely Boys'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (163, N'Corinne Bailey Rae'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (164, N'Dhani Harrison & Jakob Dylan'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (165, N'Jackson Browne'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (166, N'Avril Lavigne'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (167, N'Big & Rich'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (168, N'Youssou N''Dour'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (169, N'Black Eyed Peas'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (170, N'Jack Johnson'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (171, N'Ben Harper'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (172, N'Snow Patrol'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (173, N'Matisyahu'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (174, N'The Postal Service'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (175, N'Jaguares'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (176, N'The Flaming Lips'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (177, N'Jack''s Mannequin & Mick Fleetwood'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (178, N'Regina Spektor'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (179, N'Scorpions'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (180, N'House Of Pain'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (181, N'Xis'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (182, N'Nega Gizza'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (183, N'Gustavo & Andres Veiga & Salazar'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (184, N'Rodox'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (185, N'Charlie Brown Jr.'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (186, N'Pedro Lu�s E A Parede'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (187, N'Los Hermanos'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (188, N'Mundo Livre S/A'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (189, N'Otto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (190, N'Instituto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (191, N'Na��o Zumbi'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (192, N'DJ Dolores & Orchestra Santa Massa'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (193, N'Seu Jorge'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (194, N'Sabotage E Instituto'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (195, N'Stereo Maracana'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (196, N'Cake'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (197, N'Aisha Duo'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (198, N'Habib Koit� and Bamada'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (199, N'Karsh Kale'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (200, N'The Posies'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (201, N'Luciana Souza/Romero Lubambo'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (202, N'Aaron Goldberg'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (203, N'Nicolaus Esterhazy Sinfonia'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (204, N'Temple of the Dog'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (205, N'Chris Cornell'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (206, N'Alberto Turco & Nova Schola Gregoriana'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (207, N'Richard Marlow & The Choir of Trinity College, Cambridge'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (208, N'English Concert & Trevor Pinnock'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (209, N'Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (210, N'Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (211, N'Wilhelm Kempff'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (212, N'Yo-Yo Ma'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (213, N'Scholars Baroque Ensemble'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (214, N'Academy of St. Martin in the Fields & Sir Neville Marriner'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (215, N'Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (216, N'Berliner Philharmoniker, Claudio Abbado & Sabine Meyer'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (217, N'Royal Philharmonic Orchestra & Sir Thomas Beecham'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (218, N'Orchestre R�volutionnaire et Romantique & John Eliot Gardiner'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (219, N'Britten Sinfonia, Ivor Bolton & Lesley Garrett'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (220, N'Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (221, N'Sir Georg Solti & Wiener Philharmoniker'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (222, N'Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (223, N'London Symphony Orchestra & Sir Charles Mackerras'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (224, N'Barry Wordsworth & BBC Concert Orchestra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (225, N'Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (226, N'Eugene Ormandy'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (227, N'Luciano Pavarotti'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (228, N'Leonard Bernstein & New York Philharmonic'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (229, N'Boston Symphony Orchestra & Seiji Ozawa'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (230, N'Aaron Copland & London Symphony Orchestra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (231, N'Ton Koopman'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (232, N'Sergei Prokofiev & Yuri Temirkanov'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (233, N'Chicago Symphony Orchestra & Fritz Reiner'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (234, N'Orchestra of The Age of Enlightenment'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (235, N'Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (236, N'James Levine'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (237, N'Berliner Philharmoniker & Hans Rosbaud'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (238, N'Maurizio Pollini'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (239, N'Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (240, N'Gustav Mahler'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (241, N'Felix Schmidt, London Symphony Orchestra & Rafael Fr�hbeck de Burgos'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (242, N'Edo de Waart & San Francisco Symphony'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (243, N'Antal Dor�ti & London Symphony Orchestra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (244, N'Choir Of Westminster Abbey & Simon Preston'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (245, N'Michael Tilson Thomas & San Francisco Symphony'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (246, N'Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (247, N'The King''s Singers'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (248, N'Berliner Philharmoniker & Herbert Von Karajan'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (249, N'Sir Georg Solti, Sumi Jo & Wiener Philharmoniker'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (250, N'Christopher O''Riley'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (251, N'Fretwork'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (252, N'Amy Winehouse'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (253, N'Calexico'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (254, N'Otto Klemperer & Philharmonia Orchestra'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (255, N'Yehudi Menuhin'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (256, N'Philharmonia Orchestra & Sir Neville Marriner'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (257, N'Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (258, N'Les Arts Florissants & William Christie'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (259, N'The 12 Cellists of The Berlin Philharmonic'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (260, N'Adrian Leaper & Doreen de Feis'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (261, N'Roger Norrington, London Classical Players'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (262, N'Charles Dutoit & L''Orchestre Symphonique de Montr�al'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (263, N'Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (264, N'Kent Nagano and Orchestre de l''Op�ra de Lyon'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (265, N'Julian Bream'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (266, N'Martin Roscoe'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (267, N'G�teborgs Symfoniker & Neeme J�rvi'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (268, N'Itzhak Perlman'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (269, N'Michele Campanella'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (270, N'Gerald Moore'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (271, N'Mela Tenenbaum, Pro Musica Prague & Richard Kapp'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (272, N'Emerson String Quartet'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (273, N'C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (274, N'Nash Ensemble'); -INSERT INTO "Artist" ("ArtistId", "Name") VALUES (275, N'Philip Glass Ensemble'); - -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (1, N'For Those About To Rock We Salute You', 1); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (2, N'Balls to the Wall', 2); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (3, N'Restless and Wild', 2); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (4, N'Let There Be Rock', 1); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (5, N'Big Ones', 3); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (6, N'Jagged Little Pill', 4); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (7, N'Facelift', 5); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (8, N'Warner 25 Anos', 6); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (9, N'Plays Metallica By Four Cellos', 7); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (10, N'Audioslave', 8); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (11, N'Out Of Exile', 8); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (12, N'BackBeat Soundtrack', 9); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (13, N'The Best Of Billy Cobham', 10); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (14, N'Alcohol Fueled Brewtality Live! [Disc 1]', 11); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (15, N'Alcohol Fueled Brewtality Live! [Disc 2]', 11); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (16, N'Black Sabbath', 12); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (17, N'Black Sabbath Vol. 4 (Remaster)', 12); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (18, N'Body Count', 13); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (19, N'Chemical Wedding', 14); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (20, N'The Best Of Buddy Guy - The Millenium Collection', 15); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (21, N'Prenda Minha', 16); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (22, N'Sozinho Remix Ao Vivo', 16); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (23, N'Minha Historia', 17); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (24, N'Afrociberdelia', 18); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (25, N'Da Lama Ao Caos', 18); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (26, N'Ac�stico MTV [Live]', 19); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (27, N'Cidade Negra - Hits', 19); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (28, N'Na Pista', 20); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (29, N'Ax� Bahia 2001', 21); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (30, N'BBC Sessions [Disc 1] [Live]', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (31, N'Bongo Fury', 23); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (32, N'Carnaval 2001', 21); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (33, N'Chill: Brazil (Disc 1)', 24); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (34, N'Chill: Brazil (Disc 2)', 6); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (35, N'Garage Inc. (Disc 1)', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (36, N'Greatest Hits II', 51); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (37, N'Greatest Kiss', 52); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (38, N'Heart of the Night', 53); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (39, N'International Superhits', 54); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (40, N'Into The Light', 55); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (41, N'Meus Momentos', 56); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (42, N'Minha Hist�ria', 57); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (43, N'MK III The Final Concerts [Disc 1]', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (44, N'Physical Graffiti [Disc 1]', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (45, N'Sambas De Enredo 2001', 21); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (46, N'Supernatural', 59); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (47, N'The Best of Ed Motta', 37); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (48, N'The Essential Miles Davis [Disc 1]', 68); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (49, N'The Essential Miles Davis [Disc 2]', 68); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (50, N'The Final Concerts (Disc 2)', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (51, N'Up An'' Atom', 69); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (52, N'Vin�cius De Moraes - Sem Limite', 70); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (53, N'Vozes do MPB', 21); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (54, N'Chronicle, Vol. 1', 76); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (55, N'Chronicle, Vol. 2', 76); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (56, N'C�ssia Eller - Cole��o Sem Limite [Disc 2]', 77); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (57, N'C�ssia Eller - Sem Limite [Disc 1]', 77); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (58, N'Come Taste The Band', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (59, N'Deep Purple In Rock', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (60, N'Fireball', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (61, N'Knocking at Your Back Door: The Best Of Deep Purple in the 80''s', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (62, N'Machine Head', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (63, N'Purpendicular', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (64, N'Slaves And Masters', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (65, N'Stormbringer', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (66, N'The Battle Rages On', 58); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (67, N'Vault: Def Leppard''s Greatest Hits', 78); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (68, N'Outbreak', 79); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (69, N'Djavan Ao Vivo - Vol. 02', 80); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (70, N'Djavan Ao Vivo - Vol. 1', 80); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (71, N'Elis Regina-Minha Hist�ria', 41); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (72, N'The Cream Of Clapton', 81); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (73, N'Unplugged', 81); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (74, N'Album Of The Year', 82); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (75, N'Angel Dust', 82); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (76, N'King For A Day Fool For A Lifetime', 82); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (77, N'The Real Thing', 82); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (78, N'Deixa Entrar', 83); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (79, N'In Your Honor [Disc 1]', 84); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (80, N'In Your Honor [Disc 2]', 84); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (81, N'One By One', 84); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (82, N'The Colour And The Shape', 84); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (83, N'My Way: The Best Of Frank Sinatra [Disc 1]', 85); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (84, N'Roda De Funk', 86); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (85, N'As Can��es de Eu Tu Eles', 27); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (86, N'Quanta Gente Veio Ver (Live)', 27); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (87, N'Quanta Gente Veio ver--B�nus De Carnaval', 27); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (88, N'Faceless', 87); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (89, N'American Idiot', 54); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (90, N'Appetite for Destruction', 88); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (91, N'Use Your Illusion I', 88); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (92, N'Use Your Illusion II', 88); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (93, N'Blue Moods', 89); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (94, N'A Matter of Life and Death', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (95, N'A Real Dead One', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (96, N'A Real Live One', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (97, N'Brave New World', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (98, N'Dance Of Death', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (99, N'Fear Of The Dark', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (100, N'Iron Maiden', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (101, N'Killers', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (102, N'Live After Death', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (103, N'Live At Donington 1992 (Disc 1)', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (104, N'Live At Donington 1992 (Disc 2)', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (105, N'No Prayer For The Dying', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (106, N'Piece Of Mind', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (107, N'Powerslave', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (108, N'Rock In Rio [CD1]', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (109, N'Rock In Rio [CD2]', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (110, N'Seventh Son of a Seventh Son', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (111, N'Somewhere in Time', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (112, N'The Number of The Beast', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (113, N'The X Factor', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (114, N'Virtual XI', 90); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (115, N'Sex Machine', 91); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (116, N'Emergency On Planet Earth', 92); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (117, N'Synkronized', 92); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (118, N'The Return Of The Space Cowboy', 92); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (119, N'Get Born', 93); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (120, N'Are You Experienced?', 94); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (121, N'Surfing with the Alien (Remastered)', 95); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (122, N'Jorge Ben Jor 25 Anos', 46); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (123, N'Jota Quest-1995', 96); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (124, N'Cafezinho', 97); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (125, N'Living After Midnight', 98); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (126, N'Unplugged [Live]', 52); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (127, N'BBC Sessions [Disc 2] [Live]', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (128, N'Coda', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (129, N'Houses Of The Holy', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (130, N'In Through The Out Door', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (131, N'IV', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (132, N'Led Zeppelin I', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (133, N'Led Zeppelin II', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (134, N'Led Zeppelin III', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (135, N'Physical Graffiti [Disc 2]', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (136, N'Presence', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (137, N'The Song Remains The Same (Disc 1)', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (138, N'The Song Remains The Same (Disc 2)', 22); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (139, N'A TempestadeTempestade Ou O Livro Dos Dias', 99); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (140, N'Mais Do Mesmo', 99); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (141, N'Greatest Hits', 100); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (142, N'Lulu Santos - RCA 100 Anos De M�sica - �lbum 01', 101); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (143, N'Lulu Santos - RCA 100 Anos De M�sica - �lbum 02', 101); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (144, N'Misplaced Childhood', 102); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (145, N'Barulhinho Bom', 103); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (146, N'Seek And Shall Find: More Of The Best (1963-1981)', 104); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (147, N'The Best Of Men At Work', 105); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (148, N'Black Album', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (149, N'Garage Inc. (Disc 2)', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (150, N'Kill ''Em All', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (151, N'Load', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (152, N'Master Of Puppets', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (153, N'ReLoad', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (154, N'Ride The Lightning', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (155, N'St. Anger', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (156, N'...And Justice For All', 50); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (157, N'Miles Ahead', 68); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (158, N'Milton Nascimento Ao Vivo', 42); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (159, N'Minas', 42); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (160, N'Ace Of Spades', 106); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (161, N'Demorou...', 108); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (162, N'Motley Crue Greatest Hits', 109); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (163, N'From The Muddy Banks Of The Wishkah [Live]', 110); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (164, N'Nevermind', 110); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (165, N'Compositores', 111); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (166, N'Olodum', 112); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (167, N'Ac�stico MTV', 113); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (168, N'Arquivo II', 113); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (169, N'Arquivo Os Paralamas Do Sucesso', 113); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (170, N'Bark at the Moon (Remastered)', 114); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (171, N'Blizzard of Ozz', 114); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (172, N'Diary of a Madman (Remastered)', 114); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (173, N'No More Tears (Remastered)', 114); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (174, N'Tribute', 114); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (175, N'Walking Into Clarksdale', 115); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (176, N'Original Soundtracks 1', 116); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (177, N'The Beast Live', 117); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (178, N'Live On Two Legs [Live]', 118); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (179, N'Pearl Jam', 118); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (180, N'Riot Act', 118); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (181, N'Ten', 118); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (182, N'Vs.', 118); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (183, N'Dark Side Of The Moon', 120); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (184, N'Os C�es Ladram Mas A Caravana N�o P�ra', 121); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (185, N'Greatest Hits I', 51); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (186, N'News Of The World', 51); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (187, N'Out Of Time', 122); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (188, N'Green', 124); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (189, N'New Adventures In Hi-Fi', 124); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (190, N'The Best Of R.E.M.: The IRS Years', 124); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (191, N'Cesta B�sica', 125); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (192, N'Raul Seixas', 126); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (193, N'Blood Sugar Sex Magik', 127); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (194, N'By The Way', 127); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (195, N'Californication', 127); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (196, N'Retrospective I (1974-1980)', 128); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (197, N'Santana - As Years Go By', 59); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (198, N'Santana Live', 59); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (199, N'Maquinarama', 130); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (200, N'O Samba Pocon�', 130); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (201, N'Judas 0: B-Sides and Rarities', 131); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (202, N'Rotten Apples: Greatest Hits', 131); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (203, N'A-Sides', 132); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (204, N'Morning Dance', 53); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (205, N'In Step', 133); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (206, N'Core', 134); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (207, N'Mezmerize', 135); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (208, N'[1997] Black Light Syndrome', 136); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (209, N'Live [Disc 1]', 137); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (210, N'Live [Disc 2]', 137); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (211, N'The Singles', 138); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (212, N'Beyond Good And Evil', 139); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (213, N'Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]', 139); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (214, N'The Doors', 140); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (215, N'The Police Greatest Hits', 141); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (216, N'Hot Rocks, 1964-1971 (Disc 1)', 142); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (217, N'No Security', 142); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (218, N'Voodoo Lounge', 142); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (219, N'Tangents', 143); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (220, N'Transmission', 143); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (221, N'My Generation - The Very Best Of The Who', 144); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (222, N'Serie Sem Limite (Disc 1)', 145); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (223, N'Serie Sem Limite (Disc 2)', 145); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (224, N'Ac�stico', 146); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (225, N'Volume Dois', 146); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (226, N'Battlestar Galactica: The Story So Far', 147); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (227, N'Battlestar Galactica, Season 3', 147); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (228, N'Heroes, Season 1', 148); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (229, N'Lost, Season 3', 149); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (230, N'Lost, Season 1', 149); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (231, N'Lost, Season 2', 149); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (232, N'Achtung Baby', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (233, N'All That You Can''t Leave Behind', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (234, N'B-Sides 1980-1990', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (235, N'How To Dismantle An Atomic Bomb', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (236, N'Pop', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (237, N'Rattle And Hum', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (238, N'The Best Of 1980-1990', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (239, N'War', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (240, N'Zooropa', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (241, N'UB40 The Best Of - Volume Two [UK]', 151); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (242, N'Diver Down', 152); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (243, N'The Best Of Van Halen, Vol. I', 152); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (244, N'Van Halen', 152); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (245, N'Van Halen III', 152); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (246, N'Contraband', 153); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (247, N'Vinicius De Moraes', 72); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (248, N'Ao Vivo [IMPORT]', 155); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (249, N'The Office, Season 1', 156); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (250, N'The Office, Season 2', 156); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (251, N'The Office, Season 3', 156); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (252, N'Un-Led-Ed', 157); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (253, N'Battlestar Galactica (Classic), Season 1', 158); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (254, N'Aquaman', 159); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (255, N'Instant Karma: The Amnesty International Campaign to Save Darfur', 150); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (256, N'Speak of the Devil', 114); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (257, N'20th Century Masters - The Millennium Collection: The Best of Scorpions', 179); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (258, N'House of Pain', 180); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (259, N'Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro', 36); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (260, N'Cake: B-Sides and Rarities', 196); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (261, N'LOST, Season 4', 149); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (262, N'Quiet Songs', 197); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (263, N'Muso Ko', 198); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (264, N'Realize', 199); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (265, N'Every Kind of Light', 200); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (266, N'Duos II', 201); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (267, N'Worlds', 202); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (268, N'The Best of Beethoven', 203); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (269, N'Temple of the Dog', 204); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (270, N'Carry On', 205); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (271, N'Revelations', 8); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (272, N'Adorate Deum: Gregorian Chant from the Proper of the Mass', 206); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (273, N'Allegri: Miserere', 207); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (274, N'Pachelbel: Canon & Gigue', 208); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (275, N'Vivaldi: The Four Seasons', 209); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (276, N'Bach: Violin Concertos', 210); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (277, N'Bach: Goldberg Variations', 211); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (278, N'Bach: The Cello Suites', 212); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (279, N'Handel: The Messiah (Highlights)', 213); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (280, N'The World of Classical Favourites', 214); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (281, N'Sir Neville Marriner: A Celebration', 215); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (282, N'Mozart: Wind Concertos', 216); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (283, N'Haydn: Symphonies 99 - 104', 217); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (284, N'Beethoven: Symhonies Nos. 5 & 6', 218); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (285, N'A Soprano Inspired', 219); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (286, N'Great Opera Choruses', 220); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (287, N'Wagner: Favourite Overtures', 221); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (288, N'Faur�: Requiem, Ravel: Pavane & Others', 222); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (289, N'Tchaikovsky: The Nutcracker', 223); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (290, N'The Last Night of the Proms', 224); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (291, N'Puccini: Madama Butterfly - Highlights', 225); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (292, N'Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies', 226); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (293, N'Pavarotti''s Opera Made Easy', 227); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (294, N'Great Performances - Barber''s Adagio and Other Romantic Favorites for Strings', 228); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (295, N'Carmina Burana', 229); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (296, N'A Copland Celebration, Vol. I', 230); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (297, N'Bach: Toccata & Fugue in D Minor', 231); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (298, N'Prokofiev: Symphony No.1', 232); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (299, N'Scheherazade', 233); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (300, N'Bach: The Brandenburg Concertos', 234); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (301, N'Chopin: Piano Concertos Nos. 1 & 2', 235); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (302, N'Mascagni: Cavalleria Rusticana', 236); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (303, N'Sibelius: Finlandia', 237); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (304, N'Beethoven Piano Sonatas: Moonlight & Pastorale', 238); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (305, N'Great Recordings of the Century - Mahler: Das Lied von der Erde', 240); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (306, N'Elgar: Cello Concerto & Vaughan Williams: Fantasias', 241); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (307, N'Adams, John: The Chairman Dances', 242); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (308, N'Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington''s Victory', 243); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (309, N'Palestrina: Missa Papae Marcelli & Allegri: Miserere', 244); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (310, N'Prokofiev: Romeo & Juliet', 245); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (311, N'Strauss: Waltzes', 226); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (312, N'Berlioz: Symphonie Fantastique', 245); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (313, N'Bizet: Carmen Highlights', 246); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (314, N'English Renaissance', 247); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (315, N'Handel: Music for the Royal Fireworks (Original Version 1749)', 208); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (316, N'Grieg: Peer Gynt Suites & Sibelius: Pell�as et M�lisande', 248); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (317, N'Mozart Gala: Famous Arias', 249); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (318, N'SCRIABIN: Vers la flamme', 250); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (319, N'Armada: Music from the Courts of England and Spain', 251); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (320, N'Mozart: Symphonies Nos. 40 & 41', 248); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (321, N'Back to Black', 252); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (322, N'Frank', 252); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (323, N'Carried to Dust (Bonus Track Version)', 253); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (324, N'Beethoven: Symphony No. 6 ''Pastoral'' Etc.', 254); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (325, N'Bartok: Violin & Viola Concertos', 255); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (326, N'Mendelssohn: A Midsummer Night''s Dream', 256); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (327, N'Bach: Orchestral Suites Nos. 1 - 4', 257); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (328, N'Charpentier: Divertissements, Airs & Concerts', 258); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (329, N'South American Getaway', 259); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (330, N'G�recki: Symphony No. 3', 260); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (331, N'Purcell: The Fairy Queen', 261); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (332, N'The Ultimate Relexation Album', 262); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (333, N'Purcell: Music for the Queen Mary', 263); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (334, N'Weill: The Seven Deadly Sins', 264); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (335, N'J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro', 265); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (336, N'Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps', 248); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (337, N'Szymanowski: Piano Works, Vol. 1', 266); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (338, N'Nielsen: The Six Symphonies', 267); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (339, N'Great Recordings of the Century: Paganini''s 24 Caprices', 268); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (340, N'Liszt - 12 �tudes D''Execution Transcendante', 269); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (341, N'Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder', 270); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (342, N'Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3', 271); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (343, N'Respighi:Pines of Rome', 226); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (344, N'Schubert: The Late String Quartets & String Quintet (3 CD''s)', 272); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (345, N'Monteverdi: L''Orfeo', 273); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (346, N'Mozart: Chamber Music', 274); -INSERT INTO "Album" ("AlbumId", "Title", "ArtistId") VALUES (347, N'Koyaanisqatsi (Soundtrack from the Motion Picture)', 275); - -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1, N'For Those About To Rock (We Salute You)', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 343719, 11170334, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2, N'Balls to the Wall', 2, 2, 1, 342562, 5510424, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3, N'Fast As a Shark', 3, 2, 1, N'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman', 230619, 3990994, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (4, N'Restless and Wild', 3, 2, 1, N'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman', 252051, 4331779, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (5, N'Princess of the Dawn', 3, 2, 1, N'Deaffy & R.A. Smith-Diesel', 375418, 6290521, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (6, N'Put The Finger On You', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 205662, 6713451, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (7, N'Let''s Get It Up', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 233926, 7636561, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (8, N'Inject The Venom', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 210834, 6852860, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (9, N'Snowballed', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 203102, 6599424, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (10, N'Evil Walks', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 263497, 8611245, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (11, N'C.O.D.', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 199836, 6566314, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (12, N'Breaking The Rules', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 263288, 8596840, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (13, N'Night Of The Long Knives', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 205688, 6706347, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (14, N'Spellbound', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 270863, 8817038, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (15, N'Go Down', 4, 1, 1, N'AC/DC', 331180, 10847611, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (16, N'Dog Eat Dog', 4, 1, 1, N'AC/DC', 215196, 7032162, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (17, N'Let There Be Rock', 4, 1, 1, N'AC/DC', 366654, 12021261, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (18, N'Bad Boy Boogie', 4, 1, 1, N'AC/DC', 267728, 8776140, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (19, N'Problem Child', 4, 1, 1, N'AC/DC', 325041, 10617116, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (20, N'Overdose', 4, 1, 1, N'AC/DC', 369319, 12066294, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (21, N'Hell Ain''t A Bad Place To Be', 4, 1, 1, N'AC/DC', 254380, 8331286, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (22, N'Whole Lotta Rosie', 4, 1, 1, N'AC/DC', 323761, 10547154, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (23, N'Walk On Water', 5, 1, 1, N'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw', 295680, 9719579, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (24, N'Love In An Elevator', 5, 1, 1, N'Steven Tyler, Joe Perry', 321828, 10552051, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (25, N'Rag Doll', 5, 1, 1, N'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight', 264698, 8675345, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (26, N'What It Takes', 5, 1, 1, N'Steven Tyler, Joe Perry, Desmond Child', 310622, 10144730, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (27, N'Dude (Looks Like A Lady)', 5, 1, 1, N'Steven Tyler, Joe Perry, Desmond Child', 264855, 8679940, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (28, N'Janie''s Got A Gun', 5, 1, 1, N'Steven Tyler, Tom Hamilton', 330736, 10869391, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (29, N'Cryin''', 5, 1, 1, N'Steven Tyler, Joe Perry, Taylor Rhodes', 309263, 10056995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (30, N'Amazing', 5, 1, 1, N'Steven Tyler, Richie Supa', 356519, 11616195, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (31, N'Blind Man', 5, 1, 1, N'Steven Tyler, Joe Perry, Taylor Rhodes', 240718, 7877453, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (32, N'Deuces Are Wild', 5, 1, 1, N'Steven Tyler, Jim Vallance', 215875, 7074167, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (33, N'The Other Side', 5, 1, 1, N'Steven Tyler, Jim Vallance', 244375, 7983270, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (34, N'Crazy', 5, 1, 1, N'Steven Tyler, Joe Perry, Desmond Child', 316656, 10402398, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (35, N'Eat The Rich', 5, 1, 1, N'Steven Tyler, Joe Perry, Jim Vallance', 251036, 8262039, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (36, N'Angel', 5, 1, 1, N'Steven Tyler, Desmond Child', 307617, 9989331, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (37, N'Livin'' On The Edge', 5, 1, 1, N'Steven Tyler, Joe Perry, Mark Hudson', 381231, 12374569, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (38, N'All I Really Want', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 284891, 9375567, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (39, N'You Oughta Know', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 249234, 8196916, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (40, N'Perfect', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 188133, 6145404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (41, N'Hand In My Pocket', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 221570, 7224246, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (42, N'Right Through You', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 176117, 5793082, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (43, N'Forgiven', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 300355, 9753256, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (44, N'You Learn', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 239699, 7824837, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (45, N'Head Over Feet', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 267493, 8758008, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (46, N'Mary Jane', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 280607, 9163588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (47, N'Ironic', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 229825, 7598866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (48, N'Not The Doctor', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 227631, 7604601, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (49, N'Wake Up', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 293485, 9703359, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (50, N'You Oughta Know (Alternate)', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 491885, 16008629, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (51, N'We Die Young', 7, 1, 1, N'Jerry Cantrell', 152084, 4925362, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (52, N'Man In The Box', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 286641, 9310272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (53, N'Sea Of Sorrow', 7, 1, 1, N'Jerry Cantrell', 349831, 11316328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (54, N'Bleed The Freak', 7, 1, 1, N'Jerry Cantrell', 241946, 7847716, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (55, N'I Can''t Remember', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 222955, 7302550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (56, N'Love, Hate, Love', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 387134, 12575396, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (57, N'It Ain''t Like That', 7, 1, 1, N'Jerry Cantrell, Michael Starr, Sean Kinney', 277577, 8993793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (58, N'Sunshine', 7, 1, 1, N'Jerry Cantrell', 284969, 9216057, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (59, N'Put You Down', 7, 1, 1, N'Jerry Cantrell', 196231, 6420530, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (60, N'Confusion', 7, 1, 1, N'Jerry Cantrell, Michael Starr, Layne Staley', 344163, 11183647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (61, N'I Know Somethin (Bout You)', 7, 1, 1, N'Jerry Cantrell', 261955, 8497788, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (62, N'Real Thing', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 243879, 7937731, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (63, N'Desafinado', 8, 1, 2, 185338, 5990473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (64, N'Garota De Ipanema', 8, 1, 2, 285048, 9348428, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (65, N'Samba De Uma Nota S� (One Note Samba)', 8, 1, 2, 137273, 4535401, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (66, N'Por Causa De Voc�', 8, 1, 2, 169900, 5536496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (67, N'Ligia', 8, 1, 2, 251977, 8226934, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (68, N'Fotografia', 8, 1, 2, 129227, 4198774, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (69, N'Dindi (Dindi)', 8, 1, 2, 253178, 8149148, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (70, N'Se Todos Fossem Iguais A Voc� (Instrumental)', 8, 1, 2, 134948, 4393377, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (71, N'Falando De Amor', 8, 1, 2, 219663, 7121735, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (72, N'Angela', 8, 1, 2, 169508, 5574957, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (73, N'Corcovado (Quiet Nights Of Quiet Stars)', 8, 1, 2, 205662, 6687994, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (74, N'Outra Vez', 8, 1, 2, 126511, 4110053, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (75, N'O Boto (B�to)', 8, 1, 2, 366837, 12089673, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (76, N'Canta, Canta Mais', 8, 1, 2, 271856, 8719426, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (77, N'Enter Sandman', 9, 1, 3, N'Apocalyptica', 221701, 7286305, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (78, N'Master Of Puppets', 9, 1, 3, N'Apocalyptica', 436453, 14375310, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (79, N'Harvester Of Sorrow', 9, 1, 3, N'Apocalyptica', 374543, 12372536, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (80, N'The Unforgiven', 9, 1, 3, N'Apocalyptica', 322925, 10422447, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (81, N'Sad But True', 9, 1, 3, N'Apocalyptica', 288208, 9405526, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (82, N'Creeping Death', 9, 1, 3, N'Apocalyptica', 308035, 10110980, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (83, N'Wherever I May Roam', 9, 1, 3, N'Apocalyptica', 369345, 12033110, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (84, N'Welcome Home (Sanitarium)', 9, 1, 3, N'Apocalyptica', 350197, 11406431, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (85, N'Cochise', 10, 1, 1, N'Audioslave/Chris Cornell', 222380, 5339931, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (86, N'Show Me How to Live', 10, 1, 1, N'Audioslave/Chris Cornell', 277890, 6672176, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (87, N'Gasoline', 10, 1, 1, N'Audioslave/Chris Cornell', 279457, 6709793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (88, N'What You Are', 10, 1, 1, N'Audioslave/Chris Cornell', 249391, 5988186, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (89, N'Like a Stone', 10, 1, 1, N'Audioslave/Chris Cornell', 294034, 7059624, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (90, N'Set It Off', 10, 1, 1, N'Audioslave/Chris Cornell', 263262, 6321091, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (91, N'Shadow on the Sun', 10, 1, 1, N'Audioslave/Chris Cornell', 343457, 8245793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (92, N'I am the Highway', 10, 1, 1, N'Audioslave/Chris Cornell', 334942, 8041411, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (93, N'Exploder', 10, 1, 1, N'Audioslave/Chris Cornell', 206053, 4948095, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (94, N'Hypnotize', 10, 1, 1, N'Audioslave/Chris Cornell', 206628, 4961887, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (95, N'Bring''em Back Alive', 10, 1, 1, N'Audioslave/Chris Cornell', 329534, 7911634, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (96, N'Light My Way', 10, 1, 1, N'Audioslave/Chris Cornell', 303595, 7289084, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (97, N'Getaway Car', 10, 1, 1, N'Audioslave/Chris Cornell', 299598, 7193162, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (98, N'The Last Remaining Light', 10, 1, 1, N'Audioslave/Chris Cornell', 317492, 7622615, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (99, N'Your Time Has Come', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 255529, 8273592, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (100, N'Out Of Exile', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 291291, 9506571, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (101, N'Be Yourself', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 279484, 9106160, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (102, N'Doesn''t Remind Me', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 255869, 8357387, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (103, N'Drown Me Slowly', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 233691, 7609178, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (104, N'Heaven''s Dead', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 276688, 9006158, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (105, N'The Worm', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 237714, 7710800, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (106, N'Man Or Animal', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 233195, 7542942, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (107, N'Yesterday To Tomorrow', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 273763, 8944205, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (108, N'Dandelion', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 278125, 9003592, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (109, N'#1 Zero', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 299102, 9731988, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (110, N'The Curse', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 309786, 10029406, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (111, N'Money', 12, 1, 5, N'Berry Gordy, Jr./Janie Bradford', 147591, 2365897, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (112, N'Long Tall Sally', 12, 1, 5, N'Enotris Johnson/Little Richard/Robert "Bumps" Blackwell', 106396, 1707084, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (113, N'Bad Boy', 12, 1, 5, N'Larry Williams', 116088, 1862126, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (114, N'Twist And Shout', 12, 1, 5, N'Bert Russell/Phil Medley', 161123, 2582553, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (115, N'Please Mr. Postman', 12, 1, 5, N'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett', 137639, 2206986, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (116, N'C''Mon Everybody', 12, 1, 5, N'Eddie Cochran/Jerry Capehart', 140199, 2247846, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (117, N'Rock ''N'' Roll Music', 12, 1, 5, N'Chuck Berry', 141923, 2276788, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (118, N'Slow Down', 12, 1, 5, N'Larry Williams', 163265, 2616981, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (119, N'Roadrunner', 12, 1, 5, N'Bo Diddley', 143595, 2301989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (120, N'Carol', 12, 1, 5, N'Chuck Berry', 143830, 2306019, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (121, N'Good Golly Miss Molly', 12, 1, 5, N'Little Richard', 106266, 1704918, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (122, N'20 Flight Rock', 12, 1, 5, N'Ned Fairchild', 107807, 1299960, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (123, N'Quadrant', 13, 1, 2, N'Billy Cobham', 261851, 8538199, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (124, N'Snoopy''s search-Red baron', 13, 1, 2, N'Billy Cobham', 456071, 15075616, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (125, N'Spanish moss-"A sound portrait"-Spanish moss', 13, 1, 2, N'Billy Cobham', 248084, 8217867, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (126, N'Moon germs', 13, 1, 2, N'Billy Cobham', 294060, 9714812, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (127, N'Stratus', 13, 1, 2, N'Billy Cobham', 582086, 19115680, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (128, N'The pleasant pheasant', 13, 1, 2, N'Billy Cobham', 318066, 10630578, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (129, N'Solo-Panhandler', 13, 1, 2, N'Billy Cobham', 246151, 8230661, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (130, N'Do what cha wanna', 13, 1, 2, N'George Duke', 274155, 9018565, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (131, N'Intro/ Low Down', 14, 1, 3, 323683, 10642901, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (132, N'13 Years Of Grief', 14, 1, 3, 246987, 8137421, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (133, N'Stronger Than Death', 14, 1, 3, 300747, 9869647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (134, N'All For You', 14, 1, 3, 235833, 7726948, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (135, N'Super Terrorizer', 14, 1, 3, 319373, 10513905, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (136, N'Phoney Smile Fake Hellos', 14, 1, 3, 273606, 9011701, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (137, N'Lost My Better Half', 14, 1, 3, 284081, 9355309, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (138, N'Bored To Tears', 14, 1, 3, 247327, 8130090, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (139, N'A.N.D.R.O.T.A.Z.', 14, 1, 3, 266266, 8574746, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (140, N'Born To Booze', 14, 1, 3, 282122, 9257358, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (141, N'World Of Trouble', 14, 1, 3, 359157, 11820932, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (142, N'No More Tears', 14, 1, 3, 555075, 18041629, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (143, N'The Begining... At Last', 14, 1, 3, 365662, 11965109, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (144, N'Heart Of Gold', 15, 1, 3, 194873, 6417460, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (145, N'Snowblind', 15, 1, 3, 420022, 13842549, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (146, N'Like A Bird', 15, 1, 3, 276532, 9115657, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (147, N'Blood In The Wall', 15, 1, 3, 284368, 9359475, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (148, N'The Beginning...At Last', 15, 1, 3, 271960, 8975814, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (149, N'Black Sabbath', 16, 1, 3, 382066, 12440200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (150, N'The Wizard', 16, 1, 3, 264829, 8646737, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (151, N'Behind The Wall Of Sleep', 16, 1, 3, 217573, 7169049, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (152, N'N.I.B.', 16, 1, 3, 368770, 12029390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (153, N'Evil Woman', 16, 1, 3, 204930, 6655170, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (154, N'Sleeping Village', 16, 1, 3, 644571, 21128525, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (155, N'Warning', 16, 1, 3, 212062, 6893363, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (156, N'Wheels Of Confusion / The Straightener', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 494524, 16065830, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (157, N'Tomorrow''s Dream', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 192496, 6252071, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (158, N'Changes', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 286275, 9175517, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (159, N'FX', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 103157, 3331776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (160, N'Supernaut', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 285779, 9245971, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (161, N'Snowblind', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 331676, 10813386, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (162, N'Cornucopia', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 234814, 7653880, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (163, N'Laguna Sunrise', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 173087, 5671374, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (164, N'St. Vitus Dance', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 149655, 4884969, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (165, N'Under The Sun/Every Day Comes and Goes', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 350458, 11360486, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (166, N'Smoked Pork', 18, 1, 4, 47333, 1549074, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (167, N'Body Count''s In The House', 18, 1, 4, 204251, 6715413, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (168, N'Now Sports', 18, 1, 4, 4884, 161266, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (169, N'Body Count', 18, 1, 4, 317936, 10489139, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (170, N'A Statistic', 18, 1, 4, 6373, 211997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (171, N'Bowels Of The Devil', 18, 1, 4, 223216, 7324125, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (172, N'The Real Problem', 18, 1, 4, 11650, 387360, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (173, N'KKK Bitch', 18, 1, 4, 173008, 5709631, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (174, N'D Note', 18, 1, 4, 95738, 3067064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (175, N'Voodoo', 18, 1, 4, 300721, 9875962, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (176, N'The Winner Loses', 18, 1, 4, 392254, 12843821, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (177, N'There Goes The Neighborhood', 18, 1, 4, 350171, 11443471, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (178, N'Oprah', 18, 1, 4, 6635, 224313, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (179, N'Evil Dick', 18, 1, 4, 239020, 7828873, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (180, N'Body Count Anthem', 18, 1, 4, 166426, 5463690, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (181, N'Momma''s Gotta Die Tonight', 18, 1, 4, 371539, 12122946, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (182, N'Freedom Of Speech', 18, 1, 4, 281234, 9337917, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (183, N'King In Crimson', 19, 1, 3, N'Roy Z', 283167, 9218499, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (184, N'Chemical Wedding', 19, 1, 3, N'Roy Z', 246177, 8022764, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (185, N'The Tower', 19, 1, 3, N'Roy Z', 285257, 9435693, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (186, N'Killing Floor', 19, 1, 3, N'Adrian Smith', 269557, 8854240, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (187, N'Book Of Thel', 19, 1, 3, N'Eddie Casillas/Roy Z', 494393, 16034404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (188, N'Gates Of Urizen', 19, 1, 3, N'Roy Z', 265351, 8627004, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (189, N'Jerusalem', 19, 1, 3, N'Roy Z', 402390, 13194463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (190, N'Trupets Of Jericho', 19, 1, 3, N'Roy Z', 359131, 11820908, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (191, N'Machine Men', 19, 1, 3, N'Adrian Smith', 341655, 11138147, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (192, N'The Alchemist', 19, 1, 3, N'Roy Z', 509413, 16545657, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (193, N'Realword', 19, 1, 3, N'Roy Z', 237531, 7802095, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (194, N'First Time I Met The Blues', 20, 1, 6, N'Eurreal Montgomery', 140434, 4604995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (195, N'Let Me Love You Baby', 20, 1, 6, N'Willie Dixon', 175386, 5716994, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (196, N'Stone Crazy', 20, 1, 6, N'Buddy Guy', 433397, 14184984, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (197, N'Pretty Baby', 20, 1, 6, N'Willie Dixon', 237662, 7848282, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (198, N'When My Left Eye Jumps', 20, 1, 6, N'Al Perkins/Willie Dixon', 235311, 7685363, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (199, N'Leave My Girl Alone', 20, 1, 6, N'Buddy Guy', 204721, 6859518, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (200, N'She Suits Me To A Tee', 20, 1, 6, N'Buddy Guy', 136803, 4456321, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (201, N'Keep It To Myself (Aka Keep It To Yourself)', 20, 1, 6, N'Sonny Boy Williamson [I]', 166060, 5487056, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (202, N'My Time After Awhile', 20, 1, 6, N'Robert Geddins/Ron Badger/Sheldon Feinberg', 182491, 6022698, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (203, N'Too Many Ways (Alternate)', 20, 1, 6, N'Willie Dixon', 135053, 4459946, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (204, N'Talkin'' ''Bout Women Obviously', 20, 1, 6, N'Amos Blakemore/Buddy Guy', 589531, 19161377, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (205, N'Jorge Da Capad�cia', 21, 1, 7, N'Jorge Ben', 177397, 5842196, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (206, N'Prenda Minha', 21, 1, 7, N'Tradicional', 99369, 3225364, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (207, N'Medita��o', 21, 1, 7, N'Tom Jobim - Newton Mendo�a', 148793, 4865597, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (208, N'Terra', 21, 1, 7, N'Caetano Veloso', 482429, 15889054, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (209, N'Eclipse Oculto', 21, 1, 7, N'Caetano Veloso', 221936, 7382703, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (210, N'Texto "Verdade Tropical"', 21, 1, 7, N'Caetano Veloso', 84088, 2752161, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (211, N'Bem Devagar', 21, 1, 7, N'Gilberto Gil', 133172, 4333651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (212, N'Dr�o', 21, 1, 7, N'Gilberto Gil', 156264, 5065932, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (213, N'Saudosismo', 21, 1, 7, N'Caetano Veloso', 144326, 4726981, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (214, N'Carolina', 21, 1, 7, N'Chico Buarque', 181812, 5924159, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (215, N'Sozinho', 21, 1, 7, N'Peninha', 190589, 6253200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (216, N'Esse Cara', 21, 1, 7, N'Caetano Veloso', 223111, 7217126, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (217, N'Mel', 21, 1, 7, N'Caetano Veloso - Waly Salom�o', 294765, 9854062, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (218, N'Linha Do Equador', 21, 1, 7, N'Caetano Veloso - Djavan', 299337, 10003747, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (219, N'Odara', 21, 1, 7, N'Caetano Veloso', 141270, 4704104, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (220, N'A Luz De Tieta', 21, 1, 7, N'Caetano Veloso', 251742, 8507446, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (221, N'Atr�s Da Verd-E-Rosa S� N�o Vai Quem J� Morreu', 21, 1, 7, N'David Corr�a - Paulinho Carvalho - Carlos Sena - Bira do Ponto', 307252, 10364247, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (222, N'Vida Boa', 21, 1, 7, N'Fausto Nilo - Armandinho', 281730, 9411272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (223, N'Sozinho (Hitmakers Classic Mix)', 22, 1, 7, 436636, 14462072, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (224, N'Sozinho (Hitmakers Classic Radio Edit)', 22, 1, 7, 195004, 6455134, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (225, N'Sozinho (Ca�drum ''n'' Bass)', 22, 1, 7, 328071, 10975007, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (226, N'Carolina', 23, 1, 7, 163056, 5375395, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (227, N'Essa Mo�a Ta Diferente', 23, 1, 7, 167235, 5568574, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (228, N'Vai Passar', 23, 1, 7, 369763, 12359161, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (229, N'Samba De Orly', 23, 1, 7, 162429, 5431854, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (230, N'Bye, Bye Brasil', 23, 1, 7, 283402, 9499590, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (231, N'Atras Da Porta', 23, 1, 7, 189675, 6132843, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (232, N'Tatuagem', 23, 1, 7, 172120, 5645703, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (233, N'O Que Ser� (� Flor Da Terra)', 23, 1, 7, 167288, 5574848, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (234, N'Morena De Angola', 23, 1, 7, 186801, 6373932, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (235, N'Apesar De Voc�', 23, 1, 7, 234501, 7886937, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (236, N'A Banda', 23, 1, 7, 132493, 4349539, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (237, N'Minha Historia', 23, 1, 7, 182256, 6029673, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (238, N'Com A��car E Com Afeto', 23, 1, 7, 175386, 5846442, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (239, N'Brejo Da Cruz', 23, 1, 7, 214099, 7270749, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (240, N'Meu Caro Amigo', 23, 1, 7, 260257, 8778172, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (241, N'Geni E O Zepelim', 23, 1, 7, 317570, 10342226, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (242, N'Trocando Em Mi�dos', 23, 1, 7, 169717, 5461468, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (243, N'Vai Trabalhar Vagabundo', 23, 1, 7, 139154, 4693941, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (244, N'Gota D''�gua', 23, 1, 7, 153208, 5074189, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (245, N'Constru��o / Deus Lhe Pague', 23, 1, 7, 383059, 12675305, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (246, N'Mateus Enter', 24, 1, 7, N'Chico Science', 33149, 1103013, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (247, N'O Cidad�o Do Mundo', 24, 1, 7, N'Chico Science', 200933, 6724966, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (248, N'Etnia', 24, 1, 7, N'Chico Science', 152555, 5061413, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (249, N'Quilombo Groove [Instrumental]', 24, 1, 7, N'Chico Science', 151823, 5042447, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (250, N'Mac�', 24, 1, 7, N'Chico Science', 249600, 8253934, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (251, N'Um Passeio No Mundo Livre', 24, 1, 7, N'Chico Science', 240091, 7984291, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (252, N'Samba Do Lado', 24, 1, 7, N'Chico Science', 227317, 7541688, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (253, N'Maracatu At�mico', 24, 1, 7, N'Chico Science', 284264, 9670057, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (254, N'O Encontro De Isaac Asimov Com Santos Dumont No C�u', 24, 1, 7, N'Chico Science', 99108, 3240816, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (255, N'Corpo De Lama', 24, 1, 7, N'Chico Science', 232672, 7714954, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (256, N'Sobremesa', 24, 1, 7, N'Chico Science', 240091, 7960868, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (257, N'Manguetown', 24, 1, 7, N'Chico Science', 194560, 6475159, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (258, N'Um Sat�lite Na Cabe�a', 24, 1, 7, N'Chico Science', 126615, 4272821, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (259, N'Bai�o Ambiental [Instrumental]', 24, 1, 7, N'Chico Science', 152659, 5198539, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (260, N'Sangue De Bairro', 24, 1, 7, N'Chico Science', 132231, 4415557, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (261, N'Enquanto O Mundo Explode', 24, 1, 7, N'Chico Science', 88764, 2968650, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (262, N'Interlude Zumbi', 24, 1, 7, N'Chico Science', 71627, 2408550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (263, N'Crian�a De Domingo', 24, 1, 7, N'Chico Science', 208222, 6984813, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (264, N'Amor De Muito', 24, 1, 7, N'Chico Science', 175333, 5881293, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (265, N'Samidarish [Instrumental]', 24, 1, 7, N'Chico Science', 272431, 8911641, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (266, N'Maracatu At�mico [Atomic Version]', 24, 1, 7, N'Chico Science', 273084, 9019677, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (267, N'Maracatu At�mico [Ragga Mix]', 24, 1, 7, N'Chico Science', 210155, 6986421, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (268, N'Maracatu At�mico [Trip Hop]', 24, 1, 7, N'Chico Science', 221492, 7380787, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (269, N'Banditismo Por Uma Questa', 25, 1, 7, 307095, 10251097, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (270, N'Banditismo Por Uma Questa', 25, 1, 7, 243644, 8147224, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (271, N'Rios Pontes & Overdrives', 25, 1, 7, 286720, 9659152, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (272, N'Cidade', 25, 1, 7, 216346, 7241817, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (273, N'Praiera', 25, 1, 7, 183640, 6172781, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (274, N'Samba Makossa', 25, 1, 7, 271856, 9095410, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (275, N'Da Lama Ao Caos', 25, 1, 7, 251559, 8378065, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (276, N'Maracatu De Tiro Certeiro', 25, 1, 7, 88868, 2901397, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (277, N'Salustiano Song', 25, 1, 7, 215405, 7183969, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (278, N'Antene Se', 25, 1, 7, 248372, 8253618, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (279, N'Risoflora', 25, 1, 7, 105586, 3536938, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (280, N'Lixo Do Mangue', 25, 1, 7, 193253, 6534200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (281, N'Computadores Fazem Arte', 25, 1, 7, 404323, 13702771, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (282, N'Girassol', 26, 1, 8, N'Bino Farias/Da Gama/Laz�o/Pedro Luis/Toni Garrido', 249808, 8327676, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (283, N'A Sombra Da Maldade', 26, 1, 8, N'Da Gama/Toni Garrido', 230922, 7697230, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (284, N'Johnny B. Goode', 26, 1, 8, N'Chuck Berry', 254615, 8505985, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (285, N'Soldado Da Paz', 26, 1, 8, N'Herbert Vianna', 194220, 6455080, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (286, N'Firmamento', 26, 1, 8, N'Bino Farias/Da Gama/Henry Lawes/Laz�o/Toni Garrido/Winston Foser-Vers', 222145, 7402658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (287, N'Extra', 26, 1, 8, N'Gilberto Gil', 304352, 10078050, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (288, N'O Er�', 26, 1, 8, N'Bernardo Vilhena/Bino Farias/Da Gama/Laz�o/Toni Garrido', 236382, 7866924, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (289, N'Podes Crer', 26, 1, 8, N'Bino Farias/Da Gama/Laz�o/Toni Garrido', 232280, 7747747, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (290, N'A Estrada', 26, 1, 8, N'Bino Farias/Da Gama/Laz�o/Toni Garrido', 248842, 8275673, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (291, N'Berlim', 26, 1, 8, N'Da Gama/Toni Garrido', 207542, 6920424, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (292, N'J� Foi', 26, 1, 8, N'Bino Farias/Da Gama/Laz�o/Toni Garrido', 221544, 7388466, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (293, N'Onde Voc� Mora?', 26, 1, 8, N'Marisa Monte/Nando Reis', 256026, 8502588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (294, N'Pensamento', 26, 1, 8, N'Bino Farias/Da Gamma/Laz�o/R�s Bernard', 173008, 5748424, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (295, N'Concilia��o', 26, 1, 8, N'Da Gama/Laz�o/R�s Bernardo', 257619, 8552474, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (296, N'Realidade Virtual', 26, 1, 8, N'Bino Farias/Da Gama/Laz�o/Toni Garrido', 195239, 6503533, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (297, N'Mensagem', 26, 1, 8, N'Bino Farias/Da Gama/Laz�o/R�s Bernardo', 225332, 7488852, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (298, N'A Cor Do Sol', 26, 1, 8, N'Bernardo Vilhena/Da Gama/Laz�o', 231392, 7663348, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (299, N'Onde Voc� Mora?', 27, 1, 8, N'Marisa Monte/Nando Reis', 298396, 10056970, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (300, N'O Er�', 27, 1, 8, N'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido', 206942, 6950332, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (301, N'A Sombra Da Maldade', 27, 1, 8, N'Da Gama/Toni Garrido', 285231, 9544383, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (302, N'A Estrada', 27, 1, 8, N'Da Gama/Lazao/Toni Garrido', 282174, 9344477, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (303, N'Falar A Verdade', 27, 1, 8, N'Bino/Da Gama/Ras Bernardo', 244950, 8189093, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (304, N'Firmamento', 27, 1, 8, N'Harry Lawes/Winston Foster-Vers', 225488, 7507866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (305, N'Pensamento', 27, 1, 8, N'Bino/Da Gama/Ras Bernardo', 192391, 6399761, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (306, N'Realidade Virtual', 27, 1, 8, N'Bino/Da Gamma/Lazao/Toni Garrido', 240300, 8069934, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (307, N'Doutor', 27, 1, 8, N'Bino/Da Gama/Toni Garrido', 178155, 5950952, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (308, N'Na Frente Da TV', 27, 1, 8, N'Bino/Da Gama/Lazao/Ras Bernardo', 289750, 9633659, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (309, N'Downtown', 27, 1, 8, N'Cidade Negra', 239725, 8024386, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (310, N'S�bado A Noite', 27, 1, 8, N'Lulu Santos', 267363, 8895073, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (311, N'A Cor Do Sol', 27, 1, 8, N'Bernardo Vilhena/Da Gama/Lazao', 273031, 9142937, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (312, N'Eu Tamb�m Quero Beijar', 27, 1, 8, N'Fausto Nilo/Moraes Moreira/Pepeu Gomes', 211147, 7029400, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (313, N'Noite Do Prazer', 28, 1, 7, 311353, 10309980, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (314, N'� Francesa', 28, 1, 7, 244532, 8150846, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (315, N'Cada Um Cada Um (A Namoradeira)', 28, 1, 7, 253492, 8441034, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (316, N'Linha Do Equador', 28, 1, 7, 244715, 8123466, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (317, N'Amor Demais', 28, 1, 7, 254040, 8420093, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (318, N'F�rias', 28, 1, 7, 264202, 8731945, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (319, N'Gostava Tanto De Voc�', 28, 1, 7, 230452, 7685326, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (320, N'Flor Do Futuro', 28, 1, 7, 275748, 9205941, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (321, N'Felicidade Urgente', 28, 1, 7, 266605, 8873358, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (322, N'Livre Pra Viver', 28, 1, 7, 214595, 7111596, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (323, N'Dig-Dig, Lambe-Lambe (Ao Vivo)', 29, 1, 9, N'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa', 205479, 6892516, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (324, N'Perer�', 29, 1, 9, N'Augusto Concei��o/Chiclete Com Banana', 198661, 6643207, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (325, N'TriboTchan', 29, 1, 9, N'Cal Adan/Paulo Levi', 194194, 6507950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (326, N'Tapa Aqui, Descobre Ali', 29, 1, 9, N'Paulo Levi/W. Rangel', 188630, 6327391, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (327, N'Daniela', 29, 1, 9, N'Jorge Cardoso/Pierre Onasis', 230791, 7748006, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (328, N'Bate Lata', 29, 1, 9, N'F�bio Nolasco/Gal Sales/Ivan Brasil', 206733, 7034985, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (329, N'Garotas do Brasil', 29, 1, 9, N'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maur�cio Vieira', 210155, 6973625, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (330, N'Levada do Amor (Ailoviu)', 29, 1, 9, N'Luiz Wanderley/Paulo Levi', 190093, 6457752, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (331, N'Lavadeira', 29, 1, 9, N'Do Vale, Valverde/Gal Oliveira/Luciano Pinto', 214256, 7254147, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (332, N'Reboladeira', 29, 1, 9, N'Cal Adan/Ferrugem/Julinho Carioca/Tr�ona N� Dhomhnaill', 210599, 7027525, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (333, N'� que Nessa Encarna��o Eu Nasci Manga', 29, 1, 9, N'Lucina/Luli', 196519, 6568081, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (334, N'Reggae Tchan', 29, 1, 9, N'Cal Adan/Del Rey, Tension/Edu Casanova', 206654, 6931328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (335, N'My Love', 29, 1, 9, N'Jauperi/Zeu G�es', 203493, 6772813, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (336, N'Latinha de Cerveja', 29, 1, 9, N'Adriano Bernandes/Edmar Neves', 166687, 5532564, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (337, N'You Shook Me', 30, 1, 1, N'J B Lenoir/Willie Dixon', 315951, 10249958, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (338, N'I Can''t Quit You Baby', 30, 1, 1, N'Willie Dixon', 263836, 8581414, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (339, N'Communication Breakdown', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 192653, 6287257, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (340, N'Dazed and Confused', 30, 1, 1, N'Jimmy Page', 401920, 13035765, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (341, N'The Girl I Love She Got Long Black Wavy Hair', 30, 1, 1, N'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant', 183327, 5995686, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (342, N'What is and Should Never Be', 30, 1, 1, N'Jimmy Page/Robert Plant', 260675, 8497116, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (343, N'Communication Breakdown(2)', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 161149, 5261022, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (344, N'Travelling Riverside Blues', 30, 1, 1, N'Jimmy Page/Robert Johnson/Robert Plant', 312032, 10232581, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (345, N'Whole Lotta Love', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon', 373394, 12258175, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (346, N'Somethin'' Else', 30, 1, 1, N'Bob Cochran/Sharon Sheeley', 127869, 4165650, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (347, N'Communication Breakdown(3)', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 185260, 6041133, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (348, N'I Can''t Quit You Baby(2)', 30, 1, 1, N'Willie Dixon', 380551, 12377615, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (349, N'You Shook Me(2)', 30, 1, 1, N'J B Lenoir/Willie Dixon', 619467, 20138673, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (350, N'How Many More Times', 30, 1, 1, N'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant', 711836, 23092953, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (351, N'Debra Kadabra', 31, 1, 1, N'Frank Zappa', 234553, 7649679, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (352, N'Carolina Hard-Core Ecstasy', 31, 1, 1, N'Frank Zappa', 359680, 11731061, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (353, N'Sam With The Showing Scalp Flat Top', 31, 1, 1, N'Don Van Vliet', 171284, 5572993, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (354, N'Poofter''s Froth Wyoming Plans Ahead', 31, 1, 1, N'Frank Zappa', 183902, 6007019, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (355, N'200 Years Old', 31, 1, 1, N'Frank Zappa', 272561, 8912465, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (356, N'Cucamonga', 31, 1, 1, N'Frank Zappa', 144483, 4728586, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (357, N'Advance Romance', 31, 1, 1, N'Frank Zappa', 677694, 22080051, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (358, N'Man With The Woman Head', 31, 1, 1, N'Don Van Vliet', 88894, 2922044, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (359, N'Muffin Man', 31, 1, 1, N'Frank Zappa', 332878, 10891682, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (360, N'Vai-Vai 2001', 32, 1, 10, 276349, 9402241, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (361, N'X-9 2001', 32, 1, 10, 273920, 9310370, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (362, N'Gavioes 2001', 32, 1, 10, 282723, 9616640, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (363, N'Nene 2001', 32, 1, 10, 284969, 9694508, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (364, N'Rosas De Ouro 2001', 32, 1, 10, 284342, 9721084, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (365, N'Mocidade Alegre 2001', 32, 1, 10, 282488, 9599937, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (366, N'Camisa Verde 2001', 32, 1, 10, 283454, 9633755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (367, N'Leandro De Itaquera 2001', 32, 1, 10, 274808, 9451845, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (368, N'Tucuruvi 2001', 32, 1, 10, 287921, 9883335, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (369, N'Aguia De Ouro 2001', 32, 1, 10, 284160, 9698729, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (370, N'Ipiranga 2001', 32, 1, 10, 248293, 8522591, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (371, N'Morro Da Casa Verde 2001', 32, 1, 10, 284708, 9718778, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (372, N'Perola Negra 2001', 32, 1, 10, 281626, 9619196, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (373, N'Sao Lucas 2001', 32, 1, 10, 296254, 10020122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (374, N'Guanabara', 33, 1, 7, N'Marcos Valle', 247614, 8499591, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (375, N'Mas Que Nada', 33, 1, 7, N'Jorge Ben', 248398, 8255254, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (376, N'V�o Sobre o Horizonte', 33, 1, 7, N'J.r.Bertami/Parana', 225097, 7528825, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (377, N'A Paz', 33, 1, 7, N'Donato/Gilberto Gil', 263183, 8619173, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (378, N'Wave (Vou te Contar)', 33, 1, 7, N'Antonio Carlos Jobim', 271647, 9057557, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (379, N'�gua de Beber', 33, 1, 7, N'Antonio Carlos Jobim/Vinicius de Moraes', 146677, 4866476, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (380, N'Samba da Ben�aco', 33, 1, 7, N'Baden Powell/Vinicius de Moraes', 282200, 9440676, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (381, N'Pode Parar', 33, 1, 7, N'Jorge Vercilo/Jota Maranhao', 179408, 6046678, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (382, N'Menino do Rio', 33, 1, 7, N'Caetano Veloso', 262713, 8737489, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (383, N'Ando Meio Desligado', 33, 1, 7, N'Caetano Veloso', 195813, 6547648, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (384, N'Mist�rio da Ra�a', 33, 1, 7, N'Luiz Melodia/Ricardo Augusto', 184320, 6191752, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (385, N'All Star', 33, 1, 7, N'Nando Reis', 176326, 5891697, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (386, N'Menina Bonita', 33, 1, 7, N'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo', 237087, 7938246, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (387, N'Pescador de Ilus�es', 33, 1, 7, N'Macelo Yuka/O Rappa', 245524, 8267067, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (388, N'� Vontade (Live Mix)', 33, 1, 7, N'Bombom/Ed Motta', 180636, 5972430, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (389, N'Maria Fuma�a', 33, 1, 7, N'Luiz Carlos/Oberdan', 141008, 4743149, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (390, N'Sambassim (dj patife remix)', 33, 1, 7, N'Alba Carvalho/Fernando Porto', 213655, 7243166, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (391, N'Garota De Ipanema', 34, 1, 7, N'V�rios', 279536, 9141343, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (392, N'Tim Tim Por Tim Tim', 34, 1, 7, N'V�rios', 213237, 7143328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (393, N'Tarde Em Itapo�', 34, 1, 7, N'V�rios', 313704, 10344491, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (394, N'Tanto Tempo', 34, 1, 7, N'V�rios', 170292, 5572240, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (395, N'Eu Vim Da Bahia - Live', 34, 1, 7, N'V�rios', 157988, 5115428, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (396, N'Al� Al� Marciano', 34, 1, 7, N'V�rios', 238106, 8013065, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (397, N'Linha Do Horizonte', 34, 1, 7, N'V�rios', 279484, 9275929, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (398, N'Only A Dream In Rio', 34, 1, 7, N'V�rios', 371356, 12192989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (399, N'Abrir A Porta', 34, 1, 7, N'V�rios', 271960, 8991141, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (400, N'Alice', 34, 1, 7, N'V�rios', 165982, 5594341, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (401, N'Momentos Que Marcam', 34, 1, 7, N'V�rios', 280137, 9313740, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (402, N'Um Jantar Pra Dois', 34, 1, 7, N'V�rios', 237714, 7819755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (403, N'Bumbo Da Mangueira', 34, 1, 7, N'V�rios', 270158, 9073350, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (404, N'Mr Funk Samba', 34, 1, 7, N'V�rios', 213890, 7102545, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (405, N'Santo Antonio', 34, 1, 7, N'V�rios', 162716, 5492069, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (406, N'Por Voc�', 34, 1, 7, N'V�rios', 205557, 6792493, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (407, N'S� Tinha De Ser Com Voc�', 34, 1, 7, N'V�rios', 389642, 13085596, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (408, N'Free Speech For The Dumb', 35, 1, 3, N'Molaney/Morris/Roberts/Wainwright', 155428, 5076048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (409, N'It''s Electric', 35, 1, 3, N'Harris/Tatler', 213995, 6978601, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (410, N'Sabbra Cadabra', 35, 1, 3, N'Black Sabbath', 380342, 12418147, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (411, N'Turn The Page', 35, 1, 3, N'Seger', 366524, 11946327, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (412, N'Die Die My Darling', 35, 1, 3, N'Danzig', 149315, 4867667, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (413, N'Loverman', 35, 1, 3, N'Cave', 472764, 15446975, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (414, N'Mercyful Fate', 35, 1, 3, N'Diamond/Shermann', 671712, 21942829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (415, N'Astronomy', 35, 1, 3, N'A.Bouchard/J.Bouchard/S.Pearlman', 397531, 13065612, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (416, N'Whiskey In The Jar', 35, 1, 3, N'Traditional', 305005, 9943129, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (417, N'Tuesday''s Gone', 35, 1, 3, N'Collins/Van Zandt', 545750, 17900787, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (418, N'The More I See', 35, 1, 3, N'Molaney/Morris/Roberts/Wainwright', 287973, 9378873, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (419, N'A Kind Of Magic', 36, 1, 1, N'Roger Taylor', 262608, 8689618, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (420, N'Under Pressure', 36, 1, 1, N'Queen & David Bowie', 236617, 7739042, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (421, N'Radio GA GA', 36, 1, 1, N'Roger Taylor', 343745, 11358573, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (422, N'I Want It All', 36, 1, 1, N'Queen', 241684, 7876564, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (423, N'I Want To Break Free', 36, 1, 1, N'John Deacon', 259108, 8552861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (424, N'Innuendo', 36, 1, 1, N'Queen', 387761, 12664591, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (425, N'It''s A Hard Life', 36, 1, 1, N'Freddie Mercury', 249417, 8112242, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (426, N'Breakthru', 36, 1, 1, N'Queen', 249234, 8150479, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (427, N'Who Wants To Live Forever', 36, 1, 1, N'Brian May', 297691, 9577577, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (428, N'Headlong', 36, 1, 1, N'Queen', 273057, 8921404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (429, N'The Miracle', 36, 1, 1, N'Queen', 294974, 9671923, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (430, N'I''m Going Slightly Mad', 36, 1, 1, N'Queen', 248032, 8192339, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (431, N'The Invisible Man', 36, 1, 1, N'Queen', 238994, 7920353, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (432, N'Hammer To Fall', 36, 1, 1, N'Brian May', 220316, 7255404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (433, N'Friends Will Be Friends', 36, 1, 1, N'Freddie Mercury & John Deacon', 248920, 8114582, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (434, N'The Show Must Go On', 36, 1, 1, N'Queen', 263784, 8526760, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (435, N'One Vision', 36, 1, 1, N'Queen', 242599, 7936928, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (436, N'Detroit Rock City', 37, 1, 1, N'Paul Stanley, B. Ezrin', 218880, 7146372, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (437, N'Black Diamond', 37, 1, 1, N'Paul Stanley', 314148, 10266007, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (438, N'Hard Luck Woman', 37, 1, 1, N'Paul Stanley', 216032, 7109267, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (439, N'Sure Know Something', 37, 1, 1, N'Paul Stanley, Vincent Poncia', 242468, 7939886, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (440, N'Love Gun', 37, 1, 1, N'Paul Stanley', 196257, 6424915, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (441, N'Deuce', 37, 1, 1, N'Gene Simmons', 185077, 6097210, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (442, N'Goin'' Blind', 37, 1, 1, N'Gene Simmons, S. Coronel', 216215, 7045314, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (443, N'Shock Me', 37, 1, 1, N'Ace Frehley', 227291, 7529336, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (444, N'Do You Love Me', 37, 1, 1, N'Paul Stanley, B. Ezrin, K. Fowley', 214987, 6976194, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (445, N'She', 37, 1, 1, N'Gene Simmons, S. Coronel', 248346, 8229734, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (446, N'I Was Made For Loving You', 37, 1, 1, N'Paul Stanley, Vincent Poncia, Desmond Child', 271360, 9018078, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (447, N'Shout It Out Loud', 37, 1, 1, N'Paul Stanley, Gene Simmons, B. Ezrin', 219742, 7194424, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (448, N'God Of Thunder', 37, 1, 1, N'Paul Stanley', 255791, 8309077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (449, N'Calling Dr. Love', 37, 1, 1, N'Gene Simmons', 225332, 7395034, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (450, N'Beth', 37, 1, 1, N'S. Penridge, Bob Ezrin, Peter Criss', 166974, 5360574, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (451, N'Strutter', 37, 1, 1, N'Paul Stanley, Gene Simmons', 192496, 6317021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (452, N'Rock And Roll All Nite', 37, 1, 1, N'Paul Stanley, Gene Simmons', 173609, 5735902, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (453, N'Cold Gin', 37, 1, 1, N'Ace Frehley', 262243, 8609783, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (454, N'Plaster Caster', 37, 1, 1, N'Gene Simmons', 207333, 6801116, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (455, N'God Gave Rock ''n'' Roll To You', 37, 1, 1, N'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin', 320444, 10441590, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (456, N'Heart of the Night', 38, 1, 2, 273737, 9098263, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (457, N'De La Luz', 38, 1, 2, 315219, 10518284, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (458, N'Westwood Moon', 38, 1, 2, 295627, 9765802, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (459, N'Midnight', 38, 1, 2, 266866, 8851060, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (460, N'Playtime', 38, 1, 2, 273580, 9070880, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (461, N'Surrender', 38, 1, 2, 287634, 9422926, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (462, N'Valentino''s', 38, 1, 2, 296124, 9848545, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (463, N'Believe', 38, 1, 2, 310778, 10317185, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (464, N'As We Sleep', 38, 1, 2, 316865, 10429398, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (465, N'When Evening Falls', 38, 1, 2, 298135, 9863942, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (466, N'J Squared', 38, 1, 2, 288757, 9480777, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (467, N'Best Thing', 38, 1, 2, 274259, 9069394, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (468, N'Maria', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 167262, 5484747, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (469, N'Poprocks And Coke', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 158354, 5243078, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (470, N'Longview', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 234083, 7714939, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (471, N'Welcome To Paradise', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 224208, 7406008, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (472, N'Basket Case', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 181629, 5951736, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (473, N'When I Come Around', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 178364, 5839426, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (474, N'She', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 134164, 4425128, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (475, N'J.A.R. (Jason Andrew Relva)', 39, 1, 4, N'Mike Dirnt -Words Green Day -Music', 170997, 5645755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (476, N'Geek Stink Breath', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 135888, 4408983, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (477, N'Brain Stew', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 193149, 6305550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (478, N'Jaded', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 90331, 2950224, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (479, N'Walking Contradiction', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 151170, 4932366, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (480, N'Stuck With Me', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 135523, 4431357, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (481, N'Hitchin'' A Ride', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 171546, 5616891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (482, N'Good Riddance (Time Of Your Life)', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 153600, 5075241, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (483, N'Redundant', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 198164, 6481753, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (484, N'Nice Guys Finish Last', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 170187, 5604618, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (485, N'Minority', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 168803, 5535061, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (486, N'Warning', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 221910, 7343176, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (487, N'Waiting', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 192757, 6316430, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (488, N'Macy''s Day Parade', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 213420, 7075573, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (489, N'Into The Light', 40, 1, 1, N'David Coverdale', 76303, 2452653, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (490, N'River Song', 40, 1, 1, N'David Coverdale', 439510, 14359478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (491, N'She Give Me ...', 40, 1, 1, N'David Coverdale', 252551, 8385478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (492, N'Don''t You Cry', 40, 1, 1, N'David Coverdale', 347036, 11269612, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (493, N'Love Is Blind', 40, 1, 1, N'David Coverdale/Earl Slick', 344999, 11409720, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (494, N'Slave', 40, 1, 1, N'David Coverdale/Earl Slick', 291892, 9425200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (495, N'Cry For Love', 40, 1, 1, N'Bossi/David Coverdale/Earl Slick', 293015, 9567075, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (496, N'Living On Love', 40, 1, 1, N'Bossi/David Coverdale/Earl Slick', 391549, 12785876, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (497, N'Midnight Blue', 40, 1, 1, N'David Coverdale/Earl Slick', 298631, 9750990, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (498, N'Too Many Tears', 40, 1, 1, N'Adrian Vanderberg/David Coverdale', 359497, 11810238, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (499, N'Don''t Lie To Me', 40, 1, 1, N'David Coverdale/Earl Slick', 283585, 9288007, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (500, N'Wherever You May Go', 40, 1, 1, N'David Coverdale', 239699, 7803074, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (501, N'Grito De Alerta', 41, 1, 7, N'Gonzaga Jr.', 202213, 6539422, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (502, N'N�o D� Mais Pra Segurar (Explode Cora��o)', 41, 1, 7, 219768, 7083012, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (503, N'Come�aria Tudo Outra Vez', 41, 1, 7, 196545, 6473395, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (504, N'O Que � O Que � ?', 41, 1, 7, 259291, 8650647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (505, N'Sangrando', 41, 1, 7, N'Gonzaga Jr/Gonzaguinha', 169717, 5494406, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (506, N'Diga L�, Cora��o', 41, 1, 7, 255921, 8280636, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (507, N'Lindo Lago Do Amor', 41, 1, 7, N'Gonzaga Jr.', 249678, 8353191, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (508, N'Eu Apenas Queria Que Vo�� Soubesse', 41, 1, 7, 155637, 5130056, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (509, N'Com A Perna No Mundo', 41, 1, 7, N'Gonzaga Jr.', 227448, 7747108, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (510, N'E Vamos � Luta', 41, 1, 7, 222406, 7585112, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (511, N'Um Homem Tamb�m Chora (Guerreiro Menino)', 41, 1, 7, 207229, 6854219, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (512, N'Comportamento Geral', 41, 1, 7, N'Gonzaga Jr', 181577, 5997444, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (513, N'Ponto De Interroga��o', 41, 1, 7, 180950, 5946265, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (514, N'Espere Por Mim, Morena', 41, 1, 7, N'Gonzaguinha', 207072, 6796523, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (515, N'Meia-Lua Inteira', 23, 1, 7, 222093, 7466288, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (516, N'Voce e Linda', 23, 1, 7, 242938, 8050268, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (517, N'Um Indio', 23, 1, 7, 195944, 6453213, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (518, N'Podres Poderes', 23, 1, 7, 259761, 8622495, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (519, N'Voce Nao Entende Nada - Cotidiano', 23, 1, 7, 421982, 13885612, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (520, N'O Estrangeiro', 23, 1, 7, 374700, 12472890, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (521, N'Menino Do Rio', 23, 1, 7, 147670, 4862277, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (522, N'Qualquer Coisa', 23, 1, 7, 193410, 6372433, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (523, N'Sampa', 23, 1, 7, 185051, 6151831, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (524, N'Queixa', 23, 1, 7, 299676, 9953962, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (525, N'O Leaozinho', 23, 1, 7, 184398, 6098150, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (526, N'Fora Da Ordem', 23, 1, 7, 354011, 11746781, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (527, N'Terra', 23, 1, 7, 401319, 13224055, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (528, N'Alegria, Alegria', 23, 1, 7, 169221, 5497025, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (529, N'Balada Do Louco', 42, 1, 4, N'Arnaldo Baptista - Rita Lee', 241057, 7852328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (530, N'Ando Meio Desligado', 42, 1, 4, N'Arnaldo Baptista - Rita Lee - S�rgio Dias', 287817, 9484504, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (531, N'Top Top', 42, 1, 4, N'Os Mutantes - Arnolpho Lima Filho', 146938, 4875374, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (532, N'Baby', 42, 1, 4, N'Caetano Veloso', 177188, 5798202, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (533, N'A E O Z', 42, 1, 4, N'Mutantes', 518556, 16873005, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (534, N'Panis Et Circenses', 42, 1, 4, N'Caetano Veloso - Gilberto Gil', 125152, 4069688, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (535, N'Ch�o De Estrelas', 42, 1, 4, N'Orestes Barbosa-S�lvio Caldas', 284813, 9433620, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (536, N'Vida De Cachorro', 42, 1, 4, N'Rita Lee - Arnaldo Baptista - S�rgio Baptista', 195186, 6411149, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (537, N'Bat Macumba', 42, 1, 4, N'Gilberto Gil - Caetano Veloso', 187794, 6295223, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (538, N'Desculpe Babe', 42, 1, 4, N'Arnaldo Baptista - Rita Lee', 170422, 5637959, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (539, N'Rita Lee', 42, 1, 4, N'Arnaldo Baptista/Rita Lee/S�rgio Dias', 189257, 6270503, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (540, N'Posso Perder Minha Mulher, Minha M�e, Desde Que Eu Tenha O Rock And Roll', 42, 1, 4, N'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho', 222955, 7346254, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (541, N'Banho De Lua', 42, 1, 4, N'B. de Filippi - F. Migliaci - Vers�o: Fred Jorge', 221831, 7232123, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (542, N'Meu Refrigerador N�o Funciona', 42, 1, 4, N'Arnaldo Baptista - Rita Lee - S�rgio Dias', 382981, 12495906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (543, N'Burn', 43, 1, 1, N'Coverdale/Lord/Paice', 453955, 14775708, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (544, N'Stormbringer', 43, 1, 1, N'Coverdale', 277133, 9050022, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (545, N'Gypsy', 43, 1, 1, N'Coverdale/Hughes/Lord/Paice', 339173, 11046952, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (546, N'Lady Double Dealer', 43, 1, 1, N'Coverdale', 233586, 7608759, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (547, N'Mistreated', 43, 1, 1, N'Coverdale', 758648, 24596235, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (548, N'Smoke On The Water', 43, 1, 1, N'Gillan/Glover/Lord/Paice', 618031, 20103125, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (549, N'You Fool No One', 43, 1, 1, N'Coverdale/Lord/Paice', 804101, 26369966, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (550, N'Custard Pie', 44, 1, 1, N'Jimmy Page/Robert Plant', 253962, 8348257, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (551, N'The Rover', 44, 1, 1, N'Jimmy Page/Robert Plant', 337084, 11011286, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (552, N'In My Time Of Dying', 44, 1, 1, N'John Bonham/John Paul Jones', 666017, 21676727, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (553, N'Houses Of The Holy', 44, 1, 1, N'Jimmy Page/Robert Plant', 242494, 7972503, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (554, N'Trampled Under Foot', 44, 1, 1, N'John Paul Jones', 336692, 11154468, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (555, N'Kashmir', 44, 1, 1, N'John Bonham', 508604, 16686580, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (556, N'Imperatriz', 45, 1, 7, N'Guga/Marquinho Lessa/Tuninho Professor', 339173, 11348710, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (557, N'Beija-Flor', 45, 1, 7, N'Caruso/Cleber/Deo/Osmar', 327000, 10991159, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (558, N'Viradouro', 45, 1, 7, N'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto', 344320, 11484362, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (559, N'Mocidade', 45, 1, 7, N'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do', 261720, 8817757, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (560, N'Unidos Da Tijuca', 45, 1, 7, N'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir', 338834, 11440689, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (561, N'Salgueiro', 45, 1, 7, N'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da', 305920, 10294741, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (562, N'Mangueira', 45, 1, 7, N'Bizuca/Cl�vis P�/Gilson Bernini/Marelo D''Aguia', 298318, 9999506, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (563, N'Uni�o Da Ilha', 45, 1, 7, N'Dito/Djalma Falcao/Ilha, Almir Da/M�rcio Andr�', 330945, 11100945, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (564, N'Grande Rio', 45, 1, 7, N'Carlos Santos/Ciro/Claudio Russo/Z� Luiz', 307252, 10251428, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (565, N'Portela', 45, 1, 7, N'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno', 319608, 10712216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (566, N'Caprichosos', 45, 1, 7, N'Gule/Jorge 101/Lequinho/Luiz Piao', 351320, 11870956, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (567, N'Tradi��o', 45, 1, 7, N'Adalto Magalha/Lourenco', 269165, 9114880, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (568, N'Imp�rio Serrano', 45, 1, 7, N'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao', 334942, 11161196, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (569, N'Tuiuti', 45, 1, 7, N'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som', 259657, 8749492, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (570, N'(Da Le) Yaleo', 46, 1, 1, N'Santana', 353488, 11769507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (571, N'Love Of My Life', 46, 1, 1, N'Carlos Santana & Dave Matthews', 347820, 11634337, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (572, N'Put Your Lights On', 46, 1, 1, N'E. Shrody', 285178, 9394769, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (573, N'Africa Bamba', 46, 1, 1, N'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo', 282827, 9492487, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (574, N'Smooth', 46, 1, 1, N'M. Itaal Shur & Rob Thomas', 298161, 9867455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (575, N'Do You Like The Way', 46, 1, 1, N'L. Hill', 354899, 11741062, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (576, N'Maria Maria', 46, 1, 1, N'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow', 262635, 8664601, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (577, N'Migra', 46, 1, 1, N'R. Taha, Carlos Santana & T. Lindsay', 329064, 10963305, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (578, N'Corazon Espinado', 46, 1, 1, N'F. Olivera', 276114, 9206802, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (579, N'Wishing It Was', 46, 1, 1, N'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita', 292832, 9771348, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (580, N'El Farol', 46, 1, 1, N'Carlos Santana & KC Porter', 291160, 9599353, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (581, N'Primavera', 46, 1, 1, N'KC Porter & JB Eckl', 378618, 12504234, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (582, N'The Calling', 46, 1, 1, N'Carlos Santana & C. Thompson', 747755, 24703884, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (583, N'Solu��o', 47, 1, 7, 247431, 8100449, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (584, N'Manuel', 47, 1, 7, 230269, 7677671, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (585, N'Entre E Ou�a', 47, 1, 7, 286302, 9391004, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (586, N'Um Contrato Com Deus', 47, 1, 7, 202501, 6636465, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (587, N'Um Jantar Pra Dois', 47, 1, 7, 244009, 8021589, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (588, N'Vamos Dan�ar', 47, 1, 7, 226194, 7617432, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (589, N'Um Love', 47, 1, 7, 181603, 6095524, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (590, N'Seis Da Tarde', 47, 1, 7, 238445, 7935898, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (591, N'Baixo Rio', 47, 1, 7, 198008, 6521676, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (592, N'Sombras Do Meu Destino', 47, 1, 7, 280685, 9161539, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (593, N'Do You Have Other Loves?', 47, 1, 7, 295235, 9604273, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (594, N'Agora Que O Dia Acordou', 47, 1, 7, 323213, 10572752, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (595, N'J�!!!', 47, 1, 7, 217782, 7103608, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (596, N'A Rua', 47, 1, 7, 238027, 7930264, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (597, N'Now''s The Time', 48, 1, 2, N'Miles Davis', 197459, 6358868, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (598, N'Jeru', 48, 1, 2, N'Miles Davis', 193410, 6222536, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (599, N'Compulsion', 48, 1, 2, N'Miles Davis', 345025, 11254474, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (600, N'Tempus Fugit', 48, 1, 2, N'Miles Davis', 231784, 7548434, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (601, N'Walkin''', 48, 1, 2, N'Miles Davis', 807392, 26411634, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (602, N'''Round Midnight', 48, 1, 2, N'Miles Davis', 357459, 11590284, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (603, N'Bye Bye Blackbird', 48, 1, 2, N'Miles Davis', 476003, 15549224, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (604, N'New Rhumba', 48, 1, 2, N'Miles Davis', 277968, 9018024, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (605, N'Generique', 48, 1, 2, N'Miles Davis', 168777, 5437017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (606, N'Summertime', 48, 1, 2, N'Miles Davis', 200437, 6461370, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (607, N'So What', 48, 1, 2, N'Miles Davis', 564009, 18360449, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (608, N'The Pan Piper', 48, 1, 2, N'Miles Davis', 233769, 7593713, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (609, N'Someday My Prince Will Come', 48, 1, 2, N'Miles Davis', 544078, 17890773, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (610, N'My Funny Valentine (Live)', 49, 1, 2, N'Miles Davis', 907520, 29416781, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (611, N'E.S.P.', 49, 1, 2, N'Miles Davis', 330684, 11079866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (612, N'Nefertiti', 49, 1, 2, N'Miles Davis', 473495, 15478450, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (613, N'Petits Machins (Little Stuff)', 49, 1, 2, N'Miles Davis', 487392, 16131272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (614, N'Miles Runs The Voodoo Down', 49, 1, 2, N'Miles Davis', 843964, 27967919, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (615, N'Little Church (Live)', 49, 1, 2, N'Miles Davis', 196101, 6273225, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (616, N'Black Satin', 49, 1, 2, N'Miles Davis', 316682, 10529483, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (617, N'Jean Pierre (Live)', 49, 1, 2, N'Miles Davis', 243461, 7955114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (618, N'Time After Time', 49, 1, 2, N'Miles Davis', 220734, 7292197, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (619, N'Portia', 49, 1, 2, N'Miles Davis', 378775, 12520126, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (620, N'Space Truckin''', 50, 1, 1, N'Blackmore/Gillan/Glover/Lord/Paice', 1196094, 39267613, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (621, N'Going Down / Highway Star', 50, 1, 1, N'Gillan/Glover/Lord/Nix - Blackmore/Paice', 913658, 29846063, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (622, N'Mistreated (Alternate Version)', 50, 1, 1, N'Blackmore/Coverdale', 854700, 27775442, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (623, N'You Fool No One (Alternate Version)', 50, 1, 1, N'Blackmore/Coverdale/Lord/Paice', 763924, 24887209, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (624, N'Jeepers Creepers', 51, 1, 2, 185965, 5991903, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (625, N'Blue Rythm Fantasy', 51, 1, 2, 348212, 11204006, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (626, N'Drum Boogie', 51, 1, 2, 191555, 6185636, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (627, N'Let Me Off Uptown', 51, 1, 2, 187637, 6034685, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (628, N'Leave Us Leap', 51, 1, 2, 182726, 5898810, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (629, N'Opus No.1', 51, 1, 2, 179800, 5846041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (630, N'Boogie Blues', 51, 1, 2, 204199, 6603153, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (631, N'How High The Moon', 51, 1, 2, 201430, 6529487, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (632, N'Disc Jockey Jump', 51, 1, 2, 193149, 6260820, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (633, N'Up An'' Atom', 51, 1, 2, 179565, 5822645, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (634, N'Bop Boogie', 51, 1, 2, 189596, 6093124, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (635, N'Lemon Drop', 51, 1, 2, 194089, 6287531, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (636, N'Coronation Drop', 51, 1, 2, 176222, 5899898, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (637, N'Overtime', 51, 1, 2, 163030, 5432236, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (638, N'Imagination', 51, 1, 2, 289306, 9444385, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (639, N'Don''t Take Your Love From Me', 51, 1, 2, 282331, 9244238, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (640, N'Midget', 51, 1, 2, 217025, 7257663, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (641, N'I''m Coming Virginia', 51, 1, 2, 280163, 9209827, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (642, N'Payin'' Them Dues Blues', 51, 1, 2, 198556, 6536918, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (643, N'Jungle Drums', 51, 1, 2, 199627, 6546063, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (644, N'Showcase', 51, 1, 2, 201560, 6697510, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (645, N'Swedish Schnapps', 51, 1, 2, 191268, 6359750, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (646, N'Samba Da B�n��o', 52, 1, 11, 409965, 13490008, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (647, N'Pot-Pourri N.� 4', 52, 1, 11, 392437, 13125975, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (648, N'Onde Anda Voc�', 52, 1, 11, 168437, 5550356, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (649, N'Samba Da Volta', 52, 1, 11, 170631, 5676090, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (650, N'Canto De Ossanha', 52, 1, 11, 204956, 6771624, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (651, N'Pot-Pourri N.� 5', 52, 1, 11, 219898, 7117769, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (652, N'Formosa', 52, 1, 11, 137482, 4560873, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (653, N'Como � Duro Trabalhar', 52, 1, 11, 226168, 7541177, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (654, N'Minha Namorada', 52, 1, 11, 244297, 7927967, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (655, N'Por Que Ser�', 52, 1, 11, 162142, 5371483, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (656, N'Berimbau', 52, 1, 11, 190667, 6335548, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (657, N'Deixa', 52, 1, 11, 179826, 5932799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (658, N'Pot-Pourri N.� 2', 52, 1, 11, 211748, 6878359, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (659, N'Samba Em Prel�dio', 52, 1, 11, 212636, 6923473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (660, N'Carta Ao Tom 74', 52, 1, 11, 162560, 5382354, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (661, N'Linha de Passe (Jo�o Bosco)', 53, 1, 7, 230948, 7902328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (662, N'Pela Luz dos Olhos Teus (Mi�cha e Tom Jobim)', 53, 1, 7, 163970, 5399626, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (663, N'Ch�o de Giz (Elba Ramalho)', 53, 1, 7, 274834, 9016916, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (664, N'Marina (Dorival Caymmi)', 53, 1, 7, 172643, 5523628, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (665, N'Aquarela (Toquinho)', 53, 1, 7, 259944, 8480140, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (666, N'Cora��o do Agreste (Faf� de Bel�m)', 53, 1, 7, 258194, 8380320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (667, N'Dona (Roupa Nova)', 53, 1, 7, 243356, 7991295, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (668, N'Come�aria Tudo Outra Vez (Maria Creuza)', 53, 1, 7, 206994, 6851151, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (669, N'Ca�ador de Mim (S� & Guarabyra)', 53, 1, 7, 238341, 7751360, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (670, N'Romaria (Renato Teixeira)', 53, 1, 7, 244793, 8033885, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (671, N'As Rosas N�o Falam (Beth Carvalho)', 53, 1, 7, 116767, 3836641, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (672, N'Wave (Os Cariocas)', 53, 1, 7, 130063, 4298006, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (673, N'Garota de Ipanema (Dick Farney)', 53, 1, 7, 174367, 5767474, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (674, N'Preciso Apender a Viver S� (Maysa)', 53, 1, 7, 143464, 4642359, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (675, N'Susie Q', 54, 1, 1, N'Hawkins-Lewis-Broadwater', 275565, 9043825, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (676, N'I Put A Spell On You', 54, 1, 1, N'Jay Hawkins', 272091, 8943000, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (677, N'Proud Mary', 54, 1, 1, N'J. C. Fogerty', 189022, 6229590, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (678, N'Bad Moon Rising', 54, 1, 1, N'J. C. Fogerty', 140146, 4609835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (679, N'Lodi', 54, 1, 1, N'J. C. Fogerty', 191451, 6260214, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (680, N'Green River', 54, 1, 1, N'J. C. Fogerty', 154279, 5105874, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (681, N'Commotion', 54, 1, 1, N'J. C. Fogerty', 162899, 5354252, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (682, N'Down On The Corner', 54, 1, 1, N'J. C. Fogerty', 164858, 5521804, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (683, N'Fortunate Son', 54, 1, 1, N'J. C. Fogerty', 140329, 4617559, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (684, N'Travelin'' Band', 54, 1, 1, N'J. C. Fogerty', 129358, 4270414, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (685, N'Who''ll Stop The Rain', 54, 1, 1, N'J. C. Fogerty', 149394, 4899579, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (686, N'Up Around The Bend', 54, 1, 1, N'J. C. Fogerty', 162429, 5368701, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (687, N'Run Through The Jungle', 54, 1, 1, N'J. C. Fogerty', 186044, 6156567, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (688, N'Lookin'' Out My Back Door', 54, 1, 1, N'J. C. Fogerty', 152946, 5034670, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (689, N'Long As I Can See The Light', 54, 1, 1, N'J. C. Fogerty', 213237, 6924024, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (690, N'I Heard It Through The Grapevine', 54, 1, 1, N'Whitfield-Strong', 664894, 21947845, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (691, N'Have You Ever Seen The Rain?', 54, 1, 1, N'J. C. Fogerty', 160052, 5263675, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (692, N'Hey Tonight', 54, 1, 1, N'J. C. Fogerty', 162847, 5343807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (693, N'Sweet Hitch-Hiker', 54, 1, 1, N'J. C. Fogerty', 175490, 5716603, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (694, N'Someday Never Comes', 54, 1, 1, N'J. C. Fogerty', 239360, 7945235, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (695, N'Walking On The Water', 55, 1, 1, N'J.C. Fogerty', 281286, 9302129, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (696, N'Suzie-Q, Pt. 2', 55, 1, 1, N'J.C. Fogerty', 244114, 7986637, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (697, N'Born On The Bayou', 55, 1, 1, N'J.C. Fogerty', 316630, 10361866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (698, N'Good Golly Miss Molly', 55, 1, 1, N'J.C. Fogerty', 163604, 5348175, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (699, N'Tombstone Shadow', 55, 1, 1, N'J.C. Fogerty', 218880, 7209080, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (700, N'Wrote A Song For Everyone', 55, 1, 1, N'J.C. Fogerty', 296385, 9675875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (701, N'Night Time Is The Right Time', 55, 1, 1, N'J.C. Fogerty', 190119, 6211173, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (702, N'Cotton Fields', 55, 1, 1, N'J.C. Fogerty', 178181, 5919224, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (703, N'It Came Out Of The Sky', 55, 1, 1, N'J.C. Fogerty', 176718, 5807474, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (704, N'Don''t Look Now', 55, 1, 1, N'J.C. Fogerty', 131918, 4366455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (705, N'The Midnight Special', 55, 1, 1, N'J.C. Fogerty', 253596, 8297482, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (706, N'Before You Accuse Me', 55, 1, 1, N'J.C. Fogerty', 207804, 6815126, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (707, N'My Baby Left Me', 55, 1, 1, N'J.C. Fogerty', 140460, 4633440, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (708, N'Pagan Baby', 55, 1, 1, N'J.C. Fogerty', 385619, 12713813, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (709, N'(Wish I Could) Hideaway', 55, 1, 1, N'J.C. Fogerty', 228466, 7432978, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (710, N'It''s Just A Thought', 55, 1, 1, N'J.C. Fogerty', 237374, 7778319, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (711, N'Molina', 55, 1, 1, N'J.C. Fogerty', 163239, 5390811, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (712, N'Born To Move', 55, 1, 1, N'J.C. Fogerty', 342804, 11260814, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (713, N'Lookin'' For A Reason', 55, 1, 1, N'J.C. Fogerty', 209789, 6933135, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (714, N'Hello Mary Lou', 55, 1, 1, N'J.C. Fogerty', 132832, 4476563, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (715, N'Gatas Extraordin�rias', 56, 1, 7, 212506, 7095702, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (716, N'Brasil', 56, 1, 7, 243696, 7911683, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (717, N'Eu Sou Neguinha (Ao Vivo)', 56, 1, 7, 251768, 8376000, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (718, N'Gera��o Coca-Cola (Ao Vivo)', 56, 1, 7, 228153, 7573301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (719, N'Lanterna Dos Afogados', 56, 1, 7, 204538, 6714582, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (720, N'Coron� Antonio Bento', 56, 1, 7, 200437, 6713066, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (721, N'Voc� Passa, Eu Acho Gra�a (Ao Vivo)', 56, 1, 7, 206733, 6943576, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (722, N'Meu Mundo Fica Completo (Com Voc�)', 56, 1, 7, 247771, 8322240, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (723, N'1� De Julho', 56, 1, 7, 270262, 9017535, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (724, N'M�sica Urbana 2', 56, 1, 7, 194899, 6383472, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (725, N'Vida Bandida (Ao Vivo)', 56, 1, 7, 192626, 6360785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (726, N'Palavras Ao Vento', 56, 1, 7, 212453, 7048676, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (727, N'N�o Sei O Que Eu Quero Da Vida', 56, 1, 7, 151849, 5024963, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (728, N'Woman Is The Nigger Of The World (Ao Vivo)', 56, 1, 7, 298919, 9724145, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (729, N'Juventude Transviada (Ao Vivo)', 56, 1, 7, 278622, 9183808, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (730, N'Malandragem', 57, 1, 7, 247588, 8165048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (731, N'O Segundo Sol', 57, 1, 7, 252133, 8335629, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (732, N'Smells Like Teen Spirit (Ao Vivo)', 57, 1, 7, 316865, 10384506, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (733, N'E.C.T.', 57, 1, 7, 227500, 7571834, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (734, N'Todo Amor Que Houver Nesta Vida', 57, 1, 7, 227160, 7420347, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (735, N'Metr�. Linha 743', 57, 1, 7, 174654, 5837495, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (736, N'N�s (Ao Vivo)', 57, 1, 7, 193828, 6498661, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (737, N'Na Cad�ncia Do Samba', 57, 1, 7, 196075, 6483952, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (738, N'Admir�vel Gado Novo', 57, 1, 7, 274390, 9144031, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (739, N'Eleanor Rigby', 57, 1, 7, 189466, 6303205, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (740, N'Socorro', 57, 1, 7, 258586, 8549393, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (741, N'Blues Da Piedade', 57, 1, 7, 257123, 8472964, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (742, N'Rubens', 57, 1, 7, 211853, 7026317, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (743, N'N�o Deixe O Samba Morrer - Cassia Eller e Alcione', 57, 1, 7, 268173, 8936345, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (744, N'Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)', 57, 1, 7, 188473, 6195854, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (745, N'Comin'' Home', 58, 1, 1, N'Bolin/Coverdale/Paice', 235781, 7644604, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (746, N'Lady Luck', 58, 1, 1, N'Cook/Coverdale', 168202, 5501379, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (747, N'Gettin'' Tighter', 58, 1, 1, N'Bolin/Hughes', 218044, 7176909, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (748, N'Dealer', 58, 1, 1, N'Bolin/Coverdale', 230922, 7591066, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (749, N'I Need Love', 58, 1, 1, N'Bolin/Coverdale', 263836, 8701064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (750, N'Drifter', 58, 1, 1, N'Bolin/Coverdale', 242834, 8001505, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (751, N'Love Child', 58, 1, 1, N'Bolin/Coverdale', 188160, 6173806, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (752, N'This Time Around / Owed to ''G'' [Instrumental]', 58, 1, 1, N'Bolin/Hughes/Lord', 370102, 11995679, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (753, N'You Keep On Moving', 58, 1, 1, N'Coverdale/Hughes', 319111, 10447868, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (754, N'Speed King', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 264385, 8587578, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (755, N'Bloodsucker', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 256261, 8344405, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (756, N'Child In Time', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 620460, 20230089, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (757, N'Flight Of The Rat', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 478302, 15563967, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (758, N'Into The Fire', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 210259, 6849310, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (759, N'Living Wreck', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 274886, 8993056, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (760, N'Hard Lovin'' Man', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 431203, 13931179, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (761, N'Fireball', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 204721, 6714807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (762, N'No No No', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 414902, 13646606, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (763, N'Strange Kind Of Woman', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 247092, 8072036, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (764, N'Anyone''s Daughter', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 284682, 9354480, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (765, N'The Mule', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 322063, 10638390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (766, N'Fools', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 500427, 16279366, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (767, N'No One Came', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 385880, 12643813, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (768, N'Knocking At Your Back Door', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover', 424829, 13779332, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (769, N'Bad Attitude', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord', 307905, 10035180, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (770, N'Child In Time (Son Of Aleric - Instrumental)', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 602880, 19712753, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (771, N'Nobody''s Home', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 243017, 7929493, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (772, N'Black Night', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 368770, 12058906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (773, N'Perfect Strangers', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover', 321149, 10445353, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (774, N'The Unwritten Law', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice', 295053, 9740361, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (775, N'Call Of The Wild', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord', 293851, 9575295, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (776, N'Hush', 61, 1, 1, N'South', 213054, 6944928, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (777, N'Smoke On The Water', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 464378, 15180849, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (778, N'Space Trucking', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 341185, 11122183, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (779, N'Highway Star', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 368770, 12012452, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (780, N'Maybe I''m A Leo', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 290455, 9502646, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (781, N'Pictures Of Home', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 303777, 9903835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (782, N'Never Before', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 239830, 7832790, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (783, N'Smoke On The Water', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 340871, 11246496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (784, N'Lazy', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 442096, 14397671, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (785, N'Space Truckin''', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 272796, 8981030, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (786, N'Vavoom : Ted The Mechanic', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 257384, 8510755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (787, N'Loosen My Strings', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 359680, 11702232, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (788, N'Soon Forgotten', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 287791, 9401383, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (789, N'Sometimes I Feel Like Screaming', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 451840, 14789410, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (790, N'Cascades : I''m Not Your Lover', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 283689, 9209693, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (791, N'The Aviator', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 320992, 10532053, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (792, N'Rosa''s Cantina', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 312372, 10323804, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (793, N'A Castle Full Of Rascals', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 311693, 10159566, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (794, N'A Touch Away', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 276323, 9098561, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (795, N'Hey Cisco', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 354089, 11600029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (796, N'Somebody Stole My Guitar', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 249443, 8180421, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (797, N'The Purpendicular Waltz', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 283924, 9299131, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (798, N'King Of Dreams', 64, 1, 1, N'Blackmore, Glover, Turner', 328385, 10733847, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (799, N'The Cut Runs Deep', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 342752, 11191650, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (800, N'Fire In The Basement', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 283977, 9267550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (801, N'Truth Hurts', 64, 1, 1, N'Blackmore, Glover, Turner', 314827, 10224612, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (802, N'Breakfast In Bed', 64, 1, 1, N'Blackmore, Glover, Turner', 317126, 10323804, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (803, N'Love Conquers All', 64, 1, 1, N'Blackmore, Glover, Turner', 227186, 7328516, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (804, N'Fortuneteller', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 349335, 11369671, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (805, N'Too Much Is Not Enough', 64, 1, 1, N'Turner, Held, Greenwood', 257724, 8382800, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (806, N'Wicked Ways', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 393691, 12826582, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (807, N'Stormbringer', 65, 1, 1, N'D.Coverdale/R.Blackmore/Ritchie Blackmore', 246413, 8044864, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (808, N'Love Don''t Mean a Thing', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 263862, 8675026, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (809, N'Holy Man', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord', 270236, 8818093, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (810, N'Hold On', 65, 1, 1, N'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord', 306860, 10022428, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (811, N'Lady Double Dealer', 65, 1, 1, N'D.Coverdale/R.Blackmore/Ritchie Blackmore', 201482, 6554330, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (812, N'You Can''t Do it Right (With the One You Love)', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore', 203755, 6709579, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (813, N'High Ball Shooter', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 267833, 8772471, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (814, N'The Gypsy', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 242886, 7946614, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (815, N'Soldier Of Fortune', 65, 1, 1, N'D.Coverdale/R.Blackmore/Ritchie Blackmore', 193750, 6315321, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (816, N'The Battle Rages On', 66, 1, 1, N'ian paice/jon lord', 356963, 11626228, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (817, N'Lick It Up', 66, 1, 1, N'roger glover', 240274, 7792604, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (818, N'Anya', 66, 1, 1, N'jon lord/roger glover', 392437, 12754921, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (819, N'Talk About Love', 66, 1, 1, N'roger glover', 247823, 8072171, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (820, N'Time To Kill', 66, 1, 1, N'roger glover', 351033, 11354742, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (821, N'Ramshackle Man', 66, 1, 1, N'roger glover', 334445, 10874679, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (822, N'A Twist In The Tail', 66, 1, 1, N'roger glover', 257462, 8413103, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (823, N'Nasty Piece Of Work', 66, 1, 1, N'jon lord/roger glover', 276662, 9076997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (824, N'Solitaire', 66, 1, 1, N'roger glover', 282226, 9157021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (825, N'One Man''s Meat', 66, 1, 1, N'roger glover', 278804, 9068960, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (826, N'Pour Some Sugar On Me', 67, 1, 1, 292519, 9518842, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (827, N'Photograph', 67, 1, 1, 248633, 8108507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (828, N'Love Bites', 67, 1, 1, 346853, 11305791, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (829, N'Let''s Get Rocked', 67, 1, 1, 296019, 9724150, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (830, N'Two Steps Behind [Acoustic Version]', 67, 1, 1, 259787, 8523388, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (831, N'Animal', 67, 1, 1, 244741, 7985133, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (832, N'Heaven Is', 67, 1, 1, 214021, 6988128, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (833, N'Rocket', 67, 1, 1, 247248, 8092463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (834, N'When Love & Hate Collide', 67, 1, 1, 257280, 8364633, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (835, N'Action', 67, 1, 1, 220604, 7130830, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (836, N'Make Love Like A Man', 67, 1, 1, 255660, 8309725, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (837, N'Armageddon It', 67, 1, 1, 322455, 10522352, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (838, N'Have You Ever Needed Someone So Bad', 67, 1, 1, 319320, 10400020, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (839, N'Rock Of Ages', 67, 1, 1, 248424, 8150318, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (840, N'Hysteria', 67, 1, 1, 355056, 11622738, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (841, N'Bringin'' On The Heartbreak', 67, 1, 1, 272457, 8853324, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (842, N'Roll Call', 68, 1, 2, N'Jim Beard', 321358, 10653494, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (843, N'Otay', 68, 1, 2, N'John Scofield, Robert Aries, Milton Chambers and Gary Grainger', 423653, 14176083, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (844, N'Groovus Interruptus', 68, 1, 2, N'Jim Beard', 319373, 10602166, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (845, N'Paris On Mine', 68, 1, 2, N'Jon Herington', 368875, 12059507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (846, N'In Time', 68, 1, 2, N'Sylvester Stewart', 368953, 12287103, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (847, N'Plan B', 68, 1, 2, N'Dean Brown, Dennis Chambers & Jim Beard', 272039, 9032315, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (848, N'Outbreak', 68, 1, 2, N'Jim Beard & Jon Herington', 659226, 21685807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (849, N'Baltimore, DC', 68, 1, 2, N'John Scofield', 346932, 11394473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (850, N'Talkin Loud and Saying Nothin', 68, 1, 2, N'James Brown & Bobby Byrd', 360411, 11994859, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (851, N'P�tala', 69, 1, 7, 270080, 8856165, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (852, N'Meu Bem-Querer', 69, 1, 7, 255608, 8330047, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (853, N'Cigano', 69, 1, 7, 304692, 10037362, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (854, N'Boa Noite', 69, 1, 7, 338755, 11283582, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (855, N'Fato Consumado', 69, 1, 7, 211565, 7018586, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (856, N'Faltando Um Peda�o', 69, 1, 7, 267728, 8788760, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (857, N'�libi', 69, 1, 7, 213237, 6928434, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (858, N'Esquinas', 69, 1, 7, 280999, 9096726, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (859, N'Se...', 69, 1, 7, 286432, 9413777, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (860, N'Eu Te Devoro', 69, 1, 7, 311614, 10312775, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (861, N'Lil�s', 69, 1, 7, 274181, 9049542, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (862, N'Acelerou', 69, 1, 7, 284081, 9396942, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (863, N'Um Amor Puro', 69, 1, 7, 327784, 10687311, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (864, N'Samurai', 70, 1, 7, N'Djavan', 330997, 10872787, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (865, N'Nem Um Dia', 70, 1, 7, N'Djavan', 337423, 11181446, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (866, N'Oceano', 70, 1, 7, N'Djavan', 217338, 7026441, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (867, N'A�ai', 70, 1, 7, N'Djavan', 270968, 8893682, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (868, N'Serrado', 70, 1, 7, N'Djavan', 295314, 9842240, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (869, N'Flor De Lis', 70, 1, 7, N'Djavan', 236355, 7801108, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (870, N'Amar � Tudo', 70, 1, 7, N'Djavan', 211617, 7073899, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (871, N'Azul', 70, 1, 7, N'Djavan', 253962, 8381029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (872, N'Seduzir', 70, 1, 7, N'Djavan', 277524, 9163253, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (873, N'A Carta', 70, 1, 7, N'Djavan - Gabriel, O Pensador', 347297, 11493463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (874, N'Sina', 70, 1, 7, N'Djavan', 268173, 8906539, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (875, N'Acelerou', 70, 1, 7, N'Djavan', 284133, 9391439, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (876, N'Um Amor Puro', 70, 1, 7, N'Djavan', 327105, 10664698, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (877, N'O B�bado e a Equilibrista', 71, 1, 7, 223059, 7306143, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (878, N'O Mestre-Sala dos Mares', 71, 1, 7, 186226, 6180414, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (879, N'Atr�s da Porta', 71, 1, 7, 166608, 5432518, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (880, N'Dois Pra L�, Dois Pra C�', 71, 1, 7, 263026, 8684639, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (881, N'Casa no Campo', 71, 1, 7, 170788, 5531841, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (882, N'Romaria', 71, 1, 7, 242834, 7968525, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (883, N'Al�, Al�, Marciano', 71, 1, 7, 241397, 8137254, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (884, N'Me Deixas Louca', 71, 1, 7, 214831, 6888030, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (885, N'Fascina��o', 71, 1, 7, 180793, 5793959, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (886, N'Saudosa Maloca', 71, 1, 7, 278125, 9059416, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (887, N'As Apar�ncias Enganam', 71, 1, 7, 247379, 8014346, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (888, N'Madalena', 71, 1, 7, 157387, 5243721, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (889, N'Maria Rosa', 71, 1, 7, 232803, 7592504, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (890, N'Aprendendo A Jogar', 71, 1, 7, 290664, 9391041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (891, N'Layla', 72, 1, 6, N'Clapton/Gordon', 430733, 14115792, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (892, N'Badge', 72, 1, 6, N'Clapton/Harrison', 163552, 5322942, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (893, N'I Feel Free', 72, 1, 6, N'Bruce/Clapton', 174576, 5725684, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (894, N'Sunshine Of Your Love', 72, 1, 6, N'Bruce/Clapton', 252891, 8225889, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (895, N'Crossroads', 72, 1, 6, N'Clapton/Robert Johnson Arr: Eric Clapton', 253335, 8273540, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (896, N'Strange Brew', 72, 1, 6, N'Clapton/Collins/Pappalardi', 167810, 5489787, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (897, N'White Room', 72, 1, 6, N'Bruce/Clapton', 301583, 9872606, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (898, N'Bell Bottom Blues', 72, 1, 6, N'Clapton', 304744, 9946681, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (899, N'Cocaine', 72, 1, 6, N'Cale/Clapton', 215928, 7138399, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (900, N'I Shot The Sheriff', 72, 1, 6, N'Marley', 263862, 8738973, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (901, N'After Midnight', 72, 1, 6, N'Clapton/J. J. Cale', 191320, 6460941, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (902, N'Swing Low Sweet Chariot', 72, 1, 6, N'Clapton/Trad. Arr. Clapton', 208143, 6896288, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (903, N'Lay Down Sally', 72, 1, 6, N'Clapton/Levy', 231732, 7774207, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (904, N'Knockin On Heavens Door', 72, 1, 6, N'Clapton/Dylan', 264411, 8758819, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (905, N'Wonderful Tonight', 72, 1, 6, N'Clapton', 221387, 7326923, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (906, N'Let It Grow', 72, 1, 6, N'Clapton', 297064, 9742568, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (907, N'Promises', 72, 1, 6, N'Clapton/F.eldman/Linn', 180401, 6006154, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (908, N'I Can''t Stand It', 72, 1, 6, N'Clapton', 249730, 8271980, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (909, N'Signe', 73, 1, 6, N'Eric Clapton', 193515, 6475042, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (910, N'Before You Accuse Me', 73, 1, 6, N'Eugene McDaniel', 224339, 7456807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (911, N'Hey Hey', 73, 1, 6, N'Big Bill Broonzy', 196466, 6543487, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (912, N'Tears In Heaven', 73, 1, 6, N'Eric Clapton, Will Jennings', 274729, 9032835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (913, N'Lonely Stranger', 73, 1, 6, N'Eric Clapton', 328724, 10894406, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (914, N'Nobody Knows You When You''re Down & Out', 73, 1, 6, N'Jimmy Cox', 231836, 7669922, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (915, N'Layla', 73, 1, 6, N'Eric Clapton, Jim Gordon', 285387, 9490542, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (916, N'Running On Faith', 73, 1, 6, N'Jerry Lynn Williams', 378984, 12536275, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (917, N'Walkin'' Blues', 73, 1, 6, N'Robert Johnson', 226429, 7435192, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (918, N'Alberta', 73, 1, 6, N'Traditional', 222406, 7412975, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (919, N'San Francisco Bay Blues', 73, 1, 6, N'Jesse Fuller', 203363, 6724021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (920, N'Malted Milk', 73, 1, 6, N'Robert Johnson', 216528, 7096781, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (921, N'Old Love', 73, 1, 6, N'Eric Clapton, Robert Cray', 472920, 15780747, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (922, N'Rollin'' And Tumblin''', 73, 1, 6, N'McKinley Morgenfield (Muddy Waters)', 251768, 8407355, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (923, N'Collision', 74, 1, 4, N'Jon Hudson/Mike Patton', 204303, 6656596, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (924, N'Stripsearch', 74, 1, 4, N'Jon Hudson/Mike Bordin/Mike Patton', 270106, 8861119, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (925, N'Last Cup Of Sorrow', 74, 1, 4, N'Bill Gould/Mike Patton', 251663, 8221247, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (926, N'Naked In Front Of The Computer', 74, 1, 4, N'Mike Patton', 128757, 4225077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (927, N'Helpless', 74, 1, 4, N'Bill Gould/Mike Bordin/Mike Patton', 326217, 10753135, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (928, N'Mouth To Mouth', 74, 1, 4, N'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton', 228493, 7505887, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (929, N'Ashes To Ashes', 74, 1, 4, N'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum', 217391, 7093746, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (930, N'She Loves Me Not', 74, 1, 4, N'Bill Gould/Mike Bordin/Mike Patton', 209867, 6887544, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (931, N'Got That Feeling', 74, 1, 4, N'Mike Patton', 140852, 4643227, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (932, N'Paths Of Glory', 74, 1, 4, N'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum', 257253, 8436300, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (933, N'Home Sick Home', 74, 1, 4, N'Mike Patton', 119040, 3898976, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (934, N'Pristina', 74, 1, 4, N'Bill Gould/Mike Patton', 232698, 7497361, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (935, N'Land Of Sunshine', 75, 1, 4, 223921, 7353567, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (936, N'Caffeine', 75, 1, 4, 267937, 8747367, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (937, N'Midlife Crisis', 75, 1, 4, 263235, 8628841, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (938, N'RV', 75, 1, 4, 223242, 7288162, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (939, N'Smaller And Smaller', 75, 1, 4, 310831, 10180103, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (940, N'Everything''s Ruined', 75, 1, 4, 273658, 9010917, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (941, N'Malpractice', 75, 1, 4, 241371, 7900683, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (942, N'Kindergarten', 75, 1, 4, 270680, 8853647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (943, N'Be Aggressive', 75, 1, 4, 222432, 7298027, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (944, N'A Small Victory', 75, 1, 4, 297168, 9733572, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (945, N'Crack Hitler', 75, 1, 4, 279144, 9162435, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (946, N'Jizzlobber', 75, 1, 4, 398341, 12926140, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (947, N'Midnight Cowboy', 75, 1, 4, 251924, 8242626, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (948, N'Easy', 75, 1, 4, 185835, 6073008, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (949, N'Get Out', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 137482, 4524972, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (950, N'Ricochet', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 269400, 8808812, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (951, N'Evidence', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 293590, 9626136, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (952, N'The Gentle Art Of Making Enemies', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 209319, 6908609, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (953, N'Star A.D.', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 203807, 6747658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (954, N'Cuckoo For Caca', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 222902, 7388369, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (955, N'Caralho Voador', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 242102, 8029054, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (956, N'Ugly In The Morning', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 186435, 6224997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (957, N'Digging The Grave', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 185129, 6109259, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (958, N'Take This Bottle', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 298997, 9779971, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (959, N'King For A Day', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 395859, 13163733, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (960, N'What A Day', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 158275, 5203430, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (961, N'The Last To Know', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 267833, 8736776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (962, N'Just A Man', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 336666, 11031254, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (963, N'Absolute Zero', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 181995, 5929427, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (964, N'From Out Of Nowhere', 77, 1, 4, N'Faith No More', 202527, 6587802, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (965, N'Epic', 77, 1, 4, N'Faith No More', 294008, 9631296, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (966, N'Falling To Pieces', 77, 1, 4, N'Faith No More', 316055, 10333123, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (967, N'Surprise! You''re Dead!', 77, 1, 4, N'Faith No More', 147226, 4823036, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (968, N'Zombie Eaters', 77, 1, 4, N'Faith No More', 360881, 11835367, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (969, N'The Real Thing', 77, 1, 4, N'Faith No More', 493635, 16233080, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (970, N'Underwater Love', 77, 1, 4, N'Faith No More', 231993, 7634387, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (971, N'The Morning After', 77, 1, 4, N'Faith No More', 223764, 7355898, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (972, N'Woodpecker From Mars', 77, 1, 4, N'Faith No More', 340532, 11174250, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (973, N'War Pigs', 77, 1, 4, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 464770, 15267802, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (974, N'Edge Of The World', 77, 1, 4, N'Faith No More', 250357, 8235607, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (975, N'Deixa Entrar', 78, 1, 7, 33619, 1095012, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (976, N'Falamansa Song', 78, 1, 7, 237165, 7921313, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (977, N'Xote Dos Milagres', 78, 1, 7, 269557, 8897778, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (978, N'Rindo � Toa', 78, 1, 7, 222066, 7365321, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (979, N'Confid�ncia', 78, 1, 7, 222197, 7460829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (980, N'Forr� De T�quio', 78, 1, 7, 169273, 5588756, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (981, N'Zeca Violeiro', 78, 1, 7, 143673, 4781949, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (982, N'Avisa', 78, 1, 7, 355030, 11844320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (983, N'Principiando/Decolagem', 78, 1, 7, 116767, 3923789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (984, N'Asas', 78, 1, 7, 231915, 7711669, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (985, N'Medo De Escuro', 78, 1, 7, 213760, 7056323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (986, N'Ora��o', 78, 1, 7, 271072, 9003882, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (987, N'Minha Gata', 78, 1, 7, 181838, 6039502, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (988, N'Desaforo', 78, 1, 7, 174524, 5853561, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (989, N'In Your Honor', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 230191, 7468463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (990, N'No Way Back', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 196675, 6421400, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (991, N'Best Of You', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 255712, 8363467, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (992, N'DOA', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 252186, 8232342, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (993, N'Hell', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 117080, 3819255, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (994, N'The Last Song', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 199523, 6496742, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (995, N'Free Me', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 278700, 9109340, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (996, N'Resolve', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 288731, 9416186, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (997, N'The Deepest Blues Are Black', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 238419, 7735473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (998, N'End Over End', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 352078, 11395296, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (999, N'Still', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 313182, 10323157, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1000, N'What If I Do?', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 302994, 9929799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1001, N'Miracle', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 209684, 6877994, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1002, N'Another Round', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 265848, 8752670, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1003, N'Friend Of A Friend', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 193280, 6355088, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1004, N'Over And Out', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 316264, 10428382, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1005, N'On The Mend', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 271908, 9071997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1006, N'Virginia Moon', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 229198, 7494639, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1007, N'Cold Day In The Sun', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 200724, 6596617, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1008, N'Razor', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 293276, 9721373, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1009, N'All My Life', 81, 1, 4, N'Foo Fighters', 263653, 8665545, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1010, N'Low', 81, 1, 4, N'Foo Fighters', 268120, 8847196, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1011, N'Have It All', 81, 1, 4, N'Foo Fighters', 298057, 9729292, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1012, N'Times Like These', 81, 1, 4, N'Foo Fighters', 266370, 8624691, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1013, N'Disenchanted Lullaby', 81, 1, 4, N'Foo Fighters', 273528, 8919111, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1014, N'Tired Of You', 81, 1, 4, N'Foo Fighters', 311353, 10094743, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1015, N'Halo', 81, 1, 4, N'Foo Fighters', 306442, 10026371, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1016, N'Lonely As You', 81, 1, 4, N'Foo Fighters', 277185, 9022628, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1017, N'Overdrive', 81, 1, 4, N'Foo Fighters', 270550, 8793187, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1018, N'Burn Away', 81, 1, 4, N'Foo Fighters', 298396, 9678073, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1019, N'Come Back', 81, 1, 4, N'Foo Fighters', 469968, 15371980, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1020, N'Doll', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 83487, 2702572, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1021, N'Monkey Wrench', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 231523, 7527531, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1022, N'Hey, Johnny Park!', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 248528, 8079480, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1023, N'My Poor Brain', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 213446, 6973746, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1024, N'Wind Up', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 152163, 4950667, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1025, N'Up In Arms', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 135732, 4406227, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1026, N'My Hero', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 260101, 8472365, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1027, N'See You', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 146782, 4888173, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1028, N'Enough Space', 82, 1, 1, N'Dave Grohl', 157387, 5169280, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1029, N'February Stars', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 289306, 9344875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1030, N'Everlong', 82, 1, 1, N'Dave Grohl', 250749, 8270816, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1031, N'Walking After You', 82, 1, 1, N'Dave Grohl', 303856, 9898992, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1032, N'New Way Home', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 342230, 11205664, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1033, N'My Way', 83, 1, 12, N'claude fran�ois/gilles thibault/jacques revaux/paul anka', 275879, 8928684, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1034, N'Strangers In The Night', 83, 1, 12, N'berthold kaempfert/charles singleton/eddie snyder', 155794, 5055295, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1035, N'New York, New York', 83, 1, 12, N'fred ebb/john kander', 206001, 6707993, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1036, N'I Get A Kick Out Of You', 83, 1, 12, N'cole porter', 194429, 6332441, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1037, N'Something Stupid', 83, 1, 12, N'carson c. parks', 158615, 5210643, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1038, N'Moon River', 83, 1, 12, N'henry mancini/johnny mercer', 198922, 6395808, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1039, N'What Now My Love', 83, 1, 12, N'carl sigman/gilbert becaud/pierre leroyer', 149995, 4913383, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1040, N'Summer Love', 83, 1, 12, N'hans bradtke/heinz meier/johnny mercer', 174994, 5693242, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1041, N'For Once In My Life', 83, 1, 12, N'orlando murden/ronald miller', 171154, 5557537, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1042, N'Love And Marriage', 83, 1, 12, N'jimmy van heusen/sammy cahn', 89730, 2930596, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1043, N'They Can''t Take That Away From Me', 83, 1, 12, N'george gershwin/ira gershwin', 161227, 5240043, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1044, N'My Kind Of Town', 83, 1, 12, N'jimmy van heusen/sammy cahn', 188499, 6119915, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1045, N'Fly Me To The Moon', 83, 1, 12, N'bart howard', 149263, 4856954, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1046, N'I''ve Got You Under My Skin', 83, 1, 12, N'cole porter', 210808, 6883787, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1047, N'The Best Is Yet To Come', 83, 1, 12, N'carolyn leigh/cy coleman', 173583, 5633730, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1048, N'It Was A Very Good Year', 83, 1, 12, N'ervin drake', 266605, 8554066, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1049, N'Come Fly With Me', 83, 1, 12, N'jimmy van heusen/sammy cahn', 190458, 6231029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1050, N'That''s Life', 83, 1, 12, N'dean kay thompson/kelly gordon', 187010, 6095727, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1051, N'The Girl From Ipanema', 83, 1, 12, N'antonio carlos jobim/norman gimbel/vinicius de moraes', 193750, 6410674, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1052, N'The Lady Is A Tramp', 83, 1, 12, N'lorenz hart/richard rodgers', 184111, 5987372, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1053, N'Bad, Bad Leroy Brown', 83, 1, 12, N'jim croce', 169900, 5548581, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1054, N'Mack The Knife', 83, 1, 12, N'bert brecht/kurt weill/marc blitzstein', 292075, 9541052, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1055, N'Loves Been Good To Me', 83, 1, 12, N'rod mckuen', 203964, 6645365, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1056, N'L.A. Is My Lady', 83, 1, 12, N'alan bergman/marilyn bergman/peggy lipton jones/quincy jones', 193175, 6378511, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1057, N'Entrando Na Sua (Intro)', 84, 1, 7, 179252, 5840027, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1058, N'Nervosa', 84, 1, 7, 229537, 7680421, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1059, N'Funk De Bamba (Com Fernanda Abreu)', 84, 1, 7, 237191, 7866165, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1060, N'Call Me At Cleo�s', 84, 1, 7, 236617, 7920510, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1061, N'Olhos Coloridos (Com Sandra De S�)', 84, 1, 7, 321332, 10567404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1062, N'Zamba��o', 84, 1, 7, 301113, 10030604, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1063, N'Funk Hum', 84, 1, 7, 244453, 8084475, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1064, N'Forty Days (Com DJ Hum)', 84, 1, 7, 221727, 7347172, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1065, N'Balada Da Paula', 84, 1, 7, N'Emerson Villani', 322821, 10603717, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1066, N'Dujji', 84, 1, 7, 324597, 10833935, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1067, N'Meu Guarda-Chuva', 84, 1, 7, 248528, 8216625, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1068, N'Mot�is', 84, 1, 7, 213498, 7041077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1069, N'Whistle Stop', 84, 1, 7, 526132, 17533664, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1070, N'16 Toneladas', 84, 1, 7, 191634, 6390885, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1071, N'Divirta-Se (Saindo Da Sua)', 84, 1, 7, 74919, 2439206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1072, N'Forty Days Instrumental', 84, 1, 7, 292493, 9584317, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1073, N'�ia Eu Aqui De Novo', 85, 1, 10, 219454, 7469735, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1074, N'Bai�o Da Penha', 85, 1, 10, 247928, 8393047, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1075, N'Esperando Na Janela', 85, 1, 10, N'Manuca/Raimundinho DoAcordion/Targino Godim', 261041, 8660617, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1076, N'Juazeiro', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 222275, 7349779, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1077, N'�ltimo Pau-De-Arara', 85, 1, 10, N'Corumb�/Jos� Gumar�es/Venancio', 200437, 6638563, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1078, N'Asa Branca', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 217051, 7387183, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1079, N'Qui Nem Jil�', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 204695, 6937472, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1080, N'Assum Preto', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 199653, 6625000, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1081, N'Pau-De-Arara', 85, 1, 10, N'Guio De Morais E Seus "Parentes"/Luiz Gonzaga', 191660, 6340649, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1082, N'A Volta Da Asa Branca', 85, 1, 10, N'Luiz Gonzaga/Z� Dantas', 271020, 9098093, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1083, N'O Amor Daqui De Casa', 85, 1, 10, N'Gilberto Gil', 148636, 4888292, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1084, N'As Pegadas Do Amor', 85, 1, 10, N'Gilberto Gil', 209136, 6899062, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1085, N'Lamento Sertanejo', 85, 1, 10, N'Dominguinhos/Gilberto Gil', 260963, 8518290, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1086, N'Casinha Feliz', 85, 1, 10, N'Gilberto Gil', 32287, 1039615, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1087, N'Introdu��o (Live)', 86, 1, 7, 154096, 5227579, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1088, N'Palco (Live)', 86, 1, 7, 238315, 8026622, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1089, N'Is This Love (Live)', 86, 1, 7, 295262, 9819759, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1090, N'Stir It Up (Live)', 86, 1, 7, 282409, 9594738, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1091, N'Refavela (Live)', 86, 1, 7, 236695, 7985305, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1092, N'Vendedor De Caranguejo (Live)', 86, 1, 7, 248842, 8358128, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1093, N'Quanta (Live)', 86, 1, 7, 357485, 11774865, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1094, N'Estrela (Live)', 86, 1, 7, 285309, 9436411, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1095, N'Pela Internet (Live)', 86, 1, 7, 263471, 8804401, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1096, N'C�rebro Eletr�nico (Live)', 86, 1, 7, 231627, 7805352, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1097, N'Opachor� (Live)', 86, 1, 7, 259526, 8596384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1098, N'Copacabana (Live)', 86, 1, 7, 289671, 9673672, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1099, N'A Novidade (Live)', 86, 1, 7, 316969, 10508000, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1100, N'Ghandi (Live)', 86, 1, 7, 222458, 7481950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1101, N'De Ouro E Marfim (Live)', 86, 1, 7, 234971, 7838453, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1102, N'Doce De Carnaval (Candy All)', 87, 1, 2, 356101, 11998470, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1103, N'Lamento De Carnaval', 87, 1, 2, 294530, 9819276, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1104, N'Pretinha', 87, 1, 2, 265273, 8914579, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1105, N'A Novidade', 73, 1, 7, N'Gilberto Gil', 324780, 10765600, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1106, N'Tenho Sede', 73, 1, 7, N'Gilberto Gil', 261616, 8708114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1107, N'Refazenda', 73, 1, 7, N'Gilberto Gil', 218305, 7237784, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1108, N'Realce', 73, 1, 7, N'Gilberto Gil', 264489, 8847612, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1109, N'Esot�rico', 73, 1, 7, N'Gilberto Gil', 317779, 10530533, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1110, N'Dr�o', 73, 1, 7, N'Gilberto Gil', 301453, 9931950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1111, N'A Paz', 73, 1, 7, N'Gilberto Gil', 293093, 9593064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1112, N'Beira Mar', 73, 1, 7, N'Gilberto Gil', 295444, 9597994, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1113, N'Sampa', 73, 1, 7, N'Gilberto Gil', 225697, 7469905, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1114, N'Parabolicamar�', 73, 1, 7, N'Gilberto Gil', 284943, 9543435, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1115, N'Tempo Rei', 73, 1, 7, N'Gilberto Gil', 302733, 10019269, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1116, N'Expresso 2222', 73, 1, 7, N'Gilberto Gil', 284760, 9690577, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1117, N'Aquele Abra�o', 73, 1, 7, N'Gilberto Gil', 263993, 8805003, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1118, N'Palco', 73, 1, 7, N'Gilberto Gil', 270550, 9049901, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1119, N'Toda Menina Baiana', 73, 1, 7, N'Gilberto Gil', 278177, 9351000, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1120, N'S�tio Do Pica-Pau Amarelo', 73, 1, 7, N'Gilberto Gil', 218070, 7217955, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1121, N'Straight Out Of Line', 88, 1, 3, N'Sully Erna', 259213, 8511877, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1122, N'Faceless', 88, 1, 3, N'Sully Erna', 216006, 6992417, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1123, N'Changes', 88, 1, 3, N'Sully Erna; Tony Rombola', 260022, 8455835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1124, N'Make Me Believe', 88, 1, 3, N'Sully Erna', 248607, 8075050, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1125, N'I Stand Alone', 88, 1, 3, N'Sully Erna', 246125, 8017041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1126, N'Re-Align', 88, 1, 3, N'Sully Erna', 260884, 8513891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1127, N'I Fucking Hate You', 88, 1, 3, N'Sully Erna', 247170, 8059642, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1128, N'Releasing The Demons', 88, 1, 3, N'Sully Erna', 252760, 8276372, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1129, N'Dead And Broken', 88, 1, 3, N'Sully Erna', 251454, 8206611, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1130, N'I Am', 88, 1, 3, N'Sully Erna', 239516, 7803270, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1131, N'The Awakening', 88, 1, 3, N'Sully Erna', 89547, 3035251, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1132, N'Serenity', 88, 1, 3, N'Sully Erna; Tony Rombola', 274834, 9172976, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1133, N'American Idiot', 89, 1, 4, N'Billie Joe Armstrong, Mike Dirnt, Tr� Cool', 174419, 5705793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1134, N'Jesus Of Suburbia / City Of The Damned / I Don''t Care / Dearly Beloved / Tales Of Another Broken Home', 89, 1, 4, N'Billie Joe Armstrong/Green Day', 548336, 17875209, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1135, N'Holiday', 89, 1, 4, N'Billie Joe Armstrong, Mike Dirnt, Tr� Cool', 232724, 7599602, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1136, N'Boulevard Of Broken Dreams', 89, 1, 4, N'Mike Dint, Billie Joe, Tr� Cool', 260858, 8485122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1137, N'Are We The Waiting', 89, 1, 4, N'Green Day', 163004, 5328329, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1138, N'St. Jimmy', 89, 1, 4, N'Green Day', 175307, 5716589, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1139, N'Give Me Novacaine', 89, 1, 4, N'Green Day', 205871, 6752485, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1140, N'She''s A Rebel', 89, 1, 4, N'Green Day', 120528, 3901226, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1141, N'Extraordinary Girl', 89, 1, 4, N'Green Day', 214021, 6975177, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1142, N'Letterbomb', 89, 1, 4, N'Green Day', 246151, 7980902, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1143, N'Wake Me Up When September Ends', 89, 1, 4, N'Mike Dint, Billie Joe, Tr� Cool', 285753, 9325597, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1144, N'Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We''re Coming Home Again', 89, 1, 4, N'Mike Dirnt/Tr� Cool', 558602, 18139840, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1145, N'Whatsername', 89, 1, 4, N'Green Day', 252316, 8244843, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1146, N'Welcome to the Jungle', 90, 2, 1, 273552, 4538451, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1147, N'It''s So Easy', 90, 2, 1, 202824, 3394019, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1148, N'Nightrain', 90, 2, 1, 268537, 4457283, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1149, N'Out Ta Get Me', 90, 2, 1, 263893, 4382147, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1150, N'Mr. Brownstone', 90, 2, 1, 228924, 3816323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1151, N'Paradise City', 90, 2, 1, 406347, 6687123, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1152, N'My Michelle', 90, 2, 1, 219961, 3671299, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1153, N'Think About You', 90, 2, 1, 231640, 3860275, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1154, N'Sweet Child O'' Mine', 90, 2, 1, 356424, 5879347, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1155, N'You''re Crazy', 90, 2, 1, 197135, 3301971, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1156, N'Anything Goes', 90, 2, 1, 206400, 3451891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1157, N'Rocket Queen', 90, 2, 1, 375349, 6185539, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1158, N'Right Next Door to Hell', 91, 2, 1, 182321, 3175950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1159, N'Dust N'' Bones', 91, 2, 1, 298374, 5053742, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1160, N'Live and Let Die', 91, 2, 1, 184016, 3203390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1161, N'Don''t Cry (Original)', 91, 2, 1, 284744, 4833259, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1162, N'Perfect Crime', 91, 2, 1, 143637, 2550030, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1163, N'You Ain''t the First', 91, 2, 1, 156268, 2754414, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1164, N'Bad Obsession', 91, 2, 1, 328282, 5537678, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1165, N'Back off Bitch', 91, 2, 1, 303436, 5135662, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1166, N'Double Talkin'' Jive', 91, 2, 1, 203637, 3520862, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1167, N'November Rain', 91, 2, 1, 537540, 8923566, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1168, N'The Garden', 91, 2, 1, 322175, 5438862, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1169, N'Garden of Eden', 91, 2, 1, 161539, 2839694, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1170, N'Don''t Damn Me', 91, 2, 1, 318901, 5385886, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1171, N'Bad Apples', 91, 2, 1, 268351, 4567966, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1172, N'Dead Horse', 91, 2, 1, 257600, 4394014, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1173, N'Coma', 91, 2, 1, 616511, 10201342, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1174, N'Civil War', 92, 1, 3, N'Duff McKagan/Slash/W. Axl Rose', 461165, 15046579, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1175, N'14 Years', 92, 1, 3, N'Izzy Stradlin''/W. Axl Rose', 261355, 8543664, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1176, N'Yesterdays', 92, 1, 3, N'Billy/Del James/W. Axl Rose/West Arkeen', 196205, 6398489, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1177, N'Knockin'' On Heaven''s Door', 92, 1, 3, N'Bob Dylan', 336457, 10986716, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1178, N'Get In The Ring', 92, 1, 3, N'Duff McKagan/Slash/W. Axl Rose', 341054, 11134105, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1179, N'Shotgun Blues', 92, 1, 3, N'W. Axl Rose', 203206, 6623916, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1180, N'Breakdown', 92, 1, 3, N'W. Axl Rose', 424960, 13978284, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1181, N'Pretty Tied Up', 92, 1, 3, N'Izzy Stradlin''', 287477, 9408754, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1182, N'Locomotive', 92, 1, 3, N'Slash/W. Axl Rose', 522396, 17236842, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1183, N'So Fine', 92, 1, 3, N'Duff McKagan', 246491, 8039484, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1184, N'Estranged', 92, 1, 3, N'W. Axl Rose', 563800, 18343787, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1185, N'You Could Be Mine', 92, 1, 3, N'Izzy Stradlin''/W. Axl Rose', 343875, 11207355, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1186, N'Don''t Cry', 92, 1, 3, N'Izzy Stradlin''/W. Axl Rose', 284238, 9222458, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1187, N'My World', 92, 1, 3, N'W. Axl Rose', 84532, 2764045, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1188, N'Colibri', 93, 1, 2, N'Richard Bull', 361012, 12055329, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1189, N'Love Is The Colour', 93, 1, 2, N'R. Carless', 251585, 8419165, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1190, N'Magnetic Ocean', 93, 1, 2, N'Patrick Claher/Richard Bull', 321123, 10720741, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1191, N'Deep Waters', 93, 1, 2, N'Richard Bull', 396460, 13075359, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1192, N'L''Arc En Ciel De Miles', 93, 1, 2, N'Kevin Robinson/Richard Bull', 242390, 8053997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1193, N'Gypsy', 93, 1, 2, N'Kevin Robinson', 330997, 11083374, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1194, N'Journey Into Sunlight', 93, 1, 2, N'Jean Paul Maunick', 249756, 8241177, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1195, N'Sunchild', 93, 1, 2, N'Graham Harvey', 259970, 8593143, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1196, N'Millenium', 93, 1, 2, N'Maxton Gig Beesley Jnr.', 379167, 12511939, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1197, N'Thinking ''Bout Tomorrow', 93, 1, 2, N'Fayyaz Virgi/Richard Bull', 355395, 11865384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1198, N'Jacob''s Ladder', 93, 1, 2, N'Julian Crampton', 367647, 12201595, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1199, N'She Wears Black', 93, 1, 2, N'G Harvey/R Hope-Taylor', 528666, 17617944, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1200, N'Dark Side Of The Cog', 93, 1, 2, N'Jean Paul Maunick', 377155, 12491122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1201, N'Different World', 94, 2, 1, 258692, 4383764, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1202, N'These Colours Don''t Run', 94, 2, 1, 412152, 6883500, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1203, N'Brighter Than a Thousand Suns', 94, 2, 1, 526255, 8721490, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1204, N'The Pilgrim', 94, 2, 1, 307593, 5172144, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1205, N'The Longest Day', 94, 2, 1, 467810, 7785748, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1206, N'Out of the Shadows', 94, 2, 1, 336896, 5647303, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1207, N'The Reincarnation of Benjamin Breeg', 94, 2, 1, 442106, 7367736, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1208, N'For the Greater Good of God', 94, 2, 1, 564893, 9367328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1209, N'Lord of Light', 94, 2, 1, 444614, 7393698, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1210, N'The Legacy', 94, 2, 1, 562966, 9314287, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1211, N'Hallowed Be Thy Name (Live) [Non Album Bonus Track]', 94, 2, 1, 431262, 7205816, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1212, N'The Number Of The Beast', 95, 1, 3, N'Steve Harris', 294635, 4718897, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1213, N'The Trooper', 95, 1, 3, N'Steve Harris', 235311, 3766272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1214, N'Prowler', 95, 1, 3, N'Steve Harris', 255634, 4091904, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1215, N'Transylvania', 95, 1, 3, N'Steve Harris', 265874, 4255744, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1216, N'Remember Tomorrow', 95, 1, 3, N'Paul Di''Anno/Steve Harris', 352731, 5648438, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1217, N'Where Eagles Dare', 95, 1, 3, N'Steve Harris', 289358, 4630528, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1218, N'Sanctuary', 95, 1, 3, N'David Murray/Paul Di''Anno/Steve Harris', 293250, 4694016, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1219, N'Running Free', 95, 1, 3, N'Paul Di''Anno/Steve Harris', 228937, 3663872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1220, N'Run To The Hilss', 95, 1, 3, N'Steve Harris', 237557, 3803136, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1221, N'2 Minutes To Midnight', 95, 1, 3, N'Adrian Smith/Bruce Dickinson', 337423, 5400576, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1222, N'Iron Maiden', 95, 1, 3, N'Steve Harris', 324623, 5195776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1223, N'Hallowed Be Thy Name', 95, 1, 3, N'Steve Harris', 471849, 7550976, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1224, N'Be Quick Or Be Dead', 96, 1, 3, N'Bruce Dickinson/Janick Gers', 196911, 3151872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1225, N'From Here To Eternity', 96, 1, 3, N'Steve Harris', 259866, 4159488, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1226, N'Can I Play With Madness', 96, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 282488, 4521984, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1227, N'Wasting Love', 96, 1, 3, N'Bruce Dickinson/Janick Gers', 347846, 5566464, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1228, N'Tailgunner', 96, 1, 3, N'Bruce Dickinson/Steve Harris', 249469, 3993600, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1229, N'The Evil That Men Do', 96, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 325929, 5216256, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1230, N'Afraid To Shoot Strangers', 96, 1, 3, N'Steve Harris', 407980, 6529024, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1231, N'Bring Your Daughter... To The Slaughter', 96, 1, 3, N'Bruce Dickinson', 317727, 5085184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1232, N'Heaven Can Wait', 96, 1, 3, N'Steve Harris', 448574, 7178240, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1233, N'The Clairvoyant', 96, 1, 3, N'Steve Harris', 269871, 4319232, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1234, N'Fear Of The Dark', 96, 1, 3, N'Steve Harris', 431333, 6906078, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1235, N'The Wicker Man', 97, 1, 1, N'Adrian Smith/Bruce Dickinson/Steve Harris', 275539, 11022464, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1236, N'Ghost Of The Navigator', 97, 1, 1, N'Bruce Dickinson/Janick Gers/Steve Harris', 410070, 16404608, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1237, N'Brave New World', 97, 1, 1, N'Bruce Dickinson/David Murray/Steve Harris', 378984, 15161472, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1238, N'Blood Brothers', 97, 1, 1, N'Steve Harris', 434442, 17379456, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1239, N'The Mercenary', 97, 1, 1, N'Janick Gers/Steve Harris', 282488, 11300992, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1240, N'Dream Of Mirrors', 97, 1, 1, N'Janick Gers/Steve Harris', 561162, 22448256, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1241, N'The Fallen Angel', 97, 1, 1, N'Adrian Smith/Steve Harris', 240718, 9629824, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1242, N'The Nomad', 97, 1, 1, N'David Murray/Steve Harris', 546115, 21846144, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1243, N'Out Of The Silent Planet', 97, 1, 1, N'Bruce Dickinson/Janick Gers/Steve Harris', 385541, 15423616, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1244, N'The Thin Line Between Love & Hate', 97, 1, 1, N'David Murray/Steve Harris', 506801, 20273280, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1245, N'Wildest Dreams', 98, 1, 13, N'Adrian Smith/Steve Harris', 232777, 9312384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1246, N'Rainmaker', 98, 1, 13, N'Bruce Dickinson/David Murray/Steve Harris', 228623, 9146496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1247, N'No More Lies', 98, 1, 13, N'Steve Harris', 441782, 17672320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1248, N'Montsegur', 98, 1, 13, N'Bruce Dickinson/Janick Gers/Steve Harris', 350484, 14020736, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1249, N'Dance Of Death', 98, 1, 13, N'Janick Gers/Steve Harris', 516649, 20670727, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1250, N'Gates Of Tomorrow', 98, 1, 13, N'Bruce Dickinson/Janick Gers/Steve Harris', 312032, 12482688, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1251, N'New Frontier', 98, 1, 13, N'Adrian Smith/Bruce Dickinson/Nicko McBrain', 304509, 12181632, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1252, N'Paschendale', 98, 1, 13, N'Adrian Smith/Steve Harris', 508107, 20326528, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1253, N'Face In The Sand', 98, 1, 13, N'Adrian Smith/Bruce Dickinson/Steve Harris', 391105, 15648948, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1254, N'Age Of Innocence', 98, 1, 13, N'David Murray/Steve Harris', 370468, 14823478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1255, N'Journeyman', 98, 1, 13, N'Bruce Dickinson/David Murray/Steve Harris', 427023, 17082496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1256, N'Be Quick Or Be Dead', 99, 1, 1, N'Bruce Dickinson/Janick Gers', 204512, 8181888, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1257, N'From Here To Eternity', 99, 1, 1, N'Steve Harris', 218357, 8739038, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1258, N'Afraid To Shoot Strangers', 99, 1, 1, N'Steve Harris', 416496, 16664589, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1259, N'Fear Is The Key', 99, 1, 1, N'Bruce Dickinson/Janick Gers', 335307, 13414528, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1260, N'Childhood''s End', 99, 1, 1, N'Steve Harris', 280607, 11225216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1261, N'Wasting Love', 99, 1, 1, N'Bruce Dickinson/Janick Gers', 350981, 14041216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1262, N'The Fugitive', 99, 1, 1, N'Steve Harris', 294112, 11765888, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1263, N'Chains Of Misery', 99, 1, 1, N'Bruce Dickinson/David Murray', 217443, 8700032, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1264, N'The Apparition', 99, 1, 1, N'Janick Gers/Steve Harris', 234605, 9386112, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1265, N'Judas Be My Guide', 99, 1, 1, N'Bruce Dickinson/David Murray', 188786, 7553152, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1266, N'Weekend Warrior', 99, 1, 1, N'Janick Gers/Steve Harris', 339748, 13594678, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1267, N'Fear Of The Dark', 99, 1, 1, N'Steve Harris', 436976, 17483789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1268, N'01 - Prowler', 100, 1, 6, N'Steve Harris', 236173, 5668992, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1269, N'02 - Sanctuary', 100, 1, 6, N'David Murray/Paul Di''Anno/Steve Harris', 196284, 4712576, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1270, N'03 - Remember Tomorrow', 100, 1, 6, N'Harris/Paul Di�Anno', 328620, 7889024, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1271, N'04 - Running Free', 100, 1, 6, N'Harris/Paul Di�Anno', 197276, 4739122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1272, N'05 - Phantom of the Opera', 100, 1, 6, N'Steve Harris', 428016, 10276872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1273, N'06 - Transylvania', 100, 1, 6, N'Steve Harris', 259343, 6226048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1274, N'07 - Strange World', 100, 1, 6, N'Steve Harris', 332460, 7981184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1275, N'08 - Charlotte the Harlot', 100, 1, 6, N'Murray Dave', 252708, 6066304, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1276, N'09 - Iron Maiden', 100, 1, 6, N'Steve Harris', 216058, 5189891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1277, N'The Ides Of March', 101, 1, 13, N'Steve Harris', 105926, 2543744, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1278, N'Wrathchild', 101, 1, 13, N'Steve Harris', 174471, 4188288, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1279, N'Murders In The Rue Morgue', 101, 1, 13, N'Steve Harris', 258377, 6205786, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1280, N'Another Life', 101, 1, 13, N'Steve Harris', 203049, 4874368, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1281, N'Genghis Khan', 101, 1, 13, N'Steve Harris', 187141, 4493440, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1282, N'Innocent Exile', 101, 1, 13, N'Di�Anno/Harris', 232515, 5584861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1283, N'Killers', 101, 1, 13, N'Steve Harris', 300956, 7227440, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1284, N'Prodigal Son', 101, 1, 13, N'Steve Harris', 372349, 8937600, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1285, N'Purgatory', 101, 1, 13, N'Steve Harris', 200150, 4804736, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1286, N'Drifter', 101, 1, 13, N'Steve Harris', 288757, 6934660, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1287, N'Intro- Churchill S Speech', 102, 1, 13, 48013, 1154488, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1288, N'Aces High', 102, 1, 13, 276375, 6635187, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1289, N'2 Minutes To Midnight', 102, 1, 3, N'Smith/Dickinson', 366550, 8799380, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1290, N'The Trooper', 102, 1, 3, N'Harris', 268878, 6455255, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1291, N'Revelations', 102, 1, 3, N'Dickinson', 371826, 8926021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1292, N'Flight Of Icarus', 102, 1, 3, N'Smith/Dickinson', 229982, 5521744, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1293, N'Rime Of The Ancient Mariner', 102, 1, 3, 789472, 18949518, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1294, N'Powerslave', 102, 1, 3, 454974, 10921567, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1295, N'The Number Of The Beast', 102, 1, 3, N'Harris', 275121, 6605094, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1296, N'Hallowed Be Thy Name', 102, 1, 3, N'Harris', 451422, 10836304, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1297, N'Iron Maiden', 102, 1, 3, N'Harris', 261955, 6289117, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1298, N'Run To The Hills', 102, 1, 3, N'Harris', 231627, 5561241, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1299, N'Running Free', 102, 1, 3, N'Harris/Di Anno', 204617, 4912986, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1300, N'Wrathchild', 102, 1, 13, N'Steve Harris', 183666, 4410181, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1301, N'Acacia Avenue', 102, 1, 13, 379872, 9119118, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1302, N'Children Of The Damned', 102, 1, 13, N'Steve Harris', 278177, 6678446, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1303, N'Die With Your Boots On', 102, 1, 13, N'Adrian Smith/Bruce Dickinson/Steve Harris', 314174, 7542367, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1304, N'Phantom Of The Opera', 102, 1, 13, N'Steve Harris', 441155, 10589917, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1305, N'Be Quick Or Be Dead', 103, 1, 1, 233142, 5599853, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1306, N'The Number Of The Beast', 103, 1, 1, 294008, 7060625, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1307, N'Wrathchild', 103, 1, 1, 174106, 4182963, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1308, N'From Here To Eternity', 103, 1, 1, 284447, 6831163, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1309, N'Can I Play With Madness', 103, 1, 1, 213106, 5118995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1310, N'Wasting Love', 103, 1, 1, 336953, 8091301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1311, N'Tailgunner', 103, 1, 1, 247640, 5947795, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1312, N'The Evil That Men Do', 103, 1, 1, 478145, 11479913, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1313, N'Afraid To Shoot Strangers', 103, 1, 1, 412525, 9905048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1314, N'Fear Of The Dark', 103, 1, 1, 431542, 10361452, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1315, N'Bring Your Daughter... To The Slaughter...', 104, 1, 1, 376711, 9045532, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1316, N'The Clairvoyant', 104, 1, 1, 262426, 6302648, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1317, N'Heaven Can Wait', 104, 1, 1, 440555, 10577743, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1318, N'Run To The Hills', 104, 1, 1, 235859, 5665052, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1319, N'2 Minutes To Midnight', 104, 1, 1, N'Adrian Smith/Bruce Dickinson', 338233, 8122030, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1320, N'Iron Maiden', 104, 1, 1, 494602, 11874875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1321, N'Hallowed Be Thy Name', 104, 1, 1, 447791, 10751410, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1322, N'The Trooper', 104, 1, 1, 232672, 5588560, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1323, N'Sanctuary', 104, 1, 1, 318511, 7648679, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1324, N'Running Free', 104, 1, 1, 474017, 11380851, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1325, N'Tailgunner', 105, 1, 3, N'Bruce Dickinson/Steve Harris', 255582, 4089856, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1326, N'Holy Smoke', 105, 1, 3, N'Bruce Dickinson/Steve Harris', 229459, 3672064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1327, N'No Prayer For The Dying', 105, 1, 3, N'Steve Harris', 263941, 4225024, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1328, N'Public Enema Number One', 105, 1, 3, N'Bruce Dickinson/David Murray', 254197, 4071587, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1329, N'Fates Warning', 105, 1, 3, N'David Murray/Steve Harris', 250853, 4018088, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1330, N'The Assassin', 105, 1, 3, N'Steve Harris', 258768, 4141056, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1331, N'Run Silent Run Deep', 105, 1, 3, N'Bruce Dickinson/Steve Harris', 275408, 4407296, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1332, N'Hooks In You', 105, 1, 3, N'Adrian Smith/Bruce Dickinson', 247510, 3960832, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1333, N'Bring Your Daughter... ...To The Slaughter', 105, 1, 3, N'Bruce Dickinson', 284238, 4548608, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1334, N'Mother Russia', 105, 1, 3, N'Steve Harris', 332617, 5322752, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1335, N'Where Eagles Dare', 106, 1, 3, N'Steve Harris', 369554, 5914624, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1336, N'Revelations', 106, 1, 3, N'Bruce Dickinson', 408607, 6539264, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1337, N'Flight Of The Icarus', 106, 1, 3, N'Adrian Smith/Bruce Dickinson', 230269, 3686400, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1338, N'Die With Your Boots On', 106, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 325694, 5212160, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1339, N'The Trooper', 106, 1, 3, N'Steve Harris', 251454, 4024320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1340, N'Still Life', 106, 1, 3, N'David Murray/Steve Harris', 294347, 4710400, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1341, N'Quest For Fire', 106, 1, 3, N'Steve Harris', 221309, 3543040, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1342, N'Sun And Steel', 106, 1, 3, N'Adrian Smith/Bruce Dickinson', 206367, 3306324, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1343, N'To Tame A Land', 106, 1, 3, N'Steve Harris', 445283, 7129264, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1344, N'Aces High', 107, 1, 3, N'Harris', 269531, 6472088, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1345, N'2 Minutes To Midnight', 107, 1, 3, N'Smith/Dickinson', 359810, 8638809, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1346, N'Losfer Words', 107, 1, 3, N'Steve Harris', 252891, 6074756, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1347, N'Flash of The Blade', 107, 1, 3, N'Dickinson', 242729, 5828861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1348, N'Duelists', 107, 1, 3, N'Steve Harris', 366471, 8800686, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1349, N'Back in the Village', 107, 1, 3, N'Dickinson/Smith', 320548, 7696518, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1350, N'Powerslave', 107, 1, 3, N'Dickinson', 407823, 9791106, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1351, N'Rime of the Ancient Mariner', 107, 1, 3, N'Harris', 816509, 19599577, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1352, N'Intro', 108, 1, 3, 115931, 4638848, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1353, N'The Wicker Man', 108, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 281782, 11272320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1354, N'Ghost Of The Navigator', 108, 1, 3, N'Bruce Dickinson/Janick Gers/Steve Harris', 408607, 16345216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1355, N'Brave New World', 108, 1, 3, N'Bruce Dickinson/David Murray/Steve Harris', 366785, 14676148, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1356, N'Wrathchild', 108, 1, 3, N'Steve Harris', 185808, 7434368, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1357, N'2 Minutes To Midnight', 108, 1, 3, N'Adrian Smith/Bruce Dickinson', 386821, 15474816, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1358, N'Blood Brothers', 108, 1, 3, N'Steve Harris', 435513, 17422464, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1359, N'Sign Of The Cross', 108, 1, 3, N'Steve Harris', 649116, 25966720, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1360, N'The Mercenary', 108, 1, 3, N'Janick Gers/Steve Harris', 282697, 11309184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1361, N'The Trooper', 108, 1, 3, N'Steve Harris', 273528, 10942592, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1362, N'Dream Of Mirrors', 109, 1, 1, N'Janick Gers/Steve Harris', 578324, 23134336, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1363, N'The Clansman', 109, 1, 1, N'Steve Harris', 559203, 22370432, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1364, N'The Evil That Men Do', 109, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 280737, 11231360, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1365, N'Fear Of The Dark', 109, 1, 1, N'Steve Harris', 460695, 18430080, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1366, N'Iron Maiden', 109, 1, 1, N'Steve Harris', 351869, 14076032, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1367, N'The Number Of The Beast', 109, 1, 1, N'Steve Harris', 300434, 12022107, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1368, N'Hallowed Be Thy Name', 109, 1, 1, N'Steve Harris', 443977, 17760384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1369, N'Sanctuary', 109, 1, 1, N'David Murray/Paul Di''Anno/Steve Harris', 317335, 12695680, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1370, N'Run To The Hills', 109, 1, 1, N'Steve Harris', 292179, 11688064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1371, N'Moonchild', 110, 1, 3, N'Adrian Smith; Bruce Dickinson', 340767, 8179151, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1372, N'Infinite Dreams', 110, 1, 3, N'Steve Harris', 369005, 8858669, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1373, N'Can I Play With Madness', 110, 1, 3, N'Adrian Smith; Bruce Dickinson; Steve Harris', 211043, 5067867, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1374, N'The Evil That Men Do', 110, 1, 3, N'Adrian Smith; Bruce Dickinson; Steve Harris', 273998, 6578930, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1375, N'Seventh Son of a Seventh Son', 110, 1, 3, N'Steve Harris', 593580, 14249000, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1376, N'The Prophecy', 110, 1, 3, N'Dave Murray; Steve Harris', 305475, 7334450, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1377, N'The Clairvoyant', 110, 1, 3, N'Adrian Smith; Bruce Dickinson; Steve Harris', 267023, 6411510, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1378, N'Only the Good Die Young', 110, 1, 3, N'Bruce Dickinson; Harris', 280894, 6744431, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1379, N'Caught Somewhere in Time', 111, 1, 3, N'Steve Harris', 445779, 10701149, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1380, N'Wasted Years', 111, 1, 3, N'Adrian Smith', 307565, 7384358, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1381, N'Sea of Madness', 111, 1, 3, N'Adrian Smith', 341995, 8210695, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1382, N'Heaven Can Wait', 111, 1, 3, N'Steve Harris', 441417, 10596431, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1383, N'Stranger in a Strange Land', 111, 1, 3, N'Adrian Smith', 344502, 8270899, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1384, N'Alexander the Great', 111, 1, 3, N'Steve Harris', 515631, 12377742, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1385, N'De Ja Vu', 111, 1, 3, N'David Murray/Steve Harris', 296176, 7113035, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1386, N'The Loneliness of the Long Dis', 111, 1, 3, N'Steve Harris', 391314, 9393598, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1387, N'22 Acacia Avenue', 112, 1, 3, N'Adrian Smith/Steve Harris', 395572, 5542516, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1388, N'Children of the Damned', 112, 1, 3, N'Steve Harris', 274364, 3845631, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1389, N'Gangland', 112, 1, 3, N'Adrian Smith/Clive Burr/Steve Harris', 228440, 3202866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1390, N'Hallowed Be Thy Name', 112, 1, 3, N'Steve Harris', 428669, 6006107, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1391, N'Invaders', 112, 1, 3, N'Steve Harris', 203180, 2849181, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1392, N'Run to the Hills', 112, 1, 3, N'Steve Harris', 228884, 3209124, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1393, N'The Number Of The Beast', 112, 1, 1, N'Steve Harris', 293407, 11737216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1394, N'The Prisoner', 112, 1, 3, N'Adrian Smith/Steve Harris', 361299, 5062906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1395, N'Sign Of The Cross', 113, 1, 1, N'Steve Harris', 678008, 27121792, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1396, N'Lord Of The Flies', 113, 1, 1, N'Janick Gers/Steve Harris', 303699, 12148864, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1397, N'Man On The Edge', 113, 1, 1, N'Blaze Bayley/Janick Gers', 253413, 10137728, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1398, N'Fortunes Of War', 113, 1, 1, N'Steve Harris', 443977, 17760384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1399, N'Look For The Truth', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 310230, 12411008, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1400, N'The Aftermath', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 380786, 15233152, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1401, N'Judgement Of Heaven', 113, 1, 1, N'Steve Harris', 312476, 12501120, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1402, N'Blood On The World''s Hands', 113, 1, 1, N'Steve Harris', 357799, 14313600, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1403, N'The Edge Of Darkness', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 399333, 15974528, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1404, N'2 A.M.', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 337658, 13511087, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1405, N'The Unbeliever', 113, 1, 1, N'Janick Gers/Steve Harris', 490422, 19617920, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1406, N'Futureal', 114, 1, 1, N'Blaze Bayley/Steve Harris', 175777, 7032960, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1407, N'The Angel And The Gambler', 114, 1, 1, N'Steve Harris', 592744, 23711872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1408, N'Lightning Strikes Twice', 114, 1, 1, N'David Murray/Steve Harris', 290377, 11616384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1409, N'The Clansman', 114, 1, 1, N'Steve Harris', 539689, 21592327, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1410, N'When Two Worlds Collide', 114, 1, 1, N'Blaze Bayley/David Murray/Steve Harris', 377312, 15093888, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1411, N'The Educated Fool', 114, 1, 1, N'Steve Harris', 404767, 16191616, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1412, N'Don''t Look To The Eyes Of A Stranger', 114, 1, 1, N'Steve Harris', 483657, 19347584, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1413, N'Como Estais Amigos', 114, 1, 1, N'Blaze Bayley/Janick Gers', 330292, 13213824, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1414, N'Please Please Please', 115, 1, 14, N'James Brown/Johnny Terry', 165067, 5394585, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1415, N'Think', 115, 1, 14, N'Lowman Pauling', 166739, 5513208, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1416, N'Night Train', 115, 1, 14, N'Jimmy Forrest/Lewis C. Simpkins/Oscar Washington', 212401, 7027377, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1417, N'Out Of Sight', 115, 1, 14, N'Ted Wright', 143725, 4711323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1418, N'Papa''s Got A Brand New Bag Pt.1', 115, 1, 14, N'James Brown', 127399, 4174420, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1419, N'I Got You (I Feel Good)', 115, 1, 14, N'James Brown', 167392, 5468472, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1420, N'It''s A Man''s Man''s Man''s World', 115, 1, 14, N'Betty Newsome/James Brown', 168228, 5541611, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1421, N'Cold Sweat', 115, 1, 14, N'Alfred Ellis/James Brown', 172408, 5643213, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1422, N'Say It Loud, I''m Black And I''m Proud Pt.1', 115, 1, 14, N'Alfred Ellis/James Brown', 167392, 5478117, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1423, N'Get Up (I Feel Like Being A) Sex Machine', 115, 1, 14, N'Bobby Byrd/James Brown/Ron Lenhoff', 316551, 10498031, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1424, N'Hey America', 115, 1, 14, N'Addie William Jones/Nat Jones', 218226, 7187857, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1425, N'Make It Funky Pt.1', 115, 1, 14, N'Charles Bobbitt/James Brown', 196231, 6507782, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1426, N'I''m A Greedy Man Pt.1', 115, 1, 14, N'Charles Bobbitt/James Brown', 217730, 7251211, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1427, N'Get On The Good Foot', 115, 1, 14, N'Fred Wesley/James Brown/Joseph Mims', 215902, 7182736, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1428, N'Get Up Offa That Thing', 115, 1, 14, N'Deanna Brown/Deidra Jenkins/Yamma Brown', 250723, 8355989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1429, N'It''s Too Funky In Here', 115, 1, 14, N'Brad Shapiro/George Jackson/Robert Miller/Walter Shaw', 239072, 7973979, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1430, N'Living In America', 115, 1, 14, N'Charlie Midnight/Dan Hartman', 282880, 9432346, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1431, N'I''m Real', 115, 1, 14, N'Full Force/James Brown', 334236, 11183457, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1432, N'Hot Pants Pt.1', 115, 1, 14, N'Fred Wesley/James Brown', 188212, 6295110, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1433, N'Soul Power (Live)', 115, 1, 14, N'James Brown', 260728, 8593206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1434, N'When You Gonna Learn (Digeridoo)', 116, 1, 1, N'Jay Kay/Kay, Jay', 230635, 7655482, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1435, N'Too Young To Die', 116, 1, 1, N'Smith, Toby', 365818, 12391660, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1436, N'Hooked Up', 116, 1, 1, N'Smith, Toby', 275879, 9301687, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1437, N'If I Like It, I Do It', 116, 1, 1, N'Gelder, Nick van', 293093, 9848207, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1438, N'Music Of The Wind', 116, 1, 1, N'Smith, Toby', 383033, 12870239, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1439, N'Emergency On Planet Earth', 116, 1, 1, N'Smith, Toby', 245263, 8117218, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1440, N'Whatever It Is, I Just Can''t Stop', 116, 1, 1, N'Jay Kay/Kay, Jay', 247222, 8249453, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1441, N'Blow Your Mind', 116, 1, 1, N'Smith, Toby', 512339, 17089176, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1442, N'Revolution 1993', 116, 1, 1, N'Smith, Toby', 616829, 20816872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1443, N'Didgin'' Out', 116, 1, 1, N'Buchanan, Wallis', 157100, 5263555, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1444, N'Canned Heat', 117, 1, 14, N'Jay Kay', 331964, 11042037, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1445, N'Planet Home', 117, 1, 14, N'Jay Kay/Toby Smith', 284447, 9566237, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1446, N'Black Capricorn Day', 117, 1, 14, N'Jay Kay', 341629, 11477231, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1447, N'Soul Education', 117, 1, 14, N'Jay Kay/Toby Smith', 255477, 8575435, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1448, N'Failling', 117, 1, 14, N'Jay Kay/Toby Smith', 225227, 7503999, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1449, N'Destitute Illusions', 117, 1, 14, N'Derrick McKenzie/Jay Kay/Toby Smith', 340218, 11452651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1450, N'Supersonic', 117, 1, 14, N'Jay Kay', 315872, 10699265, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1451, N'Butterfly', 117, 1, 14, N'Jay Kay/Toby Smith', 268852, 8947356, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1452, N'Were Do We Go From Here', 117, 1, 14, N'Jay Kay', 313626, 10504158, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1453, N'King For A Day', 117, 1, 14, N'Jay Kay/Toby Smith', 221544, 7335693, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1454, N'Deeper Underground', 117, 1, 14, N'Toby Smith', 281808, 9351277, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1455, N'Just Another Story', 118, 1, 15, N'Toby Smith', 529684, 17582818, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1456, N'Stillness In Time', 118, 1, 15, N'Toby Smith', 257097, 8644290, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1457, N'Half The Man', 118, 1, 15, N'Toby Smith', 289854, 9577679, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1458, N'Light Years', 118, 1, 15, N'Toby Smith', 354560, 11796244, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1459, N'Manifest Destiny', 118, 1, 15, N'Toby Smith', 382197, 12676962, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1460, N'The Kids', 118, 1, 15, N'Toby Smith', 309995, 10334529, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1461, N'Mr. Moon', 118, 1, 15, N'Stuard Zender/Toby Smith', 329534, 11043559, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1462, N'Scam', 118, 1, 15, N'Stuart Zender', 422321, 14019705, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1463, N'Journey To Arnhemland', 118, 1, 15, N'Toby Smith/Wallis Buchanan', 322455, 10843832, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1464, N'Morning Glory', 118, 1, 15, N'J. Kay/Jay Kay', 384130, 12777210, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1465, N'Space Cowboy', 118, 1, 15, N'J. Kay/Jay Kay', 385697, 12906520, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1466, N'Last Chance', 119, 1, 4, N'C. Cester/C. Muncey', 112352, 3683130, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1467, N'Are You Gonna Be My Girl', 119, 1, 4, N'C. Muncey/N. Cester', 213890, 6992324, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1468, N'Rollover D.J.', 119, 1, 4, N'C. Cester/N. Cester', 196702, 6406517, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1469, N'Look What You''ve Done', 119, 1, 4, N'N. Cester', 230974, 7517083, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1470, N'Get What You Need', 119, 1, 4, N'C. Cester/C. Muncey/N. Cester', 247719, 8043765, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1471, N'Move On', 119, 1, 4, N'C. Cester/N. Cester', 260623, 8519353, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1472, N'Radio Song', 119, 1, 4, N'C. Cester/C. Muncey/N. Cester', 272117, 8871509, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1473, N'Get Me Outta Here', 119, 1, 4, N'C. Cester/N. Cester', 176274, 5729098, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1474, N'Cold Hard Bitch', 119, 1, 4, N'C. Cester/C. Muncey/N. Cester', 243278, 7929610, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1475, N'Come Around Again', 119, 1, 4, N'C. Muncey/N. Cester', 270497, 8872405, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1476, N'Take It Or Leave It', 119, 1, 4, N'C. Muncey/N. Cester', 142889, 4643370, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1477, N'Lazy Gun', 119, 1, 4, N'C. Cester/N. Cester', 282174, 9186285, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1478, N'Timothy', 119, 1, 4, N'C. Cester', 270341, 8856507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1479, N'Foxy Lady', 120, 1, 1, N'Jimi Hendrix', 199340, 6480896, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1480, N'Manic Depression', 120, 1, 1, N'Jimi Hendrix', 222302, 7289272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1481, N'Red House', 120, 1, 1, N'Jimi Hendrix', 224130, 7285851, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1482, N'Can You See Me', 120, 1, 1, N'Jimi Hendrix', 153077, 4987068, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1483, N'Love Or Confusion', 120, 1, 1, N'Jimi Hendrix', 193123, 6329408, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1484, N'I Don''t Live Today', 120, 1, 1, N'Jimi Hendrix', 235311, 7661214, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1485, N'May This Be Love', 120, 1, 1, N'Jimi Hendrix', 191216, 6240028, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1486, N'Fire', 120, 1, 1, N'Jimi Hendrix', 164989, 5383075, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1487, N'Third Stone From The Sun', 120, 1, 1, N'Jimi Hendrix', 404453, 13186975, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1488, N'Remember', 120, 1, 1, N'Jimi Hendrix', 168150, 5509613, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1489, N'Are You Experienced?', 120, 1, 1, N'Jimi Hendrix', 254537, 8292497, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1490, N'Hey Joe', 120, 1, 1, N'Billy Roberts', 210259, 6870054, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1491, N'Stone Free', 120, 1, 1, N'Jimi Hendrix', 216293, 7002331, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1492, N'Purple Haze', 120, 1, 1, N'Jimi Hendrix', 171572, 5597056, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1493, N'51st Anniversary', 120, 1, 1, N'Jimi Hendrix', 196388, 6398044, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1494, N'The Wind Cries Mary', 120, 1, 1, N'Jimi Hendrix', 200463, 6540638, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1495, N'Highway Chile', 120, 1, 1, N'Jimi Hendrix', 212453, 6887949, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1496, N'Surfing with the Alien', 121, 2, 1, 263707, 4418504, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1497, N'Ice 9', 121, 2, 1, 239721, 4036215, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1498, N'Crushing Day', 121, 2, 1, 314768, 5232158, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1499, N'Always With Me, Always With You', 121, 2, 1, 202035, 3435777, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1500, N'Satch Boogie', 121, 2, 1, 193560, 3300654, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1501, N'Hill of the Skull', 121, 2, 1, N'J. Satriani', 108435, 1944738, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1502, N'Circles', 121, 2, 1, 209071, 3548553, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1503, N'Lords of Karma', 121, 2, 1, N'J. Satriani', 288227, 4809279, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1504, N'Midnight', 121, 2, 1, N'J. Satriani', 102630, 1851753, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1505, N'Echo', 121, 2, 1, N'J. Satriani', 337570, 5595557, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1506, N'Engenho De Dentro', 122, 1, 7, 310073, 10211473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1507, N'Alcohol', 122, 1, 7, 355239, 12010478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1508, N'Mama Africa', 122, 1, 7, 283062, 9488316, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1509, N'Salve Simpatia', 122, 1, 7, 343484, 11314756, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1510, N'W/Brasil (Chama O S�ndico)', 122, 1, 7, 317100, 10599953, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1511, N'Pa�s Tropical', 122, 1, 7, 452519, 14946972, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1512, N'Os Alquimistas Est�o Chegando', 122, 1, 7, 367281, 12304520, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1513, N'Charles Anjo 45', 122, 1, 7, 389276, 13022833, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1514, N'Selassi�', 122, 1, 7, 326321, 10724982, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1515, N'Menina Sarar�', 122, 1, 7, 191477, 6393818, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1516, N'Que Maravilha', 122, 1, 7, 338076, 10996656, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1517, N'Santa Clara Clareou', 122, 1, 7, 380081, 12524725, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1518, N'Filho Maravilha', 122, 1, 7, 227526, 7498259, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1519, N'Taj Mahal', 122, 1, 7, 289750, 9502898, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1520, N'Rapidamente', 123, 1, 7, 252238, 8470107, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1521, N'As Dores do Mundo', 123, 1, 7, N'Hyldon', 255477, 8537092, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1522, N'Vou Pra Ai', 123, 1, 7, 300878, 10053718, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1523, N'My Brother', 123, 1, 7, 253231, 8431821, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1524, N'H� Quanto Tempo', 123, 1, 7, 270027, 9004470, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1525, N'V�cio', 123, 1, 7, 269897, 8887216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1526, N'Encontrar Algu�m', 123, 1, 7, N'Marco Tulio Lara/Rogerio Flausino', 224078, 7437935, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1527, N'Dance Enquanto � Tempo', 123, 1, 7, 229093, 7583799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1528, N'A Tarde', 123, 1, 7, 266919, 8836127, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1529, N'Always Be All Right', 123, 1, 7, 128078, 4299676, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1530, N'Sem Sentido', 123, 1, 7, 250462, 8292108, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1531, N'Onibusfobia', 123, 1, 7, 315977, 10474904, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1532, N'Pura Elegancia', 124, 1, 16, N'Jo�o Suplicy', 284107, 9632269, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1533, N'Choramingando', 124, 1, 16, N'Jo�o Suplicy', 190484, 6400532, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1534, N'Por Merecer', 124, 1, 16, N'Jo�o Suplicy', 230582, 7764601, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1535, N'No Futuro', 124, 1, 16, N'Jo�o Suplicy', 182308, 6056200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1536, N'Voce Inteira', 124, 1, 16, N'Jo�o Suplicy', 241084, 8077282, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1537, N'Cuando A Noite Vai Chegando', 124, 1, 16, N'Jo�o Suplicy', 270628, 9081874, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1538, N'Naquele Dia', 124, 1, 16, N'Jo�o Suplicy', 251768, 8452654, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1539, N'Equinocio', 124, 1, 16, N'Jo�o Suplicy', 269008, 8871455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1540, N'Papel�o', 124, 1, 16, N'Jo�o Suplicy', 213263, 7257390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1541, N'Cuando Eu For Pro Ceu', 124, 1, 16, N'Jo�o Suplicy', 118804, 3948371, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1542, N'Do Nosso Amor', 124, 1, 16, N'Jo�o Suplicy', 203415, 6774566, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1543, N'Borogodo', 124, 1, 16, N'Jo�o Suplicy', 208457, 7104588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1544, N'Cafezinho', 124, 1, 16, N'Jo�o Suplicy', 180924, 6031174, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1545, N'Enquanto O Dia N�o Vem', 124, 1, 16, N'Jo�o Suplicy', 220891, 7248336, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1546, N'The Green Manalishi', 125, 1, 3, 205792, 6720789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1547, N'Living After Midnight', 125, 1, 3, 213289, 7056785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1548, N'Breaking The Law (Live)', 125, 1, 3, 144195, 4728246, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1549, N'Hot Rockin''', 125, 1, 3, 197328, 6509179, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1550, N'Heading Out To The Highway (Live)', 125, 1, 3, 276427, 9006022, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1551, N'The Hellion', 125, 1, 3, 41900, 1351993, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1552, N'Electric Eye', 125, 1, 3, 222197, 7231368, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1553, N'You''ve Got Another Thing Comin''', 125, 1, 3, 305162, 9962558, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1554, N'Turbo Lover', 125, 1, 3, 335542, 11068866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1555, N'Freewheel Burning', 125, 1, 3, 265952, 8713599, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1556, N'Some Heads Are Gonna Roll', 125, 1, 3, 249939, 8198617, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1557, N'Metal Meltdown', 125, 1, 3, 290664, 9390646, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1558, N'Ram It Down', 125, 1, 3, 292179, 9554023, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1559, N'Diamonds And Rust (Live)', 125, 1, 3, 219350, 7163147, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1560, N'Victim Of Change (Live)', 125, 1, 3, 430942, 14067512, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1561, N'Tyrant (Live)', 125, 1, 3, 282253, 9190536, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1562, N'Comin'' Home', 126, 1, 1, N'Paul Stanley, Ace Frehley', 172068, 5661120, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1563, N'Plaster Caster', 126, 1, 1, N'Gene Simmons', 198060, 6528719, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1564, N'Goin'' Blind', 126, 1, 1, N'Gene Simmons, Stephen Coronel', 217652, 7167523, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1565, N'Do You Love Me', 126, 1, 1, N'Paul Stanley, Bob Ezrin, Kim Fowley', 193619, 6343111, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1566, N'Domino', 126, 1, 1, N'Gene Simmons', 226377, 7488191, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1567, N'Sure Know Something', 126, 1, 1, N'Paul Stanley, Vincent Poncia', 254354, 8375190, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1568, N'A World Without Heroes', 126, 1, 1, N'Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed', 177815, 5832524, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1569, N'Rock Bottom', 126, 1, 1, N'Paul Stanley, Ace Frehley', 200594, 6560818, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1570, N'See You Tonight', 126, 1, 1, N'Gene Simmons', 146494, 4817521, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1571, N'I Still Love You', 126, 1, 1, N'Paul Stanley', 369815, 12086145, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1572, N'Every Time I Look At You', 126, 1, 1, N'Paul Stanley, Vincent Cusano', 283898, 9290948, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1573, N'2,000 Man', 126, 1, 1, N'Mick Jagger, Keith Richard', 312450, 10292829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1574, N'Beth', 126, 1, 1, N'Peter Criss, Stan Penridge, Bob Ezrin', 170187, 5577807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1575, N'Nothin'' To Lose', 126, 1, 1, N'Gene Simmons', 222354, 7351460, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1576, N'Rock And Roll All Nite', 126, 1, 1, N'Paul Stanley, Gene Simmons', 259631, 8549296, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1577, N'Immigrant Song', 127, 1, 1, N'Robert Plant', 201247, 6457766, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1578, N'Heartbreaker', 127, 1, 1, N'John Bonham/John Paul Jones/Robert Plant', 316081, 10179657, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1579, N'Since I''ve Been Loving You', 127, 1, 1, N'John Paul Jones/Robert Plant', 416365, 13471959, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1580, N'Black Dog', 127, 1, 1, N'John Paul Jones/Robert Plant', 317622, 10267572, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1581, N'Dazed And Confused', 127, 1, 1, N'Jimmy Page/Led Zeppelin', 1116734, 36052247, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1582, N'Stairway To Heaven', 127, 1, 1, N'Robert Plant', 529658, 17050485, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1583, N'Going To California', 127, 1, 1, N'Robert Plant', 234605, 7646749, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1584, N'That''s The Way', 127, 1, 1, N'Robert Plant', 343431, 11248455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1585, N'Whole Lotta Love (Medley)', 127, 1, 1, N'Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon', 825103, 26742545, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1586, N'Thank You', 127, 1, 1, N'Robert Plant', 398262, 12831826, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1587, N'We''re Gonna Groove', 128, 1, 1, N'Ben E.King/James Bethea', 157570, 5180975, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1588, N'Poor Tom', 128, 1, 1, N'Jimmy Page/Robert Plant', 182491, 6016220, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1589, N'I Can''t Quit You Baby', 128, 1, 1, N'Willie Dixon', 258168, 8437098, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1590, N'Walter''s Walk', 128, 1, 1, N'Jimmy Page, Robert Plant', 270785, 8712499, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1591, N'Ozone Baby', 128, 1, 1, N'Jimmy Page, Robert Plant', 215954, 7079588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1592, N'Darlene', 128, 1, 1, N'Jimmy Page, Robert Plant, John Bonham, John Paul Jones', 307226, 10078197, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1593, N'Bonzo''s Montreux', 128, 1, 1, N'John Bonham', 258925, 8557447, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1594, N'Wearing And Tearing', 128, 1, 1, N'Jimmy Page, Robert Plant', 330004, 10701590, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1595, N'The Song Remains The Same', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 330004, 10708950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1596, N'The Rain Song', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 459180, 15029875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1597, N'Over The Hills And Far Away', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 290089, 9552829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1598, N'The Crunge', 129, 1, 1, N'John Bonham/John Paul Jones', 197407, 6460212, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1599, N'Dancing Days', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 223216, 7250104, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1600, N'D''Yer Mak''er', 129, 1, 1, N'John Bonham/John Paul Jones', 262948, 8645935, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1601, N'No Quarter', 129, 1, 1, N'John Paul Jones', 420493, 13656517, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1602, N'The Ocean', 129, 1, 1, N'John Bonham/John Paul Jones', 271098, 8846469, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1603, N'In The Evening', 130, 1, 1, N'Jimmy Page, Robert Plant & John Paul Jones', 410566, 13399734, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1604, N'South Bound Saurez', 130, 1, 1, N'John Paul Jones & Robert Plant', 254406, 8420427, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1605, N'Fool In The Rain', 130, 1, 1, N'Jimmy Page, Robert Plant & John Paul Jones', 372950, 12371433, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1606, N'Hot Dog', 130, 1, 1, N'Jimmy Page & Robert Plant', 197198, 6536167, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1607, N'Carouselambra', 130, 1, 1, N'John Paul Jones, Jimmy Page & Robert Plant', 634435, 20858315, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1608, N'All My Love', 130, 1, 1, N'Robert Plant & John Paul Jones', 356284, 11684862, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1609, N'I''m Gonna Crawl', 130, 1, 1, N'Jimmy Page, Robert Plant & John Paul Jones', 329639, 10737665, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1610, N'Black Dog', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 296672, 9660588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1611, N'Rock & Roll', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 220917, 7142127, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1612, N'The Battle Of Evermore', 131, 1, 1, N'Jimmy Page, Robert Plant', 351555, 11525689, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1613, N'Stairway To Heaven', 131, 1, 1, N'Jimmy Page, Robert Plant', 481619, 15706767, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1614, N'Misty Mountain Hop', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 278857, 9092799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1615, N'Four Sticks', 131, 1, 1, N'Jimmy Page, Robert Plant', 284447, 9481301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1616, N'Going To California', 131, 1, 1, N'Jimmy Page, Robert Plant', 215693, 7068737, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1617, N'When The Levee Breaks', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie', 427702, 13912107, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1618, N'Good Times Bad Times', 132, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 166164, 5464077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1619, N'Babe I''m Gonna Leave You', 132, 1, 1, N'Jimmy Page/Robert Plant', 401475, 13189312, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1620, N'You Shook Me', 132, 1, 1, N'J. B. Lenoir/Willie Dixon', 388179, 12643067, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1621, N'Dazed and Confused', 132, 1, 1, N'Jimmy Page', 386063, 12610326, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1622, N'Your Time Is Gonna Come', 132, 1, 1, N'Jimmy Page/John Paul Jones', 274860, 9011653, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1623, N'Black Mountain Side', 132, 1, 1, N'Jimmy Page', 132702, 4440602, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1624, N'Communication Breakdown', 132, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 150230, 4899554, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1625, N'I Can''t Quit You Baby', 132, 1, 1, N'Willie Dixon', 282671, 9252733, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1626, N'How Many More Times', 132, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 508055, 16541364, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1627, N'Whole Lotta Love', 133, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 334471, 11026243, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1628, N'What Is And What Should Never Be', 133, 1, 1, N'Jimmy Page, Robert Plant', 287973, 9369385, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1629, N'The Lemon Song', 133, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 379141, 12463496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1630, N'Thank You', 133, 1, 1, N'Jimmy Page, Robert Plant', 287791, 9337392, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1631, N'Heartbreaker', 133, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 253988, 8387560, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1632, N'Living Loving Maid (She''s Just A Woman)', 133, 1, 1, N'Jimmy Page, Robert Plant', 159216, 5219819, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1633, N'Ramble On', 133, 1, 1, N'Jimmy Page, Robert Plant', 275591, 9199710, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1634, N'Moby Dick', 133, 1, 1, N'John Bonham, John Paul Jones, Jimmy Page', 260728, 8664210, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1635, N'Bring It On Home', 133, 1, 1, N'Jimmy Page, Robert Plant', 259970, 8494731, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1636, N'Immigrant Song', 134, 1, 1, N'Jimmy Page, Robert Plant', 144875, 4786461, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1637, N'Friends', 134, 1, 1, N'Jimmy Page, Robert Plant', 233560, 7694220, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1638, N'Celebration Day', 134, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 209528, 6871078, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1639, N'Since I''ve Been Loving You', 134, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 444055, 14482460, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1640, N'Out On The Tiles', 134, 1, 1, N'Jimmy Page, Robert Plant, John Bonham', 246047, 8060350, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1641, N'Gallows Pole', 134, 1, 1, N'Traditional', 296228, 9757151, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1642, N'Tangerine', 134, 1, 1, N'Jimmy Page', 189675, 6200893, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1643, N'That''s The Way', 134, 1, 1, N'Jimmy Page, Robert Plant', 337345, 11202499, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1644, N'Bron-Y-Aur Stomp', 134, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 259500, 8674508, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1645, N'Hats Off To (Roy) Harper', 134, 1, 1, N'Traditional', 219376, 7236640, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1646, N'In The Light', 135, 1, 1, N'John Paul Jones/Robert Plant', 526785, 17033046, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1647, N'Bron-Yr-Aur', 135, 1, 1, N'Jimmy Page', 126641, 4150746, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1648, N'Down By The Seaside', 135, 1, 1, N'Robert Plant', 316186, 10371282, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1649, N'Ten Years Gone', 135, 1, 1, N'Robert Plant', 393116, 12756366, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1650, N'Night Flight', 135, 1, 1, N'John Paul Jones/Robert Plant', 217547, 7160647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1651, N'The Wanton Song', 135, 1, 1, N'Robert Plant', 249887, 8180988, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1652, N'Boogie With Stu', 135, 1, 1, N'Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant', 233273, 7657086, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1653, N'Black Country Woman', 135, 1, 1, N'Robert Plant', 273084, 8951732, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1654, N'Sick Again', 135, 1, 1, N'Robert Plant', 283036, 9279263, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1655, N'Achilles Last Stand', 136, 1, 1, N'Jimmy Page/Robert Plant', 625502, 20593955, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1656, N'For Your Life', 136, 1, 1, N'Jimmy Page/Robert Plant', 384391, 12633382, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1657, N'Royal Orleans', 136, 1, 1, N'John Bonham/John Paul Jones', 179591, 5930027, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1658, N'Nobody''s Fault But Mine', 136, 1, 1, N'Jimmy Page/Robert Plant', 376215, 12237859, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1659, N'Candy Store Rock', 136, 1, 1, N'Jimmy Page/Robert Plant', 252055, 8397423, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1660, N'Hots On For Nowhere', 136, 1, 1, N'Jimmy Page/Robert Plant', 284107, 9342342, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1661, N'Tea For One', 136, 1, 1, N'Jimmy Page/Robert Plant', 566752, 18475264, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1662, N'Rock & Roll', 137, 1, 1, N'John Bonham/John Paul Jones/Robert Plant', 242442, 7897065, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1663, N'Celebration Day', 137, 1, 1, N'John Paul Jones/Robert Plant', 230034, 7478487, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1664, N'The Song Remains The Same', 137, 1, 1, N'Robert Plant', 353358, 11465033, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1665, N'Rain Song', 137, 1, 1, N'Robert Plant', 505808, 16273705, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1666, N'Dazed And Confused', 137, 1, 1, N'Jimmy Page', 1612329, 52490554, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1667, N'No Quarter', 138, 1, 1, N'John Paul Jones/Robert Plant', 749897, 24399285, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1668, N'Stairway To Heaven', 138, 1, 1, N'Robert Plant', 657293, 21354766, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1669, N'Moby Dick', 138, 1, 1, N'John Bonham/John Paul Jones', 766354, 25345841, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1670, N'Whole Lotta Love', 138, 1, 1, N'John Bonham/John Paul Jones/Robert Plant/Willie Dixon', 863895, 28191437, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1671, N'Nat�lia', 139, 1, 7, N'Renato Russo', 235728, 7640230, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1672, N'L''Avventura', 139, 1, 7, N'Renato Russo', 278256, 9165769, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1673, N'M�sica De Trabalho', 139, 1, 7, N'Renato Russo', 260231, 8590671, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1674, N'Longe Do Meu Lado', 139, 1, 7, N'Renato Russo - Marcelo Bonf�', 266161, 8655249, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1675, N'A Via L�ctea', 139, 1, 7, N'Renato Russo', 280084, 9234879, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1676, N'M�sica Ambiente', 139, 1, 7, N'Renato Russo', 247614, 8234388, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1677, N'Aloha', 139, 1, 7, N'Renato Russo', 325955, 10793301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1678, N'Soul Parsifal', 139, 1, 7, N'Renato Russo - Marisa Monte', 295053, 9853589, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1679, N'Dezesseis', 139, 1, 7, N'Renato Russo', 323918, 10573515, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1680, N'Mil Peda�os', 139, 1, 7, N'Renato Russo', 203337, 6643291, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1681, N'Leila', 139, 1, 7, N'Renato Russo', 323056, 10608239, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1682, N'1� De Julho', 139, 1, 7, N'Renato Russo', 290298, 9619257, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1683, N'Esperando Por Mim', 139, 1, 7, N'Renato Russo', 261668, 8844133, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1684, N'Quando Voc� Voltar', 139, 1, 7, N'Renato Russo', 173897, 5781046, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1685, N'O Livro Dos Dias', 139, 1, 7, N'Renato Russo', 257253, 8570929, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1686, N'Ser�', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 148401, 4826528, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1687, N'Ainda � Cedo', 140, 1, 7, N'Dado Villa-Lobos/Ico Ouro-Preto/Marcelo Bonf�', 236826, 7796400, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1688, N'Gera��o Coca-Cola', 140, 1, 7, N'Renato Russo', 141453, 4625731, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1689, N'Eduardo E M�nica', 140, 1, 7, N'Renato Russo', 271229, 9026691, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1690, N'Tempo Perdido', 140, 1, 7, N'Renato Russo', 302158, 9963914, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1691, N'Indios', 140, 1, 7, N'Renato Russo', 258168, 8610226, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1692, N'Que Pa�s � Este', 140, 1, 7, N'Renato Russo', 177606, 5822124, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1693, N'Faroeste Caboclo', 140, 1, 7, N'Renato Russo', 543007, 18092739, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1694, N'H� Tempos', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 197146, 6432922, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1695, N'Pais E Filhos', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 308401, 10130685, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1696, N'Meninos E Meninas', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 203781, 6667802, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1697, N'Vento No Litoral', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 366445, 12063806, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1698, N'Perfei��o', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 276558, 9258489, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1699, N'Giz', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 202213, 6677671, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1700, N'Dezesseis', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonf�', 321724, 10501773, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1701, N'Antes Das Seis', 140, 1, 7, N'Dado Villa-Lobos', 189231, 6296531, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1702, N'Are You Gonna Go My Way', 141, 1, 1, N'Craig Ross/Lenny Kravitz', 211591, 6905135, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1703, N'Fly Away', 141, 1, 1, N'Lenny Kravitz', 221962, 7322085, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1704, N'Rock And Roll Is Dead', 141, 1, 1, N'Lenny Kravitz', 204199, 6680312, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1705, N'Again', 141, 1, 1, N'Lenny Kravitz', 228989, 7490476, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1706, N'It Ain''t Over ''Til It''s Over', 141, 1, 1, N'Lenny Kravitz', 242703, 8078936, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1707, N'Can''t Get You Off My Mind', 141, 1, 1, N'Lenny Kravitz', 273815, 8937150, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1708, N'Mr. Cab Driver', 141, 1, 1, N'Lenny Kravitz', 230321, 7668084, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1709, N'American Woman', 141, 1, 1, N'B. Cummings/G. Peterson/M.J. Kale/R. Bachman', 261773, 8538023, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1710, N'Stand By My Woman', 141, 1, 1, N'Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan', 259683, 8447611, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1711, N'Always On The Run', 141, 1, 1, N'Lenny Kravitz/Slash', 232515, 7593397, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1712, N'Heaven Help', 141, 1, 1, N'Gerry DeVeaux/Terry Britten', 190354, 6222092, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1713, N'I Belong To You', 141, 1, 1, N'Lenny Kravitz', 257123, 8477980, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1714, N'Believe', 141, 1, 1, N'Henry Hirsch/Lenny Kravitz', 295131, 9661978, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1715, N'Let Love Rule', 141, 1, 1, N'Lenny Kravitz', 342648, 11298085, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1716, N'Black Velveteen', 141, 1, 1, N'Lenny Kravitz', 290899, 9531301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1717, N'Assim Caminha A Humanidade', 142, 1, 7, 210755, 6993763, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1718, N'Honolulu', 143, 1, 7, 261433, 8558481, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1719, N'Dancin�Days', 143, 1, 7, 237400, 7875347, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1720, N'Um Pro Outro', 142, 1, 7, 236382, 7825215, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1721, N'Aviso Aos Navegantes', 143, 1, 7, 242808, 8058651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1722, N'Casa', 142, 1, 7, 307591, 10107269, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1723, N'Condi��o', 142, 1, 7, 263549, 8778465, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1724, N'Hyperconectividade', 143, 1, 7, 180636, 5948039, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1725, N'O Descobridor Dos Sete Mares', 143, 1, 7, 225854, 7475780, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1726, N'Satisfa��o', 142, 1, 7, 208065, 6901681, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1727, N'Brum�rio', 142, 1, 7, 216241, 7243499, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1728, N'Um Certo Algu�m', 143, 1, 7, 194063, 6430939, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1729, N'Fullg�s', 143, 1, 7, 346070, 11505484, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1730, N'S�bado � Noite', 142, 1, 7, 193854, 6435114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1731, N'A Cura', 142, 1, 7, 280920, 9260588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1732, N'Aquilo', 143, 1, 7, 246073, 8167819, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1733, N'Atr�s Do Trio El�trico', 142, 1, 7, 149080, 4917615, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1734, N'Senta A Pua', 143, 1, 7, 217547, 7205844, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1735, N'Ro-Que-Se-Da-Ne', 143, 1, 7, 146703, 4805897, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1736, N'Tudo Bem', 142, 1, 7, 196101, 6419139, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1737, N'Toda Forma De Amor', 142, 1, 7, 227813, 7496584, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1738, N'Tudo Igual', 143, 1, 7, 276035, 9201645, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1739, N'Fogo De Palha', 143, 1, 7, 246804, 8133732, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1740, N'Sereia', 142, 1, 7, 278047, 9121087, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1741, N'Assaltaram A Gram�tica', 143, 1, 7, 261041, 8698959, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1742, N'Se Voc� Pensa', 142, 1, 7, 195996, 6552490, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1743, N'L� Vem O Sol (Here Comes The Sun)', 142, 1, 7, 189492, 6229645, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1744, N'O �ltimo Rom�ntico (Ao Vivo)', 143, 1, 7, 231993, 7692697, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1745, N'Pseudo Silk Kimono', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 134739, 4334038, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1746, N'Kayleigh', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 234605, 7716005, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1747, N'Lavender', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 153417, 4999814, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1748, N'Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 356493, 11791068, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1749, N'Heart Of Lothian: Wide Boy / Curtain Call', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 366053, 11893723, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1750, N'Waterhole (Expresso Bongo)', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 133093, 4378835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1751, N'Lords Of The Backstage', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 112875, 3741319, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1752, N'Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 569704, 18578995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1753, N'Childhoods End?', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 272796, 9015366, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1754, N'White Feather', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 143595, 4711776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1755, N'Arrepio', 145, 1, 7, N'Carlinhos Brown', 136254, 4511390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1756, N'Magamalabares', 145, 1, 7, N'Carlinhos Brown', 215875, 7183757, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1757, N'Chuva No Brejo', 145, 1, 7, N'Morais', 145606, 4857761, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1758, N'C�rebro Eletr�nico', 145, 1, 7, N'Gilberto Gil', 172800, 5760864, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1759, N'Tempos Modernos', 145, 1, 7, N'Lulu Santos', 183066, 6066234, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1760, N'Mara��', 145, 1, 7, N'Carlinhos Brown', 230008, 7621482, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1761, N'Blanco', 145, 1, 7, N'Marisa Monte/poema de Octavio Paz/vers�o: Haroldo de Campos', 45191, 1454532, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1762, N'Panis Et Circenses', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 192339, 6318373, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1763, N'De Noite Na Cama', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 209005, 7012658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1764, N'Beija Eu', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 197276, 6512544, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1765, N'Give Me Love', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 249808, 8196331, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1766, N'Ainda Lembro', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 218801, 7211247, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1767, N'A Menina Dan�a', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 129410, 4326918, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1768, N'Dan�a Da Solid�o', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 203520, 6699368, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1769, N'Ao Meu Redor', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 275591, 9158834, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1770, N'Bem Leve', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 159190, 5246835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1771, N'Segue O Seco', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 178207, 5922018, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1772, N'O Xote Das Meninas', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 291866, 9553228, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1773, N'Wherever I Lay My Hat', 146, 1, 14, 136986, 4477321, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1774, N'Get My Hands On Some Lovin''', 146, 1, 14, 149054, 4860380, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1775, N'No Good Without You', 146, 1, 14, N'William "Mickey" Stevenson', 161410, 5259218, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1776, N'You''ve Been A Long Time Coming', 146, 1, 14, N'Brian Holland/Eddie Holland/Lamont Dozier', 137221, 4437949, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1777, N'When I Had Your Love', 146, 1, 14, N'Robert Rogers/Warren "Pete" Moore/William "Mickey" Stevenson', 152424, 4972815, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1778, N'You''re What''s Happening (In The World Today)', 146, 1, 14, N'Allen Story/George Gordy/Robert Gordy', 142027, 4631104, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1779, N'Loving You Is Sweeter Than Ever', 146, 1, 14, N'Ivy Hunter/Stevie Wonder', 166295, 5377546, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1780, N'It''s A Bitter Pill To Swallow', 146, 1, 14, N'Smokey Robinson/Warren "Pete" Moore', 194821, 6477882, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1781, N'Seek And You Shall Find', 146, 1, 14, N'Ivy Hunter/William "Mickey" Stevenson', 223451, 7306719, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1782, N'Gonna Keep On Tryin'' Till I Win Your Love', 146, 1, 14, N'Barrett Strong/Norman Whitfield', 176404, 5789945, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1783, N'Gonna Give Her All The Love I''ve Got', 146, 1, 14, N'Barrett Strong/Norman Whitfield', 210886, 6893603, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1784, N'I Wish It Would Rain', 146, 1, 14, N'Barrett Strong/Norman Whitfield/Roger Penzabene', 172486, 5647327, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1785, N'Abraham, Martin And John', 146, 1, 14, N'Dick Holler', 273057, 8888206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1786, N'Save The Children', 146, 1, 14, N'Al Cleveland/Marvin Gaye/Renaldo Benson', 194821, 6342021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1787, N'You Sure Love To Ball', 146, 1, 14, N'Marvin Gaye', 218540, 7217872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1788, N'Ego Tripping Out', 146, 1, 14, N'Marvin Gaye', 314514, 10383887, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1789, N'Praise', 146, 1, 14, N'Marvin Gaye', 235833, 7839179, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1790, N'Heavy Love Affair', 146, 1, 14, N'Marvin Gaye', 227892, 7522232, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1791, N'Down Under', 147, 1, 1, 222171, 7366142, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1792, N'Overkill', 147, 1, 1, 225410, 7408652, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1793, N'Be Good Johnny', 147, 1, 1, 216320, 7139814, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1794, N'Everything I Need', 147, 1, 1, 216476, 7107625, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1795, N'Down by the Sea', 147, 1, 1, 408163, 13314900, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1796, N'Who Can It Be Now?', 147, 1, 1, 202396, 6682850, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1797, N'It''s a Mistake', 147, 1, 1, 273371, 8979965, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1798, N'Dr. Heckyll & Mr. Jive', 147, 1, 1, 278465, 9110403, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1799, N'Shakes and Ladders', 147, 1, 1, 198008, 6560753, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (1800, N'No Sign of Yesterday', 147, 1, 1, 362004, 11829011, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1801, N'Enter Sandman', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 332251, 10852002, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1802, N'Sad But True', 148, 1, 3, N'Ulrich', 324754, 10541258, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1803, N'Holier Than Thou', 148, 1, 3, N'Ulrich', 227892, 7462011, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1804, N'The Unforgiven', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 387082, 12646886, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1805, N'Wherever I May Roam', 148, 1, 3, N'Ulrich', 404323, 13161169, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1806, N'Don''t Tread On Me', 148, 1, 3, N'Ulrich', 240483, 7827907, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1807, N'Through The Never', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 244375, 8024047, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1808, N'Nothing Else Matters', 148, 1, 3, N'Ulrich', 388832, 12606241, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1809, N'Of Wolf And Man', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 256835, 8339785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1810, N'The God That Failed', 148, 1, 3, N'Ulrich', 308610, 10055959, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1811, N'My Friend Of Misery', 148, 1, 3, N'James Hetfield, Lars Ulrich and Jason Newsted', 409547, 13293515, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1812, N'The Struggle Within', 148, 1, 3, N'Ulrich', 234240, 7654052, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1813, N'Helpless', 149, 1, 3, N'Harris/Tatler', 398315, 12977902, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1814, N'The Small Hours', 149, 1, 3, N'Holocaust', 403435, 13215133, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1815, N'The Wait', 149, 1, 3, N'Killing Joke', 295418, 9688418, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1816, N'Crash Course In Brain Surgery', 149, 1, 3, N'Bourge/Phillips/Shelley', 190406, 6233729, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1817, N'Last Caress/Green Hell', 149, 1, 3, N'Danzig', 209972, 6854313, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1818, N'Am I Evil?', 149, 1, 3, N'Harris/Tatler', 470256, 15387219, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1819, N'Blitzkrieg', 149, 1, 3, N'Jones/Sirotto/Smith', 216685, 7090018, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1820, N'Breadfan', 149, 1, 3, N'Bourge/Phillips/Shelley', 341551, 11100130, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1821, N'The Prince', 149, 1, 3, N'Harris/Tatler', 265769, 8624492, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1822, N'Stone Cold Crazy', 149, 1, 3, N'Deacon/May/Mercury/Taylor', 137717, 4514830, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1823, N'So What', 149, 1, 3, N'Culmer/Exalt', 189152, 6162894, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1824, N'Killing Time', 149, 1, 3, N'Sweet Savage', 183693, 6021197, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1825, N'Overkill', 149, 1, 3, N'Clarke/Kilmister/Tayler', 245133, 7971330, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1826, N'Damage Case', 149, 1, 3, N'Clarke/Farren/Kilmister/Tayler', 220212, 7212997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1827, N'Stone Dead Forever', 149, 1, 3, N'Clarke/Kilmister/Tayler', 292127, 9556060, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1828, N'Too Late Too Late', 149, 1, 3, N'Clarke/Kilmister/Tayler', 192052, 6276291, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1829, N'Hit The Lights', 150, 1, 3, N'James Hetfield, Lars Ulrich', 257541, 8357088, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1830, N'The Four Horsemen', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 433188, 14178138, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1831, N'Motorbreath', 150, 1, 3, N'James Hetfield', 188395, 6153933, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1832, N'Jump In The Fire', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 281573, 9135755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1833, N'(Anesthesia) Pulling Teeth', 150, 1, 3, N'Cliff Burton', 254955, 8234710, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1834, N'Whiplash', 150, 1, 3, N'James Hetfield, Lars Ulrich', 249208, 8102839, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1835, N'Phantom Lord', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 302053, 9817143, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1836, N'No Remorse', 150, 1, 3, N'James Hetfield, Lars Ulrich', 386795, 12672166, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1837, N'Seek & Destroy', 150, 1, 3, N'James Hetfield, Lars Ulrich', 415817, 13452301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1838, N'Metal Militia', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 311327, 10141785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1839, N'Ain''t My Bitch', 151, 1, 3, N'James Hetfield, Lars Ulrich', 304457, 9931015, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1840, N'2 X 4', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 328254, 10732251, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1841, N'The House Jack Built', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 398942, 13005152, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1842, N'Until It Sleeps', 151, 1, 3, N'James Hetfield, Lars Ulrich', 269740, 8837394, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1843, N'King Nothing', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 328097, 10681477, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1844, N'Hero Of The Day', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 261982, 8540298, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1845, N'Bleeding Me', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 497998, 16249420, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1846, N'Cure', 151, 1, 3, N'James Hetfield, Lars Ulrich', 294347, 9648615, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1847, N'Poor Twisted Me', 151, 1, 3, N'James Hetfield, Lars Ulrich', 240065, 7854349, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1848, N'Wasted My Hate', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 237296, 7762300, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1849, N'Mama Said', 151, 1, 3, N'James Hetfield, Lars Ulrich', 319764, 10508310, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1850, N'Thorn Within', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 351738, 11486686, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1851, N'Ronnie', 151, 1, 3, N'James Hetfield, Lars Ulrich', 317204, 10390947, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1852, N'The Outlaw Torn', 151, 1, 3, N'James Hetfield, Lars Ulrich', 588721, 19286261, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1853, N'Battery', 152, 1, 3, N'J.Hetfield/L.Ulrich', 312424, 10229577, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1854, N'Master Of Puppets', 152, 1, 3, N'K.Hammett', 515239, 16893720, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1855, N'The Thing That Should Not Be', 152, 1, 3, N'K.Hammett', 396199, 12952368, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1856, N'Welcome Home (Sanitarium)', 152, 1, 3, N'K.Hammett', 387186, 12679965, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1857, N'Disposable Heroes', 152, 1, 3, N'J.Hetfield/L.Ulrich', 496718, 16135560, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1858, N'Leper Messiah', 152, 1, 3, N'C.Burton', 347428, 11310434, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1859, N'Orion', 152, 1, 3, N'K.Hammett', 500062, 16378477, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1860, N'Damage Inc.', 152, 1, 3, N'K.Hammett', 330919, 10725029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1861, N'Fuel', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 269557, 8876811, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1862, N'The Memory Remains', 153, 1, 3, N'Hetfield, Ulrich', 279353, 9110730, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1863, N'Devil''s Dance', 153, 1, 3, N'Hetfield, Ulrich', 318955, 10414832, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1864, N'The Unforgiven II', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 395520, 12886474, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1865, N'Better Than You', 153, 1, 3, N'Hetfield, Ulrich', 322899, 10549070, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1866, N'Slither', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 313103, 10199789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1867, N'Carpe Diem Baby', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 372480, 12170693, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1868, N'Bad Seed', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 245394, 8019586, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1869, N'Where The Wild Things Are', 153, 1, 3, N'Hetfield, Ulrich, Newsted', 414380, 13571280, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1870, N'Prince Charming', 153, 1, 3, N'Hetfield, Ulrich', 365061, 12009412, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1871, N'Low Man''s Lyric', 153, 1, 3, N'Hetfield, Ulrich', 457639, 14855583, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1872, N'Attitude', 153, 1, 3, N'Hetfield, Ulrich', 315898, 10335734, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1873, N'Fixxxer', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 496065, 16190041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1874, N'Fight Fire With Fire', 154, 1, 3, N'Metallica', 285753, 9420856, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1875, N'Ride The Lightning', 154, 1, 3, N'Metallica', 397740, 13055884, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1876, N'For Whom The Bell Tolls', 154, 1, 3, N'Metallica', 311719, 10159725, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1877, N'Fade To Black', 154, 1, 3, N'Metallica', 414824, 13531954, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1878, N'Trapped Under Ice', 154, 1, 3, N'Metallica', 244532, 7975942, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1879, N'Escape', 154, 1, 3, N'Metallica', 264359, 8652332, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1880, N'Creeping Death', 154, 1, 3, N'Metallica', 396878, 12955593, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1881, N'The Call Of Ktulu', 154, 1, 3, N'Metallica', 534883, 17486240, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1882, N'Frantic', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 350458, 11510849, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1883, N'St. Anger', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 441234, 14363779, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1884, N'Some Kind Of Monster', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 505626, 16557497, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1885, N'Dirty Window', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 324989, 10670604, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1886, N'Invisible Kid', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 510197, 16591800, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1887, N'My World', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 345626, 11253756, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1888, N'Shoot Me Again', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 430210, 14093551, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1889, N'Sweet Amber', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 327235, 10616595, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1890, N'The Unnamed Feeling', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 429479, 14014582, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1891, N'Purify', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 314017, 10232537, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1892, N'All Within My Hands', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 527986, 17162741, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1893, N'Blackened', 156, 1, 3, N'James Hetfield, Lars Ulrich & Jason Newsted', 403382, 13254874, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1894, N'...And Justice For All', 156, 1, 3, N'James Hetfield, Lars Ulrich & Kirk Hammett', 585769, 19262088, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1895, N'Eye Of The Beholder', 156, 1, 3, N'James Hetfield, Lars Ulrich & Kirk Hammett', 385828, 12747894, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1896, N'One', 156, 1, 3, N'James Hetfield & Lars Ulrich', 446484, 14695721, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1897, N'The Shortest Straw', 156, 1, 3, N'James Hetfield and Lars Ulrich', 395389, 13013990, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1898, N'Harvester Of Sorrow', 156, 1, 3, N'James Hetfield and Lars Ulrich', 345547, 11377339, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1899, N'The Frayed Ends Of Sanity', 156, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 464039, 15198986, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1900, N'To Live Is To Die', 156, 1, 3, N'James Hetfield, Lars Ulrich and Cliff Burton', 588564, 19243795, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1901, N'Dyers Eve', 156, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 313991, 10302828, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1902, N'Springsville', 157, 1, 2, N'J. Carisi', 207725, 6776219, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1903, N'The Maids Of Cadiz', 157, 1, 2, N'L. Delibes', 233534, 7505275, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1904, N'The Duke', 157, 1, 2, N'Dave Brubeck', 214961, 6977626, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1905, N'My Ship', 157, 1, 2, N'Ira Gershwin, Kurt Weill', 268016, 8581144, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1906, N'Miles Ahead', 157, 1, 2, N'Miles Davis, Gil Evans', 209893, 6807707, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1907, N'Blues For Pablo', 157, 1, 2, N'Gil Evans', 318328, 10218398, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1908, N'New Rhumba', 157, 1, 2, N'A. Jamal', 276871, 8980400, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1909, N'The Meaning Of The Blues', 157, 1, 2, N'R. Troup, L. Worth', 168594, 5395412, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1910, N'Lament', 157, 1, 2, N'J.J. Johnson', 134191, 4293394, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1911, N'I Don''t Wanna Be Kissed (By Anyone But You)', 157, 1, 2, N'H. Spina, J. Elliott', 191320, 6219487, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1912, N'Springsville (Alternate Take)', 157, 1, 2, N'J. Carisi', 196388, 6382079, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1913, N'Blues For Pablo (Alternate Take)', 157, 1, 2, N'Gil Evans', 212558, 6900619, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1914, N'The Meaning Of The Blues/Lament (Alternate Take)', 157, 1, 2, N'J.J. Johnson/R. Troup, L. Worth', 309786, 9912387, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1915, N'I Don''t Wanna Be Kissed (By Anyone But You) (Alternate Take)', 157, 1, 2, N'H. Spina, J. Elliott', 192078, 6254796, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1916, N'Cora��o De Estudante', 158, 1, 7, N'Wagner Tiso, Milton Nascimento', 238550, 7797308, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1917, N'A Noite Do Meu Bem', 158, 1, 7, N'Dolores Duran', 220081, 7125225, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1918, N'Paisagem Na Janela', 158, 1, 7, N'L� Borges, Fernando Brant', 197694, 6523547, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1919, N'Cuitelinho', 158, 1, 7, N'Folclore', 209397, 6803970, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1920, N'Caxang�', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 245551, 8144179, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1921, N'Nos Bailes Da Vida', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 275748, 9126170, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1922, N'Menestrel Das Alagoas', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 199758, 6542289, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1923, N'Brasil', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 155428, 5252560, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1924, N'Can��o Do Novo Mundo', 158, 1, 7, N'Beto Guedes, Ronaldo Bastos', 215353, 7032626, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1925, N'Um Gosto De Sol', 158, 1, 7, N'Milton Nascimento, Ronaldo Bastos', 307200, 9893875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1926, N'Solar', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 156212, 5098288, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1927, N'Para Lennon E McCartney', 158, 1, 7, N'L� Borges, M�rcio Borges, Fernando Brant', 321828, 10626920, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1928, N'Maria, Maria', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 72463, 2371543, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1929, N'Minas', 159, 1, 7, N'Milton Nascimento, Caetano Veloso', 152293, 4921056, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1930, N'F� Cega, Faca Amolada', 159, 1, 7, N'Milton Nascimento, Ronaldo Bastos', 278099, 9258649, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1931, N'Beijo Partido', 159, 1, 7, N'Toninho Horta', 229564, 7506969, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1932, N'Saudade Dos Avi�es Da Panair (Conversando No Bar)', 159, 1, 7, N'Milton Nascimento, Fernando Brant', 268721, 8805088, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1933, N'Gran Circo', 159, 1, 7, N'Milton Nascimento, M�rcio Borges', 251297, 8237026, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1934, N'Ponta de Areia', 159, 1, 7, N'Milton Nascimento, Fernando Brant', 272796, 8874285, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1935, N'Trastevere', 159, 1, 7, N'Milton Nascimento, Ronaldo Bastos', 265665, 8708399, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1936, N'Idolatrada', 159, 1, 7, N'Milton Nascimento, Fernando Brant', 286249, 9426153, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1937, N'Leila (Venha Ser Feliz)', 159, 1, 7, N'Milton Nascimento', 209737, 6898507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1938, N'Paula E Bebeto', 159, 1, 7, N'Milton Nascimento, Caetano Veloso', 135732, 4583956, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1939, N'Simples', 159, 1, 7, N'Nelson Angelo', 133093, 4326333, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1940, N'Norwegian Wood', 159, 1, 7, N'John Lennon, Paul McCartney', 413910, 13520382, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1941, N'Caso Voc� Queira Saber', 159, 1, 7, N'Beto Guedes, M�rcio Borges', 205688, 6787901, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1942, N'Ace Of Spades', 160, 1, 3, N'Clarke/Kilmister/Taylor', 169926, 5523552, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1943, N'Love Me Like A Reptile', 160, 1, 3, N'Clarke/Kilmister/Taylor', 203546, 6616389, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1944, N'Shoot You In The Back', 160, 1, 3, N'Clarke/Kilmister/Taylor', 160026, 5175327, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1945, N'Live To Win', 160, 1, 3, N'Clarke/Kilmister/Taylor', 217626, 7102182, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1946, N'Fast And Loose', 160, 1, 3, N'Clarke/Kilmister/Taylor', 203337, 6643350, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1947, N'(We Are) The Road Crew', 160, 1, 3, N'Clarke/Kilmister/Taylor', 192600, 6283035, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1948, N'Fire Fire', 160, 1, 3, N'Clarke/Kilmister/Taylor', 164675, 5416114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1949, N'Jailbait', 160, 1, 3, N'Clarke/Kilmister/Taylor', 213916, 6983609, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1950, N'Dance', 160, 1, 3, N'Clarke/Kilmister/Taylor', 158432, 5155099, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1951, N'Bite The Bullet', 160, 1, 3, N'Clarke/Kilmister/Taylor', 98115, 3195536, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1952, N'The Chase Is Better Than The Catch', 160, 1, 3, N'Clarke/Kilmister/Taylor', 258403, 8393310, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1953, N'The Hammer', 160, 1, 3, N'Clarke/Kilmister/Taylor', 168071, 5543267, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1954, N'Dirty Love', 160, 1, 3, N'Clarke/Kilmister/Taylor', 176457, 5805241, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1955, N'Please Don''t Touch', 160, 1, 3, N'Heath/Robinson', 169926, 5557002, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1956, N'Emergency', 160, 1, 3, N'Dufort/Johnson/McAuliffe/Williams', 180427, 5828728, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1957, N'Kir Royal', 161, 1, 16, N'M�nica Marianno', 234788, 7706552, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1958, N'O Que Vai Em Meu Cora��o', 161, 1, 16, N'M�nica Marianno', 255373, 8366846, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1959, N'Aos Le�es', 161, 1, 16, N'M�nica Marianno', 234684, 7790574, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1960, N'Dois �ndios', 161, 1, 16, N'M�nica Marianno', 219271, 7213072, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1961, N'Noite Negra', 161, 1, 16, N'M�nica Marianno', 206811, 6819584, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1962, N'Beijo do Olhar', 161, 1, 16, N'M�nica Marianno', 252682, 8369029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1963, N'� Fogo', 161, 1, 16, N'M�nica Marianno', 194873, 6501520, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1964, N'J� Foi', 161, 1, 16, N'M�nica Marianno', 245681, 8094872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1965, N'S� Se For Pelo Cabelo', 161, 1, 16, N'M�nica Marianno', 238288, 8006345, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1966, N'No Clima', 161, 1, 16, N'M�nica Marianno', 249495, 8362040, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1967, N'A Mo�a e a Chuva', 161, 1, 16, N'M�nica Marianno', 274625, 8929357, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1968, N'Demorou!', 161, 1, 16, N'M�nica Marianno', 39131, 1287083, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1969, N'Bitter Pill', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 266814, 8666786, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1970, N'Enslaved', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee', 269844, 8789966, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1971, N'Girls, Girls, Girls', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee', 270288, 8874814, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1972, N'Kickstart My Heart', 162, 1, 3, N'Nikki Sixx', 283559, 9237736, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1973, N'Wild Side', 162, 1, 3, N'Nikki Sixx/Tommy Lee/Vince Neil', 276767, 9116997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1974, N'Glitter', 162, 1, 3, N'Bryan Adams/Nikki Sixx/Scott Humphrey', 340114, 11184094, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1975, N'Dr. Feelgood', 162, 1, 3, N'Mick Mars/Nikki Sixx', 282618, 9281875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1976, N'Same Ol'' Situation', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 254511, 8283958, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1977, N'Home Sweet Home', 162, 1, 3, N'Nikki Sixx/Tommy Lee/Vince Neil', 236904, 7697538, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1978, N'Afraid', 162, 1, 3, N'Nikki Sixx', 248006, 8077464, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1979, N'Don''t Go Away Mad (Just Go Away)', 162, 1, 3, N'Mick Mars/Nikki Sixx', 279980, 9188156, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1980, N'Without You', 162, 1, 3, N'Mick Mars/Nikki Sixx', 268956, 8738371, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1981, N'Smokin'' in The Boys Room', 162, 1, 3, N'Cub Coda/Michael Lutz', 206837, 6735408, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1982, N'Primal Scream', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 286197, 9421164, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1983, N'Too Fast For Love', 162, 1, 3, N'Nikki Sixx', 200829, 6580542, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1984, N'Looks That Kill', 162, 1, 3, N'Nikki Sixx', 240979, 7831122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1985, N'Shout At The Devil', 162, 1, 3, N'Nikki Sixx', 221962, 7281974, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1986, N'Intro', 163, 1, 1, N'Kurt Cobain', 52218, 1688527, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1987, N'School', 163, 1, 1, N'Kurt Cobain', 160235, 5234885, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1988, N'Drain You', 163, 1, 1, N'Kurt Cobain', 215196, 7013175, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1989, N'Aneurysm', 163, 1, 1, N'Nirvana', 271516, 8862545, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1990, N'Smells Like Teen Spirit', 163, 1, 1, N'Nirvana', 287190, 9425215, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1991, N'Been A Son', 163, 1, 1, N'Kurt Cobain', 127555, 4170369, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1992, N'Lithium', 163, 1, 1, N'Kurt Cobain', 250017, 8148800, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1993, N'Sliver', 163, 1, 1, N'Kurt Cobain', 116218, 3784567, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1994, N'Spank Thru', 163, 1, 1, N'Kurt Cobain', 190354, 6186487, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1995, N'Scentless Apprentice', 163, 1, 1, N'Nirvana', 211200, 6898177, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1996, N'Heart-Shaped Box', 163, 1, 1, N'Kurt Cobain', 281887, 9210982, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1997, N'Milk It', 163, 1, 1, N'Kurt Cobain', 225724, 7406945, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1998, N'Negative Creep', 163, 1, 1, N'Kurt Cobain', 163761, 5354854, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (1999, N'Polly', 163, 1, 1, N'Kurt Cobain', 149995, 4885331, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2000, N'Breed', 163, 1, 1, N'Kurt Cobain', 208378, 6759080, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2001, N'Tourette''s', 163, 1, 1, N'Kurt Cobain', 115591, 3753246, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2002, N'Blew', 163, 1, 1, N'Kurt Cobain', 216346, 7096936, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2003, N'Smells Like Teen Spirit', 164, 1, 1, N'Kurt Cobain', 301296, 9823847, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2004, N'In Bloom', 164, 1, 1, N'Kurt Cobain', 254928, 8327077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2005, N'Come As You Are', 164, 1, 1, N'Kurt Cobain', 219219, 7123357, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2006, N'Breed', 164, 1, 1, N'Kurt Cobain', 183928, 5984812, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2007, N'Lithium', 164, 1, 1, N'Kurt Cobain', 256992, 8404745, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2008, N'Polly', 164, 1, 1, N'Kurt Cobain', 177031, 5788407, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2009, N'Territorial Pissings', 164, 1, 1, N'Kurt Cobain', 143281, 4613880, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2010, N'Drain You', 164, 1, 1, N'Kurt Cobain', 223973, 7273440, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2011, N'Lounge Act', 164, 1, 1, N'Kurt Cobain', 156786, 5093635, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2012, N'Stay Away', 164, 1, 1, N'Kurt Cobain', 212636, 6956404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2013, N'On A Plain', 164, 1, 1, N'Kurt Cobain', 196440, 6390635, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2014, N'Something In The Way', 164, 1, 1, N'Kurt Cobain', 230556, 7472168, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2015, N'Time', 165, 1, 1, 96888, 3124455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2016, N'P.S.Apare�a', 165, 1, 1, 209188, 6842244, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2017, N'Sangue Latino', 165, 1, 1, 223033, 7354184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2018, N'Folhas Secas', 165, 1, 1, 161253, 5284522, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2019, N'Poeira', 165, 1, 1, 267075, 8784141, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2020, N'M�gica', 165, 1, 1, 233743, 7627348, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2021, N'Quem Mata A Mulher Mata O Melhor', 165, 1, 1, 262791, 8640121, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2022, N'Mundar�u', 165, 1, 1, 217521, 7158975, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2023, N'O Bra�o Da Minha Guitarra', 165, 1, 1, 258351, 8469531, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2024, N'Deus', 165, 1, 1, 284160, 9188110, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2025, N'M�e Terra', 165, 1, 1, 306625, 9949269, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2026, N'�s Vezes', 165, 1, 1, 330292, 10706614, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2027, N'Menino De Rua', 165, 1, 1, 329795, 10784595, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2028, N'Prazer E F�', 165, 1, 1, 214831, 7031383, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2029, N'Elza', 165, 1, 1, 199105, 6517629, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2030, N'Requebra', 166, 1, 7, 240744, 8010811, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2031, N'Nossa Gente (Avisa L�)', 166, 1, 7, 188212, 6233201, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2032, N'Olodum - Alegria Geral', 166, 1, 7, 233404, 7754245, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2033, N'Madag�scar Olodum', 166, 1, 7, 252264, 8270584, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2034, N'Fara� Divindade Do Egito', 166, 1, 7, 228571, 7523278, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2035, N'Todo Amor (Asas Da Liberdade)', 166, 1, 7, 245133, 8121434, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2036, N'Den�ncia', 166, 1, 7, 159555, 5327433, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2037, N'Olodum, A Banda Do Pel�', 166, 1, 7, 146599, 4900121, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2038, N'Cartao Postal', 166, 1, 7, 211565, 7082301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2039, N'Jeito Faceiro', 166, 1, 7, 217286, 7233608, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2040, N'Revolta Olodum', 166, 1, 7, 230191, 7557065, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2041, N'Reggae Odoy�', 166, 1, 7, 224470, 7499807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2042, N'Protesto Do Olodum (Ao Vivo)', 166, 1, 7, 206001, 6766104, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2043, N'Olodum - Smile (Instrumental)', 166, 1, 7, 235833, 7871409, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2044, N'Vulc�o Dub - Fui Eu', 167, 1, 7, N'Bi Ribeira/Herbert Vianna/Jo�o Barone', 287059, 9495202, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2045, N'O Trem Da Juventude', 167, 1, 7, N'Herbert Vianna', 225880, 7507655, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2046, N'Manguetown', 167, 1, 7, N'Chico Science/Dengue/L�cio Maia', 162925, 5382018, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2047, N'Um Amor, Um Lugar', 167, 1, 7, N'Herbert Vianna', 184555, 6090334, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2048, N'Bora-Bora', 167, 1, 7, N'Herbert Vianna', 182987, 6036046, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2049, N'Vai Valer', 167, 1, 7, N'Herbert Vianna', 206524, 6899778, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2050, N'I Feel Good (I Got You) - Sossego', 167, 1, 7, N'James Brown/Tim Maia', 244976, 8091302, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2051, N'Uns Dias', 167, 1, 7, N'Herbert Vianna', 240796, 7931552, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2052, N'Sincero Breu', 167, 1, 7, N'C. A./C.A./Celso Alvim/Herbert Vianna/M�rio Moura/Pedro Lu�s/Sidon Silva', 208013, 6921669, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2053, N'Meu Erro', 167, 1, 7, N'Herbert Vianna', 188577, 6192791, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2054, N'Selvagem', 167, 1, 7, N'Bi Ribeiro/Herbert Vianna/Jo�o Barone', 148558, 4942831, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2055, N'Bras�lia 5:31', 167, 1, 7, N'Herbert Vianna', 178337, 5857116, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2056, N'Tendo A Lua', 167, 1, 7, N'Herbert Vianna/Tet Tillett', 198922, 6568180, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2057, N'Que Pa�s � Este', 167, 1, 7, N'Renato Russo', 216685, 7137865, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2058, N'Navegar Impreciso', 167, 1, 7, N'Herbert Vianna', 262870, 8761283, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2059, N'Feira Moderna', 167, 1, 7, N'Beto Guedes/Fernando Brant/L Borges', 182517, 6001793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2060, N'Tequila - Lourinha Bombril (Parate Y Mira)', 167, 1, 7, N'Bahiano/Chuck Rio/Diego Blanco/Herbert Vianna', 255738, 8514961, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2061, N'Vamo Bat� Lata', 167, 1, 7, N'Herbert Vianna', 228754, 7585707, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2062, N'Life During Wartime', 167, 1, 7, N'Chris Frantz/David Byrne/Jerry Harrison/Tina Weymouth', 259186, 8543439, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2063, N'Nebulosa Do Amor', 167, 1, 7, N'Herbert Vianna', 203415, 6732496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2064, N'Caleidosc�pio', 167, 1, 7, N'Herbert Vianna', 256522, 8484597, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2065, N'Trac Trac', 168, 1, 7, N'Fito Paez/Herbert Vianna', 231653, 7638256, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2066, N'Tendo A Lua', 168, 1, 7, N'Herbert Vianna/Tet� Tillet', 219585, 7342776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2067, N'Mensagen De Amor (2000)', 168, 1, 7, N'Herbert Vianna', 183588, 6061324, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2068, N'Lourinha Bombril', 168, 1, 7, N'Bahiano/Diego Blanco/Herbert Vianna', 159895, 5301882, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2069, N'La Bella Luna', 168, 1, 7, N'Herbert Vianna', 192653, 6428598, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2070, N'Busca Vida', 168, 1, 7, N'Herbert Vianna', 176431, 5798663, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2071, N'Uma Brasileira', 168, 1, 7, N'Carlinhos Brown/Herbert Vianna', 217573, 7280574, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2072, N'Luis Inacio (300 Picaretas)', 168, 1, 7, N'Herbert Vianna', 198191, 6576790, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2073, N'Saber Amar', 168, 1, 7, N'Herbert Vianna', 202788, 6723733, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2074, N'Ela Disse Adeus', 168, 1, 7, N'Herbert Vianna', 226298, 7608999, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2075, N'O Amor Nao Sabe Esperar', 168, 1, 7, N'Herbert Vianna', 241084, 8042534, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2076, N'Aonde Quer Que Eu Va', 168, 1, 7, N'Herbert Vianna/Paulo S�rgio Valle', 258089, 8470121, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2077, N'Caleidosc�pio', 169, 1, 7, 211330, 7000017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2078, N'�culos', 169, 1, 7, 219271, 7262419, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2079, N'Cinema Mudo', 169, 1, 7, 227918, 7612168, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2080, N'Alagados', 169, 1, 7, 302393, 10255463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2081, N'Lanterna Dos Afogados', 169, 1, 7, 190197, 6264318, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2082, N'Mel� Do Marinheiro', 169, 1, 7, 208352, 6905668, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2083, N'Vital E Sua Moto', 169, 1, 7, 210207, 6902878, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2084, N'O Beco', 169, 1, 7, 189178, 6293184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2085, N'Meu Erro', 169, 1, 7, 208431, 6893533, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2086, N'Perplexo', 169, 1, 7, 161175, 5355013, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2087, N'Me Liga', 169, 1, 7, 229590, 7565912, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2088, N'Quase Um Segundo', 169, 1, 7, 275644, 8971355, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2089, N'Selvagem', 169, 1, 7, 245890, 8141084, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2090, N'Romance Ideal', 169, 1, 7, 250070, 8260477, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2091, N'Ser� Que Vai Chover?', 169, 1, 7, 337057, 11133830, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2092, N'SKA', 169, 1, 7, 148871, 4943540, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2093, N'Bark at the Moon', 170, 2, 1, N'O. Osbourne', 257252, 4601224, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2094, N'I Don''t Know', 171, 2, 1, N'B. Daisley, O. Osbourne & R. Rhoads', 312980, 5525339, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2095, N'Crazy Train', 171, 2, 1, N'B. Daisley, O. Osbourne & R. Rhoads', 295960, 5255083, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2096, N'Flying High Again', 172, 2, 1, N'L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads', 290851, 5179599, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2097, N'Mama, I''m Coming Home', 173, 2, 1, N'L. Kilmister, O. Osbourne & Z. Wylde', 251586, 4302390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2098, N'No More Tears', 173, 2, 1, N'J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde', 444358, 7362964, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2099, N'I Don''t Know', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 283088, 9207869, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2100, N'Crazy Train', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 322716, 10517408, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2101, N'Believer', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 308897, 10003794, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2102, N'Mr. Crowley', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 344241, 11184130, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2103, N'Flying High Again', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake', 261224, 8481822, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2104, N'Relvelation (Mother Earth)', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 349440, 11367866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2105, N'Steal Away (The Night)', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 485720, 15945806, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2106, N'Suicide Solution (With Guitar Solo)', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 467069, 15119938, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2107, N'Iron Man', 174, 1, 3, N'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 172120, 5609799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2108, N'Children Of The Grave', 174, 1, 3, N'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 357067, 11626740, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2109, N'Paranoid', 174, 1, 3, N'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 176352, 5729813, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2110, N'Goodbye To Romance', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 334393, 10841337, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2111, N'No Bone Movies', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 249208, 8095199, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2112, N'Dee', 174, 1, 3, N'R. Rhoads', 261302, 8555963, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2113, N'Shining In The Light', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 240796, 7951688, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2114, N'When The World Was Young', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 373394, 12198930, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2115, N'Upon A Golden Horse', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 232359, 7594829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2116, N'Blue Train', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 405028, 13170391, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2117, N'Please Read The Letter', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 262112, 8603372, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2118, N'Most High', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 336535, 10999203, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2119, N'Heart In Your Hand', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 230896, 7598019, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2120, N'Walking Into Clarksdale', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 318511, 10396315, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2121, N'Burning Up', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 321619, 10525136, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2122, N'When I Was A Child', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 345626, 11249456, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2123, N'House Of Love', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 335699, 10990880, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2124, N'Sons Of Freedom', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 246465, 8087944, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2125, N'United Colours', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 330266, 10939131, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2126, N'Slug', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 281469, 9295950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2127, N'Your Blue Room', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 328228, 10867860, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2128, N'Always Forever Now', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 383764, 12727928, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2129, N'A Different Kind Of Blue', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 120816, 3884133, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2130, N'Beach Sequence', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 212297, 6928259, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2131, N'Miss Sarajevo', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 340767, 11064884, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2132, N'Ito Okashi', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 205087, 6572813, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2133, N'One Minute Warning', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 279693, 9335453, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2134, N'Corpse (These Chains Are Way Too Long)', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 214909, 6920451, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2135, N'Elvis Ate America', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 180166, 5851053, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2136, N'Plot 180', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 221596, 7253729, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2137, N'Theme From The Swan', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 203911, 6638076, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2138, N'Theme From Let''s Go Native', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 186723, 6179777, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2139, N'Wrathchild', 177, 1, 1, N'Steve Harris', 170396, 5499390, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2140, N'Killers', 177, 1, 1, N'Paul Di''Anno/Steve Harris', 309995, 10009697, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2141, N'Prowler', 177, 1, 1, N'Steve Harris', 240274, 7782963, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2142, N'Murders In The Rue Morgue', 177, 1, 1, N'Steve Harris', 258638, 8360999, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2143, N'Women In Uniform', 177, 1, 1, N'Greg Macainsh', 189936, 6139651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2144, N'Remember Tomorrow', 177, 1, 1, N'Paul Di''Anno/Steve Harris', 326426, 10577976, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2145, N'Sanctuary', 177, 1, 1, N'David Murray/Paul Di''Anno/Steve Harris', 198844, 6423543, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2146, N'Running Free', 177, 1, 1, N'Paul Di''Anno/Steve Harris', 199706, 6483496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2147, N'Phantom Of The Opera', 177, 1, 1, N'Steve Harris', 418168, 13585530, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2148, N'Iron Maiden', 177, 1, 1, N'Steve Harris', 235232, 7600077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2149, N'Corduroy', 178, 1, 1, N'Pearl Jam & Eddie Vedder', 305293, 9991106, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2150, N'Given To Fly', 178, 1, 1, N'Eddie Vedder & Mike McCready', 233613, 7678347, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2151, N'Hail, Hail', 178, 1, 1, N'Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready', 223764, 7364206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2152, N'Daughter', 178, 1, 1, N'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 407484, 13420697, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2153, N'Elderly Woman Behind The Counter In A Small Town', 178, 1, 1, N'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 229328, 7509304, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2154, N'Untitled', 178, 1, 1, N'Pearl Jam', 122801, 3957141, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2155, N'MFC', 178, 1, 1, N'Eddie Vedder', 148192, 4817665, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2156, N'Go', 178, 1, 1, N'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 161541, 5290810, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2157, N'Red Mosquito', 178, 1, 1, N'Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder', 242991, 7944923, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2158, N'Even Flow', 178, 1, 1, N'Stone Gossard & Eddie Vedder', 317100, 10394239, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2159, N'Off He Goes', 178, 1, 1, N'Eddie Vedder', 343222, 11245109, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2160, N'Nothingman', 178, 1, 1, N'Jeff Ament & Eddie Vedder', 278595, 9107017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2161, N'Do The Evolution', 178, 1, 1, N'Eddie Vedder & Stone Gossard', 225462, 7377286, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2162, N'Better Man', 178, 1, 1, N'Eddie Vedder', 246204, 8019563, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2163, N'Black', 178, 1, 1, N'Stone Gossard & Eddie Vedder', 415712, 13580009, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2164, N'F*Ckin'' Up', 178, 1, 1, N'Neil Young', 377652, 12360893, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2165, N'Life Wasted', 179, 1, 4, N'Stone Gossard', 234344, 7610169, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2166, N'World Wide Suicide', 179, 1, 4, N'Eddie Vedder', 209188, 6885908, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2167, N'Comatose', 179, 1, 4, N'Mike McCready & Stone Gossard', 139990, 4574516, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2168, N'Severed Hand', 179, 1, 4, N'Eddie Vedder', 270341, 8817438, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2169, N'Marker In The Sand', 179, 1, 4, N'Mike McCready', 263235, 8656578, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2170, N'Parachutes', 179, 1, 4, N'Stone Gossard', 216555, 7074973, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2171, N'Unemployable', 179, 1, 4, N'Matt Cameron & Mike McCready', 184398, 6066542, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2172, N'Big Wave', 179, 1, 4, N'Jeff Ament', 178573, 5858788, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2173, N'Gone', 179, 1, 4, N'Eddie Vedder', 249547, 8158204, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2174, N'Wasted Reprise', 179, 1, 4, N'Stone Gossard', 53733, 1731020, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2175, N'Army Reserve', 179, 1, 4, N'Jeff Ament', 225567, 7393771, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2176, N'Come Back', 179, 1, 4, N'Eddie Vedder & Mike McCready', 329743, 10768701, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2177, N'Inside Job', 179, 1, 4, N'Eddie Vedder & Mike McCready', 428643, 14006924, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2178, N'Can''t Keep', 180, 1, 1, N'Eddie Vedder', 219428, 7215713, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2179, N'Save You', 180, 1, 1, N'Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard', 230112, 7609110, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2180, N'Love Boat Captain', 180, 1, 1, N'Eddie Vedder', 276453, 9016789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2181, N'Cropduster', 180, 1, 1, N'Matt Cameron', 231888, 7588928, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2182, N'Ghost', 180, 1, 1, N'Jeff Ament', 195108, 6383772, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2183, N'I Am Mine', 180, 1, 1, N'Eddie Vedder', 215719, 7086901, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2184, N'Thumbing My Way', 180, 1, 1, N'Eddie Vedder', 250226, 8201437, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2185, N'You Are', 180, 1, 1, N'Matt Cameron', 270863, 8938409, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2186, N'Get Right', 180, 1, 1, N'Matt Cameron', 158589, 5223345, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2187, N'Green Disease', 180, 1, 1, N'Eddie Vedder', 161253, 5375818, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2188, N'Help Help', 180, 1, 1, N'Jeff Ament', 215092, 7033002, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2189, N'Bushleager', 180, 1, 1, N'Stone Gossard', 237479, 7849757, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2190, N'1/2 Full', 180, 1, 1, N'Jeff Ament', 251010, 8197219, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2191, N'Arc', 180, 1, 1, N'Pearl Jam', 65593, 2099421, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2192, N'All or None', 180, 1, 1, N'Stone Gossard', 277655, 9104728, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2193, N'Once', 181, 1, 1, N'Stone Gossard', 231758, 7561555, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2194, N'Evenflow', 181, 1, 1, N'Stone Gossard', 293720, 9622017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2195, N'Alive', 181, 1, 1, N'Stone Gossard', 341080, 11176623, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2196, N'Why Go', 181, 1, 1, N'Jeff Ament', 200254, 6539287, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2197, N'Black', 181, 1, 1, N'Dave Krusen/Stone Gossard', 343823, 11213314, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2198, N'Jeremy', 181, 1, 1, N'Jeff Ament', 318981, 10447222, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2199, N'Oceans', 181, 1, 1, N'Jeff Ament/Stone Gossard', 162194, 5282368, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2200, N'Porch', 181, 1, 1, N'Eddie Vedder', 210520, 6877475, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2201, N'Garden', 181, 1, 1, N'Jeff Ament/Stone Gossard', 299154, 9740738, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2202, N'Deep', 181, 1, 1, N'Jeff Ament/Stone Gossard', 258324, 8432497, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2203, N'Release', 181, 1, 1, N'Jeff Ament/Mike McCready/Stone Gossard', 546063, 17802673, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2204, N'Go', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 193123, 6351920, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2205, N'Animal', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 169325, 5503459, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2206, N'Daughter', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 235598, 7824586, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2207, N'Glorified G', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 206968, 6772116, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2208, N'Dissident', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 215510, 7034500, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2209, N'W.M.A.', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 359262, 12037261, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2210, N'Blood', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 170631, 5551478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2211, N'Rearviewmirror', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 284186, 9321053, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2212, N'Rats', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 255425, 8341934, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2213, N'Elderly Woman Behind The Counter In A Small Town', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 196336, 6499398, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2214, N'Leash', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 189257, 6191560, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2215, N'Indifference', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 302053, 9756133, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2216, N'Johnny B. Goode', 141, 1, 8, 243200, 8092024, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2217, N'Don''t Look Back', 141, 1, 8, 221100, 7344023, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2218, N'Jah Seh No', 141, 1, 8, 276871, 9134476, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2219, N'I''m The Toughest', 141, 1, 8, 230191, 7657594, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2220, N'Nothing But Love', 141, 1, 8, 221570, 7335228, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2221, N'Buk-In-Hamm Palace', 141, 1, 8, 265665, 8964369, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2222, N'Bush Doctor', 141, 1, 8, 239751, 7942299, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2223, N'Wanted Dread And Alive', 141, 1, 8, 260310, 8670933, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2224, N'Mystic Man', 141, 1, 8, 353671, 11812170, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2225, N'Coming In Hot', 141, 1, 8, 213054, 7109414, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2226, N'Pick Myself Up', 141, 1, 8, 234684, 7788255, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2227, N'Crystal Ball', 141, 1, 8, 309733, 10319296, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2228, N'Equal Rights Downpresser Man', 141, 1, 8, 366733, 12086524, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2229, N'Speak To Me/Breathe', 183, 1, 1, N'Mason/Waters, Gilmour, Wright', 234213, 7631305, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2230, N'On The Run', 183, 1, 1, N'Gilmour, Waters', 214595, 7206300, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2231, N'Time', 183, 1, 1, N'Mason, Waters, Wright, Gilmour', 425195, 13955426, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2232, N'The Great Gig In The Sky', 183, 1, 1, N'Wright, Waters', 284055, 9147563, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2233, N'Money', 183, 1, 1, N'Waters', 391888, 12930070, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2234, N'Us And Them', 183, 1, 1, N'Waters, Wright', 461035, 15000299, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2235, N'Any Colour You Like', 183, 1, 1, N'Gilmour, Mason, Wright, Waters', 205740, 6707989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2236, N'Brain Damage', 183, 1, 1, N'Waters', 230556, 7497655, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2237, N'Eclipse', 183, 1, 1, N'Waters', 125361, 4065299, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2238, N'ZeroVinteUm', 184, 1, 17, 315637, 10426550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2239, N'Queimando Tudo', 184, 1, 17, 172591, 5723677, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2240, N'Hip Hop Rio', 184, 1, 17, 151536, 4991935, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2241, N'Bossa', 184, 1, 17, 29048, 967098, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2242, N'100% HardCore', 184, 1, 17, 165146, 5407744, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2243, N'Biruta', 184, 1, 17, 213263, 7108200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2244, N'M�o Na Cabe�a', 184, 1, 17, 202631, 6642753, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2245, N'O Bicho T� Pregando', 184, 1, 17, 171964, 5683369, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2246, N'Adoled (Ocean)', 184, 1, 17, 185103, 6009946, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2247, N'Seus Amigos', 184, 1, 17, 100858, 3304738, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2248, N'Paga Pau', 184, 1, 17, 197485, 6529041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2249, N'Rappers Reais', 184, 1, 17, 202004, 6684160, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2250, N'Nega Do Cabelo Duro', 184, 1, 17, 121808, 4116536, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2251, N'Hemp Family', 184, 1, 17, 205923, 6806900, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2252, N'Quem Me Cobrou?', 184, 1, 17, 121704, 3947664, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2253, N'Se Liga', 184, 1, 17, 410409, 13559173, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2254, N'Bohemian Rhapsody', 185, 1, 1, N'Mercury, Freddie', 358948, 11619868, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2255, N'Another One Bites The Dust', 185, 1, 1, N'Deacon, John', 216946, 7172355, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2256, N'Killer Queen', 185, 1, 1, N'Mercury, Freddie', 182099, 5967749, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2257, N'Fat Bottomed Girls', 185, 1, 1, N'May, Brian', 204695, 6630041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2258, N'Bicycle Race', 185, 1, 1, N'Mercury, Freddie', 183823, 6012409, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2259, N'You''re My Best Friend', 185, 1, 1, N'Deacon, John', 172225, 5602173, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2260, N'Don''t Stop Me Now', 185, 1, 1, N'Mercury, Freddie', 211826, 6896666, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2261, N'Save Me', 185, 1, 1, N'May, Brian', 228832, 7444624, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2262, N'Crazy Little Thing Called Love', 185, 1, 1, N'Mercury, Freddie', 164231, 5435501, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2263, N'Somebody To Love', 185, 1, 1, N'Mercury, Freddie', 297351, 9650520, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2264, N'Now I''m Here', 185, 1, 1, N'May, Brian', 255346, 8328312, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2265, N'Good Old-Fashioned Lover Boy', 185, 1, 1, N'Mercury, Freddie', 175960, 5747506, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2266, N'Play The Game', 185, 1, 1, N'Mercury, Freddie', 213368, 6915832, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2267, N'Flash', 185, 1, 1, N'May, Brian', 168489, 5464986, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2268, N'Seven Seas Of Rhye', 185, 1, 1, N'Mercury, Freddie', 170553, 5539957, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2269, N'We Will Rock You', 185, 1, 1, N'Deacon, John/May, Brian', 122880, 4026955, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2270, N'We Are The Champions', 185, 1, 1, N'Mercury, Freddie', 180950, 5880231, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2271, N'We Will Rock You', 186, 1, 1, N'May', 122671, 4026815, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2272, N'We Are The Champions', 186, 1, 1, N'Mercury', 182883, 5939794, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2273, N'Sheer Heart Attack', 186, 1, 1, N'Taylor', 207386, 6642685, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2274, N'All Dead, All Dead', 186, 1, 1, N'May', 190119, 6144878, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2275, N'Spread Your Wings', 186, 1, 1, N'Deacon', 275356, 8936992, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2276, N'Fight From The Inside', 186, 1, 1, N'Taylor', 184737, 6078001, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2277, N'Get Down, Make Love', 186, 1, 1, N'Mercury', 231235, 7509333, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2278, N'Sleep On The Sidewalk', 186, 1, 1, N'May', 187428, 6099840, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2279, N'Who Needs You', 186, 1, 1, N'Deacon', 186958, 6292969, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2280, N'It''s Late', 186, 1, 1, N'May', 386194, 12519388, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2281, N'My Melancholy Blues', 186, 1, 1, N'Mercury', 206471, 6691838, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2282, N'Shiny Happy People', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 226298, 7475323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2283, N'Me In Honey', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 246674, 8194751, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2284, N'Radio Song', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 255477, 8421172, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2285, N'Pop Song 89', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 185730, 6132218, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2286, N'Get Up', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 160235, 5264376, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2287, N'You Are The Everything', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 226298, 7373181, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2288, N'Stand', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 192862, 6349090, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2289, N'World Leader Pretend', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 259761, 8537282, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2290, N'The Wrong Child', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 216633, 7065060, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2291, N'Orange Crush', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 231706, 7742894, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2292, N'Turn You Inside-Out', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 257358, 8395671, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2293, N'Hairshirt', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 235911, 7753807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2294, N'I Remember California', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 304013, 9950311, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2295, N'Untitled', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 191503, 6332426, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2296, N'How The West Was Won And Where It Got Us', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 271151, 8994291, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2297, N'The Wake-Up Bomb', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 308532, 10077337, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2298, N'New Test Leper', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 326791, 10866447, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2299, N'Undertow', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 309498, 10131005, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2300, N'E-Bow The Letter', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 324963, 10714576, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2301, N'Leave', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 437968, 14433365, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2302, N'Departure', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 209423, 6818425, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2303, N'Bittersweet Me', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 245812, 8114718, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2304, N'Be Mine', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 333087, 10790541, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2305, N'Binky The Doormat', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 301688, 9950320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2306, N'Zither', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 154148, 5032962, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2307, N'So Fast, So Numb', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 252682, 8341223, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2308, N'Low Desert', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 212062, 6989288, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2309, N'Electrolite', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 245315, 8051199, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2310, N'Losing My Religion', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 269035, 8885672, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2311, N'Low', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 296777, 9633860, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2312, N'Near Wild Heaven', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 199862, 6610009, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2313, N'Endgame', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 230687, 7664479, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2314, N'Belong', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 247013, 8219375, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2315, N'Half A World Away', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 208431, 6837283, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2316, N'Texarkana', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 220081, 7260681, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2317, N'Country Feedback', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 249782, 8178943, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2318, N'Carnival Of Sorts', 190, 1, 4, N'R.E.M.', 233482, 7669658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2319, N'Radio Free Aurope', 190, 1, 4, N'R.E.M.', 245315, 8163490, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2320, N'Perfect Circle', 190, 1, 4, N'R.E.M.', 208509, 6898067, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2321, N'Talk About The Passion', 190, 1, 4, N'R.E.M.', 203206, 6725435, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2322, N'So Central Rain', 190, 1, 4, N'R.E.M.', 194768, 6414550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2323, N'Don''t Go Back To Rockville', 190, 1, 4, N'R.E.M.', 272352, 9010715, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2324, N'Pretty Persuasion', 190, 1, 4, N'R.E.M.', 229929, 7577754, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2325, N'Green Grow The Rushes', 190, 1, 4, N'R.E.M.', 225671, 7422425, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2326, N'Can''t Get There From Here', 190, 1, 4, N'R.E.M.', 220630, 7285936, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2327, N'Driver 8', 190, 1, 4, N'R.E.M.', 204747, 6779076, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2328, N'Fall On Me', 190, 1, 4, N'R.E.M.', 172016, 5676811, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2329, N'I Believe', 190, 1, 4, N'R.E.M.', 227709, 7542929, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2330, N'Cuyahoga', 190, 1, 4, N'R.E.M.', 260623, 8591057, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2331, N'The One I Love', 190, 1, 4, N'R.E.M.', 197355, 6495125, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2332, N'The Finest Worksong', 190, 1, 4, N'R.E.M.', 229276, 7574856, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2333, N'It''s The End Of The World As We Know It (And I Feel Fine)', 190, 1, 4, N'R.E.M.', 244819, 7998987, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2334, N'Infeliz Natal', 191, 1, 4, N'Rodolfo', 138266, 4503299, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2335, N'A Sua', 191, 1, 4, N'Rodolfo', 142132, 4622064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2336, N'Papeau Nuky Doe', 191, 1, 4, N'Rodolfo', 121652, 3995022, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2337, N'Merry Christmas', 191, 1, 4, N'Rodolfo', 126040, 4166652, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2338, N'Bodies', 191, 1, 4, N'Rodolfo', 180035, 5873778, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2339, N'Puteiro Em Jo�o Pessoa', 191, 1, 4, N'Rodolfo', 195578, 6395490, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2340, N'Esporrei Na Manivela', 191, 1, 4, N'Rodolfo', 293276, 9618499, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2341, N'B�-a-B�', 191, 1, 4, N'Rodolfo', 249051, 8130636, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2342, N'Cajueiro', 191, 1, 4, N'Rodolfo', 158589, 5164837, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2343, N'Palhas Do Coqueiro', 191, 1, 4, N'Rodolfo', 133851, 4396466, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2344, N'Maluco Beleza', 192, 1, 1, 203206, 6628067, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2345, N'O Dia Em Que A Terra Parou', 192, 1, 1, 261720, 8586678, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2346, N'No Fundo Do Quintal Da Escola', 192, 1, 1, 177606, 5836953, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2347, N'O Segredo Do Universo', 192, 1, 1, 192679, 6315187, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2348, N'As Profecias', 192, 1, 1, 232515, 7657732, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2349, N'Mata Virgem', 192, 1, 1, 142602, 4690029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2350, N'Sapato 36', 192, 1, 1, 196702, 6507301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2351, N'Todo Mundo Explica', 192, 1, 1, 134896, 4449772, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2352, N'Que Luz � Essa', 192, 1, 1, 165067, 5620058, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2353, N'Diamante De Mendigo', 192, 1, 1, 206053, 6775101, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2354, N'Neg�cio �', 192, 1, 1, 175464, 5826775, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2355, N'Muita Estrela, Pouca Constela��o', 192, 1, 1, 268068, 8781021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2356, N'S�culo XXI', 192, 1, 1, 244897, 8040563, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2357, N'Rock Das Aranhas (Ao Vivo) (Live)', 192, 1, 1, 231836, 7591945, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2358, N'The Power Of Equality', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 243591, 8148266, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2359, N'If You Have To Ask', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 216790, 7199175, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2360, N'Breaking The Girl', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 295497, 9805526, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2361, N'Funky Monks', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 323395, 10708168, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2362, N'Suck My Kiss', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 217234, 7129137, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2363, N'I Could Have Lied', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 244506, 8088244, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2364, N'Mellowship Slinky In B Major', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 240091, 7971384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2365, N'The Righteous & The Wicked', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 248084, 8134096, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2366, N'Give It Away', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 283010, 9308997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2367, N'Blood Sugar Sex Magik', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 271229, 8940573, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2368, N'Under The Bridge', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 264359, 8682716, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2369, N'Naked In The Rain', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 265717, 8724674, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2370, N'Apache Rose Peacock', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 282226, 9312588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2371, N'The Greeting Song', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 193593, 6346507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2372, N'My Lovely Man', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 279118, 9220114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2373, N'Sir Psycho Sexy', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 496692, 16354362, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2374, N'They''re Red Hot', 193, 1, 4, N'Robert Johnson', 71941, 2382220, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2375, N'By The Way', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 218017, 7197430, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2376, N'Universally Speaking', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 259213, 8501904, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2377, N'This Is The Place', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 257906, 8469765, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2378, N'Dosed', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 312058, 10235611, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2379, N'Don''t Forget Me', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 277995, 9107071, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2380, N'The Zephyr Song', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 232960, 7690312, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2381, N'Can''t Stop', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 269400, 8872479, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2382, N'I Could Die For You', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 193906, 6333311, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2383, N'Midnight', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 295810, 9702450, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2384, N'Throw Away Your Television', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 224574, 7483526, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2385, N'Cabron', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 218592, 7458864, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2386, N'Tear', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 317413, 10395500, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2387, N'On Mercury', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 208509, 6834762, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2388, N'Minor Thing', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 217835, 7148115, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2389, N'Warm Tape', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 256653, 8358200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2390, N'Venice Queen', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 369110, 12280381, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2391, N'Around The World', 195, 1, 1, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 238837, 7859167, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2392, N'Parallel Universe', 195, 1, 1, N'Red Hot Chili Peppers', 270654, 8958519, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2393, N'Scar Tissue', 195, 1, 1, N'Red Hot Chili Peppers', 217469, 7153744, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2394, N'Otherside', 195, 1, 1, N'Red Hot Chili Peppers', 255973, 8357989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2395, N'Get On Top', 195, 1, 1, N'Red Hot Chili Peppers', 198164, 6587883, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2396, N'Californication', 195, 1, 1, N'Red Hot Chili Peppers', 321671, 10568999, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2397, N'Easily', 195, 1, 1, N'Red Hot Chili Peppers', 231418, 7504534, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2398, N'Porcelain', 195, 1, 1, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 163787, 5278793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2399, N'Emit Remmus', 195, 1, 1, N'Red Hot Chili Peppers', 240300, 7901717, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2400, N'I Like Dirt', 195, 1, 1, N'Red Hot Chili Peppers', 157727, 5225917, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2401, N'This Velvet Glove', 195, 1, 1, N'Red Hot Chili Peppers', 225280, 7480537, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2402, N'Savior', 195, 1, 1, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 292493, 9551885, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2403, N'Purple Stain', 195, 1, 1, N'Red Hot Chili Peppers', 253440, 8359971, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2404, N'Right On Time', 195, 1, 1, N'Red Hot Chili Peppers', 112613, 3722219, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2405, N'Road Trippin''', 195, 1, 1, N'Red Hot Chili Peppers', 205635, 6685831, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2406, N'The Spirit Of Radio', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 299154, 9862012, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2407, N'The Trees', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 285126, 9345473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2408, N'Something For Nothing', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 240770, 7898395, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2409, N'Freewill', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 324362, 10694110, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2410, N'Xanadu', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 667428, 21753168, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2411, N'Bastille Day', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 280528, 9264769, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2412, N'By-Tor And The Snow Dog', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 519888, 17076397, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2413, N'Anthem', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 264515, 8693343, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2414, N'Closer To The Heart', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 175412, 5767005, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2415, N'2112 Overture', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 272718, 8898066, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2416, N'The Temples Of Syrinx', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 133459, 4360163, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2417, N'La Villa Strangiato', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 577488, 19137855, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2418, N'Fly By Night', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 202318, 6683061, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2419, N'Finding My Way', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 305528, 9985701, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2420, N'Jingo', 197, 1, 1, N'M.Babatunde Olantunji', 592953, 19736495, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2421, N'El Corazon Manda', 197, 1, 1, N'E.Weiss', 713534, 23519583, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2422, N'La Puesta Del Sol', 197, 1, 1, N'E.Weiss', 628062, 20614621, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2423, N'Persuasion', 197, 1, 1, N'Carlos Santana', 318432, 10354751, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2424, N'As The Years Go by', 197, 1, 1, N'Albert King', 233064, 7566829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2425, N'Soul Sacrifice', 197, 1, 1, N'Carlos Santana', 296437, 9801120, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2426, N'Fried Neckbones And Home Fries', 197, 1, 1, N'W.Correa', 638563, 20939646, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2427, N'Santana Jam', 197, 1, 1, N'Carlos Santana', 882834, 29207100, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2428, N'Evil Ways', 198, 1, 1, 475402, 15289235, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2429, N'We''ve Got To Get Together/Jingo', 198, 1, 1, 1070027, 34618222, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2430, N'Rock Me', 198, 1, 1, 94720, 3037596, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2431, N'Just Ain''t Good Enough', 198, 1, 1, 850259, 27489067, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2432, N'Funky Piano', 198, 1, 1, 934791, 30200730, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2433, N'The Way You Do To Mer', 198, 1, 1, 618344, 20028702, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2434, N'Holding Back The Years', 141, 1, 1, N'Mick Hucknall and Neil Moss', 270053, 8833220, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2435, N'Money''s Too Tight To Mention', 141, 1, 1, N'John and William Valentine', 268408, 8861921, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2436, N'The Right Thing', 141, 1, 1, N'Mick Hucknall', 262687, 8624063, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2437, N'It''s Only Love', 141, 1, 1, N'Jimmy and Vella Cameron', 232594, 7659017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2438, N'A New Flame', 141, 1, 1, N'Mick Hucknall', 237662, 7822875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2439, N'You''ve Got It', 141, 1, 1, N'Mick Hucknall and Lamont Dozier', 235232, 7712845, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2440, N'If You Don''t Know Me By Now', 141, 1, 1, N'Kenny Gamble and Leon Huff', 206524, 6712634, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2441, N'Stars', 141, 1, 1, N'Mick Hucknall', 248137, 8194906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2442, N'Something Got Me Started', 141, 1, 1, N'Mick Hucknall and Fritz McIntyre', 239595, 7997139, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2443, N'Thrill Me', 141, 1, 1, N'Mick Hucknall and Fritz McIntyre', 303934, 10034711, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2444, N'Your Mirror', 141, 1, 1, N'Mick Hucknall', 240666, 7893821, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2445, N'For Your Babies', 141, 1, 1, N'Mick Hucknall', 256992, 8408803, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2446, N'So Beautiful', 141, 1, 1, N'Mick Hucknall', 298083, 9837832, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2447, N'Angel', 141, 1, 1, N'Carolyn Franklin and Sonny Saunders', 240561, 7880256, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2448, N'Fairground', 141, 1, 1, N'Mick Hucknall', 263888, 8793094, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2449, N'�gua E Fogo', 199, 1, 1, N'Chico Amaral/Edgard Scandurra/Samuel Rosa', 278987, 9272272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2450, N'Tr�s Lados', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 233665, 7699609, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2451, N'Ela Desapareceu', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 250122, 8289200, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2452, N'Balada Do Amor Inabal�vel', 199, 1, 1, N'Fausto Fawcett/Samuel Rosa', 240613, 8025816, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2453, N'Can��o Noturna', 199, 1, 1, N'Chico Amaral/Lelo Zanettik', 238628, 7874774, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2454, N'Mu�ulmano', 199, 1, 1, N'Le�o, Rodrigo F./Samuel Rosa', 249600, 8270613, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2455, N'Maquinarama', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 245629, 8213710, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2456, N'Rebeli�o', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 298527, 9817847, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2457, N'A �ltima Guerra', 199, 1, 1, N'Le�o, Rodrigo F./L� Borges/Samuel Rosa', 314723, 10480391, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2458, N'Fica', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 272169, 8980972, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2459, N'Ali', 199, 1, 1, N'Nando Reis/Samuel Rosa', 306390, 10110351, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2460, N'Preto Dami�o', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 264568, 8697658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2461, N'� Uma Partida De Futebol', 200, 1, 1, N'Samuel Rosa', 1071, 38747, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2462, N'Eu Disse A Ela', 200, 1, 1, N'Samuel Rosa', 254223, 8479463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2463, N'Z� Trindade', 200, 1, 1, N'Samuel Rosa', 247954, 8331310, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2464, N'Garota Nacional', 200, 1, 1, N'Samuel Rosa', 317492, 10511239, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2465, N'T�o Seu', 200, 1, 1, N'Samuel Rosa', 243748, 8133126, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2466, N'Sem Terra', 200, 1, 1, N'Samuel Rosa', 279353, 9196411, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2467, N'Os Exilados', 200, 1, 1, N'Samuel Rosa', 245551, 8222095, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2468, N'Um Dia Qualquer', 200, 1, 1, N'Samuel Rosa', 292414, 9805570, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2469, N'Los Pretos', 200, 1, 1, N'Samuel Rosa', 239229, 8025667, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2470, N'Sul Da Am�rica', 200, 1, 1, N'Samuel Rosa', 254928, 8484871, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2471, N'Pocon�', 200, 1, 1, N'Samuel Rosa', 318406, 10771610, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2472, N'Lucky 13', 201, 1, 4, N'Billy Corgan', 189387, 6200617, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2473, N'Aeroplane Flies High', 201, 1, 4, N'Billy Corgan', 473391, 15408329, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2474, N'Because You Are', 201, 1, 4, N'Billy Corgan', 226403, 7405137, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2475, N'Slow Dawn', 201, 1, 4, N'Billy Corgan', 192339, 6269057, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2476, N'Believe', 201, 1, 4, N'James Iha', 192940, 6320652, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2477, N'My Mistake', 201, 1, 4, N'Billy Corgan', 240901, 7843477, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2478, N'Marquis In Spades', 201, 1, 4, N'Billy Corgan', 192731, 6304789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2479, N'Here''s To The Atom Bomb', 201, 1, 4, N'Billy Corgan', 266893, 8763140, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2480, N'Sparrow', 201, 1, 4, N'Billy Corgan', 176822, 5696989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2481, N'Waiting', 201, 1, 4, N'Billy Corgan', 228336, 7627641, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2482, N'Saturnine', 201, 1, 4, N'Billy Corgan', 229877, 7523502, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2483, N'Rock On', 201, 1, 4, N'David Cook', 366471, 12133825, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2484, N'Set The Ray To Jerry', 201, 1, 4, N'Billy Corgan', 249364, 8215184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2485, N'Winterlong', 201, 1, 4, N'Billy Corgan', 299389, 9670616, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2486, N'Soot & Stars', 201, 1, 4, N'Billy Corgan', 399986, 12866557, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2487, N'Blissed & Gone', 201, 1, 4, N'Billy Corgan', 286302, 9305998, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2488, N'Siva', 202, 1, 4, N'Billy Corgan', 261172, 8576622, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2489, N'Rhinocerous', 202, 1, 4, N'Billy Corgan', 353462, 11526684, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2490, N'Drown', 202, 1, 4, N'Billy Corgan', 270497, 8883496, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2491, N'Cherub Rock', 202, 1, 4, N'Billy Corgan', 299389, 9786739, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2492, N'Today', 202, 1, 4, N'Billy Corgan', 202213, 6596933, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2493, N'Disarm', 202, 1, 4, N'Billy Corgan', 198556, 6508249, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2494, N'Landslide', 202, 1, 4, N'Stevie Nicks', 190275, 6187754, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2495, N'Bullet With Butterfly Wings', 202, 1, 4, N'Billy Corgan', 257306, 8431747, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2496, N'1979', 202, 1, 4, N'Billy Corgan', 263653, 8728470, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2497, N'Zero', 202, 1, 4, N'Billy Corgan', 161123, 5267176, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2498, N'Tonight, Tonight', 202, 1, 4, N'Billy Corgan', 255686, 8351543, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2499, N'Eye', 202, 1, 4, N'Billy Corgan', 294530, 9784201, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2500, N'Ava Adore', 202, 1, 4, N'Billy Corgan', 261433, 8590412, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2501, N'Perfect', 202, 1, 4, N'Billy Corgan', 203023, 6734636, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2502, N'The Everlasting Gaze', 202, 1, 4, N'Billy Corgan', 242155, 7844404, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2503, N'Stand Inside Your Love', 202, 1, 4, N'Billy Corgan', 253753, 8270113, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2504, N'Real Love', 202, 1, 4, N'Billy Corgan', 250697, 8025896, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2505, N'[Untitled]', 202, 1, 4, N'Billy Corgan', 231784, 7689713, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2506, N'Nothing To Say', 203, 1, 1, N'Chris Cornell/Kim Thayil', 238027, 7744833, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2507, N'Flower', 203, 1, 1, N'Chris Cornell/Kim Thayil', 208822, 6830732, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2508, N'Loud Love', 203, 1, 1, N'Chris Cornell', 297456, 9660953, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2509, N'Hands All Over', 203, 1, 1, N'Chris Cornell/Kim Thayil', 362475, 11893108, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2510, N'Get On The Snake', 203, 1, 1, N'Chris Cornell/Kim Thayil', 225123, 7313744, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2511, N'Jesus Christ Pose', 203, 1, 1, N'Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron', 352966, 11739886, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2512, N'Outshined', 203, 1, 1, N'Chris Cornell', 312476, 10274629, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2513, N'Rusty Cage', 203, 1, 1, N'Chris Cornell', 267728, 8779485, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2514, N'Spoonman', 203, 1, 1, N'Chris Cornell', 248476, 8289906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2515, N'The Day I Tried To Live', 203, 1, 1, N'Chris Cornell', 321175, 10507137, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2516, N'Black Hole Sun', 203, 1, 1, N'Soundgarden', 320365, 10425229, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2517, N'Fell On Black Days', 203, 1, 1, N'Chris Cornell', 282331, 9256082, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2518, N'Pretty Noose', 203, 1, 1, N'Chris Cornell', 253570, 8317931, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2519, N'Burden In My Hand', 203, 1, 1, N'Chris Cornell', 292153, 9659911, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2520, N'Blow Up The Outside World', 203, 1, 1, N'Chris Cornell', 347898, 11379527, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2521, N'Ty Cobb', 203, 1, 1, N'Ben Shepherd/Chris Cornell', 188786, 6233136, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2522, N'Bleed Together', 203, 1, 1, N'Chris Cornell', 232202, 7597074, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2523, N'Morning Dance', 204, 1, 2, N'Jay Beckenstein', 238759, 8101979, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2524, N'Jubilee', 204, 1, 2, N'Jeremy Wall', 275147, 9151846, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2525, N'Rasul', 204, 1, 2, N'Jeremy Wall', 238315, 7854737, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2526, N'Song For Lorraine', 204, 1, 2, N'Jay Beckenstein', 240091, 8101723, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2527, N'Starburst', 204, 1, 2, N'Jeremy Wall', 291500, 9768399, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2528, N'Heliopolis', 204, 1, 2, N'Jay Beckenstein', 338729, 11365655, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2529, N'It Doesn''t Matter', 204, 1, 2, N'Chet Catallo', 270027, 9034177, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2530, N'Little Linda', 204, 1, 2, N'Jeremy Wall', 264019, 8958743, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2531, N'End Of Romanticism', 204, 1, 2, N'Rick Strauss', 320078, 10553155, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2532, N'The House Is Rockin''', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 144352, 4706253, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2533, N'Crossfire', 205, 1, 6, N'B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon', 251219, 8238033, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2534, N'Tightrope', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 281155, 9254906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2535, N'Let Me Love You Baby', 205, 1, 6, N'Willie Dixon', 164127, 5378455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2536, N'Leave My Girl Alone', 205, 1, 6, N'B. Guy', 256365, 8438021, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2537, N'Travis Walk', 205, 1, 6, N'Stevie Ray Vaughan', 140826, 4650979, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2538, N'Wall Of Denial', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 336927, 11085915, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2539, N'Scratch-N-Sniff', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 163422, 5353627, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2540, N'Love Me Darlin''', 205, 1, 6, N'C. Burnett', 201586, 6650869, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2541, N'Riviera Paradise', 205, 1, 6, N'Stevie Ray Vaughan', 528692, 17232776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2542, N'Dead And Bloated', 206, 1, 1, N'R. DeLeo/Weiland', 310386, 10170433, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2543, N'Sex Type Thing', 206, 1, 1, N'D. DeLeo/Kretz/Weiland', 218723, 7102064, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2544, N'Wicked Garden', 206, 1, 1, N'D. DeLeo/R. DeLeo/Weiland', 245368, 7989505, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2545, N'No Memory', 206, 1, 1, N'Dean Deleo', 80613, 2660859, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2546, N'Sin', 206, 1, 1, N'R. DeLeo/Weiland', 364800, 12018823, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2547, N'Naked Sunday', 206, 1, 1, N'D. DeLeo/Kretz/R. DeLeo/Weiland', 229720, 7444201, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2548, N'Creep', 206, 1, 1, N'R. DeLeo/Weiland', 333191, 10894988, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2549, N'Piece Of Pie', 206, 1, 1, N'R. DeLeo/Weiland', 324623, 10605231, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2550, N'Plush', 206, 1, 1, N'R. DeLeo/Weiland', 314017, 10229848, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2551, N'Wet My Bed', 206, 1, 1, N'R. DeLeo/Weiland', 96914, 3198627, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2552, N'Crackerman', 206, 1, 1, N'Kretz/R. DeLeo/Weiland', 194403, 6317361, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2553, N'Where The River Goes', 206, 1, 1, N'D. DeLeo/Kretz/Weiland', 505991, 16468904, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2554, N'Soldier Side - Intro', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 63764, 2056079, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2555, N'B.Y.O.B.', 207, 1, 3, N'Tankian, Serj', 255555, 8407935, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2556, N'Revenga', 207, 1, 3, N'Tankian, Serj', 228127, 7503805, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2557, N'Cigaro', 207, 1, 3, N'Tankian, Serj', 131787, 4321705, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2558, N'Radio/Video', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 249312, 8224917, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2559, N'This Cocaine Makes Me Feel Like I''m On This Song', 207, 1, 3, N'Tankian, Serj', 128339, 4185193, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2560, N'Violent Pornography', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 211435, 6985960, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2561, N'Question!', 207, 1, 3, N'Tankian, Serj', 200698, 6616398, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2562, N'Sad Statue', 207, 1, 3, N'Tankian, Serj', 205897, 6733449, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2563, N'Old School Hollywood', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 176953, 5830258, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2564, N'Lost in Hollywood', 207, 1, 3, N'Tankian, Serj', 320783, 10535158, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2565, N'The Sun Road', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 880640, 29008407, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2566, N'Dark Corners', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 513541, 16839223, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2567, N'Duende', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 447582, 14956771, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2568, N'Black Light Syndrome', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 526471, 17300835, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2569, N'Falling in Circles', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 549093, 18263248, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2570, N'Book of Hours', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 583366, 19464726, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2571, N'Chaos-Control', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 529841, 17455568, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2572, N'Midnight From The Inside Out', 209, 1, 6, N'Chris Robinson/Rich Robinson', 286981, 9442157, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2573, N'Sting Me', 209, 1, 6, N'Chris Robinson/Rich Robinson', 268094, 8813561, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2574, N'Thick & Thin', 209, 1, 6, N'Chris Robinson/Rich Robinson', 222720, 7284377, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2575, N'Greasy Grass River', 209, 1, 6, N'Chris Robinson/Rich Robinson', 218749, 7157045, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2576, N'Sometimes Salvation', 209, 1, 6, N'Chris Robinson/Rich Robinson', 389146, 12749424, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2577, N'Cursed Diamonds', 209, 1, 6, N'Chris Robinson/Rich Robinson', 368300, 12047978, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2578, N'Miracle To Me', 209, 1, 6, N'Chris Robinson/Rich Robinson', 372636, 12222116, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2579, N'Wiser Time', 209, 1, 6, N'Chris Robinson/Rich Robinson', 459990, 15161907, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2580, N'Girl From A Pawnshop', 209, 1, 6, N'Chris Robinson/Rich Robinson', 404688, 13250848, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2581, N'Cosmic Fiend', 209, 1, 6, N'Chris Robinson/Rich Robinson', 308401, 10115556, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2582, N'Black Moon Creeping', 210, 1, 6, N'Chris Robinson/Rich Robinson', 359314, 11740886, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2583, N'High Head Blues', 210, 1, 6, N'Chris Robinson/Rich Robinson', 371879, 12227998, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2584, N'Title Song', 210, 1, 6, N'Chris Robinson/Rich Robinson', 505521, 16501316, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2585, N'She Talks To Angels', 210, 1, 6, N'Chris Robinson/Rich Robinson', 361978, 11837342, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2586, N'Twice As Hard', 210, 1, 6, N'Chris Robinson/Rich Robinson', 275565, 9008067, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2587, N'Lickin''', 210, 1, 6, N'Chris Robinson/Rich Robinson', 314409, 10331216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2588, N'Soul Singing', 210, 1, 6, N'Chris Robinson/Rich Robinson', 233639, 7672489, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2589, N'Hard To Handle', 210, 1, 6, N'A.Isbell/A.Jones/O.Redding', 206994, 6786304, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2590, N'Remedy', 210, 1, 6, N'Chris Robinson/Rich Robinson', 337084, 11049098, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2591, N'White Riot', 211, 1, 4, N'Joe Strummer/Mick Jones', 118726, 3922819, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2592, N'Remote Control', 211, 1, 4, N'Joe Strummer/Mick Jones', 180297, 5949647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2593, N'Complete Control', 211, 1, 4, N'Joe Strummer/Mick Jones', 192653, 6272081, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2594, N'Clash City Rockers', 211, 1, 4, N'Joe Strummer/Mick Jones', 227500, 7555054, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2595, N'(White Man) In Hammersmith Palais', 211, 1, 4, N'Joe Strummer/Mick Jones', 240640, 7883532, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2596, N'Tommy Gun', 211, 1, 4, N'Joe Strummer/Mick Jones', 195526, 6399872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2597, N'English Civil War', 211, 1, 4, N'Mick Jones/Traditional arr. Joe Strummer', 156708, 5111226, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2598, N'I Fought The Law', 211, 1, 4, N'Sonny Curtis', 159764, 5245258, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2599, N'London Calling', 211, 1, 4, N'Joe Strummer/Mick Jones', 199706, 6569007, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2600, N'Train In Vain', 211, 1, 4, N'Joe Strummer/Mick Jones', 189675, 6329877, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2601, N'Bankrobber', 211, 1, 4, N'Joe Strummer/Mick Jones', 272431, 9067323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2602, N'The Call Up', 211, 1, 4, N'The Clash', 324336, 10746937, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2603, N'Hitsville UK', 211, 1, 4, N'The Clash', 261433, 8606887, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2604, N'The Magnificent Seven', 211, 1, 4, N'The Clash', 268486, 8889821, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2605, N'This Is Radio Clash', 211, 1, 4, N'The Clash', 249756, 8366573, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2606, N'Know Your Rights', 211, 1, 4, N'The Clash', 217678, 7195726, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2607, N'Rock The Casbah', 211, 1, 4, N'The Clash', 222145, 7361500, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2608, N'Should I Stay Or Should I Go', 211, 1, 4, N'The Clash', 187219, 6188688, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2609, N'War (The Process)', 212, 1, 1, N'Billy Duffy/Ian Astbury', 252630, 8254842, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2610, N'The Saint', 212, 1, 1, N'Billy Duffy/Ian Astbury', 216215, 7061584, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2611, N'Rise', 212, 1, 1, N'Billy Duffy/Ian Astbury', 219088, 7106195, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2612, N'Take The Power', 212, 1, 1, N'Billy Duffy/Ian Astbury', 235755, 7650012, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2613, N'Breathe', 212, 1, 1, N'Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones', 299781, 9742361, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2614, N'Nico', 212, 1, 1, N'Billy Duffy/Ian Astbury', 289488, 9412323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2615, N'American Gothic', 212, 1, 1, N'Billy Duffy/Ian Astbury', 236878, 7739840, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2616, N'Ashes And Ghosts', 212, 1, 1, N'Billy Duffy/Bob Rock/Ian Astbury', 300591, 9787692, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2617, N'Shape The Sky', 212, 1, 1, N'Billy Duffy/Ian Astbury', 209789, 6885647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2618, N'Speed Of Light', 212, 1, 1, N'Billy Duffy/Bob Rock/Ian Astbury', 262817, 8563352, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2619, N'True Believers', 212, 1, 1, N'Billy Duffy/Ian Astbury', 308009, 9981359, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2620, N'My Bridges Burn', 212, 1, 1, N'Billy Duffy/Ian Astbury', 231862, 7571370, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2621, N'She Sells Sanctuary', 213, 1, 1, 253727, 8368634, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2622, N'Fire Woman', 213, 1, 1, 312790, 10196995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2623, N'Lil'' Evil', 213, 1, 1, 165825, 5419655, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2624, N'Spirit Walker', 213, 1, 1, 230060, 7555897, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2625, N'The Witch', 213, 1, 1, 258768, 8725403, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2626, N'Revolution', 213, 1, 1, 256026, 8371254, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2627, N'Wild Hearted Son', 213, 1, 1, 266893, 8670550, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2628, N'Love Removal Machine', 213, 1, 1, 257619, 8412167, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2629, N'Rain', 213, 1, 1, 236669, 7788461, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2630, N'Edie (Ciao Baby)', 213, 1, 1, 241632, 7846177, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2631, N'Heart Of Soul', 213, 1, 1, 274207, 8967257, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2632, N'Love', 213, 1, 1, 326739, 10729824, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2633, N'Wild Flower', 213, 1, 1, 215536, 7084321, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2634, N'Go West', 213, 1, 1, 238158, 7777749, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2635, N'Resurrection Joe', 213, 1, 1, 255451, 8532840, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2636, N'Sun King', 213, 1, 1, 368431, 12010865, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2637, N'Sweet Soul Sister', 213, 1, 1, 212009, 6889883, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2638, N'Earth Mofo', 213, 1, 1, 282200, 9204581, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2639, N'Break on Through', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 149342, 4943144, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2640, N'Soul Kitchen', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 215066, 7040865, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2641, N'The Crystal Ship', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 154853, 5052658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2642, N'Twentienth Century Fox', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 153913, 5069211, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2643, N'Alabama Song', 214, 1, 1, N'Weill-Brecht', 200097, 6563411, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2644, N'Light My Fire', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 428329, 13963351, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2645, N'Back Door Man', 214, 1, 1, N'Willie Dixon, C. Burnett', 214360, 7035636, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2646, N'I Looked At You', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 142080, 4663988, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2647, N'End Of The Night', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 172695, 5589732, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2648, N'Take It As It Comes', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 137168, 4512656, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2649, N'The End', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 701831, 22927336, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2650, N'Roxanne', 215, 1, 1, N'G M Sumner', 192992, 6330159, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2651, N'Can''t Stand Losing You', 215, 1, 1, N'G M Sumner', 181159, 5971983, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2652, N'Message in a Bottle', 215, 1, 1, N'G M Sumner', 291474, 9647829, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2653, N'Walking on the Moon', 215, 1, 1, N'G M Sumner', 302080, 10019861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2654, N'Don''t Stand so Close to Me', 215, 1, 1, N'G M Sumner', 241031, 7956658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2655, N'De Do Do Do, De Da Da Da', 215, 1, 1, N'G M Sumner', 247196, 8227075, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2656, N'Every Little Thing She Does is Magic', 215, 1, 1, N'G M Sumner', 261120, 8646853, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2657, N'Invisible Sun', 215, 1, 1, N'G M Sumner', 225593, 7304320, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2658, N'Spirit''s in the Material World', 215, 1, 1, N'G M Sumner', 181133, 5986622, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2659, N'Every Breath You Take', 215, 1, 1, N'G M Sumner', 254615, 8364520, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2660, N'King Of Pain', 215, 1, 1, N'G M Sumner', 300512, 9880303, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2661, N'Wrapped Around Your Finger', 215, 1, 1, N'G M Sumner', 315454, 10361490, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2662, N'Don''t Stand So Close to Me ''86', 215, 1, 1, N'G M Sumner', 293590, 9636683, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2663, N'Message in a Bottle (new classic rock mix)', 215, 1, 1, N'G M Sumner', 290951, 9640349, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2664, N'Time Is On My Side', 216, 1, 1, N'Jerry Ragavoy', 179983, 5855836, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2665, N'Heart Of Stone', 216, 1, 1, N'Jagger/Richards', 164493, 5329538, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2666, N'Play With Fire', 216, 1, 1, N'Nanker Phelge', 132022, 4265297, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2667, N'Satisfaction', 216, 1, 1, N'Jagger/Richards', 226612, 7398766, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2668, N'As Tears Go By', 216, 1, 1, N'Jagger/Richards/Oldham', 164284, 5357350, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2669, N'Get Off Of My Cloud', 216, 1, 1, N'Jagger/Richards', 176013, 5719514, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2670, N'Mother''s Little Helper', 216, 1, 1, N'Jagger/Richards', 167549, 5422434, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2671, N'19th Nervous Breakdown', 216, 1, 1, N'Jagger/Richards', 237923, 7742984, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2672, N'Paint It Black', 216, 1, 1, N'Jagger/Richards', 226063, 7442888, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2673, N'Under My Thumb', 216, 1, 1, N'Jagger/Richards', 221387, 7371799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2674, N'Ruby Tuesday', 216, 1, 1, N'Jagger/Richards', 197459, 6433467, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2675, N'Let''s Spend The Night Together', 216, 1, 1, N'Jagger/Richards', 217495, 7137048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2676, N'Intro', 217, 1, 1, N'Jagger/Richards', 49737, 1618591, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2677, N'You Got Me Rocking', 217, 1, 1, N'Jagger/Richards', 205766, 6734385, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2678, N'Gimmie Shelters', 217, 1, 1, N'Jagger/Richards', 382119, 12528764, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2679, N'Flip The Switch', 217, 1, 1, N'Jagger/Richards', 252421, 8336591, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2680, N'Memory Motel', 217, 1, 1, N'Jagger/Richards', 365844, 11982431, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2681, N'Corinna', 217, 1, 1, N'Jesse Ed Davis III/Taj Mahal', 257488, 8449471, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2682, N'Saint Of Me', 217, 1, 1, N'Jagger/Richards', 325694, 10725160, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2683, N'Wainting On A Friend', 217, 1, 1, N'Jagger/Richards', 302497, 9978046, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2684, N'Sister Morphine', 217, 1, 1, N'Faithfull/Jagger/Richards', 376215, 12345289, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2685, N'Live With Me', 217, 1, 1, N'Jagger/Richards', 234893, 7709006, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2686, N'Respectable', 217, 1, 1, N'Jagger/Richards', 215693, 7099669, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2687, N'Thief In The Night', 217, 1, 1, N'De Beauport/Jagger/Richards', 337266, 10952756, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2688, N'The Last Time', 217, 1, 1, N'Jagger/Richards', 287294, 9498758, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2689, N'Out Of Control', 217, 1, 1, N'Jagger/Richards', 479242, 15749289, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2690, N'Love Is Strong', 218, 1, 1, N'Jagger/Richards', 230896, 7639774, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2691, N'You Got Me Rocking', 218, 1, 1, N'Jagger/Richards', 215928, 7162159, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2692, N'Sparks Will Fly', 218, 1, 1, N'Jagger/Richards', 196466, 6492847, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2693, N'The Worst', 218, 1, 1, N'Jagger/Richards', 144613, 4750094, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2694, N'New Faces', 218, 1, 1, N'Jagger/Richards', 172146, 5689122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2695, N'Moon Is Up', 218, 1, 1, N'Jagger/Richards', 222119, 7366316, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2696, N'Out Of Tears', 218, 1, 1, N'Jagger/Richards', 327418, 10677236, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2697, N'I Go Wild', 218, 1, 1, N'Jagger/Richards', 264019, 8630833, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2698, N'Brand New Car', 218, 1, 1, N'Jagger/Richards', 256052, 8459344, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2699, N'Sweethearts Together', 218, 1, 1, N'Jagger/Richards', 285492, 9550459, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2700, N'Suck On The Jugular', 218, 1, 1, N'Jagger/Richards', 268225, 8920566, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2701, N'Blinded By Rainbows', 218, 1, 1, N'Jagger/Richards', 273946, 8971343, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2702, N'Baby Break It Down', 218, 1, 1, N'Jagger/Richards', 249417, 8197309, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2703, N'Thru And Thru', 218, 1, 1, N'Jagger/Richards', 375092, 12175406, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2704, N'Mean Disposition', 218, 1, 1, N'Jagger/Richards', 249155, 8273602, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2705, N'Walking Wounded', 219, 1, 4, N'The Tea Party', 277968, 9184345, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2706, N'Temptation', 219, 1, 4, N'The Tea Party', 205087, 6711943, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2707, N'The Messenger', 219, 1, 4, N'Daniel Lanois', 212062, 6975437, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2708, N'Psychopomp', 219, 1, 4, N'The Tea Party', 315559, 10295199, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2709, N'Sister Awake', 219, 1, 4, N'The Tea Party', 343875, 11299407, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2710, N'The Bazaar', 219, 1, 4, N'The Tea Party', 222458, 7245691, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2711, N'Save Me (Remix)', 219, 1, 4, N'The Tea Party', 396303, 13053839, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2712, N'Fire In The Head', 219, 1, 4, N'The Tea Party', 306337, 10005675, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2713, N'Release', 219, 1, 4, N'The Tea Party', 244114, 8014606, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2714, N'Heaven Coming Down', 219, 1, 4, N'The Tea Party', 241867, 7846459, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2715, N'The River (Remix)', 219, 1, 4, N'The Tea Party', 343170, 11193268, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2716, N'Babylon', 219, 1, 4, N'The Tea Party', 169795, 5568808, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2717, N'Waiting On A Sign', 219, 1, 4, N'The Tea Party', 261903, 8558590, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2718, N'Life Line', 219, 1, 4, N'The Tea Party', 277786, 9082773, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2719, N'Paint It Black', 219, 1, 4, N'Keith Richards/Mick Jagger', 214752, 7101572, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2720, N'Temptation', 220, 1, 4, N'The Tea Party', 205244, 6719465, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2721, N'Army Ants', 220, 1, 4, N'The Tea Party', 215405, 7075838, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2722, N'Psychopomp', 220, 1, 4, N'The Tea Party', 317231, 10351778, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2723, N'Gyroscope', 220, 1, 4, N'The Tea Party', 177711, 5810323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2724, N'Alarum', 220, 1, 4, N'The Tea Party', 298187, 9712545, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2725, N'Release', 220, 1, 4, N'The Tea Party', 266292, 8725824, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2726, N'Transmission', 220, 1, 4, N'The Tea Party', 317257, 10351152, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2727, N'Babylon', 220, 1, 4, N'The Tea Party', 292466, 9601786, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2728, N'Pulse', 220, 1, 4, N'The Tea Party', 250253, 8183872, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2729, N'Emerald', 220, 1, 4, N'The Tea Party', 289750, 9543789, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2730, N'Aftermath', 220, 1, 4, N'The Tea Party', 343745, 11085607, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2731, N'I Can''t Explain', 221, 1, 1, N'Pete Townshend', 125152, 4082896, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2732, N'Anyway, Anyhow, Anywhere', 221, 1, 1, N'Pete Townshend, Roger Daltrey', 161253, 5234173, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2733, N'My Generation', 221, 1, 1, N'John Entwistle/Pete Townshend', 197825, 6446634, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2734, N'Substitute', 221, 1, 1, N'Pete Townshend', 228022, 7409995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2735, N'I''m A Boy', 221, 1, 1, N'Pete Townshend', 157126, 5120605, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2736, N'Boris The Spider', 221, 1, 1, N'John Entwistle', 149472, 4835202, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2737, N'Happy Jack', 221, 1, 1, N'Pete Townshend', 132310, 4353063, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2738, N'Pictures Of Lily', 221, 1, 1, N'Pete Townshend', 164414, 5329751, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2739, N'I Can See For Miles', 221, 1, 1, N'Pete Townshend', 262791, 8604989, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2740, N'Magic Bus', 221, 1, 1, N'Pete Townshend', 197224, 6452700, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2741, N'Pinball Wizard', 221, 1, 1, N'John Entwistle/Pete Townshend', 181890, 6055580, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2742, N'The Seeker', 221, 1, 1, N'Pete Townshend', 204643, 6736866, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2743, N'Baba O''Riley', 221, 1, 1, N'John Entwistle/Pete Townshend', 309472, 10141660, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2744, N'Won''t Get Fooled Again (Full Length Version)', 221, 1, 1, N'John Entwistle/Pete Townshend', 513750, 16855521, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2745, N'Let''s See Action', 221, 1, 1, N'Pete Townshend', 243513, 8078418, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2746, N'5.15', 221, 1, 1, N'Pete Townshend', 289619, 9458549, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2747, N'Join Together', 221, 1, 1, N'Pete Townshend', 262556, 8602485, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2748, N'Squeeze Box', 221, 1, 1, N'Pete Townshend', 161280, 5256508, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2749, N'Who Are You (Single Edit Version)', 221, 1, 1, N'John Entwistle/Pete Townshend', 299232, 9900469, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2750, N'You Better You Bet', 221, 1, 1, N'Pete Townshend', 338520, 11160877, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2751, N'Primavera', 222, 1, 7, N'Genival Cassiano/Silvio Rochael', 126615, 4152604, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2752, N'Chocolate', 222, 1, 7, N'Tim Maia', 194690, 6411587, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2753, N'Azul Da Cor Do Mar', 222, 1, 7, N'Tim Maia', 197955, 6475007, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2754, N'O Descobridor Dos Sete Mares', 222, 1, 7, N'Gilson Mendon�a/Michel', 262974, 8749583, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2755, N'At� Que Enfim Encontrei Voc�', 222, 1, 7, N'Tim Maia', 105064, 3477751, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2756, N'Coron� Antonio Bento', 222, 1, 7, N'Do Vale, Jo�o/Luiz Wanderley', 131317, 4340326, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2757, N'New Love', 222, 1, 7, N'Tim Maia', 237897, 7786824, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2758, N'N�o Vou Ficar', 222, 1, 7, N'Tim Maia', 172068, 5642919, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2759, N'M�sica No Ar', 222, 1, 7, N'Tim Maia', 158511, 5184891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2760, N'Salve Nossa Senhora', 222, 1, 7, N'Carlos Imperial/Edardo Ara�jo', 115461, 3827629, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2761, N'Voc� Fugiu', 222, 1, 7, N'Genival Cassiano', 238367, 7971147, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2762, N'Cristina N� 2', 222, 1, 7, N'Carlos Imperial/Tim Maia', 90148, 2978589, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2763, N'Compadre', 222, 1, 7, N'Tim Maia', 171389, 5631446, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2764, N'Over Again', 222, 1, 7, N'Tim Maia', 200489, 6612634, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2765, N'R�u Confesso', 222, 1, 7, N'Tim Maia', 217391, 7189874, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2766, N'O Que Me Importa', 223, 1, 7, 153155, 4977852, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2767, N'Gostava Tanto De Voc�', 223, 1, 7, 253805, 8380077, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2768, N'Voc�', 223, 1, 7, 242599, 7911702, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2769, N'N�o Quero Dinheiro', 223, 1, 7, 152607, 5031797, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2770, N'Eu Amo Voc�', 223, 1, 7, 242782, 7914628, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2771, N'A Festa Do Santo Reis', 223, 1, 7, 159791, 5204995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2772, N'I Don''t Know What To Do With Myself', 223, 1, 7, 221387, 7251478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2773, N'Padre C�cero', 223, 1, 7, 139598, 4581685, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2774, N'Nosso Adeus', 223, 1, 7, 206471, 6793270, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2775, N'Can�rio Do Reino', 223, 1, 7, 139337, 4552858, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2776, N'Preciso Ser Amado', 223, 1, 7, 174001, 5618895, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2777, N'Balan�o', 223, 1, 7, 209737, 6890327, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2778, N'Preciso Aprender A Ser S�', 223, 1, 7, 162220, 5213894, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2779, N'Esta � A Can��o', 223, 1, 7, 184450, 6069933, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2780, N'Formigueiro', 223, 1, 7, 252943, 8455132, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2781, N'Comida', 224, 1, 4, N'Tit�s', 322612, 10786578, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2782, N'Go Back', 224, 1, 4, N'Tit�s', 230504, 7668899, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2783, N'Pr� Dizer Adeus', 224, 1, 4, N'Tit�s', 222484, 7382048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2784, N'Fam�lia', 224, 1, 4, N'Tit�s', 218331, 7267458, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2785, N'Os Cegos Do Castelo', 224, 1, 4, N'Tit�s', 296829, 9868187, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2786, N'O Pulso', 224, 1, 4, N'Tit�s', 199131, 6566998, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2787, N'Marvin', 224, 1, 4, N'Tit�s', 264359, 8741444, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2788, N'Nem 5 Minutos Guardados', 224, 1, 4, N'Tit�s', 245995, 8143797, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2789, N'Flores', 224, 1, 4, N'Tit�s', 215510, 7148017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2790, N'Palavras', 224, 1, 4, N'Tit�s', 158458, 5285715, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2791, N'Heredit�rio', 224, 1, 4, N'Tit�s', 151693, 5020547, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2792, N'A Melhor Forma', 224, 1, 4, N'Tit�s', 191503, 6349938, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2793, N'Cabe�a Dinossauro', 224, 1, 4, N'Tit�s', 37120, 1220930, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2794, N'32 Dentes', 224, 1, 4, N'Tit�s', 184946, 6157904, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2795, N'Bichos Escrotos (Vinheta)', 224, 1, 4, N'Tit�s', 104986, 3503755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2796, N'N�o Vou Lutar', 224, 1, 4, N'Tit�s', 189988, 6308613, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2797, N'Homem Primata (Vinheta)', 224, 1, 4, N'Tit�s', 34168, 1124909, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2798, N'Homem Primata', 224, 1, 4, N'Tit�s', 195500, 6486470, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2799, N'Pol�cia (Vinheta)', 224, 1, 4, N'Tit�s', 56111, 1824213, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2800, N'Querem Meu Sangue', 224, 1, 4, N'Tit�s', 212401, 7069773, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2801, N'Divers�o', 224, 1, 4, N'Tit�s', 285936, 9531268, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2802, N'Televis�o', 224, 1, 4, N'Tit�s', 293668, 9776548, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2803, N'Sonifera Ilha', 225, 1, 4, N'Branco Mello/Carlos Barmack/Ciro Pessoa/Marcelo Fromer/Toni Belloto', 170684, 5678290, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2804, N'Lugar Nenhum', 225, 1, 4, N'Arnaldo Antunes/Charles Gavin/Marcelo Fromer/S�rgio Britto/Toni Bellotto', 195840, 6472780, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2805, N'Sua Impossivel Chance', 225, 1, 4, N'Nando Reis', 246622, 8073248, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2806, N'Desordem', 225, 1, 4, N'Charles Gavin/Marcelo Fromer/S�rgio Britto', 213289, 7067340, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2807, N'N�o Vou Me Adaptar', 225, 1, 4, N'Arnaldo Antunes', 221831, 7304656, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2808, N'Domingo', 225, 1, 4, N'S�rgio Britto/Toni Bellotto', 208613, 6883180, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2809, N'Amanh� N�o Se Sabe', 225, 1, 4, N'S�rgio Britto', 189440, 6243967, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2810, N'Caras Como Eu', 225, 1, 4, N'Toni Bellotto', 183092, 5999048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2811, N'Senhora E Senhor', 225, 1, 4, N'Arnaldo Anutnes/Marcelo Fromer/Paulo Miklos', 203702, 6733733, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2812, N'Era Uma Vez', 225, 1, 4, N'Arnaldo Anutnes/Branco Mello/Marcelo Fromer/Sergio Brotto/Toni Bellotto', 224261, 7453156, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2813, N'Mis�ria', 225, 1, 4, N'Arnaldo Antunes/Britto, SergioMiklos, Paulo', 262191, 8727645, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2814, N'Insens�vel', 225, 1, 4, N'S�rgio Britto', 207830, 6893664, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2815, N'Eu E Ela', 225, 1, 4, N'Nando Reis', 276035, 9138846, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2816, N'Toda Cor', 225, 1, 4, N'Ciro Pressoa/Marcelo Fromer', 209084, 6939176, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2817, N'� Preciso Saber Viver', 225, 1, 4, N'Erasmo Carlos/Roberto Carlos', 251115, 8271418, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2818, N'Senhor Delegado/Eu N�o Aguento', 225, 1, 4, N'Antonio Lopes', 156656, 5277983, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2819, N'Battlestar Galactica: The Story So Far', 226, 3, 18, 2622250, 490750393, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2820, N'Occupation / Precipice', 227, 3, 19, 5286953, 1054423946, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2821, N'Exodus, Pt. 1', 227, 3, 19, 2621708, 475079441, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2822, N'Exodus, Pt. 2', 227, 3, 19, 2618000, 466820021, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2823, N'Collaborators', 227, 3, 19, 2626626, 483484911, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2824, N'Torn', 227, 3, 19, 2631291, 495262585, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2825, N'A Measure of Salvation', 227, 3, 18, 2563938, 489715554, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2826, N'Hero', 227, 3, 18, 2713755, 506896959, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2827, N'Unfinished Business', 227, 3, 18, 2622038, 528499160, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2828, N'The Passage', 227, 3, 18, 2623875, 490375760, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2829, N'The Eye of Jupiter', 227, 3, 18, 2618750, 517909587, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2830, N'Rapture', 227, 3, 18, 2624541, 508406153, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2831, N'Taking a Break from All Your Worries', 227, 3, 18, 2624207, 492700163, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2832, N'The Woman King', 227, 3, 18, 2626376, 552893447, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2833, N'A Day In the Life', 227, 3, 18, 2620245, 462818231, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2834, N'Dirty Hands', 227, 3, 18, 2627961, 537648614, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2835, N'Maelstrom', 227, 3, 18, 2622372, 514154275, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2836, N'The Son Also Rises', 227, 3, 18, 2621830, 499258498, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2837, N'Crossroads, Pt. 1', 227, 3, 20, 2622622, 486233524, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2838, N'Crossroads, Pt. 2', 227, 3, 20, 2869953, 497335706, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2839, N'Genesis', 228, 3, 19, 2611986, 515671080, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2840, N'Don''t Look Back', 228, 3, 21, 2571154, 493628775, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2841, N'One Giant Leap', 228, 3, 21, 2607649, 521616246, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2842, N'Collision', 228, 3, 21, 2605480, 526182322, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2843, N'Hiros', 228, 3, 21, 2533575, 488835454, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2844, N'Better Halves', 228, 3, 21, 2573031, 549353481, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2845, N'Nothing to Hide', 228, 3, 19, 2605647, 510058181, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2846, N'Seven Minutes to Midnight', 228, 3, 21, 2613988, 515590682, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2847, N'Homecoming', 228, 3, 21, 2601351, 516015339, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2848, N'Six Months Ago', 228, 3, 19, 2602852, 505133869, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2849, N'Fallout', 228, 3, 21, 2594761, 501145440, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2850, N'The Fix', 228, 3, 21, 2600266, 507026323, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2851, N'Distractions', 228, 3, 21, 2590382, 537111289, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2852, N'Run!', 228, 3, 21, 2602602, 542936677, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2853, N'Unexpected', 228, 3, 21, 2598139, 511777758, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2854, N'Company Man', 228, 3, 21, 2601226, 493168135, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2855, N'Company Man', 228, 3, 21, 2601101, 503786316, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2856, N'Parasite', 228, 3, 21, 2602727, 487461520, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2857, N'A Tale of Two Cities', 229, 3, 19, 2636970, 513691652, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2858, N'Lost (Pilot, Part 1) [Premiere]', 230, 3, 19, 2548875, 217124866, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2859, N'Man of Science, Man of Faith (Premiere)', 231, 3, 19, 2612250, 543342028, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2860, N'Adrift', 231, 3, 19, 2564958, 502663995, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2861, N'Lost (Pilot, Part 2)', 230, 3, 19, 2436583, 204995876, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2862, N'The Glass Ballerina', 229, 3, 21, 2637458, 535729216, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2863, N'Further Instructions', 229, 3, 19, 2563980, 502041019, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2864, N'Orientation', 231, 3, 19, 2609083, 500600434, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2865, N'Tabula Rasa', 230, 3, 19, 2627105, 210526410, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2866, N'Every Man for Himself', 229, 3, 21, 2637387, 513803546, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2867, N'Everybody Hates Hugo', 231, 3, 19, 2609192, 498163145, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2868, N'Walkabout', 230, 3, 19, 2587370, 207748198, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2869, N'...And Found', 231, 3, 19, 2563833, 500330548, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2870, N'The Cost of Living', 229, 3, 19, 2637500, 505647192, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2871, N'White Rabbit', 230, 3, 19, 2571965, 201654606, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2872, N'Abandoned', 231, 3, 19, 2587041, 537348711, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2873, N'House of the Rising Sun', 230, 3, 19, 2590032, 210379525, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2874, N'I Do', 229, 3, 19, 2627791, 504676825, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2875, N'Not In Portland', 229, 3, 21, 2637303, 499061234, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2876, N'Not In Portland', 229, 3, 21, 2637345, 510546847, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2877, N'The Moth', 230, 3, 19, 2631327, 228896396, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2878, N'The Other 48 Days', 231, 3, 19, 2610625, 535256753, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2879, N'Collision', 231, 3, 19, 2564916, 475656544, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2880, N'Confidence Man', 230, 3, 19, 2615244, 223756475, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2881, N'Flashes Before Your Eyes', 229, 3, 21, 2636636, 537760755, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2882, N'Lost Survival Guide', 229, 3, 21, 2632590, 486675063, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2883, N'Solitary', 230, 3, 19, 2612894, 207045178, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2884, N'What Kate Did', 231, 3, 19, 2610250, 484583988, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2885, N'Raised By Another', 230, 3, 19, 2590459, 223623810, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2886, N'Stranger In a Strange Land', 229, 3, 21, 2636428, 505056021, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2887, N'The 23rd Psalm', 231, 3, 19, 2610416, 487401604, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2888, N'All the Best Cowboys Have Daddy Issues', 230, 3, 19, 2555492, 211743651, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2889, N'The Hunting Party', 231, 3, 21, 2611333, 520350364, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2890, N'Tricia Tanaka Is Dead', 229, 3, 21, 2635010, 548197162, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2891, N'Enter 77', 229, 3, 21, 2629796, 517521422, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2892, N'Fire + Water', 231, 3, 21, 2600333, 488458695, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2893, N'Whatever the Case May Be', 230, 3, 19, 2616410, 183867185, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2894, N'Hearts and Minds', 230, 3, 19, 2619462, 207607466, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2895, N'Par Avion', 229, 3, 21, 2629879, 517079642, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2896, N'The Long Con', 231, 3, 19, 2679583, 518376636, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2897, N'One of Them', 231, 3, 21, 2698791, 542332389, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2898, N'Special', 230, 3, 19, 2618530, 219961967, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2899, N'The Man from Tallahassee', 229, 3, 21, 2637637, 550893556, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2900, N'Expos�', 229, 3, 21, 2593760, 511338017, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2901, N'Homecoming', 230, 3, 19, 2515882, 210675221, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2902, N'Maternity Leave', 231, 3, 21, 2780416, 555244214, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2903, N'Left Behind', 229, 3, 21, 2635343, 538491964, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2904, N'Outlaws', 230, 3, 19, 2619887, 206500939, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2905, N'The Whole Truth', 231, 3, 21, 2610125, 495487014, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2906, N'...In Translation', 230, 3, 19, 2604575, 215441983, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2907, N'Lockdown', 231, 3, 21, 2610250, 543886056, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2908, N'One of Us', 229, 3, 21, 2638096, 502387276, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2909, N'Catch-22', 229, 3, 21, 2561394, 489773399, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2910, N'Dave', 231, 3, 19, 2825166, 574325829, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2911, N'Numbers', 230, 3, 19, 2609772, 214709143, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2912, N'D.O.C.', 229, 3, 21, 2616032, 518556641, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2913, N'Deus Ex Machina', 230, 3, 19, 2582009, 214996732, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2914, N'S.O.S.', 231, 3, 19, 2639541, 517979269, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2915, N'Do No Harm', 230, 3, 19, 2618487, 212039309, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2916, N'Two for the Road', 231, 3, 21, 2610958, 502404558, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2917, N'The Greater Good', 230, 3, 19, 2617784, 214130273, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2918, N'"?"', 231, 3, 19, 2782333, 528227089, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2919, N'Born to Run', 230, 3, 19, 2618619, 213772057, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2920, N'Three Minutes', 231, 3, 19, 2763666, 531556853, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2921, N'Exodus (Part 1)', 230, 3, 19, 2620747, 213107744, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2922, N'Live Together, Die Alone, Pt. 1', 231, 3, 21, 2478041, 457364940, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2923, N'Exodus (Part 2) [Season Finale]', 230, 3, 19, 2605557, 208667059, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2924, N'Live Together, Die Alone, Pt. 2', 231, 3, 19, 2656531, 503619265, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (2925, N'Exodus (Part 3) [Season Finale]', 230, 3, 19, 2619869, 197937785, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2926, N'Zoo Station', 232, 1, 1, N'U2', 276349, 9056902, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2927, N'Even Better Than The Real Thing', 232, 1, 1, N'U2', 221361, 7279392, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2928, N'One', 232, 1, 1, N'U2', 276192, 9158892, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2929, N'Until The End Of The World', 232, 1, 1, N'U2', 278700, 9132485, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2930, N'Who''s Gonna Ride Your Wild Horses', 232, 1, 1, N'U2', 316551, 10304369, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2931, N'So Cruel', 232, 1, 1, N'U2', 349492, 11527614, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2932, N'The Fly', 232, 1, 1, N'U2', 268982, 8825399, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2933, N'Mysterious Ways', 232, 1, 1, N'U2', 243826, 8062057, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2934, N'Tryin'' To Throw Your Arms Around The World', 232, 1, 1, N'U2', 232463, 7612124, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2935, N'Ultraviolet (Light My Way)', 232, 1, 1, N'U2', 330788, 10754631, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2936, N'Acrobat', 232, 1, 1, N'U2', 270288, 8824723, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2937, N'Love Is Blindness', 232, 1, 1, N'U2', 263497, 8531766, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2938, N'Beautiful Day', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 248163, 8056723, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2939, N'Stuck In A Moment You Can''t Get Out Of', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 272378, 8997366, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2940, N'Elevation', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 227552, 7479414, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2941, N'Walk On', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 296280, 9800861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2942, N'Kite', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 266893, 8765761, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2943, N'In A Little While', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 219271, 7189647, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2944, N'Wild Honey', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 226768, 7466069, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2945, N'Peace On Earth', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 288496, 9476171, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2946, N'When I Look At The World', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 257776, 8500491, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2947, N'New York', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 330370, 10862323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2948, N'Grace', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 330657, 10877148, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2949, N'The Three Sunrises', 234, 1, 1, N'U2', 234788, 7717990, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2950, N'Spanish Eyes', 234, 1, 1, N'U2', 196702, 6392710, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2951, N'Sweetest Thing', 234, 1, 1, N'U2', 185103, 6154896, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2952, N'Love Comes Tumbling', 234, 1, 1, N'U2', 282671, 9328802, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2953, N'Bass Trap', 234, 1, 1, N'U2', 213289, 6834107, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2954, N'Dancing Barefoot', 234, 1, 1, N'Ivan Kral/Patti Smith', 287895, 9488294, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2955, N'Everlasting Love', 234, 1, 1, N'Buzz Cason/Mac Gayden', 202631, 6708932, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2956, N'Unchained Melody', 234, 1, 1, N'Alex North/Hy Zaret', 294164, 9597568, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2957, N'Walk To The Water', 234, 1, 1, N'U2', 289253, 9523336, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2958, N'Luminous Times (Hold On To Love)', 234, 1, 1, N'Brian Eno/U2', 277760, 9015513, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2959, N'Hallelujah Here She Comes', 234, 1, 1, N'U2', 242364, 8027028, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2960, N'Silver And Gold', 234, 1, 1, N'Bono', 279875, 9199746, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2961, N'Endless Deep', 234, 1, 1, N'U2', 179879, 5899070, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2962, N'A Room At The Heartbreak Hotel', 234, 1, 1, N'U2', 274546, 9015416, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2963, N'Trash, Trampoline And The Party Girl', 234, 1, 1, N'U2', 153965, 5083523, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2964, N'Vertigo', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 194612, 6329502, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2965, N'Miracle Drug', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 239124, 7760916, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2966, N'Sometimes You Can''t Make It On Your Own', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 308976, 10112863, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2967, N'Love And Peace Or Else', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 290690, 9476723, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2968, N'City Of Blinding Lights', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 347951, 11432026, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2969, N'All Because Of You', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 219141, 7198014, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2970, N'A Man And A Woman', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 270132, 8938285, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2971, N'Crumbs From Your Table', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 303568, 9892349, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2972, N'One Step Closer', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 231680, 7512912, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2973, N'Original Of The Species', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 281443, 9230041, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2974, N'Yahweh', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 262034, 8636998, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2975, N'Discotheque', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 319582, 10442206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2976, N'Do You Feel Loved', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 307539, 10122694, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2977, N'Mofo', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 349178, 11583042, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2978, N'If God Will Send His Angels', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 322533, 10563329, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2979, N'Staring At The Sun', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 276924, 9082838, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2980, N'Last Night On Earth', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 285753, 9401017, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2981, N'Gone', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 266866, 8746301, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2982, N'Miami', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 293041, 9741603, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2983, N'The Playboy Mansion', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 280555, 9274144, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2984, N'If You Wear That Velvet Dress', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 315167, 10227333, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2985, N'Please', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 302602, 9909484, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2986, N'Wake Up Dead Man', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 292832, 9515903, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2987, N'Helter Skelter', 237, 1, 1, N'Lennon, John/McCartney, Paul', 187350, 6097636, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2988, N'Van Diemen''s Land', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 186044, 5990280, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2989, N'Desire', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 179226, 5874535, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2990, N'Hawkmoon 269', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 382458, 12494987, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2991, N'All Along The Watchtower', 237, 1, 1, N'Dylan, Bob', 264568, 8623572, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2992, N'I Still Haven''t Found What I''m Looking for', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 353567, 11542247, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2993, N'Freedom For My People', 237, 1, 1, N'Mabins, Macie/Magee, Sterling/Robinson, Bobby', 38164, 1249764, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2994, N'Silver And Gold', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 349831, 11450194, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2995, N'Pride (In The Name Of Love)', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 267807, 8806361, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2996, N'Angel Of Harlem', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 229276, 7498022, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2997, N'Love Rescue Me', 237, 1, 1, N'Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge', 384522, 12508716, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2998, N'When Love Comes To Town', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 255869, 8340954, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (2999, N'Heartland', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 303360, 9867748, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3000, N'God Part II', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 195604, 6497570, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3001, N'The Star Spangled Banner', 237, 1, 1, N'Hendrix, Jimi', 43232, 1385810, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3002, N'Bullet The Blue Sky', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 337005, 10993607, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3003, N'All I Want Is You', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 390243, 12729820, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3004, N'Pride (In The Name Of Love)', 238, 1, 1, N'U2', 230243, 7549085, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3005, N'New Year''s Day', 238, 1, 1, N'U2', 258925, 8491818, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3006, N'With Or Without You', 238, 1, 1, N'U2', 299023, 9765188, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3007, N'I Still Haven''t Found What I''m Looking For', 238, 1, 1, N'U2', 280764, 9306737, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3008, N'Sunday Bloody Sunday', 238, 1, 1, N'U2', 282174, 9269668, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3009, N'Bad', 238, 1, 1, N'U2', 351817, 11628058, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3010, N'Where The Streets Have No Name', 238, 1, 1, N'U2', 276218, 9042305, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3011, N'I Will Follow', 238, 1, 1, N'U2', 218253, 7184825, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3012, N'The Unforgettable Fire', 238, 1, 1, N'U2', 295183, 9684664, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3013, N'Sweetest Thing', 238, 1, 1, N'U2 & Daragh O''Toole', 183066, 6071385, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3014, N'Desire', 238, 1, 1, N'U2', 179853, 5893206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3015, N'When Love Comes To Town', 238, 1, 1, N'U2', 258194, 8479525, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3016, N'Angel Of Harlem', 238, 1, 1, N'U2', 230217, 7527339, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3017, N'All I Want Is You', 238, 1, 1, N'U2 & Van Dyke Parks', 591986, 19202252, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3018, N'Sunday Bloody Sunday', 239, 1, 1, N'U2', 278204, 9140849, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3019, N'Seconds', 239, 1, 1, N'U2', 191582, 6352121, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3020, N'New Year''s Day', 239, 1, 1, N'U2', 336274, 11054732, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3021, N'Like A Song...', 239, 1, 1, N'U2', 287294, 9365379, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3022, N'Drowning Man', 239, 1, 1, N'U2', 254458, 8457066, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3023, N'The Refugee', 239, 1, 1, N'U2', 221283, 7374043, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3024, N'Two Hearts Beat As One', 239, 1, 1, N'U2', 243487, 7998323, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3025, N'Red Light', 239, 1, 1, N'U2', 225854, 7453704, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3026, N'Surrender', 239, 1, 1, N'U2', 333505, 11221406, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3027, N'"40"', 239, 1, 1, N'U2', 157962, 5251767, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3028, N'Zooropa', 240, 1, 1, N'U2; Bono', 392359, 12807979, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3029, N'Babyface', 240, 1, 1, N'U2; Bono', 241998, 7942573, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3030, N'Numb', 240, 1, 1, N'U2; Edge, The', 260284, 8577861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3031, N'Lemon', 240, 1, 1, N'U2; Bono', 418324, 13988878, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3032, N'Stay (Faraway, So Close!)', 240, 1, 1, N'U2; Bono', 298475, 9785480, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3033, N'Daddy''s Gonna Pay For Your Crashed Car', 240, 1, 1, N'U2; Bono', 320287, 10609581, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3034, N'Some Days Are Better Than Others', 240, 1, 1, N'U2; Bono', 257436, 8417690, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3035, N'The First Time', 240, 1, 1, N'U2; Bono', 225697, 7247651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3036, N'Dirty Day', 240, 1, 1, N'U2; Bono & Edge, The', 324440, 10652877, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3037, N'The Wanderer', 240, 1, 1, N'U2; Bono', 283951, 9258717, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3038, N'Breakfast In Bed', 241, 1, 8, 196179, 6513325, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3039, N'Where Did I Go Wrong', 241, 1, 8, 226742, 7485054, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3040, N'I Would Do For You', 241, 1, 8, 334524, 11193602, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3041, N'Homely Girl', 241, 1, 8, 203833, 6790788, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3042, N'Here I Am (Come And Take Me)', 241, 1, 8, 242102, 8106249, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3043, N'Kingston Town', 241, 1, 8, 226951, 7638236, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3044, N'Wear You To The Ball', 241, 1, 8, 213342, 7159527, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3045, N'(I Can''t Help) Falling In Love With You', 241, 1, 8, 207568, 6905623, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3046, N'Higher Ground', 241, 1, 8, 260179, 8665244, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3047, N'Bring Me Your Cup', 241, 1, 8, 341498, 11346114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3048, N'C''est La Vie', 241, 1, 8, 270053, 9031661, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3049, N'Reggae Music', 241, 1, 8, 245106, 8203931, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3050, N'Superstition', 241, 1, 8, 319582, 10728099, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3051, N'Until My Dying Day', 241, 1, 8, 235807, 7886195, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3052, N'Where Have All The Good Times Gone?', 242, 1, 1, N'Ray Davies', 186723, 6063937, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3053, N'Hang ''Em High', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 210259, 6872314, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3054, N'Cathedral', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 82860, 2650998, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3055, N'Secrets', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 206968, 6803255, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3056, N'Intruder', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 100153, 3282142, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3057, N'(Oh) Pretty Woman', 242, 1, 1, N'Bill Dees/Roy Orbison', 174680, 5665828, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3058, N'Dancing In The Street', 242, 1, 1, N'Ivy Jo Hunter/Marvin Gaye/William Stevenson', 225985, 7461499, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3059, N'Little Guitars (Intro)', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 42240, 1439530, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3060, N'Little Guitars', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 228806, 7453043, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3061, N'Big Bad Bill (Is Sweet William Now)', 242, 1, 1, N'Jack Yellen/Milton Ager', 165146, 5489609, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3062, N'The Full Bug', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 201116, 6551013, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3063, N'Happy Trails', 242, 1, 1, N'Dale Evans', 65488, 2111141, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3064, N'Eruption', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 102164, 3272891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3065, N'Ain''t Talkin'' ''bout Love', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 228336, 7569506, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3066, N'Runnin'' With The Devil', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 215902, 7061901, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3067, N'Dance the Night Away', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 185965, 6087433, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3068, N'And the Cradle Will Rock...', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 213968, 7011402, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3069, N'Unchained', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 208953, 6777078, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3070, N'Jump', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth', 241711, 7911090, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3071, N'Panama', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth', 211853, 6921784, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3072, N'Why Can''t This Be Love', 243, 1, 1, N'Van Halen', 227761, 7457655, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3073, N'Dreams', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 291813, 9504119, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3074, N'When It''s Love', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 338991, 11049966, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3075, N'Poundcake', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 321854, 10366978, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3076, N'Right Now', 243, 1, 1, N'Van Halen', 321828, 10503352, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3077, N'Can''t Stop Loving You', 243, 1, 1, N'Van Halen', 248502, 8107896, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3078, N'Humans Being', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 308950, 10014683, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3079, N'Can''t Get This Stuff No More', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth', 315376, 10355753, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3080, N'Me Wise Magic', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth', 366053, 12013467, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3081, N'Runnin'' With The Devil', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 216032, 7056863, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3082, N'Eruption', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 102556, 3286026, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3083, N'You Really Got Me', 244, 1, 1, N'Ray Davies', 158589, 5194092, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3084, N'Ain''t Talkin'' ''Bout Love', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 230060, 7617284, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3085, N'I''m The One', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 226507, 7373922, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3086, N'Jamie''s Cryin''', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 210546, 6946086, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3087, N'Atomic Punk', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 182073, 5908861, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3088, N'Feel Your Love Tonight', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 222850, 7293608, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3089, N'Little Dreamer', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 203258, 6648122, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3090, N'Ice Cream Man', 244, 1, 1, N'John Brim', 200306, 6573145, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3091, N'On Fire', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 180636, 5879235, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3092, N'Neworld', 245, 1, 1, N'Van Halen', 105639, 3495897, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3093, N'Without You', 245, 1, 1, N'Van Halen', 390295, 12619558, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3094, N'One I Want', 245, 1, 1, N'Van Halen', 330788, 10743970, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3095, N'From Afar', 245, 1, 1, N'Van Halen', 324414, 10524554, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3096, N'Dirty Water Dog', 245, 1, 1, N'Van Halen', 327392, 10709202, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3097, N'Once', 245, 1, 1, N'Van Halen', 462837, 15378082, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3098, N'Fire in the Hole', 245, 1, 1, N'Van Halen', 331728, 10846768, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3099, N'Josephina', 245, 1, 1, N'Van Halen', 342491, 11161521, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3100, N'Year to the Day', 245, 1, 1, N'Van Halen', 514612, 16621333, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3101, N'Primary', 245, 1, 1, N'Van Halen', 86987, 2812555, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3102, N'Ballot or the Bullet', 245, 1, 1, N'Van Halen', 342282, 11212955, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3103, N'How Many Say I', 245, 1, 1, N'Van Halen', 363937, 11716855, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3104, N'Sucker Train Blues', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 267859, 8738780, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3105, N'Do It For The Kids', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 235911, 7693331, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3106, N'Big Machine', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 265613, 8673442, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3107, N'Illegal I Song', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 257750, 8483347, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3108, N'Spectacle', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 221701, 7252876, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3109, N'Fall To Pieces', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 270889, 8823096, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3110, N'Headspace', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 223033, 7237986, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3111, N'Superhuman', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 255921, 8365328, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3112, N'Set Me Free', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 247954, 8053388, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3113, N'You Got No Right', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 335412, 10991094, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3114, N'Slither', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 248398, 8118785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3115, N'Dirty Little Thing', 246, 1, 1, N'Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash', 237844, 7732982, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3116, N'Loving The Alien', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 348786, 11412762, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3117, N'Pela Luz Dos Olhos Teus', 247, 1, 7, 119196, 3905715, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3118, N'A Bencao E Outros', 247, 1, 7, 421093, 14234427, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3119, N'Tudo Na Mais Santa Paz', 247, 1, 7, 222406, 7426757, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3120, N'O Velho E Aflor', 247, 1, 7, 275121, 9126828, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3121, N'Cotidiano N 2', 247, 1, 7, 55902, 1805797, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3122, N'Adeus', 247, 1, 7, 221884, 7259351, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3123, N'Samba Pra Endrigo', 247, 1, 7, 259265, 8823551, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3124, N'So Por Amor', 247, 1, 7, 236591, 7745764, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3125, N'Meu Pranto Rolou', 247, 1, 7, 181760, 6003345, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3126, N'Mulher Carioca', 247, 1, 7, 191686, 6395048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3127, N'Um Homem Chamado Alfredo', 247, 1, 7, 151640, 4976227, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3128, N'Samba Do Jato', 247, 1, 7, 220813, 7357840, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3129, N'Oi, La', 247, 1, 7, 167053, 5562700, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3130, N'Vinicius, Poeta Do Encontro', 247, 1, 7, 336431, 10858776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3131, N'Soneto Da Separacao', 247, 1, 7, 193880, 6277511, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3132, N'Still Of The Night', 141, 1, 3, N'Sykes', 398210, 13043817, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3133, N'Here I Go Again', 141, 1, 3, N'Marsden', 233874, 7652473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3134, N'Is This Love', 141, 1, 3, N'Sykes', 283924, 9262360, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3135, N'Love Ain''t No Stranger', 141, 1, 3, N'Galley', 259395, 8490428, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3136, N'Looking For Love', 141, 1, 3, N'Sykes', 391941, 12769847, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3137, N'Now You''re Gone', 141, 1, 3, N'Vandenberg', 251141, 8162193, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3138, N'Slide It In', 141, 1, 3, N'Coverdale', 202475, 6615152, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3139, N'Slow An'' Easy', 141, 1, 3, N'Moody', 367255, 11961332, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3140, N'Judgement Day', 141, 1, 3, N'Vandenberg', 317074, 10326997, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3141, N'You''re Gonna Break My Hart Again', 141, 1, 3, N'Sykes', 250853, 8176847, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3142, N'The Deeper The Love', 141, 1, 3, N'Vandenberg', 262791, 8606504, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3143, N'Crying In The Rain', 141, 1, 3, N'Coverdale', 337005, 10931921, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3144, N'Fool For Your Loving', 141, 1, 3, N'Marsden/Moody', 250801, 8129820, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3145, N'Sweet Lady Luck', 141, 1, 3, N'Vandenberg', 273737, 8919163, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3146, N'Faixa Amarela', 248, 1, 7, N'Beto Gogo/Jess� Pai/Luiz Carlos/Zeca Pagodinho', 240692, 8082036, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3147, N'Posso At� Me Apaixonar', 248, 1, 7, N'Dudu Nobre', 200698, 6735526, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3148, N'N�o Sou Mais Disso', 248, 1, 7, N'Jorge Arag�o/Zeca Pagodinho', 225985, 7613817, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3149, N'Vivo Isolado Do Mundo', 248, 1, 7, N'Alcides Dias Lopes', 180035, 6073995, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3150, N'Cora��o Em Desalinho', 248, 1, 7, N'Mauro Diniz/Ratino Sigem', 185208, 6225948, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3151, N'Seu Balanc�', 248, 1, 7, N'Paulinho Rezende/Toninho Geraes', 219454, 7311219, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3152, N'Vai Adiar', 248, 1, 7, N'Alcino Corr�a/Monarco', 270393, 9134882, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3153, N'Rugas', 248, 1, 7, N'Augusto Garcez/Nelson Cavaquinho', 140930, 4703182, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3154, N'Feirinha da Pavuna/Luz do Repente/Baga�o da Laranja', 248, 1, 7, N'Arlindo Cruz/Franco/Marquinhos PQD/Negro, Jovelina P�rolo/Zeca Pagodinho', 107206, 3593684, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3155, N'Sem Essa de Malandro Agulha', 248, 1, 7, N'Aldir Blanc/Jayme Vignoli', 158484, 5332668, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3156, N'Chico N�o Vai na Corimba', 248, 1, 7, N'Dudu Nobre/Zeca Pagodinho', 269374, 9122188, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3157, N'Papel Principal', 248, 1, 7, N'Almir Guineto/Ded� Paraiso/Luverci Ernesto', 217495, 7325302, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3158, N'Saudade Louca', 248, 1, 7, N'Acyr Marques/Arlindo Cruz/Franco', 243591, 8136475, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3159, N'Camar�o que Dorme e Onda Leva', 248, 1, 7, N'Acyi Marques/Arlindo Bruz/Bra�o, Beto Sem/Zeca Pagodinho', 299102, 10012231, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3160, N'Sapopemba e Maxambomba', 248, 1, 7, N'Nei Lopes/Wilson Moreira', 245394, 8268712, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3161, N'Minha F�', 248, 1, 7, N'Muril�o', 206994, 6981474, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3162, N'Lua de Ogum', 248, 1, 7, N'Ratinho/Zeca Pagodinho', 168463, 5719129, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3163, N'Samba pras mo�as', 248, 1, 7, N'Grazielle/Roque Ferreira', 152816, 5121366, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3164, N'Verdade', 248, 1, 7, N'Carlinhos Santana/Nelson Rufino', 332826, 11120708, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3165, N'The Brig', 229, 3, 21, 2617325, 488919543, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3166, N'.07%', 228, 3, 21, 2585794, 541715199, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3167, N'Five Years Gone', 228, 3, 21, 2587712, 530551890, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3168, N'The Hard Part', 228, 3, 21, 2601017, 475996611, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3169, N'The Man Behind the Curtain', 229, 3, 21, 2615990, 493951081, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3170, N'Greatest Hits', 229, 3, 21, 2617117, 522102916, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3171, N'Landslide', 228, 3, 21, 2600725, 518677861, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3172, N'The Office: An American Workplace (Pilot)', 249, 3, 19, 1380833, 290482361, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3173, N'Diversity Day', 249, 3, 19, 1306416, 257879716, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3174, N'Health Care', 249, 3, 19, 1321791, 260493577, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3175, N'The Alliance', 249, 3, 19, 1317125, 266203162, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3176, N'Basketball', 249, 3, 19, 1323541, 267464180, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3177, N'Hot Girl', 249, 3, 19, 1325458, 267836576, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3178, N'The Dundies', 250, 3, 19, 1253541, 246845576, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3179, N'Sexual Harassment', 250, 3, 19, 1294541, 273069146, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3180, N'Office Olympics', 250, 3, 19, 1290458, 256247623, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3181, N'The Fire', 250, 3, 19, 1288166, 266856017, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3182, N'Halloween', 250, 3, 19, 1315333, 249205209, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3183, N'The Fight', 250, 3, 19, 1320028, 277149457, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3184, N'The Client', 250, 3, 19, 1299341, 253836788, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3185, N'Performance Review', 250, 3, 19, 1292458, 256143822, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3186, N'Email Surveillance', 250, 3, 19, 1328870, 265101113, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3187, N'Christmas Party', 250, 3, 19, 1282115, 260891300, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3188, N'Booze Cruise', 250, 3, 19, 1267958, 252518021, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3189, N'The Injury', 250, 3, 19, 1275275, 253912762, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3190, N'The Secret', 250, 3, 19, 1264875, 253143200, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3191, N'The Carpet', 250, 3, 19, 1264375, 256477011, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3192, N'Boys and Girls', 250, 3, 19, 1278333, 255245729, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3193, N'Valentine''s Day', 250, 3, 19, 1270375, 253552710, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3194, N'Dwight''s Speech', 250, 3, 19, 1278041, 255001728, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3195, N'Take Your Daughter to Work Day', 250, 3, 19, 1268333, 253451012, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3196, N'Michael''s Birthday', 250, 3, 19, 1237791, 247238398, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3197, N'Drug Testing', 250, 3, 19, 1278625, 244626927, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3198, N'Conflict Resolution', 250, 3, 19, 1274583, 253808658, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3199, N'Casino Night - Season Finale', 250, 3, 19, 1712791, 327642458, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3200, N'Gay Witch Hunt', 251, 3, 19, 1326534, 276942637, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3201, N'The Convention', 251, 3, 19, 1297213, 255117055, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3202, N'The Coup', 251, 3, 19, 1276526, 267205501, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3203, N'Grief Counseling', 251, 3, 19, 1282615, 256912833, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3204, N'The Initiation', 251, 3, 19, 1280113, 251728257, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3205, N'Diwali', 251, 3, 19, 1279904, 252726644, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3206, N'Branch Closing', 251, 3, 19, 1822781, 358761786, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3207, N'The Merger', 251, 3, 19, 1801926, 345960631, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3208, N'The Convict', 251, 3, 22, 1273064, 248863427, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3209, N'A Benihana Christmas, Pts. 1 & 2', 251, 3, 22, 2519436, 515301752, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3210, N'Back from Vacation', 251, 3, 22, 1271688, 245378749, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3211, N'Traveling Salesmen', 251, 3, 22, 1289039, 250822697, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3212, N'Producer''s Cut: The Return', 251, 3, 22, 1700241, 337219980, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3213, N'Ben Franklin', 251, 3, 22, 1271938, 264168080, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3214, N'Phyllis''s Wedding', 251, 3, 22, 1271521, 258561054, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3215, N'Business School', 251, 3, 22, 1302093, 254402605, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3216, N'Cocktails', 251, 3, 22, 1272522, 259011909, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3217, N'The Negotiation', 251, 3, 22, 1767851, 371663719, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3218, N'Safety Training', 251, 3, 22, 1271229, 253054534, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3219, N'Product Recall', 251, 3, 22, 1268268, 251208610, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3220, N'Women''s Appreciation', 251, 3, 22, 1732649, 338778844, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3221, N'Beach Games', 251, 3, 22, 1676134, 333671149, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3222, N'The Job', 251, 3, 22, 2541875, 501060138, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3223, N'How to Stop an Exploding Man', 228, 3, 21, 2687103, 487881159, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3224, N'Through a Looking Glass', 229, 3, 21, 5088838, 1059546140, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3225, N'Your Time Is Gonna Come', 252, 2, 1, N'Page, Jones', 310774, 5126563, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3226, N'Battlestar Galactica, Pt. 1', 253, 3, 20, 2952702, 541359437, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3227, N'Battlestar Galactica, Pt. 2', 253, 3, 20, 2956081, 521387924, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3228, N'Battlestar Galactica, Pt. 3', 253, 3, 20, 2927802, 554509033, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3229, N'Lost Planet of the Gods, Pt. 1', 253, 3, 20, 2922547, 537812711, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3230, N'Lost Planet of the Gods, Pt. 2', 253, 3, 20, 2914664, 534343985, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3231, N'The Lost Warrior', 253, 3, 20, 2920045, 558872190, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3232, N'The Long Patrol', 253, 3, 20, 2925008, 513122217, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3233, N'The Gun On Ice Planet Zero, Pt. 1', 253, 3, 20, 2907615, 540980196, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3234, N'The Gun On Ice Planet Zero, Pt. 2', 253, 3, 20, 2924341, 546542281, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3235, N'The Magnificent Warriors', 253, 3, 20, 2924716, 570152232, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3236, N'The Young Lords', 253, 3, 20, 2863571, 587051735, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3237, N'The Living Legend, Pt. 1', 253, 3, 20, 2924507, 503641007, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3238, N'The Living Legend, Pt. 2', 253, 3, 20, 2923298, 515632754, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3239, N'Fire In Space', 253, 3, 20, 2926593, 536784757, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3240, N'War of the Gods, Pt. 1', 253, 3, 20, 2922630, 505761343, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3241, N'War of the Gods, Pt. 2', 253, 3, 20, 2923381, 487899692, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3242, N'The Man With Nine Lives', 253, 3, 20, 2956998, 577829804, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3243, N'Murder On the Rising Star', 253, 3, 20, 2935894, 551759986, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3244, N'Greetings from Earth, Pt. 1', 253, 3, 20, 2960293, 536824558, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3245, N'Greetings from Earth, Pt. 2', 253, 3, 20, 2903778, 527842860, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3246, N'Baltar''s Escape', 253, 3, 20, 2922088, 525564224, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3247, N'Experiment In Terra', 253, 3, 20, 2923548, 547982556, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3248, N'Take the Celestra', 253, 3, 20, 2927677, 512381289, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3249, N'The Hand of God', 253, 3, 20, 2924007, 536583079, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3250, N'Pilot', 254, 3, 19, 2484567, 492670102, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3251, N'Through the Looking Glass, Pt. 2', 229, 3, 21, 2617117, 550943353, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3252, N'Through the Looking Glass, Pt. 1', 229, 3, 21, 2610860, 493211809, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3253, N'Instant Karma', 255, 2, 9, 193188, 3150090, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3254, N'#9 Dream', 255, 2, 9, 278312, 4506425, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3255, N'Mother', 255, 2, 9, 287740, 4656660, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3256, N'Give Peace a Chance', 255, 2, 9, 274644, 4448025, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3257, N'Cold Turkey', 255, 2, 9, 281424, 4556003, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3258, N'Whatever Gets You Thru the Night', 255, 2, 9, 215084, 3499018, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3259, N'I''m Losing You', 255, 2, 9, 240719, 3907467, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3260, N'Gimme Some Truth', 255, 2, 9, 232778, 3780807, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3261, N'Oh, My Love', 255, 2, 9, 159473, 2612788, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3262, N'Imagine', 255, 2, 9, 192329, 3136271, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3263, N'Nobody Told Me', 255, 2, 9, 210348, 3423395, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3264, N'Jealous Guy', 255, 2, 9, 239094, 3881620, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3265, N'Working Class Hero', 255, 2, 9, 265449, 4301430, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3266, N'Power to the People', 255, 2, 9, 213018, 3466029, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3267, N'Imagine', 255, 2, 9, 219078, 3562542, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3268, N'Beautiful Boy', 255, 2, 9, 227995, 3704642, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3269, N'Isolation', 255, 2, 9, 156059, 2558399, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3270, N'Watching the Wheels', 255, 2, 9, 198645, 3237063, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3271, N'Grow Old With Me', 255, 2, 9, 149093, 2447453, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3272, N'Gimme Some Truth', 255, 2, 9, 187546, 3060083, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3273, N'[Just Like] Starting Over', 255, 2, 9, 215549, 3506308, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3274, N'God', 255, 2, 9, 260410, 4221135, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3275, N'Real Love', 255, 2, 9, 236911, 3846658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3276, N'Sympton of the Universe', 256, 2, 1, 340890, 5489313, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3277, N'Snowblind', 256, 2, 1, 295960, 4773171, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3278, N'Black Sabbath', 256, 2, 1, 364180, 5860455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3279, N'Fairies Wear Boots', 256, 2, 1, 392764, 6315916, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3280, N'War Pigs', 256, 2, 1, 515435, 8270194, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3281, N'The Wizard', 256, 2, 1, 282678, 4561796, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3282, N'N.I.B.', 256, 2, 1, 335248, 5399456, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3283, N'Sweet Leaf', 256, 2, 1, 354706, 5709700, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3284, N'Never Say Die', 256, 2, 1, 258343, 4173799, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3285, N'Sabbath, Bloody Sabbath', 256, 2, 1, 333622, 5373633, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3286, N'Iron Man/Children of the Grave', 256, 2, 1, 552308, 8858616, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3287, N'Paranoid', 256, 2, 1, 189171, 3071042, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3288, N'Rock You Like a Hurricane', 257, 2, 1, 255766, 4300973, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3289, N'No One Like You', 257, 2, 1, 240325, 4050259, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3290, N'The Zoo', 257, 2, 1, 332740, 5550779, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3291, N'Loving You Sunday Morning', 257, 2, 1, 339125, 5654493, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3292, N'Still Loving You', 257, 2, 1, 390674, 6491444, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3293, N'Big City Nights', 257, 2, 1, 251865, 4237651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3294, N'Believe in Love', 257, 2, 1, 325774, 5437651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3295, N'Rhythm of Love', 257, 2, 1, 231246, 3902834, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3296, N'I Can''t Explain', 257, 2, 1, 205332, 3482099, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3297, N'Tease Me Please Me', 257, 2, 1, 287229, 4811894, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3298, N'Wind of Change', 257, 2, 1, 315325, 5268002, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3299, N'Send Me an Angel', 257, 2, 1, 273041, 4581492, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3300, N'Jump Around', 258, 1, 17, N'E. Schrody/L. Muggerud', 217835, 8715653, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3301, N'Salutations', 258, 1, 17, N'E. Schrody/L. Dimant', 69120, 2767047, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3302, N'Put Your Head Out', 258, 1, 17, N'E. Schrody/L. Freese/L. Muggerud', 182230, 7291473, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3303, N'Top O'' The Morning To Ya', 258, 1, 17, N'E. Schrody/L. Dimant', 216633, 8667599, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3304, N'Commercial 1', 258, 1, 17, N'L. Muggerud', 7941, 319888, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3305, N'House And The Rising Sun', 258, 1, 17, N'E. Schrody/J. Vasquez/L. Dimant', 219402, 8778369, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3306, N'Shamrocks And Shenanigans', 258, 1, 17, N'E. Schrody/L. Dimant', 218331, 8735518, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3307, N'House Of Pain Anthem', 258, 1, 17, N'E. Schrody/L. Dimant', 155611, 6226713, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3308, N'Danny Boy, Danny Boy', 258, 1, 17, N'E. Schrody/L. Muggerud', 114520, 4583091, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3309, N'Guess Who''s Back', 258, 1, 17, N'E. Schrody/L. Muggerud', 238393, 9537994, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3310, N'Commercial 2', 258, 1, 17, N'L. Muggerud', 21211, 850698, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3311, N'Put On Your Shit Kickers', 258, 1, 17, N'E. Schrody/L. Muggerud', 190432, 7619569, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3312, N'Come And Get Some Of This', 258, 1, 17, N'E. Schrody/L. Muggerud/R. Medrano', 170475, 6821279, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3313, N'Life Goes On', 258, 1, 17, N'E. Schrody/R. Medrano', 163030, 6523458, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3314, N'One For The Road', 258, 1, 17, N'E. Schrody/L. Dimant/L. Muggerud', 170213, 6810820, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3315, N'Feel It', 258, 1, 17, N'E. Schrody/R. Medrano', 239908, 9598588, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3316, N'All My Love', 258, 1, 17, N'E. Schrody/L. Dimant', 200620, 8027065, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3317, N'Jump Around (Pete Rock Remix)', 258, 1, 17, N'E. Schrody/L. Muggerud', 236120, 9447101, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3318, N'Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)', 258, 1, 17, N'E. Schrody/L. Dimant', 237035, 9483705, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3319, N'Instinto Colectivo', 259, 1, 15, 300564, 12024875, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3320, N'Chapa o Coco', 259, 1, 15, 143830, 5755478, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3321, N'Prostituta', 259, 1, 15, 359000, 14362307, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3322, N'Eu So Queria Sumir', 259, 1, 15, 269740, 10791921, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3323, N'Tres Reis', 259, 1, 15, 304143, 12168015, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3324, N'Um Lugar ao Sol', 259, 1, 15, 212323, 8495217, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3325, N'Batalha Naval', 259, 1, 15, 285727, 11431382, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3326, N'Todo o Carnaval tem seu Fim', 259, 1, 15, 237426, 9499371, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3327, N'O Misterio do Samba', 259, 1, 15, 226142, 9047970, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3328, N'Armadura', 259, 1, 15, 232881, 9317533, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3329, N'Na Ladeira', 259, 1, 15, 221570, 8865099, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3330, N'Carimbo', 259, 1, 15, 328751, 13152314, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3331, N'Catimbo', 259, 1, 15, 254484, 10181692, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3332, N'Funk de Bamba', 259, 1, 15, 237322, 9495184, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3333, N'Chega no Suingue', 259, 1, 15, 221805, 8874509, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3334, N'Mun-Ra', 259, 1, 15, 274651, 10988338, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3335, N'Freestyle Love', 259, 1, 15, 318484, 12741680, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3336, N'War Pigs', 260, 4, 23, 234013, 8052374, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3337, N'Past, Present, and Future', 261, 3, 21, 2492867, 490796184, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3338, N'The Beginning of the End', 261, 3, 21, 2611903, 526865050, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3339, N'LOST Season 4 Trailer', 261, 3, 21, 112712, 20831818, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3340, N'LOST In 8:15', 261, 3, 21, 497163, 98460675, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3341, N'Confirmed Dead', 261, 3, 21, 2611986, 512168460, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3342, N'The Economist', 261, 3, 21, 2609025, 516934914, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3343, N'Eggtown', 261, 3, 19, 2608817, 501061240, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3344, N'The Constant', 261, 3, 21, 2611569, 520209363, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3345, N'The Other Woman', 261, 3, 21, 2605021, 513246663, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3346, N'Ji Yeon', 261, 3, 19, 2588797, 506458858, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3347, N'Meet Kevin Johnson', 261, 3, 19, 2612028, 504132981, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3348, N'The Shape of Things to Come', 261, 3, 21, 2591299, 502284266, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3349, N'Amanda', 262, 5, 2, N'Luca Gusella', 246503, 4011615, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3350, N'Despertar', 262, 5, 2, N'Andrea Dulbecco', 307385, 4821485, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3351, N'Din Din Wo (Little Child)', 263, 5, 16, N'Habib Koit�', 285837, 4615841, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3352, N'Distance', 264, 5, 15, N'Karsh Kale/Vishal Vaid', 327122, 5327463, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3353, N'I Guess You''re Right', 265, 5, 1, N'Darius "Take One" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris', 212044, 3453849, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3354, N'I Ka Barra (Your Work)', 263, 5, 16, N'Habib Koit�', 300605, 4855457, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3355, N'Love Comes', 265, 5, 1, N'Darius "Take One" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris', 199923, 3240609, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3356, N'Muita Bobeira', 266, 5, 7, N'Luciana Souza', 172710, 2775071, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3357, N'OAM''s Blues', 267, 5, 2, N'Aaron Goldberg', 266936, 4292028, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3358, N'One Step Beyond', 264, 5, 15, N'Karsh Kale', 366085, 6034098, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3359, N'Symphony No. 3 in E-flat major, Op. 55, "Eroica" - Scherzo: Allegro Vivace', 268, 5, 24, N'Ludwig van Beethoven', 356426, 5817216, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3360, N'Something Nice Back Home', 261, 3, 21, 2612779, 484711353, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3361, N'Cabin Fever', 261, 3, 21, 2612028, 477733942, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3362, N'There''s No Place Like Home, Pt. 1', 261, 3, 21, 2609526, 522919189, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3363, N'There''s No Place Like Home, Pt. 2', 261, 3, 21, 2497956, 523748920, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3364, N'There''s No Place Like Home, Pt. 3', 261, 3, 21, 2582957, 486161766, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3365, N'Say Hello 2 Heaven', 269, 2, 23, 384497, 6477217, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3366, N'Reach Down', 269, 2, 23, 672773, 11157785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3367, N'Hunger Strike', 269, 2, 23, 246292, 4233212, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3368, N'Pushin Forward Back', 269, 2, 23, 225278, 3892066, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3369, N'Call Me a Dog', 269, 2, 23, 304458, 5177612, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3370, N'Times of Trouble', 269, 2, 23, 342539, 5795951, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3371, N'Wooden Jesus', 269, 2, 23, 250565, 4302603, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3372, N'Your Savior', 269, 2, 23, 244226, 4199626, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3373, N'Four Walled World', 269, 2, 23, 414474, 6964048, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3374, N'All Night Thing', 269, 2, 23, 231803, 3997982, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3375, N'No Such Thing', 270, 2, 23, N'Chris Cornell', 224837, 3691272, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3376, N'Poison Eye', 270, 2, 23, N'Chris Cornell', 237120, 3890037, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3377, N'Arms Around Your Love', 270, 2, 23, N'Chris Cornell', 214016, 3516224, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3378, N'Safe and Sound', 270, 2, 23, N'Chris Cornell', 256764, 4207769, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3379, N'She''ll Never Be Your Man', 270, 2, 23, N'Chris Cornell', 204078, 3355715, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3380, N'Ghosts', 270, 2, 23, N'Chris Cornell', 231547, 3799745, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3381, N'Killing Birds', 270, 2, 23, N'Chris Cornell', 218498, 3588776, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3382, N'Billie Jean', 270, 2, 23, N'Michael Jackson', 281401, 4606408, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3383, N'Scar On the Sky', 270, 2, 23, N'Chris Cornell', 220193, 3616618, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3384, N'Your Soul Today', 270, 2, 23, N'Chris Cornell', 205959, 3385722, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3385, N'Finally Forever', 270, 2, 23, N'Chris Cornell', 217035, 3565098, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3386, N'Silence the Voices', 270, 2, 23, N'Chris Cornell', 267376, 4379597, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3387, N'Disappearing Act', 270, 2, 23, N'Chris Cornell', 273320, 4476203, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3388, N'You Know My Name', 270, 2, 23, N'Chris Cornell', 240255, 3940651, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3389, N'Revelations', 271, 2, 23, 252376, 4111051, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3390, N'One and the Same', 271, 2, 23, 217732, 3559040, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3391, N'Sound of a Gun', 271, 2, 23, 260154, 4234990, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3392, N'Until We Fall', 271, 2, 23, 230758, 3766605, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3393, N'Original Fire', 271, 2, 23, 218916, 3577821, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3394, N'Broken City', 271, 2, 23, 228366, 3728955, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3395, N'Somedays', 271, 2, 23, 213831, 3497176, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3396, N'Shape of Things to Come', 271, 2, 23, 274597, 4465399, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3397, N'Jewel of the Summertime', 271, 2, 23, 233242, 3806103, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3398, N'Wide Awake', 271, 2, 23, 266308, 4333050, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3399, N'Nothing Left to Say But Goodbye', 271, 2, 23, 213041, 3484335, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3400, N'Moth', 271, 2, 23, 298049, 4838884, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3401, N'Show Me How to Live (Live at the Quart Festival)', 271, 2, 23, 301974, 4901540, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3402, N'Band Members Discuss Tracks from "Revelations"', 271, 3, 23, 294294, 61118891, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3403, N'Intoitus: Adorate Deum', 272, 2, 24, N'Anonymous', 245317, 4123531, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3404, N'Miserere mei, Deus', 273, 2, 24, N'Gregorio Allegri', 501503, 8285941, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3405, N'Canon and Gigue in D Major: I. Canon', 274, 2, 24, N'Johann Pachelbel', 271788, 4438393, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3406, N'Concerto No. 1 in E Major, RV 269 "Spring": I. Allegro', 275, 2, 24, N'Antonio Vivaldi', 199086, 3347810, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3407, N'Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace', 276, 2, 24, N'Johann Sebastian Bach', 193722, 3192890, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3408, N'Aria Mit 30 Ver�nderungen, BWV 988 "Goldberg Variations": Aria', 277, 2, 24, N'Johann Sebastian Bach', 120463, 2081895, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3409, N'Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Pr�lude', 278, 2, 24, N'Johann Sebastian Bach', 143288, 2315495, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3410, N'The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound', 279, 2, 24, N'George Frideric Handel', 582029, 9553140, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3411, N'Solomon HWV 67: The Arrival of the Queen of Sheba', 280, 2, 24, N'George Frideric Handel', 197135, 3247914, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3412, N'"Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro', 281, 2, 24, N'Wolfgang Amadeus Mozart', 348971, 5760129, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3413, N'Concerto for Clarinet in A Major, K. 622: II. Adagio', 282, 2, 24, N'Wolfgang Amadeus Mozart', 394482, 6474980, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3414, N'Symphony No. 104 in D Major "London": IV. Finale: Spiritoso', 283, 4, 24, N'Franz Joseph Haydn', 306687, 10085867, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3415, N'Symphony No.5 in C Minor: I. Allegro con brio', 284, 2, 24, N'Ludwig van Beethoven', 392462, 6419730, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3416, N'Ave Maria', 285, 2, 24, N'Franz Schubert', 338243, 5605648, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3417, N'Nabucco: Chorus, "Va, Pensiero, Sull''ali Dorate"', 286, 2, 24, N'Giuseppe Verdi', 274504, 4498583, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3418, N'Die Walk�re: The Ride of the Valkyries', 287, 2, 24, N'Richard Wagner', 189008, 3114209, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3419, N'Requiem, Op.48: 4. Pie Jesu', 288, 2, 24, N'Gabriel Faur�', 258924, 4314850, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3420, N'The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy', 289, 2, 24, N'Peter Ilyich Tchaikovsky', 304226, 5184289, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3421, N'Nimrod (Adagio) from Variations On an Original Theme, Op. 36 "Enigma"', 290, 2, 24, N'Edward Elgar', 250031, 4124707, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3422, N'Madama Butterfly: Un Bel D� Vedremo', 291, 2, 24, N'Giacomo Puccini', 277639, 4588197, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3423, N'Jupiter, the Bringer of Jollity', 292, 2, 24, N'Gustav Holst', 522099, 8547876, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3424, N'Turandot, Act III, Nessun dorma!', 293, 2, 24, N'Giacomo Puccini', 176911, 2920890, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3425, N'Adagio for Strings from the String Quartet, Op. 11', 294, 2, 24, N'Samuel Barber', 596519, 9585597, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3426, N'Carmina Burana: O Fortuna', 295, 2, 24, N'Carl Orff', 156710, 2630293, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3427, N'Fanfare for the Common Man', 296, 2, 24, N'Aaron Copland', 198064, 3211245, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3428, N'Branch Closing', 251, 3, 22, 1814855, 360331351, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3429, N'The Return', 251, 3, 22, 1705080, 343877320, 1.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3430, N'Toccata and Fugue in D Minor, BWV 565: I. Toccata', 297, 2, 24, N'Johann Sebastian Bach', 153901, 2649938, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3431, N'Symphony No.1 in D Major, Op.25 "Classical", Allegro Con Brio', 298, 2, 24, N'Sergei Prokofiev', 254001, 4195542, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3432, N'Scheherazade, Op. 35: I. The Sea and Sindbad''s Ship', 299, 2, 24, N'Nikolai Rimsky-Korsakov', 545203, 8916313, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3433, N'Concerto No.2 in F Major, BWV1047, I. Allegro', 300, 2, 24, N'Johann Sebastian Bach', 307244, 5064553, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3434, N'Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto', 301, 2, 24, N'Fr�d�ric Chopin', 560342, 9160082, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3435, N'Cavalleria Rusticana \ Act \ Intermezzo Sinfonico', 302, 2, 24, N'Pietro Mascagni', 243436, 4001276, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3436, N'Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)', 303, 2, 24, N'Jean Sibelius', 406000, 5908455, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3437, N'Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, "Moonlight": I. Adagio sostenuto', 304, 2, 24, N'Ludwig van Beethoven', 391000, 6318740, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3438, N'Fantasia On Greensleeves', 280, 2, 24, N'Ralph Vaughan Williams', 268066, 4513190, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3439, N'Das Lied Von Der Erde, Von Der Jugend', 305, 2, 24, N'Gustav Mahler', 223583, 3700206, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3440, N'Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato', 306, 2, 24, N'Edward Elgar', 483133, 7865479, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3441, N'Two Fanfares for Orchestra: II. Short Ride in a Fast Machine', 307, 2, 24, N'John Adams', 254930, 4310896, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3442, N'Wellington''s Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph', 308, 2, 24, N'Ludwig van Beethoven', 412000, 6965201, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3443, N'Missa Papae Marcelli: Kyrie', 309, 2, 24, N'Giovanni Pierluigi da Palestrina', 240666, 4244149, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3444, N'Romeo et Juliette: No. 11 - Danse des Chevaliers', 310, 2, 24, 275015, 4519239, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3445, N'On the Beautiful Blue Danube', 311, 2, 24, N'Johann Strauss II', 526696, 8610225, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3446, N'Symphonie Fantastique, Op. 14: V. Songe d''une nuit du sabbat', 312, 2, 24, N'Hector Berlioz', 561967, 9173344, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3447, N'Carmen: Overture', 313, 2, 24, N'Georges Bizet', 132932, 2189002, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3448, N'Lamentations of Jeremiah, First Set \ Incipit Lamentatio', 314, 2, 24, N'Thomas Tallis', 69194, 1208080, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3449, N'Music for the Royal Fireworks, HWV351 (1749): La R�jouissance', 315, 2, 24, N'George Frideric Handel', 120000, 2193734, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3450, N'Peer Gynt Suite No.1, Op.46: 1. Morning Mood', 316, 2, 24, N'Edvard Grieg', 253422, 4298769, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3451, N'Die Zauberfl�te, K.620: "Der H�lle Rache Kocht in Meinem Herze"', 317, 2, 25, N'Wolfgang Amadeus Mozart', 174813, 2861468, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3452, N'SCRIABIN: Prelude in B Major, Op. 11, No. 11', 318, 4, 24, 101293, 3819535, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3453, N'Pavan, Lachrimae Antiquae', 319, 2, 24, N'John Dowland', 253281, 4211495, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3454, N'Symphony No. 41 in C Major, K. 551, "Jupiter": IV. Molto allegro', 320, 2, 24, N'Wolfgang Amadeus Mozart', 362933, 6173269, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3455, N'Rehab', 321, 2, 14, 213240, 3416878, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3456, N'You Know I''m No Good', 321, 2, 14, 256946, 4133694, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3457, N'Me & Mr. Jones', 321, 2, 14, 151706, 2449438, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3458, N'Just Friends', 321, 2, 14, 191933, 3098906, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3459, N'Back to Black', 321, 2, 14, N'Mark Ronson', 240320, 3852953, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3460, N'Love Is a Losing Game', 321, 2, 14, 154386, 2509409, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3461, N'Tears Dry On Their Own', 321, 2, 14, N'Nickolas Ashford & Valerie Simpson', 185293, 2996598, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3462, N'Wake Up Alone', 321, 2, 14, N'Paul O''duffy', 221413, 3576773, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3463, N'Some Unholy War', 321, 2, 14, 141520, 2304465, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3464, N'He Can Only Hold Her', 321, 2, 14, N'Richard Poindexter & Robert Poindexter', 166680, 2666531, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3465, N'You Know I''m No Good (feat. Ghostface Killah)', 321, 2, 14, 202320, 3260658, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3466, N'Rehab (Hot Chip Remix)', 321, 2, 14, 418293, 6670600, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3467, N'Intro / Stronger Than Me', 322, 2, 9, 234200, 3832165, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3468, N'You Sent Me Flying / Cherry', 322, 2, 9, 409906, 6657517, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3469, N'F**k Me Pumps', 322, 2, 9, N'Salaam Remi', 200253, 3324343, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3470, N'I Heard Love Is Blind', 322, 2, 9, 129666, 2190831, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3471, N'(There Is) No Greater Love (Teo Licks)', 322, 2, 9, N'Isham Jones & Marty Symes', 167933, 2773507, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3472, N'In My Bed', 322, 2, 9, N'Salaam Remi', 315960, 5211774, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3473, N'Take the Box', 322, 2, 9, N'Luke Smith', 199160, 3281526, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3474, N'October Song', 322, 2, 9, N'Matt Rowe & Stefan Skarbek', 204846, 3358125, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3475, N'What Is It About Men', 322, 2, 9, N'Delroy "Chris" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole', 209573, 3426106, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3476, N'Help Yourself', 322, 2, 9, N'Freddy James, Jimmy hogarth & Larry Stock', 300884, 5029266, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3477, N'Amy Amy Amy (Outro)', 322, 2, 9, N'Astor Campbell, Delroy "Chris" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek', 663426, 10564704, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3478, N'Slowness', 323, 2, 23, 215386, 3644793, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3479, N'Prometheus Overture, Op. 43', 324, 4, 24, N'Ludwig van Beethoven', 339567, 10887931, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3480, N'Sonata for Solo Violin: IV: Presto', 325, 4, 24, N'B�la Bart�k', 299350, 9785346, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3481, N'A Midsummer Night''s Dream, Op.61 Incidental Music: No.7 Notturno', 326, 2, 24, 387826, 6497867, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3482, N'Suite No. 3 in D, BWV 1068: III. Gavotte I & II', 327, 2, 24, N'Johann Sebastian Bach', 225933, 3847164, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3483, N'Concert pour 4 Parties de V**les, H. 545: I. Prelude', 328, 2, 24, N'Marc-Antoine Charpentier', 110266, 1973559, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3484, N'Adios nonino', 329, 2, 24, N'Astor Piazzolla', 289388, 4781384, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3485, N'Symphony No. 3 Op. 36 for Orchestra and Soprano "Symfonia Piesni Zalosnych" \ Lento E Largo - Tranquillissimo', 330, 2, 24, N'Henryk G�recki', 567494, 9273123, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3486, N'Act IV, Symphony', 331, 2, 24, N'Henry Purcell', 364296, 5987695, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3487, N'3 Gymnop�dies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux', 332, 2, 24, N'Erik Satie', 385506, 6458501, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3488, N'Music for the Funeral of Queen Mary: VI. "Thou Knowest, Lord, the Secrets of Our Hearts"', 333, 2, 24, N'Henry Purcell', 142081, 2365930, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3489, N'Symphony No. 2: III. Allegro vivace', 334, 2, 24, N'Kurt Weill', 376510, 6129146, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3490, N'Partita in E Major, BWV 1006A: I. Prelude', 335, 2, 24, N'Johann Sebastian Bach', 285673, 4744929, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3491, N'Le Sacre Du Printemps: I.iv. Spring Rounds', 336, 2, 24, N'Igor Stravinsky', 234746, 4072205, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3492, N'Sing Joyfully', 314, 2, 24, N'William Byrd', 133768, 2256484, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3493, N'Metopes, Op. 29: Calypso', 337, 2, 24, N'Karol Szymanowski', 333669, 5548755, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3494, N'Symphony No. 2, Op. 16 - "The Four Temperaments": II. Allegro Comodo e Flemmatico', 338, 2, 24, N'Carl Nielsen', 286998, 4834785, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3495, N'24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor', 339, 2, 24, N'Niccol� Paganini', 265541, 4371533, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3496, N'�tude 1, In C Major - Preludio (Presto) - Liszt', 340, 4, 24, 51780, 2229617, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3497, N'Erlkonig, D.328', 341, 2, 24, 261849, 4307907, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3498, N'Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro', 342, 4, 24, N'Pietro Antonio Locatelli', 493573, 16454937, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Milliseconds", "Bytes", "UnitPrice") VALUES (3499, N'Pini Di Roma (Pinien Von Rom) \ I Pini Della Via Appia', 343, 2, 24, 286741, 4718950, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3500, N'String Quartet No. 12 in C Minor, D. 703 "Quartettsatz": II. Andante - Allegro assai', 344, 2, 24, N'Franz Schubert', 139200, 2283131, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3501, N'L''orfeo, Act 3, Sinfonia (Orchestra)', 345, 2, 24, N'Claudio Monteverdi', 66639, 1189062, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3502, N'Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro', 346, 2, 24, N'Wolfgang Amadeus Mozart', 221331, 3665114, 0.99); -INSERT INTO "Track" ("TrackId", "Name", "AlbumId", "MediaTypeId", "GenreId", "Composer", "Milliseconds", "Bytes", "UnitPrice") VALUES (3503, N'Koyaanisqatsi', 347, 2, 10, N'Philip Glass', 206005, 3305164, 0.99); - -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (1, N'Adams', N'Andrew', N'General Manager', '1962/2/18', '2002/8/14', N'11120 Jasper Ave NW', N'Edmonton', N'AB', N'Canada', N'T5K 2N1', N'+1 (780) 428-9482', N'+1 (780) 428-3457', N'andrew@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (2, N'Edwards', N'Nancy', N'Sales Manager', 1, '1958/12/8', '2002/5/1', N'825 8 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 2T3', N'+1 (403) 262-3443', N'+1 (403) 262-3322', N'nancy@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (3, N'Peacock', N'Jane', N'Sales Support Agent', 2, '1973/8/29', '2002/4/1', N'1111 6 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 5M5', N'+1 (403) 262-3443', N'+1 (403) 262-6712', N'jane@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (4, N'Park', N'Margaret', N'Sales Support Agent', 2, '1947/9/19', '2003/5/3', N'683 10 Street SW', N'Calgary', N'AB', N'Canada', N'T2P 5G3', N'+1 (403) 263-4423', N'+1 (403) 263-4289', N'margaret@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (5, N'Johnson', N'Steve', N'Sales Support Agent', 2, '1965/3/3', '2003/10/17', N'7727B 41 Ave', N'Calgary', N'AB', N'Canada', N'T3B 1Y7', N'1 (780) 836-9987', N'1 (780) 836-9543', N'steve@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (6, N'Mitchell', N'Michael', N'IT Manager', 1, '1973/7/1', '2003/10/17', N'5827 Bowness Road NW', N'Calgary', N'AB', N'Canada', N'T3B 0C5', N'+1 (403) 246-9887', N'+1 (403) 246-9899', N'michael@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (7, N'King', N'Robert', N'IT Staff', 6, '1970/5/29', '2004/1/2', N'590 Columbia Boulevard West', N'Lethbridge', N'AB', N'Canada', N'T1K 5N8', N'+1 (403) 456-9986', N'+1 (403) 456-8485', N'robert@chinookcorp.com'); -INSERT INTO "Employee" ("EmployeeId", "LastName", "FirstName", "Title", "ReportsTo", "BirthDate", "HireDate", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email") VALUES (8, N'Callahan', N'Laura', N'IT Staff', 6, '1968/1/9', '2004/3/4', N'923 7 ST NW', N'Lethbridge', N'AB', N'Canada', N'T1H 1Y8', N'+1 (403) 467-3351', N'+1 (403) 467-8772', N'laura@chinookcorp.com'); - -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (1, N'Lu�s', N'Gon�alves', N'Embraer - Empresa Brasileira de Aeron�utica S.A.', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', N'+55 (12) 3923-5555', N'+55 (12) 3923-5566', N'luisg@embraer.com.br', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (2, N'Leonie', N'K�hler', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', N'+49 0711 2842222', N'leonekohler@surfeu.de', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (3, N'Fran�ois', N'Tremblay', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', N'+1 (514) 721-4711', N'ftremblay@gmail.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (4, N'Bj�rn', N'Hansen', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', N'+47 22 44 22 22', N'bjorn.hansen@yahoo.no', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (5, N'Franti�ek', N'Wichterlov�', N'JetBrains s.r.o.', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', N'+420 2 4172 5555', N'+420 2 4172 5555', N'frantisekw@jetbrains.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (6, N'Helena', N'Hol�', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', N'+420 2 4177 0449', N'hholy@gmail.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (7, N'Astrid', N'Gruber', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', N'+43 01 5134505', N'astrid.gruber@apple.at', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (8, N'Daan', N'Peeters', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', N'+32 02 219 03 03', N'daan_peeters@apple.be', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (9, N'Kara', N'Nielsen', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', N'+453 3331 9991', N'kara.nielsen@jubii.dk', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (10, N'Eduardo', N'Martins', N'Woodstock Discos', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', N'+55 (11) 3033-5446', N'+55 (11) 3033-4564', N'eduardo@woodstock.com.br', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (11, N'Alexandre', N'Rocha', N'Banco do Brasil S.A.', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', N'+55 (11) 3055-3278', N'+55 (11) 3055-8131', N'alero@uol.com.br', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (12, N'Roberto', N'Almeida', N'Riotur', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', N'+55 (21) 2271-7000', N'+55 (21) 2271-7070', N'roberto.almeida@riotur.gov.br', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (13, N'Fernanda', N'Ramos', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', N'+55 (61) 3363-5547', N'+55 (61) 3363-7855', N'fernadaramos4@uol.com.br', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (14, N'Mark', N'Philips', N'Telus', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', N'+1 (780) 434-4554', N'+1 (780) 434-5565', N'mphilips12@shaw.ca', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (15, N'Jennifer', N'Peterson', N'Rogers Canada', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', N'+1 (604) 688-2255', N'+1 (604) 688-8756', N'jenniferp@rogers.ca', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (16, N'Frank', N'Harris', N'Google Inc.', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', N'+1 (650) 253-0000', N'+1 (650) 253-0000', N'fharris@google.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (17, N'Jack', N'Smith', N'Microsoft Corporation', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', N'+1 (425) 882-8080', N'+1 (425) 882-8081', N'jacksmith@microsoft.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (18, N'Michelle', N'Brooks', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', N'+1 (212) 221-3546', N'+1 (212) 221-4679', N'michelleb@aol.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Company", "Address", "City", "State", "Country", "PostalCode", "Phone", "Fax", "Email", "SupportRepId") VALUES (19, N'Tim', N'Goyer', N'Apple Inc.', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', N'+1 (408) 996-1010', N'+1 (408) 996-1011', N'tgoyer@apple.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (20, N'Dan', N'Miller', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', N'+1 (650) 644-3358', N'dmiller@comcast.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (21, N'Kathy', N'Chase', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', N'+1 (775) 223-7665', N'kachase@hotmail.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (22, N'Heather', N'Leacock', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', N'+1 (407) 999-7788', N'hleacock@gmail.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (23, N'John', N'Gordon', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', N'+1 (617) 522-1333', N'johngordon22@yahoo.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (24, N'Frank', N'Ralston', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', N'+1 (312) 332-3232', N'fralston@gmail.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (25, N'Victor', N'Stevens', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', N'+1 (608) 257-0597', N'vstevens@yahoo.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (26, N'Richard', N'Cunningham', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', N'+1 (817) 924-7272', N'ricunningham@hotmail.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (27, N'Patrick', N'Gray', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', N'+1 (520) 622-4200', N'patrick.gray@aol.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (28, N'Julia', N'Barnett', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', N'+1 (801) 531-7272', N'jubarnett@gmail.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (29, N'Robert', N'Brown', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', N'+1 (416) 363-8888', N'robbrown@shaw.ca', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (30, N'Edward', N'Francis', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', N'+1 (613) 234-3322', N'edfrancis@yachoo.ca', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (31, N'Martha', N'Silk', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', N'+1 (902) 450-0450', N'marthasilk@gmail.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (32, N'Aaron', N'Mitchell', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', N'+1 (204) 452-6452', N'aaronmitchell@yahoo.ca', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (33, N'Ellie', N'Sullivan', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', N'+1 (867) 920-2233', N'ellie.sullivan@shaw.ca', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "Phone", "Email", "SupportRepId") VALUES (34, N'Jo�o', N'Fernandes', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', N'+351 (213) 466-111', N'jfernandes@yahoo.pt', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "Phone", "Email", "SupportRepId") VALUES (35, N'Madalena', N'Sampaio', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', N'+351 (225) 022-448', N'masampaio@sapo.pt', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (36, N'Hannah', N'Schneider', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', N'+49 030 26550280', N'hannah.schneider@yahoo.de', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (37, N'Fynn', N'Zimmermann', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', N'+49 069 40598889', N'fzimmermann@yahoo.de', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (38, N'Niklas', N'Schr�der', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', N'+49 030 2141444', N'nschroder@surfeu.de', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (39, N'Camille', N'Bernard', N'4, Rue Milton', N'Paris', N'France', N'75009', N'+33 01 49 70 65 65', N'camille.bernard@yahoo.fr', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (40, N'Dominique', N'Lefebvre', N'8, Rue Hanovre', N'Paris', N'France', N'75002', N'+33 01 47 42 71 71', N'dominiquelefebvre@gmail.com', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (41, N'Marc', N'Dubois', N'11, Place Bellecour', N'Lyon', N'France', N'69002', N'+33 04 78 30 30 30', N'marc.dubois@hotmail.com', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (42, N'Wyatt', N'Girard', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', N'+33 05 56 96 96 96', N'wyatt.girard@yahoo.fr', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (43, N'Isabelle', N'Mercier', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', N'+33 03 80 73 66 99', N'isabelle_mercier@apple.fr', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (44, N'Terhi', N'H�m�l�inen', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', N'+358 09 870 2000', N'terhi.hamalainen@apple.fi', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Email", "SupportRepId") VALUES (45, N'Ladislav', N'Kov�cs', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', N'ladislav_kovacs@apple.hu', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "Phone", "Email", "SupportRepId") VALUES (46, N'Hugh', N'O''Reilly', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', N'+353 01 6792424', N'hughoreilly@apple.ie', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (47, N'Lucas', N'Mancini', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', N'+39 06 39733434', N'lucas.mancini@yahoo.it', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (48, N'Johannes', N'Van der Berg', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', N'+31 020 6223130', N'johavanderberg@yahoo.nl', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (49, N'Stanislaw', N'W�jcik', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', N'+48 22 828 37 39', N'stanislaw.w�jcik@wp.pl', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (50, N'Enrique', N'Mu�oz', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', N'+34 914 454 454', N'enrique_munoz@yahoo.es', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (51, N'Joakim', N'Johansson', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', N'+46 08-651 52 52', N'joakim.johansson@yahoo.se', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (52, N'Emma', N'Jones', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', N'+44 020 7707 0707', N'emma_jones@hotmail.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (53, N'Phil', N'Hughes', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', N'+44 020 7976 5722', N'phil.hughes@gmail.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (54, N'Steve', N'Murray', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', N'+44 0131 315 3300', N'steve.murray@yahoo.uk', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "State", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (55, N'Mark', N'Taylor', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', N'+61 (02) 9332 3633', N'mark.taylor@yahoo.au', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (56, N'Diego', N'Guti�rrez', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', N'+54 (0)11 4311 4333', N'diego.gutierrez@yahoo.ar', 4); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "Phone", "Email", "SupportRepId") VALUES (57, N'Luis', N'Rojas', N'Calle Lira, 198', N'Santiago', N'Chile', N'+56 (0)2 635 4444', N'luisrojas@yahoo.cl', 5); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (58, N'Manoj', N'Pareek', N'12,Community Centre', N'Delhi', N'India', N'110017', N'+91 0124 39883988', N'manoj.pareek@rediff.com', 3); -INSERT INTO "Customer" ("CustomerId", "FirstName", "LastName", "Address", "City", "Country", "PostalCode", "Phone", "Email", "SupportRepId") VALUES (59, N'Puja', N'Srivastava', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', N'+91 080 22289999', N'puja_srivastava@yahoo.in', 3); - -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (1, 2, '2009/1/1', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (2, 4, '2009/1/2', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (3, 8, '2009/1/3', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (4, 14, '2009/1/6', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (5, 23, '2009/1/11', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (6, 37, '2009/1/19', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (7, 38, '2009/2/1', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (8, 40, '2009/2/1', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (9, 42, '2009/2/2', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (10, 46, '2009/2/3', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (11, 52, '2009/2/6', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (12, 2, '2009/2/11', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (13, 16, '2009/2/19', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (14, 17, '2009/3/4', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (15, 19, '2009/3/4', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (16, 21, '2009/3/5', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (17, 25, '2009/3/6', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (18, 31, '2009/3/9', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (19, 40, '2009/3/14', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (20, 54, '2009/3/22', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (21, 55, '2009/4/4', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (22, 57, '2009/4/4', N'Calle Lira, 198', N'Santiago', N'Chile', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (23, 59, '2009/4/5', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (24, 4, '2009/4/6', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (25, 10, '2009/4/9', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (26, 19, '2009/4/14', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (27, 33, '2009/4/22', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (28, 34, '2009/5/5', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (29, 36, '2009/5/5', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (30, 38, '2009/5/6', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (31, 42, '2009/5/7', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (32, 48, '2009/5/10', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (33, 57, '2009/5/15', N'Calle Lira, 198', N'Santiago', N'Chile', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (34, 12, '2009/5/23', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (35, 13, '2009/6/5', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (36, 15, '2009/6/5', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (37, 17, '2009/6/6', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (38, 21, '2009/6/7', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (39, 27, '2009/6/10', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (40, 36, '2009/6/15', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (41, 50, '2009/6/23', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (42, 51, '2009/7/6', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (43, 53, '2009/7/6', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (44, 55, '2009/7/7', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (45, 59, '2009/7/8', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (46, 6, '2009/7/11', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (47, 15, '2009/7/16', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (48, 29, '2009/7/24', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (49, 30, '2009/8/6', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (50, 32, '2009/8/6', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (51, 34, '2009/8/7', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (52, 38, '2009/8/8', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (53, 44, '2009/8/11', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (54, 53, '2009/8/16', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (55, 8, '2009/8/24', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (56, 9, '2009/9/6', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (57, 11, '2009/9/6', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (58, 13, '2009/9/7', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (59, 17, '2009/9/8', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (60, 23, '2009/9/11', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (61, 32, '2009/9/16', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (62, 46, '2009/9/24', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (63, 47, '2009/10/7', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (64, 49, '2009/10/7', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (65, 51, '2009/10/8', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (66, 55, '2009/10/9', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (67, 2, '2009/10/12', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (68, 11, '2009/10/17', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (69, 25, '2009/10/25', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (70, 26, '2009/11/7', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (71, 28, '2009/11/7', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (72, 30, '2009/11/8', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (73, 34, '2009/11/9', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (74, 40, '2009/11/12', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (75, 49, '2009/11/17', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (76, 4, '2009/11/25', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (77, 5, '2009/12/8', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (78, 7, '2009/12/8', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (79, 9, '2009/12/9', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (80, 13, '2009/12/10', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (81, 19, '2009/12/13', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (82, 28, '2009/12/18', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (83, 42, '2009/12/26', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (84, 43, '2010/1/8', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (85, 45, '2010/1/8', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (86, 47, '2010/1/9', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (87, 51, '2010/1/10', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 6.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (88, 57, '2010/1/13', N'Calle Lira, 198', N'Santiago', N'Chile', 17.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (89, 7, '2010/1/18', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 18.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (90, 21, '2010/1/26', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (91, 22, '2010/2/8', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (92, 24, '2010/2/8', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (93, 26, '2010/2/9', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (94, 30, '2010/2/10', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (95, 36, '2010/2/13', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (96, 45, '2010/2/18', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 21.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (97, 59, '2010/2/26', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 1.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (98, 1, '2010/3/11', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 3.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (99, 3, '2010/3/11', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 3.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (100, 5, '2010/3/12', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (101, 9, '2010/3/13', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (102, 15, '2010/3/16', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 9.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (103, 24, '2010/3/21', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 15.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (104, 38, '2010/3/29', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (105, 39, '2010/4/11', N'4, Rue Milton', N'Paris', N'France', N'75009', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (106, 41, '2010/4/11', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (107, 43, '2010/4/12', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (108, 47, '2010/4/13', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (109, 53, '2010/4/16', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (110, 3, '2010/4/21', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (111, 17, '2010/4/29', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (112, 18, '2010/5/12', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (113, 20, '2010/5/12', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (114, 22, '2010/5/13', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (115, 26, '2010/5/14', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (116, 32, '2010/5/17', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (117, 41, '2010/5/22', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (118, 55, '2010/5/30', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (119, 56, '2010/6/12', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (120, 58, '2010/6/12', N'12,Community Centre', N'Delhi', N'India', N'110017', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (121, 1, '2010/6/13', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (122, 5, '2010/6/14', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (123, 11, '2010/6/17', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (124, 20, '2010/6/22', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (125, 34, '2010/6/30', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (126, 35, '2010/7/13', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (127, 37, '2010/7/13', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (128, 39, '2010/7/14', N'4, Rue Milton', N'Paris', N'France', N'75009', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (129, 43, '2010/7/15', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (130, 49, '2010/7/18', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (131, 58, '2010/7/23', N'12,Community Centre', N'Delhi', N'India', N'110017', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (132, 13, '2010/7/31', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (133, 14, '2010/8/13', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (134, 16, '2010/8/13', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (135, 18, '2010/8/14', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (136, 22, '2010/8/15', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (137, 28, '2010/8/18', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (138, 37, '2010/8/23', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (139, 51, '2010/8/31', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (140, 52, '2010/9/13', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (141, 54, '2010/9/13', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (142, 56, '2010/9/14', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (143, 1, '2010/9/15', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (144, 7, '2010/9/18', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (145, 16, '2010/9/23', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (146, 30, '2010/10/1', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (147, 31, '2010/10/14', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (148, 33, '2010/10/14', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (149, 35, '2010/10/15', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (150, 39, '2010/10/16', N'4, Rue Milton', N'Paris', N'France', N'75009', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (151, 45, '2010/10/19', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (152, 54, '2010/10/24', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (153, 9, '2010/11/1', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (154, 10, '2010/11/14', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (155, 12, '2010/11/14', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (156, 14, '2010/11/15', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (157, 18, '2010/11/16', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (158, 24, '2010/11/19', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (159, 33, '2010/11/24', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (160, 47, '2010/12/2', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (161, 48, '2010/12/15', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (162, 50, '2010/12/15', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (163, 52, '2010/12/16', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (164, 56, '2010/12/17', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (165, 3, '2010/12/20', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (166, 12, '2010/12/25', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (167, 26, '2011/1/2', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (168, 27, '2011/1/15', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (169, 29, '2011/1/15', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (170, 31, '2011/1/16', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (171, 35, '2011/1/17', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (172, 41, '2011/1/20', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (173, 50, '2011/1/25', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (174, 5, '2011/2/2', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (175, 6, '2011/2/15', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (176, 8, '2011/2/15', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (177, 10, '2011/2/16', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (178, 14, '2011/2/17', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (179, 20, '2011/2/20', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (180, 29, '2011/2/25', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (181, 43, '2011/3/5', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (182, 44, '2011/3/18', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (183, 46, '2011/3/18', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (184, 48, '2011/3/19', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (185, 52, '2011/3/20', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (186, 58, '2011/3/23', N'12,Community Centre', N'Delhi', N'India', N'110017', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (187, 8, '2011/3/28', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (188, 22, '2011/4/5', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (189, 23, '2011/4/18', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (190, 25, '2011/4/18', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (191, 27, '2011/4/19', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (192, 31, '2011/4/20', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (193, 37, '2011/4/23', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 14.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (194, 46, '2011/4/28', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 21.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (195, 1, '2011/5/6', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (196, 2, '2011/5/19', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (197, 4, '2011/5/19', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (198, 6, '2011/5/20', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (199, 10, '2011/5/21', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (200, 16, '2011/5/24', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (201, 25, '2011/5/29', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 18.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (202, 39, '2011/6/6', N'4, Rue Milton', N'Paris', N'France', N'75009', 1.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (203, 40, '2011/6/19', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 2.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (204, 42, '2011/6/19', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 3.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (205, 44, '2011/6/20', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 7.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (206, 48, '2011/6/21', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 8.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (207, 54, '2011/6/24', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (208, 4, '2011/6/29', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 15.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (209, 18, '2011/7/7', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (210, 19, '2011/7/20', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (211, 21, '2011/7/20', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (212, 23, '2011/7/21', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (213, 27, '2011/7/22', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (214, 33, '2011/7/25', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (215, 42, '2011/7/30', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (216, 56, '2011/8/7', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (217, 57, '2011/8/20', N'Calle Lira, 198', N'Santiago', N'Chile', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (218, 59, '2011/8/20', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (219, 2, '2011/8/21', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (220, 6, '2011/8/22', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (221, 12, '2011/8/25', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (222, 21, '2011/8/30', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (223, 35, '2011/9/7', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (224, 36, '2011/9/20', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (225, 38, '2011/9/20', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (226, 40, '2011/9/21', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (227, 44, '2011/9/22', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (228, 50, '2011/9/25', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (229, 59, '2011/9/30', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (230, 14, '2011/10/8', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (231, 15, '2011/10/21', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (232, 17, '2011/10/21', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (233, 19, '2011/10/22', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (234, 23, '2011/10/23', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (235, 29, '2011/10/26', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (236, 38, '2011/10/31', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (237, 52, '2011/11/8', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (238, 53, '2011/11/21', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (239, 55, '2011/11/21', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (240, 57, '2011/11/22', N'Calle Lira, 198', N'Santiago', N'Chile', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (241, 2, '2011/11/23', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (242, 8, '2011/11/26', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (243, 17, '2011/12/1', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (244, 31, '2011/12/9', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (245, 32, '2011/12/22', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (246, 34, '2011/12/22', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (247, 36, '2011/12/23', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (248, 40, '2011/12/24', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (249, 46, '2011/12/27', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (250, 55, '2012/1/1', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (251, 10, '2012/1/9', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (252, 11, '2012/1/22', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (253, 13, '2012/1/22', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (254, 15, '2012/1/23', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (255, 19, '2012/1/24', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (256, 25, '2012/1/27', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (257, 34, '2012/2/1', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (258, 48, '2012/2/9', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (259, 49, '2012/2/22', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (260, 51, '2012/2/22', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (261, 53, '2012/2/23', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (262, 57, '2012/2/24', N'Calle Lira, 198', N'Santiago', N'Chile', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (263, 4, '2012/2/27', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (264, 13, '2012/3/3', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (265, 27, '2012/3/11', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (266, 28, '2012/3/24', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (267, 30, '2012/3/24', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (268, 32, '2012/3/25', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (269, 36, '2012/3/26', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (270, 42, '2012/3/29', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (271, 51, '2012/4/3', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (272, 6, '2012/4/11', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (273, 7, '2012/4/24', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (274, 9, '2012/4/24', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (275, 11, '2012/4/25', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (276, 15, '2012/4/26', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (277, 21, '2012/4/29', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (278, 30, '2012/5/4', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (279, 44, '2012/5/12', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (280, 45, '2012/5/25', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (281, 47, '2012/5/25', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (282, 49, '2012/5/26', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (283, 53, '2012/5/27', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (284, 59, '2012/5/30', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (285, 9, '2012/6/4', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (286, 23, '2012/6/12', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (287, 24, '2012/6/25', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (288, 26, '2012/6/25', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (289, 28, '2012/6/26', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (290, 32, '2012/6/27', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (291, 38, '2012/6/30', N'Barbarossastra�e 19', N'Berlin', N'Germany', N'10779', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (292, 47, '2012/7/5', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (293, 2, '2012/7/13', N'Theodor-Heuss-Stra�e 34', N'Stuttgart', N'Germany', N'70174', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (294, 3, '2012/7/26', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (295, 5, '2012/7/26', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (296, 7, '2012/7/27', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (297, 11, '2012/7/28', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (298, 17, '2012/7/31', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 10.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (299, 26, '2012/8/5', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 23.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (300, 40, '2012/8/13', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (301, 41, '2012/8/26', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (302, 43, '2012/8/26', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (303, 45, '2012/8/27', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (304, 49, '2012/8/28', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (305, 55, '2012/8/31', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (306, 5, '2012/9/5', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 16.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (307, 19, '2012/9/13', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 1.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (308, 20, '2012/9/26', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 3.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (309, 22, '2012/9/26', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 3.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (310, 24, '2012/9/27', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 7.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (311, 28, '2012/9/28', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 11.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (312, 34, '2012/10/1', N'Rua da Assun��o 53', N'Lisbon', N'Portugal', 10.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (313, 43, '2012/10/6', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 16.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (314, 57, '2012/10/14', N'Calle Lira, 198', N'Santiago', N'Chile', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (315, 58, '2012/10/27', N'12,Community Centre', N'Delhi', N'India', N'110017', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (316, 1, '2012/10/27', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (317, 3, '2012/10/28', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (318, 7, '2012/10/29', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (319, 13, '2012/11/1', N'Qe 7 Bloco G', N'Bras�lia', N'DF', N'Brazil', N'71020-677', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (320, 22, '2012/11/6', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (321, 36, '2012/11/14', N'Tauentzienstra�e 8', N'Berlin', N'Germany', N'10789', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (322, 37, '2012/11/27', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (323, 39, '2012/11/27', N'4, Rue Milton', N'Paris', N'France', N'75009', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (324, 41, '2012/11/28', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (325, 45, '2012/11/29', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (326, 51, '2012/12/2', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (327, 1, '2012/12/7', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (328, 15, '2012/12/15', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (329, 16, '2012/12/28', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (330, 18, '2012/12/28', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (331, 20, '2012/12/29', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (332, 24, '2012/12/30', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (333, 30, '2013/1/2', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (334, 39, '2013/1/7', N'4, Rue Milton', N'Paris', N'France', N'75009', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (335, 53, '2013/1/15', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (336, 54, '2013/1/28', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (337, 56, '2013/1/28', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (338, 58, '2013/1/29', N'12,Community Centre', N'Delhi', N'India', N'110017', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (339, 3, '2013/1/30', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (340, 9, '2013/2/2', N'S�nder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (341, 18, '2013/2/7', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (342, 32, '2013/2/15', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (343, 33, '2013/2/28', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (344, 35, '2013/2/28', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (345, 37, '2013/3/1', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (346, 41, '2013/3/2', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (347, 47, '2013/3/5', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (348, 56, '2013/3/10', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (349, 11, '2013/3/18', N'Av. Paulista, 2022', N'S�o Paulo', N'SP', N'Brazil', N'01310-200', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (350, 12, '2013/3/31', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (351, 14, '2013/3/31', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (352, 16, '2013/4/1', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (353, 20, '2013/4/2', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (354, 26, '2013/4/5', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (355, 35, '2013/4/10', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (356, 49, '2013/4/18', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (357, 50, '2013/5/1', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (358, 52, '2013/5/1', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (359, 54, '2013/5/2', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (360, 58, '2013/5/3', N'12,Community Centre', N'Delhi', N'India', N'110017', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (361, 5, '2013/5/6', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (362, 14, '2013/5/11', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (363, 28, '2013/5/19', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (364, 29, '2013/6/1', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (365, 31, '2013/6/1', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (366, 33, '2013/6/2', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (367, 37, '2013/6/3', N'Berger Stra�e 10', N'Frankfurt', N'Germany', N'60316', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (368, 43, '2013/6/6', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (369, 52, '2013/6/11', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (370, 7, '2013/6/19', N'Rotenturmstra�e 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (371, 8, '2013/7/2', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (372, 10, '2013/7/2', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (373, 12, '2013/7/3', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (374, 16, '2013/7/4', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (375, 22, '2013/7/7', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (376, 31, '2013/7/12', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (377, 45, '2013/7/20', N'Erzs�bet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (378, 46, '2013/8/2', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (379, 48, '2013/8/2', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (380, 50, '2013/8/3', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (381, 54, '2013/8/4', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (382, 1, '2013/8/7', N'Av. Brigadeiro Faria Lima, 2170', N'S�o Jos� dos Campos', N'SP', N'Brazil', N'12227-000', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (383, 10, '2013/8/12', N'Rua Dr. Falc�o Filho, 155', N'S�o Paulo', N'SP', N'Brazil', N'01007-010', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (384, 24, '2013/8/20', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (385, 25, '2013/9/2', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (386, 27, '2013/9/2', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (387, 29, '2013/9/3', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (388, 33, '2013/9/4', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (389, 39, '2013/9/7', N'4, Rue Milton', N'Paris', N'France', N'75009', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (390, 48, '2013/9/12', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (391, 3, '2013/9/20', N'1498 rue B�langer', N'Montr�al', N'QC', N'Canada', N'H2G 1A7', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (392, 4, '2013/10/3', N'Ullev�lsveien 14', N'Oslo', N'Norway', N'0171', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (393, 6, '2013/10/3', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (394, 8, '2013/10/4', N'Gr�trystraat 63', N'Brussels', N'Belgium', N'1000', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (395, 12, '2013/10/5', N'Pra�a Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (396, 18, '2013/10/8', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (397, 27, '2013/10/13', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (398, 41, '2013/10/21', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (399, 42, '2013/11/3', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (400, 44, '2013/11/3', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "Total") VALUES (401, 46, '2013/11/4', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (402, 50, '2013/11/5', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (403, 56, '2013/11/8', N'307 Macacha G�emes', N'Buenos Aires', N'Argentina', N'1106', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (404, 6, '2013/11/13', N'Rilsk� 3174/6', N'Prague', N'Czech Republic', N'14300', 25.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (405, 20, '2013/11/21', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 0.99); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (406, 21, '2013/12/4', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (407, 23, '2013/12/4', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 1.98); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (408, 25, '2013/12/5', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 3.96); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingState", "BillingCountry", "BillingPostalCode", "Total") VALUES (409, 29, '2013/12/6', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 5.94); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "Total") VALUES (410, 35, '2013/12/9', N'Rua dos Campe�es Europeus de Viena, 4350', N'Porto', N'Portugal', 8.91); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (411, 44, '2013/12/14', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 13.86); -INSERT INTO "Invoice" ("InvoiceId", "CustomerId", "InvoiceDate", "BillingAddress", "BillingCity", "BillingCountry", "BillingPostalCode", "Total") VALUES (412, 58, '2013/12/22', N'12,Community Centre', N'Delhi', N'India', N'110017', 1.99); - -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1, 1, 2, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2, 1, 4, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (3, 2, 6, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (4, 2, 8, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (5, 2, 10, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (6, 2, 12, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (7, 3, 16, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (8, 3, 20, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (9, 3, 24, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (10, 3, 28, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (11, 3, 32, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (12, 3, 36, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (13, 4, 42, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (14, 4, 48, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (15, 4, 54, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (16, 4, 60, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (17, 4, 66, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (18, 4, 72, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (19, 4, 78, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (20, 4, 84, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (21, 4, 90, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (22, 5, 99, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (23, 5, 108, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (24, 5, 117, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (25, 5, 126, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (26, 5, 135, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (27, 5, 144, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (28, 5, 153, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (29, 5, 162, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (30, 5, 171, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (31, 5, 180, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (32, 5, 189, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (33, 5, 198, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (34, 5, 207, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (35, 5, 216, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (36, 6, 230, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (37, 7, 231, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (38, 7, 232, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (39, 8, 234, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (40, 8, 236, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (41, 9, 238, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (42, 9, 240, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (43, 9, 242, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (44, 9, 244, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (45, 10, 248, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (46, 10, 252, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (47, 10, 256, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (48, 10, 260, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (49, 10, 264, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (50, 10, 268, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (51, 11, 274, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (52, 11, 280, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (53, 11, 286, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (54, 11, 292, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (55, 11, 298, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (56, 11, 304, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (57, 11, 310, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (58, 11, 316, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (59, 11, 322, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (60, 12, 331, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (61, 12, 340, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (62, 12, 349, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (63, 12, 358, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (64, 12, 367, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (65, 12, 376, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (66, 12, 385, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (67, 12, 394, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (68, 12, 403, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (69, 12, 412, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (70, 12, 421, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (71, 12, 430, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (72, 12, 439, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (73, 12, 448, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (74, 13, 462, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (75, 14, 463, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (76, 14, 464, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (77, 15, 466, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (78, 15, 468, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (79, 16, 470, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (80, 16, 472, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (81, 16, 474, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (82, 16, 476, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (83, 17, 480, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (84, 17, 484, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (85, 17, 488, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (86, 17, 492, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (87, 17, 496, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (88, 17, 500, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (89, 18, 506, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (90, 18, 512, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (91, 18, 518, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (92, 18, 524, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (93, 18, 530, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (94, 18, 536, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (95, 18, 542, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (96, 18, 548, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (97, 18, 554, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (98, 19, 563, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (99, 19, 572, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (100, 19, 581, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (101, 19, 590, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (102, 19, 599, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (103, 19, 608, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (104, 19, 617, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (105, 19, 626, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (106, 19, 635, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (107, 19, 644, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (108, 19, 653, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (109, 19, 662, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (110, 19, 671, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (111, 19, 680, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (112, 20, 694, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (113, 21, 695, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (114, 21, 696, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (115, 22, 698, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (116, 22, 700, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (117, 23, 702, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (118, 23, 704, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (119, 23, 706, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (120, 23, 708, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (121, 24, 712, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (122, 24, 716, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (123, 24, 720, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (124, 24, 724, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (125, 24, 728, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (126, 24, 732, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (127, 25, 738, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (128, 25, 744, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (129, 25, 750, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (130, 25, 756, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (131, 25, 762, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (132, 25, 768, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (133, 25, 774, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (134, 25, 780, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (135, 25, 786, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (136, 26, 795, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (137, 26, 804, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (138, 26, 813, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (139, 26, 822, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (140, 26, 831, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (141, 26, 840, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (142, 26, 849, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (143, 26, 858, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (144, 26, 867, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (145, 26, 876, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (146, 26, 885, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (147, 26, 894, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (148, 26, 903, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (149, 26, 912, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (150, 27, 926, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (151, 28, 927, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (152, 28, 928, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (153, 29, 930, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (154, 29, 932, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (155, 30, 934, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (156, 30, 936, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (157, 30, 938, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (158, 30, 940, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (159, 31, 944, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (160, 31, 948, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (161, 31, 952, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (162, 31, 956, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (163, 31, 960, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (164, 31, 964, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (165, 32, 970, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (166, 32, 976, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (167, 32, 982, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (168, 32, 988, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (169, 32, 994, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (170, 32, 1000, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (171, 32, 1006, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (172, 32, 1012, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (173, 32, 1018, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (174, 33, 1027, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (175, 33, 1036, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (176, 33, 1045, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (177, 33, 1054, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (178, 33, 1063, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (179, 33, 1072, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (180, 33, 1081, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (181, 33, 1090, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (182, 33, 1099, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (183, 33, 1108, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (184, 33, 1117, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (185, 33, 1126, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (186, 33, 1135, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (187, 33, 1144, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (188, 34, 1158, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (189, 35, 1159, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (190, 35, 1160, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (191, 36, 1162, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (192, 36, 1164, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (193, 37, 1166, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (194, 37, 1168, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (195, 37, 1170, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (196, 37, 1172, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (197, 38, 1176, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (198, 38, 1180, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (199, 38, 1184, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (200, 38, 1188, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (201, 38, 1192, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (202, 38, 1196, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (203, 39, 1202, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (204, 39, 1208, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (205, 39, 1214, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (206, 39, 1220, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (207, 39, 1226, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (208, 39, 1232, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (209, 39, 1238, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (210, 39, 1244, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (211, 39, 1250, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (212, 40, 1259, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (213, 40, 1268, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (214, 40, 1277, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (215, 40, 1286, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (216, 40, 1295, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (217, 40, 1304, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (218, 40, 1313, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (219, 40, 1322, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (220, 40, 1331, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (221, 40, 1340, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (222, 40, 1349, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (223, 40, 1358, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (224, 40, 1367, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (225, 40, 1376, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (226, 41, 1390, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (227, 42, 1391, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (228, 42, 1392, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (229, 43, 1394, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (230, 43, 1396, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (231, 44, 1398, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (232, 44, 1400, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (233, 44, 1402, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (234, 44, 1404, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (235, 45, 1408, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (236, 45, 1412, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (237, 45, 1416, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (238, 45, 1420, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (239, 45, 1424, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (240, 45, 1428, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (241, 46, 1434, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (242, 46, 1440, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (243, 46, 1446, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (244, 46, 1452, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (245, 46, 1458, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (246, 46, 1464, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (247, 46, 1470, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (248, 46, 1476, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (249, 46, 1482, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (250, 47, 1491, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (251, 47, 1500, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (252, 47, 1509, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (253, 47, 1518, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (254, 47, 1527, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (255, 47, 1536, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (256, 47, 1545, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (257, 47, 1554, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (258, 47, 1563, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (259, 47, 1572, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (260, 47, 1581, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (261, 47, 1590, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (262, 47, 1599, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (263, 47, 1608, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (264, 48, 1622, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (265, 49, 1623, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (266, 49, 1624, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (267, 50, 1626, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (268, 50, 1628, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (269, 51, 1630, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (270, 51, 1632, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (271, 51, 1634, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (272, 51, 1636, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (273, 52, 1640, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (274, 52, 1644, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (275, 52, 1648, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (276, 52, 1652, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (277, 52, 1656, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (278, 52, 1660, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (279, 53, 1666, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (280, 53, 1672, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (281, 53, 1678, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (282, 53, 1684, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (283, 53, 1690, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (284, 53, 1696, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (285, 53, 1702, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (286, 53, 1708, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (287, 53, 1714, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (288, 54, 1723, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (289, 54, 1732, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (290, 54, 1741, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (291, 54, 1750, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (292, 54, 1759, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (293, 54, 1768, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (294, 54, 1777, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (295, 54, 1786, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (296, 54, 1795, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (297, 54, 1804, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (298, 54, 1813, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (299, 54, 1822, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (300, 54, 1831, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (301, 54, 1840, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (302, 55, 1854, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (303, 56, 1855, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (304, 56, 1856, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (305, 57, 1858, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (306, 57, 1860, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (307, 58, 1862, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (308, 58, 1864, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (309, 58, 1866, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (310, 58, 1868, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (311, 59, 1872, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (312, 59, 1876, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (313, 59, 1880, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (314, 59, 1884, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (315, 59, 1888, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (316, 59, 1892, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (317, 60, 1898, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (318, 60, 1904, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (319, 60, 1910, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (320, 60, 1916, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (321, 60, 1922, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (322, 60, 1928, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (323, 60, 1934, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (324, 60, 1940, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (325, 60, 1946, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (326, 61, 1955, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (327, 61, 1964, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (328, 61, 1973, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (329, 61, 1982, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (330, 61, 1991, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (331, 61, 2000, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (332, 61, 2009, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (333, 61, 2018, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (334, 61, 2027, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (335, 61, 2036, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (336, 61, 2045, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (337, 61, 2054, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (338, 61, 2063, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (339, 61, 2072, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (340, 62, 2086, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (341, 63, 2087, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (342, 63, 2088, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (343, 64, 2090, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (344, 64, 2092, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (345, 65, 2094, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (346, 65, 2096, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (347, 65, 2098, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (348, 65, 2100, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (349, 66, 2104, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (350, 66, 2108, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (351, 66, 2112, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (352, 66, 2116, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (353, 66, 2120, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (354, 66, 2124, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (355, 67, 2130, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (356, 67, 2136, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (357, 67, 2142, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (358, 67, 2148, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (359, 67, 2154, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (360, 67, 2160, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (361, 67, 2166, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (362, 67, 2172, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (363, 67, 2178, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (364, 68, 2187, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (365, 68, 2196, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (366, 68, 2205, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (367, 68, 2214, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (368, 68, 2223, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (369, 68, 2232, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (370, 68, 2241, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (371, 68, 2250, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (372, 68, 2259, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (373, 68, 2268, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (374, 68, 2277, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (375, 68, 2286, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (376, 68, 2295, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (377, 68, 2304, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (378, 69, 2318, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (379, 70, 2319, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (380, 70, 2320, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (381, 71, 2322, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (382, 71, 2324, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (383, 72, 2326, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (384, 72, 2328, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (385, 72, 2330, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (386, 72, 2332, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (387, 73, 2336, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (388, 73, 2340, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (389, 73, 2344, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (390, 73, 2348, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (391, 73, 2352, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (392, 73, 2356, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (393, 74, 2362, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (394, 74, 2368, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (395, 74, 2374, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (396, 74, 2380, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (397, 74, 2386, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (398, 74, 2392, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (399, 74, 2398, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (400, 74, 2404, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (401, 74, 2410, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (402, 75, 2419, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (403, 75, 2428, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (404, 75, 2437, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (405, 75, 2446, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (406, 75, 2455, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (407, 75, 2464, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (408, 75, 2473, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (409, 75, 2482, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (410, 75, 2491, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (411, 75, 2500, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (412, 75, 2509, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (413, 75, 2518, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (414, 75, 2527, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (415, 75, 2536, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (416, 76, 2550, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (417, 77, 2551, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (418, 77, 2552, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (419, 78, 2554, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (420, 78, 2556, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (421, 79, 2558, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (422, 79, 2560, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (423, 79, 2562, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (424, 79, 2564, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (425, 80, 2568, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (426, 80, 2572, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (427, 80, 2576, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (428, 80, 2580, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (429, 80, 2584, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (430, 80, 2588, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (431, 81, 2594, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (432, 81, 2600, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (433, 81, 2606, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (434, 81, 2612, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (435, 81, 2618, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (436, 81, 2624, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (437, 81, 2630, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (438, 81, 2636, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (439, 81, 2642, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (440, 82, 2651, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (441, 82, 2660, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (442, 82, 2669, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (443, 82, 2678, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (444, 82, 2687, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (445, 82, 2696, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (446, 82, 2705, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (447, 82, 2714, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (448, 82, 2723, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (449, 82, 2732, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (450, 82, 2741, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (451, 82, 2750, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (452, 82, 2759, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (453, 82, 2768, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (454, 83, 2782, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (455, 84, 2783, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (456, 84, 2784, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (457, 85, 2786, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (458, 85, 2788, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (459, 86, 2790, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (460, 86, 2792, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (461, 86, 2794, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (462, 86, 2796, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (463, 87, 2800, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (464, 87, 2804, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (465, 87, 2808, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (466, 87, 2812, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (467, 87, 2816, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (468, 87, 2820, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (469, 88, 2826, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (470, 88, 2832, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (471, 88, 2838, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (472, 88, 2844, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (473, 88, 2850, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (474, 88, 2856, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (475, 88, 2862, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (476, 88, 2868, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (477, 88, 2874, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (478, 89, 2883, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (479, 89, 2892, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (480, 89, 2901, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (481, 89, 2910, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (482, 89, 2919, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (483, 89, 2928, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (484, 89, 2937, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (485, 89, 2946, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (486, 89, 2955, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (487, 89, 2964, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (488, 89, 2973, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (489, 89, 2982, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (490, 89, 2991, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (491, 89, 3000, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (492, 90, 3014, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (493, 91, 3015, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (494, 91, 3016, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (495, 92, 3018, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (496, 92, 3020, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (497, 93, 3022, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (498, 93, 3024, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (499, 93, 3026, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (500, 93, 3028, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (501, 94, 3032, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (502, 94, 3036, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (503, 94, 3040, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (504, 94, 3044, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (505, 94, 3048, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (506, 94, 3052, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (507, 95, 3058, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (508, 95, 3064, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (509, 95, 3070, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (510, 95, 3076, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (511, 95, 3082, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (512, 95, 3088, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (513, 95, 3094, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (514, 95, 3100, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (515, 95, 3106, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (516, 96, 3115, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (517, 96, 3124, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (518, 96, 3133, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (519, 96, 3142, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (520, 96, 3151, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (521, 96, 3160, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (522, 96, 3169, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (523, 96, 3178, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (524, 96, 3187, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (525, 96, 3196, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (526, 96, 3205, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (527, 96, 3214, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (528, 96, 3223, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (529, 96, 3232, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (530, 97, 3246, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (531, 98, 3247, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (532, 98, 3248, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (533, 99, 3250, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (534, 99, 3252, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (535, 100, 3254, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (536, 100, 3256, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (537, 100, 3258, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (538, 100, 3260, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (539, 101, 3264, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (540, 101, 3268, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (541, 101, 3272, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (542, 101, 3276, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (543, 101, 3280, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (544, 101, 3284, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (545, 102, 3290, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (546, 102, 3296, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (547, 102, 3302, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (548, 102, 3308, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (549, 102, 3314, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (550, 102, 3320, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (551, 102, 3326, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (552, 102, 3332, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (553, 102, 3338, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (554, 103, 3347, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (555, 103, 3356, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (556, 103, 3365, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (557, 103, 3374, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (558, 103, 3383, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (559, 103, 3392, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (560, 103, 3401, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (561, 103, 3410, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (562, 103, 3419, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (563, 103, 3428, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (564, 103, 3437, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (565, 103, 3446, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (566, 103, 3455, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (567, 103, 3464, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (568, 104, 3478, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (569, 105, 3479, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (570, 105, 3480, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (571, 106, 3482, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (572, 106, 3484, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (573, 107, 3486, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (574, 107, 3488, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (575, 107, 3490, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (576, 107, 3492, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (577, 108, 3496, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (578, 108, 3500, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (579, 108, 1, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (580, 108, 5, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (581, 108, 9, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (582, 108, 13, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (583, 109, 19, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (584, 109, 25, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (585, 109, 31, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (586, 109, 37, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (587, 109, 43, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (588, 109, 49, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (589, 109, 55, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (590, 109, 61, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (591, 109, 67, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (592, 110, 76, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (593, 110, 85, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (594, 110, 94, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (595, 110, 103, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (596, 110, 112, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (597, 110, 121, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (598, 110, 130, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (599, 110, 139, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (600, 110, 148, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (601, 110, 157, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (602, 110, 166, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (603, 110, 175, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (604, 110, 184, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (605, 110, 193, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (606, 111, 207, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (607, 112, 208, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (608, 112, 209, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (609, 113, 211, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (610, 113, 213, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (611, 114, 215, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (612, 114, 217, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (613, 114, 219, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (614, 114, 221, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (615, 115, 225, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (616, 115, 229, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (617, 115, 233, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (618, 115, 237, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (619, 115, 241, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (620, 115, 245, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (621, 116, 251, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (622, 116, 257, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (623, 116, 263, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (624, 116, 269, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (625, 116, 275, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (626, 116, 281, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (627, 116, 287, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (628, 116, 293, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (629, 116, 299, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (630, 117, 308, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (631, 117, 317, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (632, 117, 326, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (633, 117, 335, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (634, 117, 344, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (635, 117, 353, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (636, 117, 362, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (637, 117, 371, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (638, 117, 380, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (639, 117, 389, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (640, 117, 398, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (641, 117, 407, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (642, 117, 416, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (643, 117, 425, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (644, 118, 439, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (645, 119, 440, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (646, 119, 441, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (647, 120, 443, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (648, 120, 445, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (649, 121, 447, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (650, 121, 449, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (651, 121, 451, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (652, 121, 453, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (653, 122, 457, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (654, 122, 461, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (655, 122, 465, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (656, 122, 469, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (657, 122, 473, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (658, 122, 477, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (659, 123, 483, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (660, 123, 489, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (661, 123, 495, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (662, 123, 501, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (663, 123, 507, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (664, 123, 513, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (665, 123, 519, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (666, 123, 525, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (667, 123, 531, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (668, 124, 540, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (669, 124, 549, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (670, 124, 558, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (671, 124, 567, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (672, 124, 576, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (673, 124, 585, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (674, 124, 594, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (675, 124, 603, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (676, 124, 612, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (677, 124, 621, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (678, 124, 630, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (679, 124, 639, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (680, 124, 648, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (681, 124, 657, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (682, 125, 671, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (683, 126, 672, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (684, 126, 673, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (685, 127, 675, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (686, 127, 677, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (687, 128, 679, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (688, 128, 681, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (689, 128, 683, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (690, 128, 685, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (691, 129, 689, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (692, 129, 693, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (693, 129, 697, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (694, 129, 701, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (695, 129, 705, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (696, 129, 709, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (697, 130, 715, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (698, 130, 721, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (699, 130, 727, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (700, 130, 733, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (701, 130, 739, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (702, 130, 745, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (703, 130, 751, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (704, 130, 757, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (705, 130, 763, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (706, 131, 772, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (707, 131, 781, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (708, 131, 790, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (709, 131, 799, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (710, 131, 808, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (711, 131, 817, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (712, 131, 826, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (713, 131, 835, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (714, 131, 844, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (715, 131, 853, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (716, 131, 862, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (717, 131, 871, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (718, 131, 880, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (719, 131, 889, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (720, 132, 903, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (721, 133, 904, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (722, 133, 905, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (723, 134, 907, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (724, 134, 909, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (725, 135, 911, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (726, 135, 913, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (727, 135, 915, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (728, 135, 917, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (729, 136, 921, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (730, 136, 925, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (731, 136, 929, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (732, 136, 933, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (733, 136, 937, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (734, 136, 941, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (735, 137, 947, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (736, 137, 953, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (737, 137, 959, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (738, 137, 965, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (739, 137, 971, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (740, 137, 977, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (741, 137, 983, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (742, 137, 989, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (743, 137, 995, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (744, 138, 1004, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (745, 138, 1013, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (746, 138, 1022, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (747, 138, 1031, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (748, 138, 1040, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (749, 138, 1049, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (750, 138, 1058, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (751, 138, 1067, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (752, 138, 1076, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (753, 138, 1085, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (754, 138, 1094, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (755, 138, 1103, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (756, 138, 1112, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (757, 138, 1121, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (758, 139, 1135, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (759, 140, 1136, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (760, 140, 1137, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (761, 141, 1139, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (762, 141, 1141, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (763, 142, 1143, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (764, 142, 1145, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (765, 142, 1147, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (766, 142, 1149, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (767, 143, 1153, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (768, 143, 1157, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (769, 143, 1161, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (770, 143, 1165, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (771, 143, 1169, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (772, 143, 1173, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (773, 144, 1179, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (774, 144, 1185, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (775, 144, 1191, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (776, 144, 1197, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (777, 144, 1203, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (778, 144, 1209, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (779, 144, 1215, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (780, 144, 1221, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (781, 144, 1227, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (782, 145, 1236, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (783, 145, 1245, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (784, 145, 1254, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (785, 145, 1263, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (786, 145, 1272, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (787, 145, 1281, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (788, 145, 1290, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (789, 145, 1299, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (790, 145, 1308, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (791, 145, 1317, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (792, 145, 1326, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (793, 145, 1335, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (794, 145, 1344, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (795, 145, 1353, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (796, 146, 1367, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (797, 147, 1368, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (798, 147, 1369, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (799, 148, 1371, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (800, 148, 1373, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (801, 149, 1375, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (802, 149, 1377, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (803, 149, 1379, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (804, 149, 1381, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (805, 150, 1385, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (806, 150, 1389, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (807, 150, 1393, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (808, 150, 1397, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (809, 150, 1401, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (810, 150, 1405, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (811, 151, 1411, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (812, 151, 1417, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (813, 151, 1423, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (814, 151, 1429, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (815, 151, 1435, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (816, 151, 1441, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (817, 151, 1447, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (818, 151, 1453, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (819, 151, 1459, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (820, 152, 1468, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (821, 152, 1477, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (822, 152, 1486, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (823, 152, 1495, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (824, 152, 1504, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (825, 152, 1513, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (826, 152, 1522, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (827, 152, 1531, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (828, 152, 1540, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (829, 152, 1549, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (830, 152, 1558, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (831, 152, 1567, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (832, 152, 1576, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (833, 152, 1585, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (834, 153, 1599, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (835, 154, 1600, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (836, 154, 1601, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (837, 155, 1603, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (838, 155, 1605, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (839, 156, 1607, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (840, 156, 1609, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (841, 156, 1611, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (842, 156, 1613, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (843, 157, 1617, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (844, 157, 1621, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (845, 157, 1625, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (846, 157, 1629, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (847, 157, 1633, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (848, 157, 1637, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (849, 158, 1643, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (850, 158, 1649, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (851, 158, 1655, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (852, 158, 1661, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (853, 158, 1667, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (854, 158, 1673, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (855, 158, 1679, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (856, 158, 1685, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (857, 158, 1691, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (858, 159, 1700, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (859, 159, 1709, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (860, 159, 1718, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (861, 159, 1727, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (862, 159, 1736, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (863, 159, 1745, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (864, 159, 1754, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (865, 159, 1763, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (866, 159, 1772, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (867, 159, 1781, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (868, 159, 1790, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (869, 159, 1799, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (870, 159, 1808, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (871, 159, 1817, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (872, 160, 1831, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (873, 161, 1832, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (874, 161, 1833, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (875, 162, 1835, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (876, 162, 1837, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (877, 163, 1839, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (878, 163, 1841, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (879, 163, 1843, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (880, 163, 1845, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (881, 164, 1849, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (882, 164, 1853, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (883, 164, 1857, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (884, 164, 1861, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (885, 164, 1865, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (886, 164, 1869, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (887, 165, 1875, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (888, 165, 1881, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (889, 165, 1887, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (890, 165, 1893, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (891, 165, 1899, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (892, 165, 1905, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (893, 165, 1911, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (894, 165, 1917, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (895, 165, 1923, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (896, 166, 1932, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (897, 166, 1941, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (898, 166, 1950, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (899, 166, 1959, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (900, 166, 1968, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (901, 166, 1977, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (902, 166, 1986, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (903, 166, 1995, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (904, 166, 2004, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (905, 166, 2013, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (906, 166, 2022, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (907, 166, 2031, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (908, 166, 2040, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (909, 166, 2049, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (910, 167, 2063, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (911, 168, 2064, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (912, 168, 2065, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (913, 169, 2067, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (914, 169, 2069, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (915, 170, 2071, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (916, 170, 2073, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (917, 170, 2075, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (918, 170, 2077, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (919, 171, 2081, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (920, 171, 2085, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (921, 171, 2089, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (922, 171, 2093, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (923, 171, 2097, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (924, 171, 2101, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (925, 172, 2107, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (926, 172, 2113, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (927, 172, 2119, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (928, 172, 2125, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (929, 172, 2131, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (930, 172, 2137, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (931, 172, 2143, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (932, 172, 2149, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (933, 172, 2155, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (934, 173, 2164, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (935, 173, 2173, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (936, 173, 2182, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (937, 173, 2191, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (938, 173, 2200, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (939, 173, 2209, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (940, 173, 2218, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (941, 173, 2227, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (942, 173, 2236, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (943, 173, 2245, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (944, 173, 2254, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (945, 173, 2263, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (946, 173, 2272, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (947, 173, 2281, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (948, 174, 2295, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (949, 175, 2296, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (950, 175, 2297, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (951, 176, 2299, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (952, 176, 2301, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (953, 177, 2303, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (954, 177, 2305, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (955, 177, 2307, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (956, 177, 2309, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (957, 178, 2313, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (958, 178, 2317, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (959, 178, 2321, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (960, 178, 2325, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (961, 178, 2329, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (962, 178, 2333, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (963, 179, 2339, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (964, 179, 2345, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (965, 179, 2351, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (966, 179, 2357, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (967, 179, 2363, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (968, 179, 2369, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (969, 179, 2375, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (970, 179, 2381, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (971, 179, 2387, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (972, 180, 2396, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (973, 180, 2405, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (974, 180, 2414, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (975, 180, 2423, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (976, 180, 2432, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (977, 180, 2441, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (978, 180, 2450, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (979, 180, 2459, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (980, 180, 2468, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (981, 180, 2477, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (982, 180, 2486, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (983, 180, 2495, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (984, 180, 2504, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (985, 180, 2513, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (986, 181, 2527, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (987, 182, 2528, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (988, 182, 2529, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (989, 183, 2531, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (990, 183, 2533, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (991, 184, 2535, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (992, 184, 2537, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (993, 184, 2539, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (994, 184, 2541, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (995, 185, 2545, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (996, 185, 2549, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (997, 185, 2553, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (998, 185, 2557, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (999, 185, 2561, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1000, 185, 2565, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1001, 186, 2571, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1002, 186, 2577, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1003, 186, 2583, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1004, 186, 2589, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1005, 186, 2595, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1006, 186, 2601, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1007, 186, 2607, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1008, 186, 2613, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1009, 186, 2619, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1010, 187, 2628, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1011, 187, 2637, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1012, 187, 2646, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1013, 187, 2655, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1014, 187, 2664, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1015, 187, 2673, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1016, 187, 2682, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1017, 187, 2691, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1018, 187, 2700, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1019, 187, 2709, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1020, 187, 2718, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1021, 187, 2727, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1022, 187, 2736, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1023, 187, 2745, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1024, 188, 2759, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1025, 189, 2760, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1026, 189, 2761, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1027, 190, 2763, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1028, 190, 2765, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1029, 191, 2767, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1030, 191, 2769, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1031, 191, 2771, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1032, 191, 2773, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1033, 192, 2777, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1034, 192, 2781, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1035, 192, 2785, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1036, 192, 2789, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1037, 192, 2793, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1038, 192, 2797, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1039, 193, 2803, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1040, 193, 2809, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1041, 193, 2815, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1042, 193, 2821, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1043, 193, 2827, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1044, 193, 2833, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1045, 193, 2839, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1046, 193, 2845, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1047, 193, 2851, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1048, 194, 2860, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1049, 194, 2869, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1050, 194, 2878, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1051, 194, 2887, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1052, 194, 2896, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1053, 194, 2905, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1054, 194, 2914, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1055, 194, 2923, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1056, 194, 2932, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1057, 194, 2941, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1058, 194, 2950, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1059, 194, 2959, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1060, 194, 2968, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1061, 194, 2977, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1062, 195, 2991, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1063, 196, 2992, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1064, 196, 2993, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1065, 197, 2995, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1066, 197, 2997, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1067, 198, 2999, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1068, 198, 3001, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1069, 198, 3003, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1070, 198, 3005, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1071, 199, 3009, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1072, 199, 3013, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1073, 199, 3017, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1074, 199, 3021, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1075, 199, 3025, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1076, 199, 3029, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1077, 200, 3035, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1078, 200, 3041, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1079, 200, 3047, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1080, 200, 3053, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1081, 200, 3059, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1082, 200, 3065, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1083, 200, 3071, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1084, 200, 3077, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1085, 200, 3083, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1086, 201, 3092, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1087, 201, 3101, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1088, 201, 3110, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1089, 201, 3119, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1090, 201, 3128, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1091, 201, 3137, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1092, 201, 3146, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1093, 201, 3155, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1094, 201, 3164, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1095, 201, 3173, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1096, 201, 3182, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1097, 201, 3191, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1098, 201, 3200, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1099, 201, 3209, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1100, 202, 3223, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1101, 203, 3224, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1102, 203, 3225, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1103, 204, 3227, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1104, 204, 3229, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1105, 205, 3231, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1106, 205, 3233, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1107, 205, 3235, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1108, 205, 3237, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1109, 206, 3241, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1110, 206, 3245, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1111, 206, 3249, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1112, 206, 3253, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1113, 206, 3257, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1114, 206, 3261, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1115, 207, 3267, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1116, 207, 3273, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1117, 207, 3279, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1118, 207, 3285, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1119, 207, 3291, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1120, 207, 3297, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1121, 207, 3303, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1122, 207, 3309, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1123, 207, 3315, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1124, 208, 3324, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1125, 208, 3333, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1126, 208, 3342, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1127, 208, 3351, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1128, 208, 3360, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1129, 208, 3369, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1130, 208, 3378, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1131, 208, 3387, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1132, 208, 3396, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1133, 208, 3405, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1134, 208, 3414, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1135, 208, 3423, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1136, 208, 3432, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1137, 208, 3441, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1138, 209, 3455, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1139, 210, 3456, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1140, 210, 3457, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1141, 211, 3459, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1142, 211, 3461, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1143, 212, 3463, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1144, 212, 3465, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1145, 212, 3467, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1146, 212, 3469, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1147, 213, 3473, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1148, 213, 3477, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1149, 213, 3481, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1150, 213, 3485, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1151, 213, 3489, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1152, 213, 3493, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1153, 214, 3499, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1154, 214, 2, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1155, 214, 8, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1156, 214, 14, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1157, 214, 20, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1158, 214, 26, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1159, 214, 32, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1160, 214, 38, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1161, 214, 44, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1162, 215, 53, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1163, 215, 62, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1164, 215, 71, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1165, 215, 80, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1166, 215, 89, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1167, 215, 98, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1168, 215, 107, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1169, 215, 116, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1170, 215, 125, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1171, 215, 134, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1172, 215, 143, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1173, 215, 152, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1174, 215, 161, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1175, 215, 170, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1176, 216, 184, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1177, 217, 185, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1178, 217, 186, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1179, 218, 188, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1180, 218, 190, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1181, 219, 192, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1182, 219, 194, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1183, 219, 196, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1184, 219, 198, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1185, 220, 202, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1186, 220, 206, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1187, 220, 210, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1188, 220, 214, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1189, 220, 218, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1190, 220, 222, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1191, 221, 228, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1192, 221, 234, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1193, 221, 240, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1194, 221, 246, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1195, 221, 252, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1196, 221, 258, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1197, 221, 264, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1198, 221, 270, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1199, 221, 276, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1200, 222, 285, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1201, 222, 294, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1202, 222, 303, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1203, 222, 312, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1204, 222, 321, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1205, 222, 330, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1206, 222, 339, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1207, 222, 348, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1208, 222, 357, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1209, 222, 366, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1210, 222, 375, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1211, 222, 384, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1212, 222, 393, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1213, 222, 402, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1214, 223, 416, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1215, 224, 417, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1216, 224, 418, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1217, 225, 420, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1218, 225, 422, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1219, 226, 424, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1220, 226, 426, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1221, 226, 428, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1222, 226, 430, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1223, 227, 434, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1224, 227, 438, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1225, 227, 442, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1226, 227, 446, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1227, 227, 450, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1228, 227, 454, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1229, 228, 460, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1230, 228, 466, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1231, 228, 472, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1232, 228, 478, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1233, 228, 484, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1234, 228, 490, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1235, 228, 496, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1236, 228, 502, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1237, 228, 508, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1238, 229, 517, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1239, 229, 526, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1240, 229, 535, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1241, 229, 544, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1242, 229, 553, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1243, 229, 562, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1244, 229, 571, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1245, 229, 580, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1246, 229, 589, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1247, 229, 598, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1248, 229, 607, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1249, 229, 616, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1250, 229, 625, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1251, 229, 634, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1252, 230, 648, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1253, 231, 649, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1254, 231, 650, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1255, 232, 652, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1256, 232, 654, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1257, 233, 656, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1258, 233, 658, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1259, 233, 660, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1260, 233, 662, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1261, 234, 666, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1262, 234, 670, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1263, 234, 674, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1264, 234, 678, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1265, 234, 682, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1266, 234, 686, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1267, 235, 692, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1268, 235, 698, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1269, 235, 704, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1270, 235, 710, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1271, 235, 716, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1272, 235, 722, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1273, 235, 728, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1274, 235, 734, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1275, 235, 740, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1276, 236, 749, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1277, 236, 758, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1278, 236, 767, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1279, 236, 776, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1280, 236, 785, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1281, 236, 794, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1282, 236, 803, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1283, 236, 812, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1284, 236, 821, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1285, 236, 830, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1286, 236, 839, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1287, 236, 848, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1288, 236, 857, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1289, 236, 866, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1290, 237, 880, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1291, 238, 881, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1292, 238, 882, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1293, 239, 884, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1294, 239, 886, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1295, 240, 888, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1296, 240, 890, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1297, 240, 892, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1298, 240, 894, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1299, 241, 898, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1300, 241, 902, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1301, 241, 906, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1302, 241, 910, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1303, 241, 914, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1304, 241, 918, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1305, 242, 924, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1306, 242, 930, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1307, 242, 936, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1308, 242, 942, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1309, 242, 948, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1310, 242, 954, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1311, 242, 960, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1312, 242, 966, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1313, 242, 972, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1314, 243, 981, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1315, 243, 990, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1316, 243, 999, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1317, 243, 1008, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1318, 243, 1017, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1319, 243, 1026, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1320, 243, 1035, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1321, 243, 1044, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1322, 243, 1053, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1323, 243, 1062, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1324, 243, 1071, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1325, 243, 1080, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1326, 243, 1089, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1327, 243, 1098, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1328, 244, 1112, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1329, 245, 1113, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1330, 245, 1114, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1331, 246, 1116, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1332, 246, 1118, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1333, 247, 1120, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1334, 247, 1122, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1335, 247, 1124, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1336, 247, 1126, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1337, 248, 1130, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1338, 248, 1134, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1339, 248, 1138, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1340, 248, 1142, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1341, 248, 1146, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1342, 248, 1150, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1343, 249, 1156, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1344, 249, 1162, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1345, 249, 1168, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1346, 249, 1174, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1347, 249, 1180, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1348, 249, 1186, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1349, 249, 1192, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1350, 249, 1198, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1351, 249, 1204, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1352, 250, 1213, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1353, 250, 1222, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1354, 250, 1231, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1355, 250, 1240, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1356, 250, 1249, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1357, 250, 1258, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1358, 250, 1267, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1359, 250, 1276, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1360, 250, 1285, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1361, 250, 1294, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1362, 250, 1303, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1363, 250, 1312, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1364, 250, 1321, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1365, 250, 1330, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1366, 251, 1344, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1367, 252, 1345, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1368, 252, 1346, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1369, 253, 1348, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1370, 253, 1350, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1371, 254, 1352, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1372, 254, 1354, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1373, 254, 1356, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1374, 254, 1358, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1375, 255, 1362, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1376, 255, 1366, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1377, 255, 1370, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1378, 255, 1374, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1379, 255, 1378, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1380, 255, 1382, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1381, 256, 1388, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1382, 256, 1394, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1383, 256, 1400, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1384, 256, 1406, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1385, 256, 1412, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1386, 256, 1418, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1387, 256, 1424, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1388, 256, 1430, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1389, 256, 1436, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1390, 257, 1445, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1391, 257, 1454, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1392, 257, 1463, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1393, 257, 1472, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1394, 257, 1481, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1395, 257, 1490, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1396, 257, 1499, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1397, 257, 1508, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1398, 257, 1517, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1399, 257, 1526, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1400, 257, 1535, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1401, 257, 1544, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1402, 257, 1553, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1403, 257, 1562, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1404, 258, 1576, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1405, 259, 1577, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1406, 259, 1578, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1407, 260, 1580, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1408, 260, 1582, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1409, 261, 1584, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1410, 261, 1586, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1411, 261, 1588, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1412, 261, 1590, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1413, 262, 1594, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1414, 262, 1598, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1415, 262, 1602, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1416, 262, 1606, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1417, 262, 1610, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1418, 262, 1614, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1419, 263, 1620, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1420, 263, 1626, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1421, 263, 1632, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1422, 263, 1638, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1423, 263, 1644, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1424, 263, 1650, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1425, 263, 1656, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1426, 263, 1662, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1427, 263, 1668, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1428, 264, 1677, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1429, 264, 1686, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1430, 264, 1695, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1431, 264, 1704, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1432, 264, 1713, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1433, 264, 1722, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1434, 264, 1731, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1435, 264, 1740, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1436, 264, 1749, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1437, 264, 1758, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1438, 264, 1767, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1439, 264, 1776, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1440, 264, 1785, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1441, 264, 1794, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1442, 265, 1808, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1443, 266, 1809, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1444, 266, 1810, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1445, 267, 1812, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1446, 267, 1814, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1447, 268, 1816, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1448, 268, 1818, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1449, 268, 1820, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1450, 268, 1822, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1451, 269, 1826, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1452, 269, 1830, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1453, 269, 1834, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1454, 269, 1838, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1455, 269, 1842, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1456, 269, 1846, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1457, 270, 1852, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1458, 270, 1858, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1459, 270, 1864, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1460, 270, 1870, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1461, 270, 1876, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1462, 270, 1882, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1463, 270, 1888, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1464, 270, 1894, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1465, 270, 1900, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1466, 271, 1909, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1467, 271, 1918, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1468, 271, 1927, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1469, 271, 1936, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1470, 271, 1945, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1471, 271, 1954, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1472, 271, 1963, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1473, 271, 1972, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1474, 271, 1981, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1475, 271, 1990, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1476, 271, 1999, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1477, 271, 2008, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1478, 271, 2017, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1479, 271, 2026, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1480, 272, 2040, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1481, 273, 2041, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1482, 273, 2042, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1483, 274, 2044, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1484, 274, 2046, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1485, 275, 2048, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1486, 275, 2050, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1487, 275, 2052, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1488, 275, 2054, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1489, 276, 2058, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1490, 276, 2062, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1491, 276, 2066, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1492, 276, 2070, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1493, 276, 2074, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1494, 276, 2078, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1495, 277, 2084, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1496, 277, 2090, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1497, 277, 2096, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1498, 277, 2102, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1499, 277, 2108, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1500, 277, 2114, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1501, 277, 2120, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1502, 277, 2126, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1503, 277, 2132, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1504, 278, 2141, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1505, 278, 2150, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1506, 278, 2159, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1507, 278, 2168, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1508, 278, 2177, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1509, 278, 2186, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1510, 278, 2195, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1511, 278, 2204, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1512, 278, 2213, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1513, 278, 2222, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1514, 278, 2231, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1515, 278, 2240, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1516, 278, 2249, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1517, 278, 2258, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1518, 279, 2272, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1519, 280, 2273, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1520, 280, 2274, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1521, 281, 2276, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1522, 281, 2278, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1523, 282, 2280, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1524, 282, 2282, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1525, 282, 2284, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1526, 282, 2286, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1527, 283, 2290, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1528, 283, 2294, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1529, 283, 2298, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1530, 283, 2302, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1531, 283, 2306, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1532, 283, 2310, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1533, 284, 2316, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1534, 284, 2322, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1535, 284, 2328, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1536, 284, 2334, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1537, 284, 2340, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1538, 284, 2346, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1539, 284, 2352, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1540, 284, 2358, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1541, 284, 2364, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1542, 285, 2373, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1543, 285, 2382, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1544, 285, 2391, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1545, 285, 2400, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1546, 285, 2409, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1547, 285, 2418, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1548, 285, 2427, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1549, 285, 2436, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1550, 285, 2445, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1551, 285, 2454, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1552, 285, 2463, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1553, 285, 2472, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1554, 285, 2481, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1555, 285, 2490, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1556, 286, 2504, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1557, 287, 2505, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1558, 287, 2506, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1559, 288, 2508, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1560, 288, 2510, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1561, 289, 2512, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1562, 289, 2514, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1563, 289, 2516, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1564, 289, 2518, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1565, 290, 2522, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1566, 290, 2526, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1567, 290, 2530, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1568, 290, 2534, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1569, 290, 2538, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1570, 290, 2542, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1571, 291, 2548, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1572, 291, 2554, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1573, 291, 2560, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1574, 291, 2566, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1575, 291, 2572, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1576, 291, 2578, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1577, 291, 2584, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1578, 291, 2590, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1579, 291, 2596, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1580, 292, 2605, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1581, 292, 2614, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1582, 292, 2623, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1583, 292, 2632, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1584, 292, 2641, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1585, 292, 2650, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1586, 292, 2659, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1587, 292, 2668, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1588, 292, 2677, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1589, 292, 2686, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1590, 292, 2695, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1591, 292, 2704, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1592, 292, 2713, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1593, 292, 2722, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1594, 293, 2736, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1595, 294, 2737, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1596, 294, 2738, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1597, 295, 2740, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1598, 295, 2742, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1599, 296, 2744, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1600, 296, 2746, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1601, 296, 2748, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1602, 296, 2750, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1603, 297, 2754, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1604, 297, 2758, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1605, 297, 2762, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1606, 297, 2766, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1607, 297, 2770, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1608, 297, 2774, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1609, 298, 2780, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1610, 298, 2786, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1611, 298, 2792, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1612, 298, 2798, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1613, 298, 2804, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1614, 298, 2810, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1615, 298, 2816, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1616, 298, 2822, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1617, 298, 2828, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1618, 299, 2837, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1619, 299, 2846, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1620, 299, 2855, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1621, 299, 2864, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1622, 299, 2873, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1623, 299, 2882, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1624, 299, 2891, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1625, 299, 2900, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1626, 299, 2909, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1627, 299, 2918, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1628, 299, 2927, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1629, 299, 2936, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1630, 299, 2945, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1631, 299, 2954, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1632, 300, 2968, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1633, 301, 2969, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1634, 301, 2970, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1635, 302, 2972, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1636, 302, 2974, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1637, 303, 2976, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1638, 303, 2978, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1639, 303, 2980, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1640, 303, 2982, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1641, 304, 2986, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1642, 304, 2990, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1643, 304, 2994, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1644, 304, 2998, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1645, 304, 3002, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1646, 304, 3006, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1647, 305, 3012, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1648, 305, 3018, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1649, 305, 3024, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1650, 305, 3030, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1651, 305, 3036, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1652, 305, 3042, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1653, 305, 3048, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1654, 305, 3054, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1655, 305, 3060, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1656, 306, 3069, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1657, 306, 3078, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1658, 306, 3087, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1659, 306, 3096, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1660, 306, 3105, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1661, 306, 3114, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1662, 306, 3123, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1663, 306, 3132, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1664, 306, 3141, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1665, 306, 3150, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1666, 306, 3159, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1667, 306, 3168, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1668, 306, 3177, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1669, 306, 3186, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1670, 307, 3200, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1671, 308, 3201, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1672, 308, 3202, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1673, 309, 3204, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1674, 309, 3206, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1675, 310, 3208, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1676, 310, 3210, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1677, 310, 3212, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1678, 310, 3214, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1679, 311, 3218, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1680, 311, 3222, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1681, 311, 3226, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1682, 311, 3230, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1683, 311, 3234, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1684, 311, 3238, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1685, 312, 3244, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1686, 312, 3250, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1687, 312, 3256, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1688, 312, 3262, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1689, 312, 3268, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1690, 312, 3274, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1691, 312, 3280, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1692, 312, 3286, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1693, 312, 3292, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1694, 313, 3301, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1695, 313, 3310, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1696, 313, 3319, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1697, 313, 3328, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1698, 313, 3337, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1699, 313, 3346, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1700, 313, 3355, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1701, 313, 3364, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1702, 313, 3373, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1703, 313, 3382, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1704, 313, 3391, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1705, 313, 3400, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1706, 313, 3409, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1707, 313, 3418, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1708, 314, 3432, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1709, 315, 3433, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1710, 315, 3434, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1711, 316, 3436, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1712, 316, 3438, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1713, 317, 3440, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1714, 317, 3442, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1715, 317, 3444, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1716, 317, 3446, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1717, 318, 3450, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1718, 318, 3454, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1719, 318, 3458, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1720, 318, 3462, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1721, 318, 3466, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1722, 318, 3470, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1723, 319, 3476, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1724, 319, 3482, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1725, 319, 3488, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1726, 319, 3494, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1727, 319, 3500, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1728, 319, 3, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1729, 319, 9, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1730, 319, 15, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1731, 319, 21, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1732, 320, 30, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1733, 320, 39, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1734, 320, 48, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1735, 320, 57, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1736, 320, 66, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1737, 320, 75, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1738, 320, 84, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1739, 320, 93, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1740, 320, 102, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1741, 320, 111, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1742, 320, 120, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1743, 320, 129, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1744, 320, 138, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1745, 320, 147, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1746, 321, 161, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1747, 322, 162, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1748, 322, 163, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1749, 323, 165, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1750, 323, 167, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1751, 324, 169, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1752, 324, 171, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1753, 324, 173, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1754, 324, 175, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1755, 325, 179, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1756, 325, 183, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1757, 325, 187, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1758, 325, 191, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1759, 325, 195, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1760, 325, 199, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1761, 326, 205, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1762, 326, 211, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1763, 326, 217, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1764, 326, 223, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1765, 326, 229, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1766, 326, 235, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1767, 326, 241, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1768, 326, 247, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1769, 326, 253, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1770, 327, 262, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1771, 327, 271, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1772, 327, 280, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1773, 327, 289, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1774, 327, 298, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1775, 327, 307, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1776, 327, 316, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1777, 327, 325, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1778, 327, 334, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1779, 327, 343, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1780, 327, 352, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1781, 327, 361, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1782, 327, 370, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1783, 327, 379, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1784, 328, 393, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1785, 329, 394, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1786, 329, 395, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1787, 330, 397, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1788, 330, 399, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1789, 331, 401, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1790, 331, 403, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1791, 331, 405, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1792, 331, 407, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1793, 332, 411, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1794, 332, 415, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1795, 332, 419, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1796, 332, 423, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1797, 332, 427, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1798, 332, 431, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1799, 333, 437, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1800, 333, 443, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1801, 333, 449, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1802, 333, 455, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1803, 333, 461, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1804, 333, 467, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1805, 333, 473, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1806, 333, 479, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1807, 333, 485, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1808, 334, 494, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1809, 334, 503, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1810, 334, 512, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1811, 334, 521, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1812, 334, 530, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1813, 334, 539, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1814, 334, 548, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1815, 334, 557, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1816, 334, 566, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1817, 334, 575, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1818, 334, 584, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1819, 334, 593, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1820, 334, 602, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1821, 334, 611, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1822, 335, 625, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1823, 336, 626, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1824, 336, 627, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1825, 337, 629, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1826, 337, 631, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1827, 338, 633, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1828, 338, 635, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1829, 338, 637, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1830, 338, 639, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1831, 339, 643, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1832, 339, 647, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1833, 339, 651, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1834, 339, 655, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1835, 339, 659, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1836, 339, 663, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1837, 340, 669, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1838, 340, 675, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1839, 340, 681, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1840, 340, 687, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1841, 340, 693, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1842, 340, 699, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1843, 340, 705, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1844, 340, 711, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1845, 340, 717, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1846, 341, 726, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1847, 341, 735, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1848, 341, 744, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1849, 341, 753, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1850, 341, 762, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1851, 341, 771, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1852, 341, 780, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1853, 341, 789, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1854, 341, 798, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1855, 341, 807, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1856, 341, 816, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1857, 341, 825, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1858, 341, 834, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1859, 341, 843, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1860, 342, 857, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1861, 343, 858, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1862, 343, 859, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1863, 344, 861, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1864, 344, 863, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1865, 345, 865, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1866, 345, 867, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1867, 345, 869, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1868, 345, 871, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1869, 346, 875, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1870, 346, 879, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1871, 346, 883, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1872, 346, 887, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1873, 346, 891, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1874, 346, 895, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1875, 347, 901, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1876, 347, 907, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1877, 347, 913, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1878, 347, 919, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1879, 347, 925, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1880, 347, 931, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1881, 347, 937, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1882, 347, 943, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1883, 347, 949, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1884, 348, 958, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1885, 348, 967, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1886, 348, 976, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1887, 348, 985, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1888, 348, 994, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1889, 348, 1003, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1890, 348, 1012, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1891, 348, 1021, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1892, 348, 1030, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1893, 348, 1039, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1894, 348, 1048, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1895, 348, 1057, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1896, 348, 1066, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1897, 348, 1075, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1898, 349, 1089, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1899, 350, 1090, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1900, 350, 1091, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1901, 351, 1093, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1902, 351, 1095, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1903, 352, 1097, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1904, 352, 1099, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1905, 352, 1101, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1906, 352, 1103, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1907, 353, 1107, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1908, 353, 1111, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1909, 353, 1115, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1910, 353, 1119, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1911, 353, 1123, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1912, 353, 1127, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1913, 354, 1133, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1914, 354, 1139, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1915, 354, 1145, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1916, 354, 1151, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1917, 354, 1157, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1918, 354, 1163, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1919, 354, 1169, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1920, 354, 1175, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1921, 354, 1181, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1922, 355, 1190, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1923, 355, 1199, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1924, 355, 1208, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1925, 355, 1217, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1926, 355, 1226, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1927, 355, 1235, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1928, 355, 1244, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1929, 355, 1253, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1930, 355, 1262, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1931, 355, 1271, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1932, 355, 1280, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1933, 355, 1289, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1934, 355, 1298, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1935, 355, 1307, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1936, 356, 1321, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1937, 357, 1322, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1938, 357, 1323, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1939, 358, 1325, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1940, 358, 1327, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1941, 359, 1329, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1942, 359, 1331, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1943, 359, 1333, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1944, 359, 1335, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1945, 360, 1339, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1946, 360, 1343, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1947, 360, 1347, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1948, 360, 1351, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1949, 360, 1355, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1950, 360, 1359, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1951, 361, 1365, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1952, 361, 1371, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1953, 361, 1377, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1954, 361, 1383, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1955, 361, 1389, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1956, 361, 1395, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1957, 361, 1401, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1958, 361, 1407, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1959, 361, 1413, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1960, 362, 1422, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1961, 362, 1431, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1962, 362, 1440, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1963, 362, 1449, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1964, 362, 1458, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1965, 362, 1467, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1966, 362, 1476, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1967, 362, 1485, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1968, 362, 1494, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1969, 362, 1503, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1970, 362, 1512, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1971, 362, 1521, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1972, 362, 1530, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1973, 362, 1539, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1974, 363, 1553, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1975, 364, 1554, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1976, 364, 1555, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1977, 365, 1557, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1978, 365, 1559, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1979, 366, 1561, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1980, 366, 1563, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1981, 366, 1565, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1982, 366, 1567, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1983, 367, 1571, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1984, 367, 1575, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1985, 367, 1579, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1986, 367, 1583, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1987, 367, 1587, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1988, 367, 1591, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1989, 368, 1597, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1990, 368, 1603, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1991, 368, 1609, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1992, 368, 1615, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1993, 368, 1621, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1994, 368, 1627, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1995, 368, 1633, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1996, 368, 1639, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1997, 368, 1645, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1998, 369, 1654, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (1999, 369, 1663, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2000, 369, 1672, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2001, 369, 1681, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2002, 369, 1690, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2003, 369, 1699, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2004, 369, 1708, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2005, 369, 1717, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2006, 369, 1726, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2007, 369, 1735, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2008, 369, 1744, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2009, 369, 1753, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2010, 369, 1762, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2011, 369, 1771, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2012, 370, 1785, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2013, 371, 1786, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2014, 371, 1787, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2015, 372, 1789, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2016, 372, 1791, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2017, 373, 1793, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2018, 373, 1795, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2019, 373, 1797, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2020, 373, 1799, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2021, 374, 1803, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2022, 374, 1807, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2023, 374, 1811, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2024, 374, 1815, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2025, 374, 1819, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2026, 374, 1823, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2027, 375, 1829, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2028, 375, 1835, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2029, 375, 1841, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2030, 375, 1847, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2031, 375, 1853, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2032, 375, 1859, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2033, 375, 1865, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2034, 375, 1871, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2035, 375, 1877, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2036, 376, 1886, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2037, 376, 1895, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2038, 376, 1904, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2039, 376, 1913, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2040, 376, 1922, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2041, 376, 1931, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2042, 376, 1940, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2043, 376, 1949, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2044, 376, 1958, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2045, 376, 1967, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2046, 376, 1976, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2047, 376, 1985, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2048, 376, 1994, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2049, 376, 2003, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2050, 377, 2017, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2051, 378, 2018, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2052, 378, 2019, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2053, 379, 2021, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2054, 379, 2023, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2055, 380, 2025, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2056, 380, 2027, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2057, 380, 2029, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2058, 380, 2031, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2059, 381, 2035, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2060, 381, 2039, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2061, 381, 2043, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2062, 381, 2047, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2063, 381, 2051, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2064, 381, 2055, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2065, 382, 2061, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2066, 382, 2067, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2067, 382, 2073, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2068, 382, 2079, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2069, 382, 2085, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2070, 382, 2091, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2071, 382, 2097, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2072, 382, 2103, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2073, 382, 2109, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2074, 383, 2118, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2075, 383, 2127, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2076, 383, 2136, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2077, 383, 2145, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2078, 383, 2154, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2079, 383, 2163, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2080, 383, 2172, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2081, 383, 2181, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2082, 383, 2190, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2083, 383, 2199, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2084, 383, 2208, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2085, 383, 2217, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2086, 383, 2226, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2087, 383, 2235, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2088, 384, 2249, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2089, 385, 2250, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2090, 385, 2251, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2091, 386, 2253, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2092, 386, 2255, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2093, 387, 2257, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2094, 387, 2259, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2095, 387, 2261, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2096, 387, 2263, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2097, 388, 2267, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2098, 388, 2271, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2099, 388, 2275, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2100, 388, 2279, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2101, 388, 2283, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2102, 388, 2287, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2103, 389, 2293, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2104, 389, 2299, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2105, 389, 2305, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2106, 389, 2311, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2107, 389, 2317, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2108, 389, 2323, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2109, 389, 2329, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2110, 389, 2335, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2111, 389, 2341, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2112, 390, 2350, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2113, 390, 2359, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2114, 390, 2368, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2115, 390, 2377, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2116, 390, 2386, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2117, 390, 2395, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2118, 390, 2404, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2119, 390, 2413, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2120, 390, 2422, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2121, 390, 2431, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2122, 390, 2440, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2123, 390, 2449, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2124, 390, 2458, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2125, 390, 2467, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2126, 391, 2481, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2127, 392, 2482, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2128, 392, 2483, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2129, 393, 2485, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2130, 393, 2487, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2131, 394, 2489, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2132, 394, 2491, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2133, 394, 2493, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2134, 394, 2495, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2135, 395, 2499, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2136, 395, 2503, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2137, 395, 2507, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2138, 395, 2511, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2139, 395, 2515, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2140, 395, 2519, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2141, 396, 2525, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2142, 396, 2531, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2143, 396, 2537, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2144, 396, 2543, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2145, 396, 2549, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2146, 396, 2555, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2147, 396, 2561, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2148, 396, 2567, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2149, 396, 2573, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2150, 397, 2582, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2151, 397, 2591, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2152, 397, 2600, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2153, 397, 2609, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2154, 397, 2618, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2155, 397, 2627, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2156, 397, 2636, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2157, 397, 2645, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2158, 397, 2654, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2159, 397, 2663, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2160, 397, 2672, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2161, 397, 2681, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2162, 397, 2690, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2163, 397, 2699, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2164, 398, 2713, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2165, 399, 2714, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2166, 399, 2715, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2167, 400, 2717, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2168, 400, 2719, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2169, 401, 2721, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2170, 401, 2723, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2171, 401, 2725, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2172, 401, 2727, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2173, 402, 2731, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2174, 402, 2735, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2175, 402, 2739, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2176, 402, 2743, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2177, 402, 2747, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2178, 402, 2751, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2179, 403, 2757, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2180, 403, 2763, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2181, 403, 2769, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2182, 403, 2775, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2183, 403, 2781, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2184, 403, 2787, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2185, 403, 2793, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2186, 403, 2799, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2187, 403, 2805, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2188, 404, 2814, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2189, 404, 2823, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2190, 404, 2832, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2191, 404, 2841, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2192, 404, 2850, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2193, 404, 2859, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2194, 404, 2868, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2195, 404, 2877, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2196, 404, 2886, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2197, 404, 2895, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2198, 404, 2904, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2199, 404, 2913, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2200, 404, 2922, 1.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2201, 404, 2931, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2202, 405, 2945, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2203, 406, 2946, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2204, 406, 2947, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2205, 407, 2949, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2206, 407, 2951, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2207, 408, 2953, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2208, 408, 2955, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2209, 408, 2957, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2210, 408, 2959, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2211, 409, 2963, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2212, 409, 2967, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2213, 409, 2971, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2214, 409, 2975, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2215, 409, 2979, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2216, 409, 2983, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2217, 410, 2989, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2218, 410, 2995, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2219, 410, 3001, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2220, 410, 3007, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2221, 410, 3013, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2222, 410, 3019, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2223, 410, 3025, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2224, 410, 3031, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2225, 410, 3037, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2226, 411, 3046, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2227, 411, 3055, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2228, 411, 3064, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2229, 411, 3073, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2230, 411, 3082, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2231, 411, 3091, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2232, 411, 3100, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2233, 411, 3109, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2234, 411, 3118, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2235, 411, 3127, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2236, 411, 3136, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2237, 411, 3145, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2238, 411, 3154, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2239, 411, 3163, 0.99, 1); -INSERT INTO "InvoiceLine" ("InvoiceLineId", "InvoiceId", "TrackId", "UnitPrice", "Quantity") VALUES (2240, 412, 3177, 1.99, 1); - -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (1, N'Music'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (2, N'Movies'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (3, N'TV Shows'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (4, N'Audiobooks'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (5, N'90�s Music'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (6, N'Audiobooks'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (7, N'Movies'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (8, N'Music'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (9, N'Music Videos'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (10, N'TV Shows'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (11, N'Brazilian Music'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (12, N'Classical'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (13, N'Classical 101 - Deep Cuts'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (14, N'Classical 101 - Next Steps'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (15, N'Classical 101 - The Basics'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (16, N'Grunge'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (17, N'Heavy Metal Classic'); -INSERT INTO "Playlist" ("PlaylistId", "Name") VALUES (18, N'On-The-Go 1'); - -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 99); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 964); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 965); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 966); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 967); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 968); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1018); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1019); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 532); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 533); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 534); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 535); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 536); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 537); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 538); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 539); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 540); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 541); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2705); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2719); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2532); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2533); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2534); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2535); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2536); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2537); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2538); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2539); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2540); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2541); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 646); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 647); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 648); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 649); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 63); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 64); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 65); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 66); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 67); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 68); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 69); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 70); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 71); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 72); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 73); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 74); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 75); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 76); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 624); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 626); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 628); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 629); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 630); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 632); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 633); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 634); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 635); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 636); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 637); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 639); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 640); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 641); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 642); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 643); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 644); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 645); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 609); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 610); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 611); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 612); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 613); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 614); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 615); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 616); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 617); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 618); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 619); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 719); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 731); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 732); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 733); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 734); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 735); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 736); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 737); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 739); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 740); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 741); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 742); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 743); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 744); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 878); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 879); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 881); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 882); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 883); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 884); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 886); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 887); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 889); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 890); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1731); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1733); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1736); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1737); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1740); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1742); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1743); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1719); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1732); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1734); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1735); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1739); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1741); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1744); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1755); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1762); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1763); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1756); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1764); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1757); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1765); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1766); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1759); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1760); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1761); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2073); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2074); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2081); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2082); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2083); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2084); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2085); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2086); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2751); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2755); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2756); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2757); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2759); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2760); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2761); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2762); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2763); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2764); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2765); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2766); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2779); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2780); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 556); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 558); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 559); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 560); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 561); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 664); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 665); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 666); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 667); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 668); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 669); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 670); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 77); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 78); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 79); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 80); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 81); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 82); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 83); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 84); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1554); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1555); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1556); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1558); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1559); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1560); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1561); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1878); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1879); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1881); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1882); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1883); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1884); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1886); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1887); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1889); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1890); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2554); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2555); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2556); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2558); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2559); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2560); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2561); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1779); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1780); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 6); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 7); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 8); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 9); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 10); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 11); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 12); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 13); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 14); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 15); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 16); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 17); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 18); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 19); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 20); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 21); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 22); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 4); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 5); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 23); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 24); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 25); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 26); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 27); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 28); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 29); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 30); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 31); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 32); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 33); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 34); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 35); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 36); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 37); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 38); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 39); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 40); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 41); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 42); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 43); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 44); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 45); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 46); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 47); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 48); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 49); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 50); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 51); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 52); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 53); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 54); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 55); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 56); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 57); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 58); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 59); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 60); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 61); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 62); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 85); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 86); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 87); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 88); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 89); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 90); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 91); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 92); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 93); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 94); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 95); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 96); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 97); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 98); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 705); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2609); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2610); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2611); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2612); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2613); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2614); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2615); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2616); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2617); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2618); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2619); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2620); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2621); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2622); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2623); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2624); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2626); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2628); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2629); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2630); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2632); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2633); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2634); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2635); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2636); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2637); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 745); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 746); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 747); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 748); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 749); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 750); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 751); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 755); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 756); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 757); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 759); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 760); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 620); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 621); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 622); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 623); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 761); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 762); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 763); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 764); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 765); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 766); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 779); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 780); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2639); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2640); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2641); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2642); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2643); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2644); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2645); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2646); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2647); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2648); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2649); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1609); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1610); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1611); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1612); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1613); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1614); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1615); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1616); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1617); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1618); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1619); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1620); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1621); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1622); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1623); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1624); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1626); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1628); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1629); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1630); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1632); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1633); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1634); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1635); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1636); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1637); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1639); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1640); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1641); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1642); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1643); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1644); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1645); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 554); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 555); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1646); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1647); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1648); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1649); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1664); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1665); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1666); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1667); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1668); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1669); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1670); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1705); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1745); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1746); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1747); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1748); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1749); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1750); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1751); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2018); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2019); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2664); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2665); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2666); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2667); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2668); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2669); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2670); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2964); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2965); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2966); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2967); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2968); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3018); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3019); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3073); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3074); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3081); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3082); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3083); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3084); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3085); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3086); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2731); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2732); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2733); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2734); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2735); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2736); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2737); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2739); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2740); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2741); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2742); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2743); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2744); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2745); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2746); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2747); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2748); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2749); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2750); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1073); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1074); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1081); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1082); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1083); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1084); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1085); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1086); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 2138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 3351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1532); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1533); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1534); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1535); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1536); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1537); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1538); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1539); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1540); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1541); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1964); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1965); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1966); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1967); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (1, 1968); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2883); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2878); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2879); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2884); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2887); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2889); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2881); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2882); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2886); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2890); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 2912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (3, 3222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 51); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 52); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 53); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 54); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 55); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 56); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 57); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 58); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 59); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 60); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 61); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 62); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 23); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 24); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 25); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 26); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 27); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 28); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 29); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 30); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 31); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 32); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 33); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 34); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 35); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 36); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 37); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 4); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 5); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 38); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 39); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 40); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 41); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 42); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 43); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 44); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 45); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 46); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 47); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 48); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 49); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 50); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 77); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 78); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 79); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 80); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 81); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 82); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 83); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 84); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 1685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 2718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (5, 3503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 6); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 7); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 8); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 9); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 10); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 11); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 12); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 13); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 14); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 15); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 16); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 17); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 18); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 19); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 20); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 21); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 22); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 4); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 5); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 23); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 24); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 25); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 26); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 27); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 28); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 29); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 30); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 31); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 32); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 33); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 34); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 35); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 36); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 37); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 38); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 39); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 40); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 41); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 42); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 43); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 44); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 45); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 46); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 47); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 48); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 49); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 50); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 51); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 52); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 53); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 54); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 55); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 56); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 57); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 58); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 59); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 60); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 61); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 62); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 63); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 64); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 65); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 66); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 67); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 68); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 69); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 70); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 71); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 72); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 73); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 74); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 75); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 76); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 77); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 78); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 79); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 80); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 81); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 82); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 83); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 84); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 85); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 86); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 87); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 88); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 89); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 90); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 91); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 92); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 93); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 94); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 95); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 96); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 97); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 98); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 99); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 719); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 731); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 732); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 733); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 734); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 735); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 736); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 737); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 739); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 740); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 741); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 742); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 743); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 744); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 705); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2609); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2610); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2611); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2612); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2613); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2614); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2615); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2616); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2617); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2618); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2619); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2620); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2621); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2622); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2623); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2624); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2626); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2628); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2629); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2630); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2632); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2633); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2634); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2635); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2636); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2637); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 745); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 746); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 747); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 748); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 749); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 750); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 751); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 755); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 756); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 757); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 759); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 760); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 620); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 621); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 622); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 623); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 761); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 762); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 763); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 764); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 765); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 766); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 779); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 780); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2639); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2640); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2641); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2642); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2643); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2644); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2645); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2646); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2647); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2648); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2649); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 878); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 879); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 881); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 882); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 883); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 884); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 886); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 887); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 889); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 890); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 964); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 965); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 966); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 967); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 968); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1018); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1019); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 624); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 626); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 628); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 629); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 630); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 632); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 633); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 634); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 635); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 636); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 637); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 639); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 640); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 641); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 642); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 643); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 644); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 645); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1073); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1074); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1081); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1082); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1083); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1084); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1085); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1086); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1532); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1533); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1534); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1535); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1536); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1537); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1538); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1539); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1540); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1541); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1554); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1555); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1556); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1558); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1559); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1560); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1561); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1583); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1584); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1585); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1586); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1587); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1588); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1589); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1590); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1591); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1592); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1593); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1594); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1595); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1596); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1609); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1610); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1611); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1612); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1613); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1614); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1615); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1616); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1617); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1618); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1619); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1620); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1621); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1622); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1623); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1624); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1625); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1626); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1627); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1628); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1629); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1630); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1631); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1632); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1633); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1634); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1635); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1636); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1637); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1638); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1639); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1640); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1641); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1642); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1643); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1644); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1645); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 554); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 555); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1646); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1647); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1648); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1649); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1664); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1665); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1666); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1667); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1668); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1669); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1670); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1705); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1731); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1733); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1736); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1737); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1740); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1742); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1743); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1719); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1732); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1734); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1735); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1739); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1741); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1744); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1745); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1746); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1747); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1748); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1749); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1750); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1751); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1755); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1762); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1763); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1756); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1764); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1757); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1765); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1766); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1759); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1760); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1761); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1779); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1780); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1878); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1879); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1881); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1882); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1883); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1884); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1886); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1887); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1889); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1890); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 597); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 598); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 599); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 600); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 601); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 602); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 603); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 604); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 605); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 606); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 607); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 608); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 609); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 610); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 611); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 612); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 613); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 614); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 615); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 616); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 617); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 618); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 619); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1964); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1965); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1966); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1967); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1968); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 1999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2018); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2019); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 532); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 533); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 534); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 535); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 536); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 537); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 538); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 539); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 540); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 541); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2073); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2074); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2081); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2082); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2083); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2084); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2085); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2086); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2225); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2255); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2256); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2257); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2258); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2259); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2260); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2261); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2262); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2263); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2265); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2266); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2267); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2268); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2270); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2271); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2272); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2273); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2274); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2276); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2277); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2279); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2280); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2281); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2318); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2319); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2321); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2322); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2285); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2286); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2287); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3254); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2300); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2301); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2302); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2303); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2304); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2305); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2306); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2307); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2308); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2309); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2310); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2311); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2312); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2313); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2314); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2315); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2316); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2317); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2282); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2284); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2349); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2350); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2351); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2352); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2353); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2354); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2355); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2356); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2357); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2358); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2359); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2375); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2376); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2377); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2378); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2379); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2381); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2382); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2383); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2384); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2385); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2386); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2387); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2388); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2389); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2390); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2394); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2395); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2396); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2397); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2398); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2399); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2400); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3275); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2664); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2665); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2666); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2667); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2668); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2669); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2670); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2675); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2676); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2677); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2678); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2679); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2680); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2681); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2682); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2683); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2684); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2685); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2686); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2687); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2688); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2689); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2690); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2691); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2692); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2693); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2694); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2695); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2696); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2697); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2698); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2699); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2700); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2701); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2702); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2703); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2704); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 401); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 573); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 577); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 580); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 581); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 579); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 582); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 572); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 575); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 578); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 574); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 576); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3288); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3289); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3291); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3292); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3293); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3294); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3295); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3296); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3297); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3298); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3299); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2505); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3269); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2506); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2507); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2508); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2509); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2510); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2511); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2513); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2515); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2517); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2520); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2521); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2522); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2524); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2525); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2526); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2527); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2528); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2529); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2530); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2531); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2532); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2533); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2534); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2535); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2536); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2537); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2538); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2539); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2540); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2541); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2542); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2543); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2544); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2545); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2546); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2547); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2548); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2549); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2551); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2552); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2553); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2554); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2555); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2556); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2558); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2559); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2560); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2561); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2705); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2706); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2707); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2708); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2709); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2710); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2711); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2712); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2713); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2714); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2715); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2716); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2717); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2718); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2719); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2720); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2721); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2722); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2723); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2724); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2725); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2726); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2727); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2728); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2729); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3374); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2570); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2571); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2751); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2755); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2756); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2757); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2759); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2760); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2761); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2762); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2763); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2764); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2765); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2766); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2770); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2771); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2772); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2773); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2774); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2775); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2776); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2777); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2778); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2779); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2780); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2781); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2782); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2783); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2784); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2785); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2786); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2787); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2788); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2789); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2790); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2791); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2792); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2793); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2794); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2795); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2796); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2797); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2798); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2799); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2800); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2802); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2803); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2804); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2805); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2806); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2807); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2808); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2809); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2810); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2811); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2812); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2813); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2814); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2815); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2816); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2817); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2818); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 646); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 647); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 648); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 649); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 651); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 653); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 655); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 658); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2926); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2927); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2929); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2930); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2931); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2932); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2933); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2934); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2935); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2936); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2937); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2938); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2939); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2940); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2941); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2943); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2944); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2946); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2947); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2948); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2949); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2950); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2951); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2952); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2953); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2954); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2955); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2956); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2957); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2958); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2959); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2960); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2961); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2962); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2963); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3006); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3008); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3009); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3011); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3012); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3014); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3015); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3016); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3017); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2964); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2965); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2966); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2967); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2968); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2969); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2970); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2971); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2972); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2973); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2974); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3253); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2975); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2976); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2977); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2978); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2979); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2980); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2981); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2982); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2983); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2985); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2986); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2987); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2988); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2989); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2990); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2991); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2992); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2993); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2994); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2995); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2996); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2997); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2998); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2999); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3000); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3001); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3002); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3018); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3019); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3020); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3021); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3022); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3023); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3024); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3025); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3026); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3027); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3028); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3029); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3030); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3031); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3032); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3033); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3034); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3035); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3036); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3037); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3038); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3039); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3040); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3041); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3042); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3043); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3044); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3045); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3046); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3047); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3048); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3049); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3050); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3051); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3064); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3065); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3066); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3067); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3068); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3069); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3070); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3071); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3072); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3073); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3074); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3075); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3076); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3077); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3078); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3079); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3080); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3052); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3053); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3054); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3055); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3056); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3057); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3058); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3059); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3060); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3061); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3062); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3063); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3081); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3082); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3083); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3084); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3085); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3086); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3087); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3089); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3090); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3091); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3092); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3097); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3098); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3100); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3101); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3102); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3103); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 323); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 324); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 325); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 326); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 327); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 328); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 329); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 330); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 331); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 332); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 333); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 334); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 336); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 365); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 366); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 368); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 369); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 370); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 371); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 372); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 373); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 556); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 557); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 558); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 559); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 560); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 561); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 562); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 563); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 564); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 565); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 566); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 567); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 568); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 569); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 661); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 662); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 663); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 664); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 665); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 666); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 667); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 668); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 669); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 670); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 671); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 672); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 673); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 674); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3104); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3106); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3107); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3108); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3109); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3110); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3111); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3112); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3113); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3114); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3115); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3116); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3117); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3118); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3119); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3120); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3121); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3122); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3123); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3124); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3125); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3126); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3127); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3128); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3129); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3130); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3131); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 652); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 656); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 657); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 650); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 659); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 654); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 660); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3132); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3133); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3134); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3135); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3136); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3137); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3138); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3139); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3140); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3141); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3142); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3143); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3144); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3145); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2731); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2732); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2733); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2734); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2735); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2736); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2737); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2739); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2740); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2741); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2742); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2743); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2744); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2745); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2746); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2747); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2748); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2749); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 2750); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3320); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3264); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3146); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3147); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3148); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3149); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3150); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3151); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3153); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3154); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3155); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3156); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3157); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3158); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3159); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3161); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3162); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3163); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3164); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3455); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3456); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3457); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3458); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3459); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3460); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3461); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3462); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3463); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3464); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3465); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3466); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3467); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3468); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3469); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3470); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3471); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3472); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3473); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3474); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3475); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3476); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3477); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3478); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (8, 3484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (9, 3402); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3250); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2819); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2820); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2821); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2822); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2823); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2824); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2825); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2826); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2827); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2828); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2829); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2831); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2832); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2833); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2834); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2835); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2836); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2838); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3226); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3227); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3229); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3231); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3232); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3233); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3234); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3235); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3237); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3238); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3239); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3240); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3241); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3242); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3243); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3244); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3245); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3246); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3247); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3248); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3249); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2839); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2840); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2841); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2842); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2843); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2844); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2845); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2846); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2847); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2848); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2849); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2850); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2851); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2853); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2855); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2856); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3166); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3167); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3168); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3171); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3223); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2861); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2865); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2868); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2871); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2873); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2883); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2893); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2894); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2898); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2901); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2904); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2906); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2911); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2913); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2915); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2917); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2919); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2923); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2925); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2859); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2860); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2869); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2872); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2878); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2879); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2884); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2887); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2889); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2892); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2896); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2897); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2902); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2905); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2907); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2910); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2914); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2918); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2920); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2922); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2924); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2857); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2862); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2863); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2866); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2870); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2875); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2881); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2882); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2886); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2890); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2891); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2895); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2899); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2900); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2903); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2908); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2909); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 2912); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3165); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3169); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3170); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3252); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3224); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3251); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3340); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3339); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3338); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3337); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3341); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3342); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3346); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3343); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3347); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3344); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3348); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3360); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3361); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3362); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3363); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3364); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3172); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3173); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3174); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3175); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3176); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3177); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3178); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3179); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3180); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3181); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3182); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3183); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3184); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3185); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3186); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3187); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3188); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3189); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3190); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3191); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3192); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3193); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3196); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3197); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3199); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3200); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3201); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3202); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3203); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3204); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3205); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3207); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3208); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3209); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3210); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3211); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3212); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3213); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3214); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3216); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3217); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3218); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3221); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3222); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3428); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (10, 3429); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 391); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 523); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 219); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 220); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 215); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 730); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 738); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 228); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 230); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 236); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 852); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 858); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 864); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 867); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 874); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 877); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 885); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 888); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1088); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1093); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1099); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1105); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 504); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1518); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1519); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1514); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1916); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1928); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 1921); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2752); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2753); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2754); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2758); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2767); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2768); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 2769); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (11, 393); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (12, 3427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3479); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3480); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3481); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3482); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3483); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3484); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3485); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3486); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3487); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3488); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3489); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3490); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3491); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3492); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3493); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3494); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3495); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3496); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3497); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3498); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3499); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3500); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3501); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3502); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (13, 3503); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3430); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3431); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3432); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3433); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3434); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3435); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3436); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3437); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3438); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3439); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3440); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3441); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3442); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3443); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3444); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3445); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3446); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3447); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3448); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3449); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3450); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3451); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3452); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3453); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (14, 3454); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3403); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3404); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3405); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3406); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3407); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3408); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3409); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3410); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3411); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3412); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3413); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3414); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3415); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3416); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3417); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3418); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3419); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3420); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3421); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3422); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3423); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3424); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3425); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3426); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (15, 3427); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 3367); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 52); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2194); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2195); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2198); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2206); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2512); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2516); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2550); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2003); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2004); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2005); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2007); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2010); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (16, 2013); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 2); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 3); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 4); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 5); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 152); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 160); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1278); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1283); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1392); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1335); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1345); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1380); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1801); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1830); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1837); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1854); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1876); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1880); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1984); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1942); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 1945); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 2094); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 2095); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 2096); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (17, 3290); -INSERT INTO "PlaylistTrack" ("PlaylistId", "TrackId") VALUES (18, 597); - diff --git a/tests/init/data/postgres/dvds.sql b/tests/init/data/postgres/dvds.sql deleted file mode 100644 index 296b4d6..0000000 --- a/tests/init/data/postgres/dvds.sql +++ /dev/null @@ -1,46553 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 10.7 (Ubuntu 10.7-1.pgdg18.04+1) --- Dumped by pg_dump version 10.7 (Ubuntu 10.7-1.pgdg18.04+1) - --- Started on 2019-06-10 17:55:18 CEST - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET client_min_messages = warning; -SET row_security = off; - --- --- TOC entry 8 (class 2615 OID 16385) --- Name: dvds; Type: SCHEMA; Schema: -; Owner: jet --- - -DROP SCHEMA IF EXISTS dvds CASCADE; - -CREATE SCHEMA dvds; - - -ALTER SCHEMA dvds OWNER TO jet; - --- --- TOC entry 557 (class 1247 OID 16387) --- Name: mpaa_rating; Type: TYPE; Schema: dvds; Owner: jet --- - -CREATE TYPE dvds.mpaa_rating AS ENUM ( - 'G', - 'PG', - 'PG-13', - 'R', - 'NC-17' -); - - -ALTER TYPE dvds.mpaa_rating OWNER TO jet; - --- --- TOC entry 560 (class 1247 OID 16397) --- Name: year; Type: DOMAIN; Schema: dvds; Owner: jet --- - -CREATE DOMAIN dvds.year AS integer - CONSTRAINT year_check CHECK (((VALUE >= 1901) AND (VALUE <= 2155))); - - -ALTER DOMAIN dvds.year OWNER TO jet; - --- --- TOC entry 240 (class 1255 OID 16399) --- Name: _group_concat(text, text); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds._group_concat(text, text) RETURNS text - LANGUAGE sql IMMUTABLE - AS $_$ -SELECT CASE - WHEN $2 IS NULL THEN $1 - WHEN $1 IS NULL THEN $2 - ELSE $1 || ', ' || $2 -END -$_$; - - -ALTER FUNCTION dvds._group_concat(text, text) OWNER TO jet; - --- --- TOC entry 241 (class 1255 OID 16400) --- Name: film_in_stock(integer, integer); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.film_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) RETURNS SETOF integer - LANGUAGE sql - AS $_$ - SELECT inventory_id - FROM inventory - WHERE film_id = $1 - AND store_id = $2 - AND inventory_in_stock(inventory_id); -$_$; - - -ALTER FUNCTION dvds.film_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) OWNER TO jet; - --- --- TOC entry 242 (class 1255 OID 16401) --- Name: film_not_in_stock(integer, integer); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.film_not_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) RETURNS SETOF integer - LANGUAGE sql - AS $_$ - SELECT inventory_id - FROM inventory - WHERE film_id = $1 - AND store_id = $2 - AND NOT inventory_in_stock(inventory_id); -$_$; - - -ALTER FUNCTION dvds.film_not_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) OWNER TO jet; - --- --- TOC entry 255 (class 1255 OID 16402) --- Name: get_customer_balance(integer, timestamp without time zone); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.get_customer_balance(p_customer_id integer, p_effective_date timestamp without time zone) RETURNS numeric - LANGUAGE plpgsql - AS $$ - --#OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE - --#THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS: - --# 1) RENTAL FEES FOR ALL PREVIOUS RENTALS - --# 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE - --# 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST - --# 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED -DECLARE - v_rentfees DECIMAL(5,2); --#FEES PAID TO RENT THE VIDEOS INITIALLY - v_overfees INTEGER; --#LATE FEES FOR PRIOR RENTALS - v_payments DECIMAL(5,2); --#SUM OF PAYMENTS MADE PREVIOUSLY -BEGIN - SELECT COALESCE(SUM(film.rental_rate),0) INTO v_rentfees - FROM film, inventory, rental - WHERE film.film_id = inventory.film_id - AND inventory.inventory_id = rental.inventory_id - AND rental.rental_date <= p_effective_date - AND rental.customer_id = p_customer_id; - - SELECT COALESCE(SUM(IF((rental.return_date - rental.rental_date) > (film.rental_duration * '1 day'::interval), - ((rental.return_date - rental.rental_date) - (film.rental_duration * '1 day'::interval)),0)),0) INTO v_overfees - FROM rental, inventory, film - WHERE film.film_id = inventory.film_id - AND inventory.inventory_id = rental.inventory_id - AND rental.rental_date <= p_effective_date - AND rental.customer_id = p_customer_id; - - SELECT COALESCE(SUM(payment.amount),0) INTO v_payments - FROM payment - WHERE payment.payment_date <= p_effective_date - AND payment.customer_id = p_customer_id; - - RETURN v_rentfees + v_overfees - v_payments; -END -$$; - - -ALTER FUNCTION dvds.get_customer_balance(p_customer_id integer, p_effective_date timestamp without time zone) OWNER TO jet; - --- --- TOC entry 256 (class 1255 OID 16403) --- Name: inventory_held_by_customer(integer); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.inventory_held_by_customer(p_inventory_id integer) RETURNS integer - LANGUAGE plpgsql - AS $$ -DECLARE - v_customer_id INTEGER; -BEGIN - - SELECT customer_id INTO v_customer_id - FROM rental - WHERE return_date IS NULL - AND inventory_id = p_inventory_id; - - RETURN v_customer_id; -END $$; - - -ALTER FUNCTION dvds.inventory_held_by_customer(p_inventory_id integer) OWNER TO jet; - --- --- TOC entry 257 (class 1255 OID 16404) --- Name: inventory_in_stock(integer); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.inventory_in_stock(p_inventory_id integer) RETURNS boolean - LANGUAGE plpgsql - AS $$ -DECLARE - v_rentals INTEGER; - v_out INTEGER; -BEGIN - -- AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE - -- FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED - - SELECT count(*) INTO v_rentals - FROM rental - WHERE inventory_id = p_inventory_id; - - IF v_rentals = 0 THEN - RETURN TRUE; - END IF; - - SELECT COUNT(rental_id) INTO v_out - FROM inventory LEFT JOIN rental USING(inventory_id) - WHERE inventory.inventory_id = p_inventory_id - AND rental.return_date IS NULL; - - IF v_out > 0 THEN - RETURN FALSE; - ELSE - RETURN TRUE; - END IF; -END $$; - - -ALTER FUNCTION dvds.inventory_in_stock(p_inventory_id integer) OWNER TO jet; - --- --- TOC entry 258 (class 1255 OID 16405) --- Name: last_day(timestamp without time zone); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.last_day(timestamp without time zone) RETURNS date - LANGUAGE sql IMMUTABLE STRICT - AS $_$ - SELECT CASE - WHEN EXTRACT(MONTH FROM $1) = 12 THEN - (((EXTRACT(YEAR FROM $1) + 1) operator(pg_catalog.||) '-01-01')::date - INTERVAL '1 day')::date - ELSE - ((EXTRACT(YEAR FROM $1) operator(pg_catalog.||) '-' operator(pg_catalog.||) (EXTRACT(MONTH FROM $1) + 1) operator(pg_catalog.||) '-01')::date - INTERVAL '1 day')::date - END -$_$; - - -ALTER FUNCTION dvds.last_day(timestamp without time zone) OWNER TO jet; - --- --- TOC entry 259 (class 1255 OID 16406) --- Name: last_updated(); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.last_updated() RETURNS trigger - LANGUAGE plpgsql - AS $$ -BEGIN - NEW.last_update = CURRENT_TIMESTAMP; - RETURN NEW; -END $$; - - -ALTER FUNCTION dvds.last_updated() OWNER TO jet; - --- --- TOC entry 197 (class 1259 OID 16407) --- Name: customer_customer_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.customer_customer_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.customer_customer_id_seq OWNER TO jet; - -SET default_tablespace = ''; - -SET default_with_oids = false; - --- --- TOC entry 198 (class 1259 OID 16409) --- Name: customer; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.customer ( - customer_id integer DEFAULT nextval('dvds.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, - activebool boolean DEFAULT true NOT NULL, - create_date date DEFAULT ('now'::text)::date NOT NULL, - last_update timestamp without time zone DEFAULT now(), - active integer -); - - -ALTER TABLE dvds.customer OWNER TO jet; - --- --- TOC entry 260 (class 1255 OID 16416) --- Name: rewards_report(integer, numeric); Type: FUNCTION; Schema: dvds; Owner: jet --- - -CREATE FUNCTION dvds.rewards_report(min_monthly_purchases integer, min_dollar_amount_purchased numeric) RETURNS SETOF dvds.customer - LANGUAGE plpgsql SECURITY DEFINER - AS $_$ -DECLARE - last_month_start DATE; - last_month_end DATE; -rr RECORD; -tmpSQL TEXT; -BEGIN - - /* Some sanity checks... */ - IF min_monthly_purchases = 0 THEN - RAISE EXCEPTION 'Minimum monthly purchases parameter must be > 0'; - END IF; - IF min_dollar_amount_purchased = 0.00 THEN - RAISE EXCEPTION 'Minimum monthly dollar amount purchased parameter must be > $0.00'; - END IF; - - last_month_start := CURRENT_DATE - '3 month'::interval; - last_month_start := to_date((extract(YEAR FROM last_month_start) || '-' || extract(MONTH FROM last_month_start) || '-01'),'YYYY-MM-DD'); - last_month_end := LAST_DAY(last_month_start); - - /* - Create a temporary storage area for Customer IDs. - */ - CREATE TEMPORARY TABLE tmpCustomer (customer_id INTEGER NOT NULL PRIMARY KEY); - - /* - Find all customers meeting the monthly purchase requirements - */ - - tmpSQL := 'INSERT INTO tmpCustomer (customer_id) - SELECT p.customer_id - FROM payment AS p - WHERE DATE(p.payment_date) BETWEEN '||quote_literal(last_month_start) ||' AND '|| quote_literal(last_month_end) || ' - GROUP BY customer_id - HAVING SUM(p.amount) > '|| min_dollar_amount_purchased || ' - AND COUNT(customer_id) > ' ||min_monthly_purchases ; - - EXECUTE tmpSQL; - - /* - Output ALL customer information of matching rewardees. - Customize output as needed. - */ - FOR rr IN EXECUTE 'SELECT c.* FROM tmpCustomer AS t INNER JOIN customer AS c ON t.customer_id = c.customer_id' LOOP - RETURN NEXT rr; - END LOOP; - - /* Clean up */ - tmpSQL := 'DROP TABLE tmpCustomer'; - EXECUTE tmpSQL; - -RETURN; -END -$_$; - - -ALTER FUNCTION dvds.rewards_report(min_monthly_purchases integer, min_dollar_amount_purchased numeric) OWNER TO jet; - --- --- TOC entry 740 (class 1255 OID 16417) --- Name: group_concat(text); Type: AGGREGATE; Schema: dvds; Owner: jet --- - -CREATE AGGREGATE dvds.group_concat(text) ( - SFUNC = dvds._group_concat, - STYPE = text -); - - -ALTER AGGREGATE dvds.group_concat(text) OWNER TO jet; - --- --- TOC entry 199 (class 1259 OID 16418) --- Name: actor_actor_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.actor_actor_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.actor_actor_id_seq OWNER TO jet; - --- --- TOC entry 200 (class 1259 OID 16420) --- Name: actor; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.actor ( - actor_id integer DEFAULT nextval('dvds.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 NOT NULL -); - - -ALTER TABLE dvds.actor OWNER TO jet; - --- --- TOC entry 201 (class 1259 OID 16425) --- Name: category_category_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.category_category_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.category_category_id_seq OWNER TO jet; - --- --- TOC entry 202 (class 1259 OID 16427) --- Name: category; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.category ( - category_id integer DEFAULT nextval('dvds.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 dvds.category OWNER TO jet; - --- --- TOC entry 203 (class 1259 OID 16432) --- Name: film_film_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.film_film_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.film_film_id_seq OWNER TO jet; - --- --- TOC entry 204 (class 1259 OID 16434) --- Name: film; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.film ( - film_id integer DEFAULT nextval('dvds.film_film_id_seq'::regclass) NOT NULL, - title character varying(255) NOT NULL, - description text, - release_year dvds.year, - language_id smallint 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 dvds.mpaa_rating DEFAULT 'G'::dvds.mpaa_rating, - last_update timestamp without time zone DEFAULT now() NOT NULL, - special_features text[], - fulltext tsvector NOT NULL -); - - -ALTER TABLE dvds.film OWNER TO jet; - --- --- TOC entry 205 (class 1259 OID 16446) --- Name: film_actor; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.film_actor ( - actor_id smallint NOT NULL, - film_id smallint NOT NULL, - last_update timestamp without time zone DEFAULT now() NOT NULL -); - - -ALTER TABLE dvds.film_actor OWNER TO jet; - --- --- TOC entry 206 (class 1259 OID 16450) --- Name: film_category; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.film_category ( - film_id smallint NOT NULL, - category_id smallint NOT NULL, - last_update timestamp without time zone DEFAULT now() NOT NULL -); - - -ALTER TABLE dvds.film_category OWNER TO jet; - --- --- TOC entry 207 (class 1259 OID 16454) --- Name: actor_info; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.actor_info AS - SELECT a.actor_id, - a.first_name, - a.last_name, - dvds.group_concat(DISTINCT (((c.name)::text || ': '::text) || ( SELECT dvds.group_concat((f.title)::text) AS group_concat - FROM ((dvds.film f - JOIN dvds.film_category fc_1 ON ((f.film_id = fc_1.film_id))) - JOIN dvds.film_actor fa_1 ON ((f.film_id = fa_1.film_id))) - WHERE ((fc_1.category_id = c.category_id) AND (fa_1.actor_id = a.actor_id)) - GROUP BY fa_1.actor_id))) AS film_info - FROM (((dvds.actor a - LEFT JOIN dvds.film_actor fa ON ((a.actor_id = fa.actor_id))) - LEFT JOIN dvds.film_category fc ON ((fa.film_id = fc.film_id))) - LEFT JOIN dvds.category c ON ((fc.category_id = c.category_id))) - GROUP BY a.actor_id, a.first_name, a.last_name; - - -ALTER TABLE dvds.actor_info OWNER TO jet; - --- --- TOC entry 208 (class 1259 OID 16459) --- Name: address_address_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.address_address_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.address_address_id_seq OWNER TO jet; - --- --- TOC entry 209 (class 1259 OID 16461) --- Name: address; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.address ( - address_id integer DEFAULT nextval('dvds.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 dvds.address OWNER TO jet; - --- --- TOC entry 210 (class 1259 OID 16466) --- Name: city_city_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.city_city_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.city_city_id_seq OWNER TO jet; - --- --- TOC entry 211 (class 1259 OID 16468) --- Name: city; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.city ( - city_id integer DEFAULT nextval('dvds.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 dvds.city OWNER TO jet; - --- --- TOC entry 212 (class 1259 OID 16473) --- Name: country_country_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.country_country_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.country_country_id_seq OWNER TO jet; - --- --- TOC entry 213 (class 1259 OID 16475) --- Name: country; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.country ( - country_id integer DEFAULT nextval('dvds.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 dvds.country OWNER TO jet; - --- --- TOC entry 214 (class 1259 OID 16480) --- Name: customer_list; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.customer_list AS - SELECT cu.customer_id AS id, - (((cu.first_name)::text || ' '::text) || (cu.last_name)::text) AS name, - a.address, - a.postal_code AS "zip code", - a.phone, - city.city, - country.country, - CASE - WHEN cu.activebool THEN 'active'::text - ELSE ''::text - END AS notes, - cu.store_id AS sid - FROM (((dvds.customer cu - JOIN dvds.address a ON ((cu.address_id = a.address_id))) - JOIN dvds.city ON ((a.city_id = city.city_id))) - JOIN dvds.country ON ((city.country_id = country.country_id))); - - -ALTER TABLE dvds.customer_list OWNER TO jet; - --- --- TOC entry 215 (class 1259 OID 16485) --- Name: film_list; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.film_list AS - SELECT film.film_id AS fid, - film.title, - film.description, - category.name AS category, - film.rental_rate AS price, - film.length, - film.rating, - dvds.group_concat((((actor.first_name)::text || ' '::text) || (actor.last_name)::text)) AS actors - FROM ((((dvds.category - LEFT JOIN dvds.film_category ON ((category.category_id = film_category.category_id))) - LEFT JOIN dvds.film ON ((film_category.film_id = film.film_id))) - JOIN dvds.film_actor ON ((film.film_id = film_actor.film_id))) - JOIN dvds.actor ON ((film_actor.actor_id = actor.actor_id))) - GROUP BY film.film_id, film.title, film.description, category.name, film.rental_rate, film.length, film.rating; - - -ALTER TABLE dvds.film_list OWNER TO jet; - --- --- TOC entry 216 (class 1259 OID 16490) --- Name: inventory_inventory_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.inventory_inventory_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.inventory_inventory_id_seq OWNER TO jet; - --- --- TOC entry 217 (class 1259 OID 16492) --- Name: inventory; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.inventory ( - inventory_id integer DEFAULT nextval('dvds.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 dvds.inventory OWNER TO jet; - --- --- TOC entry 218 (class 1259 OID 16497) --- Name: language_language_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.language_language_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.language_language_id_seq OWNER TO jet; - --- --- TOC entry 219 (class 1259 OID 16499) --- Name: language; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.language ( - language_id integer DEFAULT nextval('dvds.language_language_id_seq'::regclass) NOT NULL, - name character(20) NOT NULL, - last_update timestamp without time zone DEFAULT now() NOT NULL -); - - -ALTER TABLE dvds.language OWNER TO jet; - --- --- TOC entry 220 (class 1259 OID 16504) --- Name: nicer_but_slower_film_list; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.nicer_but_slower_film_list AS - SELECT film.film_id AS fid, - film.title, - film.description, - category.name AS category, - film.rental_rate AS price, - film.length, - film.rating, - dvds.group_concat((((upper("substring"((actor.first_name)::text, 1, 1)) || lower("substring"((actor.first_name)::text, 2))) || upper("substring"((actor.last_name)::text, 1, 1))) || lower("substring"((actor.last_name)::text, 2)))) AS actors - FROM ((((dvds.category - LEFT JOIN dvds.film_category ON ((category.category_id = film_category.category_id))) - LEFT JOIN dvds.film ON ((film_category.film_id = film.film_id))) - JOIN dvds.film_actor ON ((film.film_id = film_actor.film_id))) - JOIN dvds.actor ON ((film_actor.actor_id = actor.actor_id))) - GROUP BY film.film_id, film.title, film.description, category.name, film.rental_rate, film.length, film.rating; - - -ALTER TABLE dvds.nicer_but_slower_film_list OWNER TO jet; - --- --- TOC entry 221 (class 1259 OID 16509) --- Name: payment_payment_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.payment_payment_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.payment_payment_id_seq OWNER TO jet; - --- --- TOC entry 222 (class 1259 OID 16511) --- Name: payment; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.payment ( - payment_id integer DEFAULT nextval('dvds.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 dvds.payment OWNER TO jet; - --- --- TOC entry 223 (class 1259 OID 16515) --- Name: rental_rental_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.rental_rental_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.rental_rental_id_seq OWNER TO jet; - --- --- TOC entry 224 (class 1259 OID 16517) --- Name: rental; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.rental ( - rental_id integer DEFAULT nextval('dvds.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 dvds.rental OWNER TO jet; - --- --- TOC entry 225 (class 1259 OID 16522) --- Name: sales_by_film_category; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.sales_by_film_category AS - SELECT c.name AS category, - sum(p.amount) AS total_sales - FROM (((((dvds.payment p - JOIN dvds.rental r ON ((p.rental_id = r.rental_id))) - JOIN dvds.inventory i ON ((r.inventory_id = i.inventory_id))) - JOIN dvds.film f ON ((i.film_id = f.film_id))) - JOIN dvds.film_category fc ON ((f.film_id = fc.film_id))) - JOIN dvds.category c ON ((fc.category_id = c.category_id))) - GROUP BY c.name - ORDER BY (sum(p.amount)) DESC; - - -ALTER TABLE dvds.sales_by_film_category OWNER TO jet; - --- --- TOC entry 226 (class 1259 OID 16527) --- Name: staff_staff_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.staff_staff_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.staff_staff_id_seq OWNER TO jet; - --- --- TOC entry 227 (class 1259 OID 16529) --- Name: staff; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.staff ( - staff_id integer DEFAULT nextval('dvds.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 dvds.staff OWNER TO jet; - --- --- TOC entry 228 (class 1259 OID 16538) --- Name: store_store_id_seq; Type: SEQUENCE; Schema: dvds; Owner: jet --- - -CREATE SEQUENCE dvds.store_store_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE dvds.store_store_id_seq OWNER TO jet; - --- --- TOC entry 229 (class 1259 OID 16540) --- Name: store; Type: TABLE; Schema: dvds; Owner: jet --- - -CREATE TABLE dvds.store ( - store_id integer DEFAULT nextval('dvds.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 dvds.store OWNER TO jet; - --- --- TOC entry 230 (class 1259 OID 16545) --- Name: sales_by_store; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.sales_by_store AS - SELECT (((c.city)::text || ','::text) || (cy.country)::text) AS store, - (((m.first_name)::text || ' '::text) || (m.last_name)::text) AS manager, - sum(p.amount) AS total_sales - FROM (((((((dvds.payment p - JOIN dvds.rental r ON ((p.rental_id = r.rental_id))) - JOIN dvds.inventory i ON ((r.inventory_id = i.inventory_id))) - JOIN dvds.store s ON ((i.store_id = s.store_id))) - JOIN dvds.address a ON ((s.address_id = a.address_id))) - JOIN dvds.city c ON ((a.city_id = c.city_id))) - JOIN dvds.country cy ON ((c.country_id = cy.country_id))) - JOIN dvds.staff m ON ((s.manager_staff_id = m.staff_id))) - GROUP BY cy.country, c.city, s.store_id, m.first_name, m.last_name - ORDER BY cy.country, c.city; - - -ALTER TABLE dvds.sales_by_store OWNER TO jet; - --- --- TOC entry 231 (class 1259 OID 16550) --- Name: staff_list; Type: VIEW; Schema: dvds; Owner: jet --- - -CREATE VIEW dvds.staff_list AS - SELECT s.staff_id AS id, - (((s.first_name)::text || ' '::text) || (s.last_name)::text) AS name, - a.address, - a.postal_code AS "zip code", - a.phone, - city.city, - country.country, - s.store_id AS sid - FROM (((dvds.staff s - JOIN dvds.address a ON ((s.address_id = a.address_id))) - JOIN dvds.city ON ((a.city_id = city.city_id))) - JOIN dvds.country ON ((city.country_id = country.country_id))); - - -ALTER TABLE dvds.staff_list OWNER TO jet; - --- --- TOC entry 3314 (class 0 OID 16420) --- Dependencies: 200 --- Data for Name: actor; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.actor VALUES (2, 'Nick', 'Wahlberg', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (3, 'Ed', 'Chase', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (4, 'Jennifer', 'Davis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (5, 'Johnny', 'Lollobrigida', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (6, 'Bette', 'Nicholson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (7, 'Grace', 'Mostel', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (8, 'Matthew', 'Johansson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (9, 'Joe', 'Swank', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (10, 'Christian', 'Gable', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (11, 'Zero', 'Cage', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (12, 'Karl', 'Berry', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (13, 'Uma', 'Wood', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (14, 'Vivien', 'Bergen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (15, 'Cuba', 'Olivier', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (16, 'Fred', 'Costner', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (17, 'Helen', 'Voight', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (18, 'Dan', 'Torn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (19, 'Bob', 'Fawcett', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (20, 'Lucille', 'Tracy', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (21, 'Kirsten', 'Paltrow', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (22, 'Elvis', 'Marx', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (23, 'Sandra', 'Kilmer', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (24, 'Cameron', 'Streep', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (25, 'Kevin', 'Bloom', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (26, 'Rip', 'Crawford', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (27, 'Julia', 'Mcqueen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (28, 'Woody', 'Hoffman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (29, 'Alec', 'Wayne', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (30, 'Sandra', 'Peck', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (31, 'Sissy', 'Sobieski', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (32, 'Tim', 'Hackman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (33, 'Milla', 'Peck', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (34, 'Audrey', 'Olivier', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (35, 'Judy', 'Dean', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (36, 'Burt', 'Dukakis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (37, 'Val', 'Bolger', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (38, 'Tom', 'Mckellen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (39, 'Goldie', 'Brody', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (40, 'Johnny', 'Cage', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (41, 'Jodie', 'Degeneres', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (42, 'Tom', 'Miranda', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (43, 'Kirk', 'Jovovich', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (44, 'Nick', 'Stallone', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (45, 'Reese', 'Kilmer', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (46, 'Parker', 'Goldberg', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (47, 'Julia', 'Barrymore', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (48, 'Frances', 'Day-Lewis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (49, 'Anne', 'Cronyn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (50, 'Natalie', 'Hopkins', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (51, 'Gary', 'Phoenix', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (52, 'Carmen', 'Hunt', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (53, 'Mena', 'Temple', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (54, 'Penelope', 'Pinkett', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (55, 'Fay', 'Kilmer', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (56, 'Dan', 'Harris', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (57, 'Jude', 'Cruise', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (58, 'Christian', 'Akroyd', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (59, 'Dustin', 'Tautou', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (60, 'Henry', 'Berry', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (61, 'Christian', 'Neeson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (62, 'Jayne', 'Neeson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (63, 'Cameron', 'Wray', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (64, 'Ray', 'Johansson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (65, 'Angela', 'Hudson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (66, 'Mary', 'Tandy', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (67, 'Jessica', 'Bailey', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (68, 'Rip', 'Winslet', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (69, 'Kenneth', 'Paltrow', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (70, 'Michelle', 'Mcconaughey', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (71, 'Adam', 'Grant', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (72, 'Sean', 'Williams', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (73, 'Gary', 'Penn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (74, 'Milla', 'Keitel', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (75, 'Burt', 'Posey', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (76, 'Angelina', 'Astaire', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (77, 'Cary', 'Mcconaughey', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (78, 'Groucho', 'Sinatra', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (79, 'Mae', 'Hoffman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (80, 'Ralph', 'Cruz', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (81, 'Scarlett', 'Damon', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (82, 'Woody', 'Jolie', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (83, 'Ben', 'Willis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (84, 'James', 'Pitt', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (85, 'Minnie', 'Zellweger', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (143, 'River', 'Dean', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (86, 'Greg', 'Chaplin', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (87, 'Spencer', 'Peck', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (88, 'Kenneth', 'Pesci', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (89, 'Charlize', 'Dench', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (90, 'Sean', 'Guiness', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (91, 'Christopher', 'Berry', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (92, 'Kirsten', 'Akroyd', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (93, 'Ellen', 'Presley', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (94, 'Kenneth', 'Torn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (95, 'Daryl', 'Wahlberg', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (96, 'Gene', 'Willis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (97, 'Meg', 'Hawke', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (98, 'Chris', 'Bridges', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (99, 'Jim', 'Mostel', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (100, 'Spencer', 'Depp', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (101, 'Susan', 'Davis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (102, 'Walter', 'Torn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (103, 'Matthew', 'Leigh', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (104, 'Penelope', 'Cronyn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (105, 'Sidney', 'Crowe', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (106, 'Groucho', 'Dunst', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (107, 'Gina', 'Degeneres', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (108, 'Warren', 'Nolte', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (109, 'Sylvester', 'Dern', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (110, 'Susan', 'Davis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (111, 'Cameron', 'Zellweger', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (112, 'Russell', 'Bacall', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (113, 'Morgan', 'Hopkins', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (114, 'Morgan', 'Mcdormand', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (115, 'Harrison', 'Bale', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (116, 'Dan', 'Streep', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (117, 'Renee', 'Tracy', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (118, 'Cuba', 'Allen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (119, 'Warren', 'Jackman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (120, 'Penelope', 'Monroe', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (121, 'Liza', 'Bergman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (122, 'Salma', 'Nolte', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (123, 'Julianne', 'Dench', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (124, 'Scarlett', 'Bening', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (125, 'Albert', 'Nolte', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (126, 'Frances', 'Tomei', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (127, 'Kevin', 'Garland', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (128, 'Cate', 'Mcqueen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (129, 'Daryl', 'Crawford', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (130, 'Greta', 'Keitel', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (131, 'Jane', 'Jackman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (132, 'Adam', 'Hopper', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (133, 'Richard', 'Penn', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (134, 'Gene', 'Hopkins', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (135, 'Rita', 'Reynolds', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (136, 'Ed', 'Mansfield', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (137, 'Morgan', 'Williams', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (138, 'Lucille', 'Dee', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (139, 'Ewan', 'Gooding', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (140, 'Whoopi', 'Hurt', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (141, 'Cate', 'Harris', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (142, 'Jada', 'Ryder', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (144, 'Angela', 'Witherspoon', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (145, 'Kim', 'Allen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (146, 'Albert', 'Johansson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (147, 'Fay', 'Winslet', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (148, 'Emily', 'Dee', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (149, 'Russell', 'Temple', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (150, 'Jayne', 'Nolte', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (151, 'Geoffrey', 'Heston', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (152, 'Ben', 'Harris', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (153, 'Minnie', 'Kilmer', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (154, 'Meryl', 'Gibson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (155, 'Ian', 'Tandy', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (156, 'Fay', 'Wood', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (157, 'Greta', 'Malden', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (158, 'Vivien', 'Basinger', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (159, 'Laura', 'Brody', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (160, 'Chris', 'Depp', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (161, 'Harvey', 'Hope', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (162, 'Oprah', 'Kilmer', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (163, 'Christopher', 'West', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (164, 'Humphrey', 'Willis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (165, 'Al', 'Garland', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (166, 'Nick', 'Degeneres', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (167, 'Laurence', 'Bullock', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (168, 'Will', 'Wilson', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (169, 'Kenneth', 'Hoffman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (170, 'Mena', 'Hopper', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (171, 'Olympia', 'Pfeiffer', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (172, 'Groucho', 'Williams', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (173, 'Alan', 'Dreyfuss', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (174, 'Michael', 'Bening', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (175, 'William', 'Hackman', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (176, 'Jon', 'Chase', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (177, 'Gene', 'Mckellen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (178, 'Lisa', 'Monroe', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (179, 'Ed', 'Guiness', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (180, 'Jeff', 'Silverstone', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (181, 'Matthew', 'Carrey', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (182, 'Debbie', 'Akroyd', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (183, 'Russell', 'Close', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (184, 'Humphrey', 'Garland', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (185, 'Michael', 'Bolger', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (186, 'Julia', 'Zellweger', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (187, 'Renee', 'Ball', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (188, 'Rock', 'Dukakis', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (189, 'Cuba', 'Birch', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (190, 'Audrey', 'Bailey', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (191, 'Gregory', 'Gooding', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (192, 'John', 'Suvari', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (193, 'Burt', 'Temple', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (194, 'Meryl', 'Allen', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (195, 'Jayne', 'Silverstone', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (196, 'Bela', 'Walken', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (197, 'Reese', 'West', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (198, 'Mary', 'Keitel', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (199, 'Julia', 'Fawcett', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (200, 'Thora', 'Temple', '2013-05-26 14:47:57.62'); -INSERT INTO dvds.actor VALUES (1, 'Penelope', 'Guiness', '2013-05-26 14:47:57.62'); - - --- --- TOC entry 3322 (class 0 OID 16461) --- Dependencies: 209 --- Data for Name: address; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.address VALUES (1, '47 MySakila Drive', NULL, 'Alberta', 300, '', '', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (2, '28 MySQL Boulevard', NULL, 'QLD', 576, '', '', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (3, '23 Workhaven Lane', NULL, 'Alberta', 300, '', '14033335568', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (4, '1411 Lillydale Drive', NULL, 'QLD', 576, '', '6172235589', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (5, '1913 Hanoi Way', '', 'Nagasaki', 463, '35200', '28303384290', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (6, '1121 Loja Avenue', '', 'California', 449, '17886', '838635286649', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (7, '692 Joliet Street', '', 'Attika', 38, '83579', '448477190408', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (8, '1566 Inegl Manor', '', 'Mandalay', 349, '53561', '705814003527', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (9, '53 Idfu Parkway', '', 'Nantou', 361, '42399', '10655648674', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (10, '1795 Santiago de Compostela Way', '', 'Texas', 295, '18743', '860452626434', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (11, '900 Santiago de Compostela Parkway', '', 'Central Serbia', 280, '93896', '716571220373', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (12, '478 Joliet Way', '', 'Hamilton', 200, '77948', '657282285970', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (13, '613 Korolev Drive', '', 'Masqat', 329, '45844', '380657522649', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (14, '1531 Sal Drive', '', 'Esfahan', 162, '53628', '648856936185', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (15, '1542 Tarlac Parkway', '', 'Kanagawa', 440, '1027', '635297277345', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (16, '808 Bhopal Manor', '', 'Haryana', 582, '10672', '465887807014', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (17, '270 Amroha Parkway', '', 'Osmaniye', 384, '29610', '695479687538', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (18, '770 Bydgoszcz Avenue', '', 'California', 120, '16266', '517338314235', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (19, '419 Iligan Lane', '', 'Madhya Pradesh', 76, '72878', '990911107354', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (20, '360 Toulouse Parkway', '', 'England', 495, '54308', '949312333307', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (21, '270 Toulon Boulevard', '', 'Kalmykia', 156, '81766', '407752414682', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (22, '320 Brest Avenue', '', 'Kaduna', 252, '43331', '747791594069', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (23, '1417 Lancaster Avenue', '', 'Northern Cape', 267, '72192', '272572357893', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (24, '1688 Okara Way', '', 'Nothwest Border Prov', 327, '21954', '144453869132', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (25, '262 A Corua (La Corua) Parkway', '', 'Dhaka', 525, '34418', '892775750063', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (26, '28 Charlotte Amalie Street', '', 'Rabat-Sal-Zammour-Z', 443, '37551', '161968374323', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (27, '1780 Hino Boulevard', '', 'Liepaja', 303, '7716', '902731229323', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (28, '96 Tafuna Way', '', 'Crdoba', 128, '99865', '934730187245', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (29, '934 San Felipe de Puerto Plata Street', '', 'Sind', 472, '99780', '196495945706', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (30, '18 Duisburg Boulevard', '', '', 121, '58327', '998009777982', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (31, '217 Botshabelo Place', '', 'Southern Mindanao', 138, '49521', '665356572025', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (32, '1425 Shikarpur Manor', '', 'Bihar', 346, '65599', '678220867005', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (33, '786 Aurora Avenue', '', 'Yamaguchi', 474, '65750', '18461860151', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (34, '1668 Anpolis Street', '', 'Taipei', 316, '50199', '525255540978', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (35, '33 Gorontalo Way', '', 'West Bengali', 257, '30348', '745994947458', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (36, '176 Mandaluyong Place', '', 'Uttar Pradesh', 239, '65213', '627705991774', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (37, '127 Purnea (Purnia) Manor', '', 'Piemonte', 17, '79388', '911872220378', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (38, '61 Tama Street', '', 'Okayama', 284, '94065', '708403338270', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (39, '391 Callao Drive', '', 'Midi-Pyrnes', 544, '34021', '440512153169', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (40, '334 Munger (Monghyr) Lane', '', 'Markazi', 31, '38145', '481183273622', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (41, '1440 Fukuyama Loop', '', 'Henan', 362, '47929', '912257250465', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (42, '269 Cam Ranh Parkway', '', 'Chisinau', 115, '34689', '489783829737', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (43, '306 Antofagasta Place', '', 'Esprito Santo', 569, '3989', '378318851631', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (44, '671 Graz Street', '', 'Oriental', 353, '94399', '680768868518', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (45, '42 Brindisi Place', '', 'Yerevan', 586, '16744', '42384721397', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (46, '1632 Bislig Avenue', '', 'Nonthaburi', 394, '61117', '471675840679', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (47, '1447 Imus Way', '', 'Tahiti', 167, '48942', '539758313890', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (48, '1998 Halifax Drive', '', 'Lipetsk', 308, '76022', '177727722820', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (49, '1718 Valencia Street', '', 'Antofagasta', 27, '37359', '675292816413', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (50, '46 Pjatigorsk Lane', '', 'Moscow (City)', 343, '23616', '262076994845', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (51, '686 Garland Manor', '', 'Cear', 247, '52535', '69493378813', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (52, '909 Garland Manor', '', 'Tatarstan', 367, '69367', '705800322606', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (53, '725 Isesaki Place', '', 'Mekka', 237, '74428', '876295323994', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (54, '115 Hidalgo Parkway', '', 'Khartum', 379, '80168', '307703950263', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (55, '1135 Izumisano Parkway', '', 'California', 171, '48150', '171822533480', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (56, '939 Probolinggo Loop', '', 'Galicia', 1, '4166', '680428310138', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (57, '17 Kabul Boulevard', '', 'Chiba', 355, '38594', '697760867968', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (58, '1964 Allappuzha (Alleppey) Street', '', 'Yamaguchi', 227, '48980', '920811325222', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (59, '1697 Kowloon and New Kowloon Loop', '', 'Moskova', 49, '57807', '499352017190', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (60, '1668 Saint Louis Place', '', 'Tahiti', 397, '39072', '347487831378', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (61, '943 Tokat Street', '', 'Vaduz', 560, '45428', '889318963672', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (62, '1114 Liepaja Street', '', 'Sarawak', 282, '69226', '212869228936', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (63, '1213 Ranchi Parkway', '', 'Karnataka', 350, '94352', '800024380485', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (64, '81 Hodeida Way', '', 'Rajasthan', 231, '55561', '250767749542', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (65, '915 Ponce Place', '', 'Basel-Stadt', 56, '83980', '1395251317', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (66, '1717 Guadalajara Lane', '', 'Missouri', 441, '85505', '914090181665', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (67, '1214 Hanoi Way', '', 'Nebraska', 306, '67055', '491001136577', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (68, '1966 Amroha Avenue', '', 'Sichuan', 139, '70385', '333489324603', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (69, '698 Otsu Street', '', 'Cayenne', 105, '71110', '409983924481', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (70, '1150 Kimchon Manor', '', 'Skne ln', 321, '96109', '663449333709', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (71, '1586 Guaruj Place', '', 'Hunan', 579, '5135', '947233365992', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (72, '57 Arlington Manor', '', 'Madhya Pradesh', 475, '48960', '990214419142', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (73, '1031 Daugavpils Parkway', '', 'Bchar', 63, '59025', '107137400143', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (74, '1124 Buenaventura Drive', '', 'Mekka', 13, '6856', '407733804223', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (75, '492 Cam Ranh Street', '', 'Eastern Visayas', 61, '50805', '565018274456', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (76, '89 Allappuzha (Alleppey) Manor', '', 'National Capital Reg', 517, '75444', '255800440636', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (77, '1947 Poos de Caldas Boulevard', '', 'Chiayi', 114, '60951', '427454485876', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (78, '1206 Dos Quebradas Place', '', 'So Paulo', 431, '20207', '241832790687', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (79, '1551 Rampur Lane', '', 'Changhwa', 108, '72394', '251164340471', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (80, '602 Paarl Street', '', 'Pavlodar', 402, '98889', '896314772871', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (81, '1692 Ede Loop', '', 'So Paulo', 30, '9223', '918711376618', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (82, '936 Salzburg Lane', '', 'Uttar Pradesh', 425, '96709', '875756771675', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (83, '586 Tete Way', '', 'Kanagawa', 256, '1079', '18581624103', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (84, '1888 Kabul Drive', '', 'Oyo & Osun', 217, '20936', '701457319790', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (85, '320 Baiyin Parkway', '', 'Mahajanga', 319, '37307', '223664661973', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (86, '927 Baha Blanca Parkway', '', 'Krim', 479, '9495', '821972242086', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (87, '929 Tallahassee Loop', '', 'Gauteng', 497, '74671', '800716535041', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (88, '125 Citt del Vaticano Boulevard', '', 'Puebla', 40, '67912', '48417642933', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (89, '1557 Ktahya Boulevard', '', 'England', 88, '88002', '720998247660', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (90, '870 Ashqelon Loop', '', 'Songkhla', 489, '84931', '135117278909', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (91, '1740 Portoviejo Avenue', '', 'Sucre', 480, '29932', '198123170793', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (92, '1942 Ciparay Parkway', '', 'Cheju', 113, '82624', '978987363654', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (93, '1926 El Alto Avenue', '', 'Buenos Aires', 289, '75543', '846225459260', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (94, '1952 Chatsworth Drive', '', 'Guangdong', 332, '25958', '991562402283', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (95, '1370 Le Mans Avenue', '', 'Brunei and Muara', 53, '52163', '345679835036', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (96, '984 Effon-Alaiye Avenue', '', 'Gois', 183, '17119', '132986892228', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (97, '832 Nakhon Sawan Manor', '', 'Inner Mongolia', 592, '49021', '275595571388', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (98, '152 Kitwe Parkway', '', 'Caraga', 82, '53182', '835433605312', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (99, '1697 Tanauan Lane', '', 'Punjab', 399, '22870', '4764773857', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (100, '1308 Arecibo Way', '', 'Georgia', 41, '30695', '6171054059', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (101, '1599 Plock Drive', '', 'Tete', 534, '71986', '817248913162', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (102, '669 Firozabad Loop', '', 'Abu Dhabi', 12, '92265', '412903167998', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (103, '588 Vila Velha Manor', '', 'Kyongsangbuk', 268, '51540', '333339908719', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (104, '1913 Kamakura Place', '', 'Lipetsk', 238, '97287', '942570536750', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (105, '733 Mandaluyong Place', '', 'Asir', 2, '77459', '196568435814', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (106, '659 Vaduz Drive', '', 'Ha Darom', 34, '49708', '709935135487', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (107, '1177 Jelets Way', '', 'Kwara & Kogi', 220, '3305', '484292626944', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (108, '1386 Yangor Avenue', '', 'Provence-Alpes-Cte', 543, '80720', '449216226468', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (109, '454 Nakhon Sawan Boulevard', '', 'Funafuti', 173, '76383', '963887147572', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (110, '1867 San Juan Bautista Tuxtepec Avenue', '', 'Ivanovo', 225, '78311', '547003310357', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (111, '1532 Dzerzinsk Way', '', 'Buenos Aires', 334, '9599', '330838016880', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (112, '1002 Ahmadnagar Manor', '', 'Mxico', 213, '93026', '371490777743', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (113, '682 Junan Way', '', 'North West', 273, '30418', '622255216127', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (114, '804 Elista Drive', '', 'Hubei', 159, '61069', '379804592943', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (115, '1378 Alvorada Avenue', '', 'Distrito Federal', 102, '75834', '272234298332', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (116, '793 Cam Ranh Avenue', '', 'California', 292, '87057', '824370924746', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (117, '1079 Tel Aviv-Jaffa Boulevard', '', 'Sucre', 132, '10885', '358178933857', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (118, '442 Rae Bareli Place', '', 'Nordrhein-Westfalen', 148, '24321', '886636413768', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (119, '1107 Nakhon Sawan Avenue', '', 'Mxico', 365, '75149', '867546627903', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (120, '544 Malm Parkway', '', 'Central Java', 403, '63502', '386759646229', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (121, '1967 Sincelejo Place', '', 'Gujarat', 176, '73644', '577812616052', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (122, '333 Goinia Way', '', 'Texas', 185, '78625', '909029256431', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (123, '1987 Coacalco de Berriozbal Loop', '', 'al-Qalyubiya', 476, '96065', '787654415858', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (124, '241 Mosul Lane', '', 'Risaralda', 147, '76157', '765345144779', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (125, '211 Chiayi Drive', '', 'Uttar Pradesh', 164, '58186', '665993880048', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (126, '1175 Tanauan Way', '', 'Lima', 305, '64615', '937222955822', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (127, '117 Boa Vista Way', '', 'Uttar Pradesh', 566, '6804', '677976133614', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (128, '848 Tafuna Manor', '', 'Ktahya', 281, '45142', '614935229095', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (129, '569 Baicheng Lane', '', 'Gauteng', 85, '60304', '490211944645', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (130, '1666 Qomsheh Drive', '', 'So Paulo', 410, '66255', '582835362905', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (131, '801 Hagonoy Drive', '', 'Smolensk', 484, '8439', '237426099212', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (132, '1050 Garden Grove Avenue', '', 'Slaskie', 236, '4999', '973047364353', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (133, '1854 Tieli Street', '', 'Shandong', 302, '15819', '509492324775', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (134, '758 Junan Lane', '', 'Gois', 190, '82639', '935448624185', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (135, '1752 So Leopoldo Parkway', '', 'Taka-Karpatia', 345, '14014', '252265130067', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (136, '898 Belm Manor', '', 'Free State', 87, '49757', '707169393853', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (137, '261 Saint Louis Way', '', 'Coahuila de Zaragoza', 541, '83401', '321944036800', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (138, '765 Southampton Drive', '', 'al-Qalyubiya', 421, '4285', '23712411567', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (139, '943 Johannesburg Avenue', '', 'Maharashtra', 417, '5892', '90921003005', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (140, '788 Atinsk Street', '', 'Karnataka', 211, '81691', '146497509724', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (141, '1749 Daxian Place', '', 'Gelderland', 29, '11044', '963369996279', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (142, '1587 Sullana Lane', '', 'Inner Mongolia', 207, '85769', '468060467018', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (143, '1029 Dzerzinsk Manor', '', 'Ynlin', 542, '57519', '33173584456', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (144, '1666 Beni-Mellal Place', '', 'Tennessee', 123, '13377', '9099941466', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (145, '928 Jaffna Loop', '', 'Hiroshima', 172, '93762', '581852137991', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (146, '483 Ljubertsy Parkway', '', 'Scotland', 149, '60562', '581174211853', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (147, '374 Bat Yam Boulevard', '', 'Kilis', 266, '97700', '923261616249', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (148, '1027 Songkhla Manor', '', 'Minsk', 340, '30861', '563660187896', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (149, '999 Sanaa Loop', '', 'Gauteng', 491, '3439', '918032330119', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (150, '879 Newcastle Way', '', 'Michigan', 499, '90732', '206841104594', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (151, '1337 Lincoln Parkway', '', 'Saitama', 555, '99457', '597815221267', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (152, '1952 Pune Lane', '', 'Saint-Denis', 442, '92150', '354615066969', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (153, '782 Mosul Street', '', 'Massachusetts', 94, '25545', '885899703621', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (154, '781 Shimonoseki Drive', '', 'Michoacn de Ocampo', 202, '95444', '632316273199', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (155, '1560 Jelets Boulevard', '', 'Shandong', 291, '77777', '189446090264', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (156, '1963 Moscow Place', '', 'Assam', 354, '64863', '761379480249', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (157, '456 Escobar Way', '', 'Jakarta Raya', 232, '36061', '719202533520', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (158, '798 Cianjur Avenue', '', 'Shanxi', 590, '76990', '499408708580', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (159, '185 Novi Sad Place', '', 'Bern', 72, '41778', '904253967161', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (160, '1367 Yantai Manor', '', 'Ondo & Ekiti', 381, '21294', '889538496300', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (161, '1386 Nakhon Sawan Boulevard', '', 'Pyongyang-si', 420, '53502', '368899174225', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (162, '369 Papeete Way', '', 'North Carolina', 187, '66639', '170117068815', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (163, '1440 Compton Place', '', 'North Austria', 307, '81037', '931059836497', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (164, '1623 Baha Blanca Manor', '', 'Moskova', 310, '81511', '149981248346', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (165, '97 Shimoga Avenue', '', 'Tel Aviv', 533, '44660', '177167004331', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (166, '1740 Le Mans Loop', '', 'Pays de la Loire', 297, '22853', '168476538960', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (167, '1287 Xiangfan Boulevard', '', 'Gifu', 253, '57844', '819416131190', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (168, '842 Salzburg Lane', '', 'Adana', 529, '3313', '697151428760', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (169, '154 Tallahassee Loop', '', 'Xinxiang', 199, '62250', '935508855935', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (170, '710 San Felipe del Progreso Avenue', '', 'Lilongwe', 304, '76901', '843801144113', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (171, '1540 Wroclaw Drive', '', 'Maharashtra', 107, '62686', '182363341674', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (172, '475 Atinsk Way', '', 'Gansu', 240, '59571', '201705577290', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (173, '1294 Firozabad Drive', '', 'Jiangxi', 407, '70618', '161801569569', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (174, '1877 Ezhou Lane', '', 'Rajasthan', 550, '63337', '264541743403', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (175, '316 Uruapan Street', '', 'Perak', 223, '58194', '275788967899', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (176, '29 Pyongyang Loop', '', 'Batman', 58, '47753', '734780743462', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (177, '1010 Klerksdorp Way', '', 'Steiermark', 186, '6802', '493008546874', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (178, '1848 Salala Boulevard', '', 'Miranda', 373, '25220', '48265851133', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (179, '431 Xiangtan Avenue', '', 'Kerala', 18, '4854', '230250973122', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (180, '757 Rustenburg Avenue', '', 'Skikda', 483, '89668', '506134035434', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (181, '146 Johannesburg Way', '', 'Tamaulipas', 330, '54132', '953689007081', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (182, '1891 Rizhao Boulevard', '', 'So Paulo', 456, '47288', '391065549876', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (183, '1089 Iwatsuki Avenue', '', 'Kirov', 270, '35109', '866092335135', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (184, '1410 Benin City Parkway', '', 'Risaralda', 405, '29747', '104150372603', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (185, '682 Garden Grove Place', '', 'Tennessee', 333, '67497', '72136330362', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (186, '533 al-Ayn Boulevard', '', 'California', 126, '8862', '662227486184', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (187, '1839 Szkesfehrvr Parkway', '', 'Gois', 317, '55709', '947468818183', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (188, '741 Ambattur Manor', '', 'Noord-Brabant', 438, '43310', '302590383819', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (189, '927 Barcelona Street', '', 'Chaharmahal va Bakht', 467, '65121', '951486492670', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (190, '435 0 Way', '', 'West Bengali', 195, '74750', '760171523969', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (191, '140 Chiayi Parkway', '', 'Sumy', 506, '38982', '855863906434', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (192, '1166 Changhwa Street', '', 'Caraga', 62, '58852', '650752094490', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (193, '891 Novi Sad Manor', '', 'Ontario', 383, '5379', '247646995453', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (194, '605 Rio Claro Parkway', '', 'Tabora', 513, '49348', '352469351088', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (195, '1077 San Felipe de Puerto Plata Place', '', 'Rostov-na-Donu', 369, '65387', '812824036424', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (196, '9 San Miguel de Tucumn Manor', '', 'Uttar Pradesh', 169, '90845', '956188728558', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (197, '447 Surakarta Loop', '', 'Nyanza', 271, '10428', '940830176580', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (198, '345 Oshawa Boulevard', '', 'Tokyo-to', 204, '32114', '104491201771', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (199, '1792 Valle de la Pascua Place', '', 'Nordrhein-Westfalen', 477, '15540', '419419591240', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (200, '1074 Binzhou Manor', '', 'Baden-Wrttemberg', 325, '36490', '331132568928', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (201, '817 Bradford Loop', '', 'Jiangsu', 109, '89459', '264286442804', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (202, '955 Bamenda Way', '', 'Ondo & Ekiti', 218, '1545', '768481779568', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (203, '1149 A Corua (La Corua) Boulevard', '', 'Haiphong', 194, '95824', '470884141195', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (204, '387 Mwene-Ditu Drive', '', 'Ahal', 35, '8073', '764477681869', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (205, '68 Molodetno Manor', '', 'Nordrhein-Westfalen', 575, '4662', '146640639760', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (206, '642 Nador Drive', '', 'Maharashtra', 77, '3924', '369050085652', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (207, '1688 Nador Lane', '', 'Sulawesi Utara', 184, '61613', '652218196731', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (208, '1215 Pyongyang Parkway', '', 'Usak', 557, '25238', '646237101779', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (209, '1679 Antofagasta Street', '', 'Alto Paran', 122, '86599', '905903574913', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (210, '1304 s-Hertogenbosch Way', '', 'Santa Catarina', 83, '10925', '90336226227', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (211, '850 Salala Loop', '', 'Kitaa', 371, '10800', '403404780639', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (212, '624 Oshawa Boulevard', '', 'West Bengali', 51, '89959', '49677664184', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (213, '43 Dadu Avenue', '', 'Rajasthan', 74, '4855', '95666951770', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (214, '751 Lima Loop', '', 'Aden', 7, '99405', '756460337785', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (215, '1333 Haldia Street', '', 'Jilin', 174, '82161', '408304391718', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (216, '660 Jedda Boulevard', '', 'Washington', 65, '25053', '168758068397', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (217, '1001 Miyakonojo Lane', '', 'Taizz', 518, '67924', '584316724815', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (218, '226 Brest Manor', '', 'California', 508, '2299', '785881412500', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (219, '1229 Valencia Parkway', '', 'Haskovo', 498, '99124', '352679173732', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (220, '1201 Qomsheh Manor', '', 'Gois', 28, '21464', '873492228462', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (221, '866 Shivapuri Manor', '', 'Uttar Pradesh', 448, '22474', '778502731092', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (222, '1168 Najafabad Parkway', '', 'Kabol', 251, '40301', '886649065861', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (223, '1244 Allappuzha (Alleppey) Place', '', 'Buenos Aires', 567, '20657', '991802825778', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (224, '1842 Luzinia Boulevard', '', 'Zanzibar West', 593, '94420', '706878974831', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (225, '1926 Gingoog Street', '', 'Sisilia', 511, '22824', '469738825391', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (226, '810 Palghat (Palakkad) Boulevard', '', 'Jaroslavl', 235, '73431', '516331171356', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (227, '1820 Maring Parkway', '', 'Punjab', 324, '88307', '99760893676', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (228, '60 Poos de Caldas Street', '', 'Rajasthan', 243, '82338', '963063788669', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (229, '1014 Loja Manor', '', 'Tamil Nadu', 22, '66851', '460795526514', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (230, '201 Effon-Alaiye Way', '', 'Asuncin', 37, '64344', '684192903087', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (231, '430 Alessandria Loop', '', 'Saarland', 439, '47446', '669828224459', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (232, '754 Valencia Place', '', 'Phnom Penh', 406, '87911', '594319417514', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (233, '356 Olomouc Manor', '', 'Gois', 26, '93323', '22326410776', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (234, '1256 Bislig Boulevard', '', 'Botosani', 86, '50598', '479007229460', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (235, '954 Kimchon Place', '', 'West Bengali', 559, '42420', '541327526474', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (236, '885 Yingkou Manor', '', 'Kaduna', 596, '31390', '588964509072', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (237, '1736 Cavite Place', '', 'Qina', 216, '98775', '431770603551', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (238, '346 Skikda Parkway', '', 'Hawalli', 233, '90628', '630424482919', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (239, '98 Stara Zagora Boulevard', '', 'Valle', 96, '76448', '610173756082', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (240, '1479 Rustenburg Boulevard', '', 'Southern Tagalog', 527, '18727', '727785483194', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (241, '647 A Corua (La Corua) Street', '', 'Chollanam', 357, '36971', '792557457753', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (242, '1964 Gijn Manor', '', 'Karnataka', 473, '14408', '918119601885', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (243, '47 Syktyvkar Lane', '', 'West Java', 118, '22236', '63937119031', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (244, '1148 Saarbrcken Parkway', '', 'Fukushima', 226, '1921', '137773001988', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (245, '1103 Bilbays Parkway', '', 'Hubei', 578, '87660', '279979529227', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (246, '1246 Boksburg Parkway', '', 'Hebei', 422, '28349', '890283544295', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (247, '1483 Pathankot Street', '', 'Tucumn', 454, '37288', '686015532180', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (248, '582 Papeete Loop', '', 'Central Visayas', 294, '27722', '569868543137', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (249, '300 Junan Street', '', 'Kyonggi', 553, '81314', '890289150158', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (250, '829 Grand Prairie Way', '', 'Paran', 328, '6461', '741070712873', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (251, '1473 Changhwa Parkway', '', 'Mxico', 124, '75933', '266798132374', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (252, '1309 Weifang Street', '', 'Florida', 520, '57338', '435785045362', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (253, '1760 Oshawa Manor', '', 'Tianjin', 535, '38140', '56257502250', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (254, '786 Stara Zagora Way', '', 'Oyo & Osun', 390, '98332', '716256596301', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (255, '1966 Tonghae Street', '', 'Anhalt Sachsen', 198, '36481', '567359279425', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (256, '1497 Yuzhou Drive', '', 'England', 312, '3433', '246810237916', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (258, '752 Ondo Loop', '', 'Miyazaki', 338, '32474', '134673576619', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (259, '1338 Zalantun Lane', '', 'Minas Gerais', 413, '45403', '840522972766', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (260, '127 Iwakuni Boulevard', '', 'Central Luzon', 192, '20777', '987442542471', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (261, '51 Laredo Avenue', '', 'Sagaing', 342, '68146', '884536620568', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (262, '771 Yaound Manor', '', 'Sofala', 64, '86768', '245477603573', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (263, '532 Toulon Street', '', 'Santiago', 460, '69517', '46871694740', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (264, '1027 Banjul Place', '', 'West Bengali', 197, '50390', '538241037443', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (265, '1158 Mandi Bahauddin Parkway', '', 'Shanxi', 136, '98484', '276555730211', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (266, '862 Xintai Lane', '', 'Cagayan Valley', 548, '30065', '265153400632', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (267, '816 Cayenne Parkway', '', 'Manab', 414, '93629', '282874611748', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (268, '1831 Nam Dinh Loop', '', 'National Capital Reg', 323, '51990', '322888976727', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (269, '446 Kirovo-Tepetsk Lane', '', 'Osaka', 203, '19428', '303967439816', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (270, '682 Halisahar Place', '', 'Severn Morava', 378, '20536', '475553436330', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (271, '1587 Loja Manor', '', 'Salzburg', 447, '5410', '621625204422', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (272, '1762 Paarl Parkway', '', 'Hunan', 298, '53928', '192459639410', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (273, '1519 Ilorin Place', '', 'Kerala', 395, '49298', '357445645426', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (274, '920 Kumbakonam Loop', '', 'California', 446, '75090', '685010736240', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (275, '906 Goinia Way', '', 'Wielkopolskie', 255, '83565', '701767622697', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (276, '1675 Xiangfan Manor', '', 'Tamil Nadu', 283, '11763', '271149517630', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (277, '85 San Felipe de Puerto Plata Drive', '', 'Shandong', 584, '46063', '170739645687', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (278, '144 South Hill Loop', '', 'Guanajuato', 445, '2012', '45387294817', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (279, '1884 Shikarpur Avenue', '', 'Haryana', 263, '85548', '959949395183', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (280, '1980 Kamjanets-Podilskyi Street', '', 'Illinois', 404, '89502', '874337098891', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (281, '1944 Bamenda Way', '', 'Michigan', 573, '24645', '75975221996', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (282, '556 Baybay Manor', '', 'Oyo & Osun', 374, '55802', '363982224739', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (283, '457 Tongliao Loop', '', 'Bursa', 222, '56254', '880756161823', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (284, '600 Bradford Street', '', 'East Azerbaidzan', 514, '96204', '117592274996', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (285, '1006 Santa Brbara dOeste Manor', '', 'Ondo & Ekiti', 389, '36229', '85059738746', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (286, '1308 Sumy Loop', '', 'Fujian', 175, '30657', '583021225407', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (287, '1405 Chisinau Place', '', 'Ponce', 411, '8160', '62781725285', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (288, '226 Halifax Street', '', 'Xinxiang', 277, '58492', '790651020929', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (289, '1279 Udine Parkway', '', 'Edo & Delta', 69, '75860', '195003555232', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (290, '1336 Benin City Drive', '', 'Shiga', 386, '46044', '341242939532', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (291, '1155 Liaocheng Place', '', 'Oyo & Osun', 152, '22650', '558236142492', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (292, '1993 Tabuk Lane', '', 'Tamil Nadu', 522, '64221', '648482415405', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (293, '86 Higashiosaka Lane', '', 'Guanajuato', 563, '33768', '957128697225', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (294, '1912 Allende Manor', '', 'Kowloon and New Kowl', 279, '58124', '172262454487', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (295, '544 Tarsus Boulevard', '', 'Gurico', 562, '53145', '892523334', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (296, '1936 Cuman Avenue', '', 'Virginia', 433, '61195', '976798660411', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (297, '1192 Tongliao Street', '', 'Sharja', 470, '19065', '350970907017', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (298, '44 Najafabad Way', '', 'Baskimaa', 146, '61391', '96604821070', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (299, '32 Pudukkottai Lane', '', 'Ohio', 140, '38834', '967274728547', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (300, '661 Chisinau Lane', '', 'Pietari', 274, '8856', '816436065431', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (301, '951 Stara Zagora Manor', '', 'Punjab', 400, '98573', '429925609431', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (302, '922 Vila Velha Loop', '', 'Maharashtra', 9, '4085', '510737228015', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (303, '898 Jining Lane', '', 'Pohjois-Pohjanmaa', 387, '40070', '161643343536', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (304, '1635 Kuwana Boulevard', '', 'Hiroshima', 205, '52137', '710603868323', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (305, '41 El Alto Parkway', '', 'Maharashtra', 398, '56883', '51917807050', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (306, '1883 Maikop Lane', '', 'Kaliningrad', 254, '68469', '96110042435', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (307, '1908 Gaziantep Place', '', 'Liaoning', 536, '58979', '108053751300', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (308, '687 Alessandria Parkway', '', 'Sanaa', 455, '57587', '407218522294', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (309, '827 Yuncheng Drive', '', 'Callao', 99, '79047', '504434452842', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (310, '913 Coacalco de Berriozbal Loop', '', 'Texas', 33, '42141', '262088367001', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (311, '715 So Bernardo do Campo Lane', '', 'Kedah', 507, '84804', '181179321332', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (312, '1354 Siegen Street', '', 'Rio de Janeiro', 25, '80184', '573441801529', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (313, '1191 Sungai Petani Boulevard', '', 'Missouri', 262, '9668', '983259819766', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (314, '1224 Huejutla de Reyes Boulevard', '', 'Lombardia', 91, '70923', '806016930576', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (315, '543 Bergamo Avenue', '', 'Minas Gerais', 215, '59686', '103602195112', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (316, '746 Joliet Lane', '', 'Kursk', 286, '94878', '688485191923', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (317, '780 Kimberley Way', '', 'Tabuk', 515, '17032', '824396883951', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (318, '1774 Yaound Place', '', 'Hubei', 166, '91400', '613124286867', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (319, '1957 Yantai Lane', '', 'So Paulo', 490, '59255', '704948322302', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (320, '1542 Lubumbashi Boulevard', '', 'Tel Aviv', 57, '62472', '508800331065', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (321, '651 Pathankot Loop', '', 'Maharashtra', 336, '59811', '139378397418', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (322, '1359 Zhoushan Parkway', '', 'Streymoyar', 545, '29763', '46568045367', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (323, '1769 Iwaki Lane', '', 'Kujawsko-Pomorskie', 97, '25787', '556100547674', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (324, '1145 Vilnius Manor', '', 'Mxico', 451, '73170', '674805712553', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (325, '1892 Nabereznyje Telny Lane', '', 'Tutuila', 516, '28396', '478229987054', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (326, '470 Boksburg Street', '', 'Central', 81, '97960', '908029859266', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (327, '1427 A Corua (La Corua) Place', '', 'Buenos Aires', 45, '85799', '972574862516', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (328, '479 San Felipe del Progreso Avenue', '', 'Morelos', 130, '54949', '869051782691', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (329, '867 Benin City Avenue', '', 'Henan', 591, '78543', '168884817145', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (330, '981 Kumbakonam Place', '', 'Distrito Federal', 89, '87611', '829116184079', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (331, '1016 Iwakuni Street', '', 'St George', 269, '49833', '961370847344', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (332, '663 Baha Blanca Parkway', '', 'Adana', 5, '33463', '834418779292', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (333, '1860 Taguig Loop', '', 'West Java', 119, '59550', '38158430589', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (334, '1816 Bydgoszcz Loop', '', 'Dhaka', 234, '64308', '965273813662', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (335, '587 Benguela Manor', '', 'Illinois', 42, '91590', '165450987037', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (336, '430 Kumbakonam Drive', '', 'Santa F', 457, '28814', '105470691550', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (337, '1838 Tabriz Lane', '', 'Dhaka', 143, '1195', '38988715447', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (338, '431 Szkesfehrvr Avenue', '', 'Baki', 48, '57828', '119501405123', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (339, '503 Sogamoso Loop', '', 'Sumqayit', 505, '49812', '834626715837', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (340, '507 Smolensk Loop', '', 'Sousse', 492, '22971', '80303246192', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (341, '1920 Weifang Avenue', '', 'Uttar Pradesh', 427, '15643', '869507847714', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (342, '124 al-Manama Way', '', 'Hiroshima', 382, '52368', '647899404952', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (343, '1443 Mardan Street', '', 'Western Cape', 392, '31483', '231383037471', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (344, '1909 Benguela Lane', '', 'Henan', 581, '19913', '624138001031', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (345, '68 Ponce Parkway', '', 'Hanoi', 201, '85926', '870635127812', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (346, '1217 Konotop Avenue', '', 'Gelderland', 151, '504', '718917251754', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (347, '1293 Nam Dinh Way', '', 'Roraima', 84, '71583', '697656479977', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (348, '785 Vaduz Street', '', 'Baja California', 335, '36170', '895616862749', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (349, '1516 Escobar Drive', '', 'Tongatapu', 370, '46069', '64536069371', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (350, '1628 Nagareyama Lane', '', 'Central', 453, '60079', '20064292617', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (351, '1157 Nyeri Loop', '', 'Adygea', 320, '56380', '262744791493', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (352, '1673 Tangail Drive', '', 'Daugavpils', 137, '26857', '627924259271', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (353, '381 Kabul Way', '', 'Taipei', 209, '87272', '55477302294', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (354, '953 Hodeida Street', '', 'Southern Tagalog', 221, '18841', '53912826864', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (355, '469 Nakhon Sawan Street', '', 'Tuvassia', 531, '58866', '689199636560', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (356, '1378 Beira Loop', '', 'Krasnojarsk', 597, '40792', '840957664136', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (357, '1641 Changhwa Place', '', 'Nord-Ouest', 52, '37636', '256546485220', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (358, '1698 Southport Loop', '', 'Hidalgo', 393, '49009', '754358349853', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (359, '519 Nyeri Manor', '', 'So Paulo', 461, '37650', '764680915323', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (360, '619 Hunuco Avenue', '', 'Shimane', 331, '81508', '142596392389', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (361, '45 Aparecida de Goinia Place', '', 'Madhya Pradesh', 464, '7431', '650496654258', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (362, '482 Kowloon and New Kowloon Manor', '', 'Bratislava', 90, '97056', '738968474939', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (363, '604 Bern Place', '', 'Jharkhand', 429, '5373', '620719383725', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (364, '1623 Kingstown Drive', '', 'Buenos Aires', 20, '91299', '296394569728', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (365, '1009 Zanzibar Lane', '', 'Arecibo', 32, '64875', '102396298916', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (366, '114 Jalib al-Shuyukh Manor', '', 'Centre', 585, '60440', '845378657301', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (367, '1163 London Parkway', '', 'Par', 66, '6066', '675120358494', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (368, '1658 Jastrzebie-Zdrj Loop', '', 'Central', 372, '96584', '568367775448', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (369, '817 Laredo Avenue', '', 'Jalisco', 188, '77449', '151249681135', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (370, '1565 Tangail Manor', '', 'Okinawa', 377, '45750', '634445428822', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (371, '1912 Emeishan Drive', '', 'Balikesir', 50, '33050', '99883471275', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (372, '230 Urawa Drive', '', 'Andhra Pradesh', 8, '2738', '166898395731', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (373, '1922 Miraj Way', '', 'Esfahan', 356, '13203', '320471479776', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (374, '433 Florencia Street', '', 'Chihuahua', 250, '91330', '561729882725', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (375, '1049 Matamoros Parkway', '', 'Karnataka', 191, '69640', '960505250340', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (376, '1061 Ede Avenue', '', 'Southern Tagalog', 98, '57810', '333390595558', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (377, '154 Oshawa Manor', '', 'East Java', 415, '72771', '440365973660', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (378, '1191 Tandil Drive', '', 'Southern Tagalog', 523, '6362', '45554316010', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (379, '1133 Rizhao Avenue', '', 'Pernambuco', 572, '2800', '600264533987', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (380, '1519 Santiago de los Caballeros Loop', '', 'East Kasai', 348, '22025', '409315295763', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (381, '1618 Olomouc Manor', '', 'Kurgan', 285, '26385', '96846695220', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (382, '220 Hidalgo Drive', '', 'Kermanshah', 265, '45298', '342720754566', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (383, '686 Donostia-San Sebastin Lane', '', 'Guangdong', 471, '97390', '71857599858', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (384, '97 Mogiljov Lane', '', 'Gujarat', 73, '89294', '924815207181', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (385, '1642 Charlotte Amalie Drive', '', 'Slaskie', 549, '75442', '821476736117', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (386, '1368 Maracabo Boulevard', '', '', 493, '32716', '934352415130', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (387, '401 Sucre Boulevard', '', 'New Hampshire', 322, '25007', '486395999608', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (388, '368 Hunuco Boulevard', '', 'Namibe', 360, '17165', '106439158941', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (389, '500 Lincoln Parkway', '', 'Jiangsu', 210, '95509', '550306965159', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (390, '102 Chapra Drive', '', 'Ibaragi', 521, '14073', '776031833752', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (391, '1793 Meixian Place', '', 'Hmelnytskyi', 258, '33535', '619966287415', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (392, '514 Ife Way', '', 'Shaba', 315, '69973', '900235712074', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (393, '717 Changzhou Lane', '', 'Southern Tagalog', 104, '21615', '426255288071', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (394, '753 Ilorin Avenue', '', 'Sichuan', 157, '3656', '464511145118', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (395, '1337 Mit Ghamr Avenue', '', 'Nakhon Sawan', 358, '29810', '175283210378', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (396, '767 Pyongyang Drive', '', 'Osaka', 229, '83536', '667736124769', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (397, '614 Pak Kret Street', '', 'Addis Abeba', 6, '27796', '47808359842', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (398, '954 Lapu-Lapu Way', '', 'Moskova', 278, '8816', '737229003916', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (399, '331 Bydgoszcz Parkway', '', 'Asturia', 181, '966', '537374465982', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (400, '1152 Citrus Heights Manor', '', 'al-Qadarif', 15, '5239', '765957414528', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (401, '168 Cianjur Manor', '', 'Saitama', 228, '73824', '679095087143', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (402, '616 Hagonoy Avenue', '', 'Krasnojarsk', 39, '46043', '604177838256', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (403, '1190 0 Place', '', 'Rio Grande do Sul', 44, '10417', '841876514789', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (404, '734 Bchar Place', '', 'Punjab', 375, '30586', '280578750435', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (405, '530 Lausanne Lane', '', 'Texas', 135, '11067', '775235029633', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (406, '454 Patiala Lane', '', 'Fukushima', 276, '13496', '794553031307', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (407, '1346 Mysore Drive', '', 'Bretagne', 92, '61507', '516647474029', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (408, '990 Etawah Loop', '', 'Tamil Nadu', 564, '79940', '206169448769', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (409, '1266 Laredo Parkway', '', 'Saitama', 380, '7664', '1483365694', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (410, '88 Nagaon Manor', '', 'Buenos Aires', 524, '86868', '779461480495', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (411, '264 Bhimavaram Manor', '', 'St Thomas', 111, '54749', '302526949177', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (412, '1639 Saarbrcken Drive', '', 'North West', 437, '9827', '328494873422', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (413, '692 Amroha Drive', '', 'Northern', 230, '35575', '359478883004', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (414, '1936 Lapu-Lapu Parkway', '', 'Bauchi & Gombe', 141, '7122', '653436985797', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (415, '432 Garden Grove Street', '', 'Ontario', 430, '65630', '615964523510', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (416, '1445 Carmen Parkway', '', 'West Java', 117, '70809', '598912394463', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (417, '791 Salinas Street', '', 'Punjab', 208, '40509', '129953030512', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (418, '126 Acua Parkway', '', 'West Bengali', 71, '58888', '480039662421', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (419, '397 Sunnyvale Avenue', '', 'Guanajuato', 19, '55566', '680851640676', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (420, '992 Klerksdorp Loop', '', 'Utrecht', 23, '33711', '855290087237', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (421, '966 Arecibo Loop', '', 'Sind', 134, '94018', '15273765306', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (422, '289 Santo Andr Manor', '', 'al-Sharqiya', 16, '72410', '214976066017', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (423, '437 Chungho Drive', '', 'Puerto Plata', 450, '59489', '491271355190', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (424, '1948 Bayugan Parkway', '', 'Bihar', 264, '60622', '987306329957', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (425, '1866 al-Qatif Avenue', '', 'California', 155, '89420', '546793516940', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (426, '1661 Abha Drive', '', 'Tamil Nadu', 416, '14400', '270456873752', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (427, '1557 Cape Coral Parkway', '', 'Hubei', 293, '46875', '368284120423', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (428, '1727 Matamoros Place', '', 'Sawhaj', 465, '78813', '129673677866', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (429, '1269 Botosani Manor', '', 'Guangdong', 468, '47394', '736517327853', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (430, '355 Vitria de Santo Anto Way', '', 'Oaxaca', 452, '81758', '548003849552', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (431, '1596 Acua Parkway', '', 'Jharkhand', 418, '70425', '157133457169', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (432, '259 Ipoh Drive', '', 'So Paulo', 189, '64964', '419009857119', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (433, '1823 Hoshiarpur Lane', '', 'Komi', 510, '33191', '307133768620', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (434, '1404 Taguig Drive', '', 'Okayama', 547, '87212', '572068624538', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (435, '740 Udaipur Lane', '', 'Nizni Novgorod', 150, '33505', '497288595103', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (436, '287 Cuautla Boulevard', '', 'Chuquisaca', 501, '72736', '82619513349', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (437, '1766 Almirante Brown Street', '', 'KwaZulu-Natal', 364, '63104', '617567598243', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (438, '596 Huixquilucan Place', '', 'Nampula', 351, '65892', '342709348083', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (439, '1351 Aparecida de Goinia Parkway', '', 'Northern Mindanao', 391, '41775', '959834530529', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (440, '722 Bradford Lane', '', 'Shandong', 249, '90920', '746251338300', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (441, '983 Santa F Way', '', 'British Colombia', 565, '47472', '145720452260', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (442, '1245 Ibirit Way', '', 'La Romana', 290, '40926', '331888642162', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (443, '1836 Korla Parkway', '', 'Copperbelt', 272, '55405', '689681677428', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (444, '231 Kaliningrad Place', '', 'Lombardia', 70, '57833', '575081026569', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (445, '495 Bhimavaram Lane', '', 'Maharashtra', 144, '3', '82088937724', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (446, '1924 Shimonoseki Drive', '', 'Batna', 59, '52625', '406784385440', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (447, '105 Dzerzinsk Manor', '', 'Inner Mongolia', 540, '48570', '240776414296', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (448, '614 Denizli Parkway', '', 'Rio Grande do Sul', 486, '29444', '876491807547', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (449, '1289 Belm Boulevard', '', 'Tartumaa', 530, '88306', '237368926031', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (450, '203 Tambaram Street', '', 'Buenos Aires', 161, '73942', '411549550611', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (451, '1704 Tambaram Manor', '', 'West Bengali', 554, '2834', '39463554936', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (452, '207 Cuernavaca Loop', '', 'Tatarstan', 352, '52671', '782900030287', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (453, '319 Springs Loop', '', 'Baijeri', 160, '99552', '72524459905', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (454, '956 Nam Dinh Manor', '', 'Kerman', 481, '21872', '474047727727', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (455, '1947 Paarl Way', '', 'Central Java', 509, '23636', '834061016202', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (456, '814 Simferopol Loop', '', 'Sinaloa', 154, '48745', '524567129902', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (457, '535 Ahmadnagar Manor', '', 'Abu Dhabi', 3, '41136', '985109775584', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (458, '138 Caracas Boulevard', '', 'Zulia', 326, '16790', '974433019532', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (459, '251 Florencia Drive', '', 'Michoacn de Ocampo', 556, '16119', '118011831565', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (460, '659 Gatineau Boulevard', '', 'La Paz', 153, '28587', '205524798287', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (461, '1889 Valparai Way', '', 'Ziguinchor', 600, '75559', '670370974122', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (462, '1485 Bratislava Place', '', 'Illinois', 435, '83183', '924663855568', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (463, '935 Aden Boulevard', '', 'Central Java', 532, '64709', '335052544020', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (464, '76 Kermanshah Manor', '', 'Esfahan', 423, '23343', '762361821578', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (465, '734 Tanshui Avenue', '', 'Caquet', 170, '70664', '366776723320', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (466, '118 Jaffna Loop', '', 'Northern Mindanao', 182, '10447', '325526730021', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (467, '1621 Tongliao Avenue', '', 'Irkutsk', 558, '22173', '209342540247', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (468, '1844 Usak Avenue', '', 'Nova Scotia', 196, '84461', '164414772677', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (469, '1872 Toulon Loop', '', 'OHiggins', 428, '7939', '928809465153', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (470, '1088 Ibirit Place', '', 'Jalisco', 595, '88502', '49084281333', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (471, '1322 Mosul Parkway', '', 'Shandong', 145, '95400', '268053970382', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (472, '1447 Chatsworth Place', '', 'Chihuahua', 129, '41545', '769370126331', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (473, '1257 Guadalajara Street', '', 'Karnataka', 78, '33599', '195337700615', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (474, '1469 Plock Lane', '', 'Galicia', 388, '95835', '622884741180', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (475, '434 Ourense (Orense) Manor', '', 'Hodeida', 206, '14122', '562370137426', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (476, '270 Tambaram Parkway', '', 'Gauteng', 244, '9668', '248446668735', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (477, '1786 Salinas Place', '', 'Nam Ha', 359, '66546', '206060652238', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (478, '1078 Stara Zagora Drive', '', 'Aceh', 301, '69221', '932992626595', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (479, '1854 Okara Boulevard', '', 'Drenthe', 158, '42123', '131912793873', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (480, '421 Yaound Street', '', 'Sumy', 385, '11363', '726875628268', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (481, '1153 Allende Way', '', 'Qubec', 179, '20336', '856872225376', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (482, '808 Naala-Porto Parkway', '', 'England', 500, '41060', '553452430707', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (483, '632 Usolje-Sibirskoje Parkway', '', 'Ha Darom', 36, '73085', '667648979883', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (484, '98 Pyongyang Boulevard', '', 'Ohio', 11, '88749', '191958435142', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (485, '984 Novoterkassk Loop', '', 'Gaziantep', 180, '28165', '435118527255', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (486, '64 Korla Street', '', 'Mwanza', 347, '25145', '510383179153', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (487, '1785 So Bernardo do Campo Street', '', 'Veracruz', 125, '71182', '684529463244', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (488, '698 Jelets Boulevard', '', 'Denizli', 142, '2596', '975185523021', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (489, '1297 Alvorada Parkway', '', 'Ningxia', 587, '11839', '508348602835', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (490, '1909 Dayton Avenue', '', 'Guangdong', 469, '88513', '702955450528', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (491, '1789 Saint-Denis Parkway', '', 'Coahuila de Zaragoza', 4, '8268', '936806643983', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (492, '185 Mannheim Lane', '', 'Stavropol', 408, '23661', '589377568313', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (493, '184 Mandaluyong Street', '', 'Baja California Sur', 288, '94239', '488425406814', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (494, '591 Sungai Petani Drive', '', 'Okayama', 376, '46400', '37247325001', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (495, '656 Matamoros Drive', '', 'Boyac', 487, '19489', '17305839123', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (496, '775 ostka Drive', '', 'al-Daqahliya', 337, '22358', '171973024401', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (497, '1013 Tabuk Boulevard', '', 'West Bengali', 261, '96203', '158399646978', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (498, '319 Plock Parkway', '', 'Istanbul', 504, '26101', '854259976812', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (499, '1954 Kowloon and New Kowloon Way', '', 'Chimborazo', 434, '63667', '898559280434', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (500, '362 Rajkot Lane', '', 'Gansu', 47, '98030', '962020153680', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (501, '1060 Tandil Lane', '', 'Shandong', 432, '72349', '211256301880', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (502, '1515 Korla Way', '', 'England', 589, '57197', '959467760895', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (503, '1416 San Juan Bautista Tuxtepec Avenue', '', 'Zufar', 444, '50592', '144206758053', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (504, '1 Valle de Santiago Avenue', '', 'Apulia', 93, '86208', '465897838272', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (505, '519 Brescia Parkway', '', 'East Java', 318, '69504', '793996678771', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (506, '414 Mandaluyong Street', '', 'Lubelskie', 314, '16370', '52709222667', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (507, '1197 Sokoto Boulevard', '', 'West Bengali', 478, '87687', '868602816371', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (508, '496 Celaya Drive', '', 'Nagano', 552, '90797', '759586584889', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (509, '786 Matsue Way', '', 'Illinois', 245, '37469', '111177206479', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (510, '48 Maracabo Place', '', 'Central Luzon', 519, '1570', '82671830126', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (511, '1152 al-Qatif Lane', '', 'Kalimantan Barat', 412, '44816', '131370665218', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (512, '1269 Ipoh Avenue', '', 'Eskisehir', 163, '54674', '402630109080', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (513, '758 Korolev Parkway', '', 'Andhra Pradesh', 568, '75474', '441628280920', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (514, '1747 Rustenburg Place', '', 'Bihar', 110, '51369', '442673923363', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (515, '886 Tonghae Place', '', 'Volgograd', 259, '19450', '711928348157', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (516, '1574 Goinia Boulevard', '', 'Heilongjiang', 502, '39529', '59634255214', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (517, '548 Uruapan Street', '', 'Ontario', 312, '35653', '879347453467', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (519, '962 Tama Loop', '', '', 583, '65952', '282667506728', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (520, '1778 Gijn Manor', '', 'Hubei', 594, '35156', '288910576761', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (521, '568 Dhule (Dhulia) Loop', '', 'Coquimbo', 127, '92568', '602101369463', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (522, '1768 Udine Loop', '', 'Battambang', 60, '32347', '448876499197', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (523, '608 Birgunj Parkway', '', 'Taipei', 116, '400', '627425618482', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (524, '680 A Corua (La Corua) Manor', '', 'Sivas', 482, '49806', '158326114853', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (525, '1949 Sanya Street', '', 'Gumma', 224, '61244', '132100972047', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (526, '617 Klerksdorp Place', '', 'Khanh Hoa', 366, '94707', '574973479129', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (527, '1993 0 Loop', '', 'Liaoning', 588, '41214', '25865528181', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (528, '1176 Southend-on-Sea Manor', '', 'Southern Tagalog', 458, '81651', '236679267178', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (529, '600 Purnea (Purnia) Avenue', '', 'Nghe An', 571, '18043', '638409958875', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (530, '1003 Qinhuangdao Street', '', 'West Java', 419, '25972', '35533115997', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (531, '1986 Sivas Place', '', 'Friuli-Venezia Giuli', 551, '95775', '182059202712', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (532, '1427 Tabuk Place', '', 'Florida', 101, '31342', '214756839122', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (533, '556 Asuncin Way', '', 'Mogiljov', 339, '35364', '338244023543', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (534, '486 Ondo Parkway', '', 'Benguela', 67, '35202', '105882218332', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (535, '635 Brest Manor', '', 'Andhra Pradesh', 75, '40899', '80593242951', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (536, '166 Jinchang Street', '', 'Buenos Aires', 165, '86760', '717566026669', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (537, '958 Sagamihara Lane', '', 'Mie', 287, '88408', '427274926505', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (538, '1817 Livorno Way', '', 'Khanh Hoa', 100, '79401', '478380208348', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (539, '1332 Gaziantep Lane', '', 'Shandong', 80, '22813', '383353187467', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (540, '949 Allende Lane', '', 'Uttar Pradesh', 24, '67521', '122981120653', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (541, '195 Ilorin Street', '', 'Chari-Baguirmi', 363, '49250', '8912935608', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (542, '193 Bhusawal Place', '', 'Kang-won', 539, '9750', '745267607502', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (543, '43 Vilnius Manor', '', 'Colorado', 42, '79814', '484500282381', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (544, '183 Haiphong Street', '', 'Jilin', 46, '69953', '488600270038', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (545, '163 Augusta-Richmond County Loop', '', 'Carabobo', 561, '33030', '754579047924', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (546, '191 Jos Azueta Parkway', '', 'Ruse', 436, '13629', '932156667696', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (547, '379 Lublin Parkway', '', 'Toscana', 309, '74568', '921960450089', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (548, '1658 Cuman Loop', '', 'Sumatera Selatan', 396, '51309', '784907335610', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (549, '454 Qinhuangdao Drive', '', 'Tadla-Azilal', 68, '25866', '786270036240', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (550, '1715 Okayama Street', '', 'So Paulo', 485, '55676', '169352919175', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (551, '182 Nukualofa Drive', '', 'Sumy', 275, '15414', '426346224043', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (552, '390 Wroclaw Way', '', 'Hainan', 462, '5753', '357593328658', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (553, '1421 Quilmes Lane', '', 'Ishikawa', 260, '19151', '135407755975', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (554, '947 Trshavn Place', '', 'Central Luzon', 528, '841', '50898428626', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (555, '1764 Jalib al-Shuyukh Parkway', '', 'Galicia', 459, '77642', '84794532510', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (556, '346 Cam Ranh Avenue', '', 'Zhejiang', 599, '39976', '978430786151', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (557, '1407 Pachuca de Soto Place', '', 'Rio Grande do Sul', 21, '26284', '380077794770', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (558, '904 Clarksville Drive', '', 'Zhejiang', 193, '52234', '955349440539', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (559, '1917 Kumbakonam Parkway', '', 'Vojvodina', 368, '11892', '698182547686', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (560, '1447 Imus Place', '', 'Gujarat', 426, '12905', '62127829280', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (561, '1497 Fengshan Drive', '', 'KwaZulu-Natal', 112, '63022', '368738360376', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (562, '869 Shikarpur Way', '', 'England', 496, '57380', '590764256785', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (563, '1059 Yuncheng Avenue', '', 'Vilna', 570, '47498', '107092893983', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (564, '505 Madiun Boulevard', '', 'Dolnoslaskie', 577, '97271', '970638808606', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (565, '1741 Hoshiarpur Boulevard', '', 'al-Sharqiya', 79, '22372', '855066328617', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (566, '1229 Varanasi (Benares) Manor', '', 'Buenos Aires', 43, '40195', '817740355461', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (567, '1894 Boa Vista Way', '', 'Texas', 178, '77464', '239357986667', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (568, '1342 Sharja Way', '', 'Sokoto & Kebbi & Zam', 488, '93655', '946114054231', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (569, '1342 Abha Boulevard', '', 'Bukarest', 95, '10714', '997453607116', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (570, '415 Pune Avenue', '', 'Shandong', 580, '44274', '203202500108', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (571, '1746 Faaa Way', '', 'Huanuco', 214, '32515', '863080561151', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (572, '539 Hami Way', '', 'Tokat', 538, '52196', '525518075499', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (573, '1407 Surakarta Manor', '', 'Moskova', 466, '33224', '324346485054', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (574, '502 Mandi Bahauddin Parkway', '', 'Anzotegui', 55, '15992', '618156722572', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (575, '1052 Pathankot Avenue', '', 'Sichuan', 299, '77397', '128499386727', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (576, '1351 Sousse Lane', '', 'Coahuila de Zaragoza', 341, '37815', '203804046132', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (577, '1501 Pangkal Pinang Avenue', '', 'Mazowieckie', 409, '943', '770864062795', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (578, '1405 Hagonoy Avenue', '', 'Slaskie', 133, '86587', '867287719310', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (579, '521 San Juan Bautista Tuxtepec Place', '', 'Qaraghandy', 598, '95093', '844018348565', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (580, '923 Tangail Boulevard', '', 'Tokyo-to', 10, '33384', '315528269898', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (581, '186 Skikda Lane', '', 'Morelos', 131, '89422', '14465669789', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (582, '1568 Celaya Parkway', '', 'Kaohsiung', 168, '34750', '278669994384', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (583, '1489 Kakamigahara Lane', '', 'Taipei', 526, '98883', '29341849811', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (584, '1819 Alessandria Loop', '', 'Campeche', 103, '53829', '377633994405', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (585, '1208 Tama Loop', '', 'Ninawa', 344, '73605', '954786054144', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (586, '951 Springs Lane', '', 'Central Mindanao', 219, '96115', '165164761435', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (587, '760 Miyakonojo Drive', '', 'Guerrero', 246, '64682', '294449058179', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (588, '966 Asuncin Way', '', 'Hidalgo', 212, '62703', '995527378381', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (589, '1584 Ljubertsy Lane', '', 'England', 494, '22954', '285710089439', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (590, '247 Jining Parkway', '', 'Banjul', 54, '53446', '170115379190', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (591, '773 Dallas Manor', '', 'Buenos Aires', 424, '12664', '914466027044', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (592, '1923 Stara Zagora Lane', '', 'Nantou', 546, '95179', '182178609211', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (593, '1402 Zanzibar Boulevard', '', 'Guanajuato', 106, '71102', '387448063440', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (594, '1464 Kursk Parkway', '', 'Shandong', 574, '17381', '338758048786', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (595, '1074 Sanaa Parkway', '', 'Loja', 311, '22474', '154124128457', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (596, '1759 Niznekamsk Avenue', '', 'al-Manama', 14, '39414', '864392582257', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (597, '32 Liaocheng Way', '', 'Minas Gerais', 248, '1944', '410877354933', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (598, '42 Fontana Avenue', '', 'Fejr', 512, '14684', '437829801725', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (599, '1895 Zhezqazghan Drive', '', 'California', 177, '36693', '137809746111', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (600, '1837 Kaduna Parkway', '', 'Inner Mongolia', 241, '82580', '640843562301', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (601, '844 Bucuresti Place', '', 'Liaoning', 242, '36603', '935952366111', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (602, '1101 Bucuresti Boulevard', '', 'West Greece', 401, '97661', '199514580428', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (603, '1103 Quilmes Boulevard', '', 'Piura', 503, '52137', '644021380889', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (604, '1331 Usak Boulevard', '', 'Vaud', 296, '61960', '145308717464', '2006-02-15 09:45:30'); -INSERT INTO dvds.address VALUES (605, '1325 Fukuyama Street', '', 'Heilongjiang', 537, '27107', '288241215394', '2006-02-15 09:45:30'); - - --- --- TOC entry 3316 (class 0 OID 16427) --- Dependencies: 202 --- Data for Name: category; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.category VALUES (1, 'Action', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (2, 'Animation', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (3, 'Children', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (4, 'Classics', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (5, 'Comedy', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (6, 'Documentary', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (7, 'Drama', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (8, 'Family', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (9, 'Foreign', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (10, 'Games', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (11, 'Horror', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (12, 'Music', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (13, 'New', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (14, 'Sci-Fi', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (15, 'Sports', '2006-02-15 09:46:27'); -INSERT INTO dvds.category VALUES (16, 'Travel', '2006-02-15 09:46:27'); - - --- --- TOC entry 3324 (class 0 OID 16468) --- Dependencies: 211 --- Data for Name: city; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.city VALUES (1, 'A Corua (La Corua)', 87, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (2, 'Abha', 82, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (3, 'Abu Dhabi', 101, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (4, 'Acua', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (5, 'Adana', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (6, 'Addis Abeba', 31, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (7, 'Aden', 107, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (8, 'Adoni', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (9, 'Ahmadnagar', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (10, 'Akishima', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (11, 'Akron', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (12, 'al-Ayn', 101, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (13, 'al-Hawiya', 82, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (14, 'al-Manama', 11, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (15, 'al-Qadarif', 89, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (16, 'al-Qatif', 82, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (17, 'Alessandria', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (18, 'Allappuzha (Alleppey)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (19, 'Allende', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (20, 'Almirante Brown', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (21, 'Alvorada', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (22, 'Ambattur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (23, 'Amersfoort', 67, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (24, 'Amroha', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (25, 'Angra dos Reis', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (26, 'Anpolis', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (27, 'Antofagasta', 22, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (28, 'Aparecida de Goinia', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (29, 'Apeldoorn', 67, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (30, 'Araatuba', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (31, 'Arak', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (32, 'Arecibo', 77, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (33, 'Arlington', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (34, 'Ashdod', 48, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (35, 'Ashgabat', 98, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (36, 'Ashqelon', 48, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (37, 'Asuncin', 73, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (38, 'Athenai', 39, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (39, 'Atinsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (40, 'Atlixco', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (41, 'Augusta-Richmond County', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (42, 'Aurora', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (43, 'Avellaneda', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (44, 'Bag', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (45, 'Baha Blanca', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (46, 'Baicheng', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (47, 'Baiyin', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (48, 'Baku', 10, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (49, 'Balaiha', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (50, 'Balikesir', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (51, 'Balurghat', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (52, 'Bamenda', 19, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (53, 'Bandar Seri Begawan', 16, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (54, 'Banjul', 37, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (55, 'Barcelona', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (56, 'Basel', 91, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (57, 'Bat Yam', 48, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (58, 'Batman', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (59, 'Batna', 2, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (60, 'Battambang', 18, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (61, 'Baybay', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (62, 'Bayugan', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (63, 'Bchar', 2, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (64, 'Beira', 63, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (65, 'Bellevue', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (66, 'Belm', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (67, 'Benguela', 4, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (68, 'Beni-Mellal', 62, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (69, 'Benin City', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (70, 'Bergamo', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (71, 'Berhampore (Baharampur)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (72, 'Bern', 91, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (73, 'Bhavnagar', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (74, 'Bhilwara', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (75, 'Bhimavaram', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (76, 'Bhopal', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (77, 'Bhusawal', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (78, 'Bijapur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (79, 'Bilbays', 29, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (80, 'Binzhou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (81, 'Birgunj', 66, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (82, 'Bislig', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (83, 'Blumenau', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (84, 'Boa Vista', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (85, 'Boksburg', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (86, 'Botosani', 78, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (87, 'Botshabelo', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (88, 'Bradford', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (89, 'Braslia', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (90, 'Bratislava', 84, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (91, 'Brescia', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (92, 'Brest', 34, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (93, 'Brindisi', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (94, 'Brockton', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (95, 'Bucuresti', 78, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (96, 'Buenaventura', 24, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (97, 'Bydgoszcz', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (98, 'Cabuyao', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (99, 'Callao', 74, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (100, 'Cam Ranh', 105, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (101, 'Cape Coral', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (102, 'Caracas', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (103, 'Carmen', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (104, 'Cavite', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (105, 'Cayenne', 35, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (106, 'Celaya', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (107, 'Chandrapur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (108, 'Changhwa', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (109, 'Changzhou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (110, 'Chapra', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (111, 'Charlotte Amalie', 106, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (112, 'Chatsworth', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (113, 'Cheju', 86, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (114, 'Chiayi', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (115, 'Chisinau', 61, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (116, 'Chungho', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (117, 'Cianjur', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (118, 'Ciomas', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (119, 'Ciparay', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (120, 'Citrus Heights', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (121, 'Citt del Vaticano', 41, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (122, 'Ciudad del Este', 73, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (123, 'Clarksville', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (124, 'Coacalco de Berriozbal', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (125, 'Coatzacoalcos', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (126, 'Compton', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (127, 'Coquimbo', 22, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (128, 'Crdoba', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (129, 'Cuauhtmoc', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (130, 'Cuautla', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (131, 'Cuernavaca', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (132, 'Cuman', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (133, 'Czestochowa', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (134, 'Dadu', 72, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (135, 'Dallas', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (136, 'Datong', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (137, 'Daugavpils', 54, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (138, 'Davao', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (139, 'Daxian', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (140, 'Dayton', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (141, 'Deba Habe', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (142, 'Denizli', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (143, 'Dhaka', 12, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (144, 'Dhule (Dhulia)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (145, 'Dongying', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (146, 'Donostia-San Sebastin', 87, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (147, 'Dos Quebradas', 24, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (148, 'Duisburg', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (149, 'Dundee', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (150, 'Dzerzinsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (151, 'Ede', 67, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (152, 'Effon-Alaiye', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (153, 'El Alto', 14, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (154, 'El Fuerte', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (155, 'El Monte', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (156, 'Elista', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (157, 'Emeishan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (158, 'Emmen', 67, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (159, 'Enshi', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (160, 'Erlangen', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (161, 'Escobar', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (162, 'Esfahan', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (163, 'Eskisehir', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (164, 'Etawah', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (165, 'Ezeiza', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (166, 'Ezhou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (167, 'Faaa', 36, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (168, 'Fengshan', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (169, 'Firozabad', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (170, 'Florencia', 24, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (171, 'Fontana', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (172, 'Fukuyama', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (173, 'Funafuti', 99, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (174, 'Fuyu', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (175, 'Fuzhou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (176, 'Gandhinagar', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (177, 'Garden Grove', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (178, 'Garland', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (179, 'Gatineau', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (180, 'Gaziantep', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (181, 'Gijn', 87, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (182, 'Gingoog', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (183, 'Goinia', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (184, 'Gorontalo', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (185, 'Grand Prairie', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (186, 'Graz', 9, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (187, 'Greensboro', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (188, 'Guadalajara', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (189, 'Guaruj', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (190, 'guas Lindas de Gois', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (191, 'Gulbarga', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (192, 'Hagonoy', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (193, 'Haining', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (194, 'Haiphong', 105, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (195, 'Haldia', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (196, 'Halifax', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (197, 'Halisahar', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (198, 'Halle/Saale', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (199, 'Hami', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (200, 'Hamilton', 68, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (201, 'Hanoi', 105, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (202, 'Hidalgo', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (203, 'Higashiosaka', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (204, 'Hino', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (205, 'Hiroshima', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (206, 'Hodeida', 107, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (207, 'Hohhot', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (208, 'Hoshiarpur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (209, 'Hsichuh', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (210, 'Huaian', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (211, 'Hubli-Dharwad', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (212, 'Huejutla de Reyes', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (213, 'Huixquilucan', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (214, 'Hunuco', 74, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (215, 'Ibirit', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (216, 'Idfu', 29, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (217, 'Ife', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (218, 'Ikerre', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (219, 'Iligan', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (220, 'Ilorin', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (221, 'Imus', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (222, 'Inegl', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (223, 'Ipoh', 59, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (224, 'Isesaki', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (225, 'Ivanovo', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (226, 'Iwaki', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (227, 'Iwakuni', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (228, 'Iwatsuki', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (229, 'Izumisano', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (230, 'Jaffna', 88, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (231, 'Jaipur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (232, 'Jakarta', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (233, 'Jalib al-Shuyukh', 53, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (234, 'Jamalpur', 12, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (235, 'Jaroslavl', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (236, 'Jastrzebie-Zdrj', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (237, 'Jedda', 82, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (238, 'Jelets', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (239, 'Jhansi', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (240, 'Jinchang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (241, 'Jining', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (242, 'Jinzhou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (243, 'Jodhpur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (244, 'Johannesburg', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (245, 'Joliet', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (246, 'Jos Azueta', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (247, 'Juazeiro do Norte', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (248, 'Juiz de Fora', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (249, 'Junan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (250, 'Jurez', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (251, 'Kabul', 1, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (252, 'Kaduna', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (253, 'Kakamigahara', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (254, 'Kaliningrad', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (255, 'Kalisz', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (256, 'Kamakura', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (257, 'Kamarhati', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (258, 'Kamjanets-Podilskyi', 100, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (259, 'Kamyin', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (260, 'Kanazawa', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (261, 'Kanchrapara', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (262, 'Kansas City', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (263, 'Karnal', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (264, 'Katihar', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (265, 'Kermanshah', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (266, 'Kilis', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (267, 'Kimberley', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (268, 'Kimchon', 86, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (269, 'Kingstown', 81, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (270, 'Kirovo-Tepetsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (271, 'Kisumu', 52, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (272, 'Kitwe', 109, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (273, 'Klerksdorp', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (274, 'Kolpino', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (275, 'Konotop', 100, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (276, 'Koriyama', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (277, 'Korla', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (278, 'Korolev', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (279, 'Kowloon and New Kowloon', 42, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (280, 'Kragujevac', 108, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (281, 'Ktahya', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (282, 'Kuching', 59, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (283, 'Kumbakonam', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (284, 'Kurashiki', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (285, 'Kurgan', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (286, 'Kursk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (287, 'Kuwana', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (288, 'La Paz', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (289, 'La Plata', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (290, 'La Romana', 27, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (291, 'Laiwu', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (292, 'Lancaster', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (293, 'Laohekou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (294, 'Lapu-Lapu', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (295, 'Laredo', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (296, 'Lausanne', 91, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (297, 'Le Mans', 34, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (298, 'Lengshuijiang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (299, 'Leshan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (300, 'Lethbridge', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (301, 'Lhokseumawe', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (302, 'Liaocheng', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (303, 'Liepaja', 54, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (304, 'Lilongwe', 58, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (305, 'Lima', 74, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (306, 'Lincoln', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (307, 'Linz', 9, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (308, 'Lipetsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (309, 'Livorno', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (310, 'Ljubertsy', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (311, 'Loja', 28, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (312, 'London', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (313, 'London', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (314, 'Lublin', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (315, 'Lubumbashi', 25, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (316, 'Lungtan', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (317, 'Luzinia', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (318, 'Madiun', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (319, 'Mahajanga', 57, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (320, 'Maikop', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (321, 'Malm', 90, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (322, 'Manchester', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (323, 'Mandaluyong', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (324, 'Mandi Bahauddin', 72, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (325, 'Mannheim', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (326, 'Maracabo', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (327, 'Mardan', 72, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (328, 'Maring', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (329, 'Masqat', 71, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (330, 'Matamoros', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (331, 'Matsue', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (332, 'Meixian', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (333, 'Memphis', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (334, 'Merlo', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (335, 'Mexicali', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (336, 'Miraj', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (337, 'Mit Ghamr', 29, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (338, 'Miyakonojo', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (339, 'Mogiljov', 13, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (340, 'Molodetno', 13, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (341, 'Monclova', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (342, 'Monywa', 64, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (343, 'Moscow', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (344, 'Mosul', 47, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (345, 'Mukateve', 100, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (346, 'Munger (Monghyr)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (347, 'Mwanza', 93, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (348, 'Mwene-Ditu', 25, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (349, 'Myingyan', 64, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (350, 'Mysore', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (351, 'Naala-Porto', 63, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (352, 'Nabereznyje Telny', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (353, 'Nador', 62, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (354, 'Nagaon', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (355, 'Nagareyama', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (356, 'Najafabad', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (357, 'Naju', 86, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (358, 'Nakhon Sawan', 94, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (359, 'Nam Dinh', 105, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (360, 'Namibe', 4, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (361, 'Nantou', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (362, 'Nanyang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (363, 'NDjamna', 21, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (364, 'Newcastle', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (365, 'Nezahualcyotl', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (366, 'Nha Trang', 105, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (367, 'Niznekamsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (368, 'Novi Sad', 108, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (369, 'Novoterkassk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (370, 'Nukualofa', 95, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (371, 'Nuuk', 40, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (372, 'Nyeri', 52, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (373, 'Ocumare del Tuy', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (374, 'Ogbomosho', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (375, 'Okara', 72, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (376, 'Okayama', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (377, 'Okinawa', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (378, 'Olomouc', 26, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (379, 'Omdurman', 89, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (380, 'Omiya', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (381, 'Ondo', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (382, 'Onomichi', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (383, 'Oshawa', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (384, 'Osmaniye', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (385, 'ostka', 100, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (386, 'Otsu', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (387, 'Oulu', 33, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (388, 'Ourense (Orense)', 87, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (389, 'Owo', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (390, 'Oyo', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (391, 'Ozamis', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (392, 'Paarl', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (393, 'Pachuca de Soto', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (394, 'Pak Kret', 94, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (395, 'Palghat (Palakkad)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (396, 'Pangkal Pinang', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (397, 'Papeete', 36, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (398, 'Parbhani', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (399, 'Pathankot', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (400, 'Patiala', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (401, 'Patras', 39, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (402, 'Pavlodar', 51, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (403, 'Pemalang', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (404, 'Peoria', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (405, 'Pereira', 24, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (406, 'Phnom Penh', 18, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (407, 'Pingxiang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (408, 'Pjatigorsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (409, 'Plock', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (410, 'Po', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (411, 'Ponce', 77, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (412, 'Pontianak', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (413, 'Poos de Caldas', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (414, 'Portoviejo', 28, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (415, 'Probolinggo', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (416, 'Pudukkottai', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (417, 'Pune', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (418, 'Purnea (Purnia)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (419, 'Purwakarta', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (420, 'Pyongyang', 70, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (421, 'Qalyub', 29, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (422, 'Qinhuangdao', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (423, 'Qomsheh', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (424, 'Quilmes', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (425, 'Rae Bareli', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (426, 'Rajkot', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (427, 'Rampur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (428, 'Rancagua', 22, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (429, 'Ranchi', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (430, 'Richmond Hill', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (431, 'Rio Claro', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (432, 'Rizhao', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (433, 'Roanoke', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (434, 'Robamba', 28, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (435, 'Rockford', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (436, 'Ruse', 17, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (437, 'Rustenburg', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (438, 's-Hertogenbosch', 67, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (439, 'Saarbrcken', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (440, 'Sagamihara', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (441, 'Saint Louis', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (442, 'Saint-Denis', 79, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (443, 'Sal', 62, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (444, 'Salala', 71, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (445, 'Salamanca', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (446, 'Salinas', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (447, 'Salzburg', 9, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (448, 'Sambhal', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (449, 'San Bernardino', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (450, 'San Felipe de Puerto Plata', 27, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (451, 'San Felipe del Progreso', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (452, 'San Juan Bautista Tuxtepec', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (453, 'San Lorenzo', 73, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (454, 'San Miguel de Tucumn', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (455, 'Sanaa', 107, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (456, 'Santa Brbara dOeste', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (457, 'Santa F', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (458, 'Santa Rosa', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (459, 'Santiago de Compostela', 87, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (460, 'Santiago de los Caballeros', 27, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (461, 'Santo Andr', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (462, 'Sanya', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (463, 'Sasebo', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (464, 'Satna', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (465, 'Sawhaj', 29, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (466, 'Serpuhov', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (467, 'Shahr-e Kord', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (468, 'Shanwei', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (469, 'Shaoguan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (470, 'Sharja', 101, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (471, 'Shenzhen', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (472, 'Shikarpur', 72, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (473, 'Shimoga', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (474, 'Shimonoseki', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (475, 'Shivapuri', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (476, 'Shubra al-Khayma', 29, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (477, 'Siegen', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (478, 'Siliguri (Shiliguri)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (479, 'Simferopol', 100, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (480, 'Sincelejo', 24, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (481, 'Sirjan', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (482, 'Sivas', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (483, 'Skikda', 2, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (484, 'Smolensk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (485, 'So Bernardo do Campo', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (486, 'So Leopoldo', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (487, 'Sogamoso', 24, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (488, 'Sokoto', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (489, 'Songkhla', 94, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (490, 'Sorocaba', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (491, 'Soshanguve', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (492, 'Sousse', 96, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (493, 'South Hill', 5, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (494, 'Southampton', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (495, 'Southend-on-Sea', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (496, 'Southport', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (497, 'Springs', 85, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (498, 'Stara Zagora', 17, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (499, 'Sterling Heights', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (500, 'Stockport', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (501, 'Sucre', 14, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (502, 'Suihua', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (503, 'Sullana', 74, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (504, 'Sultanbeyli', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (505, 'Sumqayit', 10, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (506, 'Sumy', 100, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (507, 'Sungai Petani', 59, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (508, 'Sunnyvale', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (509, 'Surakarta', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (510, 'Syktyvkar', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (511, 'Syrakusa', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (512, 'Szkesfehrvr', 43, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (513, 'Tabora', 93, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (514, 'Tabriz', 46, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (515, 'Tabuk', 82, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (516, 'Tafuna', 3, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (517, 'Taguig', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (518, 'Taizz', 107, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (519, 'Talavera', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (520, 'Tallahassee', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (521, 'Tama', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (522, 'Tambaram', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (523, 'Tanauan', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (524, 'Tandil', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (525, 'Tangail', 12, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (526, 'Tanshui', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (527, 'Tanza', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (528, 'Tarlac', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (529, 'Tarsus', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (530, 'Tartu', 30, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (531, 'Teboksary', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (532, 'Tegal', 45, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (533, 'Tel Aviv-Jaffa', 48, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (534, 'Tete', 63, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (535, 'Tianjin', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (536, 'Tiefa', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (537, 'Tieli', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (538, 'Tokat', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (539, 'Tonghae', 86, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (540, 'Tongliao', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (541, 'Torren', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (542, 'Touliu', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (543, 'Toulon', 34, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (544, 'Toulouse', 34, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (545, 'Trshavn', 32, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (546, 'Tsaotun', 92, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (547, 'Tsuyama', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (548, 'Tuguegarao', 75, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (549, 'Tychy', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (550, 'Udaipur', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (551, 'Udine', 49, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (552, 'Ueda', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (553, 'Uijongbu', 86, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (554, 'Uluberia', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (555, 'Urawa', 50, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (556, 'Uruapan', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (557, 'Usak', 97, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (558, 'Usolje-Sibirskoje', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (559, 'Uttarpara-Kotrung', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (560, 'Vaduz', 55, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (561, 'Valencia', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (562, 'Valle de la Pascua', 104, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (563, 'Valle de Santiago', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (564, 'Valparai', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (565, 'Vancouver', 20, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (566, 'Varanasi (Benares)', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (567, 'Vicente Lpez', 6, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (568, 'Vijayawada', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (569, 'Vila Velha', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (570, 'Vilnius', 56, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (571, 'Vinh', 105, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (572, 'Vitria de Santo Anto', 15, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (573, 'Warren', 103, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (574, 'Weifang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (575, 'Witten', 38, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (576, 'Woodridge', 8, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (577, 'Wroclaw', 76, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (578, 'Xiangfan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (579, 'Xiangtan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (580, 'Xintai', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (581, 'Xinxiang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (582, 'Yamuna Nagar', 44, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (583, 'Yangor', 65, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (584, 'Yantai', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (585, 'Yaound', 19, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (586, 'Yerevan', 7, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (587, 'Yinchuan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (588, 'Yingkou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (589, 'York', 102, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (590, 'Yuncheng', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (591, 'Yuzhou', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (592, 'Zalantun', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (593, 'Zanzibar', 93, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (594, 'Zaoyang', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (595, 'Zapopan', 60, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (596, 'Zaria', 69, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (597, 'Zeleznogorsk', 80, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (598, 'Zhezqazghan', 51, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (599, 'Zhoushan', 23, '2006-02-15 09:45:25'); -INSERT INTO dvds.city VALUES (600, 'Ziguinchor', 83, '2006-02-15 09:45:25'); - - --- --- TOC entry 3326 (class 0 OID 16475) --- Dependencies: 213 --- Data for Name: country; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.country VALUES (1, 'Afghanistan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (2, 'Algeria', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (3, 'American Samoa', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (4, 'Angola', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (5, 'Anguilla', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (6, 'Argentina', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (7, 'Armenia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (8, 'Australia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (9, 'Austria', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (10, 'Azerbaijan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (11, 'Bahrain', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (12, 'Bangladesh', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (13, 'Belarus', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (14, 'Bolivia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (15, 'Brazil', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (16, 'Brunei', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (17, 'Bulgaria', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (18, 'Cambodia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (19, 'Cameroon', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (20, 'Canada', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (21, 'Chad', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (22, 'Chile', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (23, 'China', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (24, 'Colombia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (25, 'Congo, The Democratic Republic of the', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (26, 'Czech Republic', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (27, 'Dominican Republic', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (28, 'Ecuador', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (29, 'Egypt', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (30, 'Estonia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (31, 'Ethiopia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (32, 'Faroe Islands', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (33, 'Finland', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (34, 'France', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (35, 'French Guiana', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (36, 'French Polynesia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (37, 'Gambia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (38, 'Germany', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (39, 'Greece', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (40, 'Greenland', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (41, 'Holy See (Vatican City State)', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (42, 'Hong Kong', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (43, 'Hungary', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (44, 'India', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (45, 'Indonesia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (46, 'Iran', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (47, 'Iraq', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (48, 'Israel', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (49, 'Italy', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (50, 'Japan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (51, 'Kazakstan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (52, 'Kenya', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (53, 'Kuwait', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (54, 'Latvia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (55, 'Liechtenstein', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (56, 'Lithuania', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (57, 'Madagascar', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (58, 'Malawi', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (59, 'Malaysia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (60, 'Mexico', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (61, 'Moldova', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (62, 'Morocco', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (63, 'Mozambique', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (64, 'Myanmar', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (65, 'Nauru', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (66, 'Nepal', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (67, 'Netherlands', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (68, 'New Zealand', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (69, 'Nigeria', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (70, 'North Korea', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (71, 'Oman', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (72, 'Pakistan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (73, 'Paraguay', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (74, 'Peru', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (75, 'Philippines', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (76, 'Poland', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (77, 'Puerto Rico', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (78, 'Romania', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (79, 'Runion', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (80, 'Russian Federation', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (81, 'Saint Vincent and the Grenadines', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (82, 'Saudi Arabia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (83, 'Senegal', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (84, 'Slovakia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (85, 'South Africa', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (86, 'South Korea', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (87, 'Spain', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (88, 'Sri Lanka', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (89, 'Sudan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (90, 'Sweden', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (91, 'Switzerland', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (92, 'Taiwan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (93, 'Tanzania', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (94, 'Thailand', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (95, 'Tonga', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (96, 'Tunisia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (97, 'Turkey', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (98, 'Turkmenistan', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (99, 'Tuvalu', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (100, 'Ukraine', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (101, 'United Arab Emirates', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (102, 'United Kingdom', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (103, 'United States', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (104, 'Venezuela', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (105, 'Vietnam', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (106, 'Virgin Islands, U.S.', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (107, 'Yemen', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (108, 'Yugoslavia', '2006-02-15 09:44:00'); -INSERT INTO dvds.country VALUES (109, 'Zambia', '2006-02-15 09:44:00'); - - --- --- TOC entry 3312 (class 0 OID 16409) --- Dependencies: 198 --- Data for Name: customer; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.customer VALUES (524, 1, 'Jared', 'Ely', 'jared.ely@sakilacustomer.org', 530, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (1, 1, 'Mary', 'Smith', 'mary.smith@sakilacustomer.org', 5, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (2, 1, 'Patricia', 'Johnson', 'patricia.johnson@sakilacustomer.org', 6, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (3, 1, 'Linda', 'Williams', 'linda.williams@sakilacustomer.org', 7, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (4, 2, 'Barbara', 'Jones', 'barbara.jones@sakilacustomer.org', 8, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (5, 1, 'Elizabeth', 'Brown', 'elizabeth.brown@sakilacustomer.org', 9, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (6, 2, 'Jennifer', 'Davis', 'jennifer.davis@sakilacustomer.org', 10, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (7, 1, 'Maria', 'Miller', 'maria.miller@sakilacustomer.org', 11, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (8, 2, 'Susan', 'Wilson', 'susan.wilson@sakilacustomer.org', 12, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (9, 2, 'Margaret', 'Moore', 'margaret.moore@sakilacustomer.org', 13, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (10, 1, 'Dorothy', 'Taylor', 'dorothy.taylor@sakilacustomer.org', 14, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (11, 2, 'Lisa', 'Anderson', 'lisa.anderson@sakilacustomer.org', 15, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (12, 1, 'Nancy', 'Thomas', 'nancy.thomas@sakilacustomer.org', 16, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (13, 2, 'Karen', 'Jackson', 'karen.jackson@sakilacustomer.org', 17, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (14, 2, 'Betty', 'White', 'betty.white@sakilacustomer.org', 18, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (15, 1, 'Helen', 'Harris', 'helen.harris@sakilacustomer.org', 19, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (16, 2, 'Sandra', 'Martin', 'sandra.martin@sakilacustomer.org', 20, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (17, 1, 'Donna', 'Thompson', 'donna.thompson@sakilacustomer.org', 21, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (18, 2, 'Carol', 'Garcia', 'carol.garcia@sakilacustomer.org', 22, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (19, 1, 'Ruth', 'Martinez', 'ruth.martinez@sakilacustomer.org', 23, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (20, 2, 'Sharon', 'Robinson', 'sharon.robinson@sakilacustomer.org', 24, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (21, 1, 'Michelle', 'Clark', 'michelle.clark@sakilacustomer.org', 25, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (22, 1, 'Laura', 'Rodriguez', 'laura.rodriguez@sakilacustomer.org', 26, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (23, 2, 'Sarah', 'Lewis', 'sarah.lewis@sakilacustomer.org', 27, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (24, 2, 'Kimberly', 'Lee', 'kimberly.lee@sakilacustomer.org', 28, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (25, 1, 'Deborah', 'Walker', 'deborah.walker@sakilacustomer.org', 29, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (26, 2, 'Jessica', 'Hall', 'jessica.hall@sakilacustomer.org', 30, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (27, 2, 'Shirley', 'Allen', 'shirley.allen@sakilacustomer.org', 31, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (28, 1, 'Cynthia', 'Young', 'cynthia.young@sakilacustomer.org', 32, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (29, 2, 'Angela', 'Hernandez', 'angela.hernandez@sakilacustomer.org', 33, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (30, 1, 'Melissa', 'King', 'melissa.king@sakilacustomer.org', 34, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (31, 2, 'Brenda', 'Wright', 'brenda.wright@sakilacustomer.org', 35, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (32, 1, 'Amy', 'Lopez', 'amy.lopez@sakilacustomer.org', 36, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (33, 2, 'Anna', 'Hill', 'anna.hill@sakilacustomer.org', 37, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (34, 2, 'Rebecca', 'Scott', 'rebecca.scott@sakilacustomer.org', 38, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (35, 2, 'Virginia', 'Green', 'virginia.green@sakilacustomer.org', 39, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (36, 2, 'Kathleen', 'Adams', 'kathleen.adams@sakilacustomer.org', 40, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (37, 1, 'Pamela', 'Baker', 'pamela.baker@sakilacustomer.org', 41, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (38, 1, 'Martha', 'Gonzalez', 'martha.gonzalez@sakilacustomer.org', 42, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (39, 1, 'Debra', 'Nelson', 'debra.nelson@sakilacustomer.org', 43, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (40, 2, 'Amanda', 'Carter', 'amanda.carter@sakilacustomer.org', 44, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (41, 1, 'Stephanie', 'Mitchell', 'stephanie.mitchell@sakilacustomer.org', 45, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (42, 2, 'Carolyn', 'Perez', 'carolyn.perez@sakilacustomer.org', 46, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (43, 2, 'Christine', 'Roberts', 'christine.roberts@sakilacustomer.org', 47, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (44, 1, 'Marie', 'Turner', 'marie.turner@sakilacustomer.org', 48, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (45, 1, 'Janet', 'Phillips', 'janet.phillips@sakilacustomer.org', 49, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (46, 2, 'Catherine', 'Campbell', 'catherine.campbell@sakilacustomer.org', 50, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (47, 1, 'Frances', 'Parker', 'frances.parker@sakilacustomer.org', 51, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (48, 1, 'Ann', 'Evans', 'ann.evans@sakilacustomer.org', 52, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (49, 2, 'Joyce', 'Edwards', 'joyce.edwards@sakilacustomer.org', 53, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (50, 1, 'Diane', 'Collins', 'diane.collins@sakilacustomer.org', 54, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (51, 1, 'Alice', 'Stewart', 'alice.stewart@sakilacustomer.org', 55, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (52, 1, 'Julie', 'Sanchez', 'julie.sanchez@sakilacustomer.org', 56, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (53, 1, 'Heather', 'Morris', 'heather.morris@sakilacustomer.org', 57, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (54, 1, 'Teresa', 'Rogers', 'teresa.rogers@sakilacustomer.org', 58, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (55, 2, 'Doris', 'Reed', 'doris.reed@sakilacustomer.org', 59, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (56, 1, 'Gloria', 'Cook', 'gloria.cook@sakilacustomer.org', 60, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (57, 2, 'Evelyn', 'Morgan', 'evelyn.morgan@sakilacustomer.org', 61, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (58, 1, 'Jean', 'Bell', 'jean.bell@sakilacustomer.org', 62, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (59, 1, 'Cheryl', 'Murphy', 'cheryl.murphy@sakilacustomer.org', 63, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (60, 1, 'Mildred', 'Bailey', 'mildred.bailey@sakilacustomer.org', 64, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (61, 2, 'Katherine', 'Rivera', 'katherine.rivera@sakilacustomer.org', 65, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (62, 1, 'Joan', 'Cooper', 'joan.cooper@sakilacustomer.org', 66, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (63, 1, 'Ashley', 'Richardson', 'ashley.richardson@sakilacustomer.org', 67, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (64, 2, 'Judith', 'Cox', 'judith.cox@sakilacustomer.org', 68, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (65, 2, 'Rose', 'Howard', 'rose.howard@sakilacustomer.org', 69, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (66, 2, 'Janice', 'Ward', 'janice.ward@sakilacustomer.org', 70, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (67, 1, 'Kelly', 'Torres', 'kelly.torres@sakilacustomer.org', 71, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (68, 1, 'Nicole', 'Peterson', 'nicole.peterson@sakilacustomer.org', 72, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (69, 2, 'Judy', 'Gray', 'judy.gray@sakilacustomer.org', 73, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (70, 2, 'Christina', 'Ramirez', 'christina.ramirez@sakilacustomer.org', 74, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (71, 1, 'Kathy', 'James', 'kathy.james@sakilacustomer.org', 75, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (72, 2, 'Theresa', 'Watson', 'theresa.watson@sakilacustomer.org', 76, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (73, 2, 'Beverly', 'Brooks', 'beverly.brooks@sakilacustomer.org', 77, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (74, 1, 'Denise', 'Kelly', 'denise.kelly@sakilacustomer.org', 78, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (75, 2, 'Tammy', 'Sanders', 'tammy.sanders@sakilacustomer.org', 79, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (76, 2, 'Irene', 'Price', 'irene.price@sakilacustomer.org', 80, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (77, 2, 'Jane', 'Bennett', 'jane.bennett@sakilacustomer.org', 81, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (78, 1, 'Lori', 'Wood', 'lori.wood@sakilacustomer.org', 82, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (79, 1, 'Rachel', 'Barnes', 'rachel.barnes@sakilacustomer.org', 83, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (80, 1, 'Marilyn', 'Ross', 'marilyn.ross@sakilacustomer.org', 84, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (81, 1, 'Andrea', 'Henderson', 'andrea.henderson@sakilacustomer.org', 85, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (82, 1, 'Kathryn', 'Coleman', 'kathryn.coleman@sakilacustomer.org', 86, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (83, 1, 'Louise', 'Jenkins', 'louise.jenkins@sakilacustomer.org', 87, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (84, 2, 'Sara', 'Perry', 'sara.perry@sakilacustomer.org', 88, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (85, 2, 'Anne', 'Powell', 'anne.powell@sakilacustomer.org', 89, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (86, 2, 'Jacqueline', 'Long', 'jacqueline.long@sakilacustomer.org', 90, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (87, 1, 'Wanda', 'Patterson', 'wanda.patterson@sakilacustomer.org', 91, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (88, 2, 'Bonnie', 'Hughes', 'bonnie.hughes@sakilacustomer.org', 92, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (89, 1, 'Julia', 'Flores', 'julia.flores@sakilacustomer.org', 93, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (90, 2, 'Ruby', 'Washington', 'ruby.washington@sakilacustomer.org', 94, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (91, 2, 'Lois', 'Butler', 'lois.butler@sakilacustomer.org', 95, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (92, 2, 'Tina', 'Simmons', 'tina.simmons@sakilacustomer.org', 96, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (93, 1, 'Phyllis', 'Foster', 'phyllis.foster@sakilacustomer.org', 97, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (94, 1, 'Norma', 'Gonzales', 'norma.gonzales@sakilacustomer.org', 98, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (95, 2, 'Paula', 'Bryant', 'paula.bryant@sakilacustomer.org', 99, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (96, 1, 'Diana', 'Alexander', 'diana.alexander@sakilacustomer.org', 100, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (97, 2, 'Annie', 'Russell', 'annie.russell@sakilacustomer.org', 101, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (98, 1, 'Lillian', 'Griffin', 'lillian.griffin@sakilacustomer.org', 102, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (99, 2, 'Emily', 'Diaz', 'emily.diaz@sakilacustomer.org', 103, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (100, 1, 'Robin', 'Hayes', 'robin.hayes@sakilacustomer.org', 104, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (101, 1, 'Peggy', 'Myers', 'peggy.myers@sakilacustomer.org', 105, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (102, 1, 'Crystal', 'Ford', 'crystal.ford@sakilacustomer.org', 106, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (103, 1, 'Gladys', 'Hamilton', 'gladys.hamilton@sakilacustomer.org', 107, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (104, 1, 'Rita', 'Graham', 'rita.graham@sakilacustomer.org', 108, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (105, 1, 'Dawn', 'Sullivan', 'dawn.sullivan@sakilacustomer.org', 109, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (106, 1, 'Connie', 'Wallace', 'connie.wallace@sakilacustomer.org', 110, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (107, 1, 'Florence', 'Woods', 'florence.woods@sakilacustomer.org', 111, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (108, 1, 'Tracy', 'Cole', 'tracy.cole@sakilacustomer.org', 112, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (109, 2, 'Edna', 'West', 'edna.west@sakilacustomer.org', 113, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (110, 2, 'Tiffany', 'Jordan', 'tiffany.jordan@sakilacustomer.org', 114, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (111, 1, 'Carmen', 'Owens', 'carmen.owens@sakilacustomer.org', 115, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (112, 2, 'Rosa', 'Reynolds', 'rosa.reynolds@sakilacustomer.org', 116, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (113, 2, 'Cindy', 'Fisher', 'cindy.fisher@sakilacustomer.org', 117, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (114, 2, 'Grace', 'Ellis', 'grace.ellis@sakilacustomer.org', 118, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (115, 1, 'Wendy', 'Harrison', 'wendy.harrison@sakilacustomer.org', 119, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (116, 1, 'Victoria', 'Gibson', 'victoria.gibson@sakilacustomer.org', 120, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (117, 1, 'Edith', 'Mcdonald', 'edith.mcdonald@sakilacustomer.org', 121, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (118, 1, 'Kim', 'Cruz', 'kim.cruz@sakilacustomer.org', 122, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (119, 1, 'Sherry', 'Marshall', 'sherry.marshall@sakilacustomer.org', 123, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (120, 2, 'Sylvia', 'Ortiz', 'sylvia.ortiz@sakilacustomer.org', 124, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (121, 1, 'Josephine', 'Gomez', 'josephine.gomez@sakilacustomer.org', 125, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (122, 1, 'Thelma', 'Murray', 'thelma.murray@sakilacustomer.org', 126, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (123, 2, 'Shannon', 'Freeman', 'shannon.freeman@sakilacustomer.org', 127, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (124, 1, 'Sheila', 'Wells', 'sheila.wells@sakilacustomer.org', 128, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (125, 1, 'Ethel', 'Webb', 'ethel.webb@sakilacustomer.org', 129, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (126, 1, 'Ellen', 'Simpson', 'ellen.simpson@sakilacustomer.org', 130, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (127, 2, 'Elaine', 'Stevens', 'elaine.stevens@sakilacustomer.org', 131, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (128, 1, 'Marjorie', 'Tucker', 'marjorie.tucker@sakilacustomer.org', 132, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (129, 1, 'Carrie', 'Porter', 'carrie.porter@sakilacustomer.org', 133, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (130, 1, 'Charlotte', 'Hunter', 'charlotte.hunter@sakilacustomer.org', 134, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (131, 2, 'Monica', 'Hicks', 'monica.hicks@sakilacustomer.org', 135, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (132, 2, 'Esther', 'Crawford', 'esther.crawford@sakilacustomer.org', 136, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (133, 1, 'Pauline', 'Henry', 'pauline.henry@sakilacustomer.org', 137, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (134, 1, 'Emma', 'Boyd', 'emma.boyd@sakilacustomer.org', 138, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (135, 2, 'Juanita', 'Mason', 'juanita.mason@sakilacustomer.org', 139, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (136, 2, 'Anita', 'Morales', 'anita.morales@sakilacustomer.org', 140, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (137, 2, 'Rhonda', 'Kennedy', 'rhonda.kennedy@sakilacustomer.org', 141, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (138, 1, 'Hazel', 'Warren', 'hazel.warren@sakilacustomer.org', 142, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (139, 1, 'Amber', 'Dixon', 'amber.dixon@sakilacustomer.org', 143, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (140, 1, 'Eva', 'Ramos', 'eva.ramos@sakilacustomer.org', 144, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (141, 1, 'Debbie', 'Reyes', 'debbie.reyes@sakilacustomer.org', 145, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (142, 1, 'April', 'Burns', 'april.burns@sakilacustomer.org', 146, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (143, 1, 'Leslie', 'Gordon', 'leslie.gordon@sakilacustomer.org', 147, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (144, 1, 'Clara', 'Shaw', 'clara.shaw@sakilacustomer.org', 148, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (145, 1, 'Lucille', 'Holmes', 'lucille.holmes@sakilacustomer.org', 149, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (146, 1, 'Jamie', 'Rice', 'jamie.rice@sakilacustomer.org', 150, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (147, 2, 'Joanne', 'Robertson', 'joanne.robertson@sakilacustomer.org', 151, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (148, 1, 'Eleanor', 'Hunt', 'eleanor.hunt@sakilacustomer.org', 152, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (149, 1, 'Valerie', 'Black', 'valerie.black@sakilacustomer.org', 153, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (150, 2, 'Danielle', 'Daniels', 'danielle.daniels@sakilacustomer.org', 154, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (151, 2, 'Megan', 'Palmer', 'megan.palmer@sakilacustomer.org', 155, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (152, 1, 'Alicia', 'Mills', 'alicia.mills@sakilacustomer.org', 156, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (153, 2, 'Suzanne', 'Nichols', 'suzanne.nichols@sakilacustomer.org', 157, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (154, 2, 'Michele', 'Grant', 'michele.grant@sakilacustomer.org', 158, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (155, 1, 'Gail', 'Knight', 'gail.knight@sakilacustomer.org', 159, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (156, 1, 'Bertha', 'Ferguson', 'bertha.ferguson@sakilacustomer.org', 160, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (157, 2, 'Darlene', 'Rose', 'darlene.rose@sakilacustomer.org', 161, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (158, 1, 'Veronica', 'Stone', 'veronica.stone@sakilacustomer.org', 162, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (159, 1, 'Jill', 'Hawkins', 'jill.hawkins@sakilacustomer.org', 163, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (160, 2, 'Erin', 'Dunn', 'erin.dunn@sakilacustomer.org', 164, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (161, 1, 'Geraldine', 'Perkins', 'geraldine.perkins@sakilacustomer.org', 165, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (162, 2, 'Lauren', 'Hudson', 'lauren.hudson@sakilacustomer.org', 166, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (163, 1, 'Cathy', 'Spencer', 'cathy.spencer@sakilacustomer.org', 167, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (164, 2, 'Joann', 'Gardner', 'joann.gardner@sakilacustomer.org', 168, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (165, 2, 'Lorraine', 'Stephens', 'lorraine.stephens@sakilacustomer.org', 169, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (166, 1, 'Lynn', 'Payne', 'lynn.payne@sakilacustomer.org', 170, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (167, 2, 'Sally', 'Pierce', 'sally.pierce@sakilacustomer.org', 171, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (168, 1, 'Regina', 'Berry', 'regina.berry@sakilacustomer.org', 172, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (169, 2, 'Erica', 'Matthews', 'erica.matthews@sakilacustomer.org', 173, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (170, 1, 'Beatrice', 'Arnold', 'beatrice.arnold@sakilacustomer.org', 174, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (171, 2, 'Dolores', 'Wagner', 'dolores.wagner@sakilacustomer.org', 175, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (172, 1, 'Bernice', 'Willis', 'bernice.willis@sakilacustomer.org', 176, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (173, 1, 'Audrey', 'Ray', 'audrey.ray@sakilacustomer.org', 177, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (174, 2, 'Yvonne', 'Watkins', 'yvonne.watkins@sakilacustomer.org', 178, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (175, 1, 'Annette', 'Olson', 'annette.olson@sakilacustomer.org', 179, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (176, 1, 'June', 'Carroll', 'june.carroll@sakilacustomer.org', 180, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (177, 2, 'Samantha', 'Duncan', 'samantha.duncan@sakilacustomer.org', 181, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (178, 2, 'Marion', 'Snyder', 'marion.snyder@sakilacustomer.org', 182, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (179, 1, 'Dana', 'Hart', 'dana.hart@sakilacustomer.org', 183, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (180, 2, 'Stacy', 'Cunningham', 'stacy.cunningham@sakilacustomer.org', 184, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (181, 2, 'Ana', 'Bradley', 'ana.bradley@sakilacustomer.org', 185, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (182, 1, 'Renee', 'Lane', 'renee.lane@sakilacustomer.org', 186, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (183, 2, 'Ida', 'Andrews', 'ida.andrews@sakilacustomer.org', 187, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (184, 1, 'Vivian', 'Ruiz', 'vivian.ruiz@sakilacustomer.org', 188, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (185, 1, 'Roberta', 'Harper', 'roberta.harper@sakilacustomer.org', 189, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (186, 2, 'Holly', 'Fox', 'holly.fox@sakilacustomer.org', 190, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (187, 2, 'Brittany', 'Riley', 'brittany.riley@sakilacustomer.org', 191, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (188, 1, 'Melanie', 'Armstrong', 'melanie.armstrong@sakilacustomer.org', 192, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (189, 1, 'Loretta', 'Carpenter', 'loretta.carpenter@sakilacustomer.org', 193, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (190, 2, 'Yolanda', 'Weaver', 'yolanda.weaver@sakilacustomer.org', 194, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (191, 1, 'Jeanette', 'Greene', 'jeanette.greene@sakilacustomer.org', 195, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (192, 1, 'Laurie', 'Lawrence', 'laurie.lawrence@sakilacustomer.org', 196, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (193, 2, 'Katie', 'Elliott', 'katie.elliott@sakilacustomer.org', 197, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (194, 2, 'Kristen', 'Chavez', 'kristen.chavez@sakilacustomer.org', 198, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (195, 1, 'Vanessa', 'Sims', 'vanessa.sims@sakilacustomer.org', 199, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (196, 1, 'Alma', 'Austin', 'alma.austin@sakilacustomer.org', 200, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (197, 2, 'Sue', 'Peters', 'sue.peters@sakilacustomer.org', 201, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (198, 2, 'Elsie', 'Kelley', 'elsie.kelley@sakilacustomer.org', 202, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (199, 2, 'Beth', 'Franklin', 'beth.franklin@sakilacustomer.org', 203, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (200, 2, 'Jeanne', 'Lawson', 'jeanne.lawson@sakilacustomer.org', 204, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (201, 1, 'Vicki', 'Fields', 'vicki.fields@sakilacustomer.org', 205, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (202, 2, 'Carla', 'Gutierrez', 'carla.gutierrez@sakilacustomer.org', 206, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (203, 1, 'Tara', 'Ryan', 'tara.ryan@sakilacustomer.org', 207, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (204, 1, 'Rosemary', 'Schmidt', 'rosemary.schmidt@sakilacustomer.org', 208, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (205, 2, 'Eileen', 'Carr', 'eileen.carr@sakilacustomer.org', 209, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (206, 1, 'Terri', 'Vasquez', 'terri.vasquez@sakilacustomer.org', 210, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (207, 1, 'Gertrude', 'Castillo', 'gertrude.castillo@sakilacustomer.org', 211, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (208, 1, 'Lucy', 'Wheeler', 'lucy.wheeler@sakilacustomer.org', 212, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (209, 2, 'Tonya', 'Chapman', 'tonya.chapman@sakilacustomer.org', 213, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (210, 2, 'Ella', 'Oliver', 'ella.oliver@sakilacustomer.org', 214, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (211, 1, 'Stacey', 'Montgomery', 'stacey.montgomery@sakilacustomer.org', 215, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (212, 2, 'Wilma', 'Richards', 'wilma.richards@sakilacustomer.org', 216, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (213, 1, 'Gina', 'Williamson', 'gina.williamson@sakilacustomer.org', 217, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (214, 1, 'Kristin', 'Johnston', 'kristin.johnston@sakilacustomer.org', 218, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (215, 2, 'Jessie', 'Banks', 'jessie.banks@sakilacustomer.org', 219, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (216, 1, 'Natalie', 'Meyer', 'natalie.meyer@sakilacustomer.org', 220, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (217, 2, 'Agnes', 'Bishop', 'agnes.bishop@sakilacustomer.org', 221, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (218, 1, 'Vera', 'Mccoy', 'vera.mccoy@sakilacustomer.org', 222, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (219, 2, 'Willie', 'Howell', 'willie.howell@sakilacustomer.org', 223, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (220, 2, 'Charlene', 'Alvarez', 'charlene.alvarez@sakilacustomer.org', 224, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (221, 1, 'Bessie', 'Morrison', 'bessie.morrison@sakilacustomer.org', 225, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (222, 2, 'Delores', 'Hansen', 'delores.hansen@sakilacustomer.org', 226, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (223, 1, 'Melinda', 'Fernandez', 'melinda.fernandez@sakilacustomer.org', 227, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (224, 2, 'Pearl', 'Garza', 'pearl.garza@sakilacustomer.org', 228, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (225, 1, 'Arlene', 'Harvey', 'arlene.harvey@sakilacustomer.org', 229, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (226, 2, 'Maureen', 'Little', 'maureen.little@sakilacustomer.org', 230, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (227, 1, 'Colleen', 'Burton', 'colleen.burton@sakilacustomer.org', 231, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (228, 2, 'Allison', 'Stanley', 'allison.stanley@sakilacustomer.org', 232, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (229, 1, 'Tamara', 'Nguyen', 'tamara.nguyen@sakilacustomer.org', 233, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (230, 2, 'Joy', 'George', 'joy.george@sakilacustomer.org', 234, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (231, 1, 'Georgia', 'Jacobs', 'georgia.jacobs@sakilacustomer.org', 235, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (232, 2, 'Constance', 'Reid', 'constance.reid@sakilacustomer.org', 236, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (233, 2, 'Lillie', 'Kim', 'lillie.kim@sakilacustomer.org', 237, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (234, 1, 'Claudia', 'Fuller', 'claudia.fuller@sakilacustomer.org', 238, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (235, 1, 'Jackie', 'Lynch', 'jackie.lynch@sakilacustomer.org', 239, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (236, 1, 'Marcia', 'Dean', 'marcia.dean@sakilacustomer.org', 240, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (237, 1, 'Tanya', 'Gilbert', 'tanya.gilbert@sakilacustomer.org', 241, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (238, 1, 'Nellie', 'Garrett', 'nellie.garrett@sakilacustomer.org', 242, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (239, 2, 'Minnie', 'Romero', 'minnie.romero@sakilacustomer.org', 243, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (240, 1, 'Marlene', 'Welch', 'marlene.welch@sakilacustomer.org', 244, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (241, 2, 'Heidi', 'Larson', 'heidi.larson@sakilacustomer.org', 245, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (242, 1, 'Glenda', 'Frazier', 'glenda.frazier@sakilacustomer.org', 246, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (243, 1, 'Lydia', 'Burke', 'lydia.burke@sakilacustomer.org', 247, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (244, 2, 'Viola', 'Hanson', 'viola.hanson@sakilacustomer.org', 248, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (245, 1, 'Courtney', 'Day', 'courtney.day@sakilacustomer.org', 249, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (246, 1, 'Marian', 'Mendoza', 'marian.mendoza@sakilacustomer.org', 250, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (247, 1, 'Stella', 'Moreno', 'stella.moreno@sakilacustomer.org', 251, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (248, 1, 'Caroline', 'Bowman', 'caroline.bowman@sakilacustomer.org', 252, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (249, 2, 'Dora', 'Medina', 'dora.medina@sakilacustomer.org', 253, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (250, 2, 'Jo', 'Fowler', 'jo.fowler@sakilacustomer.org', 254, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (251, 2, 'Vickie', 'Brewer', 'vickie.brewer@sakilacustomer.org', 255, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (252, 2, 'Mattie', 'Hoffman', 'mattie.hoffman@sakilacustomer.org', 256, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (253, 1, 'Terry', 'Carlson', 'terry.carlson@sakilacustomer.org', 258, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (254, 2, 'Maxine', 'Silva', 'maxine.silva@sakilacustomer.org', 259, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (255, 2, 'Irma', 'Pearson', 'irma.pearson@sakilacustomer.org', 260, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (256, 2, 'Mabel', 'Holland', 'mabel.holland@sakilacustomer.org', 261, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (257, 2, 'Marsha', 'Douglas', 'marsha.douglas@sakilacustomer.org', 262, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (258, 1, 'Myrtle', 'Fleming', 'myrtle.fleming@sakilacustomer.org', 263, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (259, 2, 'Lena', 'Jensen', 'lena.jensen@sakilacustomer.org', 264, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (260, 1, 'Christy', 'Vargas', 'christy.vargas@sakilacustomer.org', 265, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (261, 1, 'Deanna', 'Byrd', 'deanna.byrd@sakilacustomer.org', 266, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (262, 2, 'Patsy', 'Davidson', 'patsy.davidson@sakilacustomer.org', 267, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (263, 1, 'Hilda', 'Hopkins', 'hilda.hopkins@sakilacustomer.org', 268, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (264, 1, 'Gwendolyn', 'May', 'gwendolyn.may@sakilacustomer.org', 269, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (265, 2, 'Jennie', 'Terry', 'jennie.terry@sakilacustomer.org', 270, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (266, 2, 'Nora', 'Herrera', 'nora.herrera@sakilacustomer.org', 271, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (267, 1, 'Margie', 'Wade', 'margie.wade@sakilacustomer.org', 272, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (268, 1, 'Nina', 'Soto', 'nina.soto@sakilacustomer.org', 273, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (269, 1, 'Cassandra', 'Walters', 'cassandra.walters@sakilacustomer.org', 274, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (270, 1, 'Leah', 'Curtis', 'leah.curtis@sakilacustomer.org', 275, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (271, 1, 'Penny', 'Neal', 'penny.neal@sakilacustomer.org', 276, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (272, 1, 'Kay', 'Caldwell', 'kay.caldwell@sakilacustomer.org', 277, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (273, 2, 'Priscilla', 'Lowe', 'priscilla.lowe@sakilacustomer.org', 278, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (274, 1, 'Naomi', 'Jennings', 'naomi.jennings@sakilacustomer.org', 279, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (275, 2, 'Carole', 'Barnett', 'carole.barnett@sakilacustomer.org', 280, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (276, 1, 'Brandy', 'Graves', 'brandy.graves@sakilacustomer.org', 281, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (277, 2, 'Olga', 'Jimenez', 'olga.jimenez@sakilacustomer.org', 282, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (278, 2, 'Billie', 'Horton', 'billie.horton@sakilacustomer.org', 283, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (279, 2, 'Dianne', 'Shelton', 'dianne.shelton@sakilacustomer.org', 284, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (280, 2, 'Tracey', 'Barrett', 'tracey.barrett@sakilacustomer.org', 285, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (281, 2, 'Leona', 'Obrien', 'leona.obrien@sakilacustomer.org', 286, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (282, 2, 'Jenny', 'Castro', 'jenny.castro@sakilacustomer.org', 287, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (283, 1, 'Felicia', 'Sutton', 'felicia.sutton@sakilacustomer.org', 288, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (284, 1, 'Sonia', 'Gregory', 'sonia.gregory@sakilacustomer.org', 289, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (285, 1, 'Miriam', 'Mckinney', 'miriam.mckinney@sakilacustomer.org', 290, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (286, 1, 'Velma', 'Lucas', 'velma.lucas@sakilacustomer.org', 291, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (287, 2, 'Becky', 'Miles', 'becky.miles@sakilacustomer.org', 292, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (288, 1, 'Bobbie', 'Craig', 'bobbie.craig@sakilacustomer.org', 293, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (289, 1, 'Violet', 'Rodriquez', 'violet.rodriquez@sakilacustomer.org', 294, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (290, 1, 'Kristina', 'Chambers', 'kristina.chambers@sakilacustomer.org', 295, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (291, 1, 'Toni', 'Holt', 'toni.holt@sakilacustomer.org', 296, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (292, 2, 'Misty', 'Lambert', 'misty.lambert@sakilacustomer.org', 297, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (293, 2, 'Mae', 'Fletcher', 'mae.fletcher@sakilacustomer.org', 298, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (294, 2, 'Shelly', 'Watts', 'shelly.watts@sakilacustomer.org', 299, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (295, 1, 'Daisy', 'Bates', 'daisy.bates@sakilacustomer.org', 300, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (296, 2, 'Ramona', 'Hale', 'ramona.hale@sakilacustomer.org', 301, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (297, 1, 'Sherri', 'Rhodes', 'sherri.rhodes@sakilacustomer.org', 302, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (298, 1, 'Erika', 'Pena', 'erika.pena@sakilacustomer.org', 303, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (299, 2, 'James', 'Gannon', 'james.gannon@sakilacustomer.org', 304, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (300, 1, 'John', 'Farnsworth', 'john.farnsworth@sakilacustomer.org', 305, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (301, 2, 'Robert', 'Baughman', 'robert.baughman@sakilacustomer.org', 306, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (302, 1, 'Michael', 'Silverman', 'michael.silverman@sakilacustomer.org', 307, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (303, 2, 'William', 'Satterfield', 'william.satterfield@sakilacustomer.org', 308, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (304, 2, 'David', 'Royal', 'david.royal@sakilacustomer.org', 309, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (305, 1, 'Richard', 'Mccrary', 'richard.mccrary@sakilacustomer.org', 310, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (306, 1, 'Charles', 'Kowalski', 'charles.kowalski@sakilacustomer.org', 311, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (307, 2, 'Joseph', 'Joy', 'joseph.joy@sakilacustomer.org', 312, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (308, 1, 'Thomas', 'Grigsby', 'thomas.grigsby@sakilacustomer.org', 313, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (309, 1, 'Christopher', 'Greco', 'christopher.greco@sakilacustomer.org', 314, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (310, 2, 'Daniel', 'Cabral', 'daniel.cabral@sakilacustomer.org', 315, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (311, 2, 'Paul', 'Trout', 'paul.trout@sakilacustomer.org', 316, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (312, 2, 'Mark', 'Rinehart', 'mark.rinehart@sakilacustomer.org', 317, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (313, 2, 'Donald', 'Mahon', 'donald.mahon@sakilacustomer.org', 318, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (314, 1, 'George', 'Linton', 'george.linton@sakilacustomer.org', 319, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (315, 2, 'Kenneth', 'Gooden', 'kenneth.gooden@sakilacustomer.org', 320, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (316, 1, 'Steven', 'Curley', 'steven.curley@sakilacustomer.org', 321, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (317, 2, 'Edward', 'Baugh', 'edward.baugh@sakilacustomer.org', 322, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (318, 1, 'Brian', 'Wyman', 'brian.wyman@sakilacustomer.org', 323, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (319, 2, 'Ronald', 'Weiner', 'ronald.weiner@sakilacustomer.org', 324, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (320, 2, 'Anthony', 'Schwab', 'anthony.schwab@sakilacustomer.org', 325, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (321, 1, 'Kevin', 'Schuler', 'kevin.schuler@sakilacustomer.org', 326, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (322, 1, 'Jason', 'Morrissey', 'jason.morrissey@sakilacustomer.org', 327, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (323, 2, 'Matthew', 'Mahan', 'matthew.mahan@sakilacustomer.org', 328, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (324, 2, 'Gary', 'Coy', 'gary.coy@sakilacustomer.org', 329, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (325, 1, 'Timothy', 'Bunn', 'timothy.bunn@sakilacustomer.org', 330, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (326, 1, 'Jose', 'Andrew', 'jose.andrew@sakilacustomer.org', 331, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (327, 2, 'Larry', 'Thrasher', 'larry.thrasher@sakilacustomer.org', 332, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (328, 2, 'Jeffrey', 'Spear', 'jeffrey.spear@sakilacustomer.org', 333, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (329, 2, 'Frank', 'Waggoner', 'frank.waggoner@sakilacustomer.org', 334, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (330, 1, 'Scott', 'Shelley', 'scott.shelley@sakilacustomer.org', 335, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (331, 1, 'Eric', 'Robert', 'eric.robert@sakilacustomer.org', 336, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (332, 1, 'Stephen', 'Qualls', 'stephen.qualls@sakilacustomer.org', 337, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (333, 2, 'Andrew', 'Purdy', 'andrew.purdy@sakilacustomer.org', 338, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (334, 2, 'Raymond', 'Mcwhorter', 'raymond.mcwhorter@sakilacustomer.org', 339, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (335, 1, 'Gregory', 'Mauldin', 'gregory.mauldin@sakilacustomer.org', 340, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (336, 1, 'Joshua', 'Mark', 'joshua.mark@sakilacustomer.org', 341, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (337, 1, 'Jerry', 'Jordon', 'jerry.jordon@sakilacustomer.org', 342, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (338, 1, 'Dennis', 'Gilman', 'dennis.gilman@sakilacustomer.org', 343, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (339, 2, 'Walter', 'Perryman', 'walter.perryman@sakilacustomer.org', 344, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (340, 1, 'Patrick', 'Newsom', 'patrick.newsom@sakilacustomer.org', 345, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (341, 1, 'Peter', 'Menard', 'peter.menard@sakilacustomer.org', 346, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (342, 1, 'Harold', 'Martino', 'harold.martino@sakilacustomer.org', 347, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (343, 1, 'Douglas', 'Graf', 'douglas.graf@sakilacustomer.org', 348, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (344, 1, 'Henry', 'Billingsley', 'henry.billingsley@sakilacustomer.org', 349, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (345, 1, 'Carl', 'Artis', 'carl.artis@sakilacustomer.org', 350, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (346, 1, 'Arthur', 'Simpkins', 'arthur.simpkins@sakilacustomer.org', 351, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (347, 2, 'Ryan', 'Salisbury', 'ryan.salisbury@sakilacustomer.org', 352, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (348, 2, 'Roger', 'Quintanilla', 'roger.quintanilla@sakilacustomer.org', 353, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (349, 2, 'Joe', 'Gilliland', 'joe.gilliland@sakilacustomer.org', 354, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (350, 1, 'Juan', 'Fraley', 'juan.fraley@sakilacustomer.org', 355, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (351, 1, 'Jack', 'Foust', 'jack.foust@sakilacustomer.org', 356, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (352, 1, 'Albert', 'Crouse', 'albert.crouse@sakilacustomer.org', 357, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (353, 1, 'Jonathan', 'Scarborough', 'jonathan.scarborough@sakilacustomer.org', 358, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (354, 2, 'Justin', 'Ngo', 'justin.ngo@sakilacustomer.org', 359, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (355, 2, 'Terry', 'Grissom', 'terry.grissom@sakilacustomer.org', 360, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (356, 2, 'Gerald', 'Fultz', 'gerald.fultz@sakilacustomer.org', 361, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (357, 1, 'Keith', 'Rico', 'keith.rico@sakilacustomer.org', 362, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (358, 2, 'Samuel', 'Marlow', 'samuel.marlow@sakilacustomer.org', 363, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (359, 2, 'Willie', 'Markham', 'willie.markham@sakilacustomer.org', 364, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (360, 2, 'Ralph', 'Madrigal', 'ralph.madrigal@sakilacustomer.org', 365, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (361, 2, 'Lawrence', 'Lawton', 'lawrence.lawton@sakilacustomer.org', 366, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (362, 1, 'Nicholas', 'Barfield', 'nicholas.barfield@sakilacustomer.org', 367, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (363, 2, 'Roy', 'Whiting', 'roy.whiting@sakilacustomer.org', 368, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (364, 1, 'Benjamin', 'Varney', 'benjamin.varney@sakilacustomer.org', 369, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (365, 2, 'Bruce', 'Schwarz', 'bruce.schwarz@sakilacustomer.org', 370, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (366, 1, 'Brandon', 'Huey', 'brandon.huey@sakilacustomer.org', 371, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (367, 1, 'Adam', 'Gooch', 'adam.gooch@sakilacustomer.org', 372, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (368, 1, 'Harry', 'Arce', 'harry.arce@sakilacustomer.org', 373, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (369, 2, 'Fred', 'Wheat', 'fred.wheat@sakilacustomer.org', 374, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (370, 2, 'Wayne', 'Truong', 'wayne.truong@sakilacustomer.org', 375, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (371, 1, 'Billy', 'Poulin', 'billy.poulin@sakilacustomer.org', 376, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (372, 2, 'Steve', 'Mackenzie', 'steve.mackenzie@sakilacustomer.org', 377, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (373, 1, 'Louis', 'Leone', 'louis.leone@sakilacustomer.org', 378, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (374, 2, 'Jeremy', 'Hurtado', 'jeremy.hurtado@sakilacustomer.org', 379, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (375, 2, 'Aaron', 'Selby', 'aaron.selby@sakilacustomer.org', 380, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (376, 1, 'Randy', 'Gaither', 'randy.gaither@sakilacustomer.org', 381, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (377, 1, 'Howard', 'Fortner', 'howard.fortner@sakilacustomer.org', 382, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (378, 1, 'Eugene', 'Culpepper', 'eugene.culpepper@sakilacustomer.org', 383, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (379, 1, 'Carlos', 'Coughlin', 'carlos.coughlin@sakilacustomer.org', 384, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (380, 1, 'Russell', 'Brinson', 'russell.brinson@sakilacustomer.org', 385, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (381, 2, 'Bobby', 'Boudreau', 'bobby.boudreau@sakilacustomer.org', 386, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (382, 2, 'Victor', 'Barkley', 'victor.barkley@sakilacustomer.org', 387, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (383, 1, 'Martin', 'Bales', 'martin.bales@sakilacustomer.org', 388, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (384, 2, 'Ernest', 'Stepp', 'ernest.stepp@sakilacustomer.org', 389, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (385, 1, 'Phillip', 'Holm', 'phillip.holm@sakilacustomer.org', 390, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (386, 1, 'Todd', 'Tan', 'todd.tan@sakilacustomer.org', 391, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (387, 2, 'Jesse', 'Schilling', 'jesse.schilling@sakilacustomer.org', 392, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (388, 2, 'Craig', 'Morrell', 'craig.morrell@sakilacustomer.org', 393, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (389, 1, 'Alan', 'Kahn', 'alan.kahn@sakilacustomer.org', 394, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (390, 1, 'Shawn', 'Heaton', 'shawn.heaton@sakilacustomer.org', 395, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (391, 1, 'Clarence', 'Gamez', 'clarence.gamez@sakilacustomer.org', 396, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (392, 2, 'Sean', 'Douglass', 'sean.douglass@sakilacustomer.org', 397, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (393, 1, 'Philip', 'Causey', 'philip.causey@sakilacustomer.org', 398, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (394, 2, 'Chris', 'Brothers', 'chris.brothers@sakilacustomer.org', 399, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (395, 2, 'Johnny', 'Turpin', 'johnny.turpin@sakilacustomer.org', 400, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (396, 1, 'Earl', 'Shanks', 'earl.shanks@sakilacustomer.org', 401, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (397, 1, 'Jimmy', 'Schrader', 'jimmy.schrader@sakilacustomer.org', 402, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (398, 1, 'Antonio', 'Meek', 'antonio.meek@sakilacustomer.org', 403, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (399, 1, 'Danny', 'Isom', 'danny.isom@sakilacustomer.org', 404, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (400, 2, 'Bryan', 'Hardison', 'bryan.hardison@sakilacustomer.org', 405, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (401, 2, 'Tony', 'Carranza', 'tony.carranza@sakilacustomer.org', 406, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (402, 1, 'Luis', 'Yanez', 'luis.yanez@sakilacustomer.org', 407, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (403, 1, 'Mike', 'Way', 'mike.way@sakilacustomer.org', 408, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (404, 2, 'Stanley', 'Scroggins', 'stanley.scroggins@sakilacustomer.org', 409, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (405, 1, 'Leonard', 'Schofield', 'leonard.schofield@sakilacustomer.org', 410, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (406, 1, 'Nathan', 'Runyon', 'nathan.runyon@sakilacustomer.org', 411, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (407, 1, 'Dale', 'Ratcliff', 'dale.ratcliff@sakilacustomer.org', 412, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (408, 1, 'Manuel', 'Murrell', 'manuel.murrell@sakilacustomer.org', 413, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (409, 2, 'Rodney', 'Moeller', 'rodney.moeller@sakilacustomer.org', 414, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (410, 2, 'Curtis', 'Irby', 'curtis.irby@sakilacustomer.org', 415, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (411, 1, 'Norman', 'Currier', 'norman.currier@sakilacustomer.org', 416, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (412, 2, 'Allen', 'Butterfield', 'allen.butterfield@sakilacustomer.org', 417, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (413, 2, 'Marvin', 'Yee', 'marvin.yee@sakilacustomer.org', 418, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (414, 1, 'Vincent', 'Ralston', 'vincent.ralston@sakilacustomer.org', 419, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (415, 1, 'Glenn', 'Pullen', 'glenn.pullen@sakilacustomer.org', 420, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (416, 2, 'Jeffery', 'Pinson', 'jeffery.pinson@sakilacustomer.org', 421, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (417, 1, 'Travis', 'Estep', 'travis.estep@sakilacustomer.org', 422, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (418, 2, 'Jeff', 'East', 'jeff.east@sakilacustomer.org', 423, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (419, 1, 'Chad', 'Carbone', 'chad.carbone@sakilacustomer.org', 424, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (420, 1, 'Jacob', 'Lance', 'jacob.lance@sakilacustomer.org', 425, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (421, 1, 'Lee', 'Hawks', 'lee.hawks@sakilacustomer.org', 426, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (422, 1, 'Melvin', 'Ellington', 'melvin.ellington@sakilacustomer.org', 427, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (423, 2, 'Alfred', 'Casillas', 'alfred.casillas@sakilacustomer.org', 428, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (424, 2, 'Kyle', 'Spurlock', 'kyle.spurlock@sakilacustomer.org', 429, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (425, 2, 'Francis', 'Sikes', 'francis.sikes@sakilacustomer.org', 430, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (426, 1, 'Bradley', 'Motley', 'bradley.motley@sakilacustomer.org', 431, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (427, 2, 'Jesus', 'Mccartney', 'jesus.mccartney@sakilacustomer.org', 432, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (428, 2, 'Herbert', 'Kruger', 'herbert.kruger@sakilacustomer.org', 433, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (429, 2, 'Frederick', 'Isbell', 'frederick.isbell@sakilacustomer.org', 434, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (430, 1, 'Ray', 'Houle', 'ray.houle@sakilacustomer.org', 435, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (431, 2, 'Joel', 'Francisco', 'joel.francisco@sakilacustomer.org', 436, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (432, 1, 'Edwin', 'Burk', 'edwin.burk@sakilacustomer.org', 437, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (433, 1, 'Don', 'Bone', 'don.bone@sakilacustomer.org', 438, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (434, 1, 'Eddie', 'Tomlin', 'eddie.tomlin@sakilacustomer.org', 439, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (435, 2, 'Ricky', 'Shelby', 'ricky.shelby@sakilacustomer.org', 440, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (436, 1, 'Troy', 'Quigley', 'troy.quigley@sakilacustomer.org', 441, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (437, 2, 'Randall', 'Neumann', 'randall.neumann@sakilacustomer.org', 442, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (438, 1, 'Barry', 'Lovelace', 'barry.lovelace@sakilacustomer.org', 443, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (439, 2, 'Alexander', 'Fennell', 'alexander.fennell@sakilacustomer.org', 444, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (440, 1, 'Bernard', 'Colby', 'bernard.colby@sakilacustomer.org', 445, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (441, 1, 'Mario', 'Cheatham', 'mario.cheatham@sakilacustomer.org', 446, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (442, 1, 'Leroy', 'Bustamante', 'leroy.bustamante@sakilacustomer.org', 447, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (443, 2, 'Francisco', 'Skidmore', 'francisco.skidmore@sakilacustomer.org', 448, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (444, 2, 'Marcus', 'Hidalgo', 'marcus.hidalgo@sakilacustomer.org', 449, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (445, 1, 'Micheal', 'Forman', 'micheal.forman@sakilacustomer.org', 450, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (446, 2, 'Theodore', 'Culp', 'theodore.culp@sakilacustomer.org', 451, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (447, 1, 'Clifford', 'Bowens', 'clifford.bowens@sakilacustomer.org', 452, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (448, 1, 'Miguel', 'Betancourt', 'miguel.betancourt@sakilacustomer.org', 453, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (449, 2, 'Oscar', 'Aquino', 'oscar.aquino@sakilacustomer.org', 454, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (450, 1, 'Jay', 'Robb', 'jay.robb@sakilacustomer.org', 455, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (451, 1, 'Jim', 'Rea', 'jim.rea@sakilacustomer.org', 456, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (452, 1, 'Tom', 'Milner', 'tom.milner@sakilacustomer.org', 457, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (453, 1, 'Calvin', 'Martel', 'calvin.martel@sakilacustomer.org', 458, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (454, 2, 'Alex', 'Gresham', 'alex.gresham@sakilacustomer.org', 459, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (455, 2, 'Jon', 'Wiles', 'jon.wiles@sakilacustomer.org', 460, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (456, 2, 'Ronnie', 'Ricketts', 'ronnie.ricketts@sakilacustomer.org', 461, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (457, 2, 'Bill', 'Gavin', 'bill.gavin@sakilacustomer.org', 462, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (458, 1, 'Lloyd', 'Dowd', 'lloyd.dowd@sakilacustomer.org', 463, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (459, 1, 'Tommy', 'Collazo', 'tommy.collazo@sakilacustomer.org', 464, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (460, 1, 'Leon', 'Bostic', 'leon.bostic@sakilacustomer.org', 465, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (461, 1, 'Derek', 'Blakely', 'derek.blakely@sakilacustomer.org', 466, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (462, 2, 'Warren', 'Sherrod', 'warren.sherrod@sakilacustomer.org', 467, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (463, 2, 'Darrell', 'Power', 'darrell.power@sakilacustomer.org', 468, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (464, 1, 'Jerome', 'Kenyon', 'jerome.kenyon@sakilacustomer.org', 469, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (465, 1, 'Floyd', 'Gandy', 'floyd.gandy@sakilacustomer.org', 470, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (466, 1, 'Leo', 'Ebert', 'leo.ebert@sakilacustomer.org', 471, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (467, 2, 'Alvin', 'Deloach', 'alvin.deloach@sakilacustomer.org', 472, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (468, 1, 'Tim', 'Cary', 'tim.cary@sakilacustomer.org', 473, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (469, 2, 'Wesley', 'Bull', 'wesley.bull@sakilacustomer.org', 474, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (470, 1, 'Gordon', 'Allard', 'gordon.allard@sakilacustomer.org', 475, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (471, 1, 'Dean', 'Sauer', 'dean.sauer@sakilacustomer.org', 476, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (472, 1, 'Greg', 'Robins', 'greg.robins@sakilacustomer.org', 477, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (473, 2, 'Jorge', 'Olivares', 'jorge.olivares@sakilacustomer.org', 478, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (474, 2, 'Dustin', 'Gillette', 'dustin.gillette@sakilacustomer.org', 479, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (475, 2, 'Pedro', 'Chestnut', 'pedro.chestnut@sakilacustomer.org', 480, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (476, 1, 'Derrick', 'Bourque', 'derrick.bourque@sakilacustomer.org', 481, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (477, 1, 'Dan', 'Paine', 'dan.paine@sakilacustomer.org', 482, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (478, 1, 'Lewis', 'Lyman', 'lewis.lyman@sakilacustomer.org', 483, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (479, 1, 'Zachary', 'Hite', 'zachary.hite@sakilacustomer.org', 484, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (480, 1, 'Corey', 'Hauser', 'corey.hauser@sakilacustomer.org', 485, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (481, 1, 'Herman', 'Devore', 'herman.devore@sakilacustomer.org', 486, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (482, 1, 'Maurice', 'Crawley', 'maurice.crawley@sakilacustomer.org', 487, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (483, 2, 'Vernon', 'Chapa', 'vernon.chapa@sakilacustomer.org', 488, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (484, 1, 'Roberto', 'Vu', 'roberto.vu@sakilacustomer.org', 489, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (485, 1, 'Clyde', 'Tobias', 'clyde.tobias@sakilacustomer.org', 490, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (486, 1, 'Glen', 'Talbert', 'glen.talbert@sakilacustomer.org', 491, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (487, 2, 'Hector', 'Poindexter', 'hector.poindexter@sakilacustomer.org', 492, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (488, 2, 'Shane', 'Millard', 'shane.millard@sakilacustomer.org', 493, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (489, 1, 'Ricardo', 'Meador', 'ricardo.meador@sakilacustomer.org', 494, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (490, 1, 'Sam', 'Mcduffie', 'sam.mcduffie@sakilacustomer.org', 495, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (491, 2, 'Rick', 'Mattox', 'rick.mattox@sakilacustomer.org', 496, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (492, 2, 'Lester', 'Kraus', 'lester.kraus@sakilacustomer.org', 497, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (493, 1, 'Brent', 'Harkins', 'brent.harkins@sakilacustomer.org', 498, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (494, 2, 'Ramon', 'Choate', 'ramon.choate@sakilacustomer.org', 499, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (495, 2, 'Charlie', 'Bess', 'charlie.bess@sakilacustomer.org', 500, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (496, 2, 'Tyler', 'Wren', 'tyler.wren@sakilacustomer.org', 501, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (497, 2, 'Gilbert', 'Sledge', 'gilbert.sledge@sakilacustomer.org', 502, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (498, 1, 'Gene', 'Sanborn', 'gene.sanborn@sakilacustomer.org', 503, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (499, 2, 'Marc', 'Outlaw', 'marc.outlaw@sakilacustomer.org', 504, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (500, 1, 'Reginald', 'Kinder', 'reginald.kinder@sakilacustomer.org', 505, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (501, 1, 'Ruben', 'Geary', 'ruben.geary@sakilacustomer.org', 506, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (502, 1, 'Brett', 'Cornwell', 'brett.cornwell@sakilacustomer.org', 507, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (503, 1, 'Angel', 'Barclay', 'angel.barclay@sakilacustomer.org', 508, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (504, 1, 'Nathaniel', 'Adam', 'nathaniel.adam@sakilacustomer.org', 509, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (505, 1, 'Rafael', 'Abney', 'rafael.abney@sakilacustomer.org', 510, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (506, 2, 'Leslie', 'Seward', 'leslie.seward@sakilacustomer.org', 511, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (507, 2, 'Edgar', 'Rhoads', 'edgar.rhoads@sakilacustomer.org', 512, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (508, 2, 'Milton', 'Howland', 'milton.howland@sakilacustomer.org', 513, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (509, 1, 'Raul', 'Fortier', 'raul.fortier@sakilacustomer.org', 514, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (510, 2, 'Ben', 'Easter', 'ben.easter@sakilacustomer.org', 515, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (511, 1, 'Chester', 'Benner', 'chester.benner@sakilacustomer.org', 516, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (512, 1, 'Cecil', 'Vines', 'cecil.vines@sakilacustomer.org', 517, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (513, 2, 'Duane', 'Tubbs', 'duane.tubbs@sakilacustomer.org', 519, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (514, 2, 'Franklin', 'Troutman', 'franklin.troutman@sakilacustomer.org', 520, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (515, 1, 'Andre', 'Rapp', 'andre.rapp@sakilacustomer.org', 521, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (516, 2, 'Elmer', 'Noe', 'elmer.noe@sakilacustomer.org', 522, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (517, 2, 'Brad', 'Mccurdy', 'brad.mccurdy@sakilacustomer.org', 523, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (518, 1, 'Gabriel', 'Harder', 'gabriel.harder@sakilacustomer.org', 524, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (519, 2, 'Ron', 'Deluca', 'ron.deluca@sakilacustomer.org', 525, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (520, 2, 'Mitchell', 'Westmoreland', 'mitchell.westmoreland@sakilacustomer.org', 526, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (521, 2, 'Roland', 'South', 'roland.south@sakilacustomer.org', 527, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (522, 2, 'Arnold', 'Havens', 'arnold.havens@sakilacustomer.org', 528, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (523, 1, 'Harvey', 'Guajardo', 'harvey.guajardo@sakilacustomer.org', 529, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (525, 2, 'Adrian', 'Clary', 'adrian.clary@sakilacustomer.org', 531, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (526, 2, 'Karl', 'Seal', 'karl.seal@sakilacustomer.org', 532, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (527, 1, 'Cory', 'Meehan', 'cory.meehan@sakilacustomer.org', 533, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (528, 1, 'Claude', 'Herzog', 'claude.herzog@sakilacustomer.org', 534, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (529, 2, 'Erik', 'Guillen', 'erik.guillen@sakilacustomer.org', 535, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (530, 2, 'Darryl', 'Ashcraft', 'darryl.ashcraft@sakilacustomer.org', 536, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (531, 2, 'Jamie', 'Waugh', 'jamie.waugh@sakilacustomer.org', 537, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (532, 2, 'Neil', 'Renner', 'neil.renner@sakilacustomer.org', 538, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (533, 1, 'Jessie', 'Milam', 'jessie.milam@sakilacustomer.org', 539, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (534, 1, 'Christian', 'Jung', 'christian.jung@sakilacustomer.org', 540, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (535, 1, 'Javier', 'Elrod', 'javier.elrod@sakilacustomer.org', 541, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (536, 2, 'Fernando', 'Churchill', 'fernando.churchill@sakilacustomer.org', 542, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (537, 2, 'Clinton', 'Buford', 'clinton.buford@sakilacustomer.org', 543, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (538, 2, 'Ted', 'Breaux', 'ted.breaux@sakilacustomer.org', 544, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (539, 1, 'Mathew', 'Bolin', 'mathew.bolin@sakilacustomer.org', 545, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (540, 1, 'Tyrone', 'Asher', 'tyrone.asher@sakilacustomer.org', 546, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (541, 2, 'Darren', 'Windham', 'darren.windham@sakilacustomer.org', 547, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (542, 2, 'Lonnie', 'Tirado', 'lonnie.tirado@sakilacustomer.org', 548, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (543, 1, 'Lance', 'Pemberton', 'lance.pemberton@sakilacustomer.org', 549, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (544, 2, 'Cody', 'Nolen', 'cody.nolen@sakilacustomer.org', 550, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (545, 2, 'Julio', 'Noland', 'julio.noland@sakilacustomer.org', 551, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (546, 1, 'Kelly', 'Knott', 'kelly.knott@sakilacustomer.org', 552, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (547, 1, 'Kurt', 'Emmons', 'kurt.emmons@sakilacustomer.org', 553, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (548, 1, 'Allan', 'Cornish', 'allan.cornish@sakilacustomer.org', 554, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (549, 1, 'Nelson', 'Christenson', 'nelson.christenson@sakilacustomer.org', 555, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (550, 2, 'Guy', 'Brownlee', 'guy.brownlee@sakilacustomer.org', 556, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (551, 2, 'Clayton', 'Barbee', 'clayton.barbee@sakilacustomer.org', 557, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (552, 2, 'Hugh', 'Waldrop', 'hugh.waldrop@sakilacustomer.org', 558, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (553, 1, 'Max', 'Pitt', 'max.pitt@sakilacustomer.org', 559, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (554, 1, 'Dwayne', 'Olvera', 'dwayne.olvera@sakilacustomer.org', 560, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (555, 1, 'Dwight', 'Lombardi', 'dwight.lombardi@sakilacustomer.org', 561, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (556, 2, 'Armando', 'Gruber', 'armando.gruber@sakilacustomer.org', 562, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (557, 1, 'Felix', 'Gaffney', 'felix.gaffney@sakilacustomer.org', 563, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (558, 1, 'Jimmie', 'Eggleston', 'jimmie.eggleston@sakilacustomer.org', 564, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (559, 2, 'Everett', 'Banda', 'everett.banda@sakilacustomer.org', 565, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (560, 1, 'Jordan', 'Archuleta', 'jordan.archuleta@sakilacustomer.org', 566, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (561, 2, 'Ian', 'Still', 'ian.still@sakilacustomer.org', 567, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (562, 1, 'Wallace', 'Slone', 'wallace.slone@sakilacustomer.org', 568, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (563, 2, 'Ken', 'Prewitt', 'ken.prewitt@sakilacustomer.org', 569, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (564, 2, 'Bob', 'Pfeiffer', 'bob.pfeiffer@sakilacustomer.org', 570, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (565, 2, 'Jaime', 'Nettles', 'jaime.nettles@sakilacustomer.org', 571, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (566, 1, 'Casey', 'Mena', 'casey.mena@sakilacustomer.org', 572, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (567, 2, 'Alfredo', 'Mcadams', 'alfredo.mcadams@sakilacustomer.org', 573, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (568, 2, 'Alberto', 'Henning', 'alberto.henning@sakilacustomer.org', 574, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (569, 2, 'Dave', 'Gardiner', 'dave.gardiner@sakilacustomer.org', 575, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (570, 2, 'Ivan', 'Cromwell', 'ivan.cromwell@sakilacustomer.org', 576, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (571, 2, 'Johnnie', 'Chisholm', 'johnnie.chisholm@sakilacustomer.org', 577, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (572, 1, 'Sidney', 'Burleson', 'sidney.burleson@sakilacustomer.org', 578, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (573, 1, 'Byron', 'Box', 'byron.box@sakilacustomer.org', 579, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (574, 2, 'Julian', 'Vest', 'julian.vest@sakilacustomer.org', 580, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (575, 2, 'Isaac', 'Oglesby', 'isaac.oglesby@sakilacustomer.org', 581, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (576, 2, 'Morris', 'Mccarter', 'morris.mccarter@sakilacustomer.org', 582, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (577, 2, 'Clifton', 'Malcolm', 'clifton.malcolm@sakilacustomer.org', 583, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (578, 2, 'Willard', 'Lumpkin', 'willard.lumpkin@sakilacustomer.org', 584, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (579, 2, 'Daryl', 'Larue', 'daryl.larue@sakilacustomer.org', 585, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (580, 1, 'Ross', 'Grey', 'ross.grey@sakilacustomer.org', 586, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (581, 1, 'Virgil', 'Wofford', 'virgil.wofford@sakilacustomer.org', 587, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (582, 2, 'Andy', 'Vanhorn', 'andy.vanhorn@sakilacustomer.org', 588, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (583, 1, 'Marshall', 'Thorn', 'marshall.thorn@sakilacustomer.org', 589, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (584, 2, 'Salvador', 'Teel', 'salvador.teel@sakilacustomer.org', 590, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (585, 1, 'Perry', 'Swafford', 'perry.swafford@sakilacustomer.org', 591, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (586, 1, 'Kirk', 'Stclair', 'kirk.stclair@sakilacustomer.org', 592, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (587, 1, 'Sergio', 'Stanfield', 'sergio.stanfield@sakilacustomer.org', 593, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (588, 1, 'Marion', 'Ocampo', 'marion.ocampo@sakilacustomer.org', 594, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (589, 1, 'Tracy', 'Herrmann', 'tracy.herrmann@sakilacustomer.org', 595, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (590, 2, 'Seth', 'Hannon', 'seth.hannon@sakilacustomer.org', 596, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (591, 1, 'Kent', 'Arsenault', 'kent.arsenault@sakilacustomer.org', 597, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (592, 1, 'Terrance', 'Roush', 'terrance.roush@sakilacustomer.org', 598, true, '2006-02-14', '2013-05-26 14:49:45.738', 0); -INSERT INTO dvds.customer VALUES (593, 2, 'Rene', 'Mcalister', 'rene.mcalister@sakilacustomer.org', 599, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (594, 1, 'Eduardo', 'Hiatt', 'eduardo.hiatt@sakilacustomer.org', 600, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (595, 1, 'Terrence', 'Gunderson', 'terrence.gunderson@sakilacustomer.org', 601, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (596, 1, 'Enrique', 'Forsythe', 'enrique.forsythe@sakilacustomer.org', 602, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (597, 1, 'Freddie', 'Duggan', 'freddie.duggan@sakilacustomer.org', 603, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (598, 1, 'Wade', 'Delvalle', 'wade.delvalle@sakilacustomer.org', 604, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); -INSERT INTO dvds.customer VALUES (599, 2, 'Austin', 'Cintron', 'austin.cintron@sakilacustomer.org', 605, true, '2006-02-14', '2013-05-26 14:49:45.738', 1); - - --- --- TOC entry 3318 (class 0 OID 16434) --- Dependencies: 204 --- Data for Name: film; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.film VALUES (133, 'Chamber Italian', 'A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria', 2006, 1, 7, 4.99, 117, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{Trailers}', '''chamber'':1 ''fate'':4 ''husband'':11 ''italian'':2 ''monkey'':16 ''moos'':8 ''must'':13 ''nigeria'':18 ''overcom'':14 ''reflect'':5'); -INSERT INTO dvds.film VALUES (384, 'Grosse Wonderful', 'A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia', 2006, 1, 5, 4.99, 49, 19.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (8, 'Airport Pollock', 'A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India', 2006, 1, 6, 4.99, 54, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (98, 'Bright Encounters', 'A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat', 2006, 1, 4, 4.99, 73, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 86, 20.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (2, 'Ace Goldfinger', 'A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China', 2006, 1, 3, 4.99, 48, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (3, 'Adaptation Holes', 'A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory', 2006, 1, 7, 2.99, 50, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (4, 'Affair Prejudice', 'A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank', 2006, 1, 5, 2.99, 117, 26.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 130, 22.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (6, 'Agent Truman', 'A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China', 2006, 1, 3, 2.99, 169, 17.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (7, 'Airplane Sierra', 'A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat', 2006, 1, 6, 4.99, 62, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 114, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (10, 'Aladdin Calendar', 'A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China', 2006, 1, 6, 4.99, 63, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 126, 16.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (12, 'Alaska Phantom', 'A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia', 2006, 1, 6, 0.99, 136, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (213, 'Date Speed', 'A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention', 2006, 1, 4, 0.99, 104, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 150, 21.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 94, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 46, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (16, 'Alley Evolution', 'A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans', 2006, 1, 6, 2.99, 180, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 82, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 57, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (19, 'Amadeus Holy', 'A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon', 2006, 1, 6, 0.99, 113, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (20, 'Amelie Hellfighters', 'A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon', 2006, 1, 4, 4.99, 79, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 129, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (22, 'Amistad Midsummer', 'A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California', 2006, 1, 6, 2.99, 85, 10.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (23, 'Anaconda Confessions', 'A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia', 2006, 1, 3, 0.99, 92, 9.99, 'R', '2013-05-26 14:50:58.951', '{Trailers,"Deleted Scenes"}', '''anaconda'':1 ''australia'':18 ''confess'':2 ''dentist'':8,11 ''display'':5 ''fight'':14 ''girl'':16 ''lacklustur'':4 ''must'':13'); -INSERT INTO dvds.film 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, 6, 2.99, 181, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (25, 'Angels Life', 'A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin', 2006, 1, 3, 2.99, 74, 15.99, 'G', '2013-05-26 14:50:58.951', '{Trailers}', '''angel'':1 ''astronaut'':11 ''battl'':14 ''berlin'':18 ''display'':5 ''life'':2 ''must'':13 ''robot'':16 ''thought'':4 ''woman'':8'); -INSERT INTO dvds.film 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, 3, 0.99, 86, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 179, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 91, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (29, 'Antitrust Tomatoes', 'A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India', 2006, 1, 5, 2.99, 168, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 82, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 92, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 119, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 153, 15.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (34, 'Arabia Dogma', 'A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria', 2006, 1, 6, 0.99, 62, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 147, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 127, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 121, 28.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (38, 'Ark Ridgemont', 'A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert', 2006, 1, 6, 0.99, 68, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 99, 10.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (40, 'Army Flintstones', 'A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria', 2006, 1, 4, 0.99, 148, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (41, 'Arsenic Independence', 'A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin', 2006, 1, 4, 0.99, 137, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (42, 'Artist Coldblooded', 'A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California', 2006, 1, 5, 2.99, 170, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (265, 'Dying Maker', 'A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California', 2006, 1, 5, 4.99, 168, 28.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 170, 15.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 113, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (45, 'Attraction Newton', 'A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan', 2006, 1, 5, 4.99, 83, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 108, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 153, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 118, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 162, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (50, 'Baked Cleopatra', 'A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery', 2006, 1, 3, 2.99, 182, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 179, 16.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 75, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (52, 'Ballroom Mockingbird', 'A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California', 2006, 1, 6, 0.99, 173, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 87, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 113, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (55, 'Barbarella Streetcar', 'A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery', 2006, 1, 6, 2.99, 65, 27.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 129, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 90, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 122, 16.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 160, 20.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (60, 'Beast Hunchback', 'A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China', 2006, 1, 3, 4.99, 89, 22.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 175, 28.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 106, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 73, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 151, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (65, 'Behavior Runaway', 'A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin', 2006, 1, 3, 4.99, 100, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 53, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (67, 'Berets Agent', 'A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China', 2006, 1, 5, 2.99, 77, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 122, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 85, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 142, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 100, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 93, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (73, 'Bingo Talented', 'A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria', 2006, 1, 5, 2.99, 150, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''bingo'':1 ''crocodil'':11 ''discov'':14 ''girl'':8 ''must'':13 ''nigeria'':18 ''tale'':5 ''talent'':2 ''touch'':4 ''waitress'':16'); -INSERT INTO dvds.film VALUES (74, 'Birch Antitrust', 'A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon', 2006, 1, 4, 4.99, 162, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (75, 'Bird Independence', 'A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies', 2006, 1, 6, 4.99, 163, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (76, 'Birdcage Casper', 'A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India', 2006, 1, 4, 0.99, 103, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (77, 'Birds Perdition', 'A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California', 2006, 1, 5, 4.99, 61, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 85, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 114, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (80, 'Blanket Beverly', 'A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria', 2006, 1, 7, 2.99, 148, 21.99, 'G', '2013-05-26 14:50:58.951', '{Trailers}', '''bever'':2 ''blanket'':1 ''boat'':16 ''build'':14 ''documentari'':5 ''emot'':4 ''girl'':11 ''must'':13 ''nigeria'':18 ''student'':8'); -INSERT INTO dvds.film VALUES (81, 'Blindness Gun', 'A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat', 2006, 1, 6, 4.99, 103, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (82, 'Blood Argonauts', 'A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse', 2006, 1, 3, 0.99, 71, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 50, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (84, 'Boiled Dares', 'A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan', 2006, 1, 7, 4.99, 102, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (85, 'Bonnie Holocaust', 'A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan', 2006, 1, 4, 0.99, 63, 29.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 121, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 76, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (88, 'Born Spinal', 'A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria', 2006, 1, 7, 4.99, 179, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 63, 22.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (90, 'Boulevard Mob', 'A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China', 2006, 1, 3, 0.99, 63, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (91, 'Bound Cheaper', 'A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon', 2006, 1, 5, 0.99, 98, 17.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (92, 'Bowfinger Gables', 'A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California', 2006, 1, 7, 4.99, 72, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (93, 'Brannigan Sunrise', 'A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin', 2006, 1, 4, 4.99, 121, 27.99, 'PG', '2013-05-26 14:50:58.951', '{Trailers}', '''amaz'':4 ''berlin'':18 ''brannigan'':1 ''crocodil'':11 ''dog'':16 ''epistl'':5 ''moos'':8 ''must'':13 ''outrac'':14 ''sunris'':2'); -INSERT INTO dvds.film VALUES (94, 'Braveheart Human', 'A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin', 2006, 1, 7, 2.99, 176, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (95, 'Breakfast Goldfinger', 'A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin', 2006, 1, 5, 4.99, 123, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 169, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (97, 'Bride Intrigue', 'A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans', 2006, 1, 7, 0.99, 56, 24.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 136, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 161, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 73, 26.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (102, 'Bubble Grosse', 'A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon', 2006, 1, 4, 4.99, 60, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (103, 'Bucket Brotherhood', 'A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory', 2006, 1, 7, 4.99, 133, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 119, 17.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (105, 'Bull Shawshank', 'A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies', 2006, 1, 6, 0.99, 125, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 61, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 63, 13.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (108, 'Butch Panther', 'A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans', 2006, 1, 6, 0.99, 67, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (109, 'Butterfly Chocolat', 'A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank', 2006, 1, 3, 0.99, 89, 17.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 0.99, 53, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (111, 'Caddyshack Jedi', 'A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia', 2006, 1, 3, 0.99, 52, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (112, 'Calendar Gunfight', 'A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria', 2006, 1, 4, 4.99, 120, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 75, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 61, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 167, 27.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 70, 10.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 135, 15.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (118, 'Canyon Stock', 'A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse', 2006, 1, 7, 0.99, 85, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (119, 'Caper Motions', 'A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention', 2006, 1, 6, 0.99, 176, 22.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 92, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (121, 'Carol Texas', 'A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery', 2006, 1, 4, 2.99, 151, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (122, 'Carrie Bunch', 'A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies', 2006, 1, 7, 0.99, 114, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 85, 22.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (124, 'Casper Dragonfly', 'A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert', 2006, 1, 3, 4.99, 163, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (125, 'Cassidy Wyoming', 'A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans', 2006, 1, 5, 2.99, 61, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 112, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (128, 'Catch Amistad', 'A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria', 2006, 1, 7, 0.99, 183, 10.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 179, 16.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 110, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (131, 'Center Dinosaur', 'A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California', 2006, 1, 5, 4.99, 152, 12.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (132, 'Chainsaw Uptown', 'A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia', 2006, 1, 6, 0.99, 114, 25.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (134, 'Champion Flatliners', 'A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery', 2006, 1, 4, 4.99, 51, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 70, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (154, 'Clash Freddy', 'A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia', 2006, 1, 6, 2.99, 81, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (136, 'Chaplin License', 'A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India', 2006, 1, 7, 2.99, 146, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 2.99, 66, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 71, 29.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 4.99, 114, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (140, 'Cheaper Clyde', 'A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan', 2006, 1, 6, 0.99, 87, 23.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (141, 'Chicago North', 'A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California', 2006, 1, 6, 4.99, 185, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (142, 'Chicken Hellfighters', 'A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia', 2006, 1, 3, 0.99, 122, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 142, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (144, 'Chinatown Gladiator', 'A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India', 2006, 1, 7, 4.99, 61, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (145, 'Chisum Behavior', 'A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India', 2006, 1, 5, 4.99, 124, 25.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 107, 24.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 101, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 132, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 150, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 101, 9.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (151, 'Cincinatti Whisperer', 'A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin', 2006, 1, 5, 4.99, 143, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (152, 'Circus Youth', 'A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon', 2006, 1, 5, 2.99, 90, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 165, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 150, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (156, 'Clerks Angels', 'A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon', 2006, 1, 3, 4.99, 164, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (157, 'Clockwork Paradise', 'A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon', 2006, 1, 7, 0.99, 143, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (158, 'Clones Pinocchio', 'A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans', 2006, 1, 6, 2.99, 124, 16.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (159, 'Closer Bang', 'A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India', 2006, 1, 5, 4.99, 58, 12.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (160, 'Club Graffiti', 'A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat', 2006, 1, 4, 0.99, 65, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (161, 'Clue Grail', 'A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China', 2006, 1, 6, 4.99, 70, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 95, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (163, 'Clyde Theory', 'A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat', 2006, 1, 4, 0.99, 139, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 55, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (184, 'Core Suit', 'A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse', 2006, 1, 3, 2.99, 92, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 4.99, 70, 27.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (166, 'Color Philadelphia', 'A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert', 2006, 1, 6, 2.99, 149, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (167, 'Coma Head', 'A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California', 2006, 1, 6, 4.99, 109, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 67, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 76, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 120, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 59, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (172, 'Coneheads Smoochy', 'A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria', 2006, 1, 7, 4.99, 112, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (173, 'Confessions Maguire', 'A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon', 2006, 1, 7, 4.99, 65, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (174, 'Confidential Interview', 'A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan', 2006, 1, 6, 4.99, 180, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (175, 'Confused Candles', 'A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon', 2006, 1, 3, 2.99, 122, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (176, 'Congeniality Quest', 'A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon', 2006, 1, 6, 0.99, 87, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 172, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 115, 25.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 173, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 184, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 166, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (182, 'Control Anthem', 'A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery', 2006, 1, 7, 4.99, 185, 9.99, 'G', '2013-05-26 14:50:58.951', '{Commentaries}', '''anthem'':2 ''battl'':14 ''cat'':16 ''control'':1 ''documentari'':5 ''fate'':4 ''monasteri'':19 ''must'':13 ''robot'':8 ''student'':11'); -INSERT INTO dvds.film 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, 4, 4.99, 112, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (185, 'Cowboy Doom', 'A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon', 2006, 1, 3, 2.99, 146, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 64, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 2.99, 57, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (188, 'Crazy Home', 'A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback', 2006, 1, 7, 2.99, 136, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (189, 'Creatures Shakespeare', 'A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India', 2006, 1, 3, 0.99, 139, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 172, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 143, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (192, 'Crossing Divorce', 'A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin', 2006, 1, 4, 4.99, 50, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (193, 'Crossroads Casualties', 'A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback', 2006, 1, 5, 2.99, 153, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 104, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 112, 16.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (196, 'Cruelty Unforgiven', 'A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria', 2006, 1, 7, 0.99, 69, 29.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 112, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 184, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 56, 29.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 133, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (201, 'Cyclone Family', 'A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention', 2006, 1, 7, 2.99, 176, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 161, 26.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 84, 9.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (204, 'Dalmations Sweden', 'A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse', 2006, 1, 4, 0.99, 106, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 58, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 144, 25.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (207, 'Dangerous Uptown', 'A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California', 2006, 1, 7, 4.99, 121, 26.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (208, 'Dares Pluto', 'A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans', 2006, 1, 7, 2.99, 89, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (209, 'Darkness War', 'A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert', 2006, 1, 6, 2.99, 99, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (210, 'Darko Dorado', 'A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans', 2006, 1, 3, 4.99, 130, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 165, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 185, 14.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 4.99, 59, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (215, 'Dawn Pond', 'A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin', 2006, 1, 4, 4.99, 57, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 113, 16.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 120, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (218, 'Deceiver Betrayed', 'A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India', 2006, 1, 7, 0.99, 122, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (219, 'Deep Crusade', 'A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia', 2006, 1, 6, 4.99, 51, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 106, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (221, 'Deliverance Mulholland', 'A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank', 2006, 1, 4, 0.99, 100, 9.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (222, 'Desert Poseidon', 'A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans', 2006, 1, 4, 4.99, 64, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 76, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (224, 'Desperate Trainspotting', 'A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California', 2006, 1, 7, 4.99, 81, 29.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (225, 'Destination Jerk', 'A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat', 2006, 1, 3, 0.99, 76, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (226, 'Destiny Saturday', 'A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia', 2006, 1, 4, 4.99, 56, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (227, 'Details Packer', 'A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat', 2006, 1, 4, 4.99, 88, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (228, 'Detective Vision', 'A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan', 2006, 1, 4, 0.99, 143, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (229, 'Devil Desire', 'A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan', 2006, 1, 6, 4.99, 87, 12.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 107, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 63, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 147, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 141, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (234, 'Disturbing Scarface', 'A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat', 2006, 1, 6, 2.99, 94, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (235, 'Divide Monster', 'A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery', 2006, 1, 6, 2.99, 68, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 100, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (237, 'Divorce Shining', 'A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India', 2006, 1, 3, 2.99, 47, 21.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (238, 'Doctor Grail', 'A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback', 2006, 1, 4, 2.99, 57, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 122, 16.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (240, 'Dolls Rage', 'A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback', 2006, 1, 7, 2.99, 120, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (241, 'Donnie Alley', 'A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan', 2006, 1, 4, 0.99, 125, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 68, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 49, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 139, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 177, 28.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 154, 16.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 47, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (248, 'Dozen Lion', 'A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies', 2006, 1, 6, 4.99, 177, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 176, 26.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (250, 'Dragon Squad', 'A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China', 2006, 1, 4, 0.99, 170, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (251, 'Dragonfly Strangers', 'A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria', 2006, 1, 6, 4.99, 133, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 135, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (253, 'Drifter Commandments', 'A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat', 2006, 1, 5, 4.99, 61, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 159, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 175, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (256, 'Drop Waterfront', 'A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China', 2006, 1, 6, 4.99, 178, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 110, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 96, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (259, 'Duck Racer', 'A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank', 2006, 1, 4, 2.99, 116, 15.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 4.99, 132, 9.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (261, 'Duffel Apocalypse', 'A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention', 2006, 1, 5, 0.99, 171, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 119, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 154, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (264, 'Dwarfs Alter', 'A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan', 2006, 1, 6, 2.99, 101, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 141, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 140, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (268, 'Early Home', 'A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback', 2006, 1, 6, 4.99, 96, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (269, 'Earring Instinct', 'A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria', 2006, 1, 3, 0.99, 98, 22.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (270, 'Earth Vision', 'A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India', 2006, 1, 7, 0.99, 85, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (271, 'Easy Gladiator', 'A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India', 2006, 1, 5, 4.99, 148, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 153, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 107, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 67, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 85, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 115, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (277, 'Elephant Trojan', 'A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon', 2006, 1, 4, 4.99, 126, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 155, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (279, 'Elizabeth Shane', 'A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan', 2006, 1, 7, 4.99, 152, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 177, 26.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (281, 'Encino Elf', 'A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon', 2006, 1, 6, 0.99, 143, 9.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (282, 'Encounters Curtain', 'A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans', 2006, 1, 5, 0.99, 92, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (283, 'Ending Crowds', 'A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin', 2006, 1, 6, 0.99, 85, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (284, 'Enemy Odds', 'A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India', 2006, 1, 5, 4.99, 77, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 51, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 158, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 176, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (288, 'Escape Metropolis', 'A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans', 2006, 1, 7, 2.99, 167, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 66, 25.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (290, 'Everyone Craft', 'A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria', 2006, 1, 4, 0.99, 163, 29.99, 'PG', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''butler'':16 ''craft'':2 ''dentist'':11 ''display'':5 ''everyon'':1 ''fate'':4 ''must'':13 ''nigeria'':18 ''reach'':14 ''waitress'':8'); -INSERT INTO dvds.film 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, 5, 0.99, 174, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (292, 'Excitement Eve', 'A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank', 2006, 1, 3, 0.99, 51, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (293, 'Exorcist Sting', 'A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin', 2006, 1, 6, 2.99, 167, 17.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 138, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 97, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (296, 'Express Lonely', 'A Boring Drama of a Astronaut And a Boat who must Face a Boat in California', 2006, 1, 5, 2.99, 178, 23.99, 'R', '2013-05-26 14:50:58.951', '{Trailers}', '''astronaut'':8 ''boat'':11,16 ''bore'':4 ''california'':18 ''drama'':5 ''express'':1 ''face'':14 ''lone'':2 ''must'':13'); -INSERT INTO dvds.film VALUES (297, 'Extraordinary Conquerer', 'A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin', 2006, 1, 6, 2.99, 122, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (298, 'Eyes Driving', 'A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback', 2006, 1, 4, 2.99, 172, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''cat'':8 ''drive'':2 ''explor'':16 ''eye'':1 ''fight'':14 ''must'':13 ''outback'':19 ''stori'':5 ''thrill'':4 ''waitress'':11'); -INSERT INTO dvds.film 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, 4, 0.99, 144, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 102, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (301, 'Family Sweet', 'A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin', 2006, 1, 4, 0.99, 155, 24.99, 'R', '2013-05-26 14:50:58.951', '{Trailers}', '''berlin'':18 ''boy'':11 ''documentari'':5 ''epic'':4 ''escap'':14 ''famili'':1 ''must'':13 ''sweet'':2 ''teacher'':8 ''woman'':16'); -INSERT INTO dvds.film VALUES (302, 'Fantasia Park', 'A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia', 2006, 1, 5, 2.99, 131, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 58, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (304, 'Fargo Gandhi', 'A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback', 2006, 1, 3, 2.99, 130, 28.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (305, 'Fatal Haunted', 'A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan', 2006, 1, 6, 2.99, 91, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (306, 'Feathers Metal', 'A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia', 2006, 1, 3, 0.99, 104, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (307, 'Fellowship Autumn', 'A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon', 2006, 1, 6, 4.99, 77, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 2.99, 142, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 98, 29.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 158, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 72, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 75, 20.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 118, 11.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (314, 'Fight Jawbreaker', 'A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse', 2006, 1, 3, 0.99, 91, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (315, 'Finding Anaconda', 'A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans', 2006, 1, 4, 0.99, 156, 10.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (316, 'Fire Wolves', 'A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria', 2006, 1, 5, 4.99, 173, 18.99, 'R', '2013-05-26 14:50:58.951', '{Trailers}', '''documentari'':5 ''dog'':11 ''fire'':1 ''frisbe'':8 ''intrepid'':4 ''lumberjack'':16 ''must'':13 ''nigeria'':18 ''outrac'':14 ''wolv'':2'); -INSERT INTO dvds.film 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, 4, 0.99, 148, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 103, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (319, 'Fish Opus', 'A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia', 2006, 1, 4, 2.99, 125, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 80, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 123, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 100, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (323, 'Flight Lies', 'A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans', 2006, 1, 7, 4.99, 179, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (324, 'Flintstones Happiness', 'A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California', 2006, 1, 3, 4.99, 148, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (325, 'Floats Garden', 'A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan', 2006, 1, 6, 2.99, 145, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (326, 'Flying Hook', 'A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria', 2006, 1, 6, 2.99, 69, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (327, 'Fool Mockingbird', 'A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat', 2006, 1, 3, 4.99, 158, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 131, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 63, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (330, 'Forrester Comancheros', 'A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria', 2006, 1, 7, 4.99, 112, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 90, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (332, 'Frankenstein Stranger', 'A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria', 2006, 1, 7, 0.99, 159, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 126, 16.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (334, 'Freddy Storm', 'A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback', 2006, 1, 6, 4.99, 65, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (335, 'Freedom Cleopatra', 'A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon', 2006, 1, 5, 0.99, 133, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (336, 'French Holiday', 'A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin', 2006, 1, 5, 4.99, 99, 22.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 73, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 51, 23.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (339, 'Frogmen Breaking', 'A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia', 2006, 1, 5, 0.99, 111, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 183, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (341, 'Frost Head', 'A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention', 2006, 1, 5, 0.99, 82, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (342, 'Fugitive Maguire', 'A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia', 2006, 1, 7, 4.99, 83, 28.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (343, 'Full Flatliners', 'A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank', 2006, 1, 6, 2.99, 94, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (344, 'Fury Murder', 'A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery', 2006, 1, 3, 0.99, 178, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 161, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (346, 'Galaxy Sweethearts', 'A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin', 2006, 1, 4, 4.99, 128, 13.99, 'R', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''berlin'':18 ''emot'':4 ''face'':14 ''galaxi'':1 ''must'':13 ''pioneer'':11 ''reflect'':5 ''squirrel'':16 ''sweetheart'':2 ''woman'':8'); -INSERT INTO dvds.film VALUES (347, 'Games Bowfinger', 'A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery', 2006, 1, 7, 4.99, 119, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{"Behind the Scenes"}', '''astound'':4 ''bowfing'':2 ''butler'':8,16 ''challeng'':14 ''documentari'':5 ''explor'':11 ''game'':1 ''monasteri'':19 ''must'':13'); -INSERT INTO dvds.film VALUES (348, 'Gandhi Kwai', 'A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin', 2006, 1, 7, 0.99, 86, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (349, 'Gangs Pride', 'A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin', 2006, 1, 4, 2.99, 185, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (350, 'Garden Island', 'A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback', 2006, 1, 3, 4.99, 80, 21.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 106, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (352, 'Gathering Calendar', 'A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention', 2006, 1, 4, 0.99, 176, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 125, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (354, 'Ghost Groundhog', 'A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India', 2006, 1, 6, 4.99, 85, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (355, 'Ghostbusters Elf', 'A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin', 2006, 1, 7, 0.99, 101, 18.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (356, 'Giant Troopers', 'A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies', 2006, 1, 5, 2.99, 102, 10.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (357, 'Gilbert Pelican', 'A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse', 2006, 1, 7, 0.99, 114, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (358, 'Gilmore Boiled', 'A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat', 2006, 1, 5, 0.99, 163, 29.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (359, 'Gladiator Westward', 'A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan', 2006, 1, 6, 4.99, 173, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (360, 'Glass Dying', 'A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan', 2006, 1, 4, 0.99, 103, 24.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 89, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 115, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 54, 12.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (364, 'Godfather Diary', 'A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback', 2006, 1, 3, 2.99, 73, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{Trailers}', '''car'':16 ''chase'':14 ''diari'':2 ''godfath'':1 ''lumberjack'':8 ''must'':13 ''outback'':19 ''saga'':5 ''squirrel'':11 ''stun'':4'); -INSERT INTO dvds.film 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, 4, 4.99, 154, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 93, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (367, 'Goldmine Tycoon', 'A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback', 2006, 1, 6, 0.99, 153, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 84, 20.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 56, 22.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 108, 26.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (371, 'Gosford Donnie', 'A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin', 2006, 1, 5, 4.99, 129, 17.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (372, 'Graceland Dynamite', 'A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans', 2006, 1, 5, 4.99, 140, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 156, 14.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (374, 'Graffiti Love', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin', 2006, 1, 3, 0.99, 117, 29.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 85, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (376, 'Grapes Fury', 'A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia', 2006, 1, 4, 0.99, 155, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (377, 'Grease Youth', 'A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia', 2006, 1, 7, 0.99, 135, 20.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 93, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 166, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 176, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 150, 25.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (382, 'Grit Clockwork', 'A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank', 2006, 1, 3, 0.99, 137, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 111, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 139, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 53, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 100, 27.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 70, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (389, 'Gunfighter Mussolini', 'A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan', 2006, 1, 3, 2.99, 127, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (390, 'Guys Falcon', 'A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat', 2006, 1, 4, 4.99, 84, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 146, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 51, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 47, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (394, 'Hamlet Wisdom', 'A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback', 2006, 1, 7, 2.99, 146, 21.99, 'R', '2013-05-26 14:50:58.951', '{Trailers,"Deleted Scenes"}', '''hamlet'':1 ''man'':8,11 ''must'':13 ''outback'':19 ''reflect'':5 ''robot'':16 ''sink'':14 ''touch'':4 ''wisdom'':2'); -INSERT INTO dvds.film VALUES (449, 'Identity Lover', 'A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback', 2006, 1, 4, 2.99, 119, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (395, 'Handicap Boondock', 'A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia', 2006, 1, 4, 0.99, 108, 28.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (396, 'Hanging Deep', 'A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin', 2006, 1, 5, 4.99, 62, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (397, 'Hanky October', 'A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia', 2006, 1, 5, 2.99, 107, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 47, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 100, 23.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (400, 'Hardly Robbers', 'A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin', 2006, 1, 7, 2.99, 72, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 168, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 52, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (403, 'Harry Idaho', 'A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California', 2006, 1, 5, 4.99, 121, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 107, 26.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (405, 'Haunted Antitrust', 'A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India', 2006, 1, 6, 4.99, 76, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 181, 22.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (407, 'Hawk Chill', 'A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia', 2006, 1, 5, 0.99, 47, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 69, 28.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 59, 9.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (410, 'Heaven Freedom', 'A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans', 2006, 1, 7, 2.99, 48, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 49, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 102, 25.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 169, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (414, 'Hellfighters Sierra', 'A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia', 2006, 1, 3, 2.99, 75, 23.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (415, 'High Encino', 'A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia', 2006, 1, 3, 2.99, 84, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 110, 10.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (417, 'Hills Neighbors', 'A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat', 2006, 1, 5, 0.99, 93, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 157, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 141, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 128, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (421, 'Holiday Games', 'A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan', 2006, 1, 7, 4.99, 78, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (422, 'Hollow Jeopardy', 'A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery', 2006, 1, 7, 4.99, 136, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 69, 29.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (424, 'Holocaust Highball', 'A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia', 2006, 1, 6, 0.99, 149, 12.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 88, 20.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 4.99, 185, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (427, 'Homeward Cider', 'A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse', 2006, 1, 5, 0.99, 103, 19.99, 'R', '2013-05-26 14:50:58.951', '{Trailers}', '''astronaut'':8 ''cider'':2 ''fight'':14 ''homeward'':1 ''manhattan'':19 ''must'':13 ''penthous'':20 ''reflect'':5 ''squirrel'':11,16 ''taut'':4'); -INSERT INTO dvds.film VALUES (428, 'Homicide Peach', 'A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention', 2006, 1, 6, 2.99, 141, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{Commentaries}', '''astound'':4 ''boy'':11,16 ''confront'':14 ''convent'':20 ''documentari'':5 ''homicid'':1 ''hunter'':8 ''must'':13 ''mysql'':19 ''peach'':2'); -INSERT INTO dvds.film VALUES (429, 'Honey Ties', 'A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank', 2006, 1, 3, 0.99, 84, 29.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (430, 'Hook Chariots', 'A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia', 2006, 1, 7, 0.99, 49, 23.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (450, 'Idols Snatchers', 'A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery', 2006, 1, 5, 2.99, 84, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{Trailers}', '''car'':8 ''compos'':11 ''drama'':5 ''fight'':14 ''idol'':1 ''insight'':4 ''man'':16 ''monasteri'':19 ''must'':13 ''snatcher'':2'); -INSERT INTO dvds.film 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, 3, 2.99, 176, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 139, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 95, 23.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (434, 'Horror Reign', 'A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria', 2006, 1, 3, 0.99, 139, 25.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 4.99, 181, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (436, 'Hours Rage', 'A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia', 2006, 1, 4, 0.99, 122, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (437, 'House Dynamite', 'A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia', 2006, 1, 7, 2.99, 109, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 68, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (439, 'Hunchback Impossible', 'A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan', 2006, 1, 4, 4.99, 151, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 105, 21.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 2.99, 125, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 65, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 49, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 83, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (445, 'Hyde Doctor', 'A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat', 2006, 1, 5, 2.99, 100, 11.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (446, 'Hysterical Grail', 'A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse', 2006, 1, 5, 4.99, 150, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 131, 28.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 2.99, 172, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (451, 'Igby Maker', 'A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory', 2006, 1, 7, 4.99, 160, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 122, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 178, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 180, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (455, 'Impossible Prejudice', 'A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China', 2006, 1, 7, 4.99, 103, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (456, 'Inch Jet', 'A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery', 2006, 1, 6, 4.99, 167, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''butler'':16 ''defeat'':14 ''fate'':4 ''inch'':1 ''jet'':2 ''monasteri'':19 ''must'':13 ''saga'':5 ''student'':11 ''woman'':8'); -INSERT INTO dvds.film VALUES (457, 'Independence Hotel', 'A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery', 2006, 1, 5, 0.99, 157, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 135, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 74, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (460, 'Innocent Usual', 'A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback', 2006, 1, 3, 4.99, 178, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (461, 'Insects Stone', 'A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse', 2006, 1, 3, 0.99, 123, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 78, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 116, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 107, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 59, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 63, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 181, 10.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 2.99, 97, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 46, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 79, 24.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 84, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 174, 24.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (473, 'Jacket Frisco', 'A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon', 2006, 1, 5, 2.99, 181, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 174, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (475, 'Japanese Run', 'A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback', 2006, 1, 6, 0.99, 135, 29.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (476, 'Jason Trap', 'A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery', 2006, 1, 5, 2.99, 130, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 118, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 112, 10.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (479, 'Jedi Beneath', 'A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria', 2006, 1, 7, 0.99, 128, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (480, 'Jeepers Wedding', 'A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia', 2006, 1, 3, 2.99, 84, 29.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (481, 'Jekyll Frogmen', 'A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank', 2006, 1, 4, 2.99, 58, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (482, 'Jeopardy Encino', 'A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India', 2006, 1, 3, 0.99, 102, 12.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (483, 'Jericho Mulan', 'A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat', 2006, 1, 3, 2.99, 171, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 172, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (485, 'Jersey Sassy', 'A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan', 2006, 1, 6, 4.99, 60, 16.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (486, 'Jet Neighbors', 'A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat', 2006, 1, 7, 4.99, 59, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (487, 'Jingle Sagebrush', 'A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon', 2006, 1, 6, 4.99, 124, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 105, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (489, 'Juggler Hardly', 'A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California', 2006, 1, 4, 0.99, 54, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (490, 'Jumanji Blade', 'A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans', 2006, 1, 4, 2.99, 121, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (491, 'Jumping Wrath', 'A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin', 2006, 1, 4, 0.99, 74, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (492, 'Jungle Closer', 'A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia', 2006, 1, 6, 0.99, 134, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (493, 'Kane Exorcist', 'A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin', 2006, 1, 5, 0.99, 92, 18.99, 'R', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''berlin'':18 ''car'':16 ''compos'':8 ''documentari'':5 ''epic'':4 ''exorcist'':2 ''kane'':1 ''must'':13 ''overcom'':14 ''robot'':11'); -INSERT INTO dvds.film VALUES (494, 'Karate Moon', 'A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention', 2006, 1, 4, 0.99, 120, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (495, 'Kentuckian Giant', 'A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat', 2006, 1, 5, 2.99, 169, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (496, 'Kick Savannah', 'A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans', 2006, 1, 3, 0.99, 179, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (497, 'Kill Brotherhood', 'A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback', 2006, 1, 4, 0.99, 54, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 161, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (499, 'King Evolution', 'A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon', 2006, 1, 3, 4.99, 184, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (500, 'Kiss Glory', 'A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies', 2006, 1, 5, 4.99, 163, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 141, 9.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (502, 'Knock Warlock', 'A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon', 2006, 1, 4, 2.99, 71, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{Trailers}', '''baloon'':19 ''boat'':11 ''confront'':14 ''knock'':1 ''moos'':16 ''must'':13 ''stori'':5 ''teacher'':8 ''unbeliev'':4 ''warlock'':2'); -INSERT INTO dvds.film 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, 3, 2.99, 171, 24.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (504, 'Kwai Homeward', 'A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia', 2006, 1, 5, 0.99, 46, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 46, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (753, 'Rush Goodfellas', 'A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia', 2006, 1, 3, 0.99, 48, 20.99, 'PG', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''australia'':18 ''challeng'':14 ''dentist'':11 ''display'':5 ''emot'':4 ''goodfella'':2 ''man'':8 ''must'':13 ''rush'':1 ''squirrel'':16'); -INSERT INTO dvds.film 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, 4, 4.99, 67, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 113, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (508, 'Lambs Cincinatti', 'A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia', 2006, 1, 6, 4.99, 144, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 78, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (510, 'Lawless Vision', 'A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback', 2006, 1, 6, 4.99, 181, 29.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (511, 'Lawrence Love', 'A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin', 2006, 1, 7, 0.99, 175, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (512, 'League Hellfighters', 'A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China', 2006, 1, 5, 4.99, 110, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 153, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (514, 'Lebowski Soldiers', 'A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China', 2006, 1, 6, 2.99, 69, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 113, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (516, 'Legend Jedi', 'A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback', 2006, 1, 7, 0.99, 59, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (517, 'Lesson Cleopatra', 'A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse', 2006, 1, 3, 0.99, 167, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 140, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (519, 'Liberty Magnificent', 'A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon', 2006, 1, 3, 2.99, 138, 27.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (520, 'License Weekend', 'A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery', 2006, 1, 7, 2.99, 91, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 4.99, 147, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 137, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 174, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (560, 'Mars Roman', 'A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia', 2006, 1, 6, 0.99, 62, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 50, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 140, 29.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 120, 10.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 85, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 155, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (529, 'Lonely Elephant', 'A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia', 2006, 1, 3, 2.99, 67, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 108, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 137, 18.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (532, 'Loser Hustler', 'A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria', 2006, 1, 5, 4.99, 80, 28.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 98, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 70, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 181, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (536, 'Lovely Jingle', 'A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback', 2006, 1, 3, 2.99, 65, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 75, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (538, 'Loverboy Attacks', 'A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia', 2006, 1, 7, 0.99, 162, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (539, 'Luck Opus', 'A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank', 2006, 1, 7, 2.99, 152, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 97, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 74, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (561, 'Mask Peach', 'A Boring Character Study of a Student And a Robot who must Meet a Woman in California', 2006, 1, 6, 2.99, 123, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 52, 28.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 116, 20.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 147, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 178, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 98, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 117, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (548, 'Magnificent Chitty', 'A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California', 2006, 1, 3, 2.99, 53, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (549, 'Magnolia Forrester', 'A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans', 2006, 1, 4, 0.99, 171, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 74, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 138, 9.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 130, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 136, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (554, 'Malkovich Pet', 'A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback', 2006, 1, 6, 2.99, 159, 22.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (555, 'Mallrats United', 'A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery', 2006, 1, 4, 0.99, 133, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (556, 'Maltese Hope', 'A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California', 2006, 1, 6, 4.99, 127, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (557, 'Manchurian Curtain', 'A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin', 2006, 1, 5, 2.99, 177, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 71, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 114, 22.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 151, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (563, 'Massacre Usual', 'A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California', 2006, 1, 6, 4.99, 165, 16.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 161, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (565, 'Matrix Snowman', 'A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California', 2006, 1, 6, 4.99, 56, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (566, 'Maude Mod', 'A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria', 2006, 1, 6, 0.99, 72, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (567, 'Meet Chocolate', 'A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention', 2006, 1, 3, 2.99, 80, 26.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 77, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 147, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (570, 'Mermaid Insects', 'A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California', 2006, 1, 5, 4.99, 104, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (571, 'Metal Armageddon', 'A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory', 2006, 1, 6, 2.99, 161, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 64, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (573, 'Microcosmos Paradise', 'A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria', 2006, 1, 6, 2.99, 105, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 86, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (575, 'Midsummer Groundhog', 'A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan', 2006, 1, 3, 4.99, 48, 27.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 122, 13.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (577, 'Mile Mulan', 'A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention', 2006, 1, 4, 0.99, 64, 10.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 142, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 4.99, 149, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (580, 'Mine Titans', 'A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin', 2006, 1, 3, 4.99, 166, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (581, 'Minority Kiss', 'A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback', 2006, 1, 4, 0.99, 59, 16.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 162, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 164, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (584, 'Mixed Doors', 'A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India', 2006, 1, 6, 2.99, 180, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (585, 'Mob Duffel', 'A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies', 2006, 1, 4, 0.99, 105, 25.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (586, 'Mockingbird Hollywood', 'A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin', 2006, 1, 4, 0.99, 60, 27.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (587, 'Mod Secretary', 'A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans', 2006, 1, 6, 4.99, 77, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (588, 'Model Fish', 'A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia', 2006, 1, 4, 4.99, 175, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 74, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (590, 'Money Harold', 'A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia', 2006, 1, 3, 2.99, 135, 17.99, 'PG', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''australia'':18 ''boat'':11 ''defeat'':14 ''explor'':8 ''harold'':2 ''money'':1 ''must'':13 ''robot'':16 ''tale'':5 ''touch'':4'); -INSERT INTO dvds.film VALUES (591, 'Monsoon Cause', 'A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat', 2006, 1, 6, 4.99, 182, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (592, 'Monster Spartacus', 'A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia', 2006, 1, 6, 2.99, 107, 28.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 158, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (594, 'Montezuma Command', 'A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat', 2006, 1, 6, 0.99, 126, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{Trailers}', '''battl'':14 ''boat'':20 ''butler'':11,16 ''command'':2 ''jet'':19 ''montezuma'':1 ''must'':13 ''reflect'':5 ''thrill'':4 ''waitress'':8'); -INSERT INTO dvds.film 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, 7, 0.99, 83, 20.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (596, 'Moonshine Cabin', 'A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat', 2006, 1, 4, 4.99, 171, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (597, 'Moonwalker Fool', 'A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans', 2006, 1, 5, 4.99, 184, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (598, 'Mosquito Armageddon', 'A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan', 2006, 1, 6, 0.99, 57, 22.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (599, 'Mother Oleander', 'A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China', 2006, 1, 3, 0.99, 103, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 166, 16.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 79, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (602, 'Mourning Purple', 'A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans', 2006, 1, 5, 0.99, 146, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (603, 'Movie Shakespeare', 'A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin', 2006, 1, 6, 4.99, 53, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (604, 'Mulan Moon', 'A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon', 2006, 1, 4, 0.99, 160, 10.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 157, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (606, 'Mummy Creatures', 'A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia', 2006, 1, 3, 0.99, 160, 15.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 50, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 166, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (609, 'Muscle Bright', 'A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India', 2006, 1, 7, 2.99, 185, 23.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 129, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (611, 'Musketeers Wait', 'A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia', 2006, 1, 7, 4.99, 73, 17.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (612, 'Mussolini Spoilers', 'A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China', 2006, 1, 6, 2.99, 180, 10.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (613, 'Mystic Truman', 'A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia', 2006, 1, 5, 0.99, 92, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (614, 'Name Detective', 'A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria', 2006, 1, 5, 4.99, 178, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 180, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (616, 'National Story', 'A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California', 2006, 1, 4, 2.99, 92, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 50, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (618, 'Necklace Outbreak', 'A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California', 2006, 1, 3, 0.99, 132, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 161, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (620, 'Nemo Campus', 'A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse', 2006, 1, 5, 2.99, 131, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (621, 'Network Peak', 'A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California', 2006, 1, 5, 2.99, 75, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 159, 25.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 75, 9.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 149, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 83, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 57, 12.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 67, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 172, 24.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (629, 'Notorious Reunion', 'A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon', 2006, 1, 7, 0.99, 128, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (630, 'Notting Speakeasy', 'A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies', 2006, 1, 7, 0.99, 48, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (631, 'Novocaine Flight', 'A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria', 2006, 1, 4, 0.99, 64, 11.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (632, 'Nuts Ties', 'A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California', 2006, 1, 5, 4.99, 145, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (633, 'October Submarine', 'A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat', 2006, 1, 6, 4.99, 54, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (634, 'Odds Boogie', 'A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin', 2006, 1, 6, 0.99, 48, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (635, 'Oklahoma Jumanji', 'A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert', 2006, 1, 7, 0.99, 58, 15.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 161, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 131, 16.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (638, 'Operation Operation', 'A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China', 2006, 1, 7, 2.99, 156, 23.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (639, 'Opposite Necklace', 'A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria', 2006, 1, 7, 4.99, 92, 9.99, 'PG', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''crocodil'':8 ''epistl'':5 ''explor'':16 ''fate'':4 ''kill'':14 ''moos'':11 ''must'':13 ''necklac'':2 ''nigeria'':18 ''opposit'':1'); -INSERT INTO dvds.film 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, 5, 4.99, 102, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (641, 'Orange Grapes', 'A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat', 2006, 1, 4, 0.99, 76, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 120, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 2.99, 118, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (644, 'Oscar Gold', 'A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia', 2006, 1, 7, 2.99, 115, 29.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 118, 18.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 169, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 129, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (648, 'Outlaw Hanky', 'A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert', 2006, 1, 7, 4.99, 148, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 85, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 144, 27.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 84, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (652, 'Pajama Jawbreaker', 'A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California', 2006, 1, 3, 0.99, 126, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (653, 'Panic Club', 'A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon', 2006, 1, 3, 4.99, 102, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 93, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 109, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (656, 'Papi Necklace', 'A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan', 2006, 1, 3, 0.99, 128, 9.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (657, 'Paradise Sabrina', 'A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse', 2006, 1, 5, 2.99, 48, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (658, 'Paris Weekend', 'A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback', 2006, 1, 7, 2.99, 121, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (659, 'Park Citizen', 'A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan', 2006, 1, 3, 4.99, 109, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 107, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (661, 'Past Suicides', 'A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery', 2006, 1, 5, 4.99, 157, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (662, 'Paths Control', 'A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China', 2006, 1, 3, 4.99, 118, 9.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (663, 'Patient Sister', 'A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia', 2006, 1, 7, 0.99, 99, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (664, 'Patriot Roman', 'A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California', 2006, 1, 6, 2.99, 65, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (665, 'Patton Interview', 'A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin', 2006, 1, 4, 2.99, 175, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 145, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (667, 'Peach Innocent', 'A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin', 2006, 1, 3, 2.99, 160, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 80, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 74, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (670, 'Pelican Comforts', 'A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin', 2006, 1, 4, 4.99, 48, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (671, 'Perdition Fargo', 'A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin', 2006, 1, 7, 4.99, 99, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (672, 'Perfect Groove', 'A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon', 2006, 1, 7, 2.99, 82, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (673, 'Personal Ladybugs', 'A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan', 2006, 1, 3, 0.99, 118, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (674, 'Pet Haunting', 'A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California', 2006, 1, 3, 0.99, 99, 11.99, 'PG', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''boat'':11 ''california'':18 ''conquer'':14 ''explor'':8 ''haunt'':2 ''must'':13 ''pet'':1 ''reflect'':5 ''unbeliev'':4 ''woman'':16'); -INSERT INTO dvds.film VALUES (675, 'Phantom Glory', 'A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery', 2006, 1, 6, 2.99, 60, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 137, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (677, 'Pianist Outfield', 'A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery', 2006, 1, 6, 0.99, 136, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 77, 23.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 50, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 103, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 100, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (682, 'Pittsburgh Hunchback', 'A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia', 2006, 1, 4, 4.99, 134, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (683, 'Pity Bound', 'A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria', 2006, 1, 5, 4.99, 60, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (684, 'Pizza Jumanji', 'A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat', 2006, 1, 4, 2.99, 173, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (685, 'Platoon Instinct', 'A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia', 2006, 1, 6, 4.99, 132, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{Trailers,Commentaries}', '''australia'':18 ''instinct'':2 ''man'':8 ''must'':13 ''panorama'':5 ''platoon'':1 ''reach'':14 ''thrill'':4 ''woman'':11,16'); -INSERT INTO dvds.film 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, 5, 4.99, 84, 9.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (687, 'Pocus Pulp', 'A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory', 2006, 1, 6, 0.99, 138, 15.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 61, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (689, 'Pollock Deliverance', 'A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert', 2006, 1, 5, 2.99, 137, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (690, 'Pond Seattle', 'A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China', 2006, 1, 7, 2.99, 185, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (691, 'Poseidon Forever', 'A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery', 2006, 1, 6, 4.99, 159, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{Commentaries}', '''dentist'':16 ''epistl'':5 ''forev'':2 ''monasteri'':19 ''monkey'':11 ''must'':13 ''poseidon'':1 ''thought'':4 ''vanquish'':14 ''woman'':8'); -INSERT INTO dvds.film VALUES (692, 'Potluck Mixed', 'A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon', 2006, 1, 3, 2.99, 179, 10.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (693, 'Potter Connecticut', 'A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin', 2006, 1, 5, 2.99, 115, 16.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (694, 'Prejudice Oleander', 'A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat', 2006, 1, 6, 4.99, 98, 15.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (695, 'President Bang', 'A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia', 2006, 1, 6, 4.99, 144, 12.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 114, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 53, 16.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 71, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 106, 26.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (700, 'Prix Undefeated', 'A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China', 2006, 1, 4, 2.99, 115, 13.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (701, 'Psycho Shrunk', 'A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria', 2006, 1, 5, 2.99, 155, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (702, 'Pulp Beverly', 'A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria', 2006, 1, 4, 2.99, 89, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 100, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (704, 'Pure Runner', 'A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse', 2006, 1, 3, 2.99, 121, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 88, 9.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (706, 'Queen Luke', 'A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans', 2006, 1, 5, 4.99, 163, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 177, 29.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (708, 'Quills Bull', 'A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia', 2006, 1, 4, 4.99, 112, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (709, 'Racer Egg', 'A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California', 2006, 1, 7, 2.99, 147, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 120, 18.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 154, 18.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 82, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (713, 'Rainbow Shock', 'A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India', 2006, 1, 3, 4.99, 74, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (714, 'Random Go', 'A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank', 2006, 1, 6, 2.99, 73, 29.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (715, 'Range Moonwalker', 'A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon', 2006, 1, 3, 4.99, 147, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 136, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 97, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (718, 'Rebel Airport', 'A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India', 2006, 1, 7, 0.99, 73, 24.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (719, 'Records Zorro', 'A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback', 2006, 1, 7, 4.99, 182, 11.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (720, 'Redemption Comforts', 'A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China', 2006, 1, 3, 2.99, 179, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (721, 'Reds Pocus', 'A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia', 2006, 1, 7, 4.99, 182, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (722, 'Reef Salute', 'A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon', 2006, 1, 5, 0.99, 123, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 2.99, 82, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (724, 'Remember Diary', 'A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India', 2006, 1, 5, 2.99, 110, 15.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 167, 25.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (726, 'Reservoir Adaptation', 'A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California', 2006, 1, 7, 2.99, 61, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{Commentaries}', '''adapt'':2 ''california'':18 ''car'':16 ''drama'':5 ''intrepid'':4 ''kill'':14 ''moos'':11 ''must'':13 ''reservoir'':1 ''teacher'':8'); -INSERT INTO dvds.film VALUES (727, 'Resurrection Silverado', 'A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention', 2006, 1, 6, 0.99, 117, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 63, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (729, 'Rider Caddyshack', 'A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria', 2006, 1, 5, 2.99, 177, 28.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (730, 'Ridgemont Submarine', 'A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan', 2006, 1, 3, 0.99, 46, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 153, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (732, 'Rings Heartbreakers', 'A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans', 2006, 1, 5, 0.99, 58, 17.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 149, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (734, 'Road Roxanne', 'A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan', 2006, 1, 4, 4.99, 158, 12.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 102, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (736, 'Robbery Bright', 'A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan', 2006, 1, 4, 0.99, 134, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (737, 'Rock Instinct', 'A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India', 2006, 1, 4, 0.99, 102, 28.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 178, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (739, 'Rocky War', 'A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria', 2006, 1, 4, 4.99, 145, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 153, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (741, 'Roman Punk', 'A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin', 2006, 1, 7, 0.99, 81, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (742, 'Roof Champion', 'A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon', 2006, 1, 7, 0.99, 101, 25.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 60, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (744, 'Roots Remember', 'A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin', 2006, 1, 4, 0.99, 89, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 162, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (746, 'Rouge Squad', 'A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia', 2006, 1, 3, 0.99, 118, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 171, 9.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (748, 'Rugrats Shakespeare', 'A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria', 2006, 1, 4, 0.99, 109, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 153, 19.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 145, 25.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 181, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (752, 'Runner Madigan', 'A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback', 2006, 1, 6, 0.99, 101, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (754, 'Rushmore Mermaid', 'A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank', 2006, 1, 6, 2.99, 150, 17.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (755, 'Sabrina Midnight', 'A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert', 2006, 1, 5, 4.99, 99, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 80, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (757, 'Sagebrush Clueless', 'A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan', 2006, 1, 4, 2.99, 106, 28.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 125, 11.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 73, 29.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (760, 'Samurai Lion', 'A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon', 2006, 1, 5, 2.99, 110, 21.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 154, 23.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 154, 29.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (763, 'Satisfaction Confidential', 'A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China', 2006, 1, 3, 4.99, 75, 26.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (764, 'Saturday Lambs', 'A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon', 2006, 1, 3, 4.99, 150, 28.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (765, 'Saturn Name', 'A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin', 2006, 1, 7, 4.99, 182, 18.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 84, 25.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (767, 'Scalawag Duck', 'A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery', 2006, 1, 6, 4.99, 183, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (768, 'Scarface Bang', 'A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory', 2006, 1, 3, 4.99, 102, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (769, 'School Jacket', 'A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse', 2006, 1, 5, 4.99, 151, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 147, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (788, 'Ship Wonderland', 'A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback', 2006, 1, 5, 2.99, 104, 15.99, 'R', '2013-05-26 14:50:58.951', '{Commentaries}', '''escap'':14 ''explor'':16 ''frisbe'':11 ''monkey'':8 ''must'':13 ''outback'':19 ''saga'':5 ''ship'':1 ''thrill'':4 ''wonderland'':2'); -INSERT INTO dvds.film 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, 3, 4.99, 137, 23.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 80, 24.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 112, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 182, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 110, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 90, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 158, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (778, 'Secrets Paradise', 'A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse', 2006, 1, 3, 4.99, 109, 24.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 54, 23.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 4.99, 98, 15.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (781, 'Seven Swarm', 'A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin', 2006, 1, 4, 4.99, 127, 15.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 60, 26.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (783, 'Shane Darkness', 'A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin', 2006, 1, 5, 2.99, 93, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 47, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 80, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (786, 'Shepherd Midsummer', 'A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon', 2006, 1, 7, 0.99, 113, 14.99, 'R', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''baloon'':19 ''drama'':5 ''kill'':14 ''lumberjack'':16 ''midsumm'':2 ''must'':13 ''robot'':8 ''shepherd'':1 ''thought'':4 ''woman'':11'); -INSERT INTO dvds.film 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, 4, 0.99, 125, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (789, 'Shock Cabin', 'A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans', 2006, 1, 7, 2.99, 79, 15.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (790, 'Shootist Superfly', 'A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin', 2006, 1, 6, 0.99, 67, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (791, 'Show Lord', 'A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan', 2006, 1, 3, 4.99, 167, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 154, 15.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 139, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (794, 'Side Ark', 'A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies', 2006, 1, 5, 0.99, 52, 28.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 0.99, 111, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (796, 'Sierra Divide', 'A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California', 2006, 1, 3, 0.99, 135, 12.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 67, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (798, 'Silverado Goldfinger', 'A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India', 2006, 1, 4, 4.99, 74, 11.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 51, 26.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 126, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (801, 'Sister Freddy', 'A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia', 2006, 1, 5, 4.99, 152, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 132, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 179, 29.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 129, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (805, 'Sleepless Monsoon', 'A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia', 2006, 1, 5, 4.99, 64, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (806, 'Sleepy Japanese', 'A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback', 2006, 1, 4, 2.99, 137, 25.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (807, 'Sleuth Orient', 'A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India', 2006, 1, 4, 0.99, 87, 25.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 84, 10.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 156, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 147, 21.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (811, 'Smile Earring', 'A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin', 2006, 1, 4, 2.99, 60, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 50, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (813, 'Smoochy Control', 'A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China', 2006, 1, 7, 0.99, 184, 18.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (814, 'Snatch Slipper', 'A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin', 2006, 1, 6, 4.99, 110, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 74, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 62, 27.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 185, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 180, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (819, 'Song Hedwig', 'A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention', 2006, 1, 3, 0.99, 165, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 184, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 184, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 169, 12.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 143, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 52, 19.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 165, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (826, 'Speed Suit', 'A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China', 2006, 1, 7, 4.99, 124, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 141, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (828, 'Spiking Element', 'A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery', 2006, 1, 7, 2.99, 79, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (829, 'Spinal Rocky', 'A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California', 2006, 1, 7, 2.99, 138, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (830, 'Spirit Flintstones', 'A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan', 2006, 1, 7, 0.99, 149, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (831, 'Spirited Casualties', 'A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory', 2006, 1, 5, 0.99, 138, 20.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (832, 'Splash Gump', 'A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank', 2006, 1, 5, 0.99, 175, 16.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (833, 'Splendor Patton', 'A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin', 2006, 1, 5, 0.99, 134, 20.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 151, 26.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (835, 'Spy Mile', 'A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon', 2006, 1, 6, 2.99, 112, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (836, 'Squad Fish', 'A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin', 2006, 1, 3, 2.99, 136, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (837, 'Stage World', 'A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat', 2006, 1, 4, 2.99, 85, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (838, 'Stagecoach Armageddon', 'A Touching Display of a Pioneer And a Butler who must Chase a Car in California', 2006, 1, 5, 4.99, 112, 25.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (839, 'Stallion Sundance', 'A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia', 2006, 1, 5, 0.99, 130, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (840, 'Stampede Disturbing', 'A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat', 2006, 1, 5, 0.99, 75, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 181, 9.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 113, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (843, 'Steel Santa', 'A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria', 2006, 1, 4, 4.99, 143, 15.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 140, 16.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 48, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (846, 'Sting Personal', 'A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat', 2006, 1, 3, 4.99, 93, 9.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (847, 'Stock Glass', 'A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China', 2006, 1, 7, 2.99, 160, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (848, 'Stone Fire', 'A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia', 2006, 1, 3, 0.99, 94, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 57, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 163, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (851, 'Straight Hours', 'A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback', 2006, 1, 3, 0.99, 151, 19.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 103, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 139, 12.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (890, 'Tights Dawn', 'A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon', 2006, 1, 5, 0.99, 172, 14.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 119, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (855, 'Streak Ridgemont', 'A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans', 2006, 1, 7, 0.99, 132, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 73, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 144, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (858, 'Submarine Bed', 'A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia', 2006, 1, 5, 4.99, 127, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 114, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 93, 13.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (861, 'Suit Walls', 'A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia', 2006, 1, 3, 4.99, 111, 12.99, 'R', '2013-05-26 14:50:58.951', '{Commentaries}', '''australia'':18 ''build'':14 ''dog'':16 ''frisbe'':11 ''lumberjack'':8 ''must'':13 ''panorama'':5 ''suit'':1 ''touch'':4 ''wall'':2'); -INSERT INTO dvds.film VALUES (862, 'Summer Scarface', 'A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank', 2006, 1, 5, 0.99, 53, 25.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 141, 9.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (864, 'Sundance Invasion', 'A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory', 2006, 1, 5, 0.99, 92, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (865, 'Sunrise League', 'A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse', 2006, 1, 3, 4.99, 135, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 0.99, 48, 28.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 58, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 114, 27.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (869, 'Suspects Quills', 'A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse', 2006, 1, 4, 2.99, 47, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 123, 12.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (871, 'Sweden Shining', 'A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies', 2006, 1, 6, 4.99, 176, 19.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (891, 'Timberland Sky', 'A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat', 2006, 1, 3, 0.99, 69, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 185, 27.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 108, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 155, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 173, 9.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 91, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (877, 'Taxi Kick', 'A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia', 2006, 1, 4, 0.99, 64, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 74, 25.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (879, 'Telegraph Voyage', 'A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat', 2006, 1, 3, 4.99, 148, 20.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 152, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 71, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 99, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (883, 'Tequila Past', 'A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria', 2006, 1, 6, 4.99, 53, 17.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 88, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 179, 22.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 0.99, 184, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 4.99, 135, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (888, 'Thin Sagebrush', 'A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India', 2006, 1, 5, 4.99, 53, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 4.99, 111, 28.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (892, 'Titanic Boondock', 'A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory', 2006, 1, 3, 4.99, 104, 18.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 91, 11.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (894, 'Tomatoes Hellfighters', 'A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank', 2006, 1, 6, 0.99, 68, 23.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 2.99, 142, 21.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (896, 'Tootsie Pilot', 'A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin', 2006, 1, 3, 0.99, 157, 10.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (897, 'Torque Bound', 'A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan', 2006, 1, 3, 4.99, 179, 27.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (898, 'Tourist Pelican', 'A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia', 2006, 1, 4, 4.99, 152, 18.99, 'PG-13', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''astronaut'':11 ''australia'':18 ''bore'':4 ''butler'':8 ''must'':13 ''outrac'':14 ''pelican'':2 ''pioneer'':16 ''stori'':5 ''tourist'':1'); -INSERT INTO dvds.film VALUES (899, 'Towers Hurricane', 'A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention', 2006, 1, 7, 0.99, 144, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 136, 17.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (901, 'Tracy Cider', 'A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria', 2006, 1, 3, 0.99, 142, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 170, 22.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 139, 13.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (904, 'Train Bunch', 'A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India', 2006, 1, 3, 4.99, 71, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 132, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (906, 'Tramp Others', 'A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India', 2006, 1, 4, 0.99, 171, 27.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (907, 'Translation Summer', 'A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention', 2006, 1, 4, 0.99, 168, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 110, 11.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (909, 'Treasure Command', 'A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California', 2006, 1, 3, 0.99, 102, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 87, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 64, 14.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (912, 'Trojan Tomorrow', 'A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India', 2006, 1, 3, 2.99, 52, 9.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (913, 'Troopers Metal', 'A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin', 2006, 1, 3, 0.99, 115, 20.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (914, 'Trouble Date', 'A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan', 2006, 1, 6, 2.99, 61, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (915, 'Truman Crazy', 'A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery', 2006, 1, 7, 4.99, 92, 9.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (916, 'Turn Star', 'A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans', 2006, 1, 3, 2.99, 80, 10.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (917, 'Tuxedo Mile', 'A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India', 2006, 1, 3, 2.99, 152, 24.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (918, 'Twisted Pirates', 'A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention', 2006, 1, 4, 4.99, 152, 23.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 82, 17.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (920, 'Unbreakable Karate', 'A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia', 2006, 1, 3, 0.99, 62, 16.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 7, 2.99, 172, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 107, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 78, 12.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 129, 15.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 164, 27.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 120, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (927, 'Uprising Uptown', 'A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin', 2006, 1, 6, 2.99, 174, 16.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 84, 16.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 4.99, 128, 21.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 2.99, 145, 23.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (931, 'Valentine Vanishing', 'A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California', 2006, 1, 7, 0.99, 48, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (932, 'Valley Packer', 'A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin', 2006, 1, 3, 0.99, 73, 21.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (933, 'Vampire Whale', 'A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention', 2006, 1, 4, 4.99, 126, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (934, 'Vanilla Day', 'A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria', 2006, 1, 7, 4.99, 122, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (935, 'Vanished Garden', 'A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California', 2006, 1, 5, 0.99, 142, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (936, 'Vanishing Rocky', 'A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention', 2006, 1, 3, 2.99, 123, 21.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 85, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 4.99, 173, 14.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 2.99, 90, 17.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 64, 19.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (941, 'Videotape Arsenic', 'A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia', 2006, 1, 4, 4.99, 145, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (942, 'Vietnam Smoochy', 'A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia', 2006, 1, 7, 0.99, 174, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 4.99, 76, 27.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 179, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (945, 'Virginian Pluto', 'A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin', 2006, 1, 5, 0.99, 164, 22.99, 'R', '2013-05-26 14:50:58.951', '{"Deleted Scenes"}', '''berlin'':18 ''boy'':16 ''crocodil'':11 ''dentist'':8 ''emot'':4 ''meet'':14 ''must'':13 ''panorama'':5 ''pluto'':2 ''virginian'':1'); -INSERT INTO dvds.film VALUES (946, 'Virtual Spoilers', 'A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia', 2006, 1, 3, 4.99, 144, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (947, 'Vision Torque', 'A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank', 2006, 1, 5, 0.99, 59, 16.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 139, 22.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (949, 'Volcano Texas', 'A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback', 2006, 1, 6, 0.99, 157, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (950, 'Volume House', 'A Boring Tale of a Dog And a Woman who must Meet a Dentist in California', 2006, 1, 7, 4.99, 132, 12.99, 'PG', '2013-05-26 14:50:58.951', '{Commentaries}', '''bore'':4 ''california'':18 ''dentist'':16 ''dog'':8 ''hous'':2 ''meet'':14 ''must'':13 ''tale'':5 ''volum'':1 ''woman'':11'); -INSERT INTO dvds.film 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, 6, 0.99, 78, 28.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (952, 'Wagon Jaws', 'A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse', 2006, 1, 7, 2.99, 152, 17.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 112, 9.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (954, 'Wake Jaws', 'A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin', 2006, 1, 7, 4.99, 73, 18.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 135, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (956, 'Wanda Chamber', 'A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback', 2006, 1, 7, 4.99, 107, 23.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 4.99, 80, 26.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 6, 2.99, 178, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (959, 'Warlock Werewolf', 'A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback', 2006, 1, 6, 2.99, 83, 10.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 128, 15.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (961, 'Wash Heavenly', 'A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China', 2006, 1, 7, 4.99, 161, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 85, 18.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (963, 'Watch Tracy', 'A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria', 2006, 1, 5, 0.99, 78, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (964, 'Waterfront Deliverance', 'A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria', 2006, 1, 4, 4.99, 61, 17.99, 'G', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (965, 'Watership Frontier', 'A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia', 2006, 1, 6, 0.99, 112, 28.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 70, 14.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 5, 2.99, 134, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (968, 'Werewolf Lola', 'A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery', 2006, 1, 6, 4.99, 79, 19.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 159, 29.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (970, 'Westward Seabiscuit', 'A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China', 2006, 1, 7, 0.99, 52, 11.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 109, 11.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (972, 'Whisperer Giant', 'A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan', 2006, 1, 4, 4.99, 59, 24.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (973, 'Wife Turn', 'A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan', 2006, 1, 3, 4.99, 183, 27.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 4, 0.99, 181, 24.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (975, 'Willow Tracy', 'A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse', 2006, 1, 6, 2.99, 137, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 111, 12.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (977, 'Window Side', 'A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery', 2006, 1, 3, 2.99, 85, 25.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 3, 0.99, 98, 12.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (979, 'Witches Panic', 'A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria', 2006, 1, 6, 4.99, 100, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 75, 12.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 0.99, 55, 13.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (982, 'Women Dorado', 'A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia', 2006, 1, 4, 0.99, 126, 23.99, 'R', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (983, 'Won Dares', 'A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat', 2006, 1, 7, 2.99, 105, 18.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (984, 'Wonderful Drop', 'A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat', 2006, 1, 3, 2.99, 126, 20.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 4.99, 111, 19.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (986, 'Wonka Sea', 'A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India', 2006, 1, 6, 2.99, 85, 24.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 2.99, 116, 13.99, 'PG', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 7, 2.99, 139, 26.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (989, 'Working Microcosmos', 'A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China', 2006, 1, 4, 4.99, 74, 22.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 3, 0.99, 171, 13.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (991, 'Worst Banger', 'A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback', 2006, 1, 4, 2.99, 185, 26.99, 'PG', '2013-05-26 14:50:58.951', '{"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 dvds.film 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, 5, 0.99, 176, 17.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 2.99, 178, 10.99, 'PG-13', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 4.99, 100, 29.99, 'PG-13', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (995, 'Yentl Idaho', 'A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin', 2006, 1, 5, 4.99, 86, 11.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 6, 0.99, 183, 9.99, 'G', '2013-05-26 14:50:58.951', '{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 dvds.film 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, 4, 0.99, 179, 14.99, 'NC-17', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (998, 'Zhivago Core', 'A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies', 2006, 1, 6, 0.99, 105, 10.99, 'NC-17', '2013-05-26 14:50:58.951', '{"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 dvds.film VALUES (999, 'Zoolander Fiction', 'A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China', 2006, 1, 5, 2.99, 101, 28.99, 'R', '2013-05-26 14:50:58.951', '{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 dvds.film VALUES (1000, 'Zorro Ark', 'A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery', 2006, 1, 3, 4.99, 50, 18.99, 'NC-17', '2013-05-26 14:50:58.951', '{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'); - - --- --- TOC entry 3319 (class 0 OID 16446) --- Dependencies: 205 --- Data for Name: film_actor; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.film_actor VALUES (1, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 23, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 106, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 140, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 277, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 438, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 499, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 509, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 605, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 749, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 939, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 970, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (1, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 3, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 31, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 132, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 145, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 314, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 357, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 399, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 481, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 518, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 550, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 555, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 742, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (2, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 185, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 289, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 329, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 441, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 480, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 539, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 685, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 971, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (3, 996, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 23, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 62, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 79, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 355, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 490, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 691, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 712, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 721, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 798, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (4, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 19, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 54, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 171, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 202, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 288, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 316, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 340, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 375, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 392, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 411, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 535, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 687, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 730, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 841, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (5, 865, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 60, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 70, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 165, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 451, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 509, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 605, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 692, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 826, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 902, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (6, 994, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 96, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 173, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 217, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 218, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 225, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 351, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 633, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 691, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 766, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 770, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 805, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 806, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 900, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 901, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 910, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (7, 959, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 115, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 158, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 179, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 195, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 205, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 523, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 532, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 859, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 895, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (8, 936, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 30, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 74, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 147, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 191, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 200, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 204, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 434, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 510, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 514, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 552, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 671, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 722, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 865, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 873, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 889, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 903, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 926, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 964, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (9, 974, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 191, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 236, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 251, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 366, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 477, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 480, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 530, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 587, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 716, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 782, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 929, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 930, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 964, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (10, 983, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 118, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 205, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 281, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 283, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 364, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 429, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 532, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 567, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 587, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 709, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 850, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 854, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 888, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 896, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (11, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 16, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 37, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 91, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 92, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 213, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 216, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 344, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 400, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 416, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 593, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 631, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 672, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 716, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 812, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 838, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 871, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (12, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 45, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 110, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 337, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 346, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 381, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 456, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 515, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 524, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 528, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 718, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 816, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 843, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 897, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (13, 998, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 187, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 232, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 284, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 417, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 454, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 472, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 495, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 536, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 759, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 890, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 919, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 948, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (14, 970, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 31, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 91, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 108, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 236, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 275, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 445, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 502, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 594, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 626, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 745, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 783, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 886, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 949, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (15, 985, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 80, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 101, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 218, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 221, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 267, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 269, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 271, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 287, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 438, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 455, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 456, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 582, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 583, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 886, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (16, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 96, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 124, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 127, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 201, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 236, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 310, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 313, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 378, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 478, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 515, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 573, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 770, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 794, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 800, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 873, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 948, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (17, 959, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 44, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 268, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 279, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 386, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 460, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 536, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 808, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 863, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 883, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 917, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (18, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 2, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 3, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 152, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 182, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 217, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 266, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 404, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 490, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 510, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 644, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 670, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 711, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 750, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 756, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (19, 877, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 54, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 140, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 165, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 231, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 269, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 274, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 366, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 445, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 478, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 492, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 499, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 527, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 531, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 589, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 643, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 652, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 663, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 863, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 962, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (20, 977, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 142, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 159, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 179, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 281, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 426, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 429, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 497, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 507, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 530, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 733, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 798, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 804, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (21, 983, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 23, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 291, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 294, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 349, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 430, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 483, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 495, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 536, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 634, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 742, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 775, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (22, 964, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 78, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 116, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 235, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 419, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 435, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 449, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 536, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 691, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 766, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 782, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 804, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 820, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 826, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 855, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 935, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 981, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (23, 997, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 3, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 83, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 126, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 277, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 335, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 405, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 515, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 585, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 653, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 704, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (24, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 21, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 86, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 179, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 204, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 213, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 404, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 411, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 583, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 755, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 871, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (25, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 21, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 93, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 103, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 147, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 186, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 201, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 225, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 327, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 329, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 340, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 390, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 392, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 544, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 644, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 682, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 715, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 821, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 885, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 904, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (26, 906, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 19, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 150, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 334, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 359, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 477, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 586, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 593, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 682, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 695, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 805, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 854, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 873, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 889, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 904, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 986, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (27, 996, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 14, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 74, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 96, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 259, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 287, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 358, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 502, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 532, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 625, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 652, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 743, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 790, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 793, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 816, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 973, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (28, 994, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 79, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 110, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 131, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 282, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 335, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 436, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 444, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 449, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 482, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 488, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 547, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 646, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 723, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 812, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (29, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 64, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 69, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 77, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 318, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 357, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 565, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 797, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 838, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (30, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 163, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 299, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 308, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 368, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 380, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 585, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 739, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 793, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (31, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 65, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 103, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 136, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 309, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 523, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 567, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 585, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 651, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 667, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 669, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (32, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 135, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 214, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 252, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 305, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 667, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 712, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 735, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 775, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 878, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 881, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 965, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 972, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (33, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 182, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 244, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 389, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 438, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 493, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 502, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 525, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 668, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 720, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 794, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 836, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 929, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 950, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (34, 971, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 201, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 389, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 589, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 707, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 748, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (35, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 15, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 81, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 171, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 231, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 283, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 380, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 381, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 387, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 390, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 426, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 466, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 493, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 499, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 569, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 715, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 716, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 875, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 915, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 931, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (36, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 19, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 118, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 204, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 277, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 317, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 477, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 555, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 572, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 662, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 663, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 840, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 900, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 925, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 963, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 989, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (37, 997, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 24, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 160, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 176, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 274, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 335, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 448, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 501, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 516, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 547, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 583, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 793, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (38, 876, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 71, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 73, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 168, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 222, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 290, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 293, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 425, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 456, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 476, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 559, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 587, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 598, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 683, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 689, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 696, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 736, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 831, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (39, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 11, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 128, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 163, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 374, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 394, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 466, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 723, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 747, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 799, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 933, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (40, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 4, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 60, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 69, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 86, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 100, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 150, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 159, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 230, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 252, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 305, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 544, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 596, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 657, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 678, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 721, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 724, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 799, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (41, 942, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 24, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 139, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 309, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 333, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 502, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 505, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 527, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 535, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 546, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 568, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 687, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 713, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 798, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 861, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 865, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 867, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 876, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 890, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 907, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 922, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (42, 932, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 19, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 147, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 161, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 180, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 276, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 330, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 344, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 359, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 377, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 533, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 598, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 605, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 621, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 753, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 917, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (43, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 94, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 176, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 434, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 490, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 591, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 598, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 604, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 699, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 751, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 825, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 854, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 875, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 878, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 883, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 896, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 902, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 937, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 952, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 982, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (44, 998, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 18, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 65, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 115, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 187, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 198, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 330, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 416, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 502, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 767, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 778, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 797, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 810, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 895, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 900, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 901, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 925, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 975, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (45, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 38, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 51, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 174, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 319, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 448, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 456, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 478, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 567, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 766, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 820, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 836, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 889, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (46, 991, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 36, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 351, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 670, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 770, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 777, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 787, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 790, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 913, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (47, 973, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 99, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 101, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 134, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 150, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 211, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 267, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 287, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 295, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 315, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 349, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 559, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 570, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 599, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 645, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 792, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 922, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (48, 926, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 31, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 151, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 195, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 282, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 391, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 400, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 423, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 558, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 579, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 595, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 662, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 709, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 716, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 927, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 977, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (49, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 248, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 274, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 288, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 327, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 372, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 417, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 476, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 504, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 552, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 591, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 621, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 632, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 645, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 672, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 840, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 897, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 918, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (50, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 5, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 103, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 408, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 461, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 490, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 525, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 627, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 678, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 733, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 750, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 891, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 895, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 940, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 974, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (51, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 20, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 92, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 96, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 108, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 376, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 388, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 424, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 515, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 584, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 596, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 664, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 675, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 689, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 812, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 878, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 915, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 951, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (52, 999, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 51, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 126, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 181, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 268, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 285, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 358, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 386, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 447, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 465, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 490, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 492, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 518, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 573, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 577, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 727, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 937, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 947, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 961, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (53, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 129, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 150, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 184, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 285, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 510, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 524, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 546, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 658, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 861, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 913, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 970, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (54, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 8, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 75, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 340, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 403, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 486, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 620, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 709, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 776, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 790, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 930, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (55, 963, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 236, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 298, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 354, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 417, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 421, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 593, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 750, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 844, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 851, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 936, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (56, 965, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 16, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 101, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 114, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 134, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 192, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 213, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 267, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 317, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 340, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 447, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 502, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 605, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 685, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 707, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 767, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 891, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (57, 918, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 68, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 128, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 135, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 175, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 235, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 316, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 417, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 426, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 460, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 477, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 578, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 632, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 638, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 698, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 755, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 800, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (58, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 5, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 46, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 54, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 72, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 129, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 130, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 183, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 210, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 295, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 572, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 644, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 689, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 713, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 749, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 943, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 946, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (59, 984, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 31, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 142, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 179, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 186, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 222, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 235, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 299, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 334, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 376, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 423, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 436, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 493, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 534, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 658, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 783, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 805, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 952, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 971, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (60, 986, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 235, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 237, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 362, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 372, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 374, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 423, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 518, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 535, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 585, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 639, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 766, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 767, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 780, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 831, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (61, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 54, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 100, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 101, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 129, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 198, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 211, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 231, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 272, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 295, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 337, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 375, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 406, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 413, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 445, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 465, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 707, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 951, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 981, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (62, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 73, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 134, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 167, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 225, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 248, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 278, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 392, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 633, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 763, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 932, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (63, 981, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 3, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 37, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 124, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 291, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 335, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 448, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 471, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 543, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 557, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 569, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 572, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 646, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 860, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 925, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (64, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 46, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 97, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 106, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 158, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 276, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 305, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 371, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 471, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 476, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 496, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 516, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 556, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 577, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 658, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 683, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 735, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 951, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (65, 965, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 55, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 143, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 229, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 230, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 283, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 300, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 350, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 376, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 424, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 434, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 676, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 706, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 793, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 871, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 915, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 951, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 960, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (66, 999, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 24, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 57, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 244, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 408, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 477, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 496, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 512, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 601, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 766, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 861, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 870, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 915, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 972, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (67, 981, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 45, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 161, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 205, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 213, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 215, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 315, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 325, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 331, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 357, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 378, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 380, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 386, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 435, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 497, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 671, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 706, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 747, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 840, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (68, 971, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 15, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 202, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 236, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 300, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 374, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 466, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 720, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 722, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 761, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 791, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 877, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (69, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 50, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 92, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 202, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 227, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 290, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 304, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 343, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 466, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 504, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 584, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 823, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (70, 964, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 26, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 317, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 359, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 362, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 399, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 532, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 638, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 773, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 918, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (71, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 237, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 325, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 331, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 405, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 550, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 609, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 623, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 640, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 718, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 743, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 773, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 854, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 865, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 964, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (72, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 36, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 45, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 51, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 77, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 275, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 374, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 562, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 565, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 627, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 666, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 667, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 707, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 748, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 823, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 936, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 946, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 950, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (73, 998, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 28, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 44, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 185, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 192, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 543, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 617, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 626, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 663, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 704, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 720, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 747, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 780, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 804, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 836, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 848, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 872, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 902, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (74, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 143, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 222, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 372, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 436, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 445, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 492, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 498, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 547, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 579, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 645, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 667, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 780, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 870, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (75, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 60, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 68, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 95, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 187, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 234, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 251, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 444, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 464, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 498, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 568, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 604, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 709, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 760, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 765, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 850, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 866, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 870, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 935, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (76, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 13, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 22, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 73, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 78, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 224, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 240, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 261, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 343, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 442, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 566, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 749, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 943, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 963, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (77, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 86, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 261, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 265, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 387, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 505, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 530, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 552, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 599, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 670, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 689, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 762, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 767, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 963, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (78, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 32, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 205, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 230, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 267, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 269, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 299, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 430, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 634, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 646, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 727, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 750, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 753, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 776, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 840, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (79, 916, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 69, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 118, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 124, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 175, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 343, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 362, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 436, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 687, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 709, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 888, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 941, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (80, 979, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 4, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 11, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 59, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 186, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 215, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 232, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 267, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 268, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 304, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 332, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 389, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 465, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 505, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 527, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 578, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 579, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 613, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 643, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 692, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 761, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (81, 910, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 104, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 143, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 247, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 290, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 316, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 344, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 480, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 497, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 527, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 750, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 787, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 838, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 870, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 877, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 911, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 954, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (82, 985, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 110, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 135, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 165, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 217, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 247, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 268, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 279, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 281, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 339, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 340, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 412, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 631, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 655, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 672, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 777, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 873, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (83, 932, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 19, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 46, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 175, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 238, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 281, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 290, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 317, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 413, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 460, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 479, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 566, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 589, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 646, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 782, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 843, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 975, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (84, 996, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 2, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 14, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 72, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 92, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 216, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 290, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 337, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 421, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 461, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 478, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 543, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 558, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 591, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 630, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 678, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 711, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 761, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 812, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 875, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 895, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (85, 960, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 137, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 163, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 196, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 216, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 331, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 364, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 391, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 432, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 482, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 486, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 623, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 631, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 760, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 808, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 857, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 878, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 905, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (86, 929, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 157, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 161, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 421, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 570, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 599, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 706, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 718, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 721, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 870, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 952, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (87, 961, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 4, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 76, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 128, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 234, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 304, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 620, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 668, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 819, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 881, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 929, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 940, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (88, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 103, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 182, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 187, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 266, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 406, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 488, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 970, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (89, 976, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 2, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 11, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 100, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 330, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 363, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 374, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 384, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 391, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 406, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 442, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 451, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 586, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 633, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 663, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 676, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 838, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 855, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 901, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (90, 925, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 13, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 176, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 181, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 190, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 335, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 416, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 447, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 480, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 493, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 509, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 511, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 859, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 941, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (91, 982, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 94, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 103, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 104, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 123, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 137, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 229, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 381, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 436, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 443, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 470, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 505, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 512, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 543, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 547, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 568, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 662, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 699, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 712, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 825, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 838, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 889, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 929, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (92, 991, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 71, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 124, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 325, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 339, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 445, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 573, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 621, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 644, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 678, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 699, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 777, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 916, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (93, 982, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 13, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 60, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 76, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 206, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 228, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 270, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 275, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 337, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 354, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 402, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 512, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 533, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 712, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 713, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 724, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 775, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 950, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (94, 989, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 22, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 65, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 74, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 126, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 294, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 329, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 375, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 424, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 498, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 546, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 627, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 690, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 748, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 813, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 828, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 855, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 903, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (95, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 8, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 36, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 54, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 134, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 209, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 244, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 430, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 486, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 572, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 661, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 778, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (96, 987, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 143, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 358, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 466, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 518, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 641, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 656, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 755, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 826, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 930, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 933, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 947, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (97, 951, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 72, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 81, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 183, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 634, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 721, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 765, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 782, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 824, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 955, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 985, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (98, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 7, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 325, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 381, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 490, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 512, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 572, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 620, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 672, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 741, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 796, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (99, 982, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 118, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 411, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 563, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 718, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 759, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 850, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 872, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 877, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 919, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 979, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 991, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (100, 992, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 60, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 189, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 275, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 289, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 511, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 568, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 617, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 655, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 662, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 774, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 787, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 828, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 841, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 932, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 936, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 941, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 984, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (101, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 20, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 123, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 124, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 200, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 205, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 268, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 329, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 334, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 351, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 526, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 544, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 605, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 624, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 631, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 712, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 796, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 810, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 828, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 837, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 845, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 979, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (102, 980, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 5, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 118, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 130, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 206, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 215, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 221, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 271, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 285, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 315, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 318, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 333, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 356, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 360, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 378, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 585, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 609, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 639, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 643, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 692, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 735, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 822, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 895, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 903, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 942, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (103, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 19, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 59, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 70, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 136, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 156, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 184, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 198, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 259, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 287, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 309, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 313, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 394, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 516, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 583, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 657, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 677, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 739, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 904, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 926, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 984, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (104, 999, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 15, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 21, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 116, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 158, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 283, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 315, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 333, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 372, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 377, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 530, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 558, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 750, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 831, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 906, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 910, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 915, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 954, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (105, 994, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 44, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 83, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 108, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 126, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 136, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 189, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 204, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 229, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 365, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 399, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 439, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 505, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 559, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 566, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 585, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 639, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 659, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 675, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 687, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 763, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 780, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 866, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 881, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (106, 934, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 62, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 136, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 138, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 165, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 209, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 220, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 277, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 388, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 392, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 409, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 430, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 445, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 454, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 534, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 774, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 796, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 831, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 859, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 905, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 973, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (107, 977, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 137, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 278, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 302, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 350, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 378, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 495, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 507, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 567, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 652, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 655, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 696, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 721, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 733, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 741, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (108, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 77, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 157, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 174, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 190, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 281, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 657, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 753, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 786, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 863, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 885, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 955, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (109, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 8, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 62, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 126, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 156, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 343, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 360, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 435, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 525, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 539, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 625, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 801, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 961, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (110, 987, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 61, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 78, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 98, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 179, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 325, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 359, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 382, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 403, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 555, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 643, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 669, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 699, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 777, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 919, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 962, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (111, 973, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 37, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 151, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 173, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 231, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 443, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 565, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 666, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 796, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 865, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (112, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 116, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 181, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 218, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 292, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 403, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 525, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 656, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 700, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 723, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 748, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 838, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 890, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (113, 981, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 13, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 68, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 210, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 237, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 305, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 339, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 425, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 841, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 861, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 866, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 913, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 961, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (114, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 246, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 277, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 302, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 391, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 531, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 661, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 671, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 740, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 952, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 955, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 985, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (115, 994, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 36, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 128, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 384, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 412, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 451, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 481, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 492, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 584, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 647, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 653, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 742, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 844, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 939, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (116, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 15, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 167, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 190, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 224, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 246, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 298, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 316, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 337, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 423, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 432, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 459, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 550, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 578, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 707, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 739, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 778, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 783, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 797, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 812, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 831, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (117, 926, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 41, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 55, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 136, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 151, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 384, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 399, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 499, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 558, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 572, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 641, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 656, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 695, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 735, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (118, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 21, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 64, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 143, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 171, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 173, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 381, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 394, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 412, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 454, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 509, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 567, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 570, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 614, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 751, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 782, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 786, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 900, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (119, 939, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 57, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 149, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 231, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 238, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 424, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 641, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 659, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 682, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 691, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 715, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 722, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 746, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 898, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 911, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (120, 994, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 161, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 186, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 198, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 220, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 222, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 284, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 449, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 479, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 633, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 658, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 666, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 780, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 884, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 885, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (121, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 22, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 76, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 83, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 157, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 158, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 227, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 238, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 300, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 363, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 470, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 620, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 718, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 961, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (122, 998, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 3, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 151, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 185, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 234, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 245, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 246, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 266, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 429, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 442, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 479, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 480, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 503, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 530, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 577, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 589, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 593, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 730, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 786, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 860, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 926, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (123, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 22, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 64, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 106, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 113, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 190, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 246, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 289, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 343, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 449, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 539, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 601, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 742, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 775, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 814, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 882, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 987, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (124, 997, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 62, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 98, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 100, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 114, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 175, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 204, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 238, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 324, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 428, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 429, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 497, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 557, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 568, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 584, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 623, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 664, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 683, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 877, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 949, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (125, 965, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 21, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 96, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 288, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 317, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 419, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 685, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 836, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (126, 860, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 36, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 79, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 157, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 202, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 333, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 354, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 366, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 382, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 388, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 411, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 459, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 573, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 613, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 617, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 641, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 727, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 749, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 763, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 791, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 819, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 911, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (127, 970, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 26, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 82, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 168, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 238, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 299, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 516, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 614, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 671, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 696, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 759, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 774, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 814, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 899, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 949, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (128, 965, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 101, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 202, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 230, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 247, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 348, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 391, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 471, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 640, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 669, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 684, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 805, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 826, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 857, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 910, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (129, 962, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 26, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 37, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 57, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 375, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 416, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 478, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 507, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 525, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 725, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 930, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (130, 981, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 48, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 94, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 147, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 206, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 432, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 436, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 479, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 515, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 539, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 647, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 713, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 770, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 798, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 875, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 881, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (131, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 81, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 82, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 156, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 377, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 562, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 586, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 626, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 698, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 756, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 806, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 897, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 899, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 904, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 930, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (132, 987, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 7, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 51, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 172, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 210, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 270, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 280, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 351, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 368, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 390, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 397, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 514, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 594, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 652, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 727, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 806, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 882, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 933, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (133, 952, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 132, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 145, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 161, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 278, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 386, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 413, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 558, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 624, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 655, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 683, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 690, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 861, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 896, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 897, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 915, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 927, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (134, 936, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 41, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 65, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 269, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 357, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 364, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 455, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 814, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (135, 905, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 20, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 61, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 214, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 229, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 256, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 271, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 288, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 300, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 364, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 552, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 620, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 686, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 806, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 808, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 818, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 933, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (136, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 14, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 96, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 160, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 224, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 268, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 304, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 390, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 530, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 610, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 745, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 841, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (137, 917, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 8, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 61, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 157, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 214, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 376, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 403, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 453, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 553, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 583, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 627, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 639, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 695, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 747, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 885, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 970, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (138, 989, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 20, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 57, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 74, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 181, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 200, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 229, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 261, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 266, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 282, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 284, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 373, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 447, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 570, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 605, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 691, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 706, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 746, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (139, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 77, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 112, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 135, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 185, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 373, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 498, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 509, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 587, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 599, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 647, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 670, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 730, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 736, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 742, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 778, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 820, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 857, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 934, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (140, 999, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 191, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 358, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 380, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 589, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 740, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 787, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 821, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 829, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 840, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 863, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (141, 992, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 18, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 139, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 186, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 199, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 248, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 328, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 350, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 371, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 470, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 481, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 501, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 504, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 575, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 712, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 735, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 759, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 794, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 859, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 863, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 875, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 906, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (142, 999, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 79, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 175, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 232, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 316, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 339, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 386, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 404, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 497, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 603, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 613, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 659, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 660, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 687, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 690, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 706, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 792, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 821, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 872, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 878, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 906, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (143, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 18, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 79, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 99, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 123, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 127, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 130, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 135, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 184, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 216, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 228, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 260, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 272, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 291, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 293, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 393, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 504, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 540, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 599, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 668, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 702, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 753, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 762, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 776, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 845, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (144, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 293, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 402, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 409, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 457, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 487, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 527, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 625, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 629, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 641, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 661, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 664, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 692, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 713, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 748, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 822, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 893, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (145, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 16, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 191, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 207, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 218, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 278, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 314, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 372, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 384, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 402, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 429, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 512, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 514, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 591, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 720, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 731, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 871, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 922, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 955, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (146, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 4, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 131, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 139, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 145, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 251, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 254, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 295, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 298, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 305, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 310, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 318, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 333, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 351, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 394, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 402, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 405, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 443, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 563, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 708, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (147, 987, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 57, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 133, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 149, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 226, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 368, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 422, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 633, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 718, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (148, 792, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 72, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 95, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 118, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 139, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 159, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 169, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 339, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 354, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 362, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 365, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 631, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 670, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 685, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 761, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 782, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 810, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 899, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 905, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 913, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 947, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 949, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (149, 992, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 23, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 75, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 94, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 105, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 168, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 190, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 206, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 270, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 285, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 386, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 446, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 447, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 629, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 647, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 672, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 697, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 728, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 777, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 854, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 873, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 887, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 889, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (150, 962, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 131, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 167, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 217, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 232, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 382, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 451, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 482, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 501, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 527, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 539, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 570, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 634, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 658, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 703, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 895, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (151, 989, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 59, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 217, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 248, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 318, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 332, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 476, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 578, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 611, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 821, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 846, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 891, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 898, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 927, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 964, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (152, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 64, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 136, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 180, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 203, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 231, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 444, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 476, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 480, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 486, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 536, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 627, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 756, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 766, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 919, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (153, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 158, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 169, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 170, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 274, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 276, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 282, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 299, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 314, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 399, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 421, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 440, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 698, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 954, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (154, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 20, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 128, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 153, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 220, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 312, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 359, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 383, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 387, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 407, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 459, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 513, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 584, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 630, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 885, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 890, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 941, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 987, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 997, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (155, 1000, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 53, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 198, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 244, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 263, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 285, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 349, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 448, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 467, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 504, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 518, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 593, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 646, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 754, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 775, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (156, 844, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 24, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 159, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 183, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 210, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 217, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 291, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 321, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 400, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 406, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 496, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 535, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 573, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 604, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 661, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 696, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 713, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 835, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 913, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (157, 973, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 32, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 47, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 64, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 66, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 102, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 177, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 178, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 215, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 293, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 483, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 532, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 555, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 581, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 601, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 626, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 799, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 812, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 824, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 840, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 896, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (158, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 20, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 82, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 127, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 187, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 206, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 248, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 343, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 344, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 364, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 600, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 789, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 800, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 818, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 876, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 907, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (159, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 2, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 242, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 267, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 275, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 368, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 455, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 579, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 660, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 755, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 767, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 794, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 826, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 883, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 950, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (160, 954, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 58, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 90, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 247, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 269, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 281, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 340, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 414, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 425, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 526, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 644, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 653, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 655, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 669, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 684, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 749, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 825, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 850, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (161, 927, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 4, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 7, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 18, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 28, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 32, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 41, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 274, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 279, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 409, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 612, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 659, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 786, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 844, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 909, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (162, 968, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 30, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 45, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 180, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 239, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 283, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 304, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 307, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 394, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 409, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 434, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 444, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 881, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 891, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 947, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (163, 996, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 15, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 23, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 169, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 252, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 324, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 431, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 448, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 469, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 610, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 613, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 681, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 698, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 801, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 820, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 851, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 884, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 957, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (164, 984, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 72, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 95, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 204, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 360, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 375, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 421, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 607, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 644, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 659, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 798, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 832, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 947, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 948, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (165, 962, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 38, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 55, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 61, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 68, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 86, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 306, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 366, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 426, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 580, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 867, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 944, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (166, 1000, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 72, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 107, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 120, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 191, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 294, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 319, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 339, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 341, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 496, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 626, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 672, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 692, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 717, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 794, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 800, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 856, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 882, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (167, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 32, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 56, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 92, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 115, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 196, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 237, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 241, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 255, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 305, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 387, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 438, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 602, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 619, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 626, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 652, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 678, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 685, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 804, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 826, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 841, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 886, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 889, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 927, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (168, 959, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 78, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 93, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 246, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 248, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 289, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 326, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 349, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 372, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 398, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 434, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 505, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 634, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 727, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 778, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 894, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 897, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 954, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 992, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (169, 998, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 7, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 15, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 102, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 139, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 180, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 184, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 212, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 299, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 358, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 416, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 877, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 886, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 925, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (170, 996, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 181, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 318, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 342, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 397, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 447, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 466, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 566, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 608, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 625, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 645, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 701, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 761, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 872, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 898, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 903, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (171, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 57, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 100, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 148, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 215, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 302, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 345, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 368, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 385, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 423, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 487, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 493, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 567, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 609, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 639, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 661, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 667, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 710, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 771, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (172, 959, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 55, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 74, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 80, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 106, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 154, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 235, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 313, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 405, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 491, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 496, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 550, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 564, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 688, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 753, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 757, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 857, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 928, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (173, 933, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 11, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 61, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 168, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 298, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 352, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 442, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 451, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 496, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 610, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 659, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 677, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 722, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 780, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 797, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (174, 982, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 129, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 190, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 191, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 362, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 405, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 424, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 439, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 442, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 483, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 591, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 596, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 616, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 778, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 828, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 842, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 890, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 977, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 978, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (175, 998, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 13, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 73, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 89, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 150, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 162, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 238, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 252, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 320, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 417, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 441, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 461, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 521, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 543, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 573, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 699, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 740, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 746, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 839, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 859, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 872, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (176, 946, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 52, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 55, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 86, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 175, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 188, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 235, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 237, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 289, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 363, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 401, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 433, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 458, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 543, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 563, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 683, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 684, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 726, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 751, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 763, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 764, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 910, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (177, 956, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 30, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 34, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 160, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 194, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 197, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 273, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 397, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 483, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 587, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 708, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 733, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 762, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 930, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 974, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 983, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (178, 1000, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 24, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 27, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 65, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 85, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 131, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 159, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 193, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 250, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 291, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 353, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 463, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 468, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 489, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 566, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 698, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 737, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 852, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 931, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 960, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (179, 976, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 12, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 195, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 441, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 609, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 657, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 724, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 732, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 777, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 809, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 811, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 820, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 824, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 847, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 955, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (180, 963, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 5, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 74, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 78, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 83, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 152, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 195, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 233, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 381, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 387, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 403, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 409, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 456, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 507, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 539, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 542, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 546, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 579, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 596, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 604, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 609, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 625, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 744, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 816, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 836, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 868, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 870, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 907, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 911, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 921, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (181, 991, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 33, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 160, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 301, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 324, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 346, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 362, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 391, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 413, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 421, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 590, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 639, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 668, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 677, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 695, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 720, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 819, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 828, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 845, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 864, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 940, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (182, 990, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 32, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 40, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 71, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 113, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 313, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 388, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 389, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 390, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 495, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 636, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 715, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 850, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 862, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 941, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 949, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (183, 983, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 35, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 169, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 221, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 336, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 371, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 452, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 486, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 492, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 500, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 574, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 580, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 640, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 642, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 650, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 661, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 684, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 745, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 772, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 787, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 867, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 959, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 966, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (184, 985, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 7, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 95, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 138, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 265, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 286, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 360, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 411, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 427, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 437, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 448, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 510, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 518, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 571, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 584, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 631, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 665, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 694, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 730, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 761, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 818, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 845, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 880, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 882, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 919, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 920, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 965, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (185, 973, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 95, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 187, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 208, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 228, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 237, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 422, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 482, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 508, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 552, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 579, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 637, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 648, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 654, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 729, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 983, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (186, 994, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 17, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 25, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 51, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 73, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 76, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 98, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 110, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 127, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 168, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 222, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 224, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 297, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 354, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 417, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 435, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 441, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 499, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 561, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 617, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 625, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 664, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 671, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 768, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 779, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 906, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 923, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (187, 976, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 10, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 14, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 51, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 102, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 111, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 146, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 206, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 223, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 289, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 322, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 338, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 396, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 412, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 506, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 517, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 529, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 566, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 593, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 662, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 770, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 773, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 774, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 925, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 988, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (188, 989, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 43, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 82, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 171, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 266, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 272, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 315, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 378, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 492, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 509, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 512, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 519, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 533, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 548, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 734, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 748, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 788, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 820, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 853, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 882, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 896, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 899, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (189, 940, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 38, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 54, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 62, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 87, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 173, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 234, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 253, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 278, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 310, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 374, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 411, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 426, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 472, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 549, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 562, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 606, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 623, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 679, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 682, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 693, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 695, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 705, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 708, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 802, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 806, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 874, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (190, 959, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 16, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 39, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 185, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 219, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 293, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 296, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 378, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 410, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 420, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 461, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 544, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 551, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 596, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 638, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 668, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 692, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 775, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 801, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 819, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 827, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 830, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 849, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 914, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 969, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 971, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (191, 993, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 16, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 69, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 117, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 155, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 166, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 179, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 214, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 367, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 426, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 465, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 470, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 475, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 485, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 578, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 614, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 618, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 622, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 674, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 677, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 680, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 682, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 708, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 711, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 747, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 763, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (192, 819, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 44, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 80, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 103, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 119, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 291, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 352, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 358, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 376, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 412, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 689, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 709, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 745, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 807, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 828, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 834, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 851, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 937, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (193, 960, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 9, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 42, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 86, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 88, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 98, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 135, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 161, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 163, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 215, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 232, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 352, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 415, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 486, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 498, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 531, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 719, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 786, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 872, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 938, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (194, 940, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 129, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 130, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 141, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 144, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 298, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 359, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 361, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 392, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 403, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 494, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 520, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 534, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 592, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 649, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 658, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 673, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 677, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 706, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 738, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 781, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 794, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 813, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 869, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 885, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (195, 962, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 64, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 122, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 156, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 169, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 276, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 284, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 324, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 423, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 473, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 484, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 515, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 524, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 560, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 575, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 576, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 587, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 615, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 635, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 684, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 795, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 833, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 837, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 906, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 908, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 919, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 939, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (196, 972, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 6, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 29, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 63, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 123, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 129, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 147, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 164, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 189, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 243, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 249, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 258, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 364, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 369, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 370, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 418, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 522, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 531, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 554, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 598, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 691, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 724, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 746, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 752, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 769, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 815, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 916, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 950, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 967, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 974, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 979, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (197, 995, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 1, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 109, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 125, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 186, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 262, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 264, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 303, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 309, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 311, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 329, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 347, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 379, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 395, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 406, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 450, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 464, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 482, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 499, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 536, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 545, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 555, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 568, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 570, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 588, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 597, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 628, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 745, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 758, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 796, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 806, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 817, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 843, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 858, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 871, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 886, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 892, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 924, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 952, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (198, 997, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 67, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 84, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 145, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 159, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 216, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 432, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 541, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 604, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 640, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 689, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 730, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 784, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 785, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 886, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (199, 953, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 5, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 49, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 80, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 116, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 121, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 149, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 346, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 419, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 462, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 465, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 474, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 537, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 538, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 544, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 714, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 879, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 912, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 945, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 958, '2006-02-15 10:05:03'); -INSERT INTO dvds.film_actor VALUES (200, 993, '2006-02-15 10:05:03'); - - --- --- TOC entry 3320 (class 0 OID 16450) --- Dependencies: 206 --- Data for Name: film_category; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.film_category VALUES (1, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (2, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (3, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (4, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (5, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (6, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (7, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (8, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (9, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (10, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (11, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (12, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (13, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (14, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (15, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (16, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (17, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (18, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (19, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (20, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (21, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (22, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (23, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (24, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (25, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (26, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (27, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (28, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (29, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (30, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (31, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (32, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (33, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (34, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (35, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (36, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (37, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (38, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (39, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (40, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (41, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (42, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (43, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (44, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (45, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (46, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (47, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (48, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (49, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (50, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (51, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (52, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (53, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (54, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (55, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (56, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (57, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (58, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (59, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (60, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (61, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (62, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (63, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (64, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (65, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (66, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (67, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (68, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (69, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (70, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (71, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (72, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (73, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (74, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (75, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (76, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (77, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (78, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (79, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (80, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (81, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (82, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (83, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (84, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (85, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (86, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (87, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (88, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (89, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (90, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (91, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (92, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (93, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (94, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (95, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (96, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (97, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (98, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (99, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (100, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (101, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (102, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (103, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (104, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (105, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (106, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (107, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (108, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (109, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (110, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (111, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (112, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (113, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (114, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (115, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (116, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (117, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (118, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (119, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (120, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (121, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (122, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (123, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (124, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (125, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (126, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (127, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (128, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (129, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (130, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (131, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (132, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (133, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (134, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (135, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (136, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (137, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (138, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (139, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (140, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (141, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (142, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (143, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (144, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (145, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (146, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (147, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (148, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (149, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (150, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (151, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (152, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (153, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (154, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (155, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (156, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (157, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (158, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (159, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (160, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (161, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (162, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (163, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (164, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (165, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (166, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (167, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (168, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (169, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (170, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (171, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (172, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (173, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (174, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (175, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (176, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (177, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (178, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (179, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (180, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (181, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (182, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (183, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (184, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (185, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (186, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (187, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (188, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (189, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (190, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (191, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (192, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (193, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (194, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (195, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (196, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (197, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (198, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (199, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (200, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (201, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (202, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (203, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (204, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (205, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (206, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (207, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (208, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (209, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (210, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (211, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (212, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (213, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (214, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (215, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (216, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (217, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (218, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (219, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (220, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (221, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (222, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (223, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (224, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (225, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (226, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (227, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (228, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (229, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (230, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (231, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (232, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (233, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (234, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (235, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (236, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (237, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (238, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (239, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (240, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (241, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (242, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (243, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (244, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (245, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (246, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (247, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (248, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (249, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (250, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (251, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (252, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (253, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (254, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (255, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (256, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (257, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (258, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (259, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (260, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (261, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (262, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (263, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (264, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (265, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (266, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (267, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (268, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (269, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (270, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (271, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (272, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (273, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (274, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (275, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (276, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (277, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (278, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (279, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (280, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (281, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (282, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (283, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (284, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (285, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (286, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (287, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (288, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (289, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (290, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (291, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (292, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (293, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (294, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (295, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (296, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (297, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (298, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (299, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (300, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (301, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (302, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (303, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (304, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (305, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (306, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (307, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (308, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (309, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (310, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (311, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (312, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (313, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (314, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (315, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (316, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (317, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (318, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (319, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (320, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (321, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (322, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (323, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (324, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (325, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (326, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (327, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (328, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (329, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (330, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (331, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (332, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (333, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (334, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (335, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (336, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (337, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (338, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (339, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (340, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (341, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (342, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (343, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (344, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (345, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (346, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (347, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (348, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (349, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (350, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (351, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (352, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (353, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (354, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (355, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (356, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (357, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (358, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (359, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (360, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (361, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (362, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (363, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (364, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (365, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (366, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (367, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (368, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (369, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (370, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (371, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (372, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (373, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (374, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (375, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (376, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (377, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (378, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (379, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (380, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (381, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (382, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (383, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (384, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (385, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (386, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (387, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (388, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (389, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (390, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (391, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (392, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (393, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (394, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (395, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (396, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (397, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (398, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (399, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (400, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (401, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (402, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (403, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (404, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (405, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (406, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (407, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (408, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (409, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (410, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (411, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (412, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (413, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (414, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (415, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (416, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (417, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (418, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (419, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (420, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (421, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (422, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (423, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (424, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (425, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (426, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (427, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (428, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (429, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (430, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (431, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (432, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (433, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (434, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (435, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (436, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (437, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (438, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (439, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (440, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (441, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (442, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (443, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (444, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (445, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (446, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (447, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (448, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (449, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (450, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (451, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (452, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (453, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (454, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (455, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (456, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (457, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (458, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (459, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (460, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (461, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (462, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (463, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (464, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (465, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (466, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (467, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (468, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (469, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (470, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (471, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (472, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (473, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (474, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (475, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (476, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (477, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (478, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (479, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (480, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (481, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (482, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (483, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (484, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (485, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (486, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (487, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (488, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (489, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (490, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (491, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (492, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (493, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (494, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (495, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (496, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (497, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (498, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (499, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (500, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (501, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (502, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (503, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (504, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (505, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (506, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (507, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (508, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (509, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (510, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (511, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (512, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (513, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (514, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (515, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (516, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (517, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (518, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (519, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (520, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (521, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (522, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (523, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (524, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (525, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (526, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (527, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (528, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (529, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (530, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (531, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (532, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (533, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (534, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (535, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (536, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (537, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (538, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (539, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (540, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (541, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (542, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (543, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (544, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (545, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (546, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (547, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (548, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (549, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (550, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (551, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (552, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (553, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (554, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (555, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (556, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (557, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (558, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (559, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (560, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (561, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (562, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (563, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (564, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (565, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (566, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (567, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (568, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (569, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (570, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (571, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (572, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (573, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (574, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (575, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (576, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (577, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (578, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (579, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (580, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (581, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (582, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (583, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (584, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (585, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (586, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (587, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (588, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (589, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (590, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (591, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (592, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (593, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (594, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (595, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (596, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (597, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (598, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (599, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (600, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (601, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (602, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (603, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (604, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (605, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (606, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (607, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (608, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (609, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (610, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (611, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (612, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (613, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (614, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (615, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (616, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (617, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (618, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (619, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (620, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (621, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (622, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (623, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (624, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (625, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (626, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (627, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (628, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (629, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (630, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (631, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (632, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (633, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (634, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (635, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (636, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (637, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (638, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (639, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (640, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (641, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (642, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (643, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (644, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (645, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (646, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (647, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (648, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (649, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (650, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (651, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (652, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (653, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (654, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (655, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (656, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (657, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (658, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (659, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (660, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (661, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (662, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (663, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (664, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (665, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (666, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (667, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (668, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (669, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (670, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (671, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (672, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (673, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (674, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (675, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (676, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (677, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (678, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (679, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (680, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (681, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (682, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (683, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (684, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (685, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (686, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (687, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (688, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (689, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (690, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (691, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (692, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (693, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (694, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (695, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (696, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (697, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (698, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (699, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (700, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (701, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (702, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (703, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (704, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (705, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (706, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (707, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (708, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (709, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (710, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (711, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (712, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (713, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (714, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (715, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (716, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (717, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (718, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (719, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (720, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (721, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (722, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (723, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (724, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (725, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (726, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (727, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (728, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (729, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (730, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (731, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (732, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (733, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (734, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (735, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (736, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (737, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (738, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (739, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (740, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (741, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (742, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (743, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (744, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (745, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (746, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (747, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (748, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (749, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (750, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (751, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (752, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (753, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (754, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (755, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (756, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (757, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (758, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (759, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (760, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (761, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (762, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (763, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (764, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (765, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (766, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (767, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (768, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (769, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (770, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (771, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (772, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (773, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (774, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (775, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (776, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (777, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (778, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (779, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (780, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (781, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (782, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (783, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (784, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (785, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (786, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (787, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (788, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (789, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (790, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (791, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (792, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (793, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (794, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (795, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (796, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (797, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (798, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (799, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (800, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (801, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (802, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (803, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (804, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (805, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (806, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (807, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (808, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (809, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (810, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (811, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (812, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (813, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (814, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (815, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (816, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (817, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (818, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (819, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (820, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (821, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (822, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (823, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (824, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (825, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (826, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (827, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (828, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (829, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (830, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (831, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (832, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (833, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (834, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (835, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (836, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (837, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (838, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (839, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (840, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (841, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (842, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (843, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (844, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (845, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (846, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (847, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (848, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (849, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (850, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (851, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (852, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (853, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (854, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (855, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (856, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (857, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (858, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (859, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (860, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (861, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (862, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (863, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (864, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (865, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (866, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (867, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (868, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (869, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (870, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (871, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (872, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (873, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (874, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (875, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (876, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (877, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (878, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (879, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (880, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (881, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (882, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (883, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (884, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (885, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (886, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (887, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (888, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (889, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (890, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (891, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (892, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (893, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (894, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (895, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (896, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (897, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (898, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (899, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (900, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (901, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (902, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (903, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (904, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (905, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (906, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (907, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (908, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (909, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (910, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (911, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (912, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (913, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (914, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (915, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (916, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (917, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (918, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (919, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (920, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (921, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (922, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (923, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (924, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (925, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (926, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (927, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (928, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (929, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (930, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (931, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (932, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (933, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (934, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (935, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (936, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (937, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (938, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (939, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (940, 15, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (941, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (942, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (943, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (944, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (945, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (946, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (947, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (948, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (949, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (950, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (951, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (952, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (953, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (954, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (955, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (956, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (957, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (958, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (959, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (960, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (961, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (962, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (963, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (964, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (965, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (966, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (967, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (968, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (969, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (970, 4, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (971, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (972, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (973, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (974, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (975, 8, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (976, 10, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (977, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (978, 5, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (979, 7, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (980, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (981, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (982, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (983, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (984, 9, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (985, 14, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (986, 2, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (987, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (988, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (989, 16, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (990, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (991, 1, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (992, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (993, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (994, 13, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (995, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (996, 6, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (997, 12, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (998, 11, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (999, 3, '2006-02-15 10:07:09'); -INSERT INTO dvds.film_category VALUES (1000, 5, '2006-02-15 10:07:09'); - - --- --- TOC entry 3328 (class 0 OID 16492) --- Dependencies: 217 --- Data for Name: inventory; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.inventory VALUES (1, 1, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2, 1, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3, 1, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4, 1, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (5, 1, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (6, 1, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (7, 1, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (8, 1, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (9, 2, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (10, 2, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (11, 2, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (12, 3, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (13, 3, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (14, 3, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (15, 3, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (16, 4, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (17, 4, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (18, 4, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (19, 4, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (20, 4, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (21, 4, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (22, 4, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (23, 5, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (24, 5, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (25, 5, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (26, 6, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (27, 6, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (28, 6, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (29, 6, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (30, 6, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (31, 6, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (32, 7, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (33, 7, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (34, 7, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (35, 7, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (36, 7, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (37, 8, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (38, 8, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (39, 8, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (40, 8, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (41, 9, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (42, 9, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (43, 9, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (44, 9, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (45, 9, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (46, 10, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (47, 10, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (48, 10, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (49, 10, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (50, 10, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (51, 10, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (52, 10, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (53, 11, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (54, 11, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (55, 11, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (56, 11, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (57, 11, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (58, 11, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (59, 11, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (60, 12, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (61, 12, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (62, 12, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (63, 12, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (64, 12, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (65, 12, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (66, 12, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (67, 13, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (68, 13, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (69, 13, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (70, 13, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (71, 15, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (72, 15, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (73, 15, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (74, 15, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (75, 15, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (76, 15, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (77, 16, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (78, 16, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (79, 16, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (80, 16, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (81, 17, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (82, 17, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (83, 17, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (84, 17, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (85, 17, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (86, 17, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (87, 18, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (88, 18, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (89, 18, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (90, 18, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (91, 18, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (92, 18, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (93, 19, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (94, 19, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (95, 19, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (96, 19, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (97, 19, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (98, 19, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (99, 20, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (100, 20, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (101, 20, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (102, 21, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (103, 21, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (104, 21, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (105, 21, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (106, 21, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (107, 21, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (108, 22, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (109, 22, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (110, 22, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (111, 22, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (112, 22, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (113, 22, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (114, 22, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (115, 23, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (116, 23, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (117, 23, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (118, 23, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (119, 23, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (120, 24, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (121, 24, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (122, 24, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (123, 24, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (124, 25, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (125, 25, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (126, 25, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (127, 25, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (128, 25, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (129, 25, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (130, 26, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (131, 26, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (132, 26, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (133, 26, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (134, 26, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (135, 27, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (136, 27, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (137, 27, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (138, 27, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (139, 28, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (140, 28, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (141, 28, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (142, 29, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (143, 29, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (144, 30, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (145, 30, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (146, 31, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (147, 31, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (148, 31, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (149, 31, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (150, 31, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (151, 31, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (152, 31, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (153, 31, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (154, 32, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (155, 32, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (156, 34, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (157, 34, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (158, 34, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (159, 34, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (160, 35, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (161, 35, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (162, 35, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (163, 35, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (164, 35, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (165, 35, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (166, 35, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (167, 37, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (168, 37, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (169, 37, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (170, 37, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (171, 37, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (172, 37, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (173, 37, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (174, 39, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (175, 39, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (176, 39, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (177, 39, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (178, 39, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (179, 39, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (180, 39, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (181, 40, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (182, 40, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (183, 40, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (184, 40, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (185, 42, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (186, 42, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (187, 42, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (188, 42, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (189, 43, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (190, 43, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (191, 43, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (192, 43, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (193, 43, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (194, 43, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (195, 43, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (196, 44, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (197, 44, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (198, 44, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (199, 44, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (200, 44, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (201, 45, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (202, 45, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (203, 45, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (204, 45, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (205, 45, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (206, 45, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (207, 46, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (208, 46, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (209, 46, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (210, 47, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (211, 47, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (212, 48, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (213, 48, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (214, 48, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (215, 48, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (216, 49, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (217, 49, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (218, 49, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (219, 49, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (220, 49, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (221, 49, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (222, 50, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (223, 50, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (224, 50, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (225, 50, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (226, 50, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (227, 51, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (228, 51, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (229, 51, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (230, 51, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (231, 51, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (232, 51, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (233, 52, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (234, 52, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (235, 53, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (236, 53, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (237, 54, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (238, 54, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (239, 54, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (240, 54, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (241, 54, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (242, 55, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (243, 55, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (244, 55, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (245, 55, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (246, 55, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (247, 55, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (248, 56, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (249, 56, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (250, 56, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (251, 56, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (252, 56, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (253, 57, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (254, 57, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (255, 57, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (256, 57, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (257, 57, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (258, 57, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (259, 57, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (260, 58, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (261, 58, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (262, 58, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (263, 58, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (264, 59, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (265, 59, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (266, 59, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (267, 59, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (268, 59, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (269, 60, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (270, 60, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (271, 60, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (272, 61, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (273, 61, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (274, 61, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (275, 61, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (276, 61, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (277, 61, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (278, 62, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (279, 62, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (280, 63, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (281, 63, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (282, 63, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (283, 63, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (284, 64, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (285, 64, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (286, 64, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (287, 65, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (288, 65, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (289, 65, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (290, 65, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (291, 66, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (292, 66, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (293, 66, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (294, 67, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (295, 67, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (296, 67, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (297, 67, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (298, 67, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (299, 67, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (300, 68, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (301, 68, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (302, 68, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (303, 68, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (304, 69, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (305, 69, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (306, 69, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (307, 69, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (308, 69, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (309, 69, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (310, 69, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (311, 69, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (312, 70, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (313, 70, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (314, 70, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (315, 70, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (316, 71, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (317, 71, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (318, 71, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (319, 71, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (320, 72, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (321, 72, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (322, 72, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (323, 72, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (324, 72, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (325, 72, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (326, 73, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (327, 73, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (328, 73, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (329, 73, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (330, 73, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (331, 73, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (332, 73, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (333, 73, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (334, 74, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (335, 74, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (336, 74, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (337, 74, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (338, 74, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (339, 75, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (340, 75, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (341, 75, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (342, 76, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (343, 76, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (344, 76, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (345, 77, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (346, 77, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (347, 77, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (348, 77, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (349, 77, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (350, 77, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (351, 78, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (352, 78, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (353, 78, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (354, 78, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (355, 78, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (356, 78, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (357, 78, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (358, 79, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (359, 79, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (360, 79, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (361, 79, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (362, 79, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (363, 79, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (364, 80, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (365, 80, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (366, 80, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (367, 80, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (368, 81, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (369, 81, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (370, 81, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (371, 81, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (372, 82, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (373, 82, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (374, 83, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (375, 83, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (376, 83, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (377, 83, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (378, 83, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (379, 84, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (380, 84, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (381, 84, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (382, 84, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (383, 85, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (384, 85, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (385, 85, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (386, 85, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (387, 86, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (388, 86, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (389, 86, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (390, 86, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (391, 86, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (392, 86, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (393, 86, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (394, 86, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (395, 88, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (396, 88, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (397, 88, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (398, 88, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (399, 89, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (400, 89, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (401, 89, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (402, 89, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (403, 89, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (404, 89, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (405, 90, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (406, 90, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (407, 90, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (408, 90, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (409, 90, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (410, 90, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (411, 91, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (412, 91, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (413, 91, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (414, 91, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (415, 91, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (416, 91, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (417, 91, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (418, 91, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (419, 92, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (420, 92, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (421, 92, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (422, 92, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (423, 93, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (424, 93, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (425, 93, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (426, 94, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (427, 94, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (428, 95, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (429, 95, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (430, 95, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (431, 95, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (432, 95, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (433, 96, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (434, 96, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (435, 96, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (436, 97, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (437, 97, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (438, 97, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (439, 97, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (440, 97, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (441, 97, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (442, 98, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (443, 98, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (444, 98, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (445, 99, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (446, 99, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (447, 99, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (448, 99, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (449, 99, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (450, 99, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (451, 100, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (452, 100, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (453, 100, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (454, 100, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (455, 100, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (456, 100, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (457, 101, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (458, 101, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (459, 101, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (460, 101, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (461, 101, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (462, 101, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (463, 102, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (464, 102, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (465, 103, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (466, 103, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (467, 103, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (468, 103, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (469, 103, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (470, 103, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (471, 103, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (472, 103, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (473, 104, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (474, 104, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (475, 104, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (476, 105, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (477, 105, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (478, 105, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (479, 105, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (480, 105, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (481, 106, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (482, 106, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (483, 107, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (484, 107, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (485, 109, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (486, 109, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (487, 109, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (488, 109, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (489, 109, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (490, 109, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (491, 109, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (492, 109, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (493, 110, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (494, 110, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (495, 110, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (496, 110, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (497, 111, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (498, 111, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (499, 111, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (500, 111, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (501, 112, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (502, 112, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (503, 112, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (504, 112, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (505, 112, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (506, 112, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (507, 112, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (508, 113, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (509, 113, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (510, 113, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (511, 113, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (512, 114, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (513, 114, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (514, 114, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (515, 114, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (516, 114, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (517, 114, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (518, 114, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (519, 115, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (520, 115, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (521, 115, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (522, 115, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (523, 115, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (524, 115, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (525, 115, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (526, 116, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (527, 116, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (528, 116, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (529, 116, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (530, 116, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (531, 116, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (532, 117, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (533, 117, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (534, 117, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (535, 117, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (536, 117, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (537, 117, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (538, 118, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (539, 118, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (540, 118, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (541, 118, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (542, 118, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (543, 118, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (544, 119, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (545, 119, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (546, 119, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (547, 119, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (548, 119, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (549, 119, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (550, 119, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (551, 120, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (552, 120, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (553, 120, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (554, 121, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (555, 121, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (556, 121, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (557, 121, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (558, 121, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (559, 121, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (560, 122, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (561, 122, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (562, 122, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (563, 122, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (564, 122, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (565, 122, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (566, 122, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (567, 123, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (568, 123, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (569, 123, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (570, 123, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (571, 123, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (572, 124, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (573, 124, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (574, 124, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (575, 125, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (576, 125, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (577, 126, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (578, 126, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (579, 126, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (580, 127, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (581, 127, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (582, 127, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (583, 127, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (584, 127, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (585, 127, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (586, 127, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (587, 127, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (588, 129, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (589, 129, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (590, 129, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (591, 129, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (592, 129, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (593, 129, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (594, 130, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (595, 130, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (596, 130, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (597, 130, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (598, 130, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (599, 130, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (600, 131, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (601, 131, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (602, 131, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (603, 131, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (604, 131, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (605, 131, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (606, 132, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (607, 132, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (608, 132, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (609, 132, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (610, 132, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (611, 132, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (612, 133, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (613, 133, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (614, 133, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (615, 133, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (616, 134, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (617, 134, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (618, 134, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (619, 135, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (620, 135, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (621, 135, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (622, 135, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (623, 135, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (624, 135, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (625, 135, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (626, 136, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (627, 136, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (628, 136, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (629, 137, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (630, 137, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (631, 137, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (632, 137, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (633, 138, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (634, 138, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (635, 138, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (636, 138, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (637, 138, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (638, 139, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (639, 139, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (640, 139, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (641, 139, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (642, 139, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (643, 139, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (644, 140, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (645, 140, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (646, 140, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (647, 140, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (648, 140, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (649, 141, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (650, 141, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (651, 141, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (652, 141, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (653, 141, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (654, 142, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (655, 142, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (656, 142, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (657, 142, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (658, 142, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (659, 143, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (660, 143, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (661, 143, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (662, 143, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (663, 143, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (664, 143, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (665, 143, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (666, 145, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (667, 145, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (668, 145, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (669, 146, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (670, 146, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (671, 146, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (672, 147, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (673, 147, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (674, 147, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (675, 147, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (676, 147, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (677, 147, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (678, 149, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (679, 149, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (680, 149, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (681, 149, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (682, 149, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (683, 149, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (684, 150, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (685, 150, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (686, 150, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (687, 150, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (688, 150, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (689, 150, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (690, 151, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (691, 151, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (692, 151, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (693, 151, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (694, 152, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (695, 152, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (696, 152, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (697, 152, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (698, 153, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (699, 153, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (700, 153, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (701, 153, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (702, 154, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (703, 154, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (704, 154, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (705, 154, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (706, 154, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (707, 154, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (708, 154, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (709, 155, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (710, 155, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (711, 155, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (712, 155, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (713, 155, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (714, 156, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (715, 156, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (716, 157, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (717, 157, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (718, 157, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (719, 158, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (720, 158, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (721, 158, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (722, 158, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (723, 158, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (724, 159, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (725, 159, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (726, 159, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (727, 159, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (728, 159, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (729, 159, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (730, 159, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (731, 160, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (732, 160, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (733, 160, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (734, 160, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (735, 160, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (736, 161, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (737, 161, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (738, 162, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (739, 162, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (740, 162, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (741, 162, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (742, 162, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (743, 162, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (744, 162, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (745, 163, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (746, 163, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (747, 163, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (748, 164, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (749, 164, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (750, 164, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (751, 164, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (752, 164, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (753, 165, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (754, 165, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (755, 165, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (756, 165, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (757, 165, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (758, 166, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (759, 166, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (760, 166, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (761, 166, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (762, 166, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (763, 166, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (764, 167, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (765, 167, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (766, 167, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (767, 167, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (768, 167, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (769, 167, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (770, 167, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (771, 168, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (772, 168, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (773, 169, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (774, 169, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (775, 169, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (776, 169, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (777, 170, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (778, 170, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (779, 170, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (780, 170, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (781, 170, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (782, 170, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (783, 172, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (784, 172, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (785, 172, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (786, 172, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (787, 172, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (788, 172, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (789, 172, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (790, 173, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (791, 173, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (792, 173, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (793, 173, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (794, 173, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (795, 174, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (796, 174, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (797, 174, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (798, 174, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (799, 174, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (800, 174, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (801, 174, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (802, 174, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (803, 175, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (804, 175, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (805, 175, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (806, 175, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (807, 175, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (808, 176, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (809, 176, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (810, 176, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (811, 176, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (812, 176, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (813, 176, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (814, 177, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (815, 177, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (816, 177, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (817, 178, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (818, 178, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (819, 179, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (820, 179, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (821, 179, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (822, 179, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (823, 180, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (824, 180, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (825, 181, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (826, 181, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (827, 181, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (828, 181, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (829, 181, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (830, 181, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (831, 181, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (832, 182, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (833, 182, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (834, 183, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (835, 183, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (836, 183, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (837, 183, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (838, 183, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (839, 183, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (840, 184, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (841, 184, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (842, 184, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (843, 184, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (844, 184, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (845, 185, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (846, 185, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (847, 186, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (848, 186, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (849, 186, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (850, 186, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (851, 187, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (852, 187, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (853, 187, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (854, 188, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (855, 188, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (856, 188, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (857, 189, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (858, 189, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (859, 189, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (860, 189, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (861, 189, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (862, 189, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (863, 190, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (864, 190, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (865, 190, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (866, 190, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (867, 191, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (868, 191, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (869, 191, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (870, 191, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (871, 191, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (872, 191, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (873, 193, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (874, 193, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (875, 193, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (876, 193, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (877, 193, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (878, 193, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (879, 193, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (880, 193, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (881, 194, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (882, 194, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (883, 194, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (884, 194, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (885, 196, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (886, 196, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (887, 197, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (888, 197, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (889, 199, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (890, 199, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (891, 199, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (892, 199, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (893, 199, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (894, 199, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (895, 199, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (896, 199, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (897, 200, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (898, 200, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (899, 200, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (900, 200, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (901, 200, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (902, 200, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (903, 200, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (904, 200, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (905, 201, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (906, 201, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (907, 201, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (908, 201, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (909, 202, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (910, 202, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (911, 202, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (912, 203, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (913, 203, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (914, 203, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (915, 203, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (916, 204, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (917, 204, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (918, 204, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (919, 204, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (920, 204, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (921, 204, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (922, 205, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (923, 205, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (924, 205, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (925, 205, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (926, 206, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (927, 206, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (928, 206, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (929, 206, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (930, 206, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (931, 206, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (932, 206, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (933, 206, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (934, 207, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (935, 207, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (936, 207, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (937, 207, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (938, 208, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (939, 208, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (940, 208, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (941, 209, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (942, 209, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (943, 209, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (944, 209, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (945, 210, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (946, 210, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (947, 210, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (948, 211, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (949, 211, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (950, 212, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (951, 212, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (952, 212, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (953, 212, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (954, 212, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (955, 213, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (956, 213, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (957, 213, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (958, 213, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (959, 214, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (960, 214, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (961, 214, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (962, 214, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (963, 215, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (964, 215, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (965, 215, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (966, 215, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (967, 215, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (968, 215, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (969, 216, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (970, 216, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (971, 216, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (972, 216, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (973, 216, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (974, 218, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (975, 218, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (976, 218, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (977, 218, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (978, 218, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (979, 218, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (980, 218, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (981, 219, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (982, 219, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (983, 219, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (984, 219, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (985, 220, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (986, 220, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (987, 220, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (988, 220, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (989, 220, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (990, 220, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (991, 220, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (992, 220, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (993, 222, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (994, 222, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (995, 222, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (996, 222, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (997, 222, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (998, 222, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (999, 223, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1000, 223, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1001, 224, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1002, 224, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1003, 225, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1004, 225, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1005, 225, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1006, 226, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1007, 226, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1008, 226, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1009, 226, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1010, 226, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1011, 227, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1012, 227, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1013, 227, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1014, 227, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1015, 227, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1016, 228, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1017, 228, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1018, 228, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1019, 228, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1020, 228, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1021, 228, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1022, 228, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1023, 229, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1024, 229, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1025, 229, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1026, 229, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1027, 230, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1028, 230, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1029, 231, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1030, 231, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1031, 231, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1032, 231, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1033, 231, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1034, 231, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1035, 231, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1036, 231, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1037, 232, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1038, 232, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1039, 232, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1040, 232, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1041, 232, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1042, 233, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1043, 233, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1044, 233, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1045, 233, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1046, 233, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1047, 233, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1048, 234, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1049, 234, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1050, 234, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1051, 234, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1052, 234, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1053, 234, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1054, 234, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1055, 235, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1056, 235, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1057, 235, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1058, 235, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1059, 235, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1060, 235, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1061, 236, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1062, 236, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1063, 236, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1064, 236, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1065, 237, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1066, 237, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1067, 238, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1068, 238, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1069, 239, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1070, 239, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1071, 239, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1072, 239, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1073, 239, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1074, 239, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1075, 239, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1076, 239, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1077, 240, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1078, 240, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1079, 240, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1080, 241, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1081, 241, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1082, 241, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1083, 241, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1084, 242, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1085, 242, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1086, 242, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1087, 242, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1088, 242, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1089, 243, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1090, 243, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1091, 243, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1092, 243, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1093, 243, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1094, 243, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1095, 244, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1096, 244, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1097, 244, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1098, 244, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1099, 244, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1100, 244, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1101, 244, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1102, 245, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1103, 245, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1104, 245, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1105, 245, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1106, 245, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1107, 245, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1108, 245, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1109, 246, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1110, 246, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1111, 246, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1112, 247, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1113, 247, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1114, 247, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1115, 247, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1116, 247, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1117, 247, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1118, 247, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1119, 248, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1120, 248, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1121, 249, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1122, 249, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1123, 249, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1124, 249, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1125, 249, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1126, 249, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1127, 250, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1128, 250, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1129, 250, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1130, 250, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1131, 251, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1132, 251, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1133, 251, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1134, 251, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1135, 251, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1136, 252, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1137, 252, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1138, 252, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1139, 252, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1140, 252, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1141, 252, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1142, 253, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1143, 253, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1144, 253, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1145, 253, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1146, 253, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1147, 253, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1148, 254, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1149, 254, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1150, 254, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1151, 254, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1152, 254, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1153, 255, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1154, 255, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1155, 255, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1156, 255, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1157, 255, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1158, 255, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1159, 256, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1160, 256, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1161, 256, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1162, 257, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1163, 257, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1164, 257, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1165, 258, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1166, 258, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1167, 258, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1168, 258, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1169, 259, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1170, 259, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1171, 260, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1172, 260, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1173, 260, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1174, 260, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1175, 261, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1176, 261, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1177, 262, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1178, 262, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1179, 263, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1180, 263, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1181, 263, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1182, 263, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1183, 263, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1184, 263, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1185, 263, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1186, 264, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1187, 264, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1188, 265, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1189, 265, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1190, 265, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1191, 265, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1192, 266, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1193, 266, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1194, 266, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1195, 266, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1196, 266, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1197, 266, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1198, 266, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1199, 266, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1200, 267, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1201, 267, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1202, 267, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1203, 267, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1204, 267, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1205, 267, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1206, 268, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1207, 268, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1208, 269, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1209, 269, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1210, 269, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1211, 269, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1212, 269, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1213, 269, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1214, 270, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1215, 270, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1216, 270, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1217, 270, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1218, 270, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1219, 270, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1220, 270, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1221, 271, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1222, 271, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1223, 271, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1224, 271, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1225, 271, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1226, 272, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1227, 272, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1228, 272, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1229, 272, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1230, 273, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1231, 273, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1232, 273, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1233, 273, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1234, 273, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1235, 273, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1236, 273, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1237, 274, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1238, 274, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1239, 274, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1240, 274, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1241, 274, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1242, 274, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1243, 274, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1244, 275, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1245, 275, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1246, 275, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1247, 275, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1248, 275, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1249, 276, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1250, 276, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1251, 276, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1252, 276, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1253, 277, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1254, 277, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1255, 277, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1256, 278, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1257, 278, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1258, 279, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1259, 279, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1260, 280, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1261, 280, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1262, 280, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1263, 280, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1264, 280, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1265, 280, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1266, 281, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1267, 281, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1268, 281, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1269, 281, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1270, 281, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1271, 281, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1272, 282, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1273, 282, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1274, 282, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1275, 282, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1276, 282, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1277, 282, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1278, 283, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1279, 283, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1280, 283, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1281, 284, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1282, 284, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1283, 284, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1284, 284, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1285, 284, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1286, 284, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1287, 284, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1288, 285, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1289, 285, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1290, 285, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1291, 285, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1292, 285, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1293, 285, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1294, 285, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1295, 286, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1296, 286, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1297, 286, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1298, 286, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1299, 286, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1300, 287, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1301, 287, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1302, 287, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1303, 287, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1304, 288, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1305, 288, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1306, 288, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1307, 288, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1308, 288, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1309, 288, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1310, 289, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1311, 289, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1312, 290, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1313, 290, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1314, 290, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1315, 291, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1316, 291, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1317, 291, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1318, 291, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1319, 292, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1320, 292, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1321, 292, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1322, 292, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1323, 292, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1324, 292, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1325, 293, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1326, 293, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1327, 293, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1328, 293, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1329, 293, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1330, 294, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1331, 294, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1332, 294, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1333, 294, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1334, 294, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1335, 295, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1336, 295, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1337, 295, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1338, 295, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1339, 295, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1340, 295, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1341, 295, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1342, 295, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1343, 296, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1344, 296, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1345, 296, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1346, 296, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1347, 297, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1348, 297, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1349, 298, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1350, 298, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1351, 298, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1352, 298, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1353, 298, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1354, 299, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1355, 299, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1356, 299, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1357, 299, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1358, 300, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1359, 300, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1360, 300, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1361, 300, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1362, 300, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1363, 300, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1364, 301, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1365, 301, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1366, 301, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1367, 301, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1368, 301, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1369, 301, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1370, 301, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1371, 301, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1372, 302, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1373, 302, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1374, 302, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1375, 302, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1376, 302, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1377, 302, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1378, 303, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1379, 303, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1380, 303, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1381, 303, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1382, 303, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1383, 303, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1384, 304, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1385, 304, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1386, 304, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1387, 304, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1388, 304, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1389, 304, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1390, 305, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1391, 305, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1392, 305, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1393, 305, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1394, 305, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1395, 305, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1396, 305, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1397, 306, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1398, 306, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1399, 306, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1400, 307, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1401, 307, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1402, 307, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1403, 307, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1404, 307, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1405, 307, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1406, 308, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1407, 308, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1408, 308, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1409, 308, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1410, 309, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1411, 309, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1412, 309, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1413, 309, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1414, 309, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1415, 309, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1416, 310, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1417, 310, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1418, 311, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1419, 311, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1420, 311, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1421, 311, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1422, 311, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1423, 311, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1424, 311, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1425, 312, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1426, 312, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1427, 312, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1428, 313, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1429, 313, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1430, 313, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1431, 313, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1432, 313, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1433, 313, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1434, 314, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1435, 314, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1436, 314, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1437, 314, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1438, 314, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1439, 314, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1440, 315, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1441, 315, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1442, 315, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1443, 316, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1444, 316, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1445, 317, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1446, 317, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1447, 317, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1448, 317, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1449, 317, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1450, 317, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1451, 317, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1452, 319, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1453, 319, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1454, 319, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1455, 319, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1456, 319, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1457, 319, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1458, 319, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1459, 320, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1460, 320, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1461, 320, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1462, 320, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1463, 320, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1464, 320, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1465, 320, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1466, 321, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1467, 321, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1468, 321, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1469, 321, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1470, 322, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1471, 322, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1472, 322, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1473, 322, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1474, 322, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1475, 322, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1476, 323, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1477, 323, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1478, 323, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1479, 323, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1480, 324, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1481, 324, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1482, 324, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1483, 324, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1484, 324, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1485, 326, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1486, 326, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1487, 326, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1488, 326, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1489, 326, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1490, 326, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1491, 327, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1492, 327, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1493, 327, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1494, 327, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1495, 327, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1496, 327, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1497, 328, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1498, 328, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1499, 328, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1500, 328, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1501, 329, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1502, 329, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1503, 329, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1504, 329, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1505, 329, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1506, 329, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1507, 330, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1508, 330, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1509, 330, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1510, 330, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1511, 330, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1512, 330, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1513, 330, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1514, 331, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1515, 331, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1516, 331, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1517, 331, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1518, 331, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1519, 331, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1520, 331, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1521, 331, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1522, 333, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1523, 333, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1524, 333, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1525, 333, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1526, 334, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1527, 334, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1528, 334, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1529, 334, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1530, 334, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1531, 334, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1532, 335, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1533, 335, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1534, 336, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1535, 336, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1536, 336, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1537, 336, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1538, 336, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1539, 337, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1540, 337, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1541, 337, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1542, 337, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1543, 338, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1544, 338, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1545, 338, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1546, 339, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1547, 339, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1548, 339, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1549, 340, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1550, 340, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1551, 341, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1552, 341, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1553, 341, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1554, 341, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1555, 341, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1556, 341, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1557, 341, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1558, 341, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1559, 342, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1560, 342, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1561, 342, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1562, 342, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1563, 343, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1564, 343, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1565, 344, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1566, 344, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1567, 344, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1568, 344, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1569, 344, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1570, 345, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1571, 345, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1572, 345, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1573, 345, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1574, 345, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1575, 346, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1576, 346, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1577, 346, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1578, 346, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1579, 346, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1580, 346, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1581, 347, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1582, 347, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1583, 347, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1584, 347, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1585, 348, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1586, 348, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1587, 348, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1588, 348, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1589, 349, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1590, 349, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1591, 349, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1592, 349, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1593, 349, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1594, 349, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1595, 349, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1596, 350, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1597, 350, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1598, 350, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1599, 350, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1600, 350, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1601, 350, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1602, 350, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1603, 350, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1604, 351, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1605, 351, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1606, 351, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1607, 351, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1608, 351, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1609, 351, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1610, 352, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1611, 352, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1612, 352, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1613, 352, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1614, 353, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1615, 353, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1616, 353, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1617, 353, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1618, 353, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1619, 353, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1620, 354, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1621, 354, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1622, 354, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1623, 354, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1624, 354, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1625, 355, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1626, 355, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1627, 356, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1628, 356, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1629, 356, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1630, 356, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1631, 356, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1632, 356, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1633, 356, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1634, 356, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1635, 357, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1636, 357, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1637, 357, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1638, 357, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1639, 358, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1640, 358, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1641, 358, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1642, 358, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1643, 358, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1644, 358, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1645, 358, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1646, 358, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1647, 360, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1648, 360, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1649, 360, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1650, 360, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1651, 361, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1652, 361, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1653, 361, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1654, 361, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1655, 361, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1656, 361, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1657, 361, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1658, 361, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1659, 362, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1660, 362, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1661, 363, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1662, 363, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1663, 363, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1664, 363, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1665, 363, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1666, 363, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1667, 364, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1668, 364, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1669, 364, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1670, 365, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1671, 365, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1672, 365, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1673, 365, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1674, 366, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1675, 366, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1676, 366, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1677, 366, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1678, 366, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1679, 366, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1680, 366, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1681, 367, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1682, 367, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1683, 367, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1684, 367, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1685, 367, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1686, 367, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1687, 367, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1688, 368, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1689, 368, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1690, 369, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1691, 369, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1692, 369, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1693, 369, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1694, 369, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1695, 369, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1696, 369, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1697, 369, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1698, 370, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1699, 370, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1700, 370, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1701, 370, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1702, 370, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1703, 371, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1704, 371, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1705, 371, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1706, 372, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1707, 372, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1708, 373, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1709, 373, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1710, 373, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1711, 373, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1712, 373, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1713, 374, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1714, 374, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1715, 374, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1716, 374, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1717, 374, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1718, 374, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1719, 374, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1720, 375, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1721, 375, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1722, 376, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1723, 376, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1724, 376, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1725, 376, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1726, 376, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1727, 376, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1728, 376, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1729, 377, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1730, 377, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1731, 377, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1732, 377, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1733, 377, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1734, 377, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1735, 378, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1736, 378, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1737, 378, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1738, 378, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1739, 378, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1740, 378, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1741, 378, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1742, 378, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1743, 379, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1744, 379, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1745, 379, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1746, 379, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1747, 380, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1748, 380, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1749, 380, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1750, 380, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1751, 380, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1752, 381, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1753, 381, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1754, 381, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1755, 381, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1756, 381, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1757, 382, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1758, 382, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1759, 382, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1760, 382, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1761, 382, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1762, 382, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1763, 382, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1764, 382, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1765, 383, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1766, 383, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1767, 383, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1768, 383, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1769, 383, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1770, 384, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1771, 384, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1772, 384, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1773, 385, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1774, 385, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1775, 385, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1776, 385, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1777, 385, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1778, 387, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1779, 387, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1780, 387, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1781, 387, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1782, 387, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1783, 387, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1784, 388, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1785, 388, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1786, 388, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1787, 388, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1788, 388, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1789, 388, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1790, 389, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1791, 389, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1792, 389, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1793, 389, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1794, 390, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1795, 390, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1796, 390, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1797, 391, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1798, 391, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1799, 391, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1800, 391, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1801, 391, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1802, 391, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1803, 391, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1804, 392, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1805, 392, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1806, 392, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1807, 392, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1808, 392, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1809, 392, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1810, 393, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1811, 393, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1812, 394, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1813, 394, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1814, 394, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1815, 394, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1816, 395, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1817, 395, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1818, 395, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1819, 395, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1820, 395, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1821, 395, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1822, 396, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1823, 396, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1824, 396, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1825, 396, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1826, 397, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1827, 397, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1828, 397, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1829, 397, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1830, 397, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1831, 397, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1832, 397, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1833, 398, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1834, 398, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1835, 398, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1836, 398, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1837, 399, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1838, 399, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1839, 400, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1840, 400, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1841, 401, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1842, 401, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1843, 402, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1844, 402, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1845, 402, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1846, 402, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1847, 402, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1848, 402, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1849, 403, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1850, 403, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1851, 403, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1852, 403, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1853, 403, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1854, 403, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1855, 403, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1856, 403, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1857, 405, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1858, 405, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1859, 406, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1860, 406, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1861, 406, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1862, 406, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1863, 406, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1864, 406, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1865, 407, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1866, 407, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1867, 408, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1868, 408, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1869, 408, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1870, 408, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1871, 408, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1872, 408, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1873, 408, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1874, 409, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1875, 409, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1876, 409, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1877, 409, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1878, 409, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1879, 409, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1880, 409, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1881, 410, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1882, 410, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1883, 410, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1884, 410, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1885, 410, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1886, 411, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1887, 411, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1888, 412, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1889, 412, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1890, 412, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1891, 412, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1892, 412, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1893, 412, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1894, 412, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1895, 412, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1896, 413, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1897, 413, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1898, 413, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1899, 414, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1900, 414, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1901, 414, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1902, 414, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1903, 414, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1904, 414, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1905, 415, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1906, 415, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1907, 415, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1908, 415, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1909, 415, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1910, 415, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1911, 416, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1912, 416, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1913, 416, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1914, 416, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1915, 416, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1916, 416, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1917, 417, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1918, 417, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1919, 417, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1920, 417, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1921, 417, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1922, 417, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1923, 418, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1924, 418, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1925, 418, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1926, 418, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1927, 418, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1928, 418, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1929, 418, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1930, 418, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1931, 420, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1932, 420, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1933, 420, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1934, 420, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1935, 420, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1936, 421, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1937, 421, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1938, 421, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1939, 421, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1940, 422, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1941, 422, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1942, 423, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1943, 423, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1944, 423, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1945, 423, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1946, 424, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1947, 424, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1948, 424, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1949, 424, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1950, 424, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1951, 425, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1952, 425, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1953, 426, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1954, 426, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1955, 426, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1956, 427, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1957, 427, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1958, 427, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1959, 427, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1960, 428, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1961, 428, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1962, 428, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1963, 428, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1964, 428, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1965, 428, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1966, 429, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1967, 429, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1968, 429, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1969, 429, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1970, 429, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1971, 429, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1972, 430, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1973, 430, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1974, 430, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1975, 430, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1976, 431, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1977, 431, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1978, 431, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1979, 432, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1980, 432, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1981, 432, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1982, 432, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1983, 432, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1984, 433, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1985, 433, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1986, 433, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1987, 433, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1988, 433, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1989, 433, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1990, 434, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1991, 434, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1992, 434, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1993, 434, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1994, 434, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1995, 434, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1996, 434, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1997, 434, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1998, 435, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (1999, 435, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2000, 436, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2001, 436, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2002, 436, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2003, 436, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2004, 436, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2005, 436, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2006, 437, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2007, 437, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2008, 437, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2009, 437, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2010, 437, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2011, 437, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2012, 438, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2013, 438, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2014, 438, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2015, 438, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2016, 438, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2017, 439, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2018, 439, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2019, 439, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2020, 439, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2021, 439, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2022, 439, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2023, 440, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2024, 440, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2025, 440, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2026, 440, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2027, 441, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2028, 441, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2029, 442, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2030, 442, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2031, 442, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2032, 443, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2033, 443, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2034, 443, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2035, 443, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2036, 443, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2037, 443, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2038, 443, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2039, 444, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2040, 444, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2041, 444, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2042, 444, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2043, 444, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2044, 444, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2045, 444, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2046, 444, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2047, 445, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2048, 445, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2049, 445, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2050, 445, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2051, 445, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2052, 445, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2053, 446, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2054, 446, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2055, 446, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2056, 446, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2057, 447, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2058, 447, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2059, 447, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2060, 447, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2061, 447, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2062, 447, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2063, 447, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2064, 448, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2065, 448, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2066, 448, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2067, 448, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2068, 448, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2069, 449, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2070, 449, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2071, 449, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2072, 449, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2073, 450, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2074, 450, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2075, 450, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2076, 450, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2077, 450, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2078, 450, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2079, 450, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2080, 451, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2081, 451, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2082, 451, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2083, 451, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2084, 451, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2085, 452, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2086, 452, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2087, 452, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2088, 452, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2089, 453, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2090, 453, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2091, 453, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2092, 453, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2093, 453, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2094, 454, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2095, 454, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2096, 455, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2097, 455, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2098, 455, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2099, 455, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2100, 456, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2101, 456, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2102, 456, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2103, 456, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2104, 456, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2105, 456, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2106, 457, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2107, 457, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2108, 457, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2109, 457, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2110, 457, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2111, 457, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2112, 458, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2113, 458, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2114, 458, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2115, 458, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2116, 458, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2117, 458, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2118, 459, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2119, 459, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2120, 460, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2121, 460, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2122, 460, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2123, 460, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2124, 460, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2125, 460, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2126, 460, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2127, 460, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2128, 461, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2129, 461, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2130, 461, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2131, 461, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2132, 461, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2133, 461, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2134, 462, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2135, 462, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2136, 462, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2137, 462, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2138, 462, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2139, 463, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2140, 463, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2141, 463, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2142, 463, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2143, 463, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2144, 464, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2145, 464, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2146, 464, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2147, 464, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2148, 464, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2149, 464, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2150, 464, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2151, 465, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2152, 465, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2153, 465, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2154, 465, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2155, 465, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2156, 466, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2157, 466, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2158, 467, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2159, 467, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2160, 467, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2161, 467, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2162, 467, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2163, 467, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2164, 467, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2165, 468, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2166, 468, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2167, 468, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2168, 468, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2169, 468, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2170, 468, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2171, 468, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2172, 468, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2173, 469, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2174, 469, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2175, 469, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2176, 470, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2177, 470, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2178, 471, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2179, 471, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2180, 471, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2181, 471, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2182, 471, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2183, 471, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2184, 471, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2185, 472, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2186, 472, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2187, 473, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2188, 473, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2189, 473, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2190, 473, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2191, 473, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2192, 474, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2193, 474, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2194, 474, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2195, 474, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2196, 475, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2197, 475, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2198, 476, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2199, 476, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2200, 476, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2201, 476, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2202, 476, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2203, 476, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2204, 476, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2205, 477, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2206, 477, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2207, 477, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2208, 478, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2209, 478, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2210, 478, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2211, 478, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2212, 478, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2213, 479, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2214, 479, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2215, 479, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2216, 479, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2217, 479, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2218, 480, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2219, 480, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2220, 480, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2221, 480, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2222, 481, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2223, 481, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2224, 481, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2225, 481, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2226, 481, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2227, 481, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2228, 482, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2229, 482, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2230, 482, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2231, 483, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2232, 483, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2233, 483, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2234, 483, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2235, 483, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2236, 484, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2237, 484, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2238, 484, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2239, 484, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2240, 484, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2241, 484, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2242, 484, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2243, 485, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2244, 485, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2245, 485, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2246, 486, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2247, 486, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2248, 486, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2249, 486, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2250, 486, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2251, 486, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2252, 487, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2253, 487, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2254, 487, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2255, 488, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2256, 488, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2257, 488, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2258, 488, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2259, 488, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2260, 489, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2261, 489, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2262, 489, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2263, 489, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2264, 489, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2265, 489, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2266, 489, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2267, 489, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2268, 490, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2269, 490, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2270, 491, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2271, 491, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2272, 491, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2273, 491, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2274, 491, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2275, 491, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2276, 492, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2277, 492, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2278, 493, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2279, 493, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2280, 493, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2281, 494, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2282, 494, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2283, 494, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2284, 494, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2285, 494, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2286, 494, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2287, 496, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2288, 496, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2289, 496, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2290, 496, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2291, 496, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2292, 498, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2293, 498, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2294, 499, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2295, 499, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2296, 500, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2297, 500, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2298, 500, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2299, 500, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2300, 500, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2301, 500, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2302, 500, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2303, 500, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2304, 501, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2305, 501, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2306, 501, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2307, 501, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2308, 501, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2309, 502, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2310, 502, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2311, 502, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2312, 502, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2313, 502, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2314, 502, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2315, 502, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2316, 503, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2317, 503, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2318, 503, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2319, 504, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2320, 504, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2321, 504, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2322, 504, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2323, 504, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2324, 504, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2325, 505, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2326, 505, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2327, 505, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2328, 505, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2329, 506, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2330, 506, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2331, 506, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2332, 506, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2333, 506, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2334, 506, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2335, 507, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2336, 507, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2337, 508, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2338, 508, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2339, 508, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2340, 509, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2341, 509, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2342, 509, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2343, 510, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2344, 510, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2345, 510, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2346, 510, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2347, 511, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2348, 511, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2349, 511, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2350, 511, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2351, 511, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2352, 512, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2353, 512, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2354, 512, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2355, 512, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2356, 512, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2357, 512, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2358, 513, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2359, 513, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2360, 514, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2361, 514, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2362, 514, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2363, 514, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2364, 514, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2365, 514, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2366, 515, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2367, 515, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2368, 516, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2369, 516, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2370, 516, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2371, 517, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2372, 517, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2373, 518, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2374, 518, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2375, 518, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2376, 518, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2377, 518, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2378, 518, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2379, 519, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2380, 519, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2381, 519, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2382, 519, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2383, 520, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2384, 520, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2385, 521, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2386, 521, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2387, 521, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2388, 521, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2389, 521, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2390, 521, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2391, 521, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2392, 522, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2393, 522, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2394, 523, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2395, 523, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2396, 524, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2397, 524, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2398, 524, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2399, 524, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2400, 524, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2401, 524, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2402, 525, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2403, 525, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2404, 525, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2405, 525, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2406, 525, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2407, 525, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2408, 525, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2409, 525, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2410, 526, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2411, 526, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2412, 526, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2413, 526, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2414, 527, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2415, 527, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2416, 527, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2417, 527, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2418, 527, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2419, 527, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2420, 528, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2421, 528, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2422, 528, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2423, 529, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2424, 529, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2425, 529, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2426, 529, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2427, 530, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2428, 530, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2429, 530, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2430, 531, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2431, 531, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2432, 531, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2433, 531, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2434, 531, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2435, 531, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2436, 531, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2437, 531, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2438, 532, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2439, 532, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2440, 532, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2441, 532, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2442, 533, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2443, 533, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2444, 533, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2445, 534, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2446, 534, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2447, 534, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2448, 534, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2449, 534, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2450, 535, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2451, 535, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2452, 535, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2453, 535, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2454, 536, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2455, 536, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2456, 536, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2457, 536, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2458, 536, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2459, 537, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2460, 537, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2461, 537, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2462, 538, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2463, 538, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2464, 538, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2465, 539, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2466, 539, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2467, 540, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2468, 540, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2469, 540, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2470, 541, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2471, 541, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2472, 542, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2473, 542, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2474, 542, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2475, 542, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2476, 542, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2477, 542, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2478, 543, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2479, 543, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2480, 544, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2481, 544, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2482, 544, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2483, 544, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2484, 545, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2485, 545, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2486, 545, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2487, 545, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2488, 545, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2489, 545, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2490, 546, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2491, 546, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2492, 546, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2493, 546, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2494, 547, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2495, 547, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2496, 548, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2497, 548, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2498, 549, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2499, 549, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2500, 549, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2501, 549, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2502, 550, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2503, 550, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2504, 550, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2505, 551, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2506, 551, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2507, 551, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2508, 551, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2509, 551, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2510, 551, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2511, 552, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2512, 552, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2513, 552, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2514, 552, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2515, 553, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2516, 553, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2517, 553, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2518, 554, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2519, 554, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2520, 554, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2521, 554, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2522, 554, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2523, 554, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2524, 554, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2525, 555, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2526, 555, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2527, 555, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2528, 555, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2529, 555, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2530, 555, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2531, 555, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2532, 556, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2533, 556, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2534, 556, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2535, 556, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2536, 556, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2537, 556, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2538, 556, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2539, 557, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2540, 557, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2541, 557, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2542, 557, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2543, 557, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2544, 558, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2545, 558, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2546, 559, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2547, 559, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2548, 559, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2549, 559, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2550, 559, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2551, 559, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2552, 559, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2553, 559, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2554, 560, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2555, 560, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2556, 560, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2557, 560, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2558, 560, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2559, 561, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2560, 561, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2561, 561, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2562, 561, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2563, 562, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2564, 562, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2565, 562, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2566, 562, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2567, 562, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2568, 562, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2569, 563, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2570, 563, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2571, 563, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2572, 563, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2573, 563, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2574, 563, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2575, 563, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2576, 564, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2577, 564, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2578, 564, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2579, 565, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2580, 565, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2581, 566, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2582, 566, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2583, 567, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2584, 567, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2585, 567, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2586, 567, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2587, 568, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2588, 568, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2589, 568, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2590, 568, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2591, 569, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2592, 569, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2593, 570, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2594, 570, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2595, 570, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2596, 570, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2597, 570, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2598, 571, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2599, 571, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2600, 571, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2601, 571, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2602, 571, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2603, 571, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2604, 572, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2605, 572, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2606, 572, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2607, 572, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2608, 572, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2609, 572, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2610, 572, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2611, 572, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2612, 573, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2613, 573, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2614, 573, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2615, 573, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2616, 574, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2617, 574, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2618, 574, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2619, 574, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2620, 574, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2621, 575, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2622, 575, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2623, 575, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2624, 575, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2625, 575, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2626, 575, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2627, 576, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2628, 576, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2629, 576, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2630, 577, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2631, 577, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2632, 577, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2633, 578, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2634, 578, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2635, 578, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2636, 578, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2637, 578, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2638, 579, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2639, 579, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2640, 579, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2641, 579, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2642, 579, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2643, 579, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2644, 579, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2645, 580, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2646, 580, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2647, 580, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2648, 580, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2649, 580, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2650, 580, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2651, 581, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2652, 581, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2653, 581, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2654, 582, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2655, 582, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2656, 583, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2657, 583, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2658, 583, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2659, 583, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2660, 583, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2661, 584, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2662, 584, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2663, 585, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2664, 585, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2665, 585, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2666, 585, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2667, 586, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2668, 586, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2669, 586, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2670, 586, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2671, 586, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2672, 586, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2673, 586, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2674, 586, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2675, 587, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2676, 587, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2677, 587, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2678, 588, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2679, 588, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2680, 588, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2681, 588, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2682, 589, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2683, 589, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2684, 589, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2685, 589, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2686, 590, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2687, 590, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2688, 590, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2689, 590, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2690, 590, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2691, 590, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2692, 590, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2693, 591, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2694, 591, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2695, 591, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2696, 592, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2697, 592, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2698, 592, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2699, 592, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2700, 593, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2701, 593, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2702, 593, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2703, 593, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2704, 594, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2705, 594, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2706, 594, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2707, 595, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2708, 595, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2709, 595, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2710, 595, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2711, 595, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2712, 595, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2713, 595, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2714, 595, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2715, 596, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2716, 596, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2717, 596, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2718, 596, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2719, 596, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2720, 596, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2721, 597, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2722, 597, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2723, 597, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2724, 597, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2725, 598, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2726, 598, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2727, 598, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2728, 598, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2729, 599, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2730, 599, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2731, 599, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2732, 599, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2733, 599, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2734, 600, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2735, 600, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2736, 600, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2737, 600, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2738, 601, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2739, 601, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2740, 601, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2741, 601, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2742, 601, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2743, 602, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2744, 602, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2745, 602, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2746, 602, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2747, 602, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2748, 603, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2749, 603, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2750, 603, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2751, 603, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2752, 603, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2753, 603, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2754, 604, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2755, 604, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2756, 604, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2757, 605, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2758, 605, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2759, 606, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2760, 606, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2761, 606, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2762, 606, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2763, 606, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2764, 606, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2765, 608, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2766, 608, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2767, 608, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2768, 608, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2769, 608, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2770, 608, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2771, 609, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2772, 609, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2773, 609, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2774, 609, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2775, 609, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2776, 609, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2777, 609, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2778, 609, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2779, 610, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2780, 610, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2781, 610, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2782, 610, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2783, 610, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2784, 611, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2785, 611, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2786, 611, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2787, 611, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2788, 611, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2789, 611, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2790, 612, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2791, 612, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2792, 613, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2793, 613, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2794, 614, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2795, 614, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2796, 614, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2797, 614, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2798, 614, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2799, 614, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2800, 615, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2801, 615, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2802, 615, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2803, 615, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2804, 616, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2805, 616, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2806, 616, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2807, 616, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2808, 616, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2809, 616, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2810, 617, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2811, 617, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2812, 617, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2813, 618, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2814, 618, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2815, 618, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2816, 618, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2817, 619, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2818, 619, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2819, 619, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2820, 619, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2821, 619, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2822, 619, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2823, 620, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2824, 620, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2825, 620, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2826, 620, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2827, 620, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2828, 621, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2829, 621, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2830, 621, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2831, 621, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2832, 621, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2833, 621, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2834, 621, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2835, 621, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2836, 622, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2837, 622, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2838, 623, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2839, 623, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2840, 623, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2841, 623, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2842, 623, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2843, 624, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2844, 624, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2845, 624, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2846, 624, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2847, 624, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2848, 624, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2849, 624, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2850, 625, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2851, 625, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2852, 625, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2853, 625, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2854, 625, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2855, 625, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2856, 625, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2857, 626, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2858, 626, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2859, 626, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2860, 626, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2861, 627, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2862, 627, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2863, 627, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2864, 628, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2865, 628, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2866, 628, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2867, 628, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2868, 628, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2869, 629, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2870, 629, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2871, 629, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2872, 629, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2873, 630, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2874, 630, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2875, 630, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2876, 631, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2877, 631, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2878, 631, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2879, 631, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2880, 631, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2881, 632, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2882, 632, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2883, 632, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2884, 633, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2885, 633, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2886, 633, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2887, 634, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2888, 634, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2889, 634, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2890, 634, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2891, 635, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2892, 635, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2893, 636, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2894, 636, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2895, 636, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2896, 637, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2897, 637, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2898, 637, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2899, 637, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2900, 637, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2901, 638, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2902, 638, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2903, 638, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2904, 638, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2905, 638, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2906, 638, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2907, 638, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2908, 638, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2909, 639, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2910, 639, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2911, 639, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2912, 640, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2913, 640, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2914, 640, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2915, 641, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2916, 641, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2917, 641, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2918, 641, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2919, 641, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2920, 641, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2921, 641, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2922, 643, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2923, 643, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2924, 643, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2925, 643, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2926, 643, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2927, 643, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2928, 644, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2929, 644, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2930, 644, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2931, 644, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2932, 644, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2933, 644, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2934, 644, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2935, 645, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2936, 645, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2937, 645, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2938, 645, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2939, 645, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2940, 645, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2941, 646, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2942, 646, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2943, 646, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2944, 646, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2945, 646, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2946, 647, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2947, 647, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2948, 647, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2949, 647, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2950, 647, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2951, 647, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2952, 648, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2953, 648, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2954, 648, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2955, 648, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2956, 648, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2957, 648, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2958, 649, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2959, 649, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2960, 649, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2961, 649, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2962, 649, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2963, 649, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2964, 650, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2965, 650, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2966, 650, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2967, 650, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2968, 650, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2969, 650, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2970, 651, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2971, 651, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2972, 651, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2973, 651, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2974, 651, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2975, 651, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2976, 652, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2977, 652, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2978, 652, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2979, 652, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2980, 653, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2981, 653, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2982, 654, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2983, 654, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2984, 654, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2985, 654, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2986, 655, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2987, 655, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2988, 655, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2989, 655, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2990, 655, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2991, 655, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2992, 656, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2993, 656, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2994, 657, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2995, 657, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2996, 657, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2997, 657, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2998, 657, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (2999, 657, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3000, 658, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3001, 658, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3002, 658, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3003, 658, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3004, 659, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3005, 659, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3006, 660, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3007, 660, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3008, 660, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3009, 660, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3010, 661, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3011, 661, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3012, 661, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3013, 661, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3014, 662, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3015, 662, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3016, 662, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3017, 662, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3018, 663, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3019, 663, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3020, 663, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3021, 663, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3022, 663, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3023, 664, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3024, 664, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3025, 664, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3026, 664, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3027, 664, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3028, 665, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3029, 665, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3030, 665, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3031, 665, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3032, 665, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3033, 665, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3034, 665, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3035, 666, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3036, 666, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3037, 666, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3038, 666, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3039, 666, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3040, 667, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3041, 667, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3042, 667, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3043, 667, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3044, 668, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3045, 668, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3046, 668, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3047, 668, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3048, 668, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3049, 670, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3050, 670, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3051, 670, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3052, 670, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3053, 670, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3054, 670, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3055, 670, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3056, 672, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3057, 672, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3058, 672, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3059, 672, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3060, 672, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3061, 672, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3062, 673, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3063, 673, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3064, 673, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3065, 673, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3066, 674, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3067, 674, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3068, 674, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3069, 675, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3070, 675, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3071, 676, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3072, 676, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3073, 676, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3074, 676, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3075, 676, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3076, 676, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3077, 677, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3078, 677, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3079, 677, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3080, 677, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3081, 677, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3082, 677, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3083, 677, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3084, 678, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3085, 678, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3086, 678, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3087, 678, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3088, 679, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3089, 679, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3090, 679, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3091, 679, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3092, 680, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3093, 680, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3094, 680, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3095, 680, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3096, 680, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3097, 680, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3098, 681, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3099, 681, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3100, 681, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3101, 681, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3102, 681, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3103, 681, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3104, 682, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3105, 682, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3106, 682, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3107, 683, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3108, 683, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3109, 683, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3110, 683, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3111, 683, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3112, 683, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3113, 683, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3114, 683, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3115, 684, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3116, 684, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3117, 685, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3118, 685, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3119, 686, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3120, 686, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3121, 686, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3122, 686, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3123, 687, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3124, 687, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3125, 687, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3126, 687, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3127, 687, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3128, 687, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3129, 687, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3130, 688, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3131, 688, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3132, 688, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3133, 688, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3134, 689, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3135, 689, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3136, 689, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3137, 689, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3138, 689, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3139, 689, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3140, 690, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3141, 690, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3142, 690, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3143, 690, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3144, 690, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3145, 690, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3146, 691, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3147, 691, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3148, 691, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3149, 691, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3150, 691, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3151, 692, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3152, 692, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3153, 692, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3154, 693, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3155, 693, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3156, 693, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3157, 693, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3158, 693, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3159, 694, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3160, 694, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3161, 694, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3162, 694, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3163, 694, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3164, 694, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3165, 695, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3166, 695, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3167, 696, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3168, 696, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3169, 696, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3170, 696, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3171, 696, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3172, 697, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3173, 697, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3174, 697, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3175, 697, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3176, 697, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3177, 697, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3178, 697, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3179, 697, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3180, 698, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3181, 698, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3182, 698, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3183, 698, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3184, 698, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3185, 698, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3186, 698, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3187, 699, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3188, 699, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3189, 700, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3190, 700, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3191, 700, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3192, 702, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3193, 702, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3194, 702, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3195, 702, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3196, 702, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3197, 702, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3198, 702, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3199, 702, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3200, 703, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3201, 703, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3202, 704, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3203, 704, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3204, 704, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3205, 704, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3206, 704, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3207, 705, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3208, 705, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3209, 705, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3210, 705, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3211, 706, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3212, 706, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3213, 706, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3214, 706, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3215, 706, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3216, 706, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3217, 707, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3218, 707, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3219, 707, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3220, 707, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3221, 707, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3222, 707, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3223, 708, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3224, 708, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3225, 708, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3226, 708, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3227, 709, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3228, 709, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3229, 709, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3230, 709, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3231, 709, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3232, 709, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3233, 710, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3234, 710, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3235, 710, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3236, 710, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3237, 710, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3238, 710, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3239, 711, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3240, 711, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3241, 711, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3242, 711, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3243, 714, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3244, 714, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3245, 714, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3246, 715, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3247, 715, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3248, 715, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3249, 715, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3250, 715, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3251, 715, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3252, 715, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3253, 716, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3254, 716, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3255, 716, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3256, 716, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3257, 716, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3258, 717, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3259, 717, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3260, 717, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3261, 717, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3262, 718, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3263, 718, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3264, 719, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3265, 719, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3266, 720, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3267, 720, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3268, 720, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3269, 720, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3270, 720, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3271, 720, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3272, 720, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3273, 721, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3274, 721, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3275, 722, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3276, 722, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3277, 722, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3278, 722, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3279, 723, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3280, 723, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3281, 723, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3282, 723, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3283, 723, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3284, 723, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3285, 723, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3286, 724, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3287, 724, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3288, 724, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3289, 724, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3290, 724, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3291, 724, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3292, 725, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3293, 725, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3294, 725, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3295, 725, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3296, 725, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3297, 725, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3298, 726, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3299, 726, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3300, 726, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3301, 727, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3302, 727, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3303, 727, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3304, 727, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3305, 727, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3306, 728, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3307, 728, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3308, 728, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3309, 728, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3310, 728, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3311, 729, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3312, 729, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3313, 729, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3314, 729, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3315, 730, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3316, 730, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3317, 730, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3318, 730, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3319, 730, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3320, 730, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3321, 730, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3322, 730, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3323, 731, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3324, 731, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3325, 731, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3326, 732, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3327, 732, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3328, 732, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3329, 732, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3330, 733, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3331, 733, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3332, 733, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3333, 733, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3334, 733, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3335, 733, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3336, 733, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3337, 734, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3338, 734, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3339, 734, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3340, 734, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3341, 734, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3342, 734, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3343, 735, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3344, 735, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3345, 735, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3346, 735, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3347, 735, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3348, 735, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3349, 735, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3350, 736, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3351, 736, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3352, 736, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3353, 736, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3354, 737, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3355, 737, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3356, 737, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3357, 737, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3358, 737, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3359, 737, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3360, 738, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3361, 738, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3362, 738, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3363, 738, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3364, 738, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3365, 738, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3366, 738, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3367, 738, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3368, 739, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3369, 739, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3370, 739, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3371, 739, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3372, 739, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3373, 740, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3374, 740, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3375, 740, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3376, 741, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3377, 741, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3378, 741, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3379, 741, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3380, 741, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3381, 741, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3382, 743, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3383, 743, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3384, 743, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3385, 743, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3386, 743, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3387, 743, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3388, 744, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3389, 744, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3390, 744, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3391, 744, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3392, 744, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3393, 745, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3394, 745, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3395, 745, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3396, 745, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3397, 745, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3398, 745, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3399, 745, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3400, 745, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3401, 746, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3402, 746, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3403, 746, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3404, 746, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3405, 746, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3406, 747, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3407, 747, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3408, 747, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3409, 747, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3410, 747, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3411, 748, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3412, 748, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3413, 748, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3414, 748, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3415, 748, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3416, 748, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3417, 748, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3418, 748, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3419, 749, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3420, 749, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3421, 749, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3422, 749, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3423, 750, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3424, 750, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3425, 750, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3426, 751, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3427, 751, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3428, 752, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3429, 752, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3430, 752, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3431, 753, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3432, 753, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3433, 753, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3434, 753, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3435, 753, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3436, 753, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3437, 753, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3438, 753, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3439, 754, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3440, 754, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3441, 755, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3442, 755, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3443, 755, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3444, 755, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3445, 755, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3446, 755, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3447, 755, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3448, 756, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3449, 756, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3450, 756, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3451, 757, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3452, 757, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3453, 757, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3454, 757, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3455, 757, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3456, 758, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3457, 758, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3458, 758, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3459, 759, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3460, 759, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3461, 759, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3462, 759, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3463, 759, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3464, 759, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3465, 760, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3466, 760, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3467, 760, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3468, 760, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3469, 760, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3470, 760, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3471, 760, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3472, 761, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3473, 761, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3474, 761, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3475, 762, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3476, 762, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3477, 762, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3478, 762, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3479, 763, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3480, 763, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3481, 763, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3482, 763, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3483, 763, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3484, 764, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3485, 764, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3486, 764, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3487, 764, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3488, 764, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3489, 764, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3490, 764, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3491, 764, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3492, 765, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3493, 765, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3494, 765, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3495, 765, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3496, 766, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3497, 766, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3498, 766, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3499, 767, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3500, 767, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3501, 767, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3502, 767, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3503, 767, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3504, 767, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3505, 767, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3506, 767, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3507, 768, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3508, 768, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3509, 768, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3510, 768, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3511, 768, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3512, 768, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3513, 769, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3514, 769, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3515, 770, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3516, 770, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3517, 770, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3518, 771, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3519, 771, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3520, 771, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3521, 771, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3522, 771, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3523, 771, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3524, 771, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3525, 772, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3526, 772, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3527, 772, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3528, 772, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3529, 772, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3530, 772, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3531, 773, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3532, 773, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3533, 773, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3534, 773, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3535, 773, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3536, 773, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3537, 773, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3538, 773, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3539, 774, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3540, 774, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3541, 774, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3542, 774, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3543, 775, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3544, 775, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3545, 775, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3546, 775, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3547, 775, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3548, 776, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3549, 776, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3550, 776, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3551, 776, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3552, 776, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3553, 777, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3554, 777, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3555, 777, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3556, 777, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3557, 777, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3558, 777, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3559, 778, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3560, 778, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3561, 778, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3562, 778, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3563, 778, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3564, 778, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3565, 779, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3566, 779, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3567, 780, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3568, 780, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3569, 780, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3570, 781, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3571, 781, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3572, 782, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3573, 782, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3574, 782, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3575, 782, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3576, 782, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3577, 782, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3578, 783, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3579, 783, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3580, 783, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3581, 783, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3582, 784, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3583, 784, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3584, 784, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3585, 784, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3586, 784, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3587, 784, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3588, 785, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3589, 785, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3590, 785, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3591, 785, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3592, 785, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3593, 785, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3594, 786, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3595, 786, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3596, 786, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3597, 786, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3598, 786, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3599, 786, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3600, 786, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3601, 787, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3602, 787, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3603, 787, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3604, 788, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3605, 788, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3606, 788, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3607, 788, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3608, 789, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3609, 789, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3610, 789, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3611, 789, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3612, 789, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3613, 789, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3614, 789, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3615, 789, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3616, 790, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3617, 790, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3618, 790, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3619, 790, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3620, 790, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3621, 790, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3622, 790, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3623, 791, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3624, 791, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3625, 791, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3626, 791, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3627, 791, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3628, 791, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3629, 792, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3630, 792, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3631, 792, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3632, 793, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3633, 793, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3634, 793, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3635, 793, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3636, 794, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3637, 794, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3638, 794, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3639, 794, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3640, 795, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3641, 795, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3642, 795, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3643, 795, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3644, 796, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3645, 796, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3646, 796, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3647, 796, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3648, 796, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3649, 797, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3650, 797, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3651, 797, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3652, 797, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3653, 797, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3654, 798, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3655, 798, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3656, 798, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3657, 798, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3658, 799, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3659, 799, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3660, 800, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3661, 800, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3662, 800, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3663, 800, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3664, 800, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3665, 800, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3666, 803, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3667, 803, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3668, 803, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3669, 803, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3670, 803, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3671, 803, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3672, 804, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3673, 804, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3674, 804, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3675, 804, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3676, 804, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3677, 804, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3678, 804, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3679, 805, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3680, 805, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3681, 805, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3682, 805, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3683, 805, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3684, 806, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3685, 806, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3686, 806, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3687, 806, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3688, 806, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3689, 807, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3690, 807, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3691, 807, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3692, 807, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3693, 807, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3694, 808, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3695, 808, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3696, 809, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3697, 809, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3698, 809, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3699, 809, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3700, 810, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3701, 810, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3702, 810, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3703, 810, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3704, 810, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3705, 810, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3706, 810, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3707, 811, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3708, 811, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3709, 811, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3710, 812, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3711, 812, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3712, 812, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3713, 812, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3714, 812, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3715, 812, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3716, 813, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3717, 813, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3718, 813, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3719, 813, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3720, 814, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3721, 814, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3722, 814, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3723, 814, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3724, 814, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3725, 814, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3726, 814, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3727, 815, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3728, 815, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3729, 815, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3730, 816, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3731, 816, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3732, 816, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3733, 816, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3734, 816, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3735, 816, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3736, 816, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3737, 817, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3738, 817, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3739, 818, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3740, 818, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3741, 818, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3742, 818, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3743, 818, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3744, 819, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3745, 819, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3746, 819, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3747, 820, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3748, 820, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3749, 820, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3750, 820, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3751, 820, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3752, 820, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3753, 821, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3754, 821, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3755, 821, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3756, 821, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3757, 822, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3758, 822, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3759, 823, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3760, 823, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3761, 823, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3762, 823, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3763, 823, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3764, 823, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3765, 823, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3766, 824, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3767, 824, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3768, 824, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3769, 824, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3770, 825, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3771, 825, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3772, 825, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3773, 826, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3774, 826, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3775, 827, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3776, 827, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3777, 827, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3778, 827, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3779, 827, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3780, 827, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3781, 828, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3782, 828, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3783, 828, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3784, 828, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3785, 829, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3786, 829, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3787, 829, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3788, 829, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3789, 829, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3790, 830, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3791, 830, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3792, 830, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3793, 830, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3794, 831, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3795, 831, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3796, 831, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3797, 832, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3798, 832, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3799, 832, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3800, 832, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3801, 833, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3802, 833, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3803, 833, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3804, 833, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3805, 833, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3806, 833, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3807, 833, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3808, 834, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3809, 834, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3810, 834, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3811, 835, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3812, 835, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3813, 835, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3814, 835, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3815, 835, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3816, 835, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3817, 835, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3818, 835, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3819, 836, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3820, 836, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3821, 836, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3822, 837, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3823, 837, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3824, 837, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3825, 838, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3826, 838, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3827, 838, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3828, 838, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3829, 838, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3830, 838, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3831, 839, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3832, 839, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3833, 840, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3834, 840, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3835, 840, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3836, 840, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3837, 841, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3838, 841, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3839, 841, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3840, 841, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3841, 841, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3842, 841, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3843, 841, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3844, 842, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3845, 842, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3846, 842, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3847, 842, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3848, 843, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3849, 843, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3850, 843, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3851, 843, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3852, 843, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3853, 843, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3854, 843, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3855, 844, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3856, 844, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3857, 844, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3858, 844, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3859, 845, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3860, 845, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3861, 845, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3862, 845, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3863, 845, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3864, 845, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3865, 845, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3866, 846, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3867, 846, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3868, 846, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3869, 846, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3870, 846, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3871, 846, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3872, 846, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3873, 846, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3874, 847, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3875, 847, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3876, 847, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3877, 847, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3878, 848, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3879, 848, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3880, 848, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3881, 849, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3882, 849, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3883, 849, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3884, 849, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3885, 849, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3886, 849, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3887, 849, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3888, 849, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3889, 850, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3890, 850, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3891, 850, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3892, 850, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3893, 850, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3894, 850, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3895, 850, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3896, 851, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3897, 851, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3898, 851, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3899, 851, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3900, 851, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3901, 851, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3902, 852, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3903, 852, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3904, 852, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3905, 852, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3906, 852, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3907, 852, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3908, 852, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3909, 853, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3910, 853, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3911, 853, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3912, 854, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3913, 854, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3914, 854, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3915, 854, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3916, 855, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3917, 855, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3918, 855, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3919, 855, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3920, 856, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3921, 856, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3922, 856, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3923, 856, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3924, 856, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3925, 856, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3926, 856, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3927, 856, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3928, 857, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3929, 857, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3930, 857, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3931, 857, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3932, 857, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3933, 857, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3934, 857, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3935, 858, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3936, 858, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3937, 858, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3938, 858, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3939, 859, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3940, 859, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3941, 859, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3942, 859, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3943, 859, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3944, 859, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3945, 861, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3946, 861, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3947, 861, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3948, 861, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3949, 861, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3950, 861, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3951, 862, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3952, 862, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3953, 862, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3954, 862, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3955, 862, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3956, 863, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3957, 863, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3958, 863, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3959, 863, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3960, 863, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3961, 863, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3962, 863, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3963, 864, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3964, 864, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3965, 864, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3966, 864, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3967, 864, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3968, 864, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3969, 865, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3970, 865, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3971, 865, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3972, 865, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3973, 865, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3974, 865, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3975, 866, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3976, 866, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3977, 867, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3978, 867, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3979, 867, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3980, 867, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3981, 868, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3982, 868, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3983, 868, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3984, 869, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3985, 869, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3986, 869, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3987, 869, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3988, 869, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3989, 869, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3990, 869, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3991, 870, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3992, 870, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3993, 870, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3994, 870, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3995, 870, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3996, 870, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3997, 870, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3998, 870, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (3999, 871, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4000, 871, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4001, 871, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4002, 871, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4003, 871, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4004, 872, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4005, 872, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4006, 872, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4007, 873, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4008, 873, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4009, 873, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4010, 873, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4011, 873, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4012, 873, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4013, 873, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4014, 873, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4015, 875, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4016, 875, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4017, 875, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4018, 875, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4019, 875, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4020, 875, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4021, 875, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4022, 876, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4023, 876, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4024, 877, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4025, 877, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4026, 877, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4027, 877, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4028, 877, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4029, 878, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4030, 878, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4031, 878, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4032, 878, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4033, 879, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4034, 879, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4035, 879, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4036, 879, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4037, 879, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4038, 879, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4039, 879, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4040, 880, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4041, 880, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4042, 880, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4043, 880, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4044, 880, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4045, 880, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4046, 880, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4047, 880, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4048, 881, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4049, 881, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4050, 881, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4051, 881, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4052, 882, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4053, 882, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4054, 882, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4055, 882, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4056, 883, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4057, 883, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4058, 884, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4059, 884, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4060, 884, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4061, 885, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4062, 885, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4063, 886, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4064, 886, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4065, 886, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4066, 886, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4067, 887, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4068, 887, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4069, 887, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4070, 887, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4071, 887, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4072, 887, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4073, 888, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4074, 888, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4075, 888, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4076, 888, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4077, 889, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4078, 889, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4079, 889, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4080, 890, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4081, 890, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4082, 890, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4083, 890, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4084, 890, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4085, 890, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4086, 890, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4087, 891, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4088, 891, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4089, 891, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4090, 891, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4091, 891, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4092, 891, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4093, 891, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4094, 892, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4095, 892, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4096, 892, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4097, 892, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4098, 892, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4099, 892, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4100, 892, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4101, 893, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4102, 893, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4103, 893, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4104, 893, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4105, 893, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4106, 893, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4107, 893, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4108, 893, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4109, 894, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4110, 894, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4111, 894, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4112, 894, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4113, 894, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4114, 895, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4115, 895, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4116, 895, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4117, 895, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4118, 895, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4119, 895, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4120, 895, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4121, 896, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4122, 896, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4123, 896, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4124, 896, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4125, 897, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4126, 897, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4127, 897, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4128, 897, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4129, 897, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4130, 897, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4131, 897, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4132, 897, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4133, 898, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4134, 898, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4135, 898, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4136, 898, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4137, 898, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4138, 899, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4139, 899, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4140, 899, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4141, 900, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4142, 900, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4143, 900, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4144, 900, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4145, 901, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4146, 901, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4147, 901, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4148, 901, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4149, 901, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4150, 901, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4151, 901, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4152, 902, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4153, 902, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4154, 902, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4155, 902, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4156, 902, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4157, 902, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4158, 902, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4159, 903, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4160, 903, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4161, 904, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4162, 904, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4163, 905, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4164, 905, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4165, 905, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4166, 906, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4167, 906, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4168, 906, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4169, 906, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4170, 906, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4171, 907, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4172, 907, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4173, 907, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4174, 907, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4175, 908, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4176, 908, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4177, 908, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4178, 908, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4179, 910, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4180, 910, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4181, 911, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4182, 911, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4183, 911, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4184, 911, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4185, 911, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4186, 911, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4187, 911, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4188, 911, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4189, 912, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4190, 912, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4191, 912, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4192, 912, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4193, 912, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4194, 912, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4195, 913, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4196, 913, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4197, 913, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4198, 913, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4199, 913, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4200, 913, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4201, 914, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4202, 914, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4203, 914, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4204, 914, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4205, 914, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4206, 914, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4207, 915, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4208, 915, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4209, 915, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4210, 915, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4211, 915, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4212, 915, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4213, 916, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4214, 916, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4215, 916, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4216, 916, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4217, 917, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4218, 917, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4219, 917, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4220, 917, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4221, 917, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4222, 918, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4223, 918, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4224, 918, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4225, 918, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4226, 919, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4227, 919, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4228, 919, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4229, 919, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4230, 920, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4231, 920, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4232, 920, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4233, 920, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4234, 920, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4235, 921, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4236, 921, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4237, 921, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4238, 921, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4239, 922, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4240, 922, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4241, 922, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4242, 922, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4243, 922, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4244, 922, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4245, 922, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4246, 923, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4247, 923, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4248, 923, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4249, 924, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4250, 924, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4251, 924, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4252, 924, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4253, 924, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4254, 925, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4255, 925, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4256, 925, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4257, 925, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4258, 925, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4259, 926, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4260, 926, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4261, 927, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4262, 927, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4263, 927, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4264, 927, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4265, 928, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4266, 928, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4267, 928, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4268, 929, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4269, 929, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4270, 929, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4271, 929, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4272, 930, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4273, 930, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4274, 930, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4275, 930, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4276, 930, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4277, 930, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4278, 931, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4279, 931, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4280, 931, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4281, 932, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4282, 932, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4283, 932, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4284, 932, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4285, 933, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4286, 933, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4287, 933, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4288, 934, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4289, 934, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4290, 934, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4291, 935, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4292, 935, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4293, 936, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4294, 936, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4295, 936, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4296, 936, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4297, 936, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4298, 936, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4299, 937, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4300, 937, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4301, 937, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4302, 937, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4303, 937, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4304, 938, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4305, 938, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4306, 938, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4307, 938, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4308, 938, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4309, 938, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4310, 939, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4311, 939, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4312, 939, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4313, 939, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4314, 940, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4315, 940, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4316, 940, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4317, 941, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4318, 941, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4319, 941, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4320, 941, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4321, 941, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4322, 941, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4323, 941, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4324, 942, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4325, 942, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4326, 942, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4327, 942, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4328, 944, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4329, 944, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4330, 944, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4331, 944, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4332, 944, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4333, 945, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4334, 945, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4335, 945, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4336, 945, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4337, 945, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4338, 945, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4339, 945, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4340, 945, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4341, 946, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4342, 946, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4343, 946, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4344, 946, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4345, 947, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4346, 947, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4347, 948, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4348, 948, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4349, 948, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4350, 948, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4351, 948, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4352, 948, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4353, 949, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4354, 949, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4355, 949, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4356, 949, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4357, 949, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4358, 949, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4359, 951, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4360, 951, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4361, 951, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4362, 951, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4363, 951, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4364, 951, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4365, 951, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4366, 952, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4367, 952, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4368, 952, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4369, 953, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4370, 953, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4371, 953, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4372, 953, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4373, 953, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4374, 953, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4375, 956, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4376, 956, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4377, 956, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4378, 956, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4379, 957, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4380, 957, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4381, 957, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4382, 957, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4383, 957, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4384, 958, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4385, 958, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4386, 958, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4387, 958, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4388, 958, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4389, 958, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4390, 959, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4391, 959, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4392, 960, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4393, 960, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4394, 960, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4395, 961, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4396, 961, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4397, 961, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4398, 961, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4399, 961, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4400, 962, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4401, 962, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4402, 962, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4403, 962, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4404, 963, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4405, 963, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4406, 963, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4407, 963, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4408, 963, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4409, 964, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4410, 964, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4411, 964, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4412, 964, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4413, 964, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4414, 965, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4415, 965, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4416, 966, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4417, 966, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4418, 966, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4419, 966, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4420, 966, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4421, 966, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4422, 967, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4423, 967, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4424, 967, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4425, 967, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4426, 967, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4427, 968, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4428, 968, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4429, 968, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4430, 969, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4431, 969, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4432, 969, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4433, 969, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4434, 970, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4435, 970, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4436, 970, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4437, 970, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4438, 970, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4439, 970, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4440, 970, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4441, 971, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4442, 971, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4443, 971, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4444, 971, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4445, 972, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4446, 972, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4447, 972, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4448, 972, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4449, 972, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4450, 972, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4451, 973, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4452, 973, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4453, 973, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4454, 973, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4455, 973, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4456, 973, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4457, 973, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4458, 973, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4459, 974, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4460, 974, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4461, 975, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4462, 975, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4463, 975, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4464, 975, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4465, 975, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4466, 976, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4467, 976, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4468, 976, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4469, 976, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4470, 976, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4471, 976, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4472, 977, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4473, 977, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4474, 977, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4475, 978, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4476, 978, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4477, 978, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4478, 979, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4479, 979, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4480, 979, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4481, 979, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4482, 979, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4483, 979, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4484, 979, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4485, 980, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4486, 980, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4487, 980, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4488, 980, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4489, 980, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4490, 981, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4491, 981, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4492, 981, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4493, 981, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4494, 981, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4495, 981, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4496, 982, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4497, 982, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4498, 982, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4499, 982, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4500, 982, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4501, 982, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4502, 982, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4503, 983, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4504, 983, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4505, 983, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4506, 984, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4507, 984, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4508, 985, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4509, 985, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4510, 985, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4511, 985, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4512, 985, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4513, 985, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4514, 985, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4515, 986, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4516, 986, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4517, 986, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4518, 986, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4519, 986, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4520, 986, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4521, 987, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4522, 987, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4523, 987, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4524, 987, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4525, 988, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4526, 988, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4527, 988, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4528, 988, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4529, 988, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4530, 989, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4531, 989, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4532, 989, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4533, 989, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4534, 989, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4535, 989, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4536, 990, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4537, 990, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4538, 991, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4539, 991, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4540, 991, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4541, 991, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4542, 991, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4543, 992, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4544, 992, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4545, 992, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4546, 992, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4547, 993, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4548, 993, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4549, 993, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4550, 993, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4551, 993, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4552, 993, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4553, 993, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4554, 994, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4555, 994, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4556, 994, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4557, 995, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4558, 995, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4559, 995, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4560, 995, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4561, 995, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4562, 995, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4563, 996, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4564, 996, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4565, 997, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4566, 997, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4567, 998, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4568, 998, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4569, 999, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4570, 999, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4571, 999, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4572, 999, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4573, 999, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4574, 1000, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4575, 1000, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4576, 1000, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4577, 1000, 1, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4578, 1000, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4579, 1000, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4580, 1000, 2, '2006-02-15 10:09:17'); -INSERT INTO dvds.inventory VALUES (4581, 1000, 2, '2006-02-15 10:09:17'); - - --- --- TOC entry 3330 (class 0 OID 16499) --- Dependencies: 219 --- Data for Name: language; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.language VALUES (1, 'English ', '2006-02-15 10:02:19'); -INSERT INTO dvds.language VALUES (2, 'Italian ', '2006-02-15 10:02:19'); -INSERT INTO dvds.language VALUES (3, 'Japanese ', '2006-02-15 10:02:19'); -INSERT INTO dvds.language VALUES (4, 'Mandarin ', '2006-02-15 10:02:19'); -INSERT INTO dvds.language VALUES (5, 'French ', '2006-02-15 10:02:19'); -INSERT INTO dvds.language VALUES (6, 'German ', '2006-02-15 10:02:19'); - - --- --- TOC entry 3332 (class 0 OID 16511) --- Dependencies: 222 --- Data for Name: payment; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.payment VALUES (17503, 341, 2, 1520, 7.99, '2007-02-15 22:25:46.996577'); -INSERT INTO dvds.payment VALUES (17504, 341, 1, 1778, 1.99, '2007-02-16 17:23:14.996577'); -INSERT INTO dvds.payment VALUES (17505, 341, 1, 1849, 7.99, '2007-02-16 22:41:45.996577'); -INSERT INTO dvds.payment VALUES (17506, 341, 2, 2829, 2.99, '2007-02-19 19:39:56.996577'); -INSERT INTO dvds.payment VALUES (17507, 341, 2, 3130, 7.99, '2007-02-20 17:31:48.996577'); -INSERT INTO dvds.payment VALUES (17508, 341, 1, 3382, 5.99, '2007-02-21 12:33:49.996577'); -INSERT INTO dvds.payment VALUES (17509, 342, 2, 2190, 5.99, '2007-02-17 23:58:17.996577'); -INSERT INTO dvds.payment VALUES (17510, 342, 1, 2914, 5.99, '2007-02-20 02:11:44.996577'); -INSERT INTO dvds.payment VALUES (17511, 342, 1, 3081, 2.99, '2007-02-20 13:57:39.996577'); -INSERT INTO dvds.payment VALUES (17512, 343, 2, 1547, 4.99, '2007-02-16 00:10:50.996577'); -INSERT INTO dvds.payment VALUES (17513, 343, 1, 1564, 6.99, '2007-02-16 01:15:33.996577'); -INSERT INTO dvds.payment VALUES (17514, 343, 2, 1879, 0.99, '2007-02-17 01:26:00.996577'); -INSERT INTO dvds.payment VALUES (17515, 343, 2, 1922, 0.99, '2007-02-17 04:32:51.996577'); -INSERT INTO dvds.payment VALUES (17516, 343, 2, 2461, 6.99, '2007-02-18 18:26:38.996577'); -INSERT INTO dvds.payment VALUES (17517, 343, 1, 2980, 8.99, '2007-02-20 07:03:29.996577'); -INSERT INTO dvds.payment VALUES (17518, 343, 1, 3407, 0.99, '2007-02-21 14:42:28.996577'); -INSERT INTO dvds.payment VALUES (17519, 344, 1, 1341, 3.99, '2007-02-15 10:54:44.996577'); -INSERT INTO dvds.payment VALUES (17520, 344, 2, 1475, 4.99, '2007-02-15 19:36:27.996577'); -INSERT INTO dvds.payment VALUES (17521, 344, 1, 1731, 0.99, '2007-02-16 14:00:38.996577'); -INSERT INTO dvds.payment VALUES (17522, 345, 2, 1210, 0.99, '2007-02-15 01:26:17.996577'); -INSERT INTO dvds.payment VALUES (17523, 345, 1, 1457, 4.99, '2007-02-15 18:34:15.996577'); -INSERT INTO dvds.payment VALUES (17524, 345, 2, 1550, 0.99, '2007-02-16 00:27:01.996577'); -INSERT INTO dvds.payment VALUES (17525, 345, 2, 2766, 4.99, '2007-02-19 16:13:41.996577'); -INSERT INTO dvds.payment VALUES (17526, 346, 1, 1994, 5.99, '2007-02-17 09:35:32.996577'); -INSERT INTO dvds.payment VALUES (17527, 346, 2, 3372, 2.99, '2007-02-21 12:02:45.996577'); -INSERT INTO dvds.payment VALUES (17528, 346, 1, 3421, 2.99, '2007-02-21 15:51:24.996577'); -INSERT INTO dvds.payment VALUES (17529, 347, 2, 1711, 8.99, '2007-02-16 12:40:18.996577'); -INSERT INTO dvds.payment VALUES (17530, 347, 2, 2274, 0.99, '2007-02-18 04:59:41.996577'); -INSERT INTO dvds.payment VALUES (17531, 347, 1, 3026, 4.99, '2007-02-20 10:16:26.996577'); -INSERT INTO dvds.payment VALUES (17532, 347, 1, 3092, 8.99, '2007-02-20 14:33:08.996577'); -INSERT INTO dvds.payment VALUES (17533, 347, 1, 3326, 7.99, '2007-02-21 07:33:16.996577'); -INSERT INTO dvds.payment VALUES (17534, 348, 1, 1654, 2.99, '2007-02-16 08:11:14.996577'); -INSERT INTO dvds.payment VALUES (17535, 348, 1, 2041, 8.99, '2007-02-17 12:47:26.996577'); -INSERT INTO dvds.payment VALUES (17536, 348, 2, 2499, 0.99, '2007-02-18 21:30:02.996577'); -INSERT INTO dvds.payment VALUES (17537, 349, 1, 1197, 2.99, '2007-02-15 00:11:12.996577'); -INSERT INTO dvds.payment VALUES (17538, 349, 1, 1523, 0.99, '2007-02-15 22:47:06.996577'); -INSERT INTO dvds.payment VALUES (17539, 349, 2, 2987, 6.99, '2007-02-20 07:24:16.996577'); -INSERT INTO dvds.payment VALUES (17540, 349, 1, 3067, 8.99, '2007-02-20 12:27:47.996577'); -INSERT INTO dvds.payment VALUES (17541, 350, 2, 2011, 3.99, '2007-02-17 10:24:35.996577'); -INSERT INTO dvds.payment VALUES (17542, 350, 1, 2619, 0.99, '2007-02-19 06:31:38.996577'); -INSERT INTO dvds.payment VALUES (17543, 350, 1, 3079, 2.99, '2007-02-20 13:42:06.996577'); -INSERT INTO dvds.payment VALUES (17544, 350, 2, 3206, 0.99, '2007-02-20 23:08:05.996577'); -INSERT INTO dvds.payment VALUES (17545, 351, 2, 1792, 5.99, '2007-02-16 18:33:16.996577'); -INSERT INTO dvds.payment VALUES (17546, 351, 1, 1869, 0.99, '2007-02-17 00:36:26.996577'); -INSERT INTO dvds.payment VALUES (17547, 351, 1, 2759, 2.99, '2007-02-19 15:38:50.996577'); -INSERT INTO dvds.payment VALUES (17548, 352, 1, 1498, 0.99, '2007-02-15 20:26:26.996577'); -INSERT INTO dvds.payment VALUES (17549, 352, 1, 1649, 4.99, '2007-02-16 07:48:59.996577'); -INSERT INTO dvds.payment VALUES (17550, 352, 1, 1678, 4.99, '2007-02-16 09:36:54.996577'); -INSERT INTO dvds.payment VALUES (17551, 352, 1, 1780, 4.99, '2007-02-16 17:40:11.996577'); -INSERT INTO dvds.payment VALUES (17552, 352, 2, 3331, 4.99, '2007-02-21 08:06:19.996577'); -INSERT INTO dvds.payment VALUES (17553, 353, 2, 1359, 2.99, '2007-02-15 11:58:56.996577'); -INSERT INTO dvds.payment VALUES (17554, 353, 2, 1928, 7.99, '2007-02-17 05:16:57.996577'); -INSERT INTO dvds.payment VALUES (17555, 353, 2, 3233, 6.99, '2007-02-21 01:07:57.996577'); -INSERT INTO dvds.payment VALUES (17556, 354, 1, 1491, 0.99, '2007-02-15 20:16:44.996577'); -INSERT INTO dvds.payment VALUES (17557, 354, 1, 2275, 4.99, '2007-02-18 04:59:55.996577'); -INSERT INTO dvds.payment VALUES (17558, 354, 1, 2769, 6.99, '2007-02-19 16:20:40.996577'); -INSERT INTO dvds.payment VALUES (17559, 354, 1, 3139, 2.99, '2007-02-20 18:13:11.996577'); -INSERT INTO dvds.payment VALUES (17560, 355, 2, 1488, 0.99, '2007-02-15 20:08:20.996577'); -INSERT INTO dvds.payment VALUES (17561, 355, 1, 1612, 2.99, '2007-02-16 05:20:31.996577'); -INSERT INTO dvds.payment VALUES (17562, 356, 1, 1410, 0.99, '2007-02-15 15:28:12.996577'); -INSERT INTO dvds.payment VALUES (17563, 356, 1, 2405, 2.99, '2007-02-18 15:05:04.996577'); -INSERT INTO dvds.payment VALUES (17564, 356, 1, 2433, 4.99, '2007-02-18 16:38:43.996577'); -INSERT INTO dvds.payment VALUES (17565, 357, 2, 1246, 5.99, '2007-02-15 03:39:45.996577'); -INSERT INTO dvds.payment VALUES (17566, 357, 1, 1788, 1.99, '2007-02-16 18:15:44.996577'); -INSERT INTO dvds.payment VALUES (17567, 357, 2, 1971, 1.99, '2007-02-17 07:52:25.996577'); -INSERT INTO dvds.payment VALUES (17568, 357, 2, 2153, 6.99, '2007-02-17 21:26:30.996577'); -INSERT INTO dvds.payment VALUES (17569, 358, 1, 1455, 2.99, '2007-02-15 18:19:32.996577'); -INSERT INTO dvds.payment VALUES (17570, 358, 2, 1908, 0.99, '2007-02-17 03:39:02.996577'); -INSERT INTO dvds.payment VALUES (17571, 358, 1, 2114, 5.99, '2007-02-17 18:28:51.996577'); -INSERT INTO dvds.payment VALUES (17572, 358, 1, 2721, 2.99, '2007-02-19 13:21:50.996577'); -INSERT INTO dvds.payment VALUES (17573, 358, 1, 2749, 2.99, '2007-02-19 14:56:01.996577'); -INSERT INTO dvds.payment VALUES (17574, 358, 1, 3245, 2.99, '2007-02-21 01:34:37.996577'); -INSERT INTO dvds.payment VALUES (17575, 359, 2, 1329, 4.99, '2007-02-15 09:53:32.996577'); -INSERT INTO dvds.payment VALUES (17576, 359, 2, 1770, 1.99, '2007-02-16 16:36:21.996577'); -INSERT INTO dvds.payment VALUES (17577, 359, 1, 2401, 0.99, '2007-02-18 14:50:29.996577'); -INSERT INTO dvds.payment VALUES (17578, 359, 1, 2736, 4.99, '2007-02-19 14:11:46.996577'); -INSERT INTO dvds.payment VALUES (17579, 360, 2, 1492, 0.99, '2007-02-15 20:17:01.996577'); -INSERT INTO dvds.payment VALUES (17580, 360, 2, 2402, 6.99, '2007-02-18 14:53:11.996577'); -INSERT INTO dvds.payment VALUES (17581, 360, 2, 2541, 3.99, '2007-02-19 00:36:36.996577'); -INSERT INTO dvds.payment VALUES (17582, 360, 2, 2780, 6.99, '2007-02-19 16:47:59.996577'); -INSERT INTO dvds.payment VALUES (17583, 361, 2, 2353, 4.99, '2007-02-18 11:21:51.996577'); -INSERT INTO dvds.payment VALUES (17584, 361, 2, 2558, 1.99, '2007-02-19 01:37:42.996577'); -INSERT INTO dvds.payment VALUES (17585, 361, 1, 2851, 2.99, '2007-02-19 21:35:29.996577'); -INSERT INTO dvds.payment VALUES (17586, 361, 2, 3303, 2.99, '2007-02-21 06:02:40.996577'); -INSERT INTO dvds.payment VALUES (17587, 362, 1, 1429, 2.99, '2007-02-15 16:52:36.996577'); -INSERT INTO dvds.payment VALUES (17588, 362, 1, 1529, 2.99, '2007-02-15 23:06:01.996577'); -INSERT INTO dvds.payment VALUES (17589, 362, 1, 1615, 2.99, '2007-02-16 05:28:54.996577'); -INSERT INTO dvds.payment VALUES (17590, 362, 2, 3197, 2.99, '2007-02-20 22:35:49.996577'); -INSERT INTO dvds.payment VALUES (17591, 362, 2, 3393, 2.99, '2007-02-21 13:42:53.996577'); -INSERT INTO dvds.payment VALUES (17592, 363, 2, 1426, 4.99, '2007-02-15 16:44:50.996577'); -INSERT INTO dvds.payment VALUES (17593, 363, 2, 1569, 4.99, '2007-02-16 01:47:35.996577'); -INSERT INTO dvds.payment VALUES (17594, 363, 1, 1847, 4.99, '2007-02-16 22:33:48.996577'); -INSERT INTO dvds.payment VALUES (17595, 363, 1, 2540, 4.99, '2007-02-19 00:33:14.996577'); -INSERT INTO dvds.payment VALUES (17596, 363, 2, 3281, 2.99, '2007-02-21 04:37:13.996577'); -INSERT INTO dvds.payment VALUES (17597, 364, 1, 1722, 2.99, '2007-02-16 13:41:18.996577'); -INSERT INTO dvds.payment VALUES (17598, 364, 2, 2442, 2.99, '2007-02-18 17:17:44.996577'); -INSERT INTO dvds.payment VALUES (17599, 364, 2, 2606, 4.99, '2007-02-19 05:19:58.996577'); -INSERT INTO dvds.payment VALUES (17600, 364, 2, 2857, 4.99, '2007-02-19 21:43:41.996577'); -INSERT INTO dvds.payment VALUES (17601, 364, 2, 2962, 3.99, '2007-02-20 06:00:21.996577'); -INSERT INTO dvds.payment VALUES (17602, 365, 1, 1303, 1.99, '2007-02-15 08:24:23.996577'); -INSERT INTO dvds.payment VALUES (17603, 365, 1, 1578, 6.99, '2007-02-16 02:36:42.996577'); -INSERT INTO dvds.payment VALUES (17604, 365, 1, 1983, 4.99, '2007-02-17 08:50:39.996577'); -INSERT INTO dvds.payment VALUES (17605, 365, 1, 2525, 2.99, '2007-02-18 23:16:48.996577'); -INSERT INTO dvds.payment VALUES (17606, 365, 2, 3156, 0.99, '2007-02-20 19:32:12.996577'); -INSERT INTO dvds.payment VALUES (17607, 366, 2, 1401, 1.99, '2007-02-15 14:58:48.996577'); -INSERT INTO dvds.payment VALUES (17608, 366, 2, 2214, 0.99, '2007-02-18 01:13:03.996577'); -INSERT INTO dvds.payment VALUES (17609, 367, 1, 3078, 0.99, '2007-02-20 13:38:14.996577'); -INSERT INTO dvds.payment VALUES (17610, 368, 1, 1186, 0.99, '2007-02-14 23:25:11.996577'); -INSERT INTO dvds.payment VALUES (17611, 368, 1, 1513, 9.99, '2007-02-15 21:21:56.996577'); -INSERT INTO dvds.payment VALUES (17612, 368, 1, 2531, 4.99, '2007-02-18 23:49:15.996577'); -INSERT INTO dvds.payment VALUES (17613, 368, 1, 2694, 4.99, '2007-02-19 11:45:47.996577'); -INSERT INTO dvds.payment VALUES (17614, 368, 1, 2744, 4.99, '2007-02-19 14:49:06.996577'); -INSERT INTO dvds.payment VALUES (17615, 368, 2, 3275, 4.99, '2007-02-21 04:01:30.996577'); -INSERT INTO dvds.payment VALUES (17616, 369, 1, 1224, 0.99, '2007-02-15 02:12:51.996577'); -INSERT INTO dvds.payment VALUES (17617, 370, 2, 1190, 6.99, '2007-02-14 23:33:58.996577'); -INSERT INTO dvds.payment VALUES (17618, 371, 2, 1212, 2.99, '2007-02-15 01:31:59.996577'); -INSERT INTO dvds.payment VALUES (17619, 371, 1, 1218, 1.99, '2007-02-15 01:53:10.996577'); -INSERT INTO dvds.payment VALUES (17620, 371, 1, 1573, 6.99, '2007-02-16 02:00:05.996577'); -INSERT INTO dvds.payment VALUES (17621, 371, 2, 1675, 5.99, '2007-02-16 09:33:13.996577'); -INSERT INTO dvds.payment VALUES (17622, 371, 2, 2837, 0.99, '2007-02-19 20:32:16.996577'); -INSERT INTO dvds.payment VALUES (17623, 371, 1, 3176, 3.99, '2007-02-20 21:00:20.996577'); -INSERT INTO dvds.payment VALUES (17624, 371, 2, 3396, 0.99, '2007-02-21 13:51:34.996577'); -INSERT INTO dvds.payment VALUES (17625, 372, 1, 2315, 2.99, '2007-02-18 07:32:05.996577'); -INSERT INTO dvds.payment VALUES (17626, 372, 1, 2959, 4.99, '2007-02-20 05:36:20.996577'); -INSERT INTO dvds.payment VALUES (17627, 372, 1, 3283, 3.99, '2007-02-21 04:47:33.996577'); -INSERT INTO dvds.payment VALUES (17628, 373, 1, 1472, 6.99, '2007-02-15 19:23:21.996577'); -INSERT INTO dvds.payment VALUES (17629, 373, 1, 3161, 2.99, '2007-02-20 19:49:27.996577'); -INSERT INTO dvds.payment VALUES (17630, 374, 1, 1548, 1.99, '2007-02-16 00:11:59.996577'); -INSERT INTO dvds.payment VALUES (17631, 374, 2, 2046, 1.99, '2007-02-17 13:08:16.996577'); -INSERT INTO dvds.payment VALUES (17632, 374, 2, 2487, 4.99, '2007-02-18 20:01:20.996577'); -INSERT INTO dvds.payment VALUES (17633, 374, 2, 2641, 2.99, '2007-02-19 08:06:59.996577'); -INSERT INTO dvds.payment VALUES (17634, 375, 2, 1404, 2.99, '2007-02-15 15:07:19.996577'); -INSERT INTO dvds.payment VALUES (17635, 375, 1, 1499, 5.99, '2007-02-15 20:26:33.996577'); -INSERT INTO dvds.payment VALUES (17636, 375, 1, 2236, 4.99, '2007-02-18 02:40:59.996577'); -INSERT INTO dvds.payment VALUES (17637, 376, 2, 1208, 0.99, '2007-02-15 00:58:29.996577'); -INSERT INTO dvds.payment VALUES (17638, 376, 1, 2779, 0.99, '2007-02-19 16:47:33.996577'); -INSERT INTO dvds.payment VALUES (17639, 377, 2, 2556, 3.99, '2007-02-19 01:35:58.996577'); -INSERT INTO dvds.payment VALUES (17640, 377, 1, 3080, 1.99, '2007-02-20 13:50:58.996577'); -INSERT INTO dvds.payment VALUES (17641, 377, 2, 3086, 0.99, '2007-02-20 14:11:06.996577'); -INSERT INTO dvds.payment VALUES (17642, 377, 2, 3136, 2.99, '2007-02-20 18:07:34.996577'); -INSERT INTO dvds.payment VALUES (17643, 377, 2, 3443, 4.99, '2007-02-21 18:47:26.996577'); -INSERT INTO dvds.payment VALUES (17644, 378, 2, 1623, 4.99, '2007-02-16 06:17:16.996577'); -INSERT INTO dvds.payment VALUES (17645, 378, 1, 1662, 5.99, '2007-02-16 08:42:01.996577'); -INSERT INTO dvds.payment VALUES (17646, 378, 2, 2134, 7.99, '2007-02-17 19:42:10.996577'); -INSERT INTO dvds.payment VALUES (17647, 378, 2, 2713, 4.99, '2007-02-19 12:51:35.996577'); -INSERT INTO dvds.payment VALUES (17648, 379, 1, 1383, 8.99, '2007-02-15 13:48:32.996577'); -INSERT INTO dvds.payment VALUES (17649, 379, 1, 2313, 5.99, '2007-02-18 07:25:11.996577'); -INSERT INTO dvds.payment VALUES (17650, 379, 1, 2926, 2.99, '2007-02-20 03:06:11.996577'); -INSERT INTO dvds.payment VALUES (17651, 380, 1, 1868, 3.99, '2007-02-17 00:31:48.996577'); -INSERT INTO dvds.payment VALUES (17652, 380, 1, 1984, 2.99, '2007-02-17 08:53:54.996577'); -INSERT INTO dvds.payment VALUES (17653, 380, 1, 2018, 3.99, '2007-02-17 11:04:24.996577'); -INSERT INTO dvds.payment VALUES (17654, 380, 1, 2440, 2.99, '2007-02-18 17:09:35.996577'); -INSERT INTO dvds.payment VALUES (17655, 380, 1, 2464, 4.99, '2007-02-18 18:34:31.996577'); -INSERT INTO dvds.payment VALUES (17656, 380, 2, 2998, 1.99, '2007-02-20 07:58:48.996577'); -INSERT INTO dvds.payment VALUES (17657, 380, 2, 3099, 1.99, '2007-02-20 15:12:59.996577'); -INSERT INTO dvds.payment VALUES (17658, 380, 1, 3260, 4.99, '2007-02-21 02:27:39.996577'); -INSERT INTO dvds.payment VALUES (17659, 381, 1, 1402, 3.99, '2007-02-15 14:59:34.996577'); -INSERT INTO dvds.payment VALUES (17660, 381, 1, 1878, 1.99, '2007-02-17 01:23:58.996577'); -INSERT INTO dvds.payment VALUES (17661, 381, 2, 2410, 2.99, '2007-02-18 15:23:34.996577'); -INSERT INTO dvds.payment VALUES (17662, 381, 1, 2418, 4.99, '2007-02-18 15:43:08.996577'); -INSERT INTO dvds.payment VALUES (17663, 381, 2, 3425, 2.99, '2007-02-21 16:35:33.996577'); -INSERT INTO dvds.payment VALUES (17664, 382, 1, 2389, 0.99, '2007-02-18 13:56:13.996577'); -INSERT INTO dvds.payment VALUES (17665, 382, 1, 2468, 4.99, '2007-02-18 18:52:18.996577'); -INSERT INTO dvds.payment VALUES (17666, 382, 1, 2489, 1.99, '2007-02-18 20:29:10.996577'); -INSERT INTO dvds.payment VALUES (17667, 382, 1, 2514, 2.99, '2007-02-18 22:25:10.996577'); -INSERT INTO dvds.payment VALUES (17668, 382, 2, 3125, 4.99, '2007-02-20 17:00:24.996577'); -INSERT INTO dvds.payment VALUES (17669, 383, 1, 1831, 7.99, '2007-02-16 20:50:43.996577'); -INSERT INTO dvds.payment VALUES (17670, 383, 2, 2228, 2.99, '2007-02-18 02:13:16.996577'); -INSERT INTO dvds.payment VALUES (17671, 383, 1, 2252, 2.99, '2007-02-18 03:33:44.996577'); -INSERT INTO dvds.payment VALUES (17672, 383, 2, 2318, 2.99, '2007-02-18 07:42:20.996577'); -INSERT INTO dvds.payment VALUES (17673, 383, 1, 2609, 7.99, '2007-02-19 05:41:38.996577'); -INSERT INTO dvds.payment VALUES (17674, 383, 1, 3091, 2.99, '2007-02-20 14:31:25.996577'); -INSERT INTO dvds.payment VALUES (17675, 384, 1, 1961, 0.99, '2007-02-17 07:31:24.996577'); -INSERT INTO dvds.payment VALUES (17676, 384, 2, 2020, 0.99, '2007-02-17 11:08:16.996577'); -INSERT INTO dvds.payment VALUES (17677, 384, 1, 2378, 7.99, '2007-02-18 13:26:15.996577'); -INSERT INTO dvds.payment VALUES (17678, 384, 2, 2510, 5.99, '2007-02-18 22:12:47.996577'); -INSERT INTO dvds.payment VALUES (17679, 384, 2, 2935, 3.99, '2007-02-20 03:35:50.996577'); -INSERT INTO dvds.payment VALUES (17680, 384, 1, 3088, 9.99, '2007-02-20 14:24:31.996577'); -INSERT INTO dvds.payment VALUES (17681, 384, 2, 3101, 4.99, '2007-02-20 15:17:24.996577'); -INSERT INTO dvds.payment VALUES (17682, 385, 1, 1746, 2.99, '2007-02-16 15:09:45.996577'); -INSERT INTO dvds.payment VALUES (17683, 385, 1, 1937, 0.99, '2007-02-17 05:45:12.996577'); -INSERT INTO dvds.payment VALUES (17684, 385, 1, 3105, 0.99, '2007-02-20 15:40:12.996577'); -INSERT INTO dvds.payment VALUES (17685, 386, 2, 1585, 3.99, '2007-02-16 03:19:39.996577'); -INSERT INTO dvds.payment VALUES (17686, 386, 1, 1608, 2.99, '2007-02-16 04:57:23.996577'); -INSERT INTO dvds.payment VALUES (17687, 386, 2, 1819, 5.99, '2007-02-16 20:01:16.996577'); -INSERT INTO dvds.payment VALUES (17688, 386, 1, 2732, 0.99, '2007-02-19 13:48:05.996577'); -INSERT INTO dvds.payment VALUES (17689, 386, 1, 3351, 2.99, '2007-02-21 09:50:05.996577'); -INSERT INTO dvds.payment VALUES (17690, 387, 1, 1464, 0.99, '2007-02-15 19:06:40.996577'); -INSERT INTO dvds.payment VALUES (17691, 387, 2, 1465, 0.99, '2007-02-15 19:11:34.996577'); -INSERT INTO dvds.payment VALUES (17692, 387, 1, 2068, 0.99, '2007-02-17 14:40:12.996577'); -INSERT INTO dvds.payment VALUES (17693, 387, 2, 2100, 0.99, '2007-02-17 17:21:47.996577'); -INSERT INTO dvds.payment VALUES (17694, 387, 2, 2981, 5.99, '2007-02-20 07:03:43.996577'); -INSERT INTO dvds.payment VALUES (17695, 387, 2, 3378, 4.99, '2007-02-21 12:19:54.996577'); -INSERT INTO dvds.payment VALUES (17696, 388, 2, 1276, 6.99, '2007-02-15 06:28:39.996577'); -INSERT INTO dvds.payment VALUES (17697, 388, 1, 2145, 0.99, '2007-02-17 20:39:02.996577'); -INSERT INTO dvds.payment VALUES (17698, 388, 1, 2537, 5.99, '2007-02-19 00:20:47.996577'); -INSERT INTO dvds.payment VALUES (17699, 388, 1, 2692, 4.99, '2007-02-19 11:36:45.996577'); -INSERT INTO dvds.payment VALUES (17700, 388, 2, 3159, 7.99, '2007-02-20 19:40:16.996577'); -INSERT INTO dvds.payment VALUES (17701, 389, 1, 1763, 4.99, '2007-02-16 16:19:27.996577'); -INSERT INTO dvds.payment VALUES (17702, 389, 1, 1946, 4.99, '2007-02-17 06:27:05.996577'); -INSERT INTO dvds.payment VALUES (17703, 389, 1, 2552, 3.99, '2007-02-19 01:29:55.996577'); -INSERT INTO dvds.payment VALUES (17704, 390, 2, 1539, 5.99, '2007-02-15 23:39:51.996577'); -INSERT INTO dvds.payment VALUES (17705, 390, 2, 1730, 2.99, '2007-02-16 13:58:27.996577'); -INSERT INTO dvds.payment VALUES (17706, 390, 2, 1893, 2.99, '2007-02-17 02:47:03.996577'); -INSERT INTO dvds.payment VALUES (17707, 390, 1, 2330, 7.99, '2007-02-18 09:09:45.996577'); -INSERT INTO dvds.payment VALUES (17708, 390, 1, 3147, 5.99, '2007-02-20 18:53:43.996577'); -INSERT INTO dvds.payment VALUES (17709, 391, 2, 1232, 0.99, '2007-02-15 02:46:36.996577'); -INSERT INTO dvds.payment VALUES (17710, 391, 2, 1931, 0.99, '2007-02-17 05:20:22.996577'); -INSERT INTO dvds.payment VALUES (17711, 391, 1, 2045, 2.99, '2007-02-17 13:06:37.996577'); -INSERT INTO dvds.payment VALUES (17712, 391, 1, 2690, 2.99, '2007-02-19 11:28:28.996577'); -INSERT INTO dvds.payment VALUES (17713, 391, 2, 3163, 2.99, '2007-02-20 19:50:39.996577'); -INSERT INTO dvds.payment VALUES (17714, 392, 2, 1530, 6.99, '2007-02-15 23:06:33.996577'); -INSERT INTO dvds.payment VALUES (17715, 392, 2, 1764, 2.99, '2007-02-16 16:20:20.996577'); -INSERT INTO dvds.payment VALUES (17716, 392, 2, 2289, 2.99, '2007-02-18 05:58:09.996577'); -INSERT INTO dvds.payment VALUES (17717, 392, 2, 2890, 4.99, '2007-02-20 00:29:11.996577'); -INSERT INTO dvds.payment VALUES (17718, 393, 1, 1611, 6.99, '2007-02-16 05:10:01.996577'); -INSERT INTO dvds.payment VALUES (17719, 393, 2, 1915, 1.99, '2007-02-17 03:56:54.996577'); -INSERT INTO dvds.payment VALUES (17720, 393, 2, 2219, 2.99, '2007-02-18 01:45:20.996577'); -INSERT INTO dvds.payment VALUES (17721, 393, 1, 2319, 4.99, '2007-02-18 07:52:48.996577'); -INSERT INTO dvds.payment VALUES (17722, 393, 2, 3001, 2.99, '2007-02-20 08:18:42.996577'); -INSERT INTO dvds.payment VALUES (17723, 394, 2, 1324, 4.99, '2007-02-15 09:31:11.996577'); -INSERT INTO dvds.payment VALUES (17724, 395, 1, 1270, 0.99, '2007-02-15 05:58:48.996577'); -INSERT INTO dvds.payment VALUES (17725, 395, 1, 1562, 0.99, '2007-02-16 01:14:53.996577'); -INSERT INTO dvds.payment VALUES (17726, 395, 2, 1603, 0.99, '2007-02-16 04:42:29.996577'); -INSERT INTO dvds.payment VALUES (17727, 395, 1, 3030, 4.99, '2007-02-20 10:20:25.996577'); -INSERT INTO dvds.payment VALUES (17728, 395, 1, 3310, 0.99, '2007-02-21 06:33:17.996577'); -INSERT INTO dvds.payment VALUES (17729, 395, 1, 3389, 6.99, '2007-02-21 13:06:21.996577'); -INSERT INTO dvds.payment VALUES (17730, 396, 2, 1370, 1.99, '2007-02-15 12:59:31.996577'); -INSERT INTO dvds.payment VALUES (17731, 396, 2, 1385, 4.99, '2007-02-15 13:56:49.996577'); -INSERT INTO dvds.payment VALUES (17732, 396, 2, 1408, 6.99, '2007-02-15 15:26:24.996577'); -INSERT INTO dvds.payment VALUES (17733, 397, 1, 1769, 5.99, '2007-02-16 16:36:14.996577'); -INSERT INTO dvds.payment VALUES (17734, 397, 2, 3027, 1.99, '2007-02-20 10:18:56.996577'); -INSERT INTO dvds.payment VALUES (17735, 398, 2, 1228, 2.99, '2007-02-15 02:19:02.996577'); -INSERT INTO dvds.payment VALUES (17736, 398, 1, 2087, 6.99, '2007-02-17 16:03:36.996577'); -INSERT INTO dvds.payment VALUES (17737, 398, 2, 3141, 9.99, '2007-02-20 18:24:13.996577'); -INSERT INTO dvds.payment VALUES (17738, 399, 2, 2961, 2.99, '2007-02-20 05:57:41.996577'); -INSERT INTO dvds.payment VALUES (17739, 399, 1, 3036, 5.99, '2007-02-20 10:46:57.996577'); -INSERT INTO dvds.payment VALUES (17740, 400, 2, 1364, 0.99, '2007-02-15 12:33:58.996577'); -INSERT INTO dvds.payment VALUES (17741, 400, 1, 1917, 3.99, '2007-02-17 04:04:33.996577'); -INSERT INTO dvds.payment VALUES (17742, 400, 2, 1923, 6.99, '2007-02-17 04:34:36.996577'); -INSERT INTO dvds.payment VALUES (17743, 402, 2, 1194, 4.99, '2007-02-14 23:53:34.996577'); -INSERT INTO dvds.payment VALUES (17744, 402, 2, 2490, 4.99, '2007-02-18 20:29:16.996577'); -INSERT INTO dvds.payment VALUES (17745, 402, 2, 2913, 2.99, '2007-02-20 02:10:53.996577'); -INSERT INTO dvds.payment VALUES (17746, 403, 2, 1221, 4.99, '2007-02-15 02:03:42.996577'); -INSERT INTO dvds.payment VALUES (17747, 403, 1, 1249, 8.99, '2007-02-15 04:06:35.996577'); -INSERT INTO dvds.payment VALUES (17748, 403, 2, 2488, 3.99, '2007-02-18 20:06:52.996577'); -INSERT INTO dvds.payment VALUES (17749, 403, 1, 2927, 4.99, '2007-02-20 03:10:07.996577'); -INSERT INTO dvds.payment VALUES (17750, 403, 2, 3049, 6.99, '2007-02-20 11:19:27.996577'); -INSERT INTO dvds.payment VALUES (17751, 403, 1, 3356, 5.99, '2007-02-21 10:07:11.996577'); -INSERT INTO dvds.payment VALUES (17752, 404, 2, 1506, 2.99, '2007-02-15 20:48:03.996577'); -INSERT INTO dvds.payment VALUES (17753, 404, 2, 1840, 4.99, '2007-02-16 22:08:00.996577'); -INSERT INTO dvds.payment VALUES (17754, 404, 1, 2715, 4.99, '2007-02-19 12:58:01.996577'); -INSERT INTO dvds.payment VALUES (17755, 404, 1, 2951, 2.99, '2007-02-20 04:51:27.996577'); -INSERT INTO dvds.payment VALUES (17756, 405, 2, 1315, 4.99, '2007-02-15 08:51:34.996577'); -INSERT INTO dvds.payment VALUES (17757, 405, 1, 1888, 0.99, '2007-02-17 02:27:02.996577'); -INSERT INTO dvds.payment VALUES (17758, 405, 2, 1953, 5.99, '2007-02-17 07:03:23.996577'); -INSERT INTO dvds.payment VALUES (17759, 405, 2, 2654, 3.99, '2007-02-19 09:06:20.996577'); -INSERT INTO dvds.payment VALUES (17760, 405, 1, 3240, 4.99, '2007-02-21 01:21:43.996577'); -INSERT INTO dvds.payment VALUES (17761, 405, 1, 3253, 5.99, '2007-02-21 01:54:03.996577'); -INSERT INTO dvds.payment VALUES (17762, 406, 1, 2113, 4.99, '2007-02-17 18:26:12.996577'); -INSERT INTO dvds.payment VALUES (17763, 406, 2, 2150, 3.99, '2007-02-17 21:19:02.996577'); -INSERT INTO dvds.payment VALUES (17764, 406, 1, 2241, 2.99, '2007-02-18 03:00:07.996577'); -INSERT INTO dvds.payment VALUES (17765, 406, 2, 2325, 0.99, '2007-02-18 08:36:33.996577'); -INSERT INTO dvds.payment VALUES (17766, 406, 2, 2585, 0.99, '2007-02-19 03:33:29.996577'); -INSERT INTO dvds.payment VALUES (17767, 406, 1, 3186, 7.99, '2007-02-20 21:32:46.996577'); -INSERT INTO dvds.payment VALUES (17768, 406, 1, 3306, 4.99, '2007-02-21 06:15:24.996577'); -INSERT INTO dvds.payment VALUES (17769, 407, 1, 1698, 2.99, '2007-02-16 11:33:08.996577'); -INSERT INTO dvds.payment VALUES (17770, 407, 2, 2597, 0.99, '2007-02-19 04:22:12.996577'); -INSERT INTO dvds.payment VALUES (17771, 408, 2, 2479, 4.99, '2007-02-18 19:31:34.996577'); -INSERT INTO dvds.payment VALUES (17772, 408, 1, 2564, 2.99, '2007-02-19 02:09:36.996577'); -INSERT INTO dvds.payment VALUES (17773, 408, 2, 2728, 2.99, '2007-02-19 13:32:30.996577'); -INSERT INTO dvds.payment VALUES (17774, 409, 2, 1226, 5.99, '2007-02-15 02:14:36.996577'); -INSERT INTO dvds.payment VALUES (17775, 409, 2, 2310, 8.99, '2007-02-18 07:14:25.996577'); -INSERT INTO dvds.payment VALUES (17776, 410, 1, 1514, 2.99, '2007-02-15 21:26:00.996577'); -INSERT INTO dvds.payment VALUES (17777, 410, 1, 2073, 2.99, '2007-02-17 15:02:25.996577'); -INSERT INTO dvds.payment VALUES (17778, 410, 1, 2255, 4.99, '2007-02-18 03:49:38.996577'); -INSERT INTO dvds.payment VALUES (17779, 410, 2, 2400, 5.99, '2007-02-18 14:39:12.996577'); -INSERT INTO dvds.payment VALUES (17780, 410, 2, 2971, 0.99, '2007-02-20 06:24:26.996577'); -INSERT INTO dvds.payment VALUES (17781, 410, 1, 3249, 4.99, '2007-02-21 01:41:45.996577'); -INSERT INTO dvds.payment VALUES (17782, 411, 1, 1985, 0.99, '2007-02-17 09:00:03.996577'); -INSERT INTO dvds.payment VALUES (17783, 411, 2, 1997, 2.99, '2007-02-17 09:48:09.996577'); -INSERT INTO dvds.payment VALUES (17784, 411, 2, 2712, 0.99, '2007-02-19 12:48:39.996577'); -INSERT INTO dvds.payment VALUES (17785, 412, 1, 3292, 2.99, '2007-02-21 05:27:37.996577'); -INSERT INTO dvds.payment VALUES (17786, 413, 2, 2130, 5.99, '2007-02-17 19:29:10.996577'); -INSERT INTO dvds.payment VALUES (17787, 413, 2, 2545, 4.99, '2007-02-19 00:52:02.996577'); -INSERT INTO dvds.payment VALUES (17788, 414, 1, 2246, 4.99, '2007-02-18 03:22:55.996577'); -INSERT INTO dvds.payment VALUES (17789, 414, 1, 2559, 9.99, '2007-02-19 01:38:12.996577'); -INSERT INTO dvds.payment VALUES (17790, 414, 1, 3318, 5.99, '2007-02-21 06:51:31.996577'); -INSERT INTO dvds.payment VALUES (17791, 415, 2, 1867, 4.99, '2007-02-17 00:30:03.996577'); -INSERT INTO dvds.payment VALUES (17792, 415, 1, 3211, 2.99, '2007-02-20 23:29:55.996577'); -INSERT INTO dvds.payment VALUES (17793, 416, 2, 1158, 2.99, '2007-02-14 21:21:59.996577'); -INSERT INTO dvds.payment VALUES (17794, 416, 1, 1343, 4.99, '2007-02-15 10:55:45.996577'); -INSERT INTO dvds.payment VALUES (17795, 416, 2, 1553, 0.99, '2007-02-16 00:31:10.996577'); -INSERT INTO dvds.payment VALUES (17796, 416, 2, 1596, 2.99, '2007-02-16 03:59:24.996577'); -INSERT INTO dvds.payment VALUES (17797, 416, 2, 1771, 0.99, '2007-02-16 16:40:43.996577'); -INSERT INTO dvds.payment VALUES (17798, 417, 1, 1921, 3.99, '2007-02-17 04:32:42.996577'); -INSERT INTO dvds.payment VALUES (17799, 418, 1, 2825, 2.99, '2007-02-19 19:00:45.996577'); -INSERT INTO dvds.payment VALUES (17800, 418, 2, 2943, 2.99, '2007-02-20 04:11:31.996577'); -INSERT INTO dvds.payment VALUES (17801, 418, 2, 2969, 2.99, '2007-02-20 06:12:53.996577'); -INSERT INTO dvds.payment VALUES (17802, 419, 2, 2793, 2.99, '2007-02-19 17:21:03.996577'); -INSERT INTO dvds.payment VALUES (17803, 420, 2, 2672, 3.99, '2007-02-19 10:10:30.996577'); -INSERT INTO dvds.payment VALUES (17804, 420, 1, 2698, 0.99, '2007-02-19 11:57:37.996577'); -INSERT INTO dvds.payment VALUES (17805, 420, 1, 2726, 0.99, '2007-02-19 13:30:46.996577'); -INSERT INTO dvds.payment VALUES (17806, 421, 1, 1693, 4.99, '2007-02-16 11:08:17.996577'); -INSERT INTO dvds.payment VALUES (17807, 421, 2, 2407, 2.99, '2007-02-18 15:19:07.996577'); -INSERT INTO dvds.payment VALUES (17808, 421, 1, 3170, 4.99, '2007-02-20 20:31:20.996577'); -INSERT INTO dvds.payment VALUES (17809, 422, 1, 1846, 0.99, '2007-02-16 22:31:10.996577'); -INSERT INTO dvds.payment VALUES (17810, 422, 1, 1897, 4.99, '2007-02-17 02:54:49.996577'); -INSERT INTO dvds.payment VALUES (17811, 422, 2, 2747, 2.99, '2007-02-19 14:50:33.996577'); -INSERT INTO dvds.payment VALUES (17812, 422, 1, 2778, 5.99, '2007-02-19 16:46:38.996577'); -INSERT INTO dvds.payment VALUES (17813, 423, 1, 1504, 3.99, '2007-02-15 20:36:32.996577'); -INSERT INTO dvds.payment VALUES (17814, 423, 2, 1827, 0.99, '2007-02-16 20:23:06.996577'); -INSERT INTO dvds.payment VALUES (17815, 423, 1, 2600, 6.99, '2007-02-19 04:35:51.996577'); -INSERT INTO dvds.payment VALUES (17816, 423, 2, 2758, 6.99, '2007-02-19 15:33:01.996577'); -INSERT INTO dvds.payment VALUES (17817, 423, 1, 3072, 8.99, '2007-02-20 12:49:57.996577'); -INSERT INTO dvds.payment VALUES (17818, 424, 2, 3044, 4.99, '2007-02-20 11:07:15.996577'); -INSERT INTO dvds.payment VALUES (17819, 424, 1, 3166, 6.99, '2007-02-20 20:00:58.996577'); -INSERT INTO dvds.payment VALUES (17820, 424, 2, 3404, 0.99, '2007-02-21 14:26:18.996577'); -INSERT INTO dvds.payment VALUES (17821, 425, 1, 3276, 6.99, '2007-02-21 04:04:18.996577'); -INSERT INTO dvds.payment VALUES (17822, 426, 1, 1709, 6.99, '2007-02-16 12:38:41.996577'); -INSERT INTO dvds.payment VALUES (17823, 426, 1, 1842, 7.99, '2007-02-16 22:14:25.996577'); -INSERT INTO dvds.payment VALUES (17824, 426, 1, 2204, 2.99, '2007-02-18 00:40:04.996577'); -INSERT INTO dvds.payment VALUES (17825, 426, 1, 2804, 0.99, '2007-02-19 17:53:20.996577'); -INSERT INTO dvds.payment VALUES (17826, 426, 1, 3243, 0.99, '2007-02-21 01:28:37.996577'); -INSERT INTO dvds.payment VALUES (17827, 427, 1, 1342, 5.99, '2007-02-15 10:54:47.996577'); -INSERT INTO dvds.payment VALUES (17828, 427, 2, 1628, 3.99, '2007-02-16 06:21:21.996577'); -INSERT INTO dvds.payment VALUES (17829, 427, 1, 1648, 5.99, '2007-02-16 07:45:33.996577'); -INSERT INTO dvds.payment VALUES (17830, 427, 1, 1857, 1.99, '2007-02-16 23:41:24.996577'); -INSERT INTO dvds.payment VALUES (17831, 427, 2, 2466, 0.99, '2007-02-18 18:47:08.996577'); -INSERT INTO dvds.payment VALUES (17832, 428, 1, 1227, 3.99, '2007-02-15 02:18:29.996577'); -INSERT INTO dvds.payment VALUES (17833, 428, 2, 1471, 2.99, '2007-02-15 19:21:52.996577'); -INSERT INTO dvds.payment VALUES (17834, 428, 1, 1601, 3.99, '2007-02-16 04:39:39.996577'); -INSERT INTO dvds.payment VALUES (17835, 428, 1, 2677, 2.99, '2007-02-19 10:30:25.996577'); -INSERT INTO dvds.payment VALUES (17836, 428, 2, 3377, 0.99, '2007-02-21 12:19:38.996577'); -INSERT INTO dvds.payment VALUES (17837, 429, 2, 1781, 5.99, '2007-02-16 17:48:50.996577'); -INSERT INTO dvds.payment VALUES (17838, 429, 2, 1798, 2.99, '2007-02-16 18:44:41.996577'); -INSERT INTO dvds.payment VALUES (17839, 429, 2, 1916, 7.99, '2007-02-17 03:58:25.996577'); -INSERT INTO dvds.payment VALUES (17840, 429, 1, 3409, 2.99, '2007-02-21 14:46:04.996577'); -INSERT INTO dvds.payment VALUES (17841, 430, 2, 1207, 0.99, '2007-02-15 00:55:34.996577'); -INSERT INTO dvds.payment VALUES (17842, 430, 1, 1274, 2.99, '2007-02-15 06:21:18.996577'); -INSERT INTO dvds.payment VALUES (17843, 430, 1, 1538, 2.99, '2007-02-15 23:34:16.996577'); -INSERT INTO dvds.payment VALUES (17844, 430, 1, 1759, 6.99, '2007-02-16 16:15:03.996577'); -INSERT INTO dvds.payment VALUES (17845, 430, 2, 2892, 0.99, '2007-02-20 00:35:05.996577'); -INSERT INTO dvds.payment VALUES (17846, 430, 2, 3153, 0.99, '2007-02-20 19:12:41.996577'); -INSERT INTO dvds.payment VALUES (17847, 431, 2, 1561, 2.99, '2007-02-16 01:09:56.996577'); -INSERT INTO dvds.payment VALUES (17848, 431, 1, 2096, 4.99, '2007-02-17 17:01:30.996577'); -INSERT INTO dvds.payment VALUES (17849, 431, 1, 2269, 3.99, '2007-02-18 04:49:20.996577'); -INSERT INTO dvds.payment VALUES (17850, 431, 2, 2281, 4.99, '2007-02-18 05:15:55.996577'); -INSERT INTO dvds.payment VALUES (17851, 431, 2, 2761, 2.99, '2007-02-19 15:50:43.996577'); -INSERT INTO dvds.payment VALUES (17852, 431, 2, 3304, 6.99, '2007-02-21 06:12:06.996577'); -INSERT INTO dvds.payment VALUES (17853, 431, 2, 3369, 8.99, '2007-02-21 11:48:57.996577'); -INSERT INTO dvds.payment VALUES (17854, 432, 2, 1180, 5.99, '2007-02-14 23:07:27.996577'); -INSERT INTO dvds.payment VALUES (17855, 432, 2, 1597, 2.99, '2007-02-16 04:15:29.996577'); -INSERT INTO dvds.payment VALUES (17856, 432, 2, 3194, 4.99, '2007-02-20 22:28:23.996577'); -INSERT INTO dvds.payment VALUES (17857, 434, 1, 1225, 0.99, '2007-02-15 02:14:01.996577'); -INSERT INTO dvds.payment VALUES (17858, 434, 2, 1584, 5.99, '2007-02-16 03:19:16.996577'); -INSERT INTO dvds.payment VALUES (17859, 434, 2, 2415, 7.99, '2007-02-18 15:31:08.996577'); -INSERT INTO dvds.payment VALUES (17860, 434, 1, 2430, 3.99, '2007-02-18 16:20:12.996577'); -INSERT INTO dvds.payment VALUES (17861, 434, 1, 2494, 3.99, '2007-02-18 20:43:35.996577'); -INSERT INTO dvds.payment VALUES (17862, 434, 1, 3014, 2.99, '2007-02-20 09:13:46.996577'); -INSERT INTO dvds.payment VALUES (17863, 434, 2, 3037, 2.99, '2007-02-20 10:56:29.996577'); -INSERT INTO dvds.payment VALUES (17864, 435, 2, 1443, 0.99, '2007-02-15 17:26:17.996577'); -INSERT INTO dvds.payment VALUES (17865, 435, 1, 2984, 0.99, '2007-02-20 07:12:10.996577'); -INSERT INTO dvds.payment VALUES (17866, 436, 1, 2291, 9.99, '2007-02-18 06:05:12.996577'); -INSERT INTO dvds.payment VALUES (17867, 437, 2, 2239, 5.99, '2007-02-18 02:52:20.996577'); -INSERT INTO dvds.payment VALUES (17868, 437, 1, 2792, 2.99, '2007-02-19 17:20:51.996577'); -INSERT INTO dvds.payment VALUES (17869, 437, 2, 3265, 2.99, '2007-02-21 02:51:39.996577'); -INSERT INTO dvds.payment VALUES (17870, 438, 1, 1431, 4.99, '2007-02-15 16:54:55.996577'); -INSERT INTO dvds.payment VALUES (17871, 438, 2, 1779, 0.99, '2007-02-16 17:23:37.996577'); -INSERT INTO dvds.payment VALUES (17872, 438, 2, 2206, 0.99, '2007-02-18 00:43:11.996577'); -INSERT INTO dvds.payment VALUES (17873, 438, 1, 2591, 4.99, '2007-02-19 04:00:48.996577'); -INSERT INTO dvds.payment VALUES (17874, 438, 1, 3315, 4.99, '2007-02-21 06:45:30.996577'); -INSERT INTO dvds.payment VALUES (17875, 438, 2, 3368, 0.99, '2007-02-21 11:47:04.996577'); -INSERT INTO dvds.payment VALUES (17876, 439, 1, 1264, 4.99, '2007-02-15 05:28:05.996577'); -INSERT INTO dvds.payment VALUES (17877, 439, 2, 1557, 0.99, '2007-02-16 00:57:01.996577'); -INSERT INTO dvds.payment VALUES (17878, 439, 2, 2097, 4.99, '2007-02-17 17:08:30.996577'); -INSERT INTO dvds.payment VALUES (17879, 439, 1, 2621, 2.99, '2007-02-19 06:35:57.996577'); -INSERT INTO dvds.payment VALUES (17880, 439, 1, 2992, 2.99, '2007-02-20 07:40:17.996577'); -INSERT INTO dvds.payment VALUES (17881, 439, 1, 3294, 6.99, '2007-02-21 05:31:49.996577'); -INSERT INTO dvds.payment VALUES (17882, 441, 1, 1602, 4.99, '2007-02-16 04:41:06.996577'); -INSERT INTO dvds.payment VALUES (17883, 441, 2, 2328, 4.99, '2007-02-18 08:45:47.996577'); -INSERT INTO dvds.payment VALUES (17884, 442, 1, 1251, 5.99, '2007-02-15 04:27:21.996577'); -INSERT INTO dvds.payment VALUES (17885, 442, 2, 1358, 0.99, '2007-02-15 11:57:14.996577'); -INSERT INTO dvds.payment VALUES (17886, 442, 2, 1576, 8.99, '2007-02-16 02:23:05.996577'); -INSERT INTO dvds.payment VALUES (17887, 442, 1, 1774, 2.99, '2007-02-16 16:56:18.996577'); -INSERT INTO dvds.payment VALUES (17888, 443, 1, 2871, 2.99, '2007-02-19 22:56:15.996577'); -INSERT INTO dvds.payment VALUES (17889, 444, 1, 1239, 0.99, '2007-02-15 03:21:27.996577'); -INSERT INTO dvds.payment VALUES (17890, 444, 2, 1397, 3.99, '2007-02-15 14:53:52.996577'); -INSERT INTO dvds.payment VALUES (17891, 444, 2, 1441, 1.99, '2007-02-15 17:22:47.996577'); -INSERT INTO dvds.payment VALUES (17892, 444, 1, 2551, 4.99, '2007-02-19 01:19:30.996577'); -INSERT INTO dvds.payment VALUES (17893, 444, 2, 3301, 7.99, '2007-02-21 06:00:51.996577'); -INSERT INTO dvds.payment VALUES (17894, 444, 2, 3415, 5.99, '2007-02-21 15:28:15.996577'); -INSERT INTO dvds.payment VALUES (17895, 446, 1, 2248, 4.99, '2007-02-18 03:28:14.996577'); -INSERT INTO dvds.payment VALUES (17896, 446, 2, 2335, 3.99, '2007-02-18 09:28:02.996577'); -INSERT INTO dvds.payment VALUES (17897, 446, 2, 2520, 6.99, '2007-02-18 22:57:26.996577'); -INSERT INTO dvds.payment VALUES (17898, 446, 2, 2710, 0.99, '2007-02-19 12:32:22.996577'); -INSERT INTO dvds.payment VALUES (17899, 446, 1, 3060, 2.99, '2007-02-20 12:15:46.996577'); -INSERT INTO dvds.payment VALUES (17900, 446, 2, 3168, 0.99, '2007-02-20 20:14:27.996577'); -INSERT INTO dvds.payment VALUES (17901, 447, 2, 1230, 0.99, '2007-02-15 02:32:35.996577'); -INSERT INTO dvds.payment VALUES (17902, 447, 2, 1890, 2.99, '2007-02-17 02:34:39.996577'); -INSERT INTO dvds.payment VALUES (17903, 447, 1, 2025, 4.99, '2007-02-17 11:32:26.996577'); -INSERT INTO dvds.payment VALUES (17904, 447, 2, 2285, 4.99, '2007-02-18 05:29:20.996577'); -INSERT INTO dvds.payment VALUES (17905, 448, 1, 1313, 5.99, '2007-02-15 08:47:00.996577'); -INSERT INTO dvds.payment VALUES (17906, 448, 2, 1823, 7.99, '2007-02-16 20:16:42.996577'); -INSERT INTO dvds.payment VALUES (17907, 448, 2, 2697, 0.99, '2007-02-19 11:57:34.996577'); -INSERT INTO dvds.payment VALUES (17908, 448, 2, 3225, 3.99, '2007-02-21 00:45:21.996577'); -INSERT INTO dvds.payment VALUES (17909, 448, 2, 3347, 5.99, '2007-02-21 09:36:58.996577'); -INSERT INTO dvds.payment VALUES (17910, 449, 2, 1295, 4.99, '2007-02-15 07:45:46.996577'); -INSERT INTO dvds.payment VALUES (17911, 449, 1, 2348, 0.99, '2007-02-18 10:44:09.996577'); -INSERT INTO dvds.payment VALUES (17912, 449, 2, 2970, 2.99, '2007-02-20 06:20:17.996577'); -INSERT INTO dvds.payment VALUES (17913, 450, 2, 1639, 4.99, '2007-02-16 07:02:05.996577'); -INSERT INTO dvds.payment VALUES (17914, 450, 1, 1739, 0.99, '2007-02-16 14:38:04.996577'); -INSERT INTO dvds.payment VALUES (17915, 450, 2, 1914, 2.99, '2007-02-17 03:54:20.996577'); -INSERT INTO dvds.payment VALUES (17916, 450, 2, 2278, 0.99, '2007-02-18 05:06:23.996577'); -INSERT INTO dvds.payment VALUES (17917, 450, 1, 2501, 4.99, '2007-02-18 21:38:37.996577'); -INSERT INTO dvds.payment VALUES (17918, 450, 1, 2626, 2.99, '2007-02-19 06:57:10.996577'); -INSERT INTO dvds.payment VALUES (17919, 450, 1, 3155, 4.99, '2007-02-20 19:31:04.996577'); -INSERT INTO dvds.payment VALUES (17920, 451, 1, 1202, 0.99, '2007-02-15 00:36:30.996577'); -INSERT INTO dvds.payment VALUES (17921, 451, 1, 1851, 0.99, '2007-02-16 23:00:52.996577'); -INSERT INTO dvds.payment VALUES (17922, 451, 1, 1940, 6.99, '2007-02-17 06:10:48.996577'); -INSERT INTO dvds.payment VALUES (17923, 451, 1, 2671, 1.99, '2007-02-19 10:01:37.996577'); -INSERT INTO dvds.payment VALUES (17924, 451, 1, 2909, 3.99, '2007-02-20 01:47:36.996577'); -INSERT INTO dvds.payment VALUES (17925, 451, 2, 2917, 0.99, '2007-02-20 02:37:01.996577'); -INSERT INTO dvds.payment VALUES (17926, 451, 1, 3316, 6.99, '2007-02-21 06:48:44.996577'); -INSERT INTO dvds.payment VALUES (17927, 452, 2, 1203, 4.99, '2007-02-15 00:37:28.996577'); -INSERT INTO dvds.payment VALUES (17928, 452, 1, 1512, 5.99, '2007-02-15 21:21:29.996577'); -INSERT INTO dvds.payment VALUES (17929, 452, 1, 1794, 3.99, '2007-02-16 18:37:03.996577'); -INSERT INTO dvds.payment VALUES (17930, 452, 1, 2263, 0.99, '2007-02-18 04:26:13.996577'); -INSERT INTO dvds.payment VALUES (17931, 452, 2, 2266, 4.99, '2007-02-18 04:33:28.996577'); -INSERT INTO dvds.payment VALUES (17932, 452, 1, 2504, 0.99, '2007-02-18 21:48:19.996577'); -INSERT INTO dvds.payment VALUES (17933, 452, 2, 2661, 0.99, '2007-02-19 09:19:18.996577'); -INSERT INTO dvds.payment VALUES (17934, 453, 2, 2852, 5.99, '2007-02-19 21:37:16.996577'); -INSERT INTO dvds.payment VALUES (17935, 453, 1, 2853, 7.99, '2007-02-19 21:38:07.996577'); -INSERT INTO dvds.payment VALUES (17936, 453, 2, 2887, 4.99, '2007-02-20 00:08:09.996577'); -INSERT INTO dvds.payment VALUES (17937, 454, 2, 1647, 4.99, '2007-02-16 07:43:24.996577'); -INSERT INTO dvds.payment VALUES (17938, 454, 2, 1844, 7.99, '2007-02-16 22:22:19.996577'); -INSERT INTO dvds.payment VALUES (17939, 454, 1, 1861, 1.99, '2007-02-16 23:45:57.996577'); -INSERT INTO dvds.payment VALUES (17940, 454, 1, 1938, 4.99, '2007-02-17 05:47:02.996577'); -INSERT INTO dvds.payment VALUES (17941, 454, 2, 2048, 5.99, '2007-02-17 13:23:55.996577'); -INSERT INTO dvds.payment VALUES (17942, 454, 2, 2182, 5.99, '2007-02-17 23:24:44.996577'); -INSERT INTO dvds.payment VALUES (17943, 454, 1, 2437, 2.99, '2007-02-18 16:58:52.996577'); -INSERT INTO dvds.payment VALUES (17944, 454, 2, 2666, 9.99, '2007-02-19 09:45:38.996577'); -INSERT INTO dvds.payment VALUES (17945, 454, 1, 3221, 2.99, '2007-02-21 00:18:13.996577'); -INSERT INTO dvds.payment VALUES (17946, 454, 1, 3362, 4.99, '2007-02-21 10:48:20.996577'); -INSERT INTO dvds.payment VALUES (17947, 455, 2, 1382, 1.99, '2007-02-15 13:46:34.996577'); -INSERT INTO dvds.payment VALUES (17948, 455, 1, 1802, 1.99, '2007-02-16 18:51:56.996577'); -INSERT INTO dvds.payment VALUES (17949, 455, 1, 1906, 2.99, '2007-02-17 03:22:01.996577'); -INSERT INTO dvds.payment VALUES (17950, 455, 2, 2356, 0.99, '2007-02-18 11:27:49.996577'); -INSERT INTO dvds.payment VALUES (17951, 456, 1, 1288, 2.99, '2007-02-15 07:10:18.996577'); -INSERT INTO dvds.payment VALUES (17952, 456, 1, 1700, 0.99, '2007-02-16 11:46:49.996577'); -INSERT INTO dvds.payment VALUES (17953, 456, 2, 2103, 5.99, '2007-02-17 17:41:36.996577'); -INSERT INTO dvds.payment VALUES (17954, 456, 2, 2146, 6.99, '2007-02-17 20:54:49.996577'); -INSERT INTO dvds.payment VALUES (17955, 456, 1, 2192, 4.99, '2007-02-18 00:04:13.996577'); -INSERT INTO dvds.payment VALUES (17956, 456, 1, 2404, 0.99, '2007-02-18 15:02:14.996577'); -INSERT INTO dvds.payment VALUES (17957, 456, 1, 2581, 2.99, '2007-02-19 03:22:39.996577'); -INSERT INTO dvds.payment VALUES (17958, 457, 2, 1453, 4.99, '2007-02-15 18:05:05.996577'); -INSERT INTO dvds.payment VALUES (17959, 457, 2, 1727, 0.99, '2007-02-16 13:50:13.996577'); -INSERT INTO dvds.payment VALUES (17960, 457, 1, 2030, 0.99, '2007-02-17 11:41:53.996577'); -INSERT INTO dvds.payment VALUES (17961, 457, 1, 2172, 7.99, '2007-02-17 22:34:42.996577'); -INSERT INTO dvds.payment VALUES (17962, 457, 1, 2670, 4.99, '2007-02-19 09:58:42.996577'); -INSERT INTO dvds.payment VALUES (17963, 457, 1, 2762, 3.99, '2007-02-19 15:50:57.996577'); -INSERT INTO dvds.payment VALUES (17964, 457, 1, 2811, 0.99, '2007-02-19 18:21:56.996577'); -INSERT INTO dvds.payment VALUES (17965, 457, 2, 3115, 2.99, '2007-02-20 16:27:31.996577'); -INSERT INTO dvds.payment VALUES (17966, 457, 2, 3184, 2.99, '2007-02-20 21:26:10.996577'); -INSERT INTO dvds.payment VALUES (17967, 458, 2, 2629, 5.99, '2007-02-19 07:10:38.996577'); -INSERT INTO dvds.payment VALUES (17968, 458, 2, 3322, 0.99, '2007-02-21 07:11:03.996577'); -INSERT INTO dvds.payment VALUES (17969, 459, 2, 1876, 0.99, '2007-02-17 01:19:17.996577'); -INSERT INTO dvds.payment VALUES (17970, 459, 2, 1977, 2.99, '2007-02-17 08:06:48.996577'); -INSERT INTO dvds.payment VALUES (17971, 459, 2, 2075, 4.99, '2007-02-17 15:08:59.996577'); -INSERT INTO dvds.payment VALUES (17972, 459, 1, 2899, 0.99, '2007-02-20 01:07:47.996577'); -INSERT INTO dvds.payment VALUES (17973, 459, 2, 3041, 4.99, '2007-02-20 11:04:10.996577'); -INSERT INTO dvds.payment VALUES (17974, 459, 2, 3045, 0.99, '2007-02-20 11:10:26.996577'); -INSERT INTO dvds.payment VALUES (17975, 459, 2, 3234, 9.99, '2007-02-21 01:08:10.996577'); -INSERT INTO dvds.payment VALUES (17976, 460, 2, 1392, 0.99, '2007-02-15 14:40:53.996577'); -INSERT INTO dvds.payment VALUES (17977, 461, 2, 3127, 5.99, '2007-02-20 17:08:09.996577'); -INSERT INTO dvds.payment VALUES (17978, 461, 2, 3319, 4.99, '2007-02-21 06:54:12.996577'); -INSERT INTO dvds.payment VALUES (17979, 462, 2, 1773, 5.99, '2007-02-16 16:42:09.996577'); -INSERT INTO dvds.payment VALUES (17980, 462, 2, 1926, 9.99, '2007-02-17 04:52:56.996577'); -INSERT INTO dvds.payment VALUES (17981, 462, 1, 3279, 4.99, '2007-02-21 04:34:19.996577'); -INSERT INTO dvds.payment VALUES (17982, 463, 1, 1284, 2.99, '2007-02-15 06:55:59.996577'); -INSERT INTO dvds.payment VALUES (17983, 463, 2, 2527, 4.99, '2007-02-18 23:38:57.996577'); -INSERT INTO dvds.payment VALUES (17984, 463, 1, 3217, 2.99, '2007-02-20 23:56:38.996577'); -INSERT INTO dvds.payment VALUES (17985, 463, 1, 3309, 4.99, '2007-02-21 06:29:15.996577'); -INSERT INTO dvds.payment VALUES (17986, 464, 2, 1277, 4.99, '2007-02-15 06:29:55.996577'); -INSERT INTO dvds.payment VALUES (17987, 464, 1, 3167, 2.99, '2007-02-20 20:10:55.996577'); -INSERT INTO dvds.payment VALUES (17988, 465, 1, 1337, 2.99, '2007-02-15 10:41:08.996577'); -INSERT INTO dvds.payment VALUES (17989, 465, 1, 2079, 4.99, '2007-02-17 15:18:11.996577'); -INSERT INTO dvds.payment VALUES (17990, 465, 1, 2159, 8.99, '2007-02-17 22:05:55.996577'); -INSERT INTO dvds.payment VALUES (17991, 465, 2, 2524, 0.99, '2007-02-18 23:16:37.996577'); -INSERT INTO dvds.payment VALUES (17992, 466, 2, 1808, 7.99, '2007-02-16 19:28:01.996577'); -INSERT INTO dvds.payment VALUES (17993, 466, 2, 2446, 8.99, '2007-02-18 17:33:07.996577'); -INSERT INTO dvds.payment VALUES (17994, 466, 1, 3022, 3.99, '2007-02-20 09:45:46.996577'); -INSERT INTO dvds.payment VALUES (17995, 466, 2, 3237, 4.99, '2007-02-21 01:16:22.996577'); -INSERT INTO dvds.payment VALUES (17996, 466, 2, 3343, 2.99, '2007-02-21 09:25:25.996577'); -INSERT INTO dvds.payment VALUES (17997, 467, 1, 1737, 8.99, '2007-02-16 14:28:10.996577'); -INSERT INTO dvds.payment VALUES (17998, 467, 2, 2121, 4.99, '2007-02-17 19:07:20.996577'); -INSERT INTO dvds.payment VALUES (17999, 467, 2, 2870, 9.99, '2007-02-19 22:46:12.996577'); -INSERT INTO dvds.payment VALUES (18000, 467, 1, 3250, 6.99, '2007-02-21 01:45:02.996577'); -INSERT INTO dvds.payment VALUES (18001, 468, 2, 1229, 2.99, '2007-02-15 02:21:39.996577'); -INSERT INTO dvds.payment VALUES (18002, 468, 1, 1627, 8.99, '2007-02-16 06:19:35.996577'); -INSERT INTO dvds.payment VALUES (18003, 468, 1, 1821, 2.99, '2007-02-16 20:11:15.996577'); -INSERT INTO dvds.payment VALUES (18004, 468, 1, 1975, 2.99, '2007-02-17 08:00:36.996577'); -INSERT INTO dvds.payment VALUES (18005, 468, 2, 2462, 4.99, '2007-02-18 18:28:41.996577'); -INSERT INTO dvds.payment VALUES (18006, 468, 1, 2831, 0.99, '2007-02-19 19:45:32.996577'); -INSERT INTO dvds.payment VALUES (18007, 469, 2, 1399, 0.99, '2007-02-15 14:58:17.996577'); -INSERT INTO dvds.payment VALUES (18008, 469, 1, 1680, 9.99, '2007-02-16 09:45:48.996577'); -INSERT INTO dvds.payment VALUES (18009, 470, 2, 1256, 0.99, '2007-02-15 04:42:23.996577'); -INSERT INTO dvds.payment VALUES (18010, 470, 1, 1283, 0.99, '2007-02-15 06:55:56.996577'); -INSERT INTO dvds.payment VALUES (18011, 470, 2, 1594, 7.99, '2007-02-16 03:43:38.996577'); -INSERT INTO dvds.payment VALUES (18012, 471, 1, 1447, 4.99, '2007-02-15 17:42:17.996577'); -INSERT INTO dvds.payment VALUES (18013, 471, 2, 1449, 2.99, '2007-02-15 17:47:42.996577'); -INSERT INTO dvds.payment VALUES (18014, 471, 2, 2165, 2.99, '2007-02-17 22:19:36.996577'); -INSERT INTO dvds.payment VALUES (18015, 471, 2, 2350, 4.99, '2007-02-18 10:53:55.996577'); -INSERT INTO dvds.payment VALUES (18016, 471, 2, 3073, 4.99, '2007-02-20 13:01:52.996577'); -INSERT INTO dvds.payment VALUES (18017, 472, 1, 1389, 4.99, '2007-02-15 14:17:27.996577'); -INSERT INTO dvds.payment VALUES (18018, 472, 2, 1776, 6.99, '2007-02-16 17:15:24.996577'); -INSERT INTO dvds.payment VALUES (18019, 472, 1, 2538, 5.99, '2007-02-19 00:25:25.996577'); -INSERT INTO dvds.payment VALUES (18020, 472, 1, 2974, 0.99, '2007-02-20 06:28:50.996577'); -INSERT INTO dvds.payment VALUES (18021, 472, 1, 2991, 4.99, '2007-02-20 07:39:09.996577'); -INSERT INTO dvds.payment VALUES (18022, 472, 1, 3254, 0.99, '2007-02-21 01:55:36.996577'); -INSERT INTO dvds.payment VALUES (18023, 473, 2, 1748, 0.99, '2007-02-16 15:22:29.996577'); -INSERT INTO dvds.payment VALUES (18024, 473, 1, 2125, 2.99, '2007-02-17 19:22:08.996577'); -INSERT INTO dvds.payment VALUES (18025, 473, 2, 2553, 4.99, '2007-02-19 01:33:25.996577'); -INSERT INTO dvds.payment VALUES (18026, 473, 2, 2748, 4.99, '2007-02-19 14:50:52.996577'); -INSERT INTO dvds.payment VALUES (18027, 474, 1, 1758, 8.99, '2007-02-16 16:08:05.996577'); -INSERT INTO dvds.payment VALUES (18028, 474, 2, 2944, 7.99, '2007-02-20 04:12:08.996577'); -INSERT INTO dvds.payment VALUES (18029, 476, 1, 1682, 3.99, '2007-02-16 10:22:51.996577'); -INSERT INTO dvds.payment VALUES (18030, 476, 1, 2080, 0.99, '2007-02-17 15:28:06.996577'); -INSERT INTO dvds.payment VALUES (18031, 476, 2, 2508, 4.99, '2007-02-18 22:12:24.996577'); -INSERT INTO dvds.payment VALUES (18032, 476, 2, 3448, 2.99, '2007-02-21 19:27:46.996577'); -INSERT INTO dvds.payment VALUES (18033, 477, 1, 1714, 6.99, '2007-02-16 12:58:25.996577'); -INSERT INTO dvds.payment VALUES (18034, 477, 1, 2187, 2.99, '2007-02-17 23:45:53.996577'); -INSERT INTO dvds.payment VALUES (18035, 477, 1, 2306, 10.99, '2007-02-18 07:01:49.996577'); -INSERT INTO dvds.payment VALUES (18036, 477, 2, 2676, 4.99, '2007-02-19 10:23:23.996577'); -INSERT INTO dvds.payment VALUES (18037, 478, 1, 1708, 0.99, '2007-02-16 12:37:10.996577'); -INSERT INTO dvds.payment VALUES (18038, 478, 2, 2358, 4.99, '2007-02-18 11:29:17.996577'); -INSERT INTO dvds.payment VALUES (18039, 478, 1, 2529, 6.99, '2007-02-18 23:46:53.996577'); -INSERT INTO dvds.payment VALUES (18040, 478, 2, 2616, 8.99, '2007-02-19 06:01:26.996577'); -INSERT INTO dvds.payment VALUES (18041, 478, 2, 2765, 4.99, '2007-02-19 16:03:05.996577'); -INSERT INTO dvds.payment VALUES (18042, 478, 2, 3259, 4.99, '2007-02-21 02:25:41.996577'); -INSERT INTO dvds.payment VALUES (18043, 479, 1, 1902, 2.99, '2007-02-17 03:04:18.996577'); -INSERT INTO dvds.payment VALUES (18044, 479, 2, 1947, 3.99, '2007-02-17 06:30:46.996577'); -INSERT INTO dvds.payment VALUES (18045, 479, 2, 1987, 2.99, '2007-02-17 09:09:02.996577'); -INSERT INTO dvds.payment VALUES (18046, 479, 2, 2071, 3.99, '2007-02-17 15:01:43.996577'); -INSERT INTO dvds.payment VALUES (18047, 479, 2, 2376, 2.99, '2007-02-18 13:23:56.996577'); -INSERT INTO dvds.payment VALUES (18048, 479, 2, 2764, 6.99, '2007-02-19 15:55:51.996577'); -INSERT INTO dvds.payment VALUES (18049, 480, 1, 1353, 0.99, '2007-02-15 11:42:02.996577'); -INSERT INTO dvds.payment VALUES (18050, 480, 1, 1733, 0.99, '2007-02-16 14:05:33.996577'); -INSERT INTO dvds.payment VALUES (18051, 481, 2, 1168, 2.99, '2007-02-14 22:03:35.996577'); -INSERT INTO dvds.payment VALUES (18052, 481, 2, 2296, 4.99, '2007-02-18 06:39:08.996577'); -INSERT INTO dvds.payment VALUES (18053, 481, 2, 3285, 4.99, '2007-02-21 04:58:39.996577'); -INSERT INTO dvds.payment VALUES (18054, 481, 2, 3293, 0.99, '2007-02-21 05:27:59.996577'); -INSERT INTO dvds.payment VALUES (18055, 482, 2, 3048, 2.99, '2007-02-20 11:18:21.996577'); -INSERT INTO dvds.payment VALUES (18056, 482, 2, 3255, 0.99, '2007-02-21 02:08:18.996577'); -INSERT INTO dvds.payment VALUES (18057, 483, 1, 2855, 4.99, '2007-02-19 21:40:15.996577'); -INSERT INTO dvds.payment VALUES (18058, 483, 2, 2867, 0.99, '2007-02-19 22:37:04.996577'); -INSERT INTO dvds.payment VALUES (18059, 483, 1, 3380, 8.99, '2007-02-21 12:27:12.996577'); -INSERT INTO dvds.payment VALUES (18060, 484, 1, 1351, 3.99, '2007-02-15 11:19:29.996577'); -INSERT INTO dvds.payment VALUES (18061, 484, 2, 1643, 3.99, '2007-02-16 07:24:01.996577'); -INSERT INTO dvds.payment VALUES (18062, 484, 1, 2015, 4.99, '2007-02-17 10:44:55.996577'); -INSERT INTO dvds.payment VALUES (18063, 484, 1, 2044, 5.99, '2007-02-17 13:06:23.996577'); -INSERT INTO dvds.payment VALUES (18064, 485, 2, 1684, 2.99, '2007-02-16 10:26:00.996577'); -INSERT INTO dvds.payment VALUES (18065, 485, 1, 1721, 8.99, '2007-02-16 13:30:02.996577'); -INSERT INTO dvds.payment VALUES (18066, 486, 1, 2036, 4.99, '2007-02-17 12:15:18.996577'); -INSERT INTO dvds.payment VALUES (18067, 486, 1, 2102, 5.99, '2007-02-17 17:33:48.996577'); -INSERT INTO dvds.payment VALUES (18068, 486, 2, 2566, 2.99, '2007-02-19 02:14:05.996577'); -INSERT INTO dvds.payment VALUES (18069, 486, 2, 2797, 2.99, '2007-02-19 17:32:58.996577'); -INSERT INTO dvds.payment VALUES (18070, 487, 2, 3100, 3.99, '2007-02-20 15:16:23.996577'); -INSERT INTO dvds.payment VALUES (18071, 488, 2, 1655, 3.99, '2007-02-16 08:20:05.996577'); -INSERT INTO dvds.payment VALUES (18072, 488, 2, 1704, 5.99, '2007-02-16 12:14:22.996577'); -INSERT INTO dvds.payment VALUES (18073, 489, 2, 1614, 3.99, '2007-02-16 05:26:28.996577'); -INSERT INTO dvds.payment VALUES (18074, 489, 1, 2201, 0.99, '2007-02-18 00:36:53.996577'); -INSERT INTO dvds.payment VALUES (18075, 489, 1, 2370, 7.99, '2007-02-18 12:58:20.996577'); -INSERT INTO dvds.payment VALUES (18076, 489, 1, 2802, 4.99, '2007-02-19 17:46:43.996577'); -INSERT INTO dvds.payment VALUES (18077, 490, 1, 1665, 3.99, '2007-02-16 08:44:28.996577'); -INSERT INTO dvds.payment VALUES (18078, 491, 2, 1198, 2.99, '2007-02-15 00:17:24.996577'); -INSERT INTO dvds.payment VALUES (18079, 491, 1, 1371, 4.99, '2007-02-15 13:06:41.996577'); -INSERT INTO dvds.payment VALUES (18080, 491, 2, 2026, 4.99, '2007-02-17 11:34:04.996577'); -INSERT INTO dvds.payment VALUES (18081, 491, 1, 2259, 4.99, '2007-02-18 04:06:11.996577'); -INSERT INTO dvds.payment VALUES (18082, 491, 2, 2391, 4.99, '2007-02-18 14:01:56.996577'); -INSERT INTO dvds.payment VALUES (18083, 491, 2, 3031, 4.99, '2007-02-20 10:21:15.996577'); -INSERT INTO dvds.payment VALUES (18084, 491, 1, 3440, 3.99, '2007-02-21 18:26:44.996577'); -INSERT INTO dvds.payment VALUES (18085, 492, 2, 1691, 1.99, '2007-02-16 10:52:54.996577'); -INSERT INTO dvds.payment VALUES (18086, 492, 2, 1855, 4.99, '2007-02-16 23:23:24.996577'); -INSERT INTO dvds.payment VALUES (18087, 492, 2, 1956, 4.99, '2007-02-17 07:11:58.996577'); -INSERT INTO dvds.payment VALUES (18088, 492, 1, 3298, 9.99, '2007-02-21 05:38:10.996577'); -INSERT INTO dvds.payment VALUES (18089, 493, 2, 2109, 3.99, '2007-02-17 18:10:08.996577'); -INSERT INTO dvds.payment VALUES (18090, 493, 1, 2365, 4.99, '2007-02-18 12:14:00.996577'); -INSERT INTO dvds.payment VALUES (18091, 493, 1, 2579, 0.99, '2007-02-19 03:09:10.996577'); -INSERT INTO dvds.payment VALUES (18092, 493, 1, 2864, 2.99, '2007-02-19 22:29:18.996577'); -INSERT INTO dvds.payment VALUES (18093, 494, 1, 1683, 2.99, '2007-02-16 10:23:21.996577'); -INSERT INTO dvds.payment VALUES (18094, 495, 2, 2074, 2.99, '2007-02-17 15:08:29.996577'); -INSERT INTO dvds.payment VALUES (18095, 495, 1, 2349, 4.99, '2007-02-18 10:53:40.996577'); -INSERT INTO dvds.payment VALUES (18096, 495, 1, 2549, 7.99, '2007-02-19 01:15:05.996577'); -INSERT INTO dvds.payment VALUES (18097, 495, 1, 3129, 3.99, '2007-02-20 17:26:14.996577'); -INSERT INTO dvds.payment VALUES (18098, 496, 1, 2567, 2.99, '2007-02-19 02:33:12.996577'); -INSERT INTO dvds.payment VALUES (18099, 497, 2, 2180, 8.99, '2007-02-17 23:16:09.996577'); -INSERT INTO dvds.payment VALUES (18100, 497, 1, 2298, 5.99, '2007-02-18 06:46:55.996577'); -INSERT INTO dvds.payment VALUES (18101, 497, 1, 2406, 2.99, '2007-02-18 15:08:03.996577'); -INSERT INTO dvds.payment VALUES (18102, 497, 2, 2818, 4.99, '2007-02-19 18:34:18.996577'); -INSERT INTO dvds.payment VALUES (18103, 498, 1, 1253, 6.99, '2007-02-15 04:34:59.996577'); -INSERT INTO dvds.payment VALUES (18104, 498, 1, 1782, 2.99, '2007-02-16 17:49:38.996577'); -INSERT INTO dvds.payment VALUES (18105, 498, 1, 2344, 2.99, '2007-02-18 10:30:13.996577'); -INSERT INTO dvds.payment VALUES (18106, 498, 1, 2449, 4.99, '2007-02-18 17:47:02.996577'); -INSERT INTO dvds.payment VALUES (18107, 498, 1, 3098, 0.99, '2007-02-20 15:05:27.996577'); -INSERT INTO dvds.payment VALUES (18108, 498, 2, 3360, 0.99, '2007-02-21 10:41:07.996577'); -INSERT INTO dvds.payment VALUES (18109, 499, 1, 1355, 2.99, '2007-02-15 11:42:25.996577'); -INSERT INTO dvds.payment VALUES (18110, 499, 2, 1526, 4.99, '2007-02-15 22:56:17.996577'); -INSERT INTO dvds.payment VALUES (18111, 499, 2, 1830, 4.99, '2007-02-16 20:47:09.996577'); -INSERT INTO dvds.payment VALUES (18112, 499, 2, 3241, 1.99, '2007-02-21 01:22:58.996577'); -INSERT INTO dvds.payment VALUES (18113, 500, 1, 1375, 5.99, '2007-02-15 13:23:22.996577'); -INSERT INTO dvds.payment VALUES (18114, 500, 2, 1388, 5.99, '2007-02-15 14:17:07.996577'); -INSERT INTO dvds.payment VALUES (18115, 500, 2, 2189, 3.99, '2007-02-17 23:48:52.996577'); -INSERT INTO dvds.payment VALUES (18116, 500, 2, 2526, 6.99, '2007-02-18 23:31:33.996577'); -INSERT INTO dvds.payment VALUES (18117, 500, 1, 2996, 2.99, '2007-02-20 07:48:55.996577'); -INSERT INTO dvds.payment VALUES (18118, 501, 2, 3222, 5.99, '2007-02-21 00:18:55.996577'); -INSERT INTO dvds.payment VALUES (18119, 501, 1, 3412, 7.99, '2007-02-21 15:12:57.996577'); -INSERT INTO dvds.payment VALUES (18120, 502, 2, 1696, 7.99, '2007-02-16 11:18:27.996577'); -INSERT INTO dvds.payment VALUES (18121, 502, 2, 2420, 0.99, '2007-02-18 15:50:54.996577'); -INSERT INTO dvds.payment VALUES (18122, 502, 1, 2911, 0.99, '2007-02-20 02:01:03.996577'); -INSERT INTO dvds.payment VALUES (18123, 503, 2, 2108, 4.99, '2007-02-17 18:03:52.996577'); -INSERT INTO dvds.payment VALUES (18124, 503, 1, 2225, 2.99, '2007-02-18 02:04:06.996577'); -INSERT INTO dvds.payment VALUES (18125, 503, 2, 3430, 0.99, '2007-02-21 17:14:34.996577'); -INSERT INTO dvds.payment VALUES (18126, 504, 1, 2720, 1.99, '2007-02-19 13:20:21.996577'); -INSERT INTO dvds.payment VALUES (18127, 504, 1, 2938, 6.99, '2007-02-20 03:45:48.996577'); -INSERT INTO dvds.payment VALUES (18128, 505, 2, 1799, 5.99, '2007-02-16 18:45:46.996577'); -INSERT INTO dvds.payment VALUES (18129, 505, 2, 1886, 4.99, '2007-02-17 02:04:28.996577'); -INSERT INTO dvds.payment VALUES (18130, 505, 1, 2773, 7.99, '2007-02-19 16:32:44.996577'); -INSERT INTO dvds.payment VALUES (18131, 505, 1, 3137, 5.99, '2007-02-20 18:09:54.996577'); -INSERT INTO dvds.payment VALUES (18132, 506, 1, 1446, 6.99, '2007-02-15 17:42:11.996577'); -INSERT INTO dvds.payment VALUES (18133, 506, 1, 1467, 2.99, '2007-02-15 19:15:36.996577'); -INSERT INTO dvds.payment VALUES (18134, 506, 2, 1565, 0.99, '2007-02-16 01:41:35.996577'); -INSERT INTO dvds.payment VALUES (18135, 506, 1, 2755, 9.99, '2007-02-19 15:24:57.996577'); -INSERT INTO dvds.payment VALUES (18136, 506, 2, 2824, 6.99, '2007-02-19 19:00:11.996577'); -INSERT INTO dvds.payment VALUES (18137, 507, 2, 1307, 4.99, '2007-02-15 08:34:41.996577'); -INSERT INTO dvds.payment VALUES (18138, 507, 1, 2143, 4.99, '2007-02-17 20:26:39.996577'); -INSERT INTO dvds.payment VALUES (18139, 507, 2, 2283, 4.99, '2007-02-18 05:24:32.996577'); -INSERT INTO dvds.payment VALUES (18140, 508, 2, 1661, 4.99, '2007-02-16 08:41:23.996577'); -INSERT INTO dvds.payment VALUES (18141, 509, 1, 1267, 2.99, '2007-02-15 05:49:47.996577'); -INSERT INTO dvds.payment VALUES (18142, 509, 2, 2919, 4.99, '2007-02-20 02:38:42.996577'); -INSERT INTO dvds.payment VALUES (18143, 510, 2, 1435, 5.99, '2007-02-15 17:00:56.996577'); -INSERT INTO dvds.payment VALUES (18144, 510, 2, 1757, 0.99, '2007-02-16 16:00:50.996577'); -INSERT INTO dvds.payment VALUES (18145, 510, 2, 1925, 0.99, '2007-02-17 04:45:13.996577'); -INSERT INTO dvds.payment VALUES (18146, 510, 1, 2729, 8.99, '2007-02-19 13:34:41.996577'); -INSERT INTO dvds.payment VALUES (18147, 510, 2, 2806, 0.99, '2007-02-19 17:59:14.996577'); -INSERT INTO dvds.payment VALUES (18148, 510, 2, 2817, 0.99, '2007-02-19 18:33:48.996577'); -INSERT INTO dvds.payment VALUES (18149, 510, 2, 3352, 8.99, '2007-02-21 09:54:55.996577'); -INSERT INTO dvds.payment VALUES (18150, 510, 2, 3465, 5.99, '2007-02-21 20:38:27.996577'); -INSERT INTO dvds.payment VALUES (18151, 511, 2, 1281, 2.99, '2007-02-15 06:50:05.996577'); -INSERT INTO dvds.payment VALUES (18152, 511, 1, 1508, 2.99, '2007-02-15 21:01:50.996577'); -INSERT INTO dvds.payment VALUES (18153, 511, 2, 2966, 10.99, '2007-02-20 06:07:59.996577'); -INSERT INTO dvds.payment VALUES (18154, 511, 2, 3366, 4.99, '2007-02-21 11:32:03.996577'); -INSERT INTO dvds.payment VALUES (18155, 512, 1, 1176, 6.99, '2007-02-14 22:57:03.996577'); -INSERT INTO dvds.payment VALUES (18156, 512, 2, 2029, 4.99, '2007-02-17 11:39:25.996577'); -INSERT INTO dvds.payment VALUES (18157, 512, 1, 2364, 2.99, '2007-02-18 12:05:58.996577'); -INSERT INTO dvds.payment VALUES (18158, 513, 1, 1607, 2.99, '2007-02-16 04:54:01.996577'); -INSERT INTO dvds.payment VALUES (18159, 513, 2, 2290, 7.99, '2007-02-18 06:03:03.996577'); -INSERT INTO dvds.payment VALUES (18160, 513, 2, 2737, 1.99, '2007-02-19 14:16:59.996577'); -INSERT INTO dvds.payment VALUES (18161, 514, 2, 1692, 4.99, '2007-02-16 10:58:45.996577'); -INSERT INTO dvds.payment VALUES (18162, 514, 1, 2002, 3.99, '2007-02-17 10:08:24.996577'); -INSERT INTO dvds.payment VALUES (18163, 514, 2, 2362, 0.99, '2007-02-18 11:59:41.996577'); -INSERT INTO dvds.payment VALUES (18164, 514, 1, 2789, 0.99, '2007-02-19 17:16:47.996577'); -INSERT INTO dvds.payment VALUES (18165, 514, 2, 3084, 2.99, '2007-02-20 14:03:50.996577'); -INSERT INTO dvds.payment VALUES (18166, 514, 1, 3385, 0.99, '2007-02-21 12:45:14.996577'); -INSERT INTO dvds.payment VALUES (18167, 515, 1, 1244, 4.99, '2007-02-15 03:37:06.996577'); -INSERT INTO dvds.payment VALUES (18168, 515, 2, 1531, 5.99, '2007-02-15 23:09:00.996577'); -INSERT INTO dvds.payment VALUES (18169, 515, 2, 2003, 4.99, '2007-02-17 10:09:01.996577'); -INSERT INTO dvds.payment VALUES (18170, 515, 2, 2484, 4.99, '2007-02-18 19:53:49.996577'); -INSERT INTO dvds.payment VALUES (18171, 515, 2, 2513, 0.99, '2007-02-18 22:21:41.996577'); -INSERT INTO dvds.payment VALUES (18172, 515, 2, 3063, 3.99, '2007-02-20 12:20:29.996577'); -INSERT INTO dvds.payment VALUES (18173, 516, 2, 1159, 4.99, '2007-02-14 21:23:39.996577'); -INSERT INTO dvds.payment VALUES (18174, 516, 1, 1200, 1.99, '2007-02-15 00:28:17.996577'); -INSERT INTO dvds.payment VALUES (18175, 516, 1, 1718, 10.99, '2007-02-16 13:20:28.996577'); -INSERT INTO dvds.payment VALUES (18176, 516, 1, 2017, 0.99, '2007-02-17 11:01:56.996577'); -INSERT INTO dvds.payment VALUES (18177, 516, 2, 3068, 0.99, '2007-02-20 12:30:48.996577'); -INSERT INTO dvds.payment VALUES (18178, 516, 1, 3431, 2.99, '2007-02-21 17:15:14.996577'); -INSERT INTO dvds.payment VALUES (18179, 517, 2, 1653, 4.99, '2007-02-16 08:03:11.996577'); -INSERT INTO dvds.payment VALUES (18180, 517, 1, 1809, 8.99, '2007-02-16 19:28:46.996577'); -INSERT INTO dvds.payment VALUES (18181, 517, 1, 1850, 4.99, '2007-02-16 23:00:01.996577'); -INSERT INTO dvds.payment VALUES (18182, 517, 2, 2534, 2.99, '2007-02-19 00:07:05.996577'); -INSERT INTO dvds.payment VALUES (18183, 517, 1, 3113, 0.99, '2007-02-20 16:25:06.996577'); -INSERT INTO dvds.payment VALUES (18184, 518, 2, 1552, 5.99, '2007-02-16 00:30:03.996577'); -INSERT INTO dvds.payment VALUES (18185, 518, 2, 3311, 0.99, '2007-02-21 06:33:53.996577'); -INSERT INTO dvds.payment VALUES (18186, 519, 1, 1941, 2.99, '2007-02-17 06:11:11.996577'); -INSERT INTO dvds.payment VALUES (18187, 519, 2, 2505, 8.99, '2007-02-18 21:56:53.996577'); -INSERT INTO dvds.payment VALUES (18188, 519, 2, 2997, 5.99, '2007-02-20 07:52:11.996577'); -INSERT INTO dvds.payment VALUES (18189, 520, 1, 1411, 0.99, '2007-02-15 15:34:02.996577'); -INSERT INTO dvds.payment VALUES (18190, 520, 2, 2174, 6.99, '2007-02-17 22:37:27.996577'); -INSERT INTO dvds.payment VALUES (18191, 520, 1, 2772, 4.99, '2007-02-19 16:27:53.996577'); -INSERT INTO dvds.payment VALUES (18192, 521, 1, 1761, 0.99, '2007-02-16 16:18:23.996577'); -INSERT INTO dvds.payment VALUES (18193, 521, 2, 2053, 0.99, '2007-02-17 13:48:00.996577'); -INSERT INTO dvds.payment VALUES (18194, 522, 1, 1289, 3.99, '2007-02-15 07:12:35.996577'); -INSERT INTO dvds.payment VALUES (18195, 522, 2, 3102, 8.99, '2007-02-20 15:24:21.996577'); -INSERT INTO dvds.payment VALUES (18196, 522, 1, 3188, 2.99, '2007-02-20 21:38:53.996577'); -INSERT INTO dvds.payment VALUES (18197, 522, 2, 3191, 0.99, '2007-02-20 22:15:05.996577'); -INSERT INTO dvds.payment VALUES (18198, 523, 2, 1729, 6.99, '2007-02-16 13:58:13.996577'); -INSERT INTO dvds.payment VALUES (18199, 523, 1, 2447, 8.99, '2007-02-18 17:39:21.996577'); -INSERT INTO dvds.payment VALUES (18200, 523, 1, 2583, 7.99, '2007-02-19 03:30:06.996577'); -INSERT INTO dvds.payment VALUES (18201, 523, 2, 2669, 0.99, '2007-02-19 09:57:18.996577'); -INSERT INTO dvds.payment VALUES (18202, 524, 1, 1306, 1.99, '2007-02-15 08:27:50.996577'); -INSERT INTO dvds.payment VALUES (18203, 524, 2, 1651, 4.99, '2007-02-16 07:53:04.996577'); -INSERT INTO dvds.payment VALUES (18204, 524, 2, 3454, 2.99, '2007-02-21 19:40:39.996577'); -INSERT INTO dvds.payment VALUES (18205, 525, 2, 1772, 2.99, '2007-02-16 16:41:20.996577'); -INSERT INTO dvds.payment VALUES (18206, 526, 1, 1255, 4.99, '2007-02-15 04:42:11.996577'); -INSERT INTO dvds.payment VALUES (18207, 526, 2, 1848, 0.99, '2007-02-16 22:35:33.996577'); -INSERT INTO dvds.payment VALUES (18208, 526, 2, 1865, 7.99, '2007-02-17 00:18:02.996577'); -INSERT INTO dvds.payment VALUES (18209, 526, 2, 1972, 2.99, '2007-02-17 07:54:15.996577'); -INSERT INTO dvds.payment VALUES (18210, 526, 1, 1981, 2.99, '2007-02-17 08:32:00.996577'); -INSERT INTO dvds.payment VALUES (18211, 526, 2, 2398, 4.99, '2007-02-18 14:25:19.996577'); -INSERT INTO dvds.payment VALUES (18212, 526, 1, 2828, 2.99, '2007-02-19 19:19:59.996577'); -INSERT INTO dvds.payment VALUES (18213, 526, 2, 2932, 6.99, '2007-02-20 03:19:45.996577'); -INSERT INTO dvds.payment VALUES (18214, 526, 1, 3339, 6.99, '2007-02-21 09:05:37.996577'); -INSERT INTO dvds.payment VALUES (18215, 527, 1, 1398, 2.99, '2007-02-15 14:57:08.996577'); -INSERT INTO dvds.payment VALUES (18216, 527, 1, 2422, 0.99, '2007-02-18 15:57:23.996577'); -INSERT INTO dvds.payment VALUES (18217, 527, 2, 2496, 0.99, '2007-02-18 20:48:37.996577'); -INSERT INTO dvds.payment VALUES (18218, 527, 1, 2539, 2.99, '2007-02-19 00:27:05.996577'); -INSERT INTO dvds.payment VALUES (18219, 528, 2, 1875, 2.99, '2007-02-17 01:13:36.996577'); -INSERT INTO dvds.payment VALUES (18220, 528, 1, 2019, 4.99, '2007-02-17 11:07:10.996577'); -INSERT INTO dvds.payment VALUES (18221, 529, 1, 1234, 1.99, '2007-02-15 02:50:18.996577'); -INSERT INTO dvds.payment VALUES (18222, 529, 2, 1686, 0.99, '2007-02-16 10:36:46.996577'); -INSERT INTO dvds.payment VALUES (18223, 529, 2, 3354, 0.99, '2007-02-21 09:58:15.996577'); -INSERT INTO dvds.payment VALUES (18224, 530, 2, 1273, 1.99, '2007-02-15 06:21:01.996577'); -INSERT INTO dvds.payment VALUES (18225, 530, 1, 1516, 0.99, '2007-02-15 21:39:36.996577'); -INSERT INTO dvds.payment VALUES (18226, 530, 1, 2158, 2.99, '2007-02-17 22:04:53.996577'); -INSERT INTO dvds.payment VALUES (18227, 531, 2, 2972, 2.99, '2007-02-20 06:26:20.996577'); -INSERT INTO dvds.payment VALUES (18228, 532, 1, 1694, 4.99, '2007-02-16 11:08:49.996577'); -INSERT INTO dvds.payment VALUES (18229, 532, 2, 2821, 3.99, '2007-02-19 18:55:18.996577'); -INSERT INTO dvds.payment VALUES (18230, 533, 1, 1421, 5.99, '2007-02-15 16:25:30.996577'); -INSERT INTO dvds.payment VALUES (18231, 533, 1, 1652, 0.99, '2007-02-16 08:00:03.996577'); -INSERT INTO dvds.payment VALUES (18232, 533, 1, 1859, 0.99, '2007-02-16 23:42:04.996577'); -INSERT INTO dvds.payment VALUES (18233, 533, 1, 1954, 2.99, '2007-02-17 07:06:21.996577'); -INSERT INTO dvds.payment VALUES (18234, 533, 2, 2770, 6.99, '2007-02-19 16:22:48.996577'); -INSERT INTO dvds.payment VALUES (18235, 533, 1, 2956, 0.99, '2007-02-20 05:15:49.996577'); -INSERT INTO dvds.payment VALUES (18236, 534, 1, 1610, 4.99, '2007-02-16 05:04:59.996577'); -INSERT INTO dvds.payment VALUES (18237, 534, 1, 1673, 2.99, '2007-02-16 09:08:43.996577'); -INSERT INTO dvds.payment VALUES (18238, 534, 1, 2436, 0.99, '2007-02-18 16:41:58.996577'); -INSERT INTO dvds.payment VALUES (18239, 534, 2, 3213, 1.99, '2007-02-20 23:33:45.996577'); -INSERT INTO dvds.payment VALUES (18240, 534, 1, 3216, 4.99, '2007-02-20 23:48:03.996577'); -INSERT INTO dvds.payment VALUES (18241, 535, 1, 1712, 4.99, '2007-02-16 12:53:35.996577'); -INSERT INTO dvds.payment VALUES (18242, 535, 1, 3228, 4.99, '2007-02-21 00:48:50.996577'); -INSERT INTO dvds.payment VALUES (18243, 536, 1, 1582, 4.99, '2007-02-16 03:00:23.996577'); -INSERT INTO dvds.payment VALUES (18244, 536, 2, 1962, 2.99, '2007-02-17 07:37:24.996577'); -INSERT INTO dvds.payment VALUES (18245, 536, 2, 2403, 2.99, '2007-02-18 15:01:48.996577'); -INSERT INTO dvds.payment VALUES (18246, 537, 1, 1445, 2.99, '2007-02-15 17:38:33.996577'); -INSERT INTO dvds.payment VALUES (18247, 537, 2, 2184, 2.99, '2007-02-17 23:39:02.996577'); -INSERT INTO dvds.payment VALUES (18248, 537, 1, 2586, 8.99, '2007-02-19 03:33:37.996577'); -INSERT INTO dvds.payment VALUES (18249, 537, 2, 3134, 8.99, '2007-02-20 17:57:35.996577'); -INSERT INTO dvds.payment VALUES (18250, 538, 1, 1314, 5.99, '2007-02-15 08:50:11.996577'); -INSERT INTO dvds.payment VALUES (18251, 538, 1, 1912, 4.99, '2007-02-17 03:46:58.996577'); -INSERT INTO dvds.payment VALUES (18252, 538, 1, 2682, 4.99, '2007-02-19 10:46:43.996577'); -INSERT INTO dvds.payment VALUES (18253, 538, 2, 3189, 2.99, '2007-02-20 21:47:59.996577'); -INSERT INTO dvds.payment VALUES (18254, 539, 2, 1282, 3.99, '2007-02-15 06:53:59.996577'); -INSERT INTO dvds.payment VALUES (18255, 539, 1, 1327, 0.99, '2007-02-15 09:40:05.996577'); -INSERT INTO dvds.payment VALUES (18256, 539, 2, 1444, 4.99, '2007-02-15 17:36:42.996577'); -INSERT INTO dvds.payment VALUES (18257, 540, 2, 1263, 2.99, '2007-02-15 05:25:05.996577'); -INSERT INTO dvds.payment VALUES (18258, 540, 2, 1290, 4.99, '2007-02-15 07:21:10.996577'); -INSERT INTO dvds.payment VALUES (18259, 540, 2, 2640, 2.99, '2007-02-19 07:54:39.996577'); -INSERT INTO dvds.payment VALUES (18260, 540, 1, 2953, 3.99, '2007-02-20 05:07:37.996577'); -INSERT INTO dvds.payment VALUES (18261, 540, 1, 3340, 3.99, '2007-02-21 09:05:49.996577'); -INSERT INTO dvds.payment VALUES (18262, 541, 2, 1986, 2.99, '2007-02-17 09:03:25.996577'); -INSERT INTO dvds.payment VALUES (18263, 541, 1, 2708, 6.99, '2007-02-19 12:27:31.996577'); -INSERT INTO dvds.payment VALUES (18264, 542, 1, 2610, 4.99, '2007-02-19 05:44:46.996577'); -INSERT INTO dvds.payment VALUES (18265, 542, 2, 2957, 10.99, '2007-02-20 05:22:13.996577'); -INSERT INTO dvds.payment VALUES (18266, 543, 2, 1720, 4.99, '2007-02-16 13:28:40.996577'); -INSERT INTO dvds.payment VALUES (18267, 543, 1, 2426, 2.99, '2007-02-18 16:09:10.996577'); -INSERT INTO dvds.payment VALUES (18268, 543, 2, 3070, 4.99, '2007-02-20 12:44:05.996577'); -INSERT INTO dvds.payment VALUES (18269, 543, 1, 3128, 2.99, '2007-02-20 17:10:13.996577'); -INSERT INTO dvds.payment VALUES (18270, 543, 2, 3467, 5.99, '2007-02-21 20:47:51.996577'); -INSERT INTO dvds.payment VALUES (18271, 544, 1, 1248, 1.99, '2007-02-15 04:02:18.996577'); -INSERT INTO dvds.payment VALUES (18272, 544, 2, 1434, 10.99, '2007-02-15 16:59:12.996577'); -INSERT INTO dvds.payment VALUES (18273, 544, 1, 2373, 0.99, '2007-02-18 13:06:23.996577'); -INSERT INTO dvds.payment VALUES (18274, 544, 1, 2395, 2.99, '2007-02-18 14:13:41.996577'); -INSERT INTO dvds.payment VALUES (18275, 545, 1, 2123, 2.99, '2007-02-17 19:16:56.996577'); -INSERT INTO dvds.payment VALUES (18276, 546, 1, 1181, 1.99, '2007-02-14 23:10:43.996577'); -INSERT INTO dvds.payment VALUES (18277, 546, 2, 1403, 0.99, '2007-02-15 15:00:25.996577'); -INSERT INTO dvds.payment VALUES (18278, 546, 1, 1787, 3.99, '2007-02-16 17:59:25.996577'); -INSERT INTO dvds.payment VALUES (18279, 546, 1, 2361, 5.99, '2007-02-18 11:47:31.996577'); -INSERT INTO dvds.payment VALUES (18280, 547, 2, 2022, 8.99, '2007-02-17 11:13:05.996577'); -INSERT INTO dvds.payment VALUES (18281, 548, 1, 1326, 1.99, '2007-02-15 09:36:05.996577'); -INSERT INTO dvds.payment VALUES (18282, 548, 1, 2280, 2.99, '2007-02-18 05:15:20.996577'); -INSERT INTO dvds.payment VALUES (18283, 548, 2, 2978, 0.99, '2007-02-20 06:53:42.996577'); -INSERT INTO dvds.payment VALUES (18284, 549, 1, 2050, 2.99, '2007-02-17 13:35:56.996577'); -INSERT INTO dvds.payment VALUES (18285, 550, 1, 1233, 6.99, '2007-02-15 02:47:03.996577'); -INSERT INTO dvds.payment VALUES (18286, 550, 1, 1863, 3.99, '2007-02-17 00:00:12.996577'); -INSERT INTO dvds.payment VALUES (18287, 550, 2, 1883, 4.99, '2007-02-17 01:47:17.996577'); -INSERT INTO dvds.payment VALUES (18288, 550, 1, 3154, 2.99, '2007-02-20 19:13:06.996577'); -INSERT INTO dvds.payment VALUES (18289, 550, 2, 3236, 9.99, '2007-02-21 01:16:09.996577'); -INSERT INTO dvds.payment VALUES (18290, 550, 1, 3272, 10.99, '2007-02-21 03:46:53.996577'); -INSERT INTO dvds.payment VALUES (18291, 551, 2, 2069, 4.99, '2007-02-17 14:48:05.996577'); -INSERT INTO dvds.payment VALUES (18292, 551, 1, 2776, 3.99, '2007-02-19 16:44:50.996577'); -INSERT INTO dvds.payment VALUES (18293, 552, 2, 2320, 0.99, '2007-02-18 07:53:16.996577'); -INSERT INTO dvds.payment VALUES (18294, 552, 2, 3397, 4.99, '2007-02-21 13:58:37.996577'); -INSERT INTO dvds.payment VALUES (18295, 553, 2, 1862, 3.99, '2007-02-16 23:57:56.996577'); -INSERT INTO dvds.payment VALUES (18296, 553, 1, 2460, 8.99, '2007-02-18 18:22:39.996577'); -INSERT INTO dvds.payment VALUES (18297, 553, 2, 3103, 6.99, '2007-02-20 15:26:45.996577'); -INSERT INTO dvds.payment VALUES (18298, 554, 1, 1959, 4.99, '2007-02-17 07:22:36.996577'); -INSERT INTO dvds.payment VALUES (18299, 554, 1, 2279, 6.99, '2007-02-18 05:06:48.996577'); -INSERT INTO dvds.payment VALUES (18300, 554, 2, 3278, 2.99, '2007-02-21 04:09:56.996577'); -INSERT INTO dvds.payment VALUES (18301, 554, 1, 3312, 6.99, '2007-02-21 06:33:58.996577'); -INSERT INTO dvds.payment VALUES (18302, 555, 2, 3232, 1.99, '2007-02-21 00:59:03.996577'); -INSERT INTO dvds.payment VALUES (18303, 556, 1, 2092, 6.99, '2007-02-17 16:40:42.996577'); -INSERT INTO dvds.payment VALUES (18304, 556, 2, 2593, 5.99, '2007-02-19 04:08:37.996577'); -INSERT INTO dvds.payment VALUES (18305, 556, 2, 2986, 0.99, '2007-02-20 07:18:54.996577'); -INSERT INTO dvds.payment VALUES (18306, 556, 1, 3093, 4.99, '2007-02-20 14:34:40.996577'); -INSERT INTO dvds.payment VALUES (18307, 556, 2, 3438, 6.99, '2007-02-21 18:00:06.996577'); -INSERT INTO dvds.payment VALUES (18308, 557, 1, 1666, 0.99, '2007-02-16 08:45:45.996577'); -INSERT INTO dvds.payment VALUES (18309, 557, 2, 2988, 6.99, '2007-02-20 07:27:34.996577'); -INSERT INTO dvds.payment VALUES (18310, 557, 1, 3050, 3.99, '2007-02-20 11:31:29.996577'); -INSERT INTO dvds.payment VALUES (18311, 558, 2, 1967, 4.99, '2007-02-17 07:48:18.996577'); -INSERT INTO dvds.payment VALUES (18312, 558, 1, 2411, 1.99, '2007-02-18 15:24:20.996577'); -INSERT INTO dvds.payment VALUES (18313, 558, 2, 2544, 4.99, '2007-02-19 00:44:43.996577'); -INSERT INTO dvds.payment VALUES (18314, 558, 2, 3016, 4.99, '2007-02-20 09:23:34.996577'); -INSERT INTO dvds.payment VALUES (18315, 558, 2, 3451, 10.99, '2007-02-21 19:39:05.996577'); -INSERT INTO dvds.payment VALUES (18316, 559, 2, 2576, 4.99, '2007-02-19 03:02:41.996577'); -INSERT INTO dvds.payment VALUES (18317, 559, 1, 2706, 0.99, '2007-02-19 12:25:17.996577'); -INSERT INTO dvds.payment VALUES (18318, 559, 2, 3046, 4.99, '2007-02-20 11:11:25.996577'); -INSERT INTO dvds.payment VALUES (18319, 559, 1, 3370, 1.99, '2007-02-21 11:55:27.996577'); -INSERT INTO dvds.payment VALUES (18320, 560, 1, 1271, 4.99, '2007-02-15 06:00:50.996577'); -INSERT INTO dvds.payment VALUES (18321, 560, 2, 1572, 1.99, '2007-02-16 01:51:48.996577'); -INSERT INTO dvds.payment VALUES (18322, 561, 2, 1193, 2.99, '2007-02-14 23:52:46.996577'); -INSERT INTO dvds.payment VALUES (18323, 561, 2, 1505, 2.99, '2007-02-15 20:41:16.996577'); -INSERT INTO dvds.payment VALUES (18324, 561, 2, 1620, 4.99, '2007-02-16 05:49:56.996577'); -INSERT INTO dvds.payment VALUES (18325, 561, 1, 2119, 4.99, '2007-02-17 19:03:08.996577'); -INSERT INTO dvds.payment VALUES (18326, 561, 1, 2357, 5.99, '2007-02-18 11:28:07.996577'); -INSERT INTO dvds.payment VALUES (18327, 561, 1, 2548, 0.99, '2007-02-19 01:14:01.996577'); -INSERT INTO dvds.payment VALUES (18328, 561, 1, 2950, 4.99, '2007-02-20 04:37:02.996577'); -INSERT INTO dvds.payment VALUES (18329, 561, 1, 3160, 4.99, '2007-02-20 19:49:17.996577'); -INSERT INTO dvds.payment VALUES (18330, 561, 1, 3427, 0.99, '2007-02-21 16:59:35.996577'); -INSERT INTO dvds.payment VALUES (18331, 562, 1, 1998, 3.99, '2007-02-17 09:53:23.996577'); -INSERT INTO dvds.payment VALUES (18332, 562, 1, 2705, 4.99, '2007-02-19 12:22:56.996577'); -INSERT INTO dvds.payment VALUES (18333, 562, 1, 2746, 3.99, '2007-02-19 14:50:06.996577'); -INSERT INTO dvds.payment VALUES (18334, 562, 2, 3242, 4.99, '2007-02-21 01:24:50.996577'); -INSERT INTO dvds.payment VALUES (18335, 563, 2, 1545, 4.99, '2007-02-15 23:59:49.996577'); -INSERT INTO dvds.payment VALUES (18336, 563, 2, 2573, 0.99, '2007-02-19 02:51:44.996577'); -INSERT INTO dvds.payment VALUES (18337, 564, 2, 1705, 2.99, '2007-02-16 12:28:08.996577'); -INSERT INTO dvds.payment VALUES (18338, 565, 2, 1460, 4.99, '2007-02-15 18:55:28.996577'); -INSERT INTO dvds.payment VALUES (18339, 565, 1, 2321, 5.99, '2007-02-18 08:11:08.996577'); -INSERT INTO dvds.payment VALUES (18340, 565, 1, 3300, 5.99, '2007-02-21 05:53:27.996577'); -INSERT INTO dvds.payment VALUES (18341, 566, 1, 1635, 5.99, '2007-02-16 06:55:22.996577'); -INSERT INTO dvds.payment VALUES (18342, 566, 2, 1982, 4.99, '2007-02-17 08:40:41.996577'); -INSERT INTO dvds.payment VALUES (18343, 566, 1, 2367, 0.99, '2007-02-18 12:28:57.996577'); -INSERT INTO dvds.payment VALUES (18344, 566, 1, 3379, 4.99, '2007-02-21 12:23:24.996577'); -INSERT INTO dvds.payment VALUES (18345, 567, 2, 2689, 4.99, '2007-02-19 11:27:19.996577'); -INSERT INTO dvds.payment VALUES (18346, 567, 1, 3010, 2.99, '2007-02-20 08:58:25.996577'); -INSERT INTO dvds.payment VALUES (18347, 568, 2, 1658, 4.99, '2007-02-16 08:35:36.996577'); -INSERT INTO dvds.payment VALUES (18348, 568, 2, 2382, 4.99, '2007-02-18 13:32:18.996577'); -INSERT INTO dvds.payment VALUES (18349, 568, 2, 2668, 0.99, '2007-02-19 09:57:13.996577'); -INSERT INTO dvds.payment VALUES (18350, 568, 1, 3227, 4.99, '2007-02-21 00:46:51.996577'); -INSERT INTO dvds.payment VALUES (18351, 568, 2, 3462, 1.99, '2007-02-21 20:21:18.996577'); -INSERT INTO dvds.payment VALUES (18352, 569, 1, 1463, 6.99, '2007-02-15 19:06:17.996577'); -INSERT INTO dvds.payment VALUES (18353, 569, 2, 1668, 5.99, '2007-02-16 08:48:18.996577'); -INSERT INTO dvds.payment VALUES (18354, 570, 1, 1259, 4.99, '2007-02-15 05:06:21.996577'); -INSERT INTO dvds.payment VALUES (18355, 570, 2, 1417, 4.99, '2007-02-15 16:14:17.996577'); -INSERT INTO dvds.payment VALUES (18356, 570, 2, 1804, 2.99, '2007-02-16 19:01:41.996577'); -INSERT INTO dvds.payment VALUES (18357, 570, 2, 2008, 5.99, '2007-02-17 10:16:31.996577'); -INSERT INTO dvds.payment VALUES (18358, 570, 2, 2031, 6.99, '2007-02-17 11:42:29.996577'); -INSERT INTO dvds.payment VALUES (18359, 570, 2, 2261, 3.99, '2007-02-18 04:14:41.996577'); -INSERT INTO dvds.payment VALUES (18360, 570, 2, 3138, 2.99, '2007-02-20 18:12:11.996577'); -INSERT INTO dvds.payment VALUES (18361, 571, 1, 1254, 4.99, '2007-02-15 04:39:42.996577'); -INSERT INTO dvds.payment VALUES (18362, 571, 2, 1400, 3.99, '2007-02-15 14:58:22.996577'); -INSERT INTO dvds.payment VALUES (18363, 571, 1, 1756, 4.99, '2007-02-16 15:50:59.996577'); -INSERT INTO dvds.payment VALUES (18364, 571, 2, 1990, 4.99, '2007-02-17 09:17:10.996577'); -INSERT INTO dvds.payment VALUES (18365, 571, 1, 2327, 2.99, '2007-02-18 08:45:06.996577'); -INSERT INTO dvds.payment VALUES (18366, 571, 1, 2977, 10.99, '2007-02-20 06:43:53.996577'); -INSERT INTO dvds.payment VALUES (18367, 572, 2, 1889, 10.99, '2007-02-17 02:33:38.996577'); -INSERT INTO dvds.payment VALUES (18368, 572, 1, 2007, 0.99, '2007-02-17 10:15:43.996577'); -INSERT INTO dvds.payment VALUES (18369, 572, 1, 2458, 0.99, '2007-02-18 18:07:31.996577'); -INSERT INTO dvds.payment VALUES (18370, 573, 1, 1613, 4.99, '2007-02-16 05:23:36.996577'); -INSERT INTO dvds.payment VALUES (18371, 573, 2, 2622, 5.99, '2007-02-19 06:39:07.996577'); -INSERT INTO dvds.payment VALUES (18372, 573, 1, 2995, 1.99, '2007-02-20 07:46:48.996577'); -INSERT INTO dvds.payment VALUES (18373, 573, 1, 3295, 7.99, '2007-02-21 05:32:43.996577'); -INSERT INTO dvds.payment VALUES (18374, 574, 1, 1559, 0.99, '2007-02-16 01:03:29.996577'); -INSERT INTO dvds.payment VALUES (18375, 574, 2, 1636, 5.99, '2007-02-16 06:57:20.996577'); -INSERT INTO dvds.payment VALUES (18376, 574, 1, 1817, 0.99, '2007-02-16 19:49:18.996577'); -INSERT INTO dvds.payment VALUES (18377, 574, 1, 2632, 0.99, '2007-02-19 07:20:13.996577'); -INSERT INTO dvds.payment VALUES (18378, 574, 1, 3220, 6.99, '2007-02-21 00:14:51.996577'); -INSERT INTO dvds.payment VALUES (18379, 575, 2, 1494, 2.99, '2007-02-15 20:22:46.996577'); -INSERT INTO dvds.payment VALUES (18380, 575, 1, 1824, 2.99, '2007-02-16 20:19:30.996577'); -INSERT INTO dvds.payment VALUES (18381, 575, 2, 1866, 4.99, '2007-02-17 00:21:45.996577'); -INSERT INTO dvds.payment VALUES (18382, 576, 1, 1366, 4.99, '2007-02-15 12:49:26.996577'); -INSERT INTO dvds.payment VALUES (18383, 576, 2, 1742, 2.99, '2007-02-16 15:06:14.996577'); -INSERT INTO dvds.payment VALUES (18384, 576, 1, 2309, 0.99, '2007-02-18 07:11:50.996577'); -INSERT INTO dvds.payment VALUES (18385, 576, 2, 2444, 8.99, '2007-02-18 17:26:38.996577'); -INSERT INTO dvds.payment VALUES (18386, 576, 1, 2651, 3.99, '2007-02-19 08:51:22.996577'); -INSERT INTO dvds.payment VALUES (18387, 576, 2, 2799, 4.99, '2007-02-19 17:43:47.996577'); -INSERT INTO dvds.payment VALUES (18388, 576, 2, 3226, 6.99, '2007-02-21 00:46:40.996577'); -INSERT INTO dvds.payment VALUES (18389, 577, 2, 2399, 3.99, '2007-02-18 14:34:40.996577'); -INSERT INTO dvds.payment VALUES (18390, 577, 2, 3286, 2.99, '2007-02-21 04:59:55.996577'); -INSERT INTO dvds.payment VALUES (18391, 577, 2, 3401, 6.99, '2007-02-21 14:21:09.996577'); -INSERT INTO dvds.payment VALUES (18392, 578, 2, 1826, 6.99, '2007-02-16 20:22:18.996577'); -INSERT INTO dvds.payment VALUES (18393, 578, 2, 2615, 4.99, '2007-02-19 05:57:39.996577'); -INSERT INTO dvds.payment VALUES (18394, 578, 1, 3305, 2.99, '2007-02-21 06:15:23.996577'); -INSERT INTO dvds.payment VALUES (18395, 579, 2, 2425, 5.99, '2007-02-18 16:06:11.996577'); -INSERT INTO dvds.payment VALUES (18396, 579, 1, 2522, 3.99, '2007-02-18 23:12:08.996577'); -INSERT INTO dvds.payment VALUES (18397, 579, 1, 3111, 2.99, '2007-02-20 16:15:13.996577'); -INSERT INTO dvds.payment VALUES (18398, 580, 1, 1469, 0.99, '2007-02-15 19:21:02.996577'); -INSERT INTO dvds.payment VALUES (18399, 581, 2, 1958, 3.99, '2007-02-17 07:20:27.996577'); -INSERT INTO dvds.payment VALUES (18400, 581, 2, 2101, 2.99, '2007-02-17 17:25:28.996577'); -INSERT INTO dvds.payment VALUES (18401, 581, 1, 2137, 4.99, '2007-02-17 19:46:54.996577'); -INSERT INTO dvds.payment VALUES (18402, 582, 1, 1719, 2.99, '2007-02-16 13:24:19.996577'); -INSERT INTO dvds.payment VALUES (18403, 582, 1, 2337, 7.99, '2007-02-18 09:43:53.996577'); -INSERT INTO dvds.payment VALUES (18404, 582, 2, 3071, 0.99, '2007-02-20 12:49:08.996577'); -INSERT INTO dvds.payment VALUES (18405, 583, 1, 1428, 3.99, '2007-02-15 16:47:56.996577'); -INSERT INTO dvds.payment VALUES (18406, 583, 1, 2429, 9.99, '2007-02-18 16:16:54.996577'); -INSERT INTO dvds.payment VALUES (18407, 583, 2, 2663, 4.99, '2007-02-19 09:22:26.996577'); -INSERT INTO dvds.payment VALUES (18408, 583, 2, 2845, 5.99, '2007-02-19 21:15:03.996577'); -INSERT INTO dvds.payment VALUES (18409, 583, 2, 2879, 3.99, '2007-02-19 23:52:36.996577'); -INSERT INTO dvds.payment VALUES (18410, 583, 1, 3424, 0.99, '2007-02-21 16:11:17.996577'); -INSERT INTO dvds.payment VALUES (18411, 584, 2, 1436, 3.99, '2007-02-15 17:04:06.996577'); -INSERT INTO dvds.payment VALUES (18412, 584, 2, 3317, 6.99, '2007-02-21 06:50:58.996577'); -INSERT INTO dvds.payment VALUES (18413, 585, 1, 1344, 0.99, '2007-02-15 10:58:07.996577'); -INSERT INTO dvds.payment VALUES (18414, 585, 2, 1346, 7.99, '2007-02-15 11:08:18.996577'); -INSERT INTO dvds.payment VALUES (18415, 585, 1, 2674, 0.99, '2007-02-19 10:16:25.996577'); -INSERT INTO dvds.payment VALUES (18416, 585, 1, 2930, 3.99, '2007-02-20 03:18:55.996577'); -INSERT INTO dvds.payment VALUES (18417, 586, 1, 1260, 2.99, '2007-02-15 05:10:51.996577'); -INSERT INTO dvds.payment VALUES (18418, 586, 2, 1540, 0.99, '2007-02-15 23:43:22.996577'); -INSERT INTO dvds.payment VALUES (18419, 587, 2, 1330, 2.99, '2007-02-15 09:57:43.996577'); -INSERT INTO dvds.payment VALUES (18420, 587, 2, 2034, 4.99, '2007-02-17 11:55:42.996577'); -INSERT INTO dvds.payment VALUES (18421, 587, 1, 2220, 2.99, '2007-02-18 01:50:02.996577'); -INSERT INTO dvds.payment VALUES (18422, 587, 1, 2329, 4.99, '2007-02-18 08:51:18.996577'); -INSERT INTO dvds.payment VALUES (18423, 588, 2, 1885, 2.99, '2007-02-17 02:04:25.996577'); -INSERT INTO dvds.payment VALUES (18424, 588, 2, 1903, 6.99, '2007-02-17 03:05:46.996577'); -INSERT INTO dvds.payment VALUES (18425, 588, 2, 2270, 7.99, '2007-02-18 04:57:27.996577'); -INSERT INTO dvds.payment VALUES (18426, 588, 1, 2453, 2.99, '2007-02-18 17:59:19.996577'); -INSERT INTO dvds.payment VALUES (18427, 588, 2, 2920, 3.99, '2007-02-20 02:41:12.996577'); -INSERT INTO dvds.payment VALUES (18428, 589, 1, 1439, 4.99, '2007-02-15 17:13:58.996577'); -INSERT INTO dvds.payment VALUES (18429, 589, 2, 1703, 4.99, '2007-02-16 11:57:10.996577'); -INSERT INTO dvds.payment VALUES (18430, 589, 2, 2652, 8.99, '2007-02-19 09:03:52.996577'); -INSERT INTO dvds.payment VALUES (18431, 589, 1, 2707, 8.99, '2007-02-19 12:25:34.996577'); -INSERT INTO dvds.payment VALUES (18432, 589, 1, 2979, 2.99, '2007-02-20 06:59:31.996577'); -INSERT INTO dvds.payment VALUES (18433, 590, 2, 1456, 7.99, '2007-02-15 18:28:37.996577'); -INSERT INTO dvds.payment VALUES (18434, 590, 2, 2352, 2.99, '2007-02-18 11:08:41.996577'); -INSERT INTO dvds.payment VALUES (18435, 590, 2, 2775, 2.99, '2007-02-19 16:42:46.996577'); -INSERT INTO dvds.payment VALUES (18436, 590, 1, 2916, 6.99, '2007-02-20 02:29:30.996577'); -INSERT INTO dvds.payment VALUES (18437, 590, 1, 2964, 9.99, '2007-02-20 06:01:55.996577'); -INSERT INTO dvds.payment VALUES (18438, 591, 1, 1418, 0.99, '2007-02-15 16:19:53.996577'); -INSERT INTO dvds.payment VALUES (18439, 591, 2, 3341, 2.99, '2007-02-21 09:05:51.996577'); -INSERT INTO dvds.payment VALUES (18440, 591, 2, 3435, 4.99, '2007-02-21 17:43:24.996577'); -INSERT INTO dvds.payment VALUES (18441, 592, 2, 1163, 6.99, '2007-02-14 21:41:12.996577'); -INSERT INTO dvds.payment VALUES (18442, 592, 2, 1423, 5.99, '2007-02-15 16:36:38.996577'); -INSERT INTO dvds.payment VALUES (18443, 592, 1, 1479, 2.99, '2007-02-15 19:42:04.996577'); -INSERT INTO dvds.payment VALUES (18444, 592, 1, 2627, 0.99, '2007-02-19 07:00:26.996577'); -INSERT INTO dvds.payment VALUES (18445, 592, 1, 3158, 7.99, '2007-02-20 19:36:45.996577'); -INSERT INTO dvds.payment VALUES (18446, 593, 2, 2055, 5.99, '2007-02-17 13:55:29.996577'); -INSERT INTO dvds.payment VALUES (18447, 593, 2, 2205, 4.99, '2007-02-18 00:43:00.996577'); -INSERT INTO dvds.payment VALUES (18448, 593, 1, 2441, 4.99, '2007-02-18 17:13:37.996577'); -INSERT INTO dvds.payment VALUES (18449, 593, 1, 2832, 4.99, '2007-02-19 19:50:19.996577'); -INSERT INTO dvds.payment VALUES (18450, 594, 2, 1537, 5.99, '2007-02-15 23:21:17.996577'); -INSERT INTO dvds.payment VALUES (18451, 594, 1, 1816, 4.99, '2007-02-16 19:49:07.996577'); -INSERT INTO dvds.payment VALUES (18452, 594, 1, 1950, 2.99, '2007-02-17 06:55:18.996577'); -INSERT INTO dvds.payment VALUES (18453, 594, 1, 2276, 6.99, '2007-02-18 05:02:14.996577'); -INSERT INTO dvds.payment VALUES (18454, 594, 2, 2786, 0.99, '2007-02-19 17:15:09.996577'); -INSERT INTO dvds.payment VALUES (18455, 594, 2, 3302, 1.99, '2007-02-21 06:02:06.996577'); -INSERT INTO dvds.payment VALUES (18456, 595, 2, 1170, 2.99, '2007-02-14 22:16:01.996577'); -INSERT INTO dvds.payment VALUES (18457, 595, 2, 3371, 4.99, '2007-02-21 11:55:48.996577'); -INSERT INTO dvds.payment VALUES (18458, 596, 1, 1644, 1.99, '2007-02-16 07:26:44.996577'); -INSERT INTO dvds.payment VALUES (18459, 596, 1, 2767, 1.99, '2007-02-19 16:15:01.996577'); -INSERT INTO dvds.payment VALUES (18460, 597, 1, 2379, 0.99, '2007-02-18 13:28:05.996577'); -INSERT INTO dvds.payment VALUES (18461, 597, 1, 2696, 4.99, '2007-02-19 11:57:08.996577'); -INSERT INTO dvds.payment VALUES (18462, 597, 1, 3201, 1.99, '2007-02-20 22:58:52.996577'); -INSERT INTO dvds.payment VALUES (18463, 598, 1, 3005, 2.99, '2007-02-20 08:38:55.996577'); -INSERT INTO dvds.payment VALUES (18464, 599, 1, 2272, 1.99, '2007-02-18 04:58:19.996577'); -INSERT INTO dvds.payment VALUES (18465, 599, 2, 3043, 6.99, '2007-02-20 11:07:01.996577'); -INSERT INTO dvds.payment VALUES (18466, 599, 2, 3398, 4.99, '2007-02-21 14:03:04.996577'); -INSERT INTO dvds.payment VALUES (18467, 599, 1, 3429, 6.99, '2007-02-21 17:14:31.996577'); -INSERT INTO dvds.payment VALUES (18468, 202, 1, 1474, 2.99, '2007-02-15 19:24:08.996577'); -INSERT INTO dvds.payment VALUES (18469, 202, 1, 1535, 4.99, '2007-02-15 23:20:30.996577'); -INSERT INTO dvds.payment VALUES (18470, 202, 1, 3008, 0.99, '2007-02-20 08:51:51.996577'); -INSERT INTO dvds.payment VALUES (18471, 202, 2, 3148, 0.99, '2007-02-20 18:55:44.996577'); -INSERT INTO dvds.payment VALUES (18472, 203, 1, 1217, 4.99, '2007-02-15 01:52:40.996577'); -INSERT INTO dvds.payment VALUES (18473, 203, 1, 1715, 2.99, '2007-02-16 13:05:38.996577'); -INSERT INTO dvds.payment VALUES (18474, 203, 2, 2939, 7.99, '2007-02-20 03:46:42.996577'); -INSERT INTO dvds.payment VALUES (18475, 203, 2, 3406, 2.99, '2007-02-21 14:28:44.996577'); -INSERT INTO dvds.payment VALUES (18476, 204, 1, 1321, 2.99, '2007-02-15 09:17:43.996577'); -INSERT INTO dvds.payment VALUES (18477, 204, 1, 1616, 7.99, '2007-02-16 05:33:18.996577'); -INSERT INTO dvds.payment VALUES (18478, 204, 1, 1871, 4.99, '2007-02-17 00:53:38.996577'); -INSERT INTO dvds.payment VALUES (18479, 204, 2, 1894, 7.99, '2007-02-17 02:47:14.996577'); -INSERT INTO dvds.payment VALUES (18480, 204, 2, 2186, 2.99, '2007-02-17 23:43:53.996577'); -INSERT INTO dvds.payment VALUES (18481, 204, 2, 2734, 4.99, '2007-02-19 14:04:53.996577'); -INSERT INTO dvds.payment VALUES (18482, 205, 1, 1238, 2.99, '2007-02-15 03:17:34.996577'); -INSERT INTO dvds.payment VALUES (18483, 205, 1, 1357, 4.99, '2007-02-15 11:54:49.996577'); -INSERT INTO dvds.payment VALUES (18484, 205, 1, 1767, 0.99, '2007-02-16 16:30:02.996577'); -INSERT INTO dvds.payment VALUES (18485, 205, 2, 2237, 5.99, '2007-02-18 02:46:10.996577'); -INSERT INTO dvds.payment VALUES (18486, 206, 2, 1872, 0.99, '2007-02-17 00:55:29.996577'); -INSERT INTO dvds.payment VALUES (18487, 206, 2, 2477, 5.99, '2007-02-18 19:27:12.996577'); -INSERT INTO dvds.payment VALUES (18488, 206, 2, 3012, 4.99, '2007-02-20 09:11:39.996577'); -INSERT INTO dvds.payment VALUES (18489, 207, 2, 1945, 3.99, '2007-02-17 06:19:52.996577'); -INSERT INTO dvds.payment VALUES (18490, 208, 1, 1805, 0.99, '2007-02-16 19:04:26.996577'); -INSERT INTO dvds.payment VALUES (18491, 208, 1, 1949, 5.99, '2007-02-17 06:47:48.996577'); -INSERT INTO dvds.payment VALUES (18492, 208, 2, 2592, 0.99, '2007-02-19 04:05:20.996577'); -INSERT INTO dvds.payment VALUES (18493, 208, 1, 2695, 2.99, '2007-02-19 11:54:19.996577'); -INSERT INTO dvds.payment VALUES (18494, 208, 2, 2907, 0.99, '2007-02-20 01:43:35.996577'); -INSERT INTO dvds.payment VALUES (18495, 1, 1, 1185, 5.99, '2007-02-14 23:22:38.996577'); -INSERT INTO dvds.payment VALUES (18496, 1, 2, 1422, 0.99, '2007-02-15 16:31:19.996577'); -INSERT INTO dvds.payment VALUES (18497, 1, 2, 1476, 9.99, '2007-02-15 19:37:12.996577'); -INSERT INTO dvds.payment VALUES (18498, 1, 1, 1725, 4.99, '2007-02-16 13:47:23.996577'); -INSERT INTO dvds.payment VALUES (18499, 1, 1, 2308, 4.99, '2007-02-18 07:10:14.996577'); -INSERT INTO dvds.payment VALUES (18500, 1, 2, 2363, 0.99, '2007-02-18 12:02:25.996577'); -INSERT INTO dvds.payment VALUES (18501, 1, 1, 3284, 3.99, '2007-02-21 04:53:11.996577'); -INSERT INTO dvds.payment VALUES (18502, 2, 1, 2128, 2.99, '2007-02-17 19:23:24.996577'); -INSERT INTO dvds.payment VALUES (18503, 3, 1, 1546, 8.99, '2007-02-16 00:02:31.996577'); -INSERT INTO dvds.payment VALUES (18504, 3, 1, 1726, 6.99, '2007-02-16 13:47:36.996577'); -INSERT INTO dvds.payment VALUES (18505, 3, 2, 1911, 6.99, '2007-02-17 03:43:41.996577'); -INSERT INTO dvds.payment VALUES (18506, 3, 1, 2628, 2.99, '2007-02-19 07:03:19.996577'); -INSERT INTO dvds.payment VALUES (18507, 4, 1, 1297, 4.99, '2007-02-15 07:59:54.996577'); -INSERT INTO dvds.payment VALUES (18508, 4, 1, 1633, 0.99, '2007-02-16 06:37:06.996577'); -INSERT INTO dvds.payment VALUES (18509, 4, 2, 1707, 2.99, '2007-02-16 12:29:53.996577'); -INSERT INTO dvds.payment VALUES (18510, 4, 2, 1735, 0.99, '2007-02-16 14:20:18.996577'); -INSERT INTO dvds.payment VALUES (18511, 4, 2, 2043, 0.99, '2007-02-17 12:59:38.996577'); -INSERT INTO dvds.payment VALUES (18512, 4, 1, 2642, 5.99, '2007-02-19 08:07:27.996577'); -INSERT INTO dvds.payment VALUES (18513, 5, 1, 1502, 3.99, '2007-02-15 20:31:40.996577'); -INSERT INTO dvds.payment VALUES (18514, 5, 2, 1631, 2.99, '2007-02-16 06:29:28.996577'); -INSERT INTO dvds.payment VALUES (18515, 5, 2, 2063, 4.99, '2007-02-17 14:25:19.996577'); -INSERT INTO dvds.payment VALUES (18516, 5, 2, 2570, 2.99, '2007-02-19 02:48:39.996577'); -INSERT INTO dvds.payment VALUES (18517, 5, 2, 3126, 4.99, '2007-02-20 17:06:48.996577'); -INSERT INTO dvds.payment VALUES (18518, 6, 1, 1575, 3.99, '2007-02-16 02:10:04.996577'); -INSERT INTO dvds.payment VALUES (18519, 6, 2, 1841, 2.99, '2007-02-16 22:12:39.996577'); -INSERT INTO dvds.payment VALUES (18520, 6, 1, 1966, 0.99, '2007-02-17 07:48:11.996577'); -INSERT INTO dvds.payment VALUES (18521, 6, 1, 2345, 0.99, '2007-02-18 10:31:49.996577'); -INSERT INTO dvds.payment VALUES (18522, 7, 2, 1810, 0.99, '2007-02-16 19:34:26.996577'); -INSERT INTO dvds.payment VALUES (18523, 7, 1, 2250, 2.99, '2007-02-18 03:32:02.996577'); -INSERT INTO dvds.payment VALUES (18524, 7, 1, 2709, 0.99, '2007-02-19 12:28:52.996577'); -INSERT INTO dvds.payment VALUES (18525, 7, 1, 2888, 4.99, '2007-02-20 00:19:22.996577'); -INSERT INTO dvds.payment VALUES (18526, 7, 1, 3007, 0.99, '2007-02-20 08:40:19.996577'); -INSERT INTO dvds.payment VALUES (18527, 8, 2, 1305, 2.99, '2007-02-15 08:27:42.996577'); -INSERT INTO dvds.payment VALUES (18528, 8, 1, 2095, 5.99, '2007-02-17 16:50:01.996577'); -INSERT INTO dvds.payment VALUES (18529, 8, 2, 3114, 4.99, '2007-02-20 16:26:13.996577'); -INSERT INTO dvds.payment VALUES (18530, 9, 2, 3142, 7.99, '2007-02-20 18:27:54.996577'); -INSERT INTO dvds.payment VALUES (18531, 9, 2, 3262, 4.99, '2007-02-21 02:37:09.996577'); -INSERT INTO dvds.payment VALUES (18532, 10, 1, 1801, 4.99, '2007-02-16 18:50:19.996577'); -INSERT INTO dvds.payment VALUES (18533, 10, 1, 1995, 4.99, '2007-02-17 09:39:40.996577'); -INSERT INTO dvds.payment VALUES (18534, 10, 2, 2222, 3.99, '2007-02-18 01:54:49.996577'); -INSERT INTO dvds.payment VALUES (18535, 10, 1, 2814, 0.99, '2007-02-19 18:30:25.996577'); -INSERT INTO dvds.payment VALUES (18536, 10, 1, 2865, 0.99, '2007-02-19 22:29:21.996577'); -INSERT INTO dvds.payment VALUES (18537, 11, 1, 1470, 6.99, '2007-02-15 19:21:33.996577'); -INSERT INTO dvds.payment VALUES (18538, 11, 1, 1939, 7.99, '2007-02-17 05:55:11.996577'); -INSERT INTO dvds.payment VALUES (18539, 11, 1, 3192, 0.99, '2007-02-20 22:17:38.996577'); -INSERT INTO dvds.payment VALUES (18540, 12, 2, 1752, 5.99, '2007-02-16 15:31:21.996577'); -INSERT INTO dvds.payment VALUES (18541, 12, 2, 2434, 5.99, '2007-02-18 16:40:17.996577'); -INSERT INTO dvds.payment VALUES (18542, 12, 2, 2500, 5.99, '2007-02-18 21:35:38.996577'); -INSERT INTO dvds.payment VALUES (18543, 12, 2, 2623, 4.99, '2007-02-19 06:40:17.996577'); -INSERT INTO dvds.payment VALUES (18544, 12, 2, 3135, 2.99, '2007-02-20 18:02:18.996577'); -INSERT INTO dvds.payment VALUES (18545, 12, 1, 3411, 0.99, '2007-02-21 14:59:53.996577'); -INSERT INTO dvds.payment VALUES (18546, 13, 1, 1933, 2.99, '2007-02-17 05:23:08.996577'); -INSERT INTO dvds.payment VALUES (18547, 13, 1, 2209, 4.99, '2007-02-18 00:52:27.996577'); -INSERT INTO dvds.payment VALUES (18548, 13, 1, 2952, 2.99, '2007-02-20 04:55:23.996577'); -INSERT INTO dvds.payment VALUES (18549, 13, 1, 3047, 8.99, '2007-02-20 11:13:59.996577'); -INSERT INTO dvds.payment VALUES (18550, 14, 2, 1360, 4.99, '2007-02-15 12:00:41.996577'); -INSERT INTO dvds.payment VALUES (18551, 15, 1, 2486, 2.99, '2007-02-18 19:55:22.996577'); -INSERT INTO dvds.payment VALUES (18552, 15, 1, 2937, 5.99, '2007-02-20 03:44:03.996577'); -INSERT INTO dvds.payment VALUES (18553, 15, 2, 3182, 0.99, '2007-02-20 21:20:44.996577'); -INSERT INTO dvds.payment VALUES (18554, 16, 2, 1934, 6.99, '2007-02-17 05:33:23.996577'); -INSERT INTO dvds.payment VALUES (18555, 16, 1, 1944, 7.99, '2007-02-17 06:19:19.996577'); -INSERT INTO dvds.payment VALUES (18556, 16, 1, 2960, 7.99, '2007-02-20 05:38:35.996577'); -INSERT INTO dvds.payment VALUES (18557, 16, 2, 3348, 0.99, '2007-02-21 09:45:08.996577'); -INSERT INTO dvds.payment VALUES (18558, 17, 2, 2175, 5.99, '2007-02-17 22:46:24.996577'); -INSERT INTO dvds.payment VALUES (18559, 17, 1, 2684, 8.99, '2007-02-19 10:57:34.996577'); -INSERT INTO dvds.payment VALUES (18560, 17, 2, 3269, 5.99, '2007-02-21 03:34:56.996577'); -INSERT INTO dvds.payment VALUES (18561, 18, 2, 1451, 5.99, '2007-02-15 17:58:44.996577'); -INSERT INTO dvds.payment VALUES (18562, 18, 2, 1783, 4.99, '2007-02-16 17:51:49.996577'); -INSERT INTO dvds.payment VALUES (18563, 18, 2, 2112, 5.99, '2007-02-17 18:21:08.996577'); -INSERT INTO dvds.payment VALUES (18564, 18, 1, 2990, 8.99, '2007-02-20 07:31:17.996577'); -INSERT INTO dvds.payment VALUES (18565, 19, 1, 2657, 2.99, '2007-02-19 09:11:25.996577'); -INSERT INTO dvds.payment VALUES (18566, 19, 1, 2848, 2.99, '2007-02-19 21:24:03.996577'); -INSERT INTO dvds.payment VALUES (18567, 19, 2, 3423, 2.99, '2007-02-21 16:06:28.996577'); -INSERT INTO dvds.payment VALUES (18568, 20, 2, 1558, 0.99, '2007-02-16 01:02:19.996577'); -INSERT INTO dvds.payment VALUES (18569, 20, 2, 2136, 3.99, '2007-02-17 19:45:07.996577'); -INSERT INTO dvds.payment VALUES (18570, 20, 2, 2343, 4.99, '2007-02-18 10:14:52.996577'); -INSERT INTO dvds.payment VALUES (18571, 20, 1, 3350, 4.99, '2007-02-21 09:50:04.996577'); -INSERT INTO dvds.payment VALUES (18572, 21, 2, 2235, 7.99, '2007-02-18 02:37:16.996577'); -INSERT INTO dvds.payment VALUES (18573, 21, 1, 2268, 4.99, '2007-02-18 04:42:07.996577'); -INSERT INTO dvds.payment VALUES (18574, 21, 1, 2393, 2.99, '2007-02-18 14:06:21.996577'); -INSERT INTO dvds.payment VALUES (18575, 21, 2, 2830, 4.99, '2007-02-19 19:42:59.996577'); -INSERT INTO dvds.payment VALUES (18576, 21, 1, 3212, 10.99, '2007-02-20 23:33:01.996577'); -INSERT INTO dvds.payment VALUES (18577, 22, 1, 3419, 2.99, '2007-02-21 15:46:27.996577'); -INSERT INTO dvds.payment VALUES (18578, 23, 1, 2753, 1.99, '2007-02-19 15:13:01.996577'); -INSERT INTO dvds.payment VALUES (18579, 23, 1, 2827, 0.99, '2007-02-19 19:18:27.996577'); -INSERT INTO dvds.payment VALUES (18580, 23, 1, 3015, 5.99, '2007-02-20 09:17:22.996577'); -INSERT INTO dvds.payment VALUES (18581, 23, 1, 3055, 4.99, '2007-02-20 11:48:24.996577'); -INSERT INTO dvds.payment VALUES (18582, 23, 1, 3461, 2.99, '2007-02-21 20:17:44.996577'); -INSERT INTO dvds.payment VALUES (18583, 24, 1, 1716, 2.99, '2007-02-16 13:07:57.996577'); -INSERT INTO dvds.payment VALUES (18584, 24, 1, 2070, 2.99, '2007-02-17 14:56:17.996577'); -INSERT INTO dvds.payment VALUES (18585, 24, 2, 2116, 4.99, '2007-02-17 18:44:38.996577'); -INSERT INTO dvds.payment VALUES (18586, 24, 1, 2451, 5.99, '2007-02-18 17:56:28.996577'); -INSERT INTO dvds.payment VALUES (18587, 24, 2, 2963, 7.99, '2007-02-20 06:01:35.996577'); -INSERT INTO dvds.payment VALUES (18588, 25, 1, 1338, 4.99, '2007-02-15 10:46:00.996577'); -INSERT INTO dvds.payment VALUES (18589, 25, 1, 1365, 2.99, '2007-02-15 12:38:21.996577'); -INSERT INTO dvds.payment VALUES (18590, 25, 2, 1754, 6.99, '2007-02-16 15:41:49.996577'); -INSERT INTO dvds.payment VALUES (18591, 25, 2, 2625, 8.99, '2007-02-19 06:51:37.996577'); -INSERT INTO dvds.payment VALUES (18592, 25, 1, 2901, 4.99, '2007-02-20 01:09:54.996577'); -INSERT INTO dvds.payment VALUES (18593, 25, 1, 3447, 4.99, '2007-02-21 19:21:57.996577'); -INSERT INTO dvds.payment VALUES (18594, 26, 1, 1440, 5.99, '2007-02-15 17:21:40.996577'); -INSERT INTO dvds.payment VALUES (18595, 26, 2, 1706, 4.99, '2007-02-16 12:29:28.996577'); -INSERT INTO dvds.payment VALUES (18596, 26, 1, 2093, 9.99, '2007-02-17 16:42:34.996577'); -INSERT INTO dvds.payment VALUES (18597, 26, 2, 2416, 3.99, '2007-02-18 15:36:00.996577'); -INSERT INTO dvds.payment VALUES (18598, 26, 2, 2421, 6.99, '2007-02-18 15:53:31.996577'); -INSERT INTO dvds.payment VALUES (18599, 26, 1, 2532, 4.99, '2007-02-18 23:56:12.996577'); -INSERT INTO dvds.payment VALUES (18600, 26, 1, 2745, 4.99, '2007-02-19 14:49:45.996577'); -INSERT INTO dvds.payment VALUES (18601, 27, 1, 1310, 4.99, '2007-02-15 08:40:08.996577'); -INSERT INTO dvds.payment VALUES (18602, 27, 2, 1480, 4.99, '2007-02-15 19:45:43.996577'); -INSERT INTO dvds.payment VALUES (18603, 27, 2, 1699, 2.99, '2007-02-16 11:33:35.996577'); -INSERT INTO dvds.payment VALUES (18604, 27, 2, 1960, 3.99, '2007-02-17 07:28:23.996577'); -INSERT INTO dvds.payment VALUES (18605, 27, 2, 2512, 2.99, '2007-02-18 22:17:13.996577'); -INSERT INTO dvds.payment VALUES (18606, 27, 1, 2815, 4.99, '2007-02-19 18:31:55.996577'); -INSERT INTO dvds.payment VALUES (18607, 27, 1, 3038, 1.99, '2007-02-20 10:57:25.996577'); -INSERT INTO dvds.payment VALUES (18608, 27, 2, 3420, 3.99, '2007-02-21 15:51:02.996577'); -INSERT INTO dvds.payment VALUES (18609, 28, 2, 1240, 2.99, '2007-02-15 03:26:33.996577'); -INSERT INTO dvds.payment VALUES (18610, 28, 1, 1543, 4.99, '2007-02-15 23:52:34.996577'); -INSERT INTO dvds.payment VALUES (18611, 28, 2, 2299, 3.99, '2007-02-18 06:47:18.996577'); -INSERT INTO dvds.payment VALUES (18612, 28, 2, 2604, 0.99, '2007-02-19 04:58:36.996577'); -INSERT INTO dvds.payment VALUES (18613, 28, 1, 3231, 0.99, '2007-02-21 00:53:26.996577'); -INSERT INTO dvds.payment VALUES (18614, 29, 1, 2655, 0.99, '2007-02-19 09:07:08.996577'); -INSERT INTO dvds.payment VALUES (18615, 29, 1, 2673, 0.99, '2007-02-19 10:10:46.996577'); -INSERT INTO dvds.payment VALUES (18616, 29, 1, 2701, 7.99, '2007-02-19 12:01:32.996577'); -INSERT INTO dvds.payment VALUES (18617, 29, 1, 2735, 2.99, '2007-02-19 14:10:33.996577'); -INSERT INTO dvds.payment VALUES (18618, 29, 2, 2801, 2.99, '2007-02-19 17:46:35.996577'); -INSERT INTO dvds.payment VALUES (18619, 29, 2, 2923, 2.99, '2007-02-20 02:44:33.996577'); -INSERT INTO dvds.payment VALUES (18620, 29, 1, 3324, 2.99, '2007-02-21 07:17:42.996577'); -INSERT INTO dvds.payment VALUES (18621, 30, 2, 1874, 1.99, '2007-02-17 01:07:46.996577'); -INSERT INTO dvds.payment VALUES (18622, 30, 2, 1895, 2.99, '2007-02-17 02:53:38.996577'); -INSERT INTO dvds.payment VALUES (18623, 30, 2, 2154, 4.99, '2007-02-17 21:28:08.996577'); -INSERT INTO dvds.payment VALUES (18624, 30, 2, 2730, 2.99, '2007-02-19 13:38:35.996577'); -INSERT INTO dvds.payment VALUES (18625, 31, 2, 1656, 4.99, '2007-02-16 08:34:06.996577'); -INSERT INTO dvds.payment VALUES (18626, 31, 1, 1838, 1.99, '2007-02-16 21:48:42.996577'); -INSERT INTO dvds.payment VALUES (18627, 31, 1, 2233, 0.99, '2007-02-18 02:26:02.996577'); -INSERT INTO dvds.payment VALUES (18628, 31, 2, 2341, 6.99, '2007-02-18 10:03:56.996577'); -INSERT INTO dvds.payment VALUES (18629, 31, 1, 2396, 7.99, '2007-02-18 14:18:14.996577'); -INSERT INTO dvds.payment VALUES (18630, 31, 2, 2438, 0.99, '2007-02-18 17:02:47.996577'); -INSERT INTO dvds.payment VALUES (18631, 31, 1, 2530, 0.99, '2007-02-18 23:48:26.996577'); -INSERT INTO dvds.payment VALUES (18632, 31, 2, 2648, 4.99, '2007-02-19 08:34:46.996577'); -INSERT INTO dvds.payment VALUES (18633, 31, 2, 3117, 2.99, '2007-02-20 16:33:41.996577'); -INSERT INTO dvds.payment VALUES (18634, 31, 2, 3172, 1.99, '2007-02-20 20:47:51.996577'); -INSERT INTO dvds.payment VALUES (18635, 31, 1, 3205, 0.99, '2007-02-20 23:07:13.996577'); -INSERT INTO dvds.payment VALUES (18636, 32, 2, 1887, 6.99, '2007-02-17 02:21:44.996577'); -INSERT INTO dvds.payment VALUES (18637, 32, 2, 2160, 0.99, '2007-02-17 22:07:37.996577'); -INSERT INTO dvds.payment VALUES (18638, 32, 2, 2624, 5.99, '2007-02-19 06:50:35.996577'); -INSERT INTO dvds.payment VALUES (18639, 32, 2, 2891, 1.99, '2007-02-20 00:30:31.996577'); -INSERT INTO dvds.payment VALUES (18640, 33, 1, 1301, 10.99, '2007-02-15 08:14:59.996577'); -INSERT INTO dvds.payment VALUES (18641, 33, 2, 3173, 8.99, '2007-02-20 20:49:36.996577'); -INSERT INTO dvds.payment VALUES (18642, 34, 1, 1900, 4.99, '2007-02-17 02:58:24.996577'); -INSERT INTO dvds.payment VALUES (18643, 34, 2, 2257, 5.99, '2007-02-18 03:58:18.996577'); -INSERT INTO dvds.payment VALUES (18644, 34, 1, 3150, 0.99, '2007-02-20 19:03:54.996577'); -INSERT INTO dvds.payment VALUES (18645, 35, 1, 1579, 0.99, '2007-02-16 02:37:34.996577'); -INSERT INTO dvds.payment VALUES (18646, 35, 1, 1989, 2.99, '2007-02-17 09:15:50.996577'); -INSERT INTO dvds.payment VALUES (18647, 35, 1, 2229, 4.99, '2007-02-18 02:18:44.996577'); -INSERT INTO dvds.payment VALUES (18648, 35, 1, 2231, 0.99, '2007-02-18 02:20:40.996577'); -INSERT INTO dvds.payment VALUES (18649, 35, 1, 2743, 2.99, '2007-02-19 14:44:22.996577'); -INSERT INTO dvds.payment VALUES (18650, 35, 2, 3112, 4.99, '2007-02-20 16:21:56.996577'); -INSERT INTO dvds.payment VALUES (18651, 36, 2, 2741, 0.99, '2007-02-19 14:34:07.996577'); -INSERT INTO dvds.payment VALUES (18652, 37, 1, 1583, 4.99, '2007-02-16 03:12:49.996577'); -INSERT INTO dvds.payment VALUES (18653, 37, 2, 1812, 1.99, '2007-02-16 19:37:12.996577'); -INSERT INTO dvds.payment VALUES (18654, 37, 2, 1854, 3.99, '2007-02-16 23:12:23.996577'); -INSERT INTO dvds.payment VALUES (18655, 38, 2, 1250, 2.99, '2007-02-15 04:24:06.996577'); -INSERT INTO dvds.payment VALUES (18656, 38, 1, 2550, 1.99, '2007-02-19 01:18:21.996577'); -INSERT INTO dvds.payment VALUES (18657, 38, 2, 2605, 1.99, '2007-02-19 05:16:27.996577'); -INSERT INTO dvds.payment VALUES (18658, 38, 2, 3003, 4.99, '2007-02-20 08:29:17.996577'); -INSERT INTO dvds.payment VALUES (18659, 38, 2, 3392, 3.99, '2007-02-21 13:41:10.996577'); -INSERT INTO dvds.payment VALUES (18660, 39, 1, 1625, 5.99, '2007-02-16 06:17:34.996577'); -INSERT INTO dvds.payment VALUES (18661, 39, 1, 1905, 4.99, '2007-02-17 03:20:09.996577'); -INSERT INTO dvds.payment VALUES (18662, 39, 2, 2135, 0.99, '2007-02-17 19:42:28.996577'); -INSERT INTO dvds.payment VALUES (18663, 39, 2, 2439, 4.99, '2007-02-18 17:03:30.996577'); -INSERT INTO dvds.payment VALUES (18664, 39, 1, 2631, 4.99, '2007-02-19 07:18:19.996577'); -INSERT INTO dvds.payment VALUES (18665, 39, 1, 2876, 4.99, '2007-02-19 23:35:00.996577'); -INSERT INTO dvds.payment VALUES (18666, 40, 2, 2470, 7.99, '2007-02-18 18:56:57.996577'); -INSERT INTO dvds.payment VALUES (18667, 40, 2, 2896, 2.99, '2007-02-20 01:02:08.996577'); -INSERT INTO dvds.payment VALUES (18668, 40, 1, 2993, 4.99, '2007-02-20 07:40:38.996577'); -INSERT INTO dvds.payment VALUES (18669, 40, 1, 3428, 0.99, '2007-02-21 17:08:00.996577'); -INSERT INTO dvds.payment VALUES (18670, 41, 1, 2563, 4.99, '2007-02-19 01:52:43.996577'); -INSERT INTO dvds.payment VALUES (18671, 41, 2, 3246, 7.99, '2007-02-21 01:38:27.996577'); -INSERT INTO dvds.payment VALUES (18672, 42, 2, 1534, 0.99, '2007-02-15 23:17:58.996577'); -INSERT INTO dvds.payment VALUES (18673, 42, 2, 2056, 2.99, '2007-02-17 13:55:59.996577'); -INSERT INTO dvds.payment VALUES (18674, 42, 1, 2170, 3.99, '2007-02-17 22:26:00.996577'); -INSERT INTO dvds.payment VALUES (18675, 42, 1, 2302, 4.99, '2007-02-18 06:55:59.996577'); -INSERT INTO dvds.payment VALUES (18676, 43, 2, 1544, 4.99, '2007-02-15 23:56:48.996577'); -INSERT INTO dvds.payment VALUES (18677, 44, 1, 1497, 3.99, '2007-02-15 20:25:05.996577'); -INSERT INTO dvds.payment VALUES (18678, 44, 1, 2369, 2.99, '2007-02-18 12:53:55.996577'); -INSERT INTO dvds.payment VALUES (18679, 44, 1, 2809, 3.99, '2007-02-19 18:08:53.996577'); -INSERT INTO dvds.payment VALUES (18680, 44, 2, 2866, 4.99, '2007-02-19 22:30:02.996577'); -INSERT INTO dvds.payment VALUES (18681, 45, 1, 1806, 4.99, '2007-02-16 19:10:23.996577'); -INSERT INTO dvds.payment VALUES (18682, 45, 2, 1979, 2.99, '2007-02-17 08:13:56.996577'); -INSERT INTO dvds.payment VALUES (18683, 45, 2, 2722, 4.99, '2007-02-19 13:23:43.996577'); -INSERT INTO dvds.payment VALUES (18684, 45, 1, 3391, 3.99, '2007-02-21 13:39:28.996577'); -INSERT INTO dvds.payment VALUES (18685, 45, 2, 3444, 0.99, '2007-02-21 19:08:05.996577'); -INSERT INTO dvds.payment VALUES (18686, 46, 1, 1166, 4.99, '2007-02-14 21:45:29.996577'); -INSERT INTO dvds.payment VALUES (18687, 46, 2, 1214, 4.99, '2007-02-15 01:47:06.996577'); -INSERT INTO dvds.payment VALUES (18688, 46, 2, 2144, 0.99, '2007-02-17 20:34:06.996577'); -INSERT INTO dvds.payment VALUES (18689, 46, 1, 2203, 2.99, '2007-02-18 00:39:08.996577'); -INSERT INTO dvds.payment VALUES (18690, 46, 2, 2965, 8.99, '2007-02-20 06:02:04.996577'); -INSERT INTO dvds.payment VALUES (18691, 46, 2, 2975, 4.99, '2007-02-20 06:34:44.996577'); -INSERT INTO dvds.payment VALUES (18692, 46, 2, 3439, 4.99, '2007-02-21 18:04:41.996577'); -INSERT INTO dvds.payment VALUES (18693, 47, 1, 1882, 4.99, '2007-02-17 01:45:47.996577'); -INSERT INTO dvds.payment VALUES (18694, 47, 1, 2307, 6.99, '2007-02-18 07:03:25.996577'); -INSERT INTO dvds.payment VALUES (18695, 47, 2, 3320, 5.99, '2007-02-21 06:58:07.996577'); -INSERT INTO dvds.payment VALUES (18696, 48, 2, 1689, 9.99, '2007-02-16 10:47:07.996577'); -INSERT INTO dvds.payment VALUES (18697, 48, 2, 2822, 0.99, '2007-02-19 18:57:50.996577'); -INSERT INTO dvds.payment VALUES (18698, 49, 1, 1164, 0.99, '2007-02-14 21:44:52.996577'); -INSERT INTO dvds.payment VALUES (18699, 49, 2, 1237, 9.99, '2007-02-15 03:12:36.996577'); -INSERT INTO dvds.payment VALUES (18700, 49, 2, 1688, 0.99, '2007-02-16 10:39:46.996577'); -INSERT INTO dvds.payment VALUES (18701, 49, 2, 1777, 6.99, '2007-02-16 17:20:38.996577'); -INSERT INTO dvds.payment VALUES (18702, 49, 2, 3235, 4.99, '2007-02-21 01:14:43.996577'); -INSERT INTO dvds.payment VALUES (18703, 50, 1, 1223, 2.99, '2007-02-15 02:07:19.996577'); -INSERT INTO dvds.payment VALUES (18704, 50, 1, 1785, 4.99, '2007-02-16 17:55:38.996577'); -INSERT INTO dvds.payment VALUES (18705, 50, 2, 3000, 0.99, '2007-02-20 08:00:59.996577'); -INSERT INTO dvds.payment VALUES (18706, 50, 2, 3169, 2.99, '2007-02-20 20:24:20.996577'); -INSERT INTO dvds.payment VALUES (18707, 51, 2, 1373, 1.99, '2007-02-15 13:16:30.996577'); -INSERT INTO dvds.payment VALUES (18708, 51, 1, 1477, 0.99, '2007-02-15 19:39:44.996577'); -INSERT INTO dvds.payment VALUES (18709, 52, 1, 1196, 4.99, '2007-02-15 00:06:57.996577'); -INSERT INTO dvds.payment VALUES (18710, 52, 2, 2232, 0.99, '2007-02-18 02:22:57.996577'); -INSERT INTO dvds.payment VALUES (18711, 52, 1, 2862, 2.99, '2007-02-19 22:15:50.996577'); -INSERT INTO dvds.payment VALUES (18712, 52, 2, 3196, 4.99, '2007-02-20 22:30:54.996577'); -INSERT INTO dvds.payment VALUES (18713, 53, 1, 1964, 0.99, '2007-02-17 07:38:35.996577'); -INSERT INTO dvds.payment VALUES (18714, 53, 1, 2388, 2.99, '2007-02-18 13:54:56.996577'); -INSERT INTO dvds.payment VALUES (18715, 53, 1, 2903, 2.99, '2007-02-20 01:17:27.996577'); -INSERT INTO dvds.payment VALUES (18716, 53, 2, 3140, 2.99, '2007-02-20 18:15:38.996577'); -INSERT INTO dvds.payment VALUES (18717, 53, 2, 3244, 0.99, '2007-02-21 01:29:36.996577'); -INSERT INTO dvds.payment VALUES (18718, 54, 1, 1556, 4.99, '2007-02-16 00:47:28.996577'); -INSERT INTO dvds.payment VALUES (18719, 54, 1, 1571, 2.99, '2007-02-16 01:50:26.996577'); -INSERT INTO dvds.payment VALUES (18720, 54, 2, 2323, 6.99, '2007-02-18 08:23:28.996577'); -INSERT INTO dvds.payment VALUES (18721, 54, 1, 2647, 4.99, '2007-02-19 08:26:22.996577'); -INSERT INTO dvds.payment VALUES (18722, 55, 2, 1825, 2.99, '2007-02-16 20:21:31.996577'); -INSERT INTO dvds.payment VALUES (18723, 55, 2, 2062, 2.99, '2007-02-17 14:25:09.996577'); -INSERT INTO dvds.payment VALUES (18724, 55, 1, 2904, 2.99, '2007-02-20 01:22:32.996577'); -INSERT INTO dvds.payment VALUES (18725, 55, 1, 2976, 4.99, '2007-02-20 06:37:37.996577'); -INSERT INTO dvds.payment VALUES (18726, 55, 1, 3149, 4.99, '2007-02-20 19:03:21.996577'); -INSERT INTO dvds.payment VALUES (18727, 56, 2, 1795, 6.99, '2007-02-16 18:37:27.996577'); -INSERT INTO dvds.payment VALUES (18728, 56, 1, 2140, 0.99, '2007-02-17 20:08:55.996577'); -INSERT INTO dvds.payment VALUES (18729, 56, 1, 2485, 4.99, '2007-02-18 19:54:29.996577'); -INSERT INTO dvds.payment VALUES (18730, 56, 1, 2989, 0.99, '2007-02-20 07:28:03.996577'); -INSERT INTO dvds.payment VALUES (18731, 57, 1, 2058, 5.99, '2007-02-17 14:03:07.996577'); -INSERT INTO dvds.payment VALUES (18732, 57, 1, 2105, 0.99, '2007-02-17 17:44:11.996577'); -INSERT INTO dvds.payment VALUES (18733, 57, 1, 2360, 4.99, '2007-02-18 11:39:39.996577'); -INSERT INTO dvds.payment VALUES (18734, 57, 2, 2910, 7.99, '2007-02-20 01:59:44.996577'); -INSERT INTO dvds.payment VALUES (18735, 57, 1, 3357, 0.99, '2007-02-21 10:24:08.996577'); -INSERT INTO dvds.payment VALUES (18736, 58, 1, 2191, 4.99, '2007-02-18 00:01:35.996577'); -INSERT INTO dvds.payment VALUES (18737, 58, 2, 2543, 0.99, '2007-02-19 00:42:37.996577'); -INSERT INTO dvds.payment VALUES (18738, 58, 1, 2906, 0.99, '2007-02-20 01:33:22.996577'); -INSERT INTO dvds.payment VALUES (18739, 59, 1, 1269, 2.99, '2007-02-15 05:58:25.996577'); -INSERT INTO dvds.payment VALUES (18740, 59, 1, 1728, 3.99, '2007-02-16 13:57:55.996577'); -INSERT INTO dvds.payment VALUES (18741, 59, 1, 2921, 3.99, '2007-02-20 02:41:30.996577'); -INSERT INTO dvds.payment VALUES (18742, 60, 2, 1482, 4.99, '2007-02-15 19:46:42.996577'); -INSERT INTO dvds.payment VALUES (18743, 60, 2, 2394, 4.99, '2007-02-18 14:10:56.996577'); -INSERT INTO dvds.payment VALUES (18744, 62, 2, 1241, 6.99, '2007-02-15 03:28:09.996577'); -INSERT INTO dvds.payment VALUES (18745, 62, 1, 1486, 0.99, '2007-02-15 19:53:56.996577'); -INSERT INTO dvds.payment VALUES (18746, 62, 1, 1587, 0.99, '2007-02-16 03:20:54.996577'); -INSERT INTO dvds.payment VALUES (18747, 62, 2, 3021, 4.99, '2007-02-20 09:41:27.996577'); -INSERT INTO dvds.payment VALUES (18748, 62, 1, 3035, 5.99, '2007-02-20 10:45:29.996577'); -INSERT INTO dvds.payment VALUES (18749, 62, 1, 3287, 0.99, '2007-02-21 05:01:05.996577'); -INSERT INTO dvds.payment VALUES (18750, 62, 1, 3327, 3.99, '2007-02-21 07:33:16.996577'); -INSERT INTO dvds.payment VALUES (18751, 63, 2, 1818, 0.99, '2007-02-16 19:59:00.996577'); -INSERT INTO dvds.payment VALUES (18752, 64, 2, 1335, 0.99, '2007-02-15 10:19:56.996577'); -INSERT INTO dvds.payment VALUES (18753, 64, 1, 2060, 2.99, '2007-02-17 14:11:08.996577'); -INSERT INTO dvds.payment VALUES (18754, 65, 1, 2173, 7.99, '2007-02-17 22:36:46.996577'); -INSERT INTO dvds.payment VALUES (18755, 65, 1, 3051, 4.99, '2007-02-20 11:35:18.996577'); -INSERT INTO dvds.payment VALUES (18756, 66, 1, 1236, 2.99, '2007-02-15 03:02:53.996577'); -INSERT INTO dvds.payment VALUES (18757, 66, 1, 1907, 2.99, '2007-02-17 03:36:53.996577'); -INSERT INTO dvds.payment VALUES (18758, 66, 1, 2106, 4.99, '2007-02-17 17:57:29.996577'); -INSERT INTO dvds.payment VALUES (18759, 66, 2, 2571, 2.99, '2007-02-19 02:48:40.996577'); -INSERT INTO dvds.payment VALUES (18760, 66, 1, 2577, 4.99, '2007-02-19 03:04:29.996577'); -INSERT INTO dvds.payment VALUES (18761, 66, 1, 3334, 3.99, '2007-02-21 08:32:59.996577'); -INSERT INTO dvds.payment VALUES (18762, 66, 2, 3395, 6.99, '2007-02-21 13:47:45.996577'); -INSERT INTO dvds.payment VALUES (18763, 67, 1, 2064, 3.99, '2007-02-17 14:26:22.996577'); -INSERT INTO dvds.payment VALUES (18764, 67, 1, 2542, 3.99, '2007-02-19 00:37:05.996577'); -INSERT INTO dvds.payment VALUES (18765, 67, 2, 2810, 0.99, '2007-02-19 18:12:38.996577'); -INSERT INTO dvds.payment VALUES (18766, 67, 1, 3359, 4.99, '2007-02-21 10:36:44.996577'); -INSERT INTO dvds.payment VALUES (18767, 68, 2, 1828, 5.99, '2007-02-16 20:33:00.996577'); -INSERT INTO dvds.payment VALUES (18768, 68, 2, 1957, 8.99, '2007-02-17 07:19:24.996577'); -INSERT INTO dvds.payment VALUES (18769, 68, 2, 2633, 2.99, '2007-02-19 07:21:36.996577'); -INSERT INTO dvds.payment VALUES (18770, 68, 2, 2662, 4.99, '2007-02-19 09:22:08.996577'); -INSERT INTO dvds.payment VALUES (18771, 68, 1, 2686, 2.99, '2007-02-19 11:12:46.996577'); -INSERT INTO dvds.payment VALUES (18772, 69, 1, 1549, 2.99, '2007-02-16 00:25:41.996577'); -INSERT INTO dvds.payment VALUES (18773, 69, 1, 3358, 4.99, '2007-02-21 10:25:06.996577'); -INSERT INTO dvds.payment VALUES (18774, 70, 1, 2472, 4.99, '2007-02-18 19:01:06.996577'); -INSERT INTO dvds.payment VALUES (18775, 71, 2, 1873, 2.99, '2007-02-17 01:06:54.996577'); -INSERT INTO dvds.payment VALUES (18776, 71, 1, 2374, 4.99, '2007-02-18 13:12:32.996577'); -INSERT INTO dvds.payment VALUES (18777, 71, 2, 3345, 5.99, '2007-02-21 09:33:33.996577'); -INSERT INTO dvds.payment VALUES (18778, 72, 2, 2294, 4.99, '2007-02-18 06:15:00.996577'); -INSERT INTO dvds.payment VALUES (18779, 73, 1, 1669, 0.99, '2007-02-16 08:48:46.996577'); -INSERT INTO dvds.payment VALUES (18780, 73, 2, 2940, 4.99, '2007-02-20 03:48:27.996577'); -INSERT INTO dvds.payment VALUES (18781, 74, 1, 2498, 1.99, '2007-02-18 21:24:52.996577'); -INSERT INTO dvds.payment VALUES (18782, 74, 2, 2517, 0.99, '2007-02-18 22:39:52.996577'); -INSERT INTO dvds.payment VALUES (18783, 74, 1, 3020, 1.99, '2007-02-20 09:40:30.996577'); -INSERT INTO dvds.payment VALUES (18784, 74, 2, 3445, 7.99, '2007-02-21 19:08:54.996577'); -INSERT INTO dvds.payment VALUES (18785, 75, 1, 1920, 4.99, '2007-02-17 04:28:49.996577'); -INSERT INTO dvds.payment VALUES (18786, 75, 1, 2161, 7.99, '2007-02-17 22:08:16.996577'); -INSERT INTO dvds.payment VALUES (18787, 75, 2, 2738, 4.99, '2007-02-19 14:24:56.996577'); -INSERT INTO dvds.payment VALUES (18788, 75, 2, 3062, 6.99, '2007-02-20 12:18:26.996577'); -INSERT INTO dvds.payment VALUES (18789, 75, 1, 3210, 4.99, '2007-02-20 23:28:51.996577'); -INSERT INTO dvds.payment VALUES (18790, 76, 2, 1487, 0.99, '2007-02-15 19:56:08.996577'); -INSERT INTO dvds.payment VALUES (18791, 76, 1, 1791, 6.99, '2007-02-16 18:32:54.996577'); -INSERT INTO dvds.payment VALUES (18792, 76, 2, 2111, 0.99, '2007-02-17 18:15:47.996577'); -INSERT INTO dvds.payment VALUES (18793, 76, 2, 2397, 1.99, '2007-02-18 14:19:51.996577'); -INSERT INTO dvds.payment VALUES (18794, 76, 1, 2894, 0.99, '2007-02-20 00:51:08.996577'); -INSERT INTO dvds.payment VALUES (18795, 76, 2, 3416, 0.99, '2007-02-21 15:33:55.996577'); -INSERT INTO dvds.payment VALUES (18796, 77, 1, 1710, 4.99, '2007-02-16 12:39:50.996577'); -INSERT INTO dvds.payment VALUES (18797, 77, 1, 2354, 3.99, '2007-02-18 11:22:44.996577'); -INSERT INTO dvds.payment VALUES (18798, 77, 2, 2452, 8.99, '2007-02-18 17:57:47.996577'); -INSERT INTO dvds.payment VALUES (18799, 77, 1, 3151, 2.99, '2007-02-20 19:05:19.996577'); -INSERT INTO dvds.payment VALUES (18800, 77, 2, 3238, 0.99, '2007-02-21 01:16:47.996577'); -INSERT INTO dvds.payment VALUES (18801, 78, 1, 2207, 2.99, '2007-02-18 00:47:47.996577'); -INSERT INTO dvds.payment VALUES (18802, 78, 2, 2949, 6.99, '2007-02-20 04:34:19.996577'); -INSERT INTO dvds.payment VALUES (18803, 78, 2, 3248, 7.99, '2007-02-21 01:40:47.996577'); -INSERT INTO dvds.payment VALUES (18804, 79, 2, 3096, 4.99, '2007-02-20 14:46:22.996577'); -INSERT INTO dvds.payment VALUES (18805, 79, 2, 3178, 2.99, '2007-02-20 21:03:38.996577'); -INSERT INTO dvds.payment VALUES (18806, 80, 1, 2596, 2.99, '2007-02-19 04:16:52.996577'); -INSERT INTO dvds.payment VALUES (18807, 80, 2, 2805, 8.99, '2007-02-19 17:57:43.996577'); -INSERT INTO dvds.payment VALUES (18808, 80, 1, 3367, 3.99, '2007-02-21 11:36:47.996577'); -INSERT INTO dvds.payment VALUES (18809, 81, 1, 2714, 1.99, '2007-02-19 12:54:35.996577'); -INSERT INTO dvds.payment VALUES (18810, 81, 1, 2854, 5.99, '2007-02-19 21:40:14.996577'); -INSERT INTO dvds.payment VALUES (18811, 81, 1, 3229, 4.99, '2007-02-21 00:49:07.996577'); -INSERT INTO dvds.payment VALUES (18812, 82, 1, 1438, 0.99, '2007-02-15 17:07:17.996577'); -INSERT INTO dvds.payment VALUES (18813, 82, 2, 1570, 0.99, '2007-02-16 01:49:59.996577'); -INSERT INTO dvds.payment VALUES (18814, 82, 1, 2506, 8.99, '2007-02-18 21:58:19.996577'); -INSERT INTO dvds.payment VALUES (18815, 82, 1, 2819, 8.99, '2007-02-19 18:41:59.996577'); -INSERT INTO dvds.payment VALUES (18816, 82, 2, 3332, 0.99, '2007-02-21 08:23:38.996577'); -INSERT INTO dvds.payment VALUES (18817, 83, 1, 1354, 5.99, '2007-02-15 11:42:15.996577'); -INSERT INTO dvds.payment VALUES (18818, 83, 1, 1591, 5.99, '2007-02-16 03:41:03.996577'); -INSERT INTO dvds.payment VALUES (18819, 83, 2, 1617, 3.99, '2007-02-16 05:34:32.996577'); -INSERT INTO dvds.payment VALUES (18820, 83, 2, 3230, 4.99, '2007-02-21 00:51:42.996577'); -INSERT INTO dvds.payment VALUES (18821, 84, 2, 1195, 0.99, '2007-02-15 00:06:04.996577'); -INSERT INTO dvds.payment VALUES (18822, 84, 2, 1320, 4.99, '2007-02-15 09:10:39.996577'); -INSERT INTO dvds.payment VALUES (18823, 84, 2, 1815, 0.99, '2007-02-16 19:44:33.996577'); -INSERT INTO dvds.payment VALUES (18824, 84, 1, 2012, 5.99, '2007-02-17 10:25:41.996577'); -INSERT INTO dvds.payment VALUES (18825, 84, 2, 2042, 0.99, '2007-02-17 12:59:28.996577'); -INSERT INTO dvds.payment VALUES (18826, 84, 2, 2409, 0.99, '2007-02-18 15:21:59.996577'); -INSERT INTO dvds.payment VALUES (18827, 85, 1, 1685, 1.99, '2007-02-16 10:35:23.996577'); -INSERT INTO dvds.payment VALUES (18828, 85, 1, 2131, 5.99, '2007-02-17 19:30:51.996577'); -INSERT INTO dvds.payment VALUES (18829, 85, 2, 2794, 0.99, '2007-02-19 17:21:31.996577'); -INSERT INTO dvds.payment VALUES (18830, 85, 1, 3165, 4.99, '2007-02-20 19:57:43.996577'); -INSERT INTO dvds.payment VALUES (18831, 85, 1, 3307, 1.99, '2007-02-21 06:20:56.996577'); -INSERT INTO dvds.payment VALUES (18832, 85, 2, 3418, 3.99, '2007-02-21 15:35:04.996577'); -INSERT INTO dvds.payment VALUES (18833, 86, 2, 1640, 4.99, '2007-02-16 07:04:05.996577'); -INSERT INTO dvds.payment VALUES (18834, 86, 2, 1822, 0.99, '2007-02-16 20:12:11.996577'); -INSERT INTO dvds.payment VALUES (18835, 86, 2, 1924, 2.99, '2007-02-17 04:42:00.996577'); -INSERT INTO dvds.payment VALUES (18836, 86, 1, 2141, 4.99, '2007-02-17 20:10:00.996577'); -INSERT INTO dvds.payment VALUES (18837, 86, 1, 2518, 4.99, '2007-02-18 22:44:49.996577'); -INSERT INTO dvds.payment VALUES (18838, 86, 1, 3207, 0.99, '2007-02-20 23:11:42.996577'); -INSERT INTO dvds.payment VALUES (18839, 86, 2, 3270, 4.99, '2007-02-21 03:35:57.996577'); -INSERT INTO dvds.payment VALUES (18840, 87, 2, 1580, 4.99, '2007-02-16 02:40:51.996577'); -INSERT INTO dvds.payment VALUES (18841, 87, 1, 1904, 2.99, '2007-02-17 03:14:07.996577'); -INSERT INTO dvds.payment VALUES (18842, 87, 2, 2408, 2.99, '2007-02-18 15:19:10.996577'); -INSERT INTO dvds.payment VALUES (18843, 87, 1, 2516, 4.99, '2007-02-18 22:31:54.996577'); -INSERT INTO dvds.payment VALUES (18844, 87, 2, 3122, 9.99, '2007-02-20 16:54:23.996577'); -INSERT INTO dvds.payment VALUES (18845, 88, 1, 1433, 2.99, '2007-02-15 16:58:26.996577'); -INSERT INTO dvds.payment VALUES (18846, 88, 1, 2483, 7.99, '2007-02-18 19:50:49.996577'); -INSERT INTO dvds.payment VALUES (18847, 88, 1, 2878, 2.99, '2007-02-19 23:37:40.996577'); -INSERT INTO dvds.payment VALUES (18848, 89, 1, 1252, 8.99, '2007-02-15 04:33:44.996577'); -INSERT INTO dvds.payment VALUES (18849, 89, 2, 1407, 7.99, '2007-02-15 15:13:33.996577'); -INSERT INTO dvds.payment VALUES (18850, 89, 1, 1948, 4.99, '2007-02-17 06:35:19.996577'); -INSERT INTO dvds.payment VALUES (18851, 89, 1, 2523, 0.99, '2007-02-18 23:14:22.996577'); -INSERT INTO dvds.payment VALUES (18852, 89, 1, 2835, 7.99, '2007-02-19 20:12:37.996577'); -INSERT INTO dvds.payment VALUES (18853, 90, 2, 2033, 0.99, '2007-02-17 11:53:09.996577'); -INSERT INTO dvds.payment VALUES (18854, 90, 2, 2584, 6.99, '2007-02-19 03:31:02.996577'); -INSERT INTO dvds.payment VALUES (18855, 90, 2, 3132, 0.99, '2007-02-20 17:38:12.996577'); -INSERT INTO dvds.payment VALUES (18856, 91, 1, 1299, 4.99, '2007-02-15 08:03:16.996577'); -INSERT INTO dvds.payment VALUES (18857, 91, 1, 2457, 3.99, '2007-02-18 18:06:46.996577'); -INSERT INTO dvds.payment VALUES (18858, 91, 1, 2908, 0.99, '2007-02-20 01:45:18.996577'); -INSERT INTO dvds.payment VALUES (18859, 91, 2, 3384, 2.99, '2007-02-21 12:36:01.996577'); -INSERT INTO dvds.payment VALUES (18860, 92, 2, 2084, 4.99, '2007-02-17 15:45:45.996577'); -INSERT INTO dvds.payment VALUES (18861, 92, 1, 2521, 0.99, '2007-02-18 23:09:34.996577'); -INSERT INTO dvds.payment VALUES (18862, 92, 1, 2740, 8.99, '2007-02-19 14:27:30.996577'); -INSERT INTO dvds.payment VALUES (18863, 93, 2, 2256, 4.99, '2007-02-18 03:50:22.996577'); -INSERT INTO dvds.payment VALUES (18864, 93, 1, 3109, 0.99, '2007-02-20 16:02:21.996577'); -INSERT INTO dvds.payment VALUES (18865, 94, 2, 1213, 2.99, '2007-02-15 01:42:31.996577'); -INSERT INTO dvds.payment VALUES (18866, 94, 1, 1367, 4.99, '2007-02-15 12:53:43.996577'); -INSERT INTO dvds.payment VALUES (18867, 94, 2, 1734, 3.99, '2007-02-16 14:17:56.996577'); -INSERT INTO dvds.payment VALUES (18868, 94, 2, 2620, 4.99, '2007-02-19 06:34:55.996577'); -INSERT INTO dvds.payment VALUES (18869, 94, 1, 2816, 2.99, '2007-02-19 18:32:49.996577'); -INSERT INTO dvds.payment VALUES (18870, 95, 2, 1174, 2.99, '2007-02-14 22:41:17.996577'); -INSERT INTO dvds.payment VALUES (18871, 95, 2, 1261, 1.99, '2007-02-15 05:21:23.996577'); -INSERT INTO dvds.payment VALUES (18872, 95, 2, 3056, 2.99, '2007-02-20 11:49:24.996577'); -INSERT INTO dvds.payment VALUES (18873, 95, 2, 3426, 0.99, '2007-02-21 16:40:36.996577'); -INSERT INTO dvds.payment VALUES (18874, 96, 1, 1266, 3.99, '2007-02-15 05:40:05.996577'); -INSERT INTO dvds.payment VALUES (18875, 96, 2, 1413, 7.99, '2007-02-15 15:53:33.996577'); -INSERT INTO dvds.payment VALUES (18876, 96, 2, 1437, 0.99, '2007-02-15 17:05:30.996577'); -INSERT INTO dvds.payment VALUES (18877, 96, 1, 2372, 0.99, '2007-02-18 13:06:03.996577'); -INSERT INTO dvds.payment VALUES (18878, 96, 2, 2973, 5.99, '2007-02-20 06:27:53.996577'); -INSERT INTO dvds.payment VALUES (18879, 96, 1, 3308, 0.99, '2007-02-21 06:27:02.996577'); -INSERT INTO dvds.payment VALUES (18880, 96, 2, 3463, 0.99, '2007-02-21 20:28:26.996577'); -INSERT INTO dvds.payment VALUES (18881, 97, 2, 2083, 2.99, '2007-02-17 15:42:26.996577'); -INSERT INTO dvds.payment VALUES (18882, 97, 2, 2790, 4.99, '2007-02-19 17:18:11.996577'); -INSERT INTO dvds.payment VALUES (18883, 97, 1, 3459, 0.99, '2007-02-21 20:14:13.996577'); -INSERT INTO dvds.payment VALUES (18884, 98, 1, 1362, 3.99, '2007-02-15 12:21:58.996577'); -INSERT INTO dvds.payment VALUES (18885, 98, 2, 1590, 5.99, '2007-02-16 03:40:07.996577'); -INSERT INTO dvds.payment VALUES (18886, 98, 1, 2213, 4.99, '2007-02-18 01:05:13.996577'); -INSERT INTO dvds.payment VALUES (18887, 98, 1, 2445, 0.99, '2007-02-18 17:30:37.996577'); -INSERT INTO dvds.payment VALUES (18888, 98, 2, 2601, 4.99, '2007-02-19 04:38:10.996577'); -INSERT INTO dvds.payment VALUES (18889, 98, 2, 3399, 4.99, '2007-02-21 14:16:14.996577'); -INSERT INTO dvds.payment VALUES (18890, 99, 1, 1858, 4.99, '2007-02-16 23:41:37.996577'); -INSERT INTO dvds.payment VALUES (18891, 99, 1, 2368, 2.99, '2007-02-18 12:38:53.996577'); -INSERT INTO dvds.payment VALUES (18892, 100, 2, 1216, 4.99, '2007-02-15 01:52:14.996577'); -INSERT INTO dvds.payment VALUES (18893, 100, 1, 1340, 3.99, '2007-02-15 10:52:41.996577'); -INSERT INTO dvds.payment VALUES (18894, 100, 1, 1427, 2.99, '2007-02-15 16:45:54.996577'); -INSERT INTO dvds.payment VALUES (18895, 100, 2, 3468, 6.99, '2007-02-21 21:12:11.996577'); -INSERT INTO dvds.payment VALUES (18896, 102, 2, 1215, 2.99, '2007-02-15 01:49:26.996577'); -INSERT INTO dvds.payment VALUES (18897, 102, 2, 2419, 8.99, '2007-02-18 15:49:50.996577'); -INSERT INTO dvds.payment VALUES (18898, 103, 2, 1396, 4.99, '2007-02-15 14:51:04.996577'); -INSERT INTO dvds.payment VALUES (18899, 103, 1, 2118, 0.99, '2007-02-17 18:56:55.996577'); -INSERT INTO dvds.payment VALUES (18900, 103, 1, 2197, 0.99, '2007-02-18 00:18:53.996577'); -INSERT INTO dvds.payment VALUES (18901, 103, 1, 2724, 0.99, '2007-02-19 13:26:20.996577'); -INSERT INTO dvds.payment VALUES (18902, 104, 2, 1287, 3.99, '2007-02-15 07:10:04.996577'); -INSERT INTO dvds.payment VALUES (18903, 104, 1, 2107, 0.99, '2007-02-17 17:59:42.996577'); -INSERT INTO dvds.payment VALUES (18904, 104, 2, 2928, 0.99, '2007-02-20 03:12:11.996577'); -INSERT INTO dvds.payment VALUES (18905, 104, 2, 3273, 2.99, '2007-02-21 03:52:43.996577'); -INSERT INTO dvds.payment VALUES (18906, 105, 2, 1789, 3.99, '2007-02-16 18:17:44.996577'); -INSERT INTO dvds.payment VALUES (18907, 105, 2, 1991, 3.99, '2007-02-17 09:17:49.996577'); -INSERT INTO dvds.payment VALUES (18908, 105, 2, 2635, 3.99, '2007-02-19 07:37:11.996577'); -INSERT INTO dvds.payment VALUES (18909, 106, 1, 2295, 4.99, '2007-02-18 06:24:44.996577'); -INSERT INTO dvds.payment VALUES (18910, 106, 1, 3023, 4.99, '2007-02-20 09:46:37.996577'); -INSERT INTO dvds.payment VALUES (18911, 107, 2, 1243, 2.99, '2007-02-15 03:35:58.996577'); -INSERT INTO dvds.payment VALUES (18912, 107, 2, 2693, 6.99, '2007-02-19 11:40:13.996577'); -INSERT INTO dvds.payment VALUES (18913, 107, 2, 2860, 4.99, '2007-02-19 21:49:06.996577'); -INSERT INTO dvds.payment VALUES (18914, 107, 2, 2897, 3.99, '2007-02-20 01:02:49.996577'); -INSERT INTO dvds.payment VALUES (18915, 107, 1, 3033, 3.99, '2007-02-20 10:30:31.996577'); -INSERT INTO dvds.payment VALUES (18916, 107, 2, 3120, 0.99, '2007-02-20 16:47:55.996577'); -INSERT INTO dvds.payment VALUES (18917, 107, 2, 3174, 0.99, '2007-02-20 20:52:26.996577'); -INSERT INTO dvds.payment VALUES (18918, 108, 2, 1372, 4.99, '2007-02-15 13:14:14.996577'); -INSERT INTO dvds.payment VALUES (18919, 108, 1, 1425, 2.99, '2007-02-15 16:42:12.996577'); -INSERT INTO dvds.payment VALUES (18920, 108, 1, 2061, 8.99, '2007-02-17 14:15:26.996577'); -INSERT INTO dvds.payment VALUES (18921, 108, 1, 2210, 2.99, '2007-02-18 00:55:27.996577'); -INSERT INTO dvds.payment VALUES (18922, 108, 2, 3116, 4.99, '2007-02-20 16:33:21.996577'); -INSERT INTO dvds.payment VALUES (18923, 109, 2, 1581, 2.99, '2007-02-16 02:57:11.996577'); -INSERT INTO dvds.payment VALUES (18924, 109, 2, 1891, 3.99, '2007-02-17 02:45:10.996577'); -INSERT INTO dvds.payment VALUES (18925, 109, 2, 2198, 6.99, '2007-02-18 00:19:48.996577'); -INSERT INTO dvds.payment VALUES (18926, 109, 2, 2679, 5.99, '2007-02-19 10:40:56.996577'); -INSERT INTO dvds.payment VALUES (18927, 109, 2, 3076, 5.99, '2007-02-20 13:29:45.996577'); -INSERT INTO dvds.payment VALUES (18928, 110, 2, 1528, 8.99, '2007-02-15 23:01:18.996577'); -INSERT INTO dvds.payment VALUES (18929, 111, 1, 1593, 6.99, '2007-02-16 03:43:18.996577'); -INSERT INTO dvds.payment VALUES (18930, 111, 2, 1974, 2.99, '2007-02-17 07:58:31.996577'); -INSERT INTO dvds.payment VALUES (18931, 111, 2, 1999, 1.99, '2007-02-17 09:58:34.996577'); -INSERT INTO dvds.payment VALUES (18932, 111, 2, 2297, 4.99, '2007-02-18 06:46:07.996577'); -INSERT INTO dvds.payment VALUES (18933, 111, 2, 3087, 2.99, '2007-02-20 14:22:25.996577'); -INSERT INTO dvds.payment VALUES (18934, 111, 2, 3333, 2.99, '2007-02-21 08:30:02.996577'); -INSERT INTO dvds.payment VALUES (18935, 112, 1, 1835, 4.99, '2007-02-16 21:34:02.996577'); -INSERT INTO dvds.payment VALUES (18936, 112, 2, 1930, 2.99, '2007-02-17 05:19:12.996577'); -INSERT INTO dvds.payment VALUES (18937, 112, 1, 2193, 4.99, '2007-02-18 00:07:11.996577'); -INSERT INTO dvds.payment VALUES (18938, 112, 2, 3018, 2.99, '2007-02-20 09:39:01.996577'); -INSERT INTO dvds.payment VALUES (18939, 113, 2, 2077, 4.99, '2007-02-17 15:14:37.996577'); -INSERT INTO dvds.payment VALUES (18940, 113, 1, 2282, 2.99, '2007-02-18 05:16:49.996577'); -INSERT INTO dvds.payment VALUES (18941, 113, 1, 2783, 2.99, '2007-02-19 16:57:36.996577'); -INSERT INTO dvds.payment VALUES (18942, 113, 2, 3004, 0.99, '2007-02-20 08:33:02.996577'); -INSERT INTO dvds.payment VALUES (18943, 113, 1, 3124, 8.99, '2007-02-20 16:56:45.996577'); -INSERT INTO dvds.payment VALUES (18944, 113, 1, 3162, 6.99, '2007-02-20 19:49:41.996577'); -INSERT INTO dvds.payment VALUES (18945, 114, 1, 2059, 2.99, '2007-02-17 14:04:38.996577'); -INSERT INTO dvds.payment VALUES (18946, 114, 2, 2680, 7.99, '2007-02-19 10:42:03.996577'); -INSERT INTO dvds.payment VALUES (18947, 114, 1, 3094, 2.99, '2007-02-20 14:35:17.996577'); -INSERT INTO dvds.payment VALUES (18948, 114, 2, 3144, 5.99, '2007-02-20 18:42:46.996577'); -INSERT INTO dvds.payment VALUES (18949, 115, 2, 1361, 0.99, '2007-02-15 12:06:04.996577'); -INSERT INTO dvds.payment VALUES (18950, 115, 2, 1515, 2.99, '2007-02-15 21:36:16.996577'); -INSERT INTO dvds.payment VALUES (18951, 115, 1, 3289, 6.99, '2007-02-21 05:10:14.996577'); -INSERT INTO dvds.payment VALUES (18952, 116, 2, 1332, 0.99, '2007-02-15 10:04:27.996577'); -INSERT INTO dvds.payment VALUES (18953, 116, 2, 1533, 0.99, '2007-02-15 23:14:28.996577'); -INSERT INTO dvds.payment VALUES (18954, 116, 2, 1762, 4.99, '2007-02-16 16:18:45.996577'); -INSERT INTO dvds.payment VALUES (18955, 116, 2, 1913, 4.99, '2007-02-17 03:48:13.996577'); -INSERT INTO dvds.payment VALUES (18956, 116, 1, 2639, 4.99, '2007-02-19 07:52:28.996577'); -INSERT INTO dvds.payment VALUES (18957, 116, 1, 2861, 3.99, '2007-02-19 21:50:00.996577'); -INSERT INTO dvds.payment VALUES (18958, 117, 1, 1755, 2.99, '2007-02-16 15:47:10.996577'); -INSERT INTO dvds.payment VALUES (18959, 117, 2, 3218, 2.99, '2007-02-21 00:06:35.996577'); -INSERT INTO dvds.payment VALUES (18960, 118, 2, 1766, 4.99, '2007-02-16 16:28:03.996577'); -INSERT INTO dvds.payment VALUES (18961, 118, 2, 2217, 0.99, '2007-02-18 01:40:55.996577'); -INSERT INTO dvds.payment VALUES (18962, 118, 1, 3263, 4.99, '2007-02-21 02:44:18.996577'); -INSERT INTO dvds.payment VALUES (18963, 119, 1, 1179, 7.99, '2007-02-14 23:05:16.996577'); -INSERT INTO dvds.payment VALUES (18964, 119, 2, 2009, 2.99, '2007-02-17 10:16:57.996577'); -INSERT INTO dvds.payment VALUES (18965, 119, 2, 3388, 5.99, '2007-02-21 13:03:17.996577'); -INSERT INTO dvds.payment VALUES (18966, 120, 1, 1374, 3.99, '2007-02-15 13:18:20.996577'); -INSERT INTO dvds.payment VALUES (18967, 120, 1, 1820, 4.99, '2007-02-16 20:03:16.996577'); -INSERT INTO dvds.payment VALUES (18968, 120, 2, 1932, 2.99, '2007-02-17 05:23:07.996577'); -INSERT INTO dvds.payment VALUES (18969, 120, 1, 2169, 4.99, '2007-02-17 22:25:49.996577'); -INSERT INTO dvds.payment VALUES (18970, 120, 1, 2803, 9.99, '2007-02-19 17:46:53.996577'); -INSERT INTO dvds.payment VALUES (18971, 120, 1, 3133, 2.99, '2007-02-20 17:46:58.996577'); -INSERT INTO dvds.payment VALUES (18972, 121, 1, 1634, 2.99, '2007-02-16 06:44:31.996577'); -INSERT INTO dvds.payment VALUES (18973, 121, 1, 1833, 1.99, '2007-02-16 21:13:29.996577'); -INSERT INTO dvds.payment VALUES (18974, 122, 1, 1211, 0.99, '2007-02-15 01:29:46.996577'); -INSERT INTO dvds.payment VALUES (18975, 122, 2, 1442, 7.99, '2007-02-15 17:24:00.996577'); -INSERT INTO dvds.payment VALUES (18976, 122, 2, 2240, 3.99, '2007-02-18 02:56:53.996577'); -INSERT INTO dvds.payment VALUES (18977, 122, 1, 2253, 0.99, '2007-02-18 03:40:09.996577'); -INSERT INTO dvds.payment VALUES (18978, 122, 1, 2482, 4.99, '2007-02-18 19:39:10.996577'); -INSERT INTO dvds.payment VALUES (18979, 122, 2, 2595, 4.99, '2007-02-19 04:12:21.996577'); -INSERT INTO dvds.payment VALUES (18980, 122, 2, 2834, 1.99, '2007-02-19 20:10:12.996577'); -INSERT INTO dvds.payment VALUES (18981, 123, 2, 1490, 4.99, '2007-02-15 20:10:43.996577'); -INSERT INTO dvds.payment VALUES (18982, 123, 1, 1751, 0.99, '2007-02-16 15:28:40.996577'); -INSERT INTO dvds.payment VALUES (18983, 123, 2, 1775, 4.99, '2007-02-16 16:56:45.996577'); -INSERT INTO dvds.payment VALUES (18984, 123, 2, 1951, 0.99, '2007-02-17 06:59:01.996577'); -INSERT INTO dvds.payment VALUES (18985, 123, 1, 2594, 2.99, '2007-02-19 04:12:09.996577'); -INSERT INTO dvds.payment VALUES (18986, 124, 2, 2336, 1.99, '2007-02-18 09:28:31.996577'); -INSERT INTO dvds.payment VALUES (18987, 125, 1, 1481, 2.99, '2007-02-15 19:46:24.996577'); -INSERT INTO dvds.payment VALUES (18988, 125, 1, 2355, 3.99, '2007-02-18 11:25:32.996577'); -INSERT INTO dvds.payment VALUES (18989, 125, 1, 2826, 7.99, '2007-02-19 19:10:01.996577'); -INSERT INTO dvds.payment VALUES (18990, 125, 1, 3118, 4.99, '2007-02-20 16:34:23.996577'); -INSERT INTO dvds.payment VALUES (18991, 126, 1, 3450, 2.99, '2007-02-21 19:30:23.996577'); -INSERT INTO dvds.payment VALUES (18992, 127, 1, 1293, 4.99, '2007-02-15 07:34:50.996577'); -INSERT INTO dvds.payment VALUES (18993, 127, 2, 1803, 2.99, '2007-02-16 19:01:13.996577'); -INSERT INTO dvds.payment VALUES (18994, 127, 2, 2412, 3.99, '2007-02-18 15:27:24.996577'); -INSERT INTO dvds.payment VALUES (18995, 128, 2, 2519, 7.99, '2007-02-18 22:47:47.996577'); -INSERT INTO dvds.payment VALUES (18996, 128, 1, 2565, 0.99, '2007-02-19 02:12:29.996577'); -INSERT INTO dvds.payment VALUES (18997, 129, 2, 1732, 0.99, '2007-02-16 14:03:07.996577'); -INSERT INTO dvds.payment VALUES (18998, 129, 1, 2727, 3.99, '2007-02-19 13:31:05.996577'); -INSERT INTO dvds.payment VALUES (18999, 129, 2, 2768, 0.99, '2007-02-19 16:15:18.996577'); -INSERT INTO dvds.payment VALUES (19000, 129, 2, 2795, 4.99, '2007-02-19 17:27:19.996577'); -INSERT INTO dvds.payment VALUES (19001, 129, 1, 3183, 4.99, '2007-02-20 21:24:21.996577'); -INSERT INTO dvds.payment VALUES (19002, 129, 1, 3219, 3.99, '2007-02-21 00:11:52.996577'); -INSERT INTO dvds.payment VALUES (19003, 130, 1, 1630, 2.99, '2007-02-16 06:23:27.996577'); -INSERT INTO dvds.payment VALUES (19004, 130, 2, 1864, 2.99, '2007-02-17 00:08:13.996577'); -INSERT INTO dvds.payment VALUES (19005, 130, 2, 2163, 2.99, '2007-02-17 22:14:42.996577'); -INSERT INTO dvds.payment VALUES (19006, 130, 2, 2292, 2.99, '2007-02-18 06:06:14.996577'); -INSERT INTO dvds.payment VALUES (19007, 130, 1, 2535, 2.99, '2007-02-19 00:07:30.996577'); -INSERT INTO dvds.payment VALUES (19008, 130, 1, 2982, 6.99, '2007-02-20 07:06:55.996577'); -INSERT INTO dvds.payment VALUES (19009, 131, 1, 1646, 9.99, '2007-02-16 07:41:19.996577'); -INSERT INTO dvds.payment VALUES (19010, 131, 2, 1768, 4.99, '2007-02-16 16:30:32.996577'); -INSERT INTO dvds.payment VALUES (19011, 132, 1, 1843, 0.99, '2007-02-16 22:22:08.996577'); -INSERT INTO dvds.payment VALUES (19012, 132, 1, 2208, 4.99, '2007-02-18 00:50:33.996577'); -INSERT INTO dvds.payment VALUES (19013, 132, 1, 2384, 0.99, '2007-02-18 13:47:15.996577'); -INSERT INTO dvds.payment VALUES (19014, 132, 2, 2608, 2.99, '2007-02-19 05:39:02.996577'); -INSERT INTO dvds.payment VALUES (19015, 132, 2, 2924, 4.99, '2007-02-20 02:48:40.996577'); -INSERT INTO dvds.payment VALUES (19016, 132, 1, 3121, 4.99, '2007-02-20 16:51:56.996577'); -INSERT INTO dvds.payment VALUES (19017, 133, 2, 1522, 3.99, '2007-02-15 22:46:05.996577'); -INSERT INTO dvds.payment VALUES (19018, 133, 2, 2665, 7.99, '2007-02-19 09:41:01.996577'); -INSERT INTO dvds.payment VALUES (19019, 133, 1, 3006, 0.99, '2007-02-20 08:38:55.996577'); -INSERT INTO dvds.payment VALUES (19020, 133, 2, 3365, 0.99, '2007-02-21 11:24:14.996577'); -INSERT INTO dvds.payment VALUES (19021, 134, 1, 1618, 9.99, '2007-02-16 05:37:04.996577'); -INSERT INTO dvds.payment VALUES (19022, 134, 2, 1784, 0.99, '2007-02-16 17:53:58.996577'); -INSERT INTO dvds.payment VALUES (19023, 134, 2, 1881, 0.99, '2007-02-17 01:38:22.996577'); -INSERT INTO dvds.payment VALUES (19024, 134, 1, 3267, 5.99, '2007-02-21 03:23:47.996577'); -INSERT INTO dvds.payment VALUES (19025, 135, 2, 1272, 0.99, '2007-02-15 06:11:24.996577'); -INSERT INTO dvds.payment VALUES (19026, 135, 2, 1671, 1.99, '2007-02-16 08:58:48.996577'); -INSERT INTO dvds.payment VALUES (19027, 135, 2, 2941, 2.99, '2007-02-20 03:50:44.996577'); -INSERT INTO dvds.payment VALUES (19028, 136, 2, 2104, 2.99, '2007-02-17 17:42:56.996577'); -INSERT INTO dvds.payment VALUES (19029, 137, 1, 2469, 6.99, '2007-02-18 18:52:49.996577'); -INSERT INTO dvds.payment VALUES (19030, 137, 1, 2785, 2.99, '2007-02-19 17:12:23.996577'); -INSERT INTO dvds.payment VALUES (19031, 137, 2, 3058, 3.99, '2007-02-20 11:57:01.996577'); -INSERT INTO dvds.payment VALUES (19032, 137, 1, 3436, 5.99, '2007-02-21 17:44:35.996577'); -INSERT INTO dvds.payment VALUES (19033, 138, 2, 1316, 0.99, '2007-02-15 08:54:49.996577'); -INSERT INTO dvds.payment VALUES (19034, 138, 2, 2038, 0.99, '2007-02-17 12:29:17.996577'); -INSERT INTO dvds.payment VALUES (19035, 138, 1, 2731, 7.99, '2007-02-19 13:43:21.996577'); -INSERT INTO dvds.payment VALUES (19036, 139, 2, 1169, 2.99, '2007-02-14 22:11:22.996577'); -INSERT INTO dvds.payment VALUES (19037, 139, 1, 1736, 2.99, '2007-02-16 14:20:58.996577'); -INSERT INTO dvds.payment VALUES (19038, 139, 1, 2659, 0.99, '2007-02-19 09:16:08.996577'); -INSERT INTO dvds.payment VALUES (19039, 139, 2, 2718, 7.99, '2007-02-19 13:18:08.996577'); -INSERT INTO dvds.payment VALUES (19040, 140, 1, 1586, 4.99, '2007-02-16 03:19:44.996577'); -INSERT INTO dvds.payment VALUES (19041, 140, 1, 1687, 2.99, '2007-02-16 10:37:46.996577'); -INSERT INTO dvds.payment VALUES (19042, 140, 2, 2332, 6.99, '2007-02-18 09:22:17.996577'); -INSERT INTO dvds.payment VALUES (19043, 140, 2, 3171, 0.99, '2007-02-20 20:44:13.996577'); -INSERT INTO dvds.payment VALUES (19044, 141, 2, 1242, 7.99, '2007-02-15 03:33:33.996577'); -INSERT INTO dvds.payment VALUES (19045, 141, 2, 2895, 7.99, '2007-02-20 00:54:57.996577'); -INSERT INTO dvds.payment VALUES (19046, 141, 1, 3434, 4.99, '2007-02-21 17:36:54.996577'); -INSERT INTO dvds.payment VALUES (19047, 142, 1, 1268, 1.99, '2007-02-15 05:57:56.996577'); -INSERT INTO dvds.payment VALUES (19048, 142, 1, 3214, 2.99, '2007-02-20 23:36:52.996577'); -INSERT INTO dvds.payment VALUES (19049, 143, 2, 1898, 1.99, '2007-02-17 02:56:37.996577'); -INSERT INTO dvds.payment VALUES (19050, 143, 1, 1942, 4.99, '2007-02-17 06:12:05.996577'); -INSERT INTO dvds.payment VALUES (19051, 143, 2, 2251, 3.99, '2007-02-18 03:33:34.996577'); -INSERT INTO dvds.payment VALUES (19052, 143, 1, 2574, 0.99, '2007-02-19 02:52:18.996577'); -INSERT INTO dvds.payment VALUES (19053, 143, 1, 2588, 4.99, '2007-02-19 03:48:57.996577'); -INSERT INTO dvds.payment VALUES (19054, 144, 1, 1814, 5.99, '2007-02-16 19:43:48.996577'); -INSERT INTO dvds.payment VALUES (19055, 144, 1, 1943, 0.99, '2007-02-17 06:17:43.996577'); -INSERT INTO dvds.payment VALUES (19056, 144, 1, 2756, 4.99, '2007-02-19 15:26:08.996577'); -INSERT INTO dvds.payment VALUES (19057, 144, 2, 3019, 4.99, '2007-02-20 09:40:18.996577'); -INSERT INTO dvds.payment VALUES (19058, 144, 1, 3145, 2.99, '2007-02-20 18:49:43.996577'); -INSERT INTO dvds.payment VALUES (19059, 144, 1, 3321, 2.99, '2007-02-21 07:01:52.996577'); -INSERT INTO dvds.payment VALUES (19060, 145, 2, 2271, 4.99, '2007-02-18 04:58:18.996577'); -INSERT INTO dvds.payment VALUES (19061, 145, 2, 2614, 0.99, '2007-02-19 05:56:37.996577'); -INSERT INTO dvds.payment VALUES (19062, 146, 2, 1209, 7.99, '2007-02-15 00:59:38.996577'); -INSERT INTO dvds.payment VALUES (19063, 146, 2, 1724, 1.99, '2007-02-16 13:44:09.996577'); -INSERT INTO dvds.payment VALUES (19064, 146, 2, 2099, 2.99, '2007-02-17 17:15:52.996577'); -INSERT INTO dvds.payment VALUES (19065, 146, 1, 2242, 3.99, '2007-02-18 03:00:54.996577'); -INSERT INTO dvds.payment VALUES (19066, 146, 1, 2342, 2.99, '2007-02-18 10:11:06.996577'); -INSERT INTO dvds.payment VALUES (19067, 146, 1, 2800, 0.99, '2007-02-19 17:44:22.996577'); -INSERT INTO dvds.payment VALUES (19068, 146, 1, 3131, 4.99, '2007-02-20 17:36:26.996577'); -INSERT INTO dvds.payment VALUES (19069, 147, 1, 2171, 0.99, '2007-02-17 22:34:30.996577'); -INSERT INTO dvds.payment VALUES (19070, 147, 1, 2456, 6.99, '2007-02-18 18:05:16.996577'); -INSERT INTO dvds.payment VALUES (19071, 147, 2, 2859, 2.99, '2007-02-19 21:47:08.996577'); -INSERT INTO dvds.payment VALUES (19072, 147, 2, 3011, 5.99, '2007-02-20 09:07:36.996577'); -INSERT INTO dvds.payment VALUES (19073, 148, 1, 1501, 1.99, '2007-02-15 20:31:01.996577'); -INSERT INTO dvds.payment VALUES (19074, 148, 2, 1517, 6.99, '2007-02-15 21:48:52.996577'); -INSERT INTO dvds.payment VALUES (19075, 148, 2, 2751, 3.99, '2007-02-19 15:07:49.996577'); -INSERT INTO dvds.payment VALUES (19076, 148, 2, 2843, 3.99, '2007-02-19 21:05:05.996577'); -INSERT INTO dvds.payment VALUES (19077, 148, 2, 2847, 5.99, '2007-02-19 21:22:27.996577'); -INSERT INTO dvds.payment VALUES (19078, 149, 2, 1521, 2.99, '2007-02-15 22:27:19.996577'); -INSERT INTO dvds.payment VALUES (19079, 149, 1, 1800, 2.99, '2007-02-16 18:47:12.996577'); -INSERT INTO dvds.payment VALUES (19080, 149, 2, 1996, 6.99, '2007-02-17 09:46:11.996577'); -INSERT INTO dvds.payment VALUES (19081, 149, 2, 2194, 4.99, '2007-02-18 00:10:03.996577'); -INSERT INTO dvds.payment VALUES (19082, 149, 1, 2305, 5.99, '2007-02-18 06:59:44.996577'); -INSERT INTO dvds.payment VALUES (19083, 149, 2, 2383, 7.99, '2007-02-18 13:46:25.996577'); -INSERT INTO dvds.payment VALUES (19084, 149, 1, 2752, 0.99, '2007-02-19 15:12:44.996577'); -INSERT INTO dvds.payment VALUES (19085, 150, 2, 3187, 1.99, '2007-02-20 21:34:33.996577'); -INSERT INTO dvds.payment VALUES (19086, 150, 1, 3456, 5.99, '2007-02-21 19:48:13.996577'); -INSERT INTO dvds.payment VALUES (19087, 151, 2, 2474, 2.99, '2007-02-18 19:20:00.996577'); -INSERT INTO dvds.payment VALUES (19088, 151, 2, 2947, 2.99, '2007-02-20 04:28:47.996577'); -INSERT INTO dvds.payment VALUES (19089, 151, 1, 3017, 3.99, '2007-02-20 09:37:22.996577'); -INSERT INTO dvds.payment VALUES (19090, 151, 2, 3089, 0.99, '2007-02-20 14:25:27.996577'); -INSERT INTO dvds.payment VALUES (19091, 151, 2, 3390, 2.99, '2007-02-21 13:39:16.996577'); -INSERT INTO dvds.payment VALUES (19092, 152, 1, 2882, 4.99, '2007-02-19 23:54:52.996577'); -INSERT INTO dvds.payment VALUES (19093, 153, 1, 2224, 0.99, '2007-02-18 02:02:24.996577'); -INSERT INTO dvds.payment VALUES (19094, 153, 1, 2649, 0.99, '2007-02-19 08:48:35.996577'); -INSERT INTO dvds.payment VALUES (19095, 153, 1, 2893, 4.99, '2007-02-20 00:50:34.996577'); -INSERT INTO dvds.payment VALUES (19096, 153, 1, 2945, 5.99, '2007-02-20 04:17:53.996577'); -INSERT INTO dvds.payment VALUES (19097, 154, 1, 1963, 0.99, '2007-02-17 07:37:57.996577'); -INSERT INTO dvds.payment VALUES (19098, 154, 1, 2886, 4.99, '2007-02-20 00:07:05.996577'); -INSERT INTO dvds.payment VALUES (19099, 154, 1, 2985, 2.99, '2007-02-20 07:13:34.996577'); -INSERT INTO dvds.payment VALUES (19100, 155, 2, 1519, 1.99, '2007-02-15 22:23:53.996577'); -INSERT INTO dvds.payment VALUES (19101, 155, 1, 1554, 7.99, '2007-02-16 00:45:13.996577'); -INSERT INTO dvds.payment VALUES (19102, 155, 1, 2028, 7.99, '2007-02-17 11:36:34.996577'); -INSERT INTO dvds.payment VALUES (19103, 155, 1, 2869, 4.99, '2007-02-19 22:37:51.996577'); -INSERT INTO dvds.payment VALUES (19104, 155, 2, 3405, 4.99, '2007-02-21 14:26:51.996577'); -INSERT INTO dvds.payment VALUES (19105, 156, 2, 2089, 9.99, '2007-02-17 16:13:35.996577'); -INSERT INTO dvds.payment VALUES (19106, 156, 2, 2221, 0.99, '2007-02-18 01:53:22.996577'); -INSERT INTO dvds.payment VALUES (19107, 156, 1, 2658, 4.99, '2007-02-19 09:12:08.996577'); -INSERT INTO dvds.payment VALUES (19108, 156, 1, 2782, 0.99, '2007-02-19 16:53:33.996577'); -INSERT INTO dvds.payment VALUES (19109, 157, 2, 2340, 0.99, '2007-02-18 09:59:22.996577'); -INSERT INTO dvds.payment VALUES (19110, 158, 1, 1380, 0.99, '2007-02-15 13:41:36.996577'); -INSERT INTO dvds.payment VALUES (19111, 158, 2, 1790, 4.99, '2007-02-16 18:27:06.996577'); -INSERT INTO dvds.payment VALUES (19112, 158, 2, 2035, 6.99, '2007-02-17 12:13:35.996577'); -INSERT INTO dvds.payment VALUES (19113, 158, 2, 3203, 8.99, '2007-02-20 23:03:22.996577'); -INSERT INTO dvds.payment VALUES (19114, 159, 1, 1695, 0.99, '2007-02-16 11:08:54.996577'); -INSERT INTO dvds.payment VALUES (19115, 159, 1, 2572, 0.99, '2007-02-19 02:49:52.996577'); -INSERT INTO dvds.payment VALUES (19116, 160, 2, 2314, 4.99, '2007-02-18 07:31:45.996577'); -INSERT INTO dvds.payment VALUES (19117, 160, 1, 2465, 2.99, '2007-02-18 18:35:28.996577'); -INSERT INTO dvds.payment VALUES (19118, 160, 2, 2873, 2.99, '2007-02-19 23:09:51.996577'); -INSERT INTO dvds.payment VALUES (19119, 161, 1, 1856, 2.99, '2007-02-16 23:30:26.996577'); -INSERT INTO dvds.payment VALUES (19120, 161, 1, 3075, 3.99, '2007-02-20 13:20:45.996577'); -INSERT INTO dvds.payment VALUES (19121, 162, 2, 1339, 4.99, '2007-02-15 10:50:22.996577'); -INSERT INTO dvds.payment VALUES (19122, 162, 1, 2366, 0.99, '2007-02-18 12:15:05.996577'); -INSERT INTO dvds.payment VALUES (19123, 162, 1, 2547, 4.99, '2007-02-19 01:12:43.996577'); -INSERT INTO dvds.payment VALUES (19124, 162, 1, 3040, 0.99, '2007-02-20 11:02:39.996577'); -INSERT INTO dvds.payment VALUES (19125, 162, 2, 3180, 0.99, '2007-02-20 21:17:10.996577'); -INSERT INTO dvds.payment VALUES (19126, 163, 2, 1265, 4.99, '2007-02-15 05:29:16.996577'); -INSERT INTO dvds.payment VALUES (19127, 163, 2, 2000, 2.99, '2007-02-17 10:00:56.996577'); -INSERT INTO dvds.payment VALUES (19128, 163, 2, 2110, 7.99, '2007-02-17 18:14:15.996577'); -INSERT INTO dvds.payment VALUES (19129, 163, 2, 2536, 5.99, '2007-02-19 00:10:00.996577'); -INSERT INTO dvds.payment VALUES (19130, 163, 1, 2994, 6.99, '2007-02-20 07:45:31.996577'); -INSERT INTO dvds.payment VALUES (19131, 163, 1, 3179, 0.99, '2007-02-20 21:06:25.996577'); -INSERT INTO dvds.payment VALUES (19132, 164, 2, 1713, 4.99, '2007-02-16 12:56:59.996577'); -INSERT INTO dvds.payment VALUES (19133, 164, 2, 2589, 2.99, '2007-02-19 03:49:53.996577'); -INSERT INTO dvds.payment VALUES (19134, 164, 1, 3082, 8.99, '2007-02-20 14:00:37.996577'); -INSERT INTO dvds.payment VALUES (19135, 165, 1, 2013, 3.99, '2007-02-17 10:31:27.996577'); -INSERT INTO dvds.payment VALUES (19136, 165, 2, 3195, 2.99, '2007-02-20 22:30:36.996577'); -INSERT INTO dvds.payment VALUES (19137, 166, 2, 1412, 2.99, '2007-02-15 15:38:14.996577'); -INSERT INTO dvds.payment VALUES (19138, 166, 1, 2211, 3.99, '2007-02-18 00:57:36.996577'); -INSERT INTO dvds.payment VALUES (19139, 166, 1, 2874, 5.99, '2007-02-19 23:10:52.996577'); -INSERT INTO dvds.payment VALUES (19140, 166, 1, 3085, 0.99, '2007-02-20 14:10:59.996577'); -INSERT INTO dvds.payment VALUES (19141, 167, 1, 1416, 3.99, '2007-02-15 16:13:23.996577'); -INSERT INTO dvds.payment VALUES (19142, 167, 1, 1509, 5.99, '2007-02-15 21:04:19.996577'); -INSERT INTO dvds.payment VALUES (19143, 167, 2, 2381, 5.99, '2007-02-18 13:28:56.996577'); -INSERT INTO dvds.payment VALUES (19144, 168, 2, 1222, 4.99, '2007-02-15 02:07:15.996577'); -INSERT INTO dvds.payment VALUES (19145, 169, 1, 2023, 4.99, '2007-02-17 11:21:24.996577'); -INSERT INTO dvds.payment VALUES (19146, 169, 1, 3261, 2.99, '2007-02-21 02:36:07.996577'); -INSERT INTO dvds.payment VALUES (19147, 170, 2, 2117, 0.99, '2007-02-17 18:52:26.996577'); -INSERT INTO dvds.payment VALUES (19148, 170, 2, 2413, 8.99, '2007-02-18 15:28:00.996577'); -INSERT INTO dvds.payment VALUES (19149, 171, 2, 1676, 0.99, '2007-02-16 09:34:35.996577'); -INSERT INTO dvds.payment VALUES (19150, 171, 2, 2004, 4.99, '2007-02-17 10:12:04.996577'); -INSERT INTO dvds.payment VALUES (19151, 171, 2, 2199, 5.99, '2007-02-18 00:26:22.996577'); -INSERT INTO dvds.payment VALUES (19152, 171, 1, 2497, 4.99, '2007-02-18 21:19:06.996577'); -INSERT INTO dvds.payment VALUES (19153, 171, 2, 2599, 5.99, '2007-02-19 04:34:33.996577'); -INSERT INTO dvds.payment VALUES (19154, 171, 2, 2788, 2.99, '2007-02-19 17:16:37.996577'); -INSERT INTO dvds.payment VALUES (19155, 171, 2, 3338, 6.99, '2007-02-21 08:55:57.996577'); -INSERT INTO dvds.payment VALUES (19156, 172, 2, 1507, 0.99, '2007-02-15 20:53:52.996577'); -INSERT INTO dvds.payment VALUES (19157, 172, 1, 2052, 0.99, '2007-02-17 13:43:09.996577'); -INSERT INTO dvds.payment VALUES (19158, 172, 2, 3032, 1.99, '2007-02-20 10:26:56.996577'); -INSERT INTO dvds.payment VALUES (19159, 173, 2, 1188, 2.99, '2007-02-14 23:32:33.996577'); -INSERT INTO dvds.payment VALUES (19160, 173, 2, 2435, 4.99, '2007-02-18 16:40:52.996577'); -INSERT INTO dvds.payment VALUES (19161, 173, 1, 2602, 2.99, '2007-02-19 04:38:34.996577'); -INSERT INTO dvds.payment VALUES (19162, 173, 2, 3224, 0.99, '2007-02-21 00:40:02.996577'); -INSERT INTO dvds.payment VALUES (19163, 173, 1, 3336, 4.99, '2007-02-21 08:42:53.996577'); -INSERT INTO dvds.payment VALUES (19164, 174, 2, 1566, 7.99, '2007-02-16 01:41:46.996577'); -INSERT INTO dvds.payment VALUES (19165, 174, 1, 1609, 0.99, '2007-02-16 05:03:25.996577'); -INSERT INTO dvds.payment VALUES (19166, 174, 1, 2326, 5.99, '2007-02-18 08:42:48.996577'); -INSERT INTO dvds.payment VALUES (19167, 174, 2, 3446, 1.99, '2007-02-21 19:14:17.996577'); -INSERT INTO dvds.payment VALUES (19168, 175, 2, 1495, 0.99, '2007-02-15 20:22:57.996577'); -INSERT INTO dvds.payment VALUES (19169, 175, 2, 3266, 4.99, '2007-02-21 03:17:33.996577'); -INSERT INTO dvds.payment VALUES (19170, 176, 1, 1291, 5.99, '2007-02-15 07:23:27.996577'); -INSERT INTO dvds.payment VALUES (19171, 176, 1, 1741, 7.99, '2007-02-16 15:00:03.996577'); -INSERT INTO dvds.payment VALUES (19172, 176, 1, 1836, 6.99, '2007-02-16 21:41:31.996577'); -INSERT INTO dvds.payment VALUES (19173, 176, 1, 2181, 8.99, '2007-02-17 23:16:57.996577'); -INSERT INTO dvds.payment VALUES (19174, 176, 1, 2218, 2.99, '2007-02-18 01:41:39.996577'); -INSERT INTO dvds.payment VALUES (19175, 176, 2, 2427, 2.99, '2007-02-18 16:13:26.996577'); -INSERT INTO dvds.payment VALUES (19176, 176, 2, 2503, 1.99, '2007-02-18 21:45:45.996577'); -INSERT INTO dvds.payment VALUES (19177, 176, 1, 2922, 4.99, '2007-02-20 02:42:13.996577'); -INSERT INTO dvds.payment VALUES (19178, 177, 1, 1393, 2.99, '2007-02-15 14:41:16.996577'); -INSERT INTO dvds.payment VALUES (19179, 177, 1, 1524, 2.99, '2007-02-15 22:54:18.996577'); -INSERT INTO dvds.payment VALUES (19180, 177, 2, 1621, 4.99, '2007-02-16 05:52:38.996577'); -INSERT INTO dvds.payment VALUES (19181, 177, 1, 1738, 0.99, '2007-02-16 14:35:53.996577'); -INSERT INTO dvds.payment VALUES (19182, 177, 2, 2467, 2.99, '2007-02-18 18:48:31.996577'); -INSERT INTO dvds.payment VALUES (19183, 178, 1, 1292, 6.99, '2007-02-15 07:32:18.996577'); -INSERT INTO dvds.payment VALUES (19184, 178, 2, 1458, 6.99, '2007-02-15 18:52:31.996577'); -INSERT INTO dvds.payment VALUES (19185, 178, 2, 1568, 2.99, '2007-02-16 01:42:27.996577'); -INSERT INTO dvds.payment VALUES (19186, 178, 2, 1745, 3.99, '2007-02-16 15:09:42.996577'); -INSERT INTO dvds.payment VALUES (19187, 178, 2, 2124, 1.99, '2007-02-17 19:17:40.996577'); -INSERT INTO dvds.payment VALUES (19188, 178, 1, 2293, 4.99, '2007-02-18 06:13:29.996577'); -INSERT INTO dvds.payment VALUES (19189, 178, 2, 2844, 6.99, '2007-02-19 21:08:38.996577'); -INSERT INTO dvds.payment VALUES (19190, 178, 1, 2898, 9.99, '2007-02-20 01:06:32.996577'); -INSERT INTO dvds.payment VALUES (19191, 179, 2, 1286, 7.99, '2007-02-15 07:09:39.996577'); -INSERT INTO dvds.payment VALUES (19192, 179, 1, 2613, 4.99, '2007-02-19 05:54:16.996577'); -INSERT INTO dvds.payment VALUES (19193, 180, 2, 2700, 2.99, '2007-02-19 12:00:18.996577'); -INSERT INTO dvds.payment VALUES (19194, 180, 1, 2798, 2.99, '2007-02-19 17:36:14.996577'); -INSERT INTO dvds.payment VALUES (19195, 181, 1, 1638, 2.99, '2007-02-16 07:01:02.996577'); -INSERT INTO dvds.payment VALUES (19196, 181, 1, 2645, 5.99, '2007-02-19 08:19:01.996577'); -INSERT INTO dvds.payment VALUES (19197, 181, 2, 3449, 5.99, '2007-02-21 19:29:53.996577'); -INSERT INTO dvds.payment VALUES (19198, 181, 2, 3469, 4.99, '2007-02-21 21:17:25.996577'); -INSERT INTO dvds.payment VALUES (19199, 182, 2, 1542, 3.99, '2007-02-15 23:48:31.996577'); -INSERT INTO dvds.payment VALUES (19200, 182, 1, 2049, 2.99, '2007-02-17 13:27:02.996577'); -INSERT INTO dvds.payment VALUES (19201, 182, 2, 2120, 5.99, '2007-02-17 19:05:16.996577'); -INSERT INTO dvds.payment VALUES (19202, 182, 1, 2234, 0.99, '2007-02-18 02:29:54.996577'); -INSERT INTO dvds.payment VALUES (19203, 183, 1, 1279, 0.99, '2007-02-15 06:42:23.996577'); -INSERT INTO dvds.payment VALUES (19204, 183, 2, 2188, 1.99, '2007-02-17 23:47:30.996577'); -INSERT INTO dvds.payment VALUES (19205, 183, 2, 2471, 5.99, '2007-02-18 18:59:26.996577'); -INSERT INTO dvds.payment VALUES (19206, 183, 1, 3381, 5.99, '2007-02-21 12:31:25.996577'); -INSERT INTO dvds.payment VALUES (19207, 184, 2, 1976, 2.99, '2007-02-17 08:06:34.996577'); -INSERT INTO dvds.payment VALUES (19208, 184, 1, 2312, 0.99, '2007-02-18 07:24:12.996577'); -INSERT INTO dvds.payment VALUES (19209, 185, 1, 2459, 4.99, '2007-02-18 18:12:34.996577'); -INSERT INTO dvds.payment VALUES (19210, 185, 1, 3314, 4.99, '2007-02-21 06:45:26.996577'); -INSERT INTO dvds.payment VALUES (19211, 185, 1, 3325, 4.99, '2007-02-21 07:20:10.996577'); -INSERT INTO dvds.payment VALUES (19212, 186, 1, 1192, 4.99, '2007-02-14 23:47:05.996577'); -INSERT INTO dvds.payment VALUES (19213, 186, 1, 1300, 2.99, '2007-02-15 08:04:45.996577'); -INSERT INTO dvds.payment VALUES (19214, 186, 1, 1663, 2.99, '2007-02-16 08:42:41.996577'); -INSERT INTO dvds.payment VALUES (19215, 186, 2, 2132, 4.99, '2007-02-17 19:33:32.996577'); -INSERT INTO dvds.payment VALUES (19216, 186, 2, 2875, 4.99, '2007-02-19 23:15:44.996577'); -INSERT INTO dvds.payment VALUES (19217, 186, 1, 3039, 4.99, '2007-02-20 11:00:56.996577'); -INSERT INTO dvds.payment VALUES (19218, 187, 2, 1323, 6.99, '2007-02-15 09:23:43.996577'); -INSERT INTO dvds.payment VALUES (19219, 187, 2, 1462, 4.99, '2007-02-15 19:06:06.996577'); -INSERT INTO dvds.payment VALUES (19220, 187, 2, 1592, 0.99, '2007-02-16 03:43:03.996577'); -INSERT INTO dvds.payment VALUES (19221, 187, 2, 2127, 0.99, '2007-02-17 19:23:14.996577'); -INSERT INTO dvds.payment VALUES (19222, 187, 2, 2533, 0.99, '2007-02-19 00:02:52.996577'); -INSERT INTO dvds.payment VALUES (19223, 187, 1, 2742, 5.99, '2007-02-19 14:34:13.996577'); -INSERT INTO dvds.payment VALUES (19224, 187, 1, 3402, 2.99, '2007-02-21 14:23:03.996577'); -INSERT INTO dvds.payment VALUES (19225, 188, 2, 1527, 2.99, '2007-02-15 23:00:06.996577'); -INSERT INTO dvds.payment VALUES (19226, 188, 2, 1927, 0.99, '2007-02-17 05:16:45.996577'); -INSERT INTO dvds.payment VALUES (19227, 188, 1, 2515, 4.99, '2007-02-18 22:25:57.996577'); -INSERT INTO dvds.payment VALUES (19228, 188, 2, 2733, 4.99, '2007-02-19 13:50:19.996577'); -INSERT INTO dvds.payment VALUES (19229, 189, 1, 1541, 0.99, '2007-02-15 23:44:25.996577'); -INSERT INTO dvds.payment VALUES (19230, 189, 1, 1834, 0.99, '2007-02-16 21:17:34.996577'); -INSERT INTO dvds.payment VALUES (19231, 189, 2, 2905, 1.99, '2007-02-20 01:24:42.996577'); -INSERT INTO dvds.payment VALUES (19232, 189, 1, 3108, 6.99, '2007-02-20 15:57:09.996577'); -INSERT INTO dvds.payment VALUES (19233, 189, 1, 3346, 2.99, '2007-02-21 09:35:19.996577'); -INSERT INTO dvds.payment VALUES (19234, 190, 1, 1319, 2.99, '2007-02-15 09:07:31.996577'); -INSERT INTO dvds.payment VALUES (19235, 190, 1, 1347, 2.99, '2007-02-15 11:12:09.996577'); -INSERT INTO dvds.payment VALUES (19236, 190, 1, 2057, 4.99, '2007-02-17 14:00:24.996577'); -INSERT INTO dvds.payment VALUES (19237, 190, 1, 2568, 3.99, '2007-02-19 02:37:29.996577'); -INSERT INTO dvds.payment VALUES (19238, 190, 1, 3386, 4.99, '2007-02-21 12:49:32.996577'); -INSERT INTO dvds.payment VALUES (19239, 191, 2, 1173, 2.99, '2007-02-14 22:23:12.996577'); -INSERT INTO dvds.payment VALUES (19240, 191, 1, 1278, 0.99, '2007-02-15 06:37:38.996577'); -INSERT INTO dvds.payment VALUES (19241, 191, 1, 1677, 2.99, '2007-02-16 09:35:37.996577'); -INSERT INTO dvds.payment VALUES (19242, 191, 2, 1870, 2.99, '2007-02-17 00:53:02.996577'); -INSERT INTO dvds.payment VALUES (19243, 191, 1, 2051, 4.99, '2007-02-17 13:38:42.996577'); -INSERT INTO dvds.payment VALUES (19244, 191, 2, 2555, 2.99, '2007-02-19 01:35:28.996577'); -INSERT INTO dvds.payment VALUES (19245, 192, 1, 2760, 3.99, '2007-02-19 15:44:59.996577'); -INSERT INTO dvds.payment VALUES (19246, 193, 1, 1325, 4.99, '2007-02-15 09:31:50.996577'); -INSERT INTO dvds.payment VALUES (19247, 193, 2, 2377, 6.99, '2007-02-18 13:24:49.996577'); -INSERT INTO dvds.payment VALUES (19248, 193, 2, 2841, 6.99, '2007-02-19 20:49:32.996577'); -INSERT INTO dvds.payment VALUES (19249, 193, 2, 2846, 4.99, '2007-02-19 21:20:40.996577'); -INSERT INTO dvds.payment VALUES (19250, 193, 2, 2880, 2.99, '2007-02-19 23:53:20.996577'); -INSERT INTO dvds.payment VALUES (19251, 193, 1, 3297, 8.99, '2007-02-21 05:36:45.996577'); -INSERT INTO dvds.payment VALUES (19252, 194, 1, 1430, 0.99, '2007-02-15 16:53:21.996577'); -INSERT INTO dvds.payment VALUES (19253, 194, 1, 2245, 7.99, '2007-02-18 03:21:25.996577'); -INSERT INTO dvds.payment VALUES (19254, 194, 1, 2347, 2.99, '2007-02-18 10:40:55.996577'); -INSERT INTO dvds.payment VALUES (19255, 194, 1, 2463, 3.99, '2007-02-18 18:30:09.996577'); -INSERT INTO dvds.payment VALUES (19256, 194, 1, 2807, 3.99, '2007-02-19 18:01:19.996577'); -INSERT INTO dvds.payment VALUES (19257, 196, 1, 1182, 5.99, '2007-02-14 23:13:47.996577'); -INSERT INTO dvds.payment VALUES (19258, 196, 1, 1348, 2.99, '2007-02-15 11:13:56.996577'); -INSERT INTO dvds.payment VALUES (19259, 196, 2, 1600, 0.99, '2007-02-16 04:32:38.996577'); -INSERT INTO dvds.payment VALUES (19260, 196, 1, 2681, 0.99, '2007-02-19 10:43:53.996577'); -INSERT INTO dvds.payment VALUES (19261, 196, 2, 2912, 4.99, '2007-02-20 02:01:11.996577'); -INSERT INTO dvds.payment VALUES (19262, 196, 1, 3104, 4.99, '2007-02-20 15:35:12.996577'); -INSERT INTO dvds.payment VALUES (19263, 196, 2, 3271, 5.99, '2007-02-21 03:44:36.996577'); -INSERT INTO dvds.payment VALUES (19264, 196, 2, 3342, 4.99, '2007-02-21 09:15:02.996577'); -INSERT INTO dvds.payment VALUES (19265, 197, 2, 1175, 2.99, '2007-02-14 22:43:41.996577'); -INSERT INTO dvds.payment VALUES (19266, 197, 1, 1363, 0.99, '2007-02-15 12:33:37.996577'); -INSERT INTO dvds.payment VALUES (19267, 197, 1, 1503, 2.99, '2007-02-15 20:35:35.996577'); -INSERT INTO dvds.payment VALUES (19268, 197, 2, 1605, 8.99, '2007-02-16 04:46:21.996577'); -INSERT INTO dvds.payment VALUES (19269, 197, 2, 1919, 4.99, '2007-02-17 04:09:18.996577'); -INSERT INTO dvds.payment VALUES (19270, 197, 1, 2090, 2.99, '2007-02-17 16:34:40.996577'); -INSERT INTO dvds.payment VALUES (19271, 197, 1, 2750, 4.99, '2007-02-19 15:05:50.996577'); -INSERT INTO dvds.payment VALUES (19272, 197, 2, 2781, 2.99, '2007-02-19 16:53:08.996577'); -INSERT INTO dvds.payment VALUES (19273, 198, 2, 2185, 0.99, '2007-02-17 23:40:48.996577'); -INSERT INTO dvds.payment VALUES (19274, 199, 1, 1406, 4.99, '2007-02-15 15:12:26.996577'); -INSERT INTO dvds.payment VALUES (19275, 199, 1, 1910, 2.99, '2007-02-17 03:39:53.996577'); -INSERT INTO dvds.payment VALUES (19276, 199, 1, 3299, 0.99, '2007-02-21 05:52:00.996577'); -INSERT INTO dvds.payment VALUES (19277, 200, 2, 1296, 1.99, '2007-02-15 07:52:25.996577'); -INSERT INTO dvds.payment VALUES (19278, 200, 2, 1309, 4.99, '2007-02-15 08:39:15.996577'); -INSERT INTO dvds.payment VALUES (19279, 200, 2, 1899, 6.99, '2007-02-17 02:57:41.996577'); -INSERT INTO dvds.payment VALUES (19280, 200, 1, 2227, 4.99, '2007-02-18 02:11:49.996577'); -INSERT INTO dvds.payment VALUES (19281, 200, 2, 2667, 3.99, '2007-02-19 09:57:12.996577'); -INSERT INTO dvds.payment VALUES (19282, 200, 2, 2717, 4.99, '2007-02-19 13:14:36.996577'); -INSERT INTO dvds.payment VALUES (19283, 200, 1, 3190, 3.99, '2007-02-20 21:55:41.996577'); -INSERT INTO dvds.payment VALUES (19284, 201, 1, 2047, 1.99, '2007-02-17 13:09:24.996577'); -INSERT INTO dvds.payment VALUES (19285, 201, 1, 2157, 3.99, '2007-02-17 21:59:18.996577'); -INSERT INTO dvds.payment VALUES (19286, 201, 2, 2359, 6.99, '2007-02-18 11:33:08.996577'); -INSERT INTO dvds.payment VALUES (19287, 201, 1, 3106, 4.99, '2007-02-20 15:46:32.996577'); -INSERT INTO dvds.payment VALUES (19288, 201, 1, 3364, 7.99, '2007-02-21 11:06:12.996577'); -INSERT INTO dvds.payment VALUES (19289, 209, 2, 1201, 4.99, '2007-02-15 00:34:54.996577'); -INSERT INTO dvds.payment VALUES (19290, 209, 1, 1657, 4.99, '2007-02-16 08:35:15.996577'); -INSERT INTO dvds.payment VALUES (19291, 209, 1, 2650, 4.99, '2007-02-19 08:50:11.996577'); -INSERT INTO dvds.payment VALUES (19292, 209, 1, 2796, 4.99, '2007-02-19 17:29:03.996577'); -INSERT INTO dvds.payment VALUES (19293, 210, 2, 1177, 2.99, '2007-02-14 23:01:30.996577'); -INSERT INTO dvds.payment VALUES (19294, 210, 2, 2856, 0.99, '2007-02-19 21:41:30.996577'); -INSERT INTO dvds.payment VALUES (19295, 211, 2, 2812, 8.99, '2007-02-19 18:26:42.996577'); -INSERT INTO dvds.payment VALUES (19296, 211, 2, 3437, 6.99, '2007-02-21 17:48:43.996577'); -INSERT INTO dvds.payment VALUES (19297, 212, 1, 1356, 0.99, '2007-02-15 11:45:27.996577'); -INSERT INTO dvds.payment VALUES (19298, 212, 2, 1379, 0.99, '2007-02-15 13:33:36.996577'); -INSERT INTO dvds.payment VALUES (19299, 212, 1, 1637, 2.99, '2007-02-16 06:58:24.996577'); -INSERT INTO dvds.payment VALUES (19300, 212, 2, 2739, 9.99, '2007-02-19 14:27:04.996577'); -INSERT INTO dvds.payment VALUES (19301, 213, 1, 1489, 0.99, '2007-02-15 20:10:04.996577'); -INSERT INTO dvds.payment VALUES (19302, 213, 2, 1936, 4.99, '2007-02-17 05:44:07.996577'); -INSERT INTO dvds.payment VALUES (19303, 213, 1, 2322, 5.99, '2007-02-18 08:12:47.996577'); -INSERT INTO dvds.payment VALUES (19304, 213, 1, 2509, 0.99, '2007-02-18 22:12:34.996577'); -INSERT INTO dvds.payment VALUES (19305, 213, 2, 2569, 6.99, '2007-02-19 02:47:30.996577'); -INSERT INTO dvds.payment VALUES (19306, 213, 1, 2889, 4.99, '2007-02-20 00:22:34.996577'); -INSERT INTO dvds.payment VALUES (19307, 213, 2, 2946, 4.99, '2007-02-20 04:19:06.996577'); -INSERT INTO dvds.payment VALUES (19308, 213, 1, 3252, 2.99, '2007-02-21 01:53:52.996577'); -INSERT INTO dvds.payment VALUES (19309, 213, 1, 3313, 2.99, '2007-02-21 06:39:44.996577'); -INSERT INTO dvds.payment VALUES (19310, 214, 2, 1275, 4.99, '2007-02-15 06:24:09.996577'); -INSERT INTO dvds.payment VALUES (19311, 214, 2, 2085, 2.99, '2007-02-17 15:59:22.996577'); -INSERT INTO dvds.payment VALUES (19312, 214, 2, 2868, 2.99, '2007-02-19 22:37:24.996577'); -INSERT INTO dvds.payment VALUES (19313, 215, 2, 1376, 4.99, '2007-02-15 13:27:32.996577'); -INSERT INTO dvds.payment VALUES (19314, 215, 2, 1599, 4.99, '2007-02-16 04:31:59.996577'); -INSERT INTO dvds.payment VALUES (19315, 215, 2, 1845, 4.99, '2007-02-16 22:24:37.996577'); -INSERT INTO dvds.payment VALUES (19316, 215, 2, 2006, 2.99, '2007-02-17 10:15:29.996577'); -INSERT INTO dvds.payment VALUES (19317, 215, 2, 2918, 2.99, '2007-02-20 02:37:30.996577'); -INSERT INTO dvds.payment VALUES (19318, 215, 1, 3143, 2.99, '2007-02-20 18:30:18.996577'); -INSERT INTO dvds.payment VALUES (19319, 216, 2, 1461, 6.99, '2007-02-15 19:00:34.996577'); -INSERT INTO dvds.payment VALUES (19320, 216, 1, 1664, 0.99, '2007-02-16 08:43:46.996577'); -INSERT INTO dvds.payment VALUES (19321, 216, 1, 1672, 3.99, '2007-02-16 09:06:00.996577'); -INSERT INTO dvds.payment VALUES (19322, 216, 2, 2351, 0.99, '2007-02-18 10:56:23.996577'); -INSERT INTO dvds.payment VALUES (19323, 216, 1, 3432, 2.99, '2007-02-21 17:30:29.996577'); -INSERT INTO dvds.payment VALUES (19324, 217, 1, 1322, 2.99, '2007-02-15 09:23:35.996577'); -INSERT INTO dvds.payment VALUES (19325, 217, 1, 2076, 6.99, '2007-02-17 15:12:13.996577'); -INSERT INTO dvds.payment VALUES (19326, 217, 1, 2842, 4.99, '2007-02-19 21:02:46.996577'); -INSERT INTO dvds.payment VALUES (19327, 218, 1, 1459, 2.99, '2007-02-15 18:54:19.996577'); -INSERT INTO dvds.payment VALUES (19328, 218, 1, 2262, 0.99, '2007-02-18 04:18:12.996577'); -INSERT INTO dvds.payment VALUES (19329, 218, 1, 2267, 0.99, '2007-02-18 04:38:49.996577'); -INSERT INTO dvds.payment VALUES (19330, 219, 2, 2417, 3.99, '2007-02-18 15:40:27.996577'); -INSERT INTO dvds.payment VALUES (19331, 219, 2, 2580, 0.99, '2007-02-19 03:12:56.996577'); -INSERT INTO dvds.payment VALUES (19332, 220, 1, 1832, 0.99, '2007-02-16 21:03:46.996577'); -INSERT INTO dvds.payment VALUES (19333, 221, 1, 1369, 0.99, '2007-02-15 12:57:40.996577'); -INSERT INTO dvds.payment VALUES (19334, 221, 1, 2331, 2.99, '2007-02-18 09:18:35.996577'); -INSERT INTO dvds.payment VALUES (19335, 221, 2, 2473, 2.99, '2007-02-18 19:11:11.996577'); -INSERT INTO dvds.payment VALUES (19336, 221, 1, 2660, 10.99, '2007-02-19 09:18:28.996577'); -INSERT INTO dvds.payment VALUES (19337, 221, 1, 3200, 5.99, '2007-02-20 22:51:13.996577'); -INSERT INTO dvds.payment VALUES (19338, 222, 1, 1368, 8.99, '2007-02-15 12:56:13.996577'); -INSERT INTO dvds.payment VALUES (19339, 222, 2, 2603, 6.99, '2007-02-19 04:49:51.996577'); -INSERT INTO dvds.payment VALUES (19340, 223, 2, 1839, 5.99, '2007-02-16 21:50:48.996577'); -INSERT INTO dvds.payment VALUES (19341, 223, 1, 2334, 4.99, '2007-02-18 09:24:50.996577'); -INSERT INTO dvds.payment VALUES (19342, 224, 1, 1424, 7.99, '2007-02-15 16:36:40.996577'); -INSERT INTO dvds.payment VALUES (19343, 224, 1, 2277, 2.99, '2007-02-18 05:03:29.996577'); -INSERT INTO dvds.payment VALUES (19344, 224, 2, 3282, 4.99, '2007-02-21 04:47:08.996577'); -INSERT INTO dvds.payment VALUES (19345, 225, 2, 2226, 7.99, '2007-02-18 02:08:22.996577'); -INSERT INTO dvds.payment VALUES (19346, 226, 2, 3414, 2.99, '2007-02-21 15:27:16.996577'); -INSERT INTO dvds.payment VALUES (19347, 226, 1, 3466, 4.99, '2007-02-21 20:41:59.996577'); -INSERT INTO dvds.payment VALUES (19348, 227, 1, 1679, 2.99, '2007-02-16 09:39:27.996577'); -INSERT INTO dvds.payment VALUES (19349, 227, 2, 2155, 1.99, '2007-02-17 21:35:55.996577'); -INSERT INTO dvds.payment VALUES (19350, 227, 1, 2164, 6.99, '2007-02-17 22:14:47.996577'); -INSERT INTO dvds.payment VALUES (19351, 227, 2, 3065, 0.99, '2007-02-20 12:22:19.996577'); -INSERT INTO dvds.payment VALUES (19352, 228, 2, 2284, 3.99, '2007-02-18 05:28:17.996577'); -INSERT INTO dvds.payment VALUES (19353, 228, 2, 2863, 2.99, '2007-02-19 22:27:04.996577'); -INSERT INTO dvds.payment VALUES (19354, 228, 2, 2934, 2.99, '2007-02-20 03:34:19.996577'); -INSERT INTO dvds.payment VALUES (19355, 228, 2, 3433, 3.99, '2007-02-21 17:35:45.996577'); -INSERT INTO dvds.payment VALUES (19356, 229, 1, 2200, 4.99, '2007-02-18 00:27:42.996577'); -INSERT INTO dvds.payment VALUES (19357, 229, 1, 3208, 0.99, '2007-02-20 23:18:29.996577'); -INSERT INTO dvds.payment VALUES (19358, 229, 1, 3277, 7.99, '2007-02-21 04:05:03.996577'); -INSERT INTO dvds.payment VALUES (19359, 229, 2, 3280, 0.99, '2007-02-21 04:36:38.996577'); -INSERT INTO dvds.payment VALUES (19360, 230, 2, 1468, 3.99, '2007-02-15 19:16:48.996577'); -INSERT INTO dvds.payment VALUES (19361, 230, 1, 1744, 4.99, '2007-02-16 15:08:24.996577'); -INSERT INTO dvds.payment VALUES (19362, 230, 2, 1793, 0.99, '2007-02-16 18:35:53.996577'); -INSERT INTO dvds.payment VALUES (19363, 230, 2, 2450, 8.99, '2007-02-18 17:54:13.996577'); -INSERT INTO dvds.payment VALUES (19364, 230, 2, 2675, 0.99, '2007-02-19 10:20:41.996577'); -INSERT INTO dvds.payment VALUES (19365, 230, 1, 2777, 0.99, '2007-02-19 16:44:52.996577'); -INSERT INTO dvds.payment VALUES (19366, 231, 2, 2423, 0.99, '2007-02-18 16:00:34.996577'); -INSERT INTO dvds.payment VALUES (19367, 232, 2, 1619, 0.99, '2007-02-16 05:42:39.996577'); -INSERT INTO dvds.payment VALUES (19368, 232, 1, 2833, 8.99, '2007-02-19 20:03:20.996577'); -INSERT INTO dvds.payment VALUES (19369, 233, 2, 1992, 2.99, '2007-02-17 09:27:19.996577'); -INSERT INTO dvds.payment VALUES (19370, 233, 2, 2244, 2.99, '2007-02-18 03:14:59.996577'); -INSERT INTO dvds.payment VALUES (19371, 233, 1, 2424, 2.99, '2007-02-18 16:03:34.996577'); -INSERT INTO dvds.payment VALUES (19372, 233, 2, 2443, 4.99, '2007-02-18 17:20:56.996577'); -INSERT INTO dvds.payment VALUES (19373, 234, 2, 1245, 3.99, '2007-02-15 03:37:27.996577'); -INSERT INTO dvds.payment VALUES (19374, 234, 2, 1645, 0.99, '2007-02-16 07:38:32.996577'); -INSERT INTO dvds.payment VALUES (19375, 234, 1, 1674, 2.99, '2007-02-16 09:25:26.996577'); -INSERT INTO dvds.payment VALUES (19376, 234, 2, 1993, 5.99, '2007-02-17 09:27:50.996577'); -INSERT INTO dvds.payment VALUES (19377, 234, 1, 2005, 4.99, '2007-02-17 10:13:20.996577'); -INSERT INTO dvds.payment VALUES (19378, 234, 2, 2511, 5.99, '2007-02-18 22:13:56.996577'); -INSERT INTO dvds.payment VALUES (19379, 234, 2, 3185, 6.99, '2007-02-20 21:26:27.996577'); -INSERT INTO dvds.payment VALUES (19380, 234, 2, 3199, 4.99, '2007-02-20 22:41:06.996577'); -INSERT INTO dvds.payment VALUES (19381, 235, 1, 1493, 4.99, '2007-02-15 20:18:58.996577'); -INSERT INTO dvds.payment VALUES (19382, 235, 2, 1811, 0.99, '2007-02-16 19:34:46.996577'); -INSERT INTO dvds.payment VALUES (19383, 236, 1, 1262, 0.99, '2007-02-15 05:23:19.996577'); -INSERT INTO dvds.payment VALUES (19384, 236, 2, 1308, 5.99, '2007-02-15 08:36:14.996577'); -INSERT INTO dvds.payment VALUES (19385, 236, 2, 2139, 8.99, '2007-02-17 19:58:00.996577'); -INSERT INTO dvds.payment VALUES (19386, 236, 2, 2311, 6.99, '2007-02-18 07:19:55.996577'); -INSERT INTO dvds.payment VALUES (19387, 236, 1, 2630, 2.99, '2007-02-19 07:15:47.996577'); -INSERT INTO dvds.payment VALUES (19388, 236, 2, 2840, 3.99, '2007-02-19 20:46:10.996577'); -INSERT INTO dvds.payment VALUES (19389, 236, 1, 3353, 4.99, '2007-02-21 09:57:49.996577'); -INSERT INTO dvds.payment VALUES (19390, 236, 2, 3460, 2.99, '2007-02-21 20:15:22.996577'); -INSERT INTO dvds.payment VALUES (19391, 237, 1, 1500, 0.99, '2007-02-15 20:29:11.996577'); -INSERT INTO dvds.payment VALUES (19392, 237, 2, 1518, 0.99, '2007-02-15 22:05:03.996577'); -INSERT INTO dvds.payment VALUES (19393, 237, 1, 2156, 4.99, '2007-02-17 21:36:38.996577'); -INSERT INTO dvds.payment VALUES (19394, 237, 1, 2492, 2.99, '2007-02-18 20:32:41.996577'); -INSERT INTO dvds.payment VALUES (19395, 237, 2, 3069, 2.99, '2007-02-20 12:41:26.996577'); -INSERT INTO dvds.payment VALUES (19396, 238, 1, 1199, 2.99, '2007-02-15 00:27:16.996577'); -INSERT INTO dvds.payment VALUES (19397, 238, 1, 1660, 4.99, '2007-02-16 08:41:21.996577'); -INSERT INTO dvds.payment VALUES (19398, 238, 1, 3181, 2.99, '2007-02-20 21:19:28.996577'); -INSERT INTO dvds.payment VALUES (19399, 239, 1, 1160, 4.99, '2007-02-14 21:29:00.996577'); -INSERT INTO dvds.payment VALUES (19400, 239, 2, 1560, 4.99, '2007-02-16 01:05:09.996577'); -INSERT INTO dvds.payment VALUES (19401, 239, 2, 2215, 2.99, '2007-02-18 01:16:47.996577'); -INSERT INTO dvds.payment VALUES (19402, 239, 1, 2390, 4.99, '2007-02-18 13:57:52.996577'); -INSERT INTO dvds.payment VALUES (19403, 239, 1, 3383, 5.99, '2007-02-21 12:35:45.996577'); -INSERT INTO dvds.payment VALUES (19404, 240, 2, 2196, 3.99, '2007-02-18 00:15:33.996577'); -INSERT INTO dvds.payment VALUES (19405, 240, 1, 2264, 4.99, '2007-02-18 04:27:11.996577'); -INSERT INTO dvds.payment VALUES (19406, 240, 2, 2872, 5.99, '2007-02-19 23:06:47.996577'); -INSERT INTO dvds.payment VALUES (19407, 241, 2, 2428, 0.99, '2007-02-18 16:16:00.996577'); -INSERT INTO dvds.payment VALUES (19408, 241, 1, 2455, 0.99, '2007-02-18 18:01:32.996577'); -INSERT INTO dvds.payment VALUES (19409, 241, 2, 2478, 5.99, '2007-02-18 19:29:47.996577'); -INSERT INTO dvds.payment VALUES (19410, 241, 2, 2683, 2.99, '2007-02-19 10:55:45.996577'); -INSERT INTO dvds.payment VALUES (19411, 241, 2, 3258, 0.99, '2007-02-21 02:22:24.996577'); -INSERT INTO dvds.payment VALUES (19412, 242, 2, 1304, 4.99, '2007-02-15 08:24:28.996577'); -INSERT INTO dvds.payment VALUES (19413, 242, 1, 1384, 4.99, '2007-02-15 13:50:29.996577'); -INSERT INTO dvds.payment VALUES (19414, 242, 1, 1483, 4.99, '2007-02-15 19:50:24.996577'); -INSERT INTO dvds.payment VALUES (19415, 242, 2, 1702, 4.99, '2007-02-16 11:49:31.996577'); -INSERT INTO dvds.payment VALUES (19416, 242, 1, 2691, 4.99, '2007-02-19 11:35:16.996577'); -INSERT INTO dvds.payment VALUES (19417, 242, 2, 2942, 4.99, '2007-02-20 03:55:57.996577'); -INSERT INTO dvds.payment VALUES (19418, 243, 1, 1405, 5.99, '2007-02-15 15:09:52.996577'); -INSERT INTO dvds.payment VALUES (19419, 243, 1, 1452, 0.99, '2007-02-15 18:01:18.996577'); -INSERT INTO dvds.payment VALUES (19420, 243, 2, 2757, 5.99, '2007-02-19 15:29:40.996577'); -INSERT INTO dvds.payment VALUES (19421, 244, 2, 1189, 6.99, '2007-02-14 23:32:48.996577'); -INSERT INTO dvds.payment VALUES (19422, 244, 1, 1595, 5.99, '2007-02-16 03:52:12.996577'); -INSERT INTO dvds.payment VALUES (19423, 244, 2, 2955, 3.99, '2007-02-20 05:15:01.996577'); -INSERT INTO dvds.payment VALUES (19424, 245, 1, 1377, 2.99, '2007-02-15 13:30:29.996577'); -INSERT INTO dvds.payment VALUES (19425, 245, 1, 2122, 2.99, '2007-02-17 19:16:53.996577'); -INSERT INTO dvds.payment VALUES (19426, 245, 1, 3157, 2.99, '2007-02-20 19:36:20.996577'); -INSERT INTO dvds.payment VALUES (19427, 246, 2, 1448, 1.99, '2007-02-15 17:45:42.996577'); -INSERT INTO dvds.payment VALUES (19428, 246, 1, 1968, 2.99, '2007-02-17 07:49:02.996577'); -INSERT INTO dvds.payment VALUES (19429, 246, 2, 2704, 1.99, '2007-02-19 12:18:36.996577'); -INSERT INTO dvds.payment VALUES (19430, 246, 1, 2725, 0.99, '2007-02-19 13:29:49.996577'); -INSERT INTO dvds.payment VALUES (19431, 246, 1, 3152, 4.99, '2007-02-20 19:11:07.996577'); -INSERT INTO dvds.payment VALUES (19432, 247, 1, 2288, 5.99, '2007-02-18 05:51:43.996577'); -INSERT INTO dvds.payment VALUES (19433, 248, 1, 2066, 3.99, '2007-02-17 14:35:34.996577'); -INSERT INTO dvds.payment VALUES (19434, 248, 2, 2371, 0.99, '2007-02-18 13:03:55.996577'); -INSERT INTO dvds.payment VALUES (19435, 249, 1, 1204, 0.99, '2007-02-15 00:50:12.996577'); -INSERT INTO dvds.payment VALUES (19436, 249, 1, 1473, 5.99, '2007-02-15 19:23:46.996577'); -INSERT INTO dvds.payment VALUES (19437, 249, 2, 1753, 2.99, '2007-02-16 15:36:43.996577'); -INSERT INTO dvds.payment VALUES (19438, 249, 2, 2129, 1.99, '2007-02-17 19:26:58.996577'); -INSERT INTO dvds.payment VALUES (19439, 249, 2, 3175, 7.99, '2007-02-20 20:58:49.996577'); -INSERT INTO dvds.payment VALUES (19440, 250, 1, 2432, 4.99, '2007-02-18 16:27:44.996577'); -INSERT INTO dvds.payment VALUES (19441, 251, 1, 2238, 6.99, '2007-02-18 02:50:32.996577'); -INSERT INTO dvds.payment VALUES (19442, 251, 2, 3422, 7.99, '2007-02-21 15:53:06.996577'); -INSERT INTO dvds.payment VALUES (19443, 251, 1, 3464, 2.99, '2007-02-21 20:37:24.996577'); -INSERT INTO dvds.payment VALUES (19444, 252, 1, 1395, 5.99, '2007-02-15 14:49:30.996577'); -INSERT INTO dvds.payment VALUES (19445, 252, 2, 2716, 4.99, '2007-02-19 13:08:43.996577'); -INSERT INTO dvds.payment VALUES (19446, 252, 1, 2968, 0.99, '2007-02-20 06:10:13.996577'); -INSERT INTO dvds.payment VALUES (19447, 253, 2, 1378, 1.99, '2007-02-15 13:31:41.996577'); -INSERT INTO dvds.payment VALUES (19448, 253, 2, 1606, 6.99, '2007-02-16 04:46:57.996577'); -INSERT INTO dvds.payment VALUES (19449, 253, 2, 2081, 5.99, '2007-02-17 15:33:28.996577'); -INSERT INTO dvds.payment VALUES (19450, 253, 1, 2142, 4.99, '2007-02-17 20:24:09.996577'); -INSERT INTO dvds.payment VALUES (19451, 253, 1, 2454, 4.99, '2007-02-18 18:01:17.996577'); -INSERT INTO dvds.payment VALUES (19452, 253, 2, 2636, 4.99, '2007-02-19 07:41:32.996577'); -INSERT INTO dvds.payment VALUES (19453, 254, 1, 1285, 2.99, '2007-02-15 07:01:32.996577'); -INSERT INTO dvds.payment VALUES (19454, 254, 2, 1390, 0.99, '2007-02-15 14:34:55.996577'); -INSERT INTO dvds.payment VALUES (19455, 254, 1, 2082, 2.99, '2007-02-17 15:41:58.996577'); -INSERT INTO dvds.payment VALUES (19456, 254, 1, 2138, 2.99, '2007-02-17 19:56:40.996577'); -INSERT INTO dvds.payment VALUES (19457, 254, 2, 2687, 3.99, '2007-02-19 11:15:18.996577'); -INSERT INTO dvds.payment VALUES (19458, 255, 1, 1235, 2.99, '2007-02-15 02:59:54.996577'); -INSERT INTO dvds.payment VALUES (19459, 255, 1, 1420, 6.99, '2007-02-15 16:24:40.996577'); -INSERT INTO dvds.payment VALUES (19460, 255, 2, 1681, 2.99, '2007-02-16 10:06:43.996577'); -INSERT INTO dvds.payment VALUES (19461, 255, 2, 3442, 2.99, '2007-02-21 18:35:17.996577'); -INSERT INTO dvds.payment VALUES (19462, 256, 1, 1555, 2.99, '2007-02-16 00:45:33.996577'); -INSERT INTO dvds.payment VALUES (19463, 256, 2, 1965, 0.99, '2007-02-17 07:46:05.996577'); -INSERT INTO dvds.payment VALUES (19464, 256, 2, 1973, 4.99, '2007-02-17 07:54:41.996577'); -INSERT INTO dvds.payment VALUES (19465, 256, 2, 2230, 4.99, '2007-02-18 02:19:15.996577'); -INSERT INTO dvds.payment VALUES (19466, 256, 1, 2380, 6.99, '2007-02-18 13:28:30.996577'); -INSERT INTO dvds.payment VALUES (19467, 256, 2, 2561, 4.99, '2007-02-19 01:43:18.996577'); -INSERT INTO dvds.payment VALUES (19468, 256, 1, 2839, 4.99, '2007-02-19 20:35:50.996577'); -INSERT INTO dvds.payment VALUES (19469, 257, 1, 2557, 0.99, '2007-02-19 01:37:17.996577'); -INSERT INTO dvds.payment VALUES (19470, 257, 2, 3083, 4.99, '2007-02-20 14:02:13.996577'); -INSERT INTO dvds.payment VALUES (19471, 258, 1, 1743, 2.99, '2007-02-16 15:06:36.996577'); -INSERT INTO dvds.payment VALUES (19472, 258, 2, 2678, 0.99, '2007-02-19 10:40:49.996577'); -INSERT INTO dvds.payment VALUES (19473, 258, 2, 2931, 8.99, '2007-02-20 03:19:11.996577'); -INSERT INTO dvds.payment VALUES (19474, 259, 1, 1641, 7.99, '2007-02-16 07:14:52.996577'); -INSERT INTO dvds.payment VALUES (19475, 259, 2, 1723, 7.99, '2007-02-16 13:42:44.996577'); -INSERT INTO dvds.payment VALUES (19476, 259, 2, 1813, 2.99, '2007-02-16 19:39:26.996577'); -INSERT INTO dvds.payment VALUES (19477, 259, 2, 2375, 5.99, '2007-02-18 13:15:55.996577'); -INSERT INTO dvds.payment VALUES (19478, 260, 1, 1626, 3.99, '2007-02-16 06:18:13.996577'); -INSERT INTO dvds.payment VALUES (19479, 260, 2, 2001, 2.99, '2007-02-17 10:03:35.996577'); -INSERT INTO dvds.payment VALUES (19480, 260, 2, 2040, 2.99, '2007-02-17 12:47:03.996577'); -INSERT INTO dvds.payment VALUES (19481, 260, 1, 2091, 10.99, '2007-02-17 16:37:30.996577'); -INSERT INTO dvds.payment VALUES (19482, 260, 1, 2178, 0.99, '2007-02-17 23:07:01.996577'); -INSERT INTO dvds.payment VALUES (19483, 260, 1, 2823, 7.99, '2007-02-19 18:58:47.996577'); -INSERT INTO dvds.payment VALUES (19484, 260, 2, 2958, 3.99, '2007-02-20 05:24:46.996577'); -INSERT INTO dvds.payment VALUES (19485, 260, 1, 3193, 0.99, '2007-02-20 22:20:56.996577'); -INSERT INTO dvds.payment VALUES (19486, 261, 1, 1760, 2.99, '2007-02-16 16:17:03.996577'); -INSERT INTO dvds.payment VALUES (19487, 261, 1, 1877, 5.99, '2007-02-17 01:22:42.996577'); -INSERT INTO dvds.payment VALUES (19488, 261, 2, 1988, 8.99, '2007-02-17 09:11:00.996577'); -INSERT INTO dvds.payment VALUES (19489, 261, 2, 2072, 3.99, '2007-02-17 15:01:58.996577'); -INSERT INTO dvds.payment VALUES (19490, 261, 2, 2392, 0.99, '2007-02-18 14:02:44.996577'); -INSERT INTO dvds.payment VALUES (19491, 261, 1, 3363, 0.99, '2007-02-21 10:53:33.996577'); -INSERT INTO dvds.payment VALUES (19492, 262, 1, 1563, 2.99, '2007-02-16 01:14:54.996577'); -INSERT INTO dvds.payment VALUES (19493, 262, 1, 2771, 6.99, '2007-02-19 16:23:14.996577'); -INSERT INTO dvds.payment VALUES (19494, 262, 2, 2850, 8.99, '2007-02-19 21:34:54.996577'); -INSERT INTO dvds.payment VALUES (19495, 262, 1, 2915, 1.99, '2007-02-20 02:25:43.996577'); -INSERT INTO dvds.payment VALUES (19496, 263, 2, 2126, 8.99, '2007-02-17 19:23:02.996577'); -INSERT INTO dvds.payment VALUES (19497, 263, 2, 3257, 1.99, '2007-02-21 02:15:45.996577'); -INSERT INTO dvds.payment VALUES (19498, 264, 2, 1165, 3.99, '2007-02-14 21:44:53.996577'); -INSERT INTO dvds.payment VALUES (19499, 264, 1, 1206, 4.99, '2007-02-15 00:55:33.996577'); -INSERT INTO dvds.payment VALUES (19500, 264, 1, 3028, 0.99, '2007-02-20 10:19:18.996577'); -INSERT INTO dvds.payment VALUES (19501, 264, 1, 3403, 3.99, '2007-02-21 14:23:32.996577'); -INSERT INTO dvds.payment VALUES (19502, 265, 2, 2027, 7.99, '2007-02-17 11:35:22.996577'); -INSERT INTO dvds.payment VALUES (19503, 265, 2, 2562, 4.99, '2007-02-19 01:43:31.996577'); -INSERT INTO dvds.payment VALUES (19504, 265, 1, 2598, 2.99, '2007-02-19 04:28:23.996577'); -INSERT INTO dvds.payment VALUES (19505, 266, 2, 1280, 5.99, '2007-02-15 06:44:32.996577'); -INSERT INTO dvds.payment VALUES (19506, 266, 2, 2065, 4.99, '2007-02-17 14:32:12.996577'); -INSERT INTO dvds.payment VALUES (19507, 266, 2, 3002, 4.99, '2007-02-20 08:24:38.996577'); -INSERT INTO dvds.payment VALUES (19508, 266, 1, 3059, 4.99, '2007-02-20 12:07:07.996577'); -INSERT INTO dvds.payment VALUES (19509, 267, 2, 1257, 4.99, '2007-02-15 04:44:02.996577'); -INSERT INTO dvds.payment VALUES (19510, 267, 2, 1349, 4.99, '2007-02-15 11:17:28.996577'); -INSERT INTO dvds.payment VALUES (19511, 267, 2, 2265, 2.99, '2007-02-18 04:31:53.996577'); -INSERT INTO dvds.payment VALUES (19512, 267, 2, 2578, 7.99, '2007-02-19 03:08:32.996577'); -INSERT INTO dvds.payment VALUES (19513, 267, 1, 2582, 6.99, '2007-02-19 03:24:53.996577'); -INSERT INTO dvds.payment VALUES (19514, 267, 2, 2699, 2.99, '2007-02-19 11:57:54.996577'); -INSERT INTO dvds.payment VALUES (19515, 267, 2, 2754, 4.99, '2007-02-19 15:24:25.996577'); -INSERT INTO dvds.payment VALUES (19516, 267, 1, 2877, 1.99, '2007-02-19 23:35:42.996577'); -INSERT INTO dvds.payment VALUES (19517, 267, 2, 3090, 0.99, '2007-02-20 14:28:45.996577'); -INSERT INTO dvds.payment VALUES (19518, 16, 1, 4591, 1.99, '2007-02-18 03:24:38.996577'); -INSERT INTO dvds.payment VALUES (19519, 267, 1, 10343, 2.99, '2007-03-01 03:44:13.996577'); -INSERT INTO dvds.payment VALUES (19520, 267, 2, 11373, 0.99, '2007-03-02 16:42:38.996577'); -INSERT INTO dvds.payment VALUES (19521, 267, 1, 11690, 6.99, '2007-03-17 05:12:48.996577'); -INSERT INTO dvds.payment VALUES (19522, 267, 1, 12320, 4.99, '2007-03-18 04:55:17.996577'); -INSERT INTO dvds.payment VALUES (19523, 267, 1, 12979, 4.99, '2007-03-19 05:29:01.996577'); -INSERT INTO dvds.payment VALUES (19524, 267, 2, 13236, 9.99, '2007-03-19 14:46:50.996577'); -INSERT INTO dvds.payment VALUES (19525, 267, 1, 14131, 5.99, '2007-03-21 00:12:06.996577'); -INSERT INTO dvds.payment VALUES (19526, 267, 2, 15020, 3.99, '2007-03-22 07:22:38.996577'); -INSERT INTO dvds.payment VALUES (19527, 267, 1, 15208, 3.99, '2007-03-22 15:04:13.996577'); -INSERT INTO dvds.payment VALUES (19528, 267, 1, 15768, 0.99, '2007-03-23 11:43:13.996577'); -INSERT INTO dvds.payment VALUES (19529, 267, 1, 15903, 3.99, '2007-03-23 15:59:06.996577'); -INSERT INTO dvds.payment VALUES (19530, 268, 2, 11462, 7.99, '2007-03-02 20:05:12.996577'); -INSERT INTO dvds.payment VALUES (19531, 268, 2, 11828, 6.99, '2007-03-17 11:16:54.996577'); -INSERT INTO dvds.payment VALUES (19532, 268, 2, 12007, 2.99, '2007-03-17 17:39:00.996577'); -INSERT INTO dvds.payment VALUES (19533, 268, 2, 12694, 4.99, '2007-03-18 18:39:05.996577'); -INSERT INTO dvds.payment VALUES (19534, 268, 2, 13880, 5.99, '2007-03-20 13:46:46.996577'); -INSERT INTO dvds.payment VALUES (19535, 268, 2, 14249, 4.99, '2007-03-21 04:06:31.996577'); -INSERT INTO dvds.payment VALUES (19536, 268, 2, 14373, 4.99, '2007-03-21 08:13:19.996577'); -INSERT INTO dvds.payment VALUES (19537, 268, 1, 14874, 0.99, '2007-03-22 02:00:31.996577'); -INSERT INTO dvds.payment VALUES (19538, 268, 2, 15183, 2.99, '2007-03-22 14:18:20.996577'); -INSERT INTO dvds.payment VALUES (19539, 269, 2, 10566, 2.99, '2007-03-01 11:40:37.996577'); -INSERT INTO dvds.payment VALUES (19540, 269, 1, 10908, 4.99, '2007-03-02 00:21:32.996577'); -INSERT INTO dvds.payment VALUES (19541, 269, 1, 11014, 4.99, '2007-03-02 03:40:48.996577'); -INSERT INTO dvds.payment VALUES (19542, 269, 1, 11915, 3.99, '2007-03-17 14:33:54.996577'); -INSERT INTO dvds.payment VALUES (19543, 269, 1, 12344, 4.99, '2007-03-18 05:43:45.996577'); -INSERT INTO dvds.payment VALUES (19544, 269, 2, 13142, 5.99, '2007-03-19 11:10:54.996577'); -INSERT INTO dvds.payment VALUES (19545, 269, 2, 13759, 2.99, '2007-03-20 09:53:14.996577'); -INSERT INTO dvds.payment VALUES (19546, 269, 1, 14266, 4.99, '2007-03-21 04:49:17.996577'); -INSERT INTO dvds.payment VALUES (19547, 269, 2, 14693, 6.99, '2007-03-21 19:12:45.996577'); -INSERT INTO dvds.payment VALUES (19548, 269, 2, 15788, 2.99, '2007-03-23 12:23:05.996577'); -INSERT INTO dvds.payment VALUES (19549, 270, 1, 10461, 7.99, '2007-03-01 08:01:19.996577'); -INSERT INTO dvds.payment VALUES (19550, 270, 2, 10579, 5.99, '2007-03-01 12:16:48.996577'); -INSERT INTO dvds.payment VALUES (19551, 270, 2, 10648, 4.99, '2007-03-01 14:37:18.996577'); -INSERT INTO dvds.payment VALUES (19552, 270, 1, 11389, 2.99, '2007-03-02 17:07:38.996577'); -INSERT INTO dvds.payment VALUES (19553, 270, 1, 11810, 0.99, '2007-03-17 10:25:14.996577'); -INSERT INTO dvds.payment VALUES (19554, 270, 2, 11841, 2.99, '2007-03-17 11:40:46.996577'); -INSERT INTO dvds.payment VALUES (19555, 270, 1, 11917, 2.99, '2007-03-17 14:36:43.996577'); -INSERT INTO dvds.payment VALUES (19556, 270, 1, 12192, 2.99, '2007-03-18 00:30:06.996577'); -INSERT INTO dvds.payment VALUES (19557, 270, 1, 12442, 2.99, '2007-03-18 09:18:33.996577'); -INSERT INTO dvds.payment VALUES (19558, 270, 2, 13945, 1.99, '2007-03-20 16:12:22.996577'); -INSERT INTO dvds.payment VALUES (19559, 270, 1, 14618, 0.99, '2007-03-21 16:38:17.996577'); -INSERT INTO dvds.payment VALUES (19560, 270, 2, 15620, 6.99, '2007-03-23 05:38:48.996577'); -INSERT INTO dvds.payment VALUES (19561, 271, 2, 10310, 4.99, '2007-03-01 02:53:13.996577'); -INSERT INTO dvds.payment VALUES (19562, 271, 1, 10599, 3.99, '2007-03-01 12:52:24.996577'); -INSERT INTO dvds.payment VALUES (19563, 271, 1, 11431, 2.99, '2007-03-02 18:33:42.996577'); -INSERT INTO dvds.payment VALUES (19564, 271, 1, 12219, 4.99, '2007-03-18 01:18:20.996577'); -INSERT INTO dvds.payment VALUES (19565, 271, 2, 14234, 0.99, '2007-03-21 03:35:38.996577'); -INSERT INTO dvds.payment VALUES (19566, 271, 2, 14355, 4.99, '2007-03-21 07:36:55.996577'); -INSERT INTO dvds.payment VALUES (19567, 271, 1, 15244, 2.99, '2007-03-22 16:17:08.996577'); -INSERT INTO dvds.payment VALUES (19568, 272, 1, 10736, 2.99, '2007-03-01 17:58:47.996577'); -INSERT INTO dvds.payment VALUES (19569, 272, 2, 11003, 2.99, '2007-03-02 03:31:31.996577'); -INSERT INTO dvds.payment VALUES (19570, 272, 2, 11597, 8.99, '2007-03-17 01:31:22.996577'); -INSERT INTO dvds.payment VALUES (19571, 272, 1, 11881, 0.99, '2007-03-17 13:00:22.996577'); -INSERT INTO dvds.payment VALUES (19572, 272, 2, 12006, 6.99, '2007-03-17 17:37:38.996577'); -INSERT INTO dvds.payment VALUES (19573, 272, 2, 13274, 2.99, '2007-03-19 16:18:29.996577'); -INSERT INTO dvds.payment VALUES (19574, 272, 1, 13903, 2.99, '2007-03-20 14:36:21.996577'); -INSERT INTO dvds.payment VALUES (19575, 273, 1, 10272, 8.99, '2007-03-01 01:43:00.996577'); -INSERT INTO dvds.payment VALUES (19576, 273, 1, 10753, 3.99, '2007-03-01 18:37:50.996577'); -INSERT INTO dvds.payment VALUES (19577, 273, 1, 10768, 6.99, '2007-03-01 19:07:58.996577'); -INSERT INTO dvds.payment VALUES (19578, 273, 1, 11282, 4.99, '2007-03-02 13:03:29.996577'); -INSERT INTO dvds.payment VALUES (19579, 273, 2, 11509, 4.99, '2007-03-16 21:58:19.996577'); -INSERT INTO dvds.payment VALUES (19580, 273, 1, 12692, 0.99, '2007-03-18 18:37:45.996577'); -INSERT INTO dvds.payment VALUES (19581, 273, 2, 13738, 4.99, '2007-03-20 09:11:08.996577'); -INSERT INTO dvds.payment VALUES (19582, 273, 1, 13955, 5.99, '2007-03-20 16:33:38.996577'); -INSERT INTO dvds.payment VALUES (19583, 273, 2, 14092, 4.99, '2007-03-20 22:42:58.996577'); -INSERT INTO dvds.payment VALUES (19584, 273, 2, 14558, 2.99, '2007-03-21 14:39:16.996577'); -INSERT INTO dvds.payment VALUES (19585, 273, 2, 14911, 2.99, '2007-03-22 03:20:08.996577'); -INSERT INTO dvds.payment VALUES (19586, 273, 2, 15372, 2.99, '2007-03-22 20:28:17.996577'); -INSERT INTO dvds.payment VALUES (19587, 273, 1, 15760, 6.99, '2007-03-23 11:18:26.996577'); -INSERT INTO dvds.payment VALUES (19588, 274, 1, 10790, 1.99, '2007-03-01 20:07:03.996577'); -INSERT INTO dvds.payment VALUES (19589, 274, 2, 10855, 0.99, '2007-03-01 22:35:03.996577'); -INSERT INTO dvds.payment VALUES (19590, 274, 1, 11058, 3.99, '2007-03-02 05:07:10.996577'); -INSERT INTO dvds.payment VALUES (19591, 274, 2, 11363, 2.99, '2007-03-02 16:17:05.996577'); -INSERT INTO dvds.payment VALUES (19592, 274, 1, 12321, 3.99, '2007-03-18 04:55:31.996577'); -INSERT INTO dvds.payment VALUES (19593, 274, 1, 13103, 2.99, '2007-03-19 09:34:17.996577'); -INSERT INTO dvds.payment VALUES (19594, 274, 2, 13129, 8.99, '2007-03-19 10:33:30.996577'); -INSERT INTO dvds.payment VALUES (19595, 274, 1, 13549, 8.99, '2007-03-20 02:27:07.996577'); -INSERT INTO dvds.payment VALUES (19596, 274, 1, 14012, 0.99, '2007-03-20 19:10:38.996577'); -INSERT INTO dvds.payment VALUES (19597, 274, 1, 14066, 7.99, '2007-03-20 21:14:24.996577'); -INSERT INTO dvds.payment VALUES (19598, 274, 2, 14164, 7.99, '2007-03-21 01:26:28.996577'); -INSERT INTO dvds.payment VALUES (19599, 274, 1, 14388, 4.99, '2007-03-21 08:43:39.996577'); -INSERT INTO dvds.payment VALUES (19600, 274, 2, 15143, 2.99, '2007-03-22 12:14:50.996577'); -INSERT INTO dvds.payment VALUES (19601, 274, 1, 15260, 2.99, '2007-03-22 16:52:42.996577'); -INSERT INTO dvds.payment VALUES (19602, 274, 2, 15328, 2.99, '2007-03-22 19:00:04.996577'); -INSERT INTO dvds.payment VALUES (19603, 274, 2, 15819, 3.99, '2007-03-23 13:30:20.996577'); -INSERT INTO dvds.payment VALUES (19604, 275, 1, 10479, 6.99, '2007-03-01 08:39:51.996577'); -INSERT INTO dvds.payment VALUES (19605, 275, 2, 11309, 1.99, '2007-03-02 14:19:21.996577'); -INSERT INTO dvds.payment VALUES (19606, 275, 1, 11610, 4.99, '2007-03-17 02:12:03.996577'); -INSERT INTO dvds.payment VALUES (19607, 275, 2, 12589, 5.99, '2007-03-18 14:34:57.996577'); -INSERT INTO dvds.payment VALUES (19608, 275, 1, 12606, 1.99, '2007-03-18 15:30:47.996577'); -INSERT INTO dvds.payment VALUES (19609, 275, 1, 13037, 3.99, '2007-03-19 07:22:23.996577'); -INSERT INTO dvds.payment VALUES (19610, 275, 2, 13860, 2.99, '2007-03-20 13:23:35.996577'); -INSERT INTO dvds.payment VALUES (19611, 275, 2, 13865, 1.99, '2007-03-20 13:32:35.996577'); -INSERT INTO dvds.payment VALUES (19612, 275, 2, 13902, 0.99, '2007-03-20 14:35:34.996577'); -INSERT INTO dvds.payment VALUES (19613, 275, 2, 14063, 0.99, '2007-03-20 21:05:06.996577'); -INSERT INTO dvds.payment VALUES (19614, 275, 1, 14187, 5.99, '2007-03-21 02:00:29.996577'); -INSERT INTO dvds.payment VALUES (19615, 275, 1, 14296, 2.99, '2007-03-21 05:41:49.996577'); -INSERT INTO dvds.payment VALUES (19616, 275, 2, 14483, 5.99, '2007-03-21 12:12:25.996577'); -INSERT INTO dvds.payment VALUES (19617, 275, 2, 14727, 4.99, '2007-03-21 20:41:11.996577'); -INSERT INTO dvds.payment VALUES (19618, 275, 2, 15269, 2.99, '2007-03-22 17:08:10.996577'); -INSERT INTO dvds.payment VALUES (19619, 275, 2, 15496, 3.99, '2007-03-23 00:58:49.996577'); -INSERT INTO dvds.payment VALUES (19620, 276, 2, 10691, 0.99, '2007-03-01 16:38:19.996577'); -INSERT INTO dvds.payment VALUES (19621, 276, 1, 10763, 2.99, '2007-03-01 19:00:53.996577'); -INSERT INTO dvds.payment VALUES (19622, 276, 2, 11085, 2.99, '2007-03-02 06:05:10.996577'); -INSERT INTO dvds.payment VALUES (19623, 276, 1, 11636, 4.99, '2007-03-17 03:04:57.996577'); -INSERT INTO dvds.payment VALUES (19624, 276, 2, 11961, 3.99, '2007-03-17 15:56:27.996577'); -INSERT INTO dvds.payment VALUES (19625, 276, 2, 12178, 5.99, '2007-03-17 23:45:58.996577'); -INSERT INTO dvds.payment VALUES (19626, 276, 2, 12251, 4.99, '2007-03-18 02:27:28.996577'); -INSERT INTO dvds.payment VALUES (19627, 276, 1, 12650, 4.99, '2007-03-18 17:01:46.996577'); -INSERT INTO dvds.payment VALUES (19628, 276, 1, 14000, 4.99, '2007-03-20 18:34:31.996577'); -INSERT INTO dvds.payment VALUES (19629, 276, 2, 15718, 2.99, '2007-03-23 09:33:43.996577'); -INSERT INTO dvds.payment VALUES (19630, 276, 1, 15769, 3.99, '2007-03-23 11:44:41.996577'); -INSERT INTO dvds.payment VALUES (19631, 276, 2, 15923, 4.99, '2007-03-23 16:36:45.996577'); -INSERT INTO dvds.payment VALUES (19632, 277, 2, 11074, 3.99, '2007-03-02 05:50:09.996577'); -INSERT INTO dvds.payment VALUES (19633, 277, 2, 11162, 4.99, '2007-03-02 08:36:20.996577'); -INSERT INTO dvds.payment VALUES (19634, 277, 2, 11574, 0.99, '2007-03-17 00:06:45.996577'); -INSERT INTO dvds.payment VALUES (19635, 277, 2, 12149, 3.99, '2007-03-17 22:42:17.996577'); -INSERT INTO dvds.payment VALUES (19636, 277, 1, 12458, 5.99, '2007-03-18 09:51:19.996577'); -INSERT INTO dvds.payment VALUES (19637, 277, 1, 13122, 4.99, '2007-03-19 10:22:15.996577'); -INSERT INTO dvds.payment VALUES (19638, 277, 2, 13526, 4.99, '2007-03-20 01:27:08.996577'); -INSERT INTO dvds.payment VALUES (19639, 277, 1, 13714, 4.99, '2007-03-20 08:09:35.996577'); -INSERT INTO dvds.payment VALUES (19640, 277, 2, 14227, 4.99, '2007-03-21 03:24:57.996577'); -INSERT INTO dvds.payment VALUES (19641, 277, 2, 14745, 4.99, '2007-03-21 21:21:27.996577'); -INSERT INTO dvds.payment VALUES (19642, 277, 1, 15008, 10.99, '2007-03-22 06:52:58.996577'); -INSERT INTO dvds.payment VALUES (19643, 277, 1, 15345, 5.99, '2007-03-22 19:34:16.996577'); -INSERT INTO dvds.payment VALUES (19644, 278, 1, 10649, 2.99, '2007-03-01 14:40:06.996577'); -INSERT INTO dvds.payment VALUES (19645, 278, 1, 10731, 2.99, '2007-03-01 17:50:14.996577'); -INSERT INTO dvds.payment VALUES (19646, 278, 2, 10849, 3.99, '2007-03-01 22:19:26.996577'); -INSERT INTO dvds.payment VALUES (19647, 278, 1, 11095, 5.99, '2007-03-02 06:31:46.996577'); -INSERT INTO dvds.payment VALUES (19648, 278, 2, 11531, 0.99, '2007-03-16 22:58:30.996577'); -INSERT INTO dvds.payment VALUES (19649, 278, 1, 12787, 0.99, '2007-03-18 22:36:24.996577'); -INSERT INTO dvds.payment VALUES (19650, 278, 1, 13896, 0.99, '2007-03-20 14:28:22.996577'); -INSERT INTO dvds.payment VALUES (19651, 278, 2, 13976, 0.99, '2007-03-20 17:30:42.996577'); -INSERT INTO dvds.payment VALUES (19652, 278, 1, 14268, 2.99, '2007-03-21 04:49:50.996577'); -INSERT INTO dvds.payment VALUES (19653, 278, 2, 14803, 0.99, '2007-03-21 23:17:36.996577'); -INSERT INTO dvds.payment VALUES (19654, 278, 1, 14986, 4.99, '2007-03-22 06:05:50.996577'); -INSERT INTO dvds.payment VALUES (19655, 278, 1, 16019, 4.99, '2007-03-23 19:59:11.996577'); -INSERT INTO dvds.payment VALUES (19656, 279, 2, 11250, 6.99, '2007-03-02 12:04:08.996577'); -INSERT INTO dvds.payment VALUES (19657, 279, 1, 11515, 2.99, '2007-03-16 22:23:00.996577'); -INSERT INTO dvds.payment VALUES (19658, 279, 1, 11703, 4.99, '2007-03-17 05:47:55.996577'); -INSERT INTO dvds.payment VALUES (19659, 279, 2, 12935, 2.99, '2007-03-19 03:48:51.996577'); -INSERT INTO dvds.payment VALUES (19660, 279, 1, 12949, 4.99, '2007-03-19 04:24:18.996577'); -INSERT INTO dvds.payment VALUES (19661, 279, 1, 13105, 7.99, '2007-03-19 09:34:42.996577'); -INSERT INTO dvds.payment VALUES (19662, 279, 1, 13233, 2.99, '2007-03-19 14:43:07.996577'); -INSERT INTO dvds.payment VALUES (19663, 279, 2, 13588, 4.99, '2007-03-20 04:15:37.996577'); -INSERT INTO dvds.payment VALUES (19664, 279, 2, 14206, 2.99, '2007-03-21 02:27:52.996577'); -INSERT INTO dvds.payment VALUES (19665, 279, 1, 14714, 3.99, '2007-03-21 19:56:09.996577'); -INSERT INTO dvds.payment VALUES (19666, 279, 1, 14779, 5.99, '2007-03-21 22:29:22.996577'); -INSERT INTO dvds.payment VALUES (19667, 279, 1, 14789, 4.99, '2007-03-21 22:58:05.996577'); -INSERT INTO dvds.payment VALUES (19668, 279, 2, 15580, 6.99, '2007-03-23 04:07:32.996577'); -INSERT INTO dvds.payment VALUES (19669, 279, 1, 15606, 2.99, '2007-03-23 05:18:53.996577'); -INSERT INTO dvds.payment VALUES (19670, 280, 1, 10847, 9.99, '2007-03-01 22:17:59.996577'); -INSERT INTO dvds.payment VALUES (19671, 280, 1, 11366, 4.99, '2007-03-02 16:29:51.996577'); -INSERT INTO dvds.payment VALUES (19672, 280, 1, 11517, 2.99, '2007-03-16 22:24:54.996577'); -INSERT INTO dvds.payment VALUES (19673, 280, 1, 12053, 4.99, '2007-03-17 19:25:53.996577'); -INSERT INTO dvds.payment VALUES (19674, 280, 1, 12849, 5.99, '2007-03-19 00:34:03.996577'); -INSERT INTO dvds.payment VALUES (19675, 280, 2, 13231, 9.99, '2007-03-19 14:41:15.996577'); -INSERT INTO dvds.payment VALUES (19676, 280, 1, 13321, 4.99, '2007-03-19 18:09:03.996577'); -INSERT INTO dvds.payment VALUES (19677, 280, 1, 13667, 4.99, '2007-03-20 06:54:00.996577'); -INSERT INTO dvds.payment VALUES (19678, 280, 2, 15036, 2.99, '2007-03-22 08:04:26.996577'); -INSERT INTO dvds.payment VALUES (19679, 280, 1, 15312, 4.99, '2007-03-22 18:26:41.996577'); -INSERT INTO dvds.payment VALUES (19680, 280, 2, 15554, 5.99, '2007-03-23 03:16:38.996577'); -INSERT INTO dvds.payment VALUES (19681, 280, 2, 15950, 5.99, '2007-03-23 17:38:05.996577'); -INSERT INTO dvds.payment VALUES (19682, 281, 1, 13641, 2.99, '2007-03-20 06:03:08.996577'); -INSERT INTO dvds.payment VALUES (19683, 281, 1, 14196, 1.99, '2007-03-21 02:09:06.996577'); -INSERT INTO dvds.payment VALUES (19684, 282, 2, 11226, 2.99, '2007-03-02 11:15:56.996577'); -INSERT INTO dvds.payment VALUES (19685, 282, 1, 13278, 2.99, '2007-03-19 16:26:19.996577'); -INSERT INTO dvds.payment VALUES (19686, 282, 2, 13749, 2.99, '2007-03-20 09:29:03.996577'); -INSERT INTO dvds.payment VALUES (19687, 282, 2, 15543, 4.99, '2007-03-23 02:44:07.996577'); -INSERT INTO dvds.payment VALUES (19688, 283, 1, 11637, 0.99, '2007-03-17 03:05:05.996577'); -INSERT INTO dvds.payment VALUES (19689, 283, 2, 11846, 2.99, '2007-03-17 11:46:55.996577'); -INSERT INTO dvds.payment VALUES (19690, 283, 2, 11966, 0.99, '2007-03-17 16:08:30.996577'); -INSERT INTO dvds.payment VALUES (19691, 283, 1, 12290, 6.99, '2007-03-18 03:36:29.996577'); -INSERT INTO dvds.payment VALUES (19692, 283, 1, 13229, 2.99, '2007-03-19 14:36:59.996577'); -INSERT INTO dvds.payment VALUES (19693, 283, 1, 15837, 2.99, '2007-03-23 13:58:07.996577'); -INSERT INTO dvds.payment VALUES (19694, 284, 1, 10396, 7.99, '2007-03-01 05:37:12.996577'); -INSERT INTO dvds.payment VALUES (19695, 284, 1, 10535, 4.99, '2007-03-01 10:49:39.996577'); -INSERT INTO dvds.payment VALUES (19696, 284, 2, 12162, 3.99, '2007-03-17 23:12:56.996577'); -INSERT INTO dvds.payment VALUES (19697, 284, 1, 14007, 5.99, '2007-03-20 18:51:13.996577'); -INSERT INTO dvds.payment VALUES (19698, 284, 1, 14648, 4.99, '2007-03-21 17:46:27.996577'); -INSERT INTO dvds.payment VALUES (19699, 284, 2, 14746, 4.99, '2007-03-21 21:22:28.996577'); -INSERT INTO dvds.payment VALUES (19700, 284, 1, 14921, 4.99, '2007-03-22 03:40:50.996577'); -INSERT INTO dvds.payment VALUES (19701, 284, 2, 15135, 3.99, '2007-03-22 11:47:45.996577'); -INSERT INTO dvds.payment VALUES (19702, 285, 1, 10493, 5.99, '2007-03-01 09:11:38.996577'); -INSERT INTO dvds.payment VALUES (19703, 285, 2, 10628, 2.99, '2007-03-01 14:01:45.996577'); -INSERT INTO dvds.payment VALUES (19704, 285, 1, 10641, 4.99, '2007-03-01 14:13:23.996577'); -INSERT INTO dvds.payment VALUES (19705, 285, 1, 12027, 8.99, '2007-03-17 18:29:38.996577'); -INSERT INTO dvds.payment VALUES (19706, 285, 1, 12444, 0.99, '2007-03-18 09:21:38.996577'); -INSERT INTO dvds.payment VALUES (19707, 285, 1, 12449, 0.99, '2007-03-18 09:31:30.996577'); -INSERT INTO dvds.payment VALUES (19708, 285, 2, 12687, 9.99, '2007-03-18 18:26:05.996577'); -INSERT INTO dvds.payment VALUES (19709, 285, 2, 13102, 7.99, '2007-03-19 09:30:29.996577'); -INSERT INTO dvds.payment VALUES (19710, 285, 2, 15251, 0.99, '2007-03-22 16:32:23.996577'); -INSERT INTO dvds.payment VALUES (19711, 285, 1, 15489, 4.99, '2007-03-23 00:35:07.996577'); -INSERT INTO dvds.payment VALUES (19712, 286, 2, 11670, 0.99, '2007-03-17 04:17:25.996577'); -INSERT INTO dvds.payment VALUES (19713, 286, 2, 12595, 0.99, '2007-03-18 14:55:34.996577'); -INSERT INTO dvds.payment VALUES (19714, 286, 1, 12656, 0.99, '2007-03-18 17:27:01.996577'); -INSERT INTO dvds.payment VALUES (19715, 286, 2, 13635, 5.99, '2007-03-20 05:46:01.996577'); -INSERT INTO dvds.payment VALUES (19716, 286, 1, 13975, 4.99, '2007-03-20 17:26:49.996577'); -INSERT INTO dvds.payment VALUES (19717, 286, 1, 14905, 0.99, '2007-03-22 03:02:48.996577'); -INSERT INTO dvds.payment VALUES (19718, 286, 2, 15629, 4.99, '2007-03-23 05:56:48.996577'); -INSERT INTO dvds.payment VALUES (19719, 287, 2, 10574, 2.99, '2007-03-01 12:05:17.996577'); -INSERT INTO dvds.payment VALUES (19720, 287, 2, 10807, 4.99, '2007-03-01 20:54:36.996577'); -INSERT INTO dvds.payment VALUES (19721, 287, 2, 11106, 4.99, '2007-03-02 06:46:04.996577'); -INSERT INTO dvds.payment VALUES (19722, 287, 1, 11716, 4.99, '2007-03-17 06:09:21.996577'); -INSERT INTO dvds.payment VALUES (19723, 287, 2, 12861, 2.99, '2007-03-19 00:58:50.996577'); -INSERT INTO dvds.payment VALUES (19724, 287, 2, 14715, 6.99, '2007-03-21 19:56:44.996577'); -INSERT INTO dvds.payment VALUES (19725, 287, 2, 15076, 1.99, '2007-03-22 09:34:00.996577'); -INSERT INTO dvds.payment VALUES (19726, 287, 1, 15084, 4.99, '2007-03-22 09:46:25.996577'); -INSERT INTO dvds.payment VALUES (19727, 287, 2, 15127, 0.99, '2007-03-22 11:24:55.996577'); -INSERT INTO dvds.payment VALUES (19728, 287, 1, 15614, 2.99, '2007-03-23 05:33:41.996577'); -INSERT INTO dvds.payment VALUES (19729, 288, 1, 10927, 9.99, '2007-03-02 00:59:41.996577'); -INSERT INTO dvds.payment VALUES (19730, 288, 2, 11952, 2.99, '2007-03-17 15:43:23.996577'); -INSERT INTO dvds.payment VALUES (19731, 288, 1, 12134, 1.99, '2007-03-17 22:18:09.996577'); -INSERT INTO dvds.payment VALUES (19732, 288, 1, 13219, 2.99, '2007-03-19 14:08:54.996577'); -INSERT INTO dvds.payment VALUES (19733, 288, 1, 13227, 0.99, '2007-03-19 14:34:04.996577'); -INSERT INTO dvds.payment VALUES (19734, 288, 2, 13363, 2.99, '2007-03-19 19:36:25.996577'); -INSERT INTO dvds.payment VALUES (19735, 288, 2, 14113, 0.99, '2007-03-20 23:31:56.996577'); -INSERT INTO dvds.payment VALUES (19736, 288, 2, 14756, 0.99, '2007-03-21 21:49:49.996577'); -INSERT INTO dvds.payment VALUES (19737, 288, 2, 15058, 2.99, '2007-03-22 08:49:21.996577'); -INSERT INTO dvds.payment VALUES (19738, 288, 1, 15119, 2.99, '2007-03-22 11:09:59.996577'); -INSERT INTO dvds.payment VALUES (19739, 289, 2, 10297, 7.99, '2007-03-01 02:33:30.996577'); -INSERT INTO dvds.payment VALUES (19740, 289, 1, 12158, 1.99, '2007-03-17 23:02:46.996577'); -INSERT INTO dvds.payment VALUES (19741, 289, 1, 12170, 0.99, '2007-03-17 23:34:36.996577'); -INSERT INTO dvds.payment VALUES (19742, 289, 2, 12558, 7.99, '2007-03-18 13:21:01.996577'); -INSERT INTO dvds.payment VALUES (19743, 289, 2, 13165, 0.99, '2007-03-19 12:02:36.996577'); -INSERT INTO dvds.payment VALUES (19744, 289, 2, 13211, 0.99, '2007-03-19 13:52:07.996577'); -INSERT INTO dvds.payment VALUES (19745, 289, 2, 13256, 9.99, '2007-03-19 15:22:38.996577'); -INSERT INTO dvds.payment VALUES (19746, 289, 2, 13336, 5.99, '2007-03-19 18:31:48.996577'); -INSERT INTO dvds.payment VALUES (19747, 289, 2, 13891, 6.99, '2007-03-20 14:10:31.996577'); -INSERT INTO dvds.payment VALUES (19748, 289, 1, 14087, 0.99, '2007-03-20 22:22:06.996577'); -INSERT INTO dvds.payment VALUES (19749, 289, 2, 14729, 4.99, '2007-03-21 20:45:23.996577'); -INSERT INTO dvds.payment VALUES (19750, 289, 2, 14917, 4.99, '2007-03-22 03:32:25.996577'); -INSERT INTO dvds.payment VALUES (19751, 290, 1, 10901, 2.99, '2007-03-02 00:04:10.996577'); -INSERT INTO dvds.payment VALUES (19752, 290, 1, 11596, 6.99, '2007-03-17 01:22:21.996577'); -INSERT INTO dvds.payment VALUES (19753, 290, 2, 12193, 3.99, '2007-03-18 00:32:25.996577'); -INSERT INTO dvds.payment VALUES (19754, 290, 2, 12778, 4.99, '2007-03-18 22:08:49.996577'); -INSERT INTO dvds.payment VALUES (19755, 290, 2, 13190, 1.99, '2007-03-19 12:56:25.996577'); -INSERT INTO dvds.payment VALUES (19756, 290, 1, 13367, 2.99, '2007-03-19 19:47:53.996577'); -INSERT INTO dvds.payment VALUES (19757, 290, 2, 13687, 2.99, '2007-03-20 07:26:17.996577'); -INSERT INTO dvds.payment VALUES (19758, 291, 1, 10463, 4.99, '2007-03-01 08:08:09.996577'); -INSERT INTO dvds.payment VALUES (19759, 291, 2, 11145, 0.99, '2007-03-02 08:11:50.996577'); -INSERT INTO dvds.payment VALUES (19760, 291, 1, 13665, 5.99, '2007-03-20 06:47:46.996577'); -INSERT INTO dvds.payment VALUES (19761, 291, 2, 14241, 4.99, '2007-03-21 03:53:21.996577'); -INSERT INTO dvds.payment VALUES (19762, 291, 2, 15663, 3.99, '2007-03-23 07:22:52.996577'); -INSERT INTO dvds.payment VALUES (19763, 292, 1, 11193, 4.99, '2007-03-02 09:59:59.996577'); -INSERT INTO dvds.payment VALUES (19764, 292, 1, 12739, 10.99, '2007-03-18 20:43:44.996577'); -INSERT INTO dvds.payment VALUES (19765, 292, 1, 13715, 2.99, '2007-03-20 08:11:32.996577'); -INSERT INTO dvds.payment VALUES (19766, 292, 1, 14499, 0.99, '2007-03-21 12:39:45.996577'); -INSERT INTO dvds.payment VALUES (19767, 292, 2, 14845, 4.99, '2007-03-22 00:41:10.996577'); -INSERT INTO dvds.payment VALUES (19768, 292, 1, 15117, 2.99, '2007-03-22 11:06:46.996577'); -INSERT INTO dvds.payment VALUES (19769, 293, 2, 11131, 1.99, '2007-03-02 07:38:30.996577'); -INSERT INTO dvds.payment VALUES (19770, 293, 1, 11576, 2.99, '2007-03-17 00:21:46.996577'); -INSERT INTO dvds.payment VALUES (19771, 293, 2, 13013, 6.99, '2007-03-19 06:24:17.996577'); -INSERT INTO dvds.payment VALUES (19772, 293, 1, 13029, 2.99, '2007-03-19 06:56:30.996577'); -INSERT INTO dvds.payment VALUES (19773, 293, 2, 13504, 5.99, '2007-03-20 00:30:14.996577'); -INSERT INTO dvds.payment VALUES (19774, 293, 1, 13817, 4.99, '2007-03-20 11:43:56.996577'); -INSERT INTO dvds.payment VALUES (19775, 293, 1, 14248, 6.99, '2007-03-21 04:04:23.996577'); -INSERT INTO dvds.payment VALUES (19776, 293, 1, 15258, 4.99, '2007-03-22 16:51:10.996577'); -INSERT INTO dvds.payment VALUES (19777, 293, 1, 15402, 8.99, '2007-03-22 21:46:07.996577'); -INSERT INTO dvds.payment VALUES (19778, 293, 1, 15508, 7.99, '2007-03-23 01:17:30.996577'); -INSERT INTO dvds.payment VALUES (19779, 293, 2, 15675, 5.99, '2007-03-23 07:47:18.996577'); -INSERT INTO dvds.payment VALUES (19780, 294, 1, 10551, 6.99, '2007-03-01 11:17:21.996577'); -INSERT INTO dvds.payment VALUES (19781, 294, 2, 10600, 2.99, '2007-03-01 12:53:47.996577'); -INSERT INTO dvds.payment VALUES (19782, 294, 2, 10642, 4.99, '2007-03-01 14:13:37.996577'); -INSERT INTO dvds.payment VALUES (19783, 294, 2, 11071, 2.99, '2007-03-02 05:39:19.996577'); -INSERT INTO dvds.payment VALUES (19784, 294, 1, 11390, 2.99, '2007-03-02 17:07:42.996577'); -INSERT INTO dvds.payment VALUES (19785, 294, 2, 11875, 4.99, '2007-03-17 12:45:14.996577'); -INSERT INTO dvds.payment VALUES (19786, 294, 2, 11981, 2.99, '2007-03-17 16:39:06.996577'); -INSERT INTO dvds.payment VALUES (19787, 294, 1, 12278, 5.99, '2007-03-18 03:15:11.996577'); -INSERT INTO dvds.payment VALUES (19788, 294, 1, 14474, 2.99, '2007-03-21 11:51:14.996577'); -INSERT INTO dvds.payment VALUES (19789, 294, 2, 14630, 7.99, '2007-03-21 17:12:10.996577'); -INSERT INTO dvds.payment VALUES (19790, 294, 1, 15839, 5.99, '2007-03-23 14:03:12.996577'); -INSERT INTO dvds.payment VALUES (19791, 295, 1, 10349, 3.99, '2007-03-01 03:55:39.996577'); -INSERT INTO dvds.payment VALUES (19792, 295, 2, 11083, 4.99, '2007-03-02 06:00:27.996577'); -INSERT INTO dvds.payment VALUES (19793, 295, 2, 11913, 5.99, '2007-03-17 14:21:43.996577'); -INSERT INTO dvds.payment VALUES (19794, 295, 2, 12041, 4.99, '2007-03-17 19:02:59.996577'); -INSERT INTO dvds.payment VALUES (19795, 295, 1, 12383, 0.99, '2007-03-18 07:04:29.996577'); -INSERT INTO dvds.payment VALUES (19796, 295, 1, 14264, 0.99, '2007-03-21 04:46:48.996577'); -INSERT INTO dvds.payment VALUES (19797, 295, 1, 14387, 6.99, '2007-03-21 08:38:27.996577'); -INSERT INTO dvds.payment VALUES (19798, 295, 1, 14514, 6.99, '2007-03-21 13:20:18.996577'); -INSERT INTO dvds.payment VALUES (19799, 296, 2, 11571, 4.99, '2007-03-17 00:06:17.996577'); -INSERT INTO dvds.payment VALUES (19800, 296, 2, 11825, 4.99, '2007-03-17 11:11:56.996577'); -INSERT INTO dvds.payment VALUES (19801, 296, 2, 12689, 3.99, '2007-03-18 18:35:00.996577'); -INSERT INTO dvds.payment VALUES (19802, 296, 2, 13471, 2.99, '2007-03-19 23:30:52.996577'); -INSERT INTO dvds.payment VALUES (19803, 296, 1, 13702, 2.99, '2007-03-20 07:55:46.996577'); -INSERT INTO dvds.payment VALUES (19804, 296, 1, 13819, 4.99, '2007-03-20 11:51:41.996577'); -INSERT INTO dvds.payment VALUES (19805, 296, 1, 13991, 1.99, '2007-03-20 17:58:10.996577'); -INSERT INTO dvds.payment VALUES (19806, 296, 2, 14571, 7.99, '2007-03-21 15:08:52.996577'); -INSERT INTO dvds.payment VALUES (19807, 296, 2, 15023, 2.99, '2007-03-22 07:25:14.996577'); -INSERT INTO dvds.payment VALUES (19808, 296, 2, 15866, 7.99, '2007-03-23 14:47:28.996577'); -INSERT INTO dvds.payment VALUES (19809, 297, 2, 10264, 4.99, '2007-03-01 01:31:38.996577'); -INSERT INTO dvds.payment VALUES (19810, 297, 2, 11269, 0.99, '2007-03-02 12:40:07.996577'); -INSERT INTO dvds.payment VALUES (19811, 297, 2, 11413, 0.99, '2007-03-02 18:03:45.996577'); -INSERT INTO dvds.payment VALUES (19812, 297, 2, 11585, 4.99, '2007-03-17 00:43:02.996577'); -INSERT INTO dvds.payment VALUES (19813, 297, 1, 11780, 2.99, '2007-03-17 09:02:50.996577'); -INSERT INTO dvds.payment VALUES (19814, 297, 1, 11784, 0.99, '2007-03-17 09:16:31.996577'); -INSERT INTO dvds.payment VALUES (19815, 297, 1, 12472, 10.99, '2007-03-18 10:27:14.996577'); -INSERT INTO dvds.payment VALUES (19816, 297, 1, 13330, 2.99, '2007-03-19 18:27:47.996577'); -INSERT INTO dvds.payment VALUES (19817, 297, 2, 13721, 4.99, '2007-03-20 08:31:25.996577'); -INSERT INTO dvds.payment VALUES (19818, 297, 1, 13888, 1.99, '2007-03-20 14:08:08.996577'); -INSERT INTO dvds.payment VALUES (19819, 297, 1, 14403, 5.99, '2007-03-21 09:09:00.996577'); -INSERT INTO dvds.payment VALUES (19820, 297, 2, 15582, 2.99, '2007-03-23 04:14:10.996577'); -INSERT INTO dvds.payment VALUES (19821, 297, 1, 15711, 4.99, '2007-03-23 09:11:26.996577'); -INSERT INTO dvds.payment VALUES (19822, 298, 2, 10248, 6.99, '2007-03-01 01:03:54.996577'); -INSERT INTO dvds.payment VALUES (19823, 298, 1, 11070, 0.99, '2007-03-02 05:39:05.996577'); -INSERT INTO dvds.payment VALUES (19824, 298, 2, 11288, 6.99, '2007-03-02 13:22:34.996577'); -INSERT INTO dvds.payment VALUES (19825, 298, 2, 12076, 0.99, '2007-03-17 20:26:45.996577'); -INSERT INTO dvds.payment VALUES (19826, 298, 1, 12765, 8.99, '2007-03-18 21:50:16.996577'); -INSERT INTO dvds.payment VALUES (19827, 298, 1, 13172, 0.99, '2007-03-19 12:17:33.996577'); -INSERT INTO dvds.payment VALUES (19828, 298, 1, 13244, 4.99, '2007-03-19 15:11:30.996577'); -INSERT INTO dvds.payment VALUES (19829, 298, 2, 14473, 0.99, '2007-03-21 11:47:29.996577'); -INSERT INTO dvds.payment VALUES (19830, 298, 1, 15245, 3.99, '2007-03-22 16:18:01.996577'); -INSERT INTO dvds.payment VALUES (19831, 298, 2, 15262, 4.99, '2007-03-22 16:53:47.996577'); -INSERT INTO dvds.payment VALUES (19832, 298, 1, 15643, 4.99, '2007-03-23 06:41:52.996577'); -INSERT INTO dvds.payment VALUES (19833, 299, 2, 10440, 2.99, '2007-03-01 07:22:58.996577'); -INSERT INTO dvds.payment VALUES (19834, 299, 1, 11629, 6.99, '2007-03-17 02:55:50.996577'); -INSERT INTO dvds.payment VALUES (19835, 299, 1, 11746, 5.99, '2007-03-17 07:31:50.996577'); -INSERT INTO dvds.payment VALUES (19836, 299, 1, 11998, 0.99, '2007-03-17 17:14:47.996577'); -INSERT INTO dvds.payment VALUES (19837, 299, 1, 13069, 4.99, '2007-03-19 08:23:46.996577'); -INSERT INTO dvds.payment VALUES (19838, 299, 2, 14208, 0.99, '2007-03-21 02:37:44.996577'); -INSERT INTO dvds.payment VALUES (19839, 299, 1, 14548, 3.99, '2007-03-21 14:22:18.996577'); -INSERT INTO dvds.payment VALUES (19840, 299, 2, 14889, 4.99, '2007-03-22 02:38:36.996577'); -INSERT INTO dvds.payment VALUES (19841, 299, 2, 14898, 6.99, '2007-03-22 02:55:00.996577'); -INSERT INTO dvds.payment VALUES (19842, 300, 1, 10977, 4.99, '2007-03-02 02:40:43.996577'); -INSERT INTO dvds.payment VALUES (19843, 300, 2, 12484, 2.99, '2007-03-18 11:08:03.996577'); -INSERT INTO dvds.payment VALUES (19844, 300, 2, 12644, 5.99, '2007-03-18 16:50:53.996577'); -INSERT INTO dvds.payment VALUES (19845, 300, 2, 13257, 3.99, '2007-03-19 15:29:46.996577'); -INSERT INTO dvds.payment VALUES (19846, 300, 1, 13296, 0.99, '2007-03-19 17:12:19.996577'); -INSERT INTO dvds.payment VALUES (19847, 300, 2, 13499, 6.99, '2007-03-20 00:20:56.996577'); -INSERT INTO dvds.payment VALUES (19848, 300, 1, 13717, 5.99, '2007-03-20 08:19:18.996577'); -INSERT INTO dvds.payment VALUES (19849, 300, 1, 14674, 7.99, '2007-03-21 18:30:00.996577'); -INSERT INTO dvds.payment VALUES (19850, 300, 1, 14709, 9.99, '2007-03-21 19:36:25.996577'); -INSERT INTO dvds.payment VALUES (19851, 300, 2, 15051, 2.99, '2007-03-22 08:37:16.996577'); -INSERT INTO dvds.payment VALUES (19852, 300, 2, 15811, 5.99, '2007-03-23 13:12:12.996577'); -INSERT INTO dvds.payment VALUES (19853, 301, 1, 10883, 0.99, '2007-03-01 23:15:45.996577'); -INSERT INTO dvds.payment VALUES (19854, 301, 2, 13183, 5.99, '2007-03-19 12:37:52.996577'); -INSERT INTO dvds.payment VALUES (19855, 301, 2, 13633, 2.99, '2007-03-20 05:42:13.996577'); -INSERT INTO dvds.payment VALUES (19856, 301, 1, 15201, 10.99, '2007-03-22 14:53:08.996577'); -INSERT INTO dvds.payment VALUES (19857, 301, 1, 15268, 1.99, '2007-03-22 17:07:37.996577'); -INSERT INTO dvds.payment VALUES (19858, 302, 2, 10329, 0.99, '2007-03-01 03:24:39.996577'); -INSERT INTO dvds.payment VALUES (19859, 302, 1, 12126, 7.99, '2007-03-17 21:53:47.996577'); -INSERT INTO dvds.payment VALUES (19860, 302, 2, 12516, 4.99, '2007-03-18 12:08:19.996577'); -INSERT INTO dvds.payment VALUES (19861, 302, 1, 12903, 2.99, '2007-03-19 02:38:04.996577'); -INSERT INTO dvds.payment VALUES (19862, 302, 1, 13916, 2.99, '2007-03-20 15:11:28.996577'); -INSERT INTO dvds.payment VALUES (19863, 302, 1, 14120, 4.99, '2007-03-20 23:53:26.996577'); -INSERT INTO dvds.payment VALUES (19864, 302, 2, 14247, 3.99, '2007-03-21 04:03:43.996577'); -INSERT INTO dvds.payment VALUES (19865, 302, 2, 15578, 2.99, '2007-03-23 04:05:39.996577'); -INSERT INTO dvds.payment VALUES (19866, 302, 1, 15622, 5.99, '2007-03-23 05:50:28.996577'); -INSERT INTO dvds.payment VALUES (19867, 302, 2, 15734, 0.99, '2007-03-23 10:08:34.996577'); -INSERT INTO dvds.payment VALUES (19868, 302, 2, 15987, 6.99, '2007-03-23 18:50:43.996577'); -INSERT INTO dvds.payment VALUES (19869, 303, 1, 11253, 4.99, '2007-03-02 12:11:10.996577'); -INSERT INTO dvds.payment VALUES (19870, 303, 2, 11673, 2.99, '2007-03-17 04:22:41.996577'); -INSERT INTO dvds.payment VALUES (19871, 303, 2, 11993, 2.99, '2007-03-17 16:56:15.996577'); -INSERT INTO dvds.payment VALUES (19872, 303, 2, 12117, 0.99, '2007-03-17 21:39:38.996577'); -INSERT INTO dvds.payment VALUES (19873, 303, 1, 12365, 0.99, '2007-03-18 06:23:35.996577'); -INSERT INTO dvds.payment VALUES (19874, 303, 2, 12473, 2.99, '2007-03-18 10:28:10.996577'); -INSERT INTO dvds.payment VALUES (19875, 303, 1, 14750, 5.99, '2007-03-21 21:37:58.996577'); -INSERT INTO dvds.payment VALUES (19876, 303, 2, 14795, 4.99, '2007-03-21 23:08:48.996577'); -INSERT INTO dvds.payment VALUES (19877, 303, 1, 15511, 3.99, '2007-03-23 01:24:08.996577'); -INSERT INTO dvds.payment VALUES (19878, 304, 1, 10631, 0.99, '2007-03-01 14:03:40.996577'); -INSERT INTO dvds.payment VALUES (19879, 304, 2, 11983, 4.99, '2007-03-17 16:42:21.996577'); -INSERT INTO dvds.payment VALUES (19880, 304, 1, 12540, 5.99, '2007-03-18 12:45:56.996577'); -INSERT INTO dvds.payment VALUES (19881, 304, 2, 13911, 3.99, '2007-03-20 14:59:59.996577'); -INSERT INTO dvds.payment VALUES (19882, 304, 1, 14023, 0.99, '2007-03-20 19:38:58.996577'); -INSERT INTO dvds.payment VALUES (19883, 304, 1, 14899, 4.99, '2007-03-22 02:55:04.996577'); -INSERT INTO dvds.payment VALUES (19884, 304, 1, 14945, 4.99, '2007-03-22 04:34:04.996577'); -INSERT INTO dvds.payment VALUES (19885, 305, 2, 10426, 4.99, '2007-03-01 06:54:34.996577'); -INSERT INTO dvds.payment VALUES (19886, 305, 2, 10929, 4.99, '2007-03-02 01:04:10.996577'); -INSERT INTO dvds.payment VALUES (19887, 305, 1, 10981, 2.99, '2007-03-02 02:46:19.996577'); -INSERT INTO dvds.payment VALUES (19888, 305, 2, 11035, 5.99, '2007-03-02 04:24:05.996577'); -INSERT INTO dvds.payment VALUES (19889, 305, 2, 11809, 3.99, '2007-03-17 10:20:05.996577'); -INSERT INTO dvds.payment VALUES (19890, 305, 2, 12592, 3.99, '2007-03-18 14:46:16.996577'); -INSERT INTO dvds.payment VALUES (19891, 305, 2, 12846, 0.99, '2007-03-19 00:31:52.996577'); -INSERT INTO dvds.payment VALUES (19892, 305, 1, 13782, 4.99, '2007-03-20 10:37:52.996577'); -INSERT INTO dvds.payment VALUES (19893, 305, 2, 15417, 2.99, '2007-03-22 22:22:30.996577'); -INSERT INTO dvds.payment VALUES (19894, 305, 1, 15612, 6.99, '2007-03-23 05:27:33.996577'); -INSERT INTO dvds.payment VALUES (19895, 306, 2, 10893, 5.99, '2007-03-01 23:40:39.996577'); -INSERT INTO dvds.payment VALUES (19896, 306, 2, 11142, 4.99, '2007-03-02 07:58:37.996577'); -INSERT INTO dvds.payment VALUES (19897, 306, 1, 11440, 0.99, '2007-03-02 18:52:28.996577'); -INSERT INTO dvds.payment VALUES (19898, 306, 2, 11674, 6.99, '2007-03-17 04:24:53.996577'); -INSERT INTO dvds.payment VALUES (19899, 306, 2, 11776, 0.99, '2007-03-17 08:55:45.996577'); -INSERT INTO dvds.payment VALUES (19900, 306, 1, 12225, 7.99, '2007-03-18 01:28:37.996577'); -INSERT INTO dvds.payment VALUES (19901, 306, 1, 12989, 2.99, '2007-03-19 05:47:30.996577'); -INSERT INTO dvds.payment VALUES (19902, 306, 1, 13686, 4.99, '2007-03-20 07:25:54.996577'); -INSERT INTO dvds.payment VALUES (19903, 306, 2, 13725, 5.99, '2007-03-20 08:36:53.996577'); -INSERT INTO dvds.payment VALUES (19904, 306, 1, 13873, 0.99, '2007-03-20 13:39:37.996577'); -INSERT INTO dvds.payment VALUES (19905, 306, 1, 13996, 4.99, '2007-03-20 18:14:09.996577'); -INSERT INTO dvds.payment VALUES (19906, 306, 1, 15457, 2.99, '2007-03-22 23:36:03.996577'); -INSERT INTO dvds.payment VALUES (19907, 306, 2, 15868, 7.99, '2007-03-23 14:47:40.996577'); -INSERT INTO dvds.payment VALUES (19908, 307, 1, 10374, 0.99, '2007-03-01 04:53:53.996577'); -INSERT INTO dvds.payment VALUES (19909, 307, 1, 10745, 2.99, '2007-03-01 18:25:32.996577'); -INSERT INTO dvds.payment VALUES (19910, 307, 1, 11491, 7.99, '2007-03-02 21:13:16.996577'); -INSERT INTO dvds.payment VALUES (19911, 307, 2, 12391, 4.99, '2007-03-18 07:21:19.996577'); -INSERT INTO dvds.payment VALUES (19912, 307, 2, 13365, 6.99, '2007-03-19 19:41:03.996577'); -INSERT INTO dvds.payment VALUES (19913, 307, 1, 14231, 0.99, '2007-03-21 03:33:00.996577'); -INSERT INTO dvds.payment VALUES (19914, 307, 2, 15515, 4.99, '2007-03-23 01:32:19.996577'); -INSERT INTO dvds.payment VALUES (19915, 308, 1, 10571, 2.99, '2007-03-01 11:53:56.996577'); -INSERT INTO dvds.payment VALUES (19916, 308, 2, 10797, 0.99, '2007-03-01 20:31:17.996577'); -INSERT INTO dvds.payment VALUES (19917, 308, 1, 10819, 4.99, '2007-03-01 21:21:23.996577'); -INSERT INTO dvds.payment VALUES (19918, 308, 1, 11765, 2.99, '2007-03-17 08:23:54.996577'); -INSERT INTO dvds.payment VALUES (19919, 308, 1, 11972, 4.99, '2007-03-17 16:24:12.996577'); -INSERT INTO dvds.payment VALUES (19920, 308, 2, 12567, 3.99, '2007-03-18 13:43:02.996577'); -INSERT INTO dvds.payment VALUES (19921, 308, 1, 12590, 6.99, '2007-03-18 14:40:01.996577'); -INSERT INTO dvds.payment VALUES (19922, 308, 2, 12838, 6.99, '2007-03-19 00:20:16.996577'); -INSERT INTO dvds.payment VALUES (19923, 308, 1, 13843, 2.99, '2007-03-20 12:58:27.996577'); -INSERT INTO dvds.payment VALUES (19924, 308, 2, 14946, 2.99, '2007-03-22 04:35:36.996577'); -INSERT INTO dvds.payment VALUES (19925, 308, 1, 15243, 4.99, '2007-03-22 16:16:54.996577'); -INSERT INTO dvds.payment VALUES (19926, 308, 2, 15493, 4.99, '2007-03-23 00:49:19.996577'); -INSERT INTO dvds.payment VALUES (19927, 308, 2, 15820, 2.99, '2007-03-23 13:31:39.996577'); -INSERT INTO dvds.payment VALUES (19928, 309, 1, 10458, 2.99, '2007-03-01 07:48:14.996577'); -INSERT INTO dvds.payment VALUES (19929, 309, 1, 10728, 0.99, '2007-03-01 17:43:35.996577'); -INSERT INTO dvds.payment VALUES (19930, 309, 1, 10818, 2.99, '2007-03-01 21:21:11.996577'); -INSERT INTO dvds.payment VALUES (19931, 309, 2, 11964, 6.99, '2007-03-17 16:05:29.996577'); -INSERT INTO dvds.payment VALUES (19932, 309, 2, 13021, 5.99, '2007-03-19 06:36:30.996577'); -INSERT INTO dvds.payment VALUES (19933, 309, 2, 13502, 0.99, '2007-03-20 00:26:41.996577'); -INSERT INTO dvds.payment VALUES (19934, 309, 2, 13909, 4.99, '2007-03-20 14:55:02.996577'); -INSERT INTO dvds.payment VALUES (19935, 309, 2, 14846, 5.99, '2007-03-22 00:42:14.996577'); -INSERT INTO dvds.payment VALUES (19936, 309, 2, 15422, 4.99, '2007-03-22 22:26:35.996577'); -INSERT INTO dvds.payment VALUES (19937, 310, 2, 11137, 2.99, '2007-03-02 07:53:57.996577'); -INSERT INTO dvds.payment VALUES (19938, 310, 2, 12500, 4.99, '2007-03-18 11:34:17.996577'); -INSERT INTO dvds.payment VALUES (19939, 310, 2, 12710, 7.99, '2007-03-18 19:31:16.996577'); -INSERT INTO dvds.payment VALUES (19940, 310, 1, 12929, 4.99, '2007-03-19 03:33:49.996577'); -INSERT INTO dvds.payment VALUES (19941, 310, 1, 14972, 5.99, '2007-03-22 05:21:47.996577'); -INSERT INTO dvds.payment VALUES (19942, 311, 2, 10448, 4.99, '2007-03-01 07:37:57.996577'); -INSERT INTO dvds.payment VALUES (19943, 311, 1, 12997, 2.99, '2007-03-19 06:00:12.996577'); -INSERT INTO dvds.payment VALUES (19944, 311, 2, 13310, 0.99, '2007-03-19 17:33:42.996577'); -INSERT INTO dvds.payment VALUES (19945, 311, 2, 13423, 1.99, '2007-03-19 21:36:08.996577'); -INSERT INTO dvds.payment VALUES (19946, 311, 2, 14517, 4.99, '2007-03-21 13:25:29.996577'); -INSERT INTO dvds.payment VALUES (19947, 311, 2, 15826, 9.99, '2007-03-23 13:43:28.996577'); -INSERT INTO dvds.payment VALUES (19948, 311, 1, 16020, 8.99, '2007-03-23 20:02:59.996577'); -INSERT INTO dvds.payment VALUES (19949, 312, 2, 10858, 2.99, '2007-03-01 22:37:05.996577'); -INSERT INTO dvds.payment VALUES (19950, 312, 2, 11248, 0.99, '2007-03-02 12:04:00.996577'); -INSERT INTO dvds.payment VALUES (19951, 312, 2, 11879, 5.99, '2007-03-17 12:53:35.996577'); -INSERT INTO dvds.payment VALUES (19952, 312, 1, 12186, 2.99, '2007-03-18 00:12:02.996577'); -INSERT INTO dvds.payment VALUES (19953, 312, 1, 12945, 0.99, '2007-03-19 04:20:12.996577'); -INSERT INTO dvds.payment VALUES (19954, 312, 2, 14362, 2.99, '2007-03-21 07:48:15.996577'); -INSERT INTO dvds.payment VALUES (19955, 312, 1, 14504, 3.99, '2007-03-21 12:51:27.996577'); -INSERT INTO dvds.payment VALUES (19956, 312, 1, 15100, 4.99, '2007-03-22 10:23:29.996577'); -INSERT INTO dvds.payment VALUES (19957, 312, 1, 15882, 6.99, '2007-03-23 15:12:57.996577'); -INSERT INTO dvds.payment VALUES (19958, 313, 2, 10237, 5.99, '2007-03-01 00:35:58.996577'); -INSERT INTO dvds.payment VALUES (19959, 313, 2, 10933, 7.99, '2007-03-02 01:19:15.996577'); -INSERT INTO dvds.payment VALUES (19960, 313, 2, 11854, 2.99, '2007-03-17 12:11:18.996577'); -INSERT INTO dvds.payment VALUES (19961, 313, 2, 12011, 2.99, '2007-03-17 17:48:10.996577'); -INSERT INTO dvds.payment VALUES (19962, 313, 2, 14250, 2.99, '2007-03-21 04:08:01.996577'); -INSERT INTO dvds.payment VALUES (19963, 313, 1, 14325, 4.99, '2007-03-21 06:44:04.996577'); -INSERT INTO dvds.payment VALUES (19964, 313, 2, 15081, 2.99, '2007-03-22 09:42:57.996577'); -INSERT INTO dvds.payment VALUES (19965, 313, 1, 15340, 0.99, '2007-03-22 19:24:22.996577'); -INSERT INTO dvds.payment VALUES (19966, 313, 2, 15569, 6.99, '2007-03-23 03:52:55.996577'); -INSERT INTO dvds.payment VALUES (19967, 314, 2, 11908, 3.99, '2007-03-17 14:11:35.996577'); -INSERT INTO dvds.payment VALUES (19968, 314, 1, 12434, 0.99, '2007-03-18 09:06:34.996577'); -INSERT INTO dvds.payment VALUES (19969, 314, 2, 13120, 3.99, '2007-03-19 10:16:04.996577'); -INSERT INTO dvds.payment VALUES (19970, 314, 1, 13265, 2.99, '2007-03-19 15:57:26.996577'); -INSERT INTO dvds.payment VALUES (19971, 314, 2, 13553, 3.99, '2007-03-20 02:35:47.996577'); -INSERT INTO dvds.payment VALUES (19972, 314, 2, 14145, 4.99, '2007-03-21 00:40:04.996577'); -INSERT INTO dvds.payment VALUES (19973, 314, 1, 14409, 4.99, '2007-03-21 09:22:01.996577'); -INSERT INTO dvds.payment VALUES (19974, 314, 2, 14682, 4.99, '2007-03-21 18:54:23.996577'); -INSERT INTO dvds.payment VALUES (19975, 314, 2, 14815, 4.99, '2007-03-21 23:41:10.996577'); -INSERT INTO dvds.payment VALUES (19976, 314, 2, 14873, 5.99, '2007-03-22 01:59:32.996577'); -INSERT INTO dvds.payment VALUES (19977, 314, 2, 16021, 3.99, '2007-03-23 20:06:25.996577'); -INSERT INTO dvds.payment VALUES (19978, 315, 2, 11254, 0.99, '2007-03-02 12:12:15.996577'); -INSERT INTO dvds.payment VALUES (19979, 315, 2, 12155, 2.99, '2007-03-17 22:52:56.996577'); -INSERT INTO dvds.payment VALUES (19980, 315, 1, 14106, 2.99, '2007-03-20 23:14:27.996577'); -INSERT INTO dvds.payment VALUES (19981, 315, 2, 14162, 2.99, '2007-03-21 01:24:00.996577'); -INSERT INTO dvds.payment VALUES (19982, 315, 1, 15504, 6.99, '2007-03-23 01:13:47.996577'); -INSERT INTO dvds.payment VALUES (19983, 316, 1, 10438, 7.99, '2007-03-01 07:21:30.996577'); -INSERT INTO dvds.payment VALUES (19984, 316, 1, 12028, 0.99, '2007-03-17 18:32:13.996577'); -INSERT INTO dvds.payment VALUES (19985, 316, 2, 12191, 0.99, '2007-03-18 00:25:37.996577'); -INSERT INTO dvds.payment VALUES (19986, 316, 2, 12823, 2.99, '2007-03-18 23:44:13.996577'); -INSERT INTO dvds.payment VALUES (19987, 316, 2, 13277, 5.99, '2007-03-19 16:26:01.996577'); -INSERT INTO dvds.payment VALUES (19988, 316, 1, 14226, 2.99, '2007-03-21 03:24:03.996577'); -INSERT INTO dvds.payment VALUES (19989, 316, 2, 15840, 2.99, '2007-03-23 14:03:15.996577'); -INSERT INTO dvds.payment VALUES (19990, 317, 1, 10364, 2.99, '2007-03-01 04:35:15.996577'); -INSERT INTO dvds.payment VALUES (19991, 317, 2, 12111, 2.99, '2007-03-17 21:28:21.996577'); -INSERT INTO dvds.payment VALUES (19992, 317, 2, 12138, 7.99, '2007-03-17 22:24:20.996577'); -INSERT INTO dvds.payment VALUES (19993, 317, 2, 12301, 2.99, '2007-03-18 04:04:46.996577'); -INSERT INTO dvds.payment VALUES (19994, 317, 1, 13388, 4.99, '2007-03-19 20:15:15.996577'); -INSERT INTO dvds.payment VALUES (19995, 317, 1, 14032, 5.99, '2007-03-20 19:55:21.996577'); -INSERT INTO dvds.payment VALUES (19996, 317, 2, 14385, 0.99, '2007-03-21 08:31:21.996577'); -INSERT INTO dvds.payment VALUES (19997, 317, 2, 14669, 2.99, '2007-03-21 18:22:32.996577'); -INSERT INTO dvds.payment VALUES (19998, 317, 1, 14791, 4.99, '2007-03-21 23:04:21.996577'); -INSERT INTO dvds.payment VALUES (19999, 317, 1, 15204, 2.99, '2007-03-22 14:59:09.996577'); -INSERT INTO dvds.payment VALUES (20000, 317, 1, 15280, 4.99, '2007-03-22 17:38:18.996577'); -INSERT INTO dvds.payment VALUES (20001, 318, 1, 14276, 2.99, '2007-03-21 05:02:31.996577'); -INSERT INTO dvds.payment VALUES (20002, 319, 1, 11575, 0.99, '2007-03-17 00:18:52.996577'); -INSERT INTO dvds.payment VALUES (20003, 319, 2, 11598, 0.99, '2007-03-17 01:31:33.996577'); -INSERT INTO dvds.payment VALUES (20004, 319, 1, 11955, 6.99, '2007-03-17 15:50:01.996577'); -INSERT INTO dvds.payment VALUES (20005, 319, 2, 11994, 2.99, '2007-03-17 16:58:01.996577'); -INSERT INTO dvds.payment VALUES (20006, 319, 1, 12018, 4.99, '2007-03-17 18:13:12.996577'); -INSERT INTO dvds.payment VALUES (20007, 319, 2, 12424, 8.99, '2007-03-18 08:45:23.996577'); -INSERT INTO dvds.payment VALUES (20008, 319, 1, 13548, 3.99, '2007-03-20 02:21:46.996577'); -INSERT INTO dvds.payment VALUES (20009, 319, 2, 14828, 4.99, '2007-03-22 00:02:31.996577'); -INSERT INTO dvds.payment VALUES (20010, 319, 2, 15396, 5.99, '2007-03-22 21:36:23.996577'); -INSERT INTO dvds.payment VALUES (20011, 320, 1, 11208, 0.99, '2007-03-02 10:31:03.996577'); -INSERT INTO dvds.payment VALUES (20012, 320, 2, 11560, 2.99, '2007-03-16 23:48:56.996577'); -INSERT INTO dvds.payment VALUES (20013, 320, 2, 14171, 0.99, '2007-03-21 01:29:08.996577'); -INSERT INTO dvds.payment VALUES (20014, 320, 1, 15302, 2.99, '2007-03-22 18:13:19.996577'); -INSERT INTO dvds.payment VALUES (20015, 321, 1, 11722, 2.99, '2007-03-17 06:21:29.996577'); -INSERT INTO dvds.payment VALUES (20016, 321, 1, 12033, 6.99, '2007-03-17 18:43:00.996577'); -INSERT INTO dvds.payment VALUES (20017, 321, 2, 12034, 7.99, '2007-03-17 18:43:57.996577'); -INSERT INTO dvds.payment VALUES (20018, 321, 1, 12398, 4.99, '2007-03-18 07:41:50.996577'); -INSERT INTO dvds.payment VALUES (20019, 321, 2, 13623, 6.99, '2007-03-20 05:18:12.996577'); -INSERT INTO dvds.payment VALUES (20020, 321, 1, 15673, 6.99, '2007-03-23 07:41:16.996577'); -INSERT INTO dvds.payment VALUES (20021, 321, 2, 15888, 5.99, '2007-03-23 15:24:40.996577'); -INSERT INTO dvds.payment VALUES (20022, 322, 2, 11120, 4.99, '2007-03-02 07:15:30.996577'); -INSERT INTO dvds.payment VALUES (20023, 322, 2, 11456, 0.99, '2007-03-02 19:42:30.996577'); -INSERT INTO dvds.payment VALUES (20024, 322, 2, 13180, 4.99, '2007-03-19 12:29:04.996577'); -INSERT INTO dvds.payment VALUES (20025, 322, 1, 13650, 9.99, '2007-03-20 06:17:32.996577'); -INSERT INTO dvds.payment VALUES (20026, 322, 2, 14042, 4.99, '2007-03-20 20:14:17.996577'); -INSERT INTO dvds.payment VALUES (20027, 322, 1, 15450, 0.99, '2007-03-22 23:24:27.996577'); -INSERT INTO dvds.payment VALUES (20028, 322, 2, 15703, 8.99, '2007-03-23 08:52:14.996577'); -INSERT INTO dvds.payment VALUES (20029, 323, 1, 10298, 0.99, '2007-03-01 02:34:29.996577'); -INSERT INTO dvds.payment VALUES (20030, 323, 1, 10994, 3.99, '2007-03-02 03:15:19.996577'); -INSERT INTO dvds.payment VALUES (20031, 323, 2, 11548, 0.99, '2007-03-16 23:28:13.996577'); -INSERT INTO dvds.payment VALUES (20032, 323, 1, 12120, 4.99, '2007-03-17 21:45:12.996577'); -INSERT INTO dvds.payment VALUES (20033, 323, 1, 12169, 2.99, '2007-03-17 23:34:20.996577'); -INSERT INTO dvds.payment VALUES (20034, 323, 1, 13140, 5.99, '2007-03-19 11:04:22.996577'); -INSERT INTO dvds.payment VALUES (20035, 323, 1, 14224, 2.99, '2007-03-21 03:21:34.996577'); -INSERT INTO dvds.payment VALUES (20036, 323, 1, 14957, 3.99, '2007-03-22 04:58:00.996577'); -INSERT INTO dvds.payment VALUES (20037, 323, 1, 15387, 4.99, '2007-03-22 21:17:39.996577'); -INSERT INTO dvds.payment VALUES (20038, 323, 1, 15728, 0.99, '2007-03-23 09:58:58.996577'); -INSERT INTO dvds.payment VALUES (20039, 324, 1, 11617, 2.99, '2007-03-17 02:29:06.996577'); -INSERT INTO dvds.payment VALUES (20040, 324, 1, 11771, 6.99, '2007-03-17 08:45:35.996577'); -INSERT INTO dvds.payment VALUES (20041, 324, 2, 12543, 2.99, '2007-03-18 12:52:21.996577'); -INSERT INTO dvds.payment VALUES (20042, 324, 2, 13356, 0.99, '2007-03-19 19:30:47.996577'); -INSERT INTO dvds.payment VALUES (20043, 324, 1, 13386, 2.99, '2007-03-19 20:12:24.996577'); -INSERT INTO dvds.payment VALUES (20044, 324, 1, 14262, 8.99, '2007-03-21 04:36:39.996577'); -INSERT INTO dvds.payment VALUES (20045, 324, 2, 14479, 7.99, '2007-03-21 12:04:20.996577'); -INSERT INTO dvds.payment VALUES (20046, 324, 1, 15263, 4.99, '2007-03-22 16:55:59.996577'); -INSERT INTO dvds.payment VALUES (20047, 325, 2, 10326, 4.99, '2007-03-01 03:24:00.996577'); -INSERT INTO dvds.payment VALUES (20048, 325, 1, 10412, 0.99, '2007-03-01 06:25:42.996577'); -INSERT INTO dvds.payment VALUES (20049, 325, 2, 12097, 4.99, '2007-03-17 21:03:50.996577'); -INSERT INTO dvds.payment VALUES (20050, 325, 1, 12779, 3.99, '2007-03-18 22:12:26.996577'); -INSERT INTO dvds.payment VALUES (20051, 325, 2, 13054, 4.99, '2007-03-19 08:02:28.996577'); -INSERT INTO dvds.payment VALUES (20052, 325, 2, 14452, 3.99, '2007-03-21 10:51:46.996577'); -INSERT INTO dvds.payment VALUES (20053, 325, 1, 14672, 5.99, '2007-03-21 18:27:59.996577'); -INSERT INTO dvds.payment VALUES (20054, 325, 2, 15009, 0.99, '2007-03-22 06:55:53.996577'); -INSERT INTO dvds.payment VALUES (20055, 326, 2, 10720, 0.99, '2007-03-01 17:32:59.996577'); -INSERT INTO dvds.payment VALUES (20056, 326, 2, 10976, 4.99, '2007-03-02 02:40:14.996577'); -INSERT INTO dvds.payment VALUES (20057, 326, 2, 11010, 0.99, '2007-03-02 03:34:53.996577'); -INSERT INTO dvds.payment VALUES (20058, 326, 2, 11428, 2.99, '2007-03-02 18:31:36.996577'); -INSERT INTO dvds.payment VALUES (20059, 326, 2, 11485, 4.99, '2007-03-02 21:01:51.996577'); -INSERT INTO dvds.payment VALUES (20060, 326, 2, 12829, 2.99, '2007-03-19 00:06:44.996577'); -INSERT INTO dvds.payment VALUES (20061, 327, 1, 10371, 0.99, '2007-03-01 04:48:55.996577'); -INSERT INTO dvds.payment VALUES (20062, 327, 1, 11372, 4.99, '2007-03-02 16:39:16.996577'); -INSERT INTO dvds.payment VALUES (20063, 327, 2, 11929, 6.99, '2007-03-17 14:57:17.996577'); -INSERT INTO dvds.payment VALUES (20064, 327, 1, 12016, 0.99, '2007-03-17 18:01:50.996577'); -INSERT INTO dvds.payment VALUES (20065, 327, 2, 13158, 2.99, '2007-03-19 11:46:36.996577'); -INSERT INTO dvds.payment VALUES (20066, 327, 1, 13360, 4.99, '2007-03-19 19:33:37.996577'); -INSERT INTO dvds.payment VALUES (20067, 327, 1, 13448, 0.99, '2007-03-19 22:41:09.996577'); -INSERT INTO dvds.payment VALUES (20068, 327, 1, 14847, 4.99, '2007-03-22 00:42:17.996577'); -INSERT INTO dvds.payment VALUES (20069, 327, 2, 15365, 3.99, '2007-03-22 20:10:43.996577'); -INSERT INTO dvds.payment VALUES (20070, 327, 1, 15386, 2.99, '2007-03-22 21:09:40.996577'); -INSERT INTO dvds.payment VALUES (20071, 327, 1, 15828, 5.99, '2007-03-23 13:44:58.996577'); -INSERT INTO dvds.payment VALUES (20072, 327, 1, 15916, 9.99, '2007-03-23 16:24:27.996577'); -INSERT INTO dvds.payment VALUES (20073, 327, 2, 15969, 7.99, '2007-03-23 18:19:56.996577'); -INSERT INTO dvds.payment VALUES (20074, 328, 1, 11174, 2.99, '2007-03-02 09:00:37.996577'); -INSERT INTO dvds.payment VALUES (20075, 328, 1, 12175, 4.99, '2007-03-17 23:38:43.996577'); -INSERT INTO dvds.payment VALUES (20076, 328, 2, 12825, 0.99, '2007-03-18 23:52:24.996577'); -INSERT INTO dvds.payment VALUES (20077, 328, 1, 13609, 2.99, '2007-03-20 04:40:17.996577'); -INSERT INTO dvds.payment VALUES (20078, 328, 2, 13681, 7.99, '2007-03-20 07:16:03.996577'); -INSERT INTO dvds.payment VALUES (20079, 328, 1, 13907, 3.99, '2007-03-20 14:45:53.996577'); -INSERT INTO dvds.payment VALUES (20080, 328, 2, 14307, 3.99, '2007-03-21 06:03:18.996577'); -INSERT INTO dvds.payment VALUES (20081, 328, 1, 14755, 3.99, '2007-03-21 21:46:34.996577'); -INSERT INTO dvds.payment VALUES (20082, 328, 2, 14939, 2.99, '2007-03-22 04:22:18.996577'); -INSERT INTO dvds.payment VALUES (20083, 328, 1, 15179, 4.99, '2007-03-22 14:04:48.996577'); -INSERT INTO dvds.payment VALUES (20084, 328, 1, 15863, 0.99, '2007-03-23 14:45:35.996577'); -INSERT INTO dvds.payment VALUES (20085, 329, 1, 10473, 7.99, '2007-03-01 08:24:50.996577'); -INSERT INTO dvds.payment VALUES (20086, 329, 2, 10490, 0.99, '2007-03-01 09:05:37.996577'); -INSERT INTO dvds.payment VALUES (20087, 329, 1, 11130, 2.99, '2007-03-02 07:37:25.996577'); -INSERT INTO dvds.payment VALUES (20088, 329, 2, 11169, 3.99, '2007-03-02 08:48:08.996577'); -INSERT INTO dvds.payment VALUES (20089, 329, 2, 11697, 0.99, '2007-03-17 05:37:45.996577'); -INSERT INTO dvds.payment VALUES (20090, 329, 1, 12659, 6.99, '2007-03-18 17:34:15.996577'); -INSERT INTO dvds.payment VALUES (20091, 329, 1, 13627, 8.99, '2007-03-20 05:27:26.996577'); -INSERT INTO dvds.payment VALUES (20092, 329, 1, 14900, 4.99, '2007-03-22 02:56:14.996577'); -INSERT INTO dvds.payment VALUES (20093, 329, 2, 15011, 4.99, '2007-03-22 06:59:33.996577'); -INSERT INTO dvds.payment VALUES (20094, 329, 1, 15308, 2.99, '2007-03-22 18:22:57.996577'); -INSERT INTO dvds.payment VALUES (20095, 330, 2, 11259, 3.99, '2007-03-02 12:14:56.996577'); -INSERT INTO dvds.payment VALUES (20096, 330, 1, 12062, 2.99, '2007-03-17 19:53:13.996577'); -INSERT INTO dvds.payment VALUES (20097, 330, 1, 12394, 2.99, '2007-03-18 07:33:41.996577'); -INSERT INTO dvds.payment VALUES (20098, 330, 1, 12740, 4.99, '2007-03-18 20:45:30.996577'); -INSERT INTO dvds.payment VALUES (20099, 330, 1, 12867, 0.99, '2007-03-19 01:08:37.996577'); -INSERT INTO dvds.payment VALUES (20100, 331, 1, 11052, 5.99, '2007-03-02 04:54:45.996577'); -INSERT INTO dvds.payment VALUES (20101, 331, 1, 11362, 2.99, '2007-03-02 16:15:51.996577'); -INSERT INTO dvds.payment VALUES (20102, 331, 2, 12533, 4.99, '2007-03-18 12:30:06.996577'); -INSERT INTO dvds.payment VALUES (20103, 331, 1, 13795, 0.99, '2007-03-20 11:00:35.996577'); -INSERT INTO dvds.payment VALUES (20104, 331, 1, 14256, 7.99, '2007-03-21 04:20:53.996577'); -INSERT INTO dvds.payment VALUES (20105, 331, 1, 14628, 1.99, '2007-03-21 17:05:50.996577'); -INSERT INTO dvds.payment VALUES (20106, 331, 1, 15339, 2.99, '2007-03-22 19:20:38.996577'); -INSERT INTO dvds.payment VALUES (20107, 331, 2, 15447, 3.99, '2007-03-22 23:22:23.996577'); -INSERT INTO dvds.payment VALUES (20108, 331, 1, 15521, 2.99, '2007-03-23 01:59:17.996577'); -INSERT INTO dvds.payment VALUES (20109, 332, 1, 10307, 0.99, '2007-03-01 02:50:20.996577'); -INSERT INTO dvds.payment VALUES (20110, 332, 2, 10439, 0.99, '2007-03-01 07:22:52.996577'); -INSERT INTO dvds.payment VALUES (20111, 332, 1, 11229, 5.99, '2007-03-02 11:25:03.996577'); -INSERT INTO dvds.payment VALUES (20112, 332, 2, 11564, 2.99, '2007-03-16 23:56:15.996577'); -INSERT INTO dvds.payment VALUES (20113, 332, 2, 12318, 4.99, '2007-03-18 04:50:22.996577'); -INSERT INTO dvds.payment VALUES (20114, 332, 2, 13673, 2.99, '2007-03-20 06:55:56.996577'); -INSERT INTO dvds.payment VALUES (20115, 332, 2, 14783, 4.99, '2007-03-21 22:50:23.996577'); -INSERT INTO dvds.payment VALUES (20116, 332, 2, 15194, 0.99, '2007-03-22 14:36:00.996577'); -INSERT INTO dvds.payment VALUES (20117, 332, 1, 15210, 3.99, '2007-03-22 15:06:02.996577'); -INSERT INTO dvds.payment VALUES (20118, 333, 2, 10844, 4.99, '2007-03-01 22:15:24.996577'); -INSERT INTO dvds.payment VALUES (20119, 333, 1, 12427, 6.99, '2007-03-18 08:52:43.996577'); -INSERT INTO dvds.payment VALUES (20120, 333, 2, 12661, 0.99, '2007-03-18 17:38:36.996577'); -INSERT INTO dvds.payment VALUES (20121, 333, 1, 13579, 3.99, '2007-03-20 03:50:32.996577'); -INSERT INTO dvds.payment VALUES (20122, 333, 2, 13710, 4.99, '2007-03-20 08:03:46.996577'); -INSERT INTO dvds.payment VALUES (20123, 333, 1, 14057, 4.99, '2007-03-20 20:51:25.996577'); -INSERT INTO dvds.payment VALUES (20124, 333, 1, 14740, 2.99, '2007-03-21 21:03:59.996577'); -INSERT INTO dvds.payment VALUES (20125, 333, 2, 15253, 2.99, '2007-03-22 16:33:47.996577'); -INSERT INTO dvds.payment VALUES (20126, 333, 1, 15313, 4.99, '2007-03-22 18:28:08.996577'); -INSERT INTO dvds.payment VALUES (20127, 334, 1, 10408, 4.99, '2007-03-01 06:10:36.996577'); -INSERT INTO dvds.payment VALUES (20128, 334, 1, 10492, 2.99, '2007-03-01 09:10:54.996577'); -INSERT INTO dvds.payment VALUES (20129, 334, 1, 10879, 1.99, '2007-03-01 23:01:46.996577'); -INSERT INTO dvds.payment VALUES (20130, 334, 2, 10997, 7.99, '2007-03-02 03:17:28.996577'); -INSERT INTO dvds.payment VALUES (20131, 334, 2, 12677, 4.99, '2007-03-18 18:04:31.996577'); -INSERT INTO dvds.payment VALUES (20132, 334, 2, 13325, 4.99, '2007-03-19 18:20:28.996577'); -INSERT INTO dvds.payment VALUES (20133, 334, 1, 13876, 2.99, '2007-03-20 13:43:54.996577'); -INSERT INTO dvds.payment VALUES (20134, 334, 1, 14645, 0.99, '2007-03-21 17:41:13.996577'); -INSERT INTO dvds.payment VALUES (20135, 334, 1, 14984, 7.99, '2007-03-22 06:03:57.996577'); -INSERT INTO dvds.payment VALUES (20136, 334, 2, 15548, 0.99, '2007-03-23 02:54:46.996577'); -INSERT INTO dvds.payment VALUES (20137, 334, 2, 15656, 4.99, '2007-03-23 07:07:24.996577'); -INSERT INTO dvds.payment VALUES (20138, 334, 1, 15669, 3.99, '2007-03-23 07:34:43.996577'); -INSERT INTO dvds.payment VALUES (20139, 335, 2, 10606, 4.99, '2007-03-01 13:07:41.996577'); -INSERT INTO dvds.payment VALUES (20140, 335, 2, 13267, 0.99, '2007-03-19 16:00:02.996577'); -INSERT INTO dvds.payment VALUES (20141, 335, 1, 13622, 1.99, '2007-03-20 05:13:58.996577'); -INSERT INTO dvds.payment VALUES (20142, 335, 1, 14014, 2.99, '2007-03-20 19:15:35.996577'); -INSERT INTO dvds.payment VALUES (20143, 335, 2, 15005, 4.99, '2007-03-22 06:44:10.996577'); -INSERT INTO dvds.payment VALUES (20144, 335, 2, 15101, 0.99, '2007-03-22 10:24:28.996577'); -INSERT INTO dvds.payment VALUES (20145, 336, 2, 11743, 2.99, '2007-03-17 07:17:31.996577'); -INSERT INTO dvds.payment VALUES (20146, 336, 1, 12323, 8.99, '2007-03-18 05:04:48.996577'); -INSERT INTO dvds.payment VALUES (20147, 336, 2, 12794, 0.99, '2007-03-18 22:49:03.996577'); -INSERT INTO dvds.payment VALUES (20148, 336, 2, 12926, 3.99, '2007-03-19 03:28:42.996577'); -INSERT INTO dvds.payment VALUES (20149, 336, 2, 13066, 0.99, '2007-03-19 08:19:05.996577'); -INSERT INTO dvds.payment VALUES (20150, 336, 2, 13689, 4.99, '2007-03-20 07:32:56.996577'); -INSERT INTO dvds.payment VALUES (20151, 336, 1, 14295, 2.99, '2007-03-21 05:37:53.996577'); -INSERT INTO dvds.payment VALUES (20152, 336, 1, 15073, 10.99, '2007-03-22 09:29:41.996577'); -INSERT INTO dvds.payment VALUES (20153, 336, 2, 15848, 2.99, '2007-03-23 14:09:38.996577'); -INSERT INTO dvds.payment VALUES (20154, 337, 1, 10664, 0.99, '2007-03-01 15:19:41.996577'); -INSERT INTO dvds.payment VALUES (20155, 337, 2, 10765, 0.99, '2007-03-01 19:03:17.996577'); -INSERT INTO dvds.payment VALUES (20156, 337, 2, 11252, 2.99, '2007-03-02 12:10:39.996577'); -INSERT INTO dvds.payment VALUES (20157, 337, 1, 11734, 3.99, '2007-03-17 07:02:48.996577'); -INSERT INTO dvds.payment VALUES (20158, 337, 1, 12369, 6.99, '2007-03-18 06:26:09.996577'); -INSERT INTO dvds.payment VALUES (20159, 337, 2, 13305, 6.99, '2007-03-19 17:25:31.996577'); -INSERT INTO dvds.payment VALUES (20160, 337, 1, 13678, 4.99, '2007-03-20 07:06:50.996577'); -INSERT INTO dvds.payment VALUES (20161, 337, 2, 13892, 3.99, '2007-03-20 14:18:43.996577'); -INSERT INTO dvds.payment VALUES (20162, 337, 2, 14118, 5.99, '2007-03-20 23:42:03.996577'); -INSERT INTO dvds.payment VALUES (20163, 337, 2, 15241, 4.99, '2007-03-22 16:16:06.996577'); -INSERT INTO dvds.payment VALUES (20164, 337, 1, 15292, 4.99, '2007-03-22 17:57:22.996577'); -INSERT INTO dvds.payment VALUES (20165, 338, 2, 10791, 2.99, '2007-03-01 20:10:18.996577'); -INSERT INTO dvds.payment VALUES (20166, 338, 1, 10897, 0.99, '2007-03-01 23:52:08.996577'); -INSERT INTO dvds.payment VALUES (20167, 338, 2, 11064, 4.99, '2007-03-02 05:23:43.996577'); -INSERT INTO dvds.payment VALUES (20168, 338, 2, 11671, 4.99, '2007-03-17 04:18:47.996577'); -INSERT INTO dvds.payment VALUES (20169, 338, 2, 11719, 5.99, '2007-03-17 06:14:31.996577'); -INSERT INTO dvds.payment VALUES (20170, 338, 1, 12167, 2.99, '2007-03-17 23:28:28.996577'); -INSERT INTO dvds.payment VALUES (20171, 338, 1, 13284, 3.99, '2007-03-19 16:40:57.996577'); -INSERT INTO dvds.payment VALUES (20172, 338, 1, 14619, 2.99, '2007-03-21 16:38:29.996577'); -INSERT INTO dvds.payment VALUES (20173, 338, 2, 15105, 0.99, '2007-03-22 10:29:59.996577'); -INSERT INTO dvds.payment VALUES (20174, 338, 2, 15173, 6.99, '2007-03-22 13:54:55.996577'); -INSERT INTO dvds.payment VALUES (20175, 339, 2, 10338, 3.99, '2007-03-01 03:31:29.996577'); -INSERT INTO dvds.payment VALUES (20176, 339, 2, 11171, 4.99, '2007-03-02 08:52:07.996577'); -INSERT INTO dvds.payment VALUES (20177, 339, 1, 11550, 2.99, '2007-03-16 23:30:32.996577'); -INSERT INTO dvds.payment VALUES (20178, 339, 2, 11582, 3.99, '2007-03-17 00:32:15.996577'); -INSERT INTO dvds.payment VALUES (20179, 339, 2, 11699, 5.99, '2007-03-17 05:40:24.996577'); -INSERT INTO dvds.payment VALUES (20180, 339, 1, 12631, 0.99, '2007-03-18 16:21:17.996577'); -INSERT INTO dvds.payment VALUES (20181, 339, 1, 13199, 3.99, '2007-03-19 13:21:48.996577'); -INSERT INTO dvds.payment VALUES (20182, 339, 1, 13575, 5.99, '2007-03-20 03:43:46.996577'); -INSERT INTO dvds.payment VALUES (20183, 339, 1, 13985, 0.99, '2007-03-20 17:41:32.996577'); -INSERT INTO dvds.payment VALUES (20184, 339, 1, 14636, 4.99, '2007-03-21 17:27:43.996577'); -INSERT INTO dvds.payment VALUES (20185, 339, 2, 14758, 3.99, '2007-03-21 21:53:18.996577'); -INSERT INTO dvds.payment VALUES (20186, 340, 1, 10292, 2.99, '2007-03-01 02:11:06.996577'); -INSERT INTO dvds.payment VALUES (20187, 340, 1, 10667, 8.99, '2007-03-01 15:26:48.996577'); -INSERT INTO dvds.payment VALUES (20188, 340, 2, 10674, 3.99, '2007-03-01 15:40:18.996577'); -INSERT INTO dvds.payment VALUES (20189, 340, 1, 10809, 0.99, '2007-03-01 21:07:53.996577'); -INSERT INTO dvds.payment VALUES (20190, 340, 1, 10995, 0.99, '2007-03-02 03:16:26.996577'); -INSERT INTO dvds.payment VALUES (20191, 340, 2, 12598, 4.99, '2007-03-18 15:02:29.996577'); -INSERT INTO dvds.payment VALUES (20192, 340, 2, 12908, 1.99, '2007-03-19 02:47:31.996577'); -INSERT INTO dvds.payment VALUES (20193, 340, 2, 12940, 2.99, '2007-03-19 04:06:55.996577'); -INSERT INTO dvds.payment VALUES (20194, 340, 1, 13425, 2.99, '2007-03-19 21:40:10.996577'); -INSERT INTO dvds.payment VALUES (20195, 340, 1, 14457, 4.99, '2007-03-21 11:16:04.996577'); -INSERT INTO dvds.payment VALUES (20196, 340, 2, 14718, 0.99, '2007-03-21 20:07:51.996577'); -INSERT INTO dvds.payment VALUES (20197, 340, 1, 14895, 2.99, '2007-03-22 02:47:49.996577'); -INSERT INTO dvds.payment VALUES (20198, 340, 2, 15306, 2.99, '2007-03-22 18:15:02.996577'); -INSERT INTO dvds.payment VALUES (20199, 340, 1, 15378, 9.99, '2007-03-22 20:53:43.996577'); -INSERT INTO dvds.payment VALUES (20200, 341, 2, 10605, 0.99, '2007-03-01 13:04:52.996577'); -INSERT INTO dvds.payment VALUES (20201, 341, 1, 11305, 6.99, '2007-03-02 14:13:21.996577'); -INSERT INTO dvds.payment VALUES (20202, 341, 1, 11723, 2.99, '2007-03-17 06:24:48.996577'); -INSERT INTO dvds.payment VALUES (20203, 341, 2, 13059, 0.99, '2007-03-19 08:10:27.996577'); -INSERT INTO dvds.payment VALUES (20204, 341, 2, 13074, 8.99, '2007-03-19 08:35:19.996577'); -INSERT INTO dvds.payment VALUES (20205, 341, 2, 13806, 4.99, '2007-03-20 11:22:12.996577'); -INSERT INTO dvds.payment VALUES (20206, 341, 2, 14344, 4.99, '2007-03-21 07:09:22.996577'); -INSERT INTO dvds.payment VALUES (20207, 341, 2, 15030, 0.99, '2007-03-22 07:38:47.996577'); -INSERT INTO dvds.payment VALUES (20208, 341, 2, 15938, 6.99, '2007-03-23 17:11:57.996577'); -INSERT INTO dvds.payment VALUES (20209, 342, 1, 10242, 4.99, '2007-03-01 00:46:38.996577'); -INSERT INTO dvds.payment VALUES (20210, 342, 2, 11178, 2.99, '2007-03-02 09:16:36.996577'); -INSERT INTO dvds.payment VALUES (20211, 342, 2, 11446, 0.99, '2007-03-02 19:02:03.996577'); -INSERT INTO dvds.payment VALUES (20212, 342, 1, 11568, 0.99, '2007-03-16 23:58:27.996577'); -INSERT INTO dvds.payment VALUES (20213, 342, 1, 12139, 6.99, '2007-03-17 22:25:39.996577'); -INSERT INTO dvds.payment VALUES (20214, 342, 1, 12404, 4.99, '2007-03-18 08:05:00.996577'); -INSERT INTO dvds.payment VALUES (20215, 342, 1, 12522, 2.99, '2007-03-18 12:14:06.996577'); -INSERT INTO dvds.payment VALUES (20216, 342, 2, 12816, 4.99, '2007-03-18 23:32:31.996577'); -INSERT INTO dvds.payment VALUES (20217, 342, 2, 13368, 4.99, '2007-03-19 19:48:01.996577'); -INSERT INTO dvds.payment VALUES (20218, 342, 2, 13637, 4.99, '2007-03-20 05:49:41.996577'); -INSERT INTO dvds.payment VALUES (20219, 342, 1, 13755, 2.99, '2007-03-20 09:47:19.996577'); -INSERT INTO dvds.payment VALUES (20220, 342, 2, 13827, 4.99, '2007-03-20 12:15:45.996577'); -INSERT INTO dvds.payment VALUES (20221, 342, 2, 14096, 2.99, '2007-03-20 22:56:12.996577'); -INSERT INTO dvds.payment VALUES (20222, 342, 2, 14299, 0.99, '2007-03-21 05:47:23.996577'); -INSERT INTO dvds.payment VALUES (20223, 342, 2, 14683, 8.99, '2007-03-21 18:56:10.996577'); -INSERT INTO dvds.payment VALUES (20224, 342, 1, 15484, 4.99, '2007-03-23 00:33:15.996577'); -INSERT INTO dvds.payment VALUES (20225, 342, 1, 15895, 3.99, '2007-03-23 15:37:57.996577'); -INSERT INTO dvds.payment VALUES (20226, 343, 1, 10822, 0.99, '2007-03-01 21:22:54.996577'); -INSERT INTO dvds.payment VALUES (20227, 343, 1, 11212, 0.99, '2007-03-02 10:46:55.996577'); -INSERT INTO dvds.payment VALUES (20228, 343, 2, 11570, 2.99, '2007-03-17 00:02:58.996577'); -INSERT INTO dvds.payment VALUES (20229, 343, 2, 13279, 4.99, '2007-03-19 16:30:44.996577'); -INSERT INTO dvds.payment VALUES (20230, 343, 2, 13522, 3.99, '2007-03-20 01:12:32.996577'); -INSERT INTO dvds.payment VALUES (20231, 343, 2, 13866, 0.99, '2007-03-20 13:33:55.996577'); -INSERT INTO dvds.payment VALUES (20232, 343, 2, 15973, 5.99, '2007-03-23 18:33:07.996577'); -INSERT INTO dvds.payment VALUES (20233, 344, 2, 11116, 5.99, '2007-03-02 07:03:06.996577'); -INSERT INTO dvds.payment VALUES (20234, 344, 2, 12183, 5.99, '2007-03-18 00:02:39.996577'); -INSERT INTO dvds.payment VALUES (20235, 344, 2, 13014, 4.99, '2007-03-19 06:24:34.996577'); -INSERT INTO dvds.payment VALUES (20236, 344, 1, 13033, 3.99, '2007-03-19 07:03:05.996577'); -INSERT INTO dvds.payment VALUES (20237, 344, 1, 14621, 0.99, '2007-03-21 16:46:25.996577'); -INSERT INTO dvds.payment VALUES (20238, 344, 2, 14624, 0.99, '2007-03-21 17:01:08.996577'); -INSERT INTO dvds.payment VALUES (20239, 344, 1, 15215, 2.99, '2007-03-22 15:23:52.996577'); -INSERT INTO dvds.payment VALUES (20240, 345, 2, 10982, 4.99, '2007-03-02 02:47:37.996577'); -INSERT INTO dvds.payment VALUES (20241, 345, 1, 11865, 2.99, '2007-03-17 12:32:12.996577'); -INSERT INTO dvds.payment VALUES (20242, 345, 1, 12485, 4.99, '2007-03-18 11:10:07.996577'); -INSERT INTO dvds.payment VALUES (20243, 345, 2, 12805, 4.99, '2007-03-18 23:05:00.996577'); -INSERT INTO dvds.payment VALUES (20244, 345, 1, 14702, 10.99, '2007-03-21 19:28:29.996577'); -INSERT INTO dvds.payment VALUES (20245, 345, 1, 15551, 4.99, '2007-03-23 02:56:51.996577'); -INSERT INTO dvds.payment VALUES (20246, 346, 1, 10304, 5.99, '2007-03-01 02:42:38.996577'); -INSERT INTO dvds.payment VALUES (20247, 346, 2, 10389, 3.99, '2007-03-01 05:15:09.996577'); -INSERT INTO dvds.payment VALUES (20248, 346, 2, 10521, 0.99, '2007-03-01 10:14:43.996577'); -INSERT INTO dvds.payment VALUES (20249, 346, 2, 11062, 4.99, '2007-03-02 05:21:20.996577'); -INSERT INTO dvds.payment VALUES (20250, 346, 1, 11375, 4.99, '2007-03-02 16:43:22.996577'); -INSERT INTO dvds.payment VALUES (20251, 346, 2, 11470, 2.99, '2007-03-02 20:16:54.996577'); -INSERT INTO dvds.payment VALUES (20252, 346, 1, 14890, 5.99, '2007-03-22 02:39:15.996577'); -INSERT INTO dvds.payment VALUES (20253, 346, 2, 15459, 2.99, '2007-03-22 23:38:14.996577'); -INSERT INTO dvds.payment VALUES (20254, 346, 1, 15535, 0.99, '2007-03-23 02:26:28.996577'); -INSERT INTO dvds.payment VALUES (20255, 346, 1, 15661, 8.99, '2007-03-23 07:20:29.996577'); -INSERT INTO dvds.payment VALUES (20256, 346, 2, 15825, 5.99, '2007-03-23 13:39:08.996577'); -INSERT INTO dvds.payment VALUES (20257, 346, 1, 15827, 0.99, '2007-03-23 13:43:45.996577'); -INSERT INTO dvds.payment VALUES (20258, 347, 2, 11738, 8.99, '2007-03-17 07:14:21.996577'); -INSERT INTO dvds.payment VALUES (20259, 347, 1, 12195, 2.99, '2007-03-18 00:36:15.996577'); -INSERT INTO dvds.payment VALUES (20260, 347, 2, 12399, 10.99, '2007-03-18 07:42:08.996577'); -INSERT INTO dvds.payment VALUES (20261, 347, 2, 13314, 5.99, '2007-03-19 17:41:09.996577'); -INSERT INTO dvds.payment VALUES (20262, 347, 2, 14894, 4.99, '2007-03-22 02:45:22.996577'); -INSERT INTO dvds.payment VALUES (20263, 347, 2, 14958, 2.99, '2007-03-22 04:58:36.996577'); -INSERT INTO dvds.payment VALUES (20264, 347, 2, 15426, 2.99, '2007-03-22 22:35:45.996577'); -INSERT INTO dvds.payment VALUES (20265, 347, 2, 15555, 4.99, '2007-03-23 03:20:18.996577'); -INSERT INTO dvds.payment VALUES (20266, 348, 1, 10769, 2.99, '2007-03-01 19:11:28.996577'); -INSERT INTO dvds.payment VALUES (20267, 348, 2, 10972, 2.99, '2007-03-02 02:36:51.996577'); -INSERT INTO dvds.payment VALUES (20268, 348, 1, 11262, 2.99, '2007-03-02 12:27:21.996577'); -INSERT INTO dvds.payment VALUES (20269, 348, 1, 11429, 7.99, '2007-03-02 18:32:18.996577'); -INSERT INTO dvds.payment VALUES (20270, 348, 2, 12564, 2.99, '2007-03-18 13:40:01.996577'); -INSERT INTO dvds.payment VALUES (20271, 348, 2, 12884, 5.99, '2007-03-19 02:02:30.996577'); -INSERT INTO dvds.payment VALUES (20272, 348, 2, 12937, 4.99, '2007-03-19 03:53:56.996577'); -INSERT INTO dvds.payment VALUES (20273, 348, 2, 13238, 2.99, '2007-03-19 14:49:22.996577'); -INSERT INTO dvds.payment VALUES (20274, 348, 2, 13602, 5.99, '2007-03-20 04:30:28.996577'); -INSERT INTO dvds.payment VALUES (20275, 348, 2, 13684, 0.99, '2007-03-20 07:24:19.996577'); -INSERT INTO dvds.payment VALUES (20276, 348, 1, 13962, 1.99, '2007-03-20 16:46:32.996577'); -INSERT INTO dvds.payment VALUES (20277, 348, 2, 14079, 3.99, '2007-03-20 21:57:51.996577'); -INSERT INTO dvds.payment VALUES (20278, 348, 2, 14937, 7.99, '2007-03-22 04:20:25.996577'); -INSERT INTO dvds.payment VALUES (20279, 348, 2, 15817, 0.99, '2007-03-23 13:28:17.996577'); -INSERT INTO dvds.payment VALUES (20280, 348, 1, 15944, 4.99, '2007-03-23 17:19:20.996577'); -INSERT INTO dvds.payment VALUES (20281, 349, 1, 10987, 4.99, '2007-03-02 03:05:18.996577'); -INSERT INTO dvds.payment VALUES (20282, 349, 2, 11192, 4.99, '2007-03-02 09:58:07.996577'); -INSERT INTO dvds.payment VALUES (20283, 349, 2, 11492, 8.99, '2007-03-02 21:15:13.996577'); -INSERT INTO dvds.payment VALUES (20284, 349, 1, 11905, 3.99, '2007-03-17 14:08:44.996577'); -INSERT INTO dvds.payment VALUES (20285, 349, 1, 13258, 4.99, '2007-03-19 15:34:03.996577'); -INSERT INTO dvds.payment VALUES (20286, 349, 2, 13636, 4.99, '2007-03-20 05:48:35.996577'); -INSERT INTO dvds.payment VALUES (20287, 349, 2, 14200, 6.99, '2007-03-21 02:19:53.996577'); -INSERT INTO dvds.payment VALUES (20288, 349, 2, 14721, 6.99, '2007-03-21 20:19:17.996577'); -INSERT INTO dvds.payment VALUES (20289, 349, 2, 14908, 4.99, '2007-03-22 03:12:36.996577'); -INSERT INTO dvds.payment VALUES (20290, 349, 1, 15833, 6.99, '2007-03-23 13:50:41.996577'); -INSERT INTO dvds.payment VALUES (20291, 349, 1, 15955, 5.99, '2007-03-23 17:47:32.996577'); -INSERT INTO dvds.payment VALUES (20292, 350, 2, 11504, 0.99, '2007-03-16 21:45:12.996577'); -INSERT INTO dvds.payment VALUES (20293, 350, 2, 11595, 6.99, '2007-03-17 01:21:40.996577'); -INSERT INTO dvds.payment VALUES (20294, 350, 2, 11692, 6.99, '2007-03-17 05:21:07.996577'); -INSERT INTO dvds.payment VALUES (20295, 350, 1, 11800, 0.99, '2007-03-17 09:58:18.996577'); -INSERT INTO dvds.payment VALUES (20296, 350, 2, 12252, 6.99, '2007-03-18 02:28:17.996577'); -INSERT INTO dvds.payment VALUES (20297, 350, 2, 12445, 2.99, '2007-03-18 09:24:46.996577'); -INSERT INTO dvds.payment VALUES (20298, 350, 2, 13086, 0.99, '2007-03-19 09:00:54.996577'); -INSERT INTO dvds.payment VALUES (20299, 350, 2, 15789, 1.99, '2007-03-23 12:25:06.996577'); -INSERT INTO dvds.payment VALUES (20300, 350, 1, 15807, 0.99, '2007-03-23 13:03:36.996577'); -INSERT INTO dvds.payment VALUES (20301, 351, 2, 10501, 2.99, '2007-03-01 09:33:12.996577'); -INSERT INTO dvds.payment VALUES (20302, 351, 2, 11127, 0.99, '2007-03-02 07:29:25.996577'); -INSERT INTO dvds.payment VALUES (20303, 351, 1, 14368, 6.99, '2007-03-21 08:00:13.996577'); -INSERT INTO dvds.payment VALUES (20304, 351, 2, 15142, 4.99, '2007-03-22 12:12:58.996577'); -INSERT INTO dvds.payment VALUES (20305, 351, 1, 15664, 4.99, '2007-03-23 07:25:37.996577'); -INSERT INTO dvds.payment VALUES (20306, 351, 2, 15712, 2.99, '2007-03-23 09:12:22.996577'); -INSERT INTO dvds.payment VALUES (20307, 351, 1, 15762, 2.99, '2007-03-23 11:30:09.996577'); -INSERT INTO dvds.payment VALUES (20308, 352, 1, 11793, 5.99, '2007-03-17 09:34:19.996577'); -INSERT INTO dvds.payment VALUES (20309, 352, 1, 11823, 6.99, '2007-03-17 11:05:03.996577'); -INSERT INTO dvds.payment VALUES (20310, 352, 2, 11986, 0.99, '2007-03-17 16:50:24.996577'); -INSERT INTO dvds.payment VALUES (20311, 352, 2, 12234, 5.99, '2007-03-18 01:45:59.996577'); -INSERT INTO dvds.payment VALUES (20312, 352, 1, 12751, 2.99, '2007-03-18 21:01:48.996577'); -INSERT INTO dvds.payment VALUES (20313, 352, 1, 14130, 4.99, '2007-03-21 00:11:37.996577'); -INSERT INTO dvds.payment VALUES (20314, 352, 2, 14852, 0.99, '2007-03-22 00:54:19.996577'); -INSERT INTO dvds.payment VALUES (20315, 353, 1, 11186, 0.99, '2007-03-02 09:40:34.996577'); -INSERT INTO dvds.payment VALUES (20316, 353, 2, 11414, 4.99, '2007-03-02 18:11:33.996577'); -INSERT INTO dvds.payment VALUES (20317, 353, 2, 11698, 4.99, '2007-03-17 05:38:25.996577'); -INSERT INTO dvds.payment VALUES (20318, 353, 1, 12928, 5.99, '2007-03-19 03:32:35.996577'); -INSERT INTO dvds.payment VALUES (20319, 353, 2, 13604, 0.99, '2007-03-20 04:31:59.996577'); -INSERT INTO dvds.payment VALUES (20320, 353, 1, 14396, 4.99, '2007-03-21 08:53:20.996577'); -INSERT INTO dvds.payment VALUES (20321, 353, 1, 15564, 1.99, '2007-03-23 03:39:08.996577'); -INSERT INTO dvds.payment VALUES (20322, 353, 2, 15650, 0.99, '2007-03-23 06:58:19.996577'); -INSERT INTO dvds.payment VALUES (20323, 353, 2, 15676, 2.99, '2007-03-23 07:51:34.996577'); -INSERT INTO dvds.payment VALUES (20324, 354, 1, 10420, 6.99, '2007-03-01 06:42:19.996577'); -INSERT INTO dvds.payment VALUES (20325, 354, 2, 12243, 6.99, '2007-03-18 02:07:20.996577'); -INSERT INTO dvds.payment VALUES (20326, 354, 1, 12544, 3.99, '2007-03-18 12:54:17.996577'); -INSERT INTO dvds.payment VALUES (20327, 354, 1, 12998, 4.99, '2007-03-19 06:00:42.996577'); -INSERT INTO dvds.payment VALUES (20328, 354, 2, 14212, 2.99, '2007-03-21 02:57:52.996577'); -INSERT INTO dvds.payment VALUES (20329, 354, 2, 14245, 0.99, '2007-03-21 03:59:20.996577'); -INSERT INTO dvds.payment VALUES (20330, 354, 1, 14840, 5.99, '2007-03-22 00:27:08.996577'); -INSERT INTO dvds.payment VALUES (20331, 354, 2, 15956, 0.99, '2007-03-23 17:47:47.996577'); -INSERT INTO dvds.payment VALUES (20332, 355, 1, 10498, 0.99, '2007-03-01 09:25:14.996577'); -INSERT INTO dvds.payment VALUES (20333, 355, 2, 11471, 0.99, '2007-03-02 20:17:29.996577'); -INSERT INTO dvds.payment VALUES (20334, 355, 2, 13821, 1.99, '2007-03-20 12:02:13.996577'); -INSERT INTO dvds.payment VALUES (20335, 355, 1, 15367, 3.99, '2007-03-22 20:16:19.996577'); -INSERT INTO dvds.payment VALUES (20336, 355, 2, 15531, 2.99, '2007-03-23 02:21:02.996577'); -INSERT INTO dvds.payment VALUES (20337, 356, 1, 10427, 3.99, '2007-03-01 06:58:37.996577'); -INSERT INTO dvds.payment VALUES (20338, 356, 1, 10854, 4.99, '2007-03-01 22:30:32.996577'); -INSERT INTO dvds.payment VALUES (20339, 356, 1, 11535, 3.99, '2007-03-16 23:08:20.996577'); -INSERT INTO dvds.payment VALUES (20340, 356, 2, 11579, 2.99, '2007-03-17 00:26:15.996577'); -INSERT INTO dvds.payment VALUES (20341, 356, 2, 12037, 4.99, '2007-03-17 18:50:01.996577'); -INSERT INTO dvds.payment VALUES (20342, 356, 2, 12876, 2.99, '2007-03-19 01:40:45.996577'); -INSERT INTO dvds.payment VALUES (20343, 356, 1, 12913, 0.99, '2007-03-19 02:54:05.996577'); -INSERT INTO dvds.payment VALUES (20344, 356, 2, 13107, 4.99, '2007-03-19 09:42:24.996577'); -INSERT INTO dvds.payment VALUES (20345, 356, 2, 13442, 5.99, '2007-03-19 22:19:11.996577'); -INSERT INTO dvds.payment VALUES (20346, 356, 2, 13703, 6.99, '2007-03-20 07:58:01.996577'); -INSERT INTO dvds.payment VALUES (20347, 356, 1, 15705, 4.99, '2007-03-23 09:01:18.996577'); -INSERT INTO dvds.payment VALUES (20348, 356, 2, 15754, 5.99, '2007-03-23 11:12:08.996577'); -INSERT INTO dvds.payment VALUES (20349, 356, 1, 15757, 2.99, '2007-03-23 11:15:42.996577'); -INSERT INTO dvds.payment VALUES (20350, 357, 2, 10391, 2.99, '2007-03-01 05:17:31.996577'); -INSERT INTO dvds.payment VALUES (20351, 357, 1, 10502, 2.99, '2007-03-01 09:35:05.996577'); -INSERT INTO dvds.payment VALUES (20352, 357, 1, 10503, 6.99, '2007-03-01 09:36:10.996577'); -INSERT INTO dvds.payment VALUES (20353, 357, 2, 10764, 0.99, '2007-03-01 19:01:08.996577'); -INSERT INTO dvds.payment VALUES (20354, 357, 2, 11065, 2.99, '2007-03-02 05:26:21.996577'); -INSERT INTO dvds.payment VALUES (20355, 357, 1, 14926, 0.99, '2007-03-22 03:47:10.996577'); -INSERT INTO dvds.payment VALUES (20356, 357, 2, 15869, 2.99, '2007-03-23 14:50:46.996577'); -INSERT INTO dvds.payment VALUES (20357, 358, 1, 10482, 4.99, '2007-03-01 08:46:13.996577'); -INSERT INTO dvds.payment VALUES (20358, 358, 2, 11149, 5.99, '2007-03-02 08:20:09.996577'); -INSERT INTO dvds.payment VALUES (20359, 358, 2, 11653, 4.99, '2007-03-17 03:34:36.996577'); -INSERT INTO dvds.payment VALUES (20360, 358, 1, 12452, 6.99, '2007-03-18 09:43:01.996577'); -INSERT INTO dvds.payment VALUES (20361, 358, 1, 13197, 2.99, '2007-03-19 13:12:29.996577'); -INSERT INTO dvds.payment VALUES (20362, 358, 1, 14004, 7.99, '2007-03-20 18:45:01.996577'); -INSERT INTO dvds.payment VALUES (20363, 359, 1, 11032, 4.99, '2007-03-02 04:22:01.996577'); -INSERT INTO dvds.payment VALUES (20364, 359, 1, 12611, 1.99, '2007-03-18 15:38:08.996577'); -INSERT INTO dvds.payment VALUES (20365, 359, 2, 13297, 2.99, '2007-03-19 17:14:15.996577'); -INSERT INTO dvds.payment VALUES (20366, 359, 1, 14258, 1.99, '2007-03-21 04:25:02.996577'); -INSERT INTO dvds.payment VALUES (20367, 359, 2, 14598, 5.99, '2007-03-21 16:08:31.996577'); -INSERT INTO dvds.payment VALUES (20368, 359, 1, 15104, 2.99, '2007-03-22 10:29:42.996577'); -INSERT INTO dvds.payment VALUES (20369, 359, 1, 15148, 4.99, '2007-03-22 12:27:45.996577'); -INSERT INTO dvds.payment VALUES (20370, 359, 1, 15453, 1.99, '2007-03-22 23:29:27.996577'); -INSERT INTO dvds.payment VALUES (20371, 360, 2, 10857, 2.99, '2007-03-01 22:35:46.996577'); -INSERT INTO dvds.payment VALUES (20372, 360, 2, 11264, 6.99, '2007-03-02 12:33:44.996577'); -INSERT INTO dvds.payment VALUES (20373, 360, 2, 11553, 4.99, '2007-03-16 23:32:57.996577'); -INSERT INTO dvds.payment VALUES (20374, 360, 2, 12088, 5.99, '2007-03-17 20:48:42.996577'); -INSERT INTO dvds.payment VALUES (20375, 360, 1, 12773, 5.99, '2007-03-18 22:00:45.996577'); -INSERT INTO dvds.payment VALUES (20376, 360, 2, 12795, 0.99, '2007-03-18 22:50:18.996577'); -INSERT INTO dvds.payment VALUES (20377, 360, 1, 12839, 6.99, '2007-03-19 00:22:09.996577'); -INSERT INTO dvds.payment VALUES (20378, 360, 1, 12990, 4.99, '2007-03-19 05:49:05.996577'); -INSERT INTO dvds.payment VALUES (20379, 360, 2, 13894, 7.99, '2007-03-20 14:23:46.996577'); -INSERT INTO dvds.payment VALUES (20380, 360, 1, 14700, 4.99, '2007-03-21 19:22:06.996577'); -INSERT INTO dvds.payment VALUES (20381, 360, 1, 15310, 2.99, '2007-03-22 18:25:07.996577'); -INSERT INTO dvds.payment VALUES (20382, 361, 1, 10414, 0.99, '2007-03-01 06:32:21.996577'); -INSERT INTO dvds.payment VALUES (20383, 361, 2, 10975, 0.99, '2007-03-02 02:39:51.996577'); -INSERT INTO dvds.payment VALUES (20384, 361, 2, 11031, 5.99, '2007-03-02 04:21:24.996577'); -INSERT INTO dvds.payment VALUES (20385, 361, 2, 11243, 5.99, '2007-03-02 12:01:14.996577'); -INSERT INTO dvds.payment VALUES (20386, 361, 1, 11327, 2.99, '2007-03-02 15:09:13.996577'); -INSERT INTO dvds.payment VALUES (20387, 361, 1, 11991, 3.99, '2007-03-17 16:55:34.996577'); -INSERT INTO dvds.payment VALUES (20388, 361, 2, 12626, 5.99, '2007-03-18 16:05:11.996577'); -INSERT INTO dvds.payment VALUES (20389, 361, 2, 12690, 2.99, '2007-03-18 18:35:23.996577'); -INSERT INTO dvds.payment VALUES (20390, 361, 1, 13135, 0.99, '2007-03-19 10:51:18.996577'); -INSERT INTO dvds.payment VALUES (20391, 361, 2, 14031, 0.99, '2007-03-20 19:52:50.996577'); -INSERT INTO dvds.payment VALUES (20392, 361, 1, 14422, 0.99, '2007-03-21 09:50:12.996577'); -INSERT INTO dvds.payment VALUES (20393, 361, 1, 15759, 6.99, '2007-03-23 11:16:03.996577'); -INSERT INTO dvds.payment VALUES (20394, 361, 2, 15935, 2.99, '2007-03-23 17:09:37.996577'); -INSERT INTO dvds.payment VALUES (20395, 362, 2, 10546, 3.99, '2007-03-01 11:12:43.996577'); -INSERT INTO dvds.payment VALUES (20396, 362, 2, 12244, 4.99, '2007-03-18 02:07:37.996577'); -INSERT INTO dvds.payment VALUES (20397, 362, 1, 12854, 6.99, '2007-03-19 00:47:17.996577'); -INSERT INTO dvds.payment VALUES (20398, 362, 1, 13603, 6.99, '2007-03-20 04:31:14.996577'); -INSERT INTO dvds.payment VALUES (20399, 362, 2, 14051, 6.99, '2007-03-20 20:38:17.996577'); -INSERT INTO dvds.payment VALUES (20400, 362, 2, 14129, 2.99, '2007-03-21 00:10:41.996577'); -INSERT INTO dvds.payment VALUES (20401, 362, 2, 14336, 4.99, '2007-03-21 07:02:08.996577'); -INSERT INTO dvds.payment VALUES (20402, 362, 1, 14752, 5.99, '2007-03-21 21:40:08.996577'); -INSERT INTO dvds.payment VALUES (20403, 362, 1, 14759, 11.99, '2007-03-21 21:57:24.996577'); -INSERT INTO dvds.payment VALUES (20404, 362, 1, 14808, 4.99, '2007-03-21 23:27:01.996577'); -INSERT INTO dvds.payment VALUES (20405, 362, 1, 14950, 2.99, '2007-03-22 04:45:38.996577'); -INSERT INTO dvds.payment VALUES (20406, 363, 1, 10339, 6.99, '2007-03-01 03:34:16.996577'); -INSERT INTO dvds.payment VALUES (20407, 363, 2, 12189, 5.99, '2007-03-18 00:20:10.996577'); -INSERT INTO dvds.payment VALUES (20408, 363, 2, 12760, 4.99, '2007-03-18 21:31:45.996577'); -INSERT INTO dvds.payment VALUES (20409, 363, 1, 13706, 9.99, '2007-03-20 08:01:22.996577'); -INSERT INTO dvds.payment VALUES (20410, 363, 1, 14694, 2.99, '2007-03-21 19:15:08.996577'); -INSERT INTO dvds.payment VALUES (20411, 363, 1, 14983, 5.99, '2007-03-22 06:00:49.996577'); -INSERT INTO dvds.payment VALUES (20412, 363, 2, 15279, 4.99, '2007-03-22 17:37:15.996577'); -INSERT INTO dvds.payment VALUES (20413, 363, 1, 15335, 4.99, '2007-03-22 19:13:21.996577'); -INSERT INTO dvds.payment VALUES (20414, 364, 2, 10290, 5.99, '2007-03-01 02:08:16.996577'); -INSERT INTO dvds.payment VALUES (20415, 364, 2, 11932, 4.99, '2007-03-17 15:04:38.996577'); -INSERT INTO dvds.payment VALUES (20416, 364, 1, 12557, 4.99, '2007-03-18 13:19:29.996577'); -INSERT INTO dvds.payment VALUES (20417, 364, 1, 12761, 1.99, '2007-03-18 21:33:48.996577'); -INSERT INTO dvds.payment VALUES (20418, 364, 2, 12912, 3.99, '2007-03-19 02:53:01.996577'); -INSERT INTO dvds.payment VALUES (20419, 364, 1, 13698, 4.99, '2007-03-20 07:52:52.996577'); -INSERT INTO dvds.payment VALUES (20420, 364, 2, 13936, 0.99, '2007-03-20 15:51:01.996577'); -INSERT INTO dvds.payment VALUES (20421, 364, 2, 14293, 4.99, '2007-03-21 05:35:13.996577'); -INSERT INTO dvds.payment VALUES (20422, 364, 1, 15242, 0.99, '2007-03-22 16:16:36.996577'); -INSERT INTO dvds.payment VALUES (20423, 365, 2, 10717, 2.99, '2007-03-01 17:22:19.996577'); -INSERT INTO dvds.payment VALUES (20424, 365, 2, 12322, 2.99, '2007-03-18 05:03:54.996577'); -INSERT INTO dvds.payment VALUES (20425, 365, 2, 12375, 4.99, '2007-03-18 06:48:34.996577'); -INSERT INTO dvds.payment VALUES (20426, 365, 1, 12804, 8.99, '2007-03-18 23:01:41.996577'); -INSERT INTO dvds.payment VALUES (20427, 365, 1, 13619, 2.99, '2007-03-20 05:07:52.996577'); -INSERT INTO dvds.payment VALUES (20428, 365, 2, 14463, 6.99, '2007-03-21 11:20:15.996577'); -INSERT INTO dvds.payment VALUES (20429, 366, 1, 10384, 4.99, '2007-03-01 05:07:40.996577'); -INSERT INTO dvds.payment VALUES (20430, 366, 2, 11337, 2.99, '2007-03-02 15:27:35.996577'); -INSERT INTO dvds.payment VALUES (20431, 366, 2, 11340, 5.99, '2007-03-02 15:34:09.996577'); -INSERT INTO dvds.payment VALUES (20432, 366, 2, 12413, 2.99, '2007-03-18 08:19:00.996577'); -INSERT INTO dvds.payment VALUES (20433, 366, 1, 12608, 4.99, '2007-03-18 15:33:41.996577'); -INSERT INTO dvds.payment VALUES (20434, 366, 2, 13563, 0.99, '2007-03-20 03:01:57.996577'); -INSERT INTO dvds.payment VALUES (20435, 366, 1, 13857, 2.99, '2007-03-20 13:18:32.996577'); -INSERT INTO dvds.payment VALUES (20436, 366, 1, 14147, 4.99, '2007-03-21 00:42:29.996577'); -INSERT INTO dvds.payment VALUES (20437, 366, 1, 14290, 4.99, '2007-03-21 05:31:25.996577'); -INSERT INTO dvds.payment VALUES (20438, 366, 1, 14390, 2.99, '2007-03-21 08:44:04.996577'); -INSERT INTO dvds.payment VALUES (20439, 366, 1, 14717, 2.99, '2007-03-21 19:59:05.996577'); -INSERT INTO dvds.payment VALUES (20440, 366, 1, 14906, 6.99, '2007-03-22 03:06:44.996577'); -INSERT INTO dvds.payment VALUES (20441, 366, 1, 15514, 2.99, '2007-03-23 01:32:06.996577'); -INSERT INTO dvds.payment VALUES (20442, 367, 2, 10344, 4.99, '2007-03-01 03:46:49.996577'); -INSERT INTO dvds.payment VALUES (20443, 367, 1, 12152, 4.99, '2007-03-17 22:50:01.996577'); -INSERT INTO dvds.payment VALUES (20444, 367, 2, 12362, 0.99, '2007-03-18 06:16:31.996577'); -INSERT INTO dvds.payment VALUES (20445, 367, 2, 12373, 8.99, '2007-03-18 06:35:51.996577'); -INSERT INTO dvds.payment VALUES (20446, 367, 2, 12911, 6.99, '2007-03-19 02:52:36.996577'); -INSERT INTO dvds.payment VALUES (20447, 367, 2, 13235, 4.99, '2007-03-19 14:46:19.996577'); -INSERT INTO dvds.payment VALUES (20448, 367, 1, 14413, 6.99, '2007-03-21 09:34:59.996577'); -INSERT INTO dvds.payment VALUES (20449, 367, 1, 14481, 10.99, '2007-03-21 12:09:40.996577'); -INSERT INTO dvds.payment VALUES (20450, 368, 2, 10730, 8.99, '2007-03-01 17:50:08.996577'); -INSERT INTO dvds.payment VALUES (20451, 368, 2, 10848, 1.99, '2007-03-01 22:18:48.996577'); -INSERT INTO dvds.payment VALUES (20452, 368, 1, 11844, 0.99, '2007-03-17 11:44:30.996577'); -INSERT INTO dvds.payment VALUES (20453, 368, 2, 12319, 2.99, '2007-03-18 04:55:11.996577'); -INSERT INTO dvds.payment VALUES (20454, 368, 1, 12796, 4.99, '2007-03-18 22:50:50.996577'); -INSERT INTO dvds.payment VALUES (20455, 368, 2, 13189, 8.99, '2007-03-19 12:55:42.996577'); -INSERT INTO dvds.payment VALUES (20456, 368, 2, 13280, 2.99, '2007-03-19 16:31:17.996577'); -INSERT INTO dvds.payment VALUES (20457, 368, 2, 13378, 0.99, '2007-03-19 20:02:01.996577'); -INSERT INTO dvds.payment VALUES (20458, 368, 2, 13781, 7.99, '2007-03-20 10:35:11.996577'); -INSERT INTO dvds.payment VALUES (20459, 368, 2, 13963, 1.99, '2007-03-20 16:48:44.996577'); -INSERT INTO dvds.payment VALUES (20460, 368, 1, 14393, 7.99, '2007-03-21 08:51:17.996577'); -INSERT INTO dvds.payment VALUES (20461, 368, 1, 15353, 2.99, '2007-03-22 19:46:34.996577'); -INSERT INTO dvds.payment VALUES (20462, 368, 1, 15437, 2.99, '2007-03-22 22:59:35.996577'); -INSERT INTO dvds.payment VALUES (20463, 369, 1, 10299, 0.99, '2007-03-01 02:36:30.996577'); -INSERT INTO dvds.payment VALUES (20464, 369, 2, 10359, 3.99, '2007-03-01 04:20:47.996577'); -INSERT INTO dvds.payment VALUES (20465, 369, 2, 10713, 2.99, '2007-03-01 17:18:31.996577'); -INSERT INTO dvds.payment VALUES (20466, 369, 1, 11084, 4.99, '2007-03-02 06:02:45.996577'); -INSERT INTO dvds.payment VALUES (20467, 369, 2, 11388, 1.99, '2007-03-02 17:04:21.996577'); -INSERT INTO dvds.payment VALUES (20468, 369, 1, 12521, 0.99, '2007-03-18 12:11:33.996577'); -INSERT INTO dvds.payment VALUES (20469, 369, 2, 14684, 5.99, '2007-03-21 18:56:52.996577'); -INSERT INTO dvds.payment VALUES (20470, 370, 1, 10336, 4.99, '2007-03-01 03:28:19.996577'); -INSERT INTO dvds.payment VALUES (20471, 370, 1, 11540, 1.99, '2007-03-16 23:16:29.996577'); -INSERT INTO dvds.payment VALUES (20472, 370, 2, 11925, 0.99, '2007-03-17 14:51:30.996577'); -INSERT INTO dvds.payment VALUES (20473, 370, 1, 12339, 4.99, '2007-03-18 05:33:32.996577'); -INSERT INTO dvds.payment VALUES (20474, 370, 1, 13039, 0.99, '2007-03-19 07:23:45.996577'); -INSERT INTO dvds.payment VALUES (20475, 370, 1, 14602, 3.99, '2007-03-21 16:17:15.996577'); -INSERT INTO dvds.payment VALUES (20476, 370, 2, 14786, 2.99, '2007-03-21 22:53:08.996577'); -INSERT INTO dvds.payment VALUES (20477, 370, 2, 15368, 3.99, '2007-03-22 20:25:41.996577'); -INSERT INTO dvds.payment VALUES (20478, 370, 1, 15626, 4.99, '2007-03-23 05:54:00.996577'); -INSERT INTO dvds.payment VALUES (20479, 370, 1, 15982, 5.99, '2007-03-23 18:41:57.996577'); -INSERT INTO dvds.payment VALUES (20480, 371, 1, 11086, 10.99, '2007-03-02 06:07:10.996577'); -INSERT INTO dvds.payment VALUES (20481, 371, 2, 12397, 9.99, '2007-03-18 07:41:18.996577'); -INSERT INTO dvds.payment VALUES (20482, 371, 2, 12584, 7.99, '2007-03-18 14:20:02.996577'); -INSERT INTO dvds.payment VALUES (20483, 371, 1, 13028, 2.99, '2007-03-19 06:55:49.996577'); -INSERT INTO dvds.payment VALUES (20484, 371, 2, 13143, 3.99, '2007-03-19 11:13:04.996577'); -INSERT INTO dvds.payment VALUES (20485, 371, 1, 13191, 4.99, '2007-03-19 12:57:14.996577'); -INSERT INTO dvds.payment VALUES (20486, 371, 2, 13953, 4.99, '2007-03-20 16:29:03.996577'); -INSERT INTO dvds.payment VALUES (20487, 371, 1, 14384, 2.99, '2007-03-21 08:31:03.996577'); -INSERT INTO dvds.payment VALUES (20488, 371, 1, 15786, 0.99, '2007-03-23 12:17:00.996577'); -INSERT INTO dvds.payment VALUES (20489, 371, 1, 15824, 2.99, '2007-03-23 13:37:43.996577'); -INSERT INTO dvds.payment VALUES (20490, 372, 2, 11134, 10.99, '2007-03-02 07:47:48.996577'); -INSERT INTO dvds.payment VALUES (20491, 372, 2, 11438, 3.99, '2007-03-02 18:49:34.996577'); -INSERT INTO dvds.payment VALUES (20492, 372, 2, 11555, 4.99, '2007-03-16 23:37:25.996577'); -INSERT INTO dvds.payment VALUES (20493, 372, 1, 12224, 0.99, '2007-03-18 01:27:35.996577'); -INSERT INTO dvds.payment VALUES (20494, 372, 1, 12714, 3.99, '2007-03-18 19:36:27.996577'); -INSERT INTO dvds.payment VALUES (20495, 372, 2, 13402, 4.99, '2007-03-19 20:45:19.996577'); -INSERT INTO dvds.payment VALUES (20496, 372, 2, 13871, 8.99, '2007-03-20 13:38:39.996577'); -INSERT INTO dvds.payment VALUES (20497, 372, 2, 14037, 9.99, '2007-03-20 20:04:24.996577'); -INSERT INTO dvds.payment VALUES (20498, 372, 1, 14211, 4.99, '2007-03-21 02:57:37.996577'); -INSERT INTO dvds.payment VALUES (20499, 372, 1, 14331, 2.99, '2007-03-21 06:58:04.996577'); -INSERT INTO dvds.payment VALUES (20500, 372, 1, 14770, 1.99, '2007-03-21 22:15:42.996577'); -INSERT INTO dvds.payment VALUES (20501, 372, 2, 15041, 0.99, '2007-03-22 08:11:44.996577'); -INSERT INTO dvds.payment VALUES (20502, 372, 1, 15563, 2.99, '2007-03-23 03:37:24.996577'); -INSERT INTO dvds.payment VALUES (20503, 373, 1, 10758, 5.99, '2007-03-01 18:51:17.996577'); -INSERT INTO dvds.payment VALUES (20504, 373, 2, 11066, 7.99, '2007-03-02 05:26:58.996577'); -INSERT INTO dvds.payment VALUES (20505, 373, 2, 11512, 7.99, '2007-03-16 22:19:32.996577'); -INSERT INTO dvds.payment VALUES (20506, 373, 2, 11663, 3.99, '2007-03-17 03:58:45.996577'); -INSERT INTO dvds.payment VALUES (20507, 373, 2, 11976, 3.99, '2007-03-17 16:27:45.996577'); -INSERT INTO dvds.payment VALUES (20508, 373, 1, 12142, 5.99, '2007-03-17 22:32:38.996577'); -INSERT INTO dvds.payment VALUES (20509, 373, 2, 12536, 5.99, '2007-03-18 12:34:32.996577'); -INSERT INTO dvds.payment VALUES (20510, 373, 1, 12748, 7.99, '2007-03-18 20:57:31.996577'); -INSERT INTO dvds.payment VALUES (20511, 373, 2, 12780, 0.99, '2007-03-18 22:16:42.996577'); -INSERT INTO dvds.payment VALUES (20512, 373, 2, 13299, 2.99, '2007-03-19 17:14:59.996577'); -INSERT INTO dvds.payment VALUES (20513, 373, 1, 13329, 3.99, '2007-03-19 18:25:21.996577'); -INSERT INTO dvds.payment VALUES (20514, 373, 2, 13467, 2.99, '2007-03-19 23:25:10.996577'); -INSERT INTO dvds.payment VALUES (20515, 373, 2, 15014, 6.99, '2007-03-22 07:11:37.996577'); -INSERT INTO dvds.payment VALUES (20516, 373, 1, 15068, 3.99, '2007-03-22 09:18:39.996577'); -INSERT INTO dvds.payment VALUES (20517, 374, 1, 10695, 2.99, '2007-03-01 16:44:46.996577'); -INSERT INTO dvds.payment VALUES (20518, 374, 1, 11619, 0.99, '2007-03-17 02:31:52.996577'); -INSERT INTO dvds.payment VALUES (20519, 374, 2, 12696, 2.99, '2007-03-18 18:41:34.996577'); -INSERT INTO dvds.payment VALUES (20520, 374, 1, 13337, 2.99, '2007-03-19 18:35:23.996577'); -INSERT INTO dvds.payment VALUES (20521, 374, 2, 13734, 4.99, '2007-03-20 08:58:23.996577'); -INSERT INTO dvds.payment VALUES (20522, 374, 2, 14524, 8.99, '2007-03-21 13:33:53.996577'); -INSERT INTO dvds.payment VALUES (20523, 374, 2, 15053, 5.99, '2007-03-22 08:41:35.996577'); -INSERT INTO dvds.payment VALUES (20524, 374, 1, 15200, 2.99, '2007-03-22 14:51:19.996577'); -INSERT INTO dvds.payment VALUES (20525, 374, 2, 15202, 4.99, '2007-03-22 14:55:19.996577'); -INSERT INTO dvds.payment VALUES (20526, 374, 2, 15366, 6.99, '2007-03-22 20:14:23.996577'); -INSERT INTO dvds.payment VALUES (20527, 375, 1, 10274, 0.99, '2007-03-01 01:45:17.996577'); -INSERT INTO dvds.payment VALUES (20528, 375, 2, 10589, 1.99, '2007-03-01 12:39:35.996577'); -INSERT INTO dvds.payment VALUES (20529, 375, 1, 10640, 0.99, '2007-03-01 14:13:17.996577'); -INSERT INTO dvds.payment VALUES (20530, 375, 1, 10672, 4.99, '2007-03-01 15:39:20.996577'); -INSERT INTO dvds.payment VALUES (20531, 375, 1, 10859, 5.99, '2007-03-01 22:40:05.996577'); -INSERT INTO dvds.payment VALUES (20532, 375, 1, 10961, 6.99, '2007-03-02 02:16:21.996577'); -INSERT INTO dvds.payment VALUES (20533, 375, 2, 11008, 5.99, '2007-03-02 03:34:43.996577'); -INSERT INTO dvds.payment VALUES (20534, 375, 2, 12122, 9.99, '2007-03-17 21:49:11.996577'); -INSERT INTO dvds.payment VALUES (20535, 375, 2, 12663, 0.99, '2007-03-18 17:39:18.996577'); -INSERT INTO dvds.payment VALUES (20536, 375, 1, 13836, 4.99, '2007-03-20 12:46:42.996577'); -INSERT INTO dvds.payment VALUES (20537, 375, 1, 15004, 2.99, '2007-03-22 06:43:47.996577'); -INSERT INTO dvds.payment VALUES (20538, 375, 1, 15505, 4.99, '2007-03-23 01:14:39.996577'); -INSERT INTO dvds.payment VALUES (20539, 376, 2, 10413, 3.99, '2007-03-01 06:28:05.996577'); -INSERT INTO dvds.payment VALUES (20540, 376, 1, 10810, 3.99, '2007-03-01 21:09:05.996577'); -INSERT INTO dvds.payment VALUES (20541, 376, 1, 11144, 4.99, '2007-03-02 08:07:43.996577'); -INSERT INTO dvds.payment VALUES (20542, 376, 2, 11792, 4.99, '2007-03-17 09:32:19.996577'); -INSERT INTO dvds.payment VALUES (20543, 376, 1, 11851, 4.99, '2007-03-17 11:58:53.996577'); -INSERT INTO dvds.payment VALUES (20544, 376, 1, 13009, 0.99, '2007-03-19 06:19:01.996577'); -INSERT INTO dvds.payment VALUES (20545, 376, 1, 13141, 0.99, '2007-03-19 11:10:07.996577'); -INSERT INTO dvds.payment VALUES (20546, 376, 2, 13761, 4.99, '2007-03-20 09:57:16.996577'); -INSERT INTO dvds.payment VALUES (20547, 376, 1, 15107, 4.99, '2007-03-22 10:33:28.996577'); -INSERT INTO dvds.payment VALUES (20548, 376, 1, 15382, 2.99, '2007-03-22 20:59:16.996577'); -INSERT INTO dvds.payment VALUES (20549, 377, 1, 10738, 3.99, '2007-03-01 18:07:34.996577'); -INSERT INTO dvds.payment VALUES (20550, 377, 1, 10943, 2.99, '2007-03-02 01:45:55.996577'); -INSERT INTO dvds.payment VALUES (20551, 377, 1, 12390, 1.99, '2007-03-18 07:20:08.996577'); -INSERT INTO dvds.payment VALUES (20552, 377, 1, 12549, 4.99, '2007-03-18 13:06:33.996577'); -INSERT INTO dvds.payment VALUES (20553, 377, 1, 13249, 2.99, '2007-03-19 15:16:07.996577'); -INSERT INTO dvds.payment VALUES (20554, 377, 1, 13275, 0.99, '2007-03-19 16:22:04.996577'); -INSERT INTO dvds.payment VALUES (20555, 377, 2, 15088, 0.99, '2007-03-22 09:56:52.996577'); -INSERT INTO dvds.payment VALUES (20556, 377, 1, 15995, 0.99, '2007-03-23 18:58:22.996577'); -INSERT INTO dvds.payment VALUES (20557, 377, 1, 15999, 7.99, '2007-03-23 19:12:36.996577'); -INSERT INTO dvds.payment VALUES (20558, 378, 1, 10917, 4.99, '2007-03-02 00:34:44.996577'); -INSERT INTO dvds.payment VALUES (20559, 378, 1, 11111, 4.99, '2007-03-02 06:49:53.996577'); -INSERT INTO dvds.payment VALUES (20560, 378, 1, 12596, 2.99, '2007-03-18 14:58:01.996577'); -INSERT INTO dvds.payment VALUES (20561, 378, 1, 12828, 4.99, '2007-03-19 00:06:13.996577'); -INSERT INTO dvds.payment VALUES (20562, 378, 2, 14502, 4.99, '2007-03-21 12:50:54.996577'); -INSERT INTO dvds.payment VALUES (20563, 378, 1, 14971, 2.99, '2007-03-22 05:21:15.996577'); -INSERT INTO dvds.payment VALUES (20564, 379, 2, 11457, 3.99, '2007-03-02 19:42:42.996577'); -INSERT INTO dvds.payment VALUES (20565, 379, 1, 12503, 4.99, '2007-03-18 11:45:12.996577'); -INSERT INTO dvds.payment VALUES (20566, 379, 1, 13334, 0.99, '2007-03-19 18:30:59.996577'); -INSERT INTO dvds.payment VALUES (20567, 379, 2, 13397, 7.99, '2007-03-19 20:35:01.996577'); -INSERT INTO dvds.payment VALUES (20568, 379, 1, 13485, 0.99, '2007-03-19 23:48:40.996577'); -INSERT INTO dvds.payment VALUES (20569, 379, 1, 14011, 5.99, '2007-03-20 19:01:22.996577'); -INSERT INTO dvds.payment VALUES (20570, 379, 2, 14152, 2.99, '2007-03-21 00:52:16.996577'); -INSERT INTO dvds.payment VALUES (20571, 379, 1, 14470, 0.99, '2007-03-21 11:38:07.996577'); -INSERT INTO dvds.payment VALUES (20572, 379, 1, 14886, 4.99, '2007-03-22 02:27:27.996577'); -INSERT INTO dvds.payment VALUES (20573, 379, 2, 15399, 4.99, '2007-03-22 21:40:25.996577'); -INSERT INTO dvds.payment VALUES (20574, 379, 1, 15446, 4.99, '2007-03-22 23:17:50.996577'); -INSERT INTO dvds.payment VALUES (20575, 379, 2, 15930, 3.99, '2007-03-23 16:55:17.996577'); -INSERT INTO dvds.payment VALUES (20576, 380, 2, 10450, 1.99, '2007-03-01 07:38:29.996577'); -INSERT INTO dvds.payment VALUES (20577, 380, 1, 10983, 3.99, '2007-03-02 02:52:49.996577'); -INSERT INTO dvds.payment VALUES (20578, 380, 1, 11936, 0.99, '2007-03-17 15:14:00.996577'); -INSERT INTO dvds.payment VALUES (20579, 380, 2, 11945, 0.99, '2007-03-17 15:33:59.996577'); -INSERT INTO dvds.payment VALUES (20580, 380, 1, 12636, 3.99, '2007-03-18 16:28:55.996577'); -INSERT INTO dvds.payment VALUES (20581, 380, 1, 12996, 6.99, '2007-03-19 05:59:58.996577'); -INSERT INTO dvds.payment VALUES (20582, 380, 1, 14529, 6.99, '2007-03-21 13:36:57.996577'); -INSERT INTO dvds.payment VALUES (20583, 380, 1, 14935, 1.99, '2007-03-22 04:15:57.996577'); -INSERT INTO dvds.payment VALUES (20584, 380, 2, 15175, 5.99, '2007-03-22 13:57:41.996577'); -INSERT INTO dvds.payment VALUES (20585, 380, 1, 15361, 2.99, '2007-03-22 20:08:11.996577'); -INSERT INTO dvds.payment VALUES (20586, 380, 2, 15636, 2.99, '2007-03-23 06:19:12.996577'); -INSERT INTO dvds.payment VALUES (20587, 380, 1, 15697, 2.99, '2007-03-23 08:33:02.996577'); -INSERT INTO dvds.payment VALUES (20588, 380, 2, 15748, 2.99, '2007-03-23 11:01:26.996577'); -INSERT INTO dvds.payment VALUES (20589, 381, 1, 10608, 0.99, '2007-03-01 13:17:07.996577'); -INSERT INTO dvds.payment VALUES (20590, 381, 2, 10705, 0.99, '2007-03-01 17:07:20.996577'); -INSERT INTO dvds.payment VALUES (20591, 381, 1, 11519, 2.99, '2007-03-16 22:29:53.996577'); -INSERT INTO dvds.payment VALUES (20592, 381, 2, 12135, 2.99, '2007-03-17 22:18:50.996577'); -INSERT INTO dvds.payment VALUES (20593, 381, 2, 12237, 4.99, '2007-03-18 01:53:04.996577'); -INSERT INTO dvds.payment VALUES (20594, 381, 2, 12632, 2.99, '2007-03-18 16:22:47.996577'); -INSERT INTO dvds.payment VALUES (20595, 381, 2, 13202, 8.99, '2007-03-19 13:26:56.996577'); -INSERT INTO dvds.payment VALUES (20596, 381, 2, 13430, 0.99, '2007-03-19 21:54:09.996577'); -INSERT INTO dvds.payment VALUES (20597, 381, 1, 13614, 0.99, '2007-03-20 04:57:03.996577'); -INSERT INTO dvds.payment VALUES (20598, 381, 2, 13995, 2.99, '2007-03-20 18:03:09.996577'); -INSERT INTO dvds.payment VALUES (20599, 381, 1, 14198, 4.99, '2007-03-21 02:16:57.996577'); -INSERT INTO dvds.payment VALUES (20600, 381, 2, 15299, 4.99, '2007-03-22 18:11:23.996577'); -INSERT INTO dvds.payment VALUES (20601, 381, 1, 15747, 4.99, '2007-03-23 10:57:50.996577'); -INSERT INTO dvds.payment VALUES (20602, 382, 2, 10327, 3.99, '2007-03-01 03:24:01.996577'); -INSERT INTO dvds.payment VALUES (20603, 382, 2, 12229, 0.99, '2007-03-18 01:36:49.996577'); -INSERT INTO dvds.payment VALUES (20604, 382, 2, 12529, 0.99, '2007-03-18 12:22:02.996577'); -INSERT INTO dvds.payment VALUES (20605, 382, 1, 14009, 4.99, '2007-03-20 18:55:19.996577'); -INSERT INTO dvds.payment VALUES (20606, 382, 2, 14300, 4.99, '2007-03-21 05:48:03.996577'); -INSERT INTO dvds.payment VALUES (20607, 382, 2, 14354, 5.99, '2007-03-21 07:36:40.996577'); -INSERT INTO dvds.payment VALUES (20608, 382, 2, 15939, 7.99, '2007-03-23 17:12:47.996577'); -INSERT INTO dvds.payment VALUES (20609, 383, 2, 10515, 4.99, '2007-03-01 10:09:59.996577'); -INSERT INTO dvds.payment VALUES (20610, 383, 1, 10971, 4.99, '2007-03-02 02:36:43.996577'); -INSERT INTO dvds.payment VALUES (20611, 383, 2, 10993, 0.99, '2007-03-02 03:13:27.996577'); -INSERT INTO dvds.payment VALUES (20612, 383, 2, 11122, 0.99, '2007-03-02 07:17:35.996577'); -INSERT INTO dvds.payment VALUES (20613, 383, 1, 11592, 2.99, '2007-03-17 01:04:30.996577'); -INSERT INTO dvds.payment VALUES (20614, 383, 1, 12735, 4.99, '2007-03-18 20:33:20.996577'); -INSERT INTO dvds.payment VALUES (20615, 383, 2, 14039, 4.99, '2007-03-20 20:08:09.996577'); -INSERT INTO dvds.payment VALUES (20616, 383, 2, 14678, 4.99, '2007-03-21 18:41:09.996577'); -INSERT INTO dvds.payment VALUES (20617, 383, 1, 15416, 1.99, '2007-03-22 22:19:49.996577'); -INSERT INTO dvds.payment VALUES (20618, 383, 1, 15881, 6.99, '2007-03-23 15:12:51.996577'); -INSERT INTO dvds.payment VALUES (20619, 384, 2, 11773, 5.99, '2007-03-17 08:48:17.996577'); -INSERT INTO dvds.payment VALUES (20620, 384, 2, 13521, 2.99, '2007-03-20 01:10:54.996577'); -INSERT INTO dvds.payment VALUES (20621, 384, 2, 14416, 2.99, '2007-03-21 09:40:12.996577'); -INSERT INTO dvds.payment VALUES (20622, 384, 1, 14841, 0.99, '2007-03-22 00:31:56.996577'); -INSERT INTO dvds.payment VALUES (20623, 384, 1, 14963, 5.99, '2007-03-22 05:06:36.996577'); -INSERT INTO dvds.payment VALUES (20624, 384, 2, 15321, 4.99, '2007-03-22 18:48:30.996577'); -INSERT INTO dvds.payment VALUES (20625, 385, 1, 10557, 0.99, '2007-03-01 11:27:50.996577'); -INSERT INTO dvds.payment VALUES (20626, 385, 1, 10636, 3.99, '2007-03-01 14:09:01.996577'); -INSERT INTO dvds.payment VALUES (20627, 385, 1, 10655, 4.99, '2007-03-01 15:01:53.996577'); -INSERT INTO dvds.payment VALUES (20628, 385, 1, 11021, 2.99, '2007-03-02 03:58:37.996577'); -INSERT INTO dvds.payment VALUES (20629, 385, 1, 11559, 2.99, '2007-03-16 23:48:52.996577'); -INSERT INTO dvds.payment VALUES (20630, 385, 2, 12310, 2.99, '2007-03-18 04:31:00.996577'); -INSERT INTO dvds.payment VALUES (20631, 385, 2, 12686, 8.99, '2007-03-18 18:23:35.996577'); -INSERT INTO dvds.payment VALUES (20632, 385, 2, 13062, 7.99, '2007-03-19 08:12:43.996577'); -INSERT INTO dvds.payment VALUES (20633, 385, 1, 13117, 0.99, '2007-03-19 10:01:46.996577'); -INSERT INTO dvds.payment VALUES (20634, 385, 1, 15488, 6.99, '2007-03-23 00:34:27.996577'); -INSERT INTO dvds.payment VALUES (20635, 386, 1, 10572, 4.99, '2007-03-01 11:55:19.996577'); -INSERT INTO dvds.payment VALUES (20636, 386, 2, 10618, 3.99, '2007-03-01 13:35:04.996577'); -INSERT INTO dvds.payment VALUES (20637, 386, 1, 10715, 2.99, '2007-03-01 17:20:14.996577'); -INSERT INTO dvds.payment VALUES (20638, 386, 2, 11128, 2.99, '2007-03-02 07:31:51.996577'); -INSERT INTO dvds.payment VALUES (20639, 386, 2, 11695, 4.99, '2007-03-17 05:29:34.996577'); -INSERT INTO dvds.payment VALUES (20640, 386, 2, 12961, 2.99, '2007-03-19 04:51:03.996577'); -INSERT INTO dvds.payment VALUES (20641, 386, 1, 13716, 3.99, '2007-03-20 08:16:58.996577'); -INSERT INTO dvds.payment VALUES (20642, 386, 1, 13764, 2.99, '2007-03-20 10:06:42.996577'); -INSERT INTO dvds.payment VALUES (20643, 386, 2, 13869, 6.99, '2007-03-20 13:37:23.996577'); -INSERT INTO dvds.payment VALUES (20644, 386, 1, 15949, 0.99, '2007-03-23 17:34:30.996577'); -INSERT INTO dvds.payment VALUES (20645, 387, 1, 10564, 0.99, '2007-03-01 11:36:00.996577'); -INSERT INTO dvds.payment VALUES (20646, 387, 1, 10838, 4.99, '2007-03-01 22:04:36.996577'); -INSERT INTO dvds.payment VALUES (20647, 387, 2, 11682, 2.99, '2007-03-17 04:42:06.996577'); -INSERT INTO dvds.payment VALUES (20648, 387, 2, 12153, 4.99, '2007-03-17 22:50:56.996577'); -INSERT INTO dvds.payment VALUES (20649, 387, 1, 12936, 6.99, '2007-03-19 03:53:32.996577'); -INSERT INTO dvds.payment VALUES (20650, 387, 2, 13034, 2.99, '2007-03-19 07:09:55.996577'); -INSERT INTO dvds.payment VALUES (20651, 387, 1, 13082, 5.99, '2007-03-19 08:47:45.996577'); -INSERT INTO dvds.payment VALUES (20652, 387, 2, 13645, 0.99, '2007-03-20 06:15:31.996577'); -INSERT INTO dvds.payment VALUES (20653, 387, 2, 13772, 4.99, '2007-03-20 10:16:18.996577'); -INSERT INTO dvds.payment VALUES (20654, 387, 2, 14279, 5.99, '2007-03-21 05:07:34.996577'); -INSERT INTO dvds.payment VALUES (20655, 387, 2, 14979, 0.99, '2007-03-22 05:45:02.996577'); -INSERT INTO dvds.payment VALUES (20656, 388, 2, 11604, 0.99, '2007-03-17 01:56:53.996577'); -INSERT INTO dvds.payment VALUES (20657, 388, 2, 12044, 0.99, '2007-03-17 19:08:03.996577'); -INSERT INTO dvds.payment VALUES (20658, 388, 1, 12068, 2.99, '2007-03-17 20:05:34.996577'); -INSERT INTO dvds.payment VALUES (20659, 388, 2, 12267, 6.99, '2007-03-18 02:52:56.996577'); -INSERT INTO dvds.payment VALUES (20660, 388, 2, 12497, 4.99, '2007-03-18 11:27:06.996577'); -INSERT INTO dvds.payment VALUES (20661, 388, 2, 12646, 2.99, '2007-03-18 16:53:32.996577'); -INSERT INTO dvds.payment VALUES (20662, 388, 1, 12749, 2.99, '2007-03-18 20:59:47.996577'); -INSERT INTO dvds.payment VALUES (20663, 388, 1, 12977, 4.99, '2007-03-19 05:23:59.996577'); -INSERT INTO dvds.payment VALUES (20664, 388, 1, 14273, 10.99, '2007-03-21 04:55:14.996577'); -INSERT INTO dvds.payment VALUES (20665, 388, 2, 14853, 5.99, '2007-03-22 00:54:59.996577'); -INSERT INTO dvds.payment VALUES (20666, 388, 2, 15660, 5.99, '2007-03-23 07:19:47.996577'); -INSERT INTO dvds.payment VALUES (20667, 389, 1, 10949, 2.99, '2007-03-02 01:52:30.996577'); -INSERT INTO dvds.payment VALUES (20668, 389, 2, 11348, 4.99, '2007-03-02 15:47:04.996577'); -INSERT INTO dvds.payment VALUES (20669, 389, 2, 11441, 2.99, '2007-03-02 18:54:07.996577'); -INSERT INTO dvds.payment VALUES (20670, 389, 2, 11944, 3.99, '2007-03-17 15:31:08.996577'); -INSERT INTO dvds.payment VALUES (20671, 389, 2, 12069, 4.99, '2007-03-17 20:08:06.996577'); -INSERT INTO dvds.payment VALUES (20672, 389, 2, 14493, 7.99, '2007-03-21 12:30:10.996577'); -INSERT INTO dvds.payment VALUES (20673, 389, 1, 14578, 2.99, '2007-03-21 15:22:04.996577'); -INSERT INTO dvds.payment VALUES (20674, 389, 1, 14777, 2.99, '2007-03-21 22:24:16.996577'); -INSERT INTO dvds.payment VALUES (20675, 389, 1, 15462, 5.99, '2007-03-22 23:42:27.996577'); -INSERT INTO dvds.payment VALUES (20676, 389, 2, 16011, 9.99, '2007-03-23 19:39:59.996577'); -INSERT INTO dvds.payment VALUES (20677, 390, 1, 12105, 5.99, '2007-03-17 21:23:11.996577'); -INSERT INTO dvds.payment VALUES (20678, 390, 2, 12803, 2.99, '2007-03-18 22:56:47.996577'); -INSERT INTO dvds.payment VALUES (20679, 390, 1, 13413, 3.99, '2007-03-19 21:15:12.996577'); -INSERT INTO dvds.payment VALUES (20680, 390, 1, 13473, 4.99, '2007-03-19 23:32:16.996577'); -INSERT INTO dvds.payment VALUES (20681, 390, 1, 13501, 0.99, '2007-03-20 00:24:46.996577'); -INSERT INTO dvds.payment VALUES (20682, 390, 2, 13546, 3.99, '2007-03-20 02:18:50.996577'); -INSERT INTO dvds.payment VALUES (20683, 390, 2, 13591, 3.99, '2007-03-20 04:18:31.996577'); -INSERT INTO dvds.payment VALUES (20684, 390, 2, 13618, 7.99, '2007-03-20 05:05:12.996577'); -INSERT INTO dvds.payment VALUES (20685, 390, 2, 13893, 5.99, '2007-03-20 14:21:18.996577'); -INSERT INTO dvds.payment VALUES (20686, 390, 2, 15222, 4.99, '2007-03-22 15:40:56.996577'); -INSERT INTO dvds.payment VALUES (20687, 390, 2, 15303, 8.99, '2007-03-22 18:13:25.996577'); -INSERT INTO dvds.payment VALUES (20688, 390, 2, 15376, 4.99, '2007-03-22 20:50:01.996577'); -INSERT INTO dvds.payment VALUES (20689, 391, 2, 10406, 2.99, '2007-03-01 06:05:31.996577'); -INSERT INTO dvds.payment VALUES (20690, 391, 1, 11151, 4.99, '2007-03-02 08:21:10.996577'); -INSERT INTO dvds.payment VALUES (20691, 391, 2, 11434, 2.99, '2007-03-02 18:41:40.996577'); -INSERT INTO dvds.payment VALUES (20692, 391, 1, 11602, 4.99, '2007-03-17 01:49:45.996577'); -INSERT INTO dvds.payment VALUES (20693, 391, 1, 12090, 0.99, '2007-03-17 20:50:09.996577'); -INSERT INTO dvds.payment VALUES (20694, 391, 1, 12100, 1.99, '2007-03-17 21:09:36.996577'); -INSERT INTO dvds.payment VALUES (20695, 391, 1, 13980, 2.99, '2007-03-20 17:33:06.996577'); -INSERT INTO dvds.payment VALUES (20696, 391, 1, 14381, 0.99, '2007-03-21 08:24:13.996577'); -INSERT INTO dvds.payment VALUES (20697, 392, 1, 10435, 4.99, '2007-03-01 07:19:17.996577'); -INSERT INTO dvds.payment VALUES (20698, 392, 1, 11459, 0.99, '2007-03-02 19:53:51.996577'); -INSERT INTO dvds.payment VALUES (20699, 392, 1, 11686, 2.99, '2007-03-17 05:07:56.996577'); -INSERT INTO dvds.payment VALUES (20700, 392, 2, 12102, 6.99, '2007-03-17 21:13:52.996577'); -INSERT INTO dvds.payment VALUES (20701, 392, 1, 12368, 6.99, '2007-03-18 06:26:04.996577'); -INSERT INTO dvds.payment VALUES (20702, 392, 2, 12561, 0.99, '2007-03-18 13:27:17.996577'); -INSERT INTO dvds.payment VALUES (20703, 392, 1, 13629, 4.99, '2007-03-20 05:32:33.996577'); -INSERT INTO dvds.payment VALUES (20704, 392, 2, 14081, 7.99, '2007-03-20 22:03:39.996577'); -INSERT INTO dvds.payment VALUES (20705, 392, 1, 14223, 5.99, '2007-03-21 03:20:17.996577'); -INSERT INTO dvds.payment VALUES (20706, 392, 2, 14369, 0.99, '2007-03-21 08:02:10.996577'); -INSERT INTO dvds.payment VALUES (20707, 392, 2, 14438, 5.99, '2007-03-21 10:19:36.996577'); -INSERT INTO dvds.payment VALUES (20708, 393, 2, 12059, 2.99, '2007-03-17 19:37:49.996577'); -INSERT INTO dvds.payment VALUES (20709, 393, 1, 12113, 1.99, '2007-03-17 21:29:26.996577'); -INSERT INTO dvds.payment VALUES (20710, 393, 1, 12563, 4.99, '2007-03-18 13:36:55.996577'); -INSERT INTO dvds.payment VALUES (20711, 393, 1, 12676, 0.99, '2007-03-18 18:03:06.996577'); -INSERT INTO dvds.payment VALUES (20712, 393, 1, 13184, 4.99, '2007-03-19 12:44:44.996577'); -INSERT INTO dvds.payment VALUES (20713, 393, 2, 13357, 4.99, '2007-03-19 19:31:25.996577'); -INSERT INTO dvds.payment VALUES (20714, 393, 2, 13788, 1.99, '2007-03-20 10:44:07.996577'); -INSERT INTO dvds.payment VALUES (20715, 393, 1, 15132, 2.99, '2007-03-22 11:39:51.996577'); -INSERT INTO dvds.payment VALUES (20716, 393, 2, 15284, 3.99, '2007-03-22 17:45:34.996577'); -INSERT INTO dvds.payment VALUES (20717, 393, 2, 15527, 0.99, '2007-03-23 02:13:17.996577'); -INSERT INTO dvds.payment VALUES (20718, 393, 2, 16049, 3.99, '2007-03-23 21:18:38.996577'); -INSERT INTO dvds.payment VALUES (20719, 394, 1, 10319, 4.99, '2007-03-01 03:05:45.996577'); -INSERT INTO dvds.payment VALUES (20720, 394, 1, 10603, 0.99, '2007-03-01 12:59:01.996577'); -INSERT INTO dvds.payment VALUES (20721, 394, 1, 10718, 0.99, '2007-03-01 17:24:04.996577'); -INSERT INTO dvds.payment VALUES (20722, 394, 1, 12080, 4.99, '2007-03-17 20:36:30.996577'); -INSERT INTO dvds.payment VALUES (20723, 394, 1, 12389, 4.99, '2007-03-18 07:17:02.996577'); -INSERT INTO dvds.payment VALUES (20724, 394, 2, 12510, 9.99, '2007-03-18 11:50:51.996577'); -INSERT INTO dvds.payment VALUES (20725, 394, 2, 13047, 0.99, '2007-03-19 07:53:15.996577'); -INSERT INTO dvds.payment VALUES (20726, 394, 1, 14605, 0.99, '2007-03-21 16:24:32.996577'); -INSERT INTO dvds.payment VALUES (20727, 395, 1, 11889, 0.99, '2007-03-17 13:36:53.996577'); -INSERT INTO dvds.payment VALUES (20728, 395, 1, 14471, 5.99, '2007-03-21 11:39:06.996577'); -INSERT INTO dvds.payment VALUES (20729, 395, 2, 14720, 0.99, '2007-03-21 20:12:19.996577'); -INSERT INTO dvds.payment VALUES (20730, 395, 1, 15698, 2.99, '2007-03-23 08:40:06.996577'); -INSERT INTO dvds.payment VALUES (20731, 395, 1, 15856, 0.99, '2007-03-23 14:27:38.996577'); -INSERT INTO dvds.payment VALUES (20732, 395, 1, 15970, 4.99, '2007-03-23 18:22:50.996577'); -INSERT INTO dvds.payment VALUES (20733, 396, 2, 10610, 0.99, '2007-03-01 13:18:07.996577'); -INSERT INTO dvds.payment VALUES (20734, 396, 2, 12393, 5.99, '2007-03-18 07:31:07.996577'); -INSERT INTO dvds.payment VALUES (20735, 396, 1, 12895, 4.99, '2007-03-19 02:19:14.996577'); -INSERT INTO dvds.payment VALUES (20736, 396, 2, 13355, 4.99, '2007-03-19 19:27:45.996577'); -INSERT INTO dvds.payment VALUES (20737, 396, 1, 14078, 3.99, '2007-03-20 21:55:06.996577'); -INSERT INTO dvds.payment VALUES (20738, 396, 1, 14169, 4.99, '2007-03-21 01:28:57.996577'); -INSERT INTO dvds.payment VALUES (20739, 396, 1, 14508, 2.99, '2007-03-21 13:02:24.996577'); -INSERT INTO dvds.payment VALUES (20740, 396, 2, 14778, 5.99, '2007-03-21 22:24:56.996577'); -INSERT INTO dvds.payment VALUES (20741, 396, 1, 14792, 1.99, '2007-03-21 23:05:07.996577'); -INSERT INTO dvds.payment VALUES (20742, 396, 2, 15198, 7.99, '2007-03-22 14:43:59.996577'); -INSERT INTO dvds.payment VALUES (20743, 397, 1, 10534, 0.99, '2007-03-01 10:43:37.996577'); -INSERT INTO dvds.payment VALUES (20744, 397, 2, 10598, 4.99, '2007-03-01 12:52:02.996577'); -INSERT INTO dvds.payment VALUES (20745, 397, 1, 10785, 1.99, '2007-03-01 19:53:21.996577'); -INSERT INTO dvds.payment VALUES (20746, 397, 2, 11511, 4.99, '2007-03-16 22:08:25.996577'); -INSERT INTO dvds.payment VALUES (20747, 397, 2, 12223, 2.99, '2007-03-18 01:27:06.996577'); -INSERT INTO dvds.payment VALUES (20748, 397, 1, 12276, 0.99, '2007-03-18 03:11:48.996577'); -INSERT INTO dvds.payment VALUES (20749, 397, 2, 12329, 1.99, '2007-03-18 05:12:56.996577'); -INSERT INTO dvds.payment VALUES (20750, 397, 2, 12700, 0.99, '2007-03-18 18:53:12.996577'); -INSERT INTO dvds.payment VALUES (20751, 397, 2, 12726, 2.99, '2007-03-18 20:13:12.996577'); -INSERT INTO dvds.payment VALUES (20752, 397, 1, 12772, 4.99, '2007-03-18 21:57:51.996577'); -INSERT INTO dvds.payment VALUES (20753, 397, 2, 14100, 3.99, '2007-03-20 22:59:33.996577'); -INSERT INTO dvds.payment VALUES (20754, 397, 1, 14790, 6.99, '2007-03-21 23:02:43.996577'); -INSERT INTO dvds.payment VALUES (20755, 397, 1, 15083, 6.99, '2007-03-22 09:46:03.996577'); -INSERT INTO dvds.payment VALUES (20756, 398, 1, 10230, 2.99, '2007-03-01 00:18:02.996577'); -INSERT INTO dvds.payment VALUES (20757, 398, 2, 11132, 4.99, '2007-03-02 07:42:35.996577'); -INSERT INTO dvds.payment VALUES (20758, 398, 2, 12528, 2.99, '2007-03-18 12:21:07.996577'); -INSERT INTO dvds.payment VALUES (20759, 398, 2, 13643, 4.99, '2007-03-20 06:10:50.996577'); -INSERT INTO dvds.payment VALUES (20760, 398, 1, 15189, 3.99, '2007-03-22 14:25:08.996577'); -INSERT INTO dvds.payment VALUES (20761, 399, 2, 10654, 2.99, '2007-03-01 15:00:01.996577'); -INSERT INTO dvds.payment VALUES (20762, 399, 2, 10960, 5.99, '2007-03-02 02:14:44.996577'); -INSERT INTO dvds.payment VALUES (20763, 399, 1, 11329, 4.99, '2007-03-02 15:11:18.996577'); -INSERT INTO dvds.payment VALUES (20764, 399, 1, 11953, 3.99, '2007-03-17 15:45:08.996577'); -INSERT INTO dvds.payment VALUES (20765, 399, 1, 13253, 4.99, '2007-03-19 15:22:22.996577'); -INSERT INTO dvds.payment VALUES (20766, 399, 2, 13293, 4.99, '2007-03-19 17:04:18.996577'); -INSERT INTO dvds.payment VALUES (20767, 399, 1, 15300, 0.99, '2007-03-22 18:12:26.996577'); -INSERT INTO dvds.payment VALUES (20768, 399, 1, 15468, 4.99, '2007-03-22 23:53:56.996577'); -INSERT INTO dvds.payment VALUES (20769, 400, 2, 10484, 2.99, '2007-03-01 08:48:19.996577'); -INSERT INTO dvds.payment VALUES (20770, 400, 1, 10711, 0.99, '2007-03-01 17:13:35.996577'); -INSERT INTO dvds.payment VALUES (20771, 400, 2, 11510, 6.99, '2007-03-16 21:58:33.996577'); -INSERT INTO dvds.payment VALUES (20772, 400, 2, 11530, 2.99, '2007-03-16 22:57:26.996577'); -INSERT INTO dvds.payment VALUES (20773, 400, 1, 11600, 5.99, '2007-03-17 01:40:30.996577'); -INSERT INTO dvds.payment VALUES (20774, 400, 1, 12514, 2.99, '2007-03-18 12:02:21.996577'); -INSERT INTO dvds.payment VALUES (20775, 400, 2, 13449, 2.99, '2007-03-19 22:45:27.996577'); -INSERT INTO dvds.payment VALUES (20776, 400, 1, 14775, 2.99, '2007-03-21 22:21:33.996577'); -INSERT INTO dvds.payment VALUES (20777, 400, 2, 15533, 4.99, '2007-03-23 02:23:05.996577'); -INSERT INTO dvds.payment VALUES (20778, 400, 2, 15988, 4.99, '2007-03-23 18:51:34.996577'); -INSERT INTO dvds.payment VALUES (20779, 401, 1, 11820, 2.99, '2007-03-17 10:53:59.996577'); -INSERT INTO dvds.payment VALUES (20780, 401, 1, 12475, 4.99, '2007-03-18 10:42:47.996577'); -INSERT INTO dvds.payment VALUES (20781, 401, 2, 12479, 4.99, '2007-03-18 10:55:03.996577'); -INSERT INTO dvds.payment VALUES (20782, 401, 1, 12906, 2.99, '2007-03-19 02:42:09.996577'); -INSERT INTO dvds.payment VALUES (20783, 401, 1, 13024, 4.99, '2007-03-19 06:47:47.996577'); -INSERT INTO dvds.payment VALUES (20784, 401, 1, 14359, 0.99, '2007-03-21 07:44:45.996577'); -INSERT INTO dvds.payment VALUES (20785, 401, 2, 14433, 1.99, '2007-03-21 10:05:00.996577'); -INSERT INTO dvds.payment VALUES (20786, 401, 1, 15831, 0.99, '2007-03-23 13:49:45.996577'); -INSERT INTO dvds.payment VALUES (20787, 401, 1, 15927, 0.99, '2007-03-23 16:51:37.996577'); -INSERT INTO dvds.payment VALUES (20788, 402, 2, 11045, 0.99, '2007-03-02 04:36:20.996577'); -INSERT INTO dvds.payment VALUES (20789, 402, 2, 11549, 4.99, '2007-03-16 23:30:14.996577'); -INSERT INTO dvds.payment VALUES (20790, 402, 2, 11920, 0.99, '2007-03-17 14:38:45.996577'); -INSERT INTO dvds.payment VALUES (20791, 402, 1, 15428, 4.99, '2007-03-22 22:40:18.996577'); -INSERT INTO dvds.payment VALUES (20792, 403, 1, 10443, 2.99, '2007-03-01 07:29:30.996577'); -INSERT INTO dvds.payment VALUES (20793, 403, 1, 10547, 6.99, '2007-03-01 11:12:43.996577'); -INSERT INTO dvds.payment VALUES (20794, 403, 2, 10789, 2.99, '2007-03-01 20:06:21.996577'); -INSERT INTO dvds.payment VALUES (20795, 403, 1, 11038, 7.99, '2007-03-02 04:28:08.996577'); -INSERT INTO dvds.payment VALUES (20796, 403, 2, 11391, 9.99, '2007-03-02 17:08:38.996577'); -INSERT INTO dvds.payment VALUES (20797, 403, 2, 11427, 2.99, '2007-03-02 18:31:05.996577'); -INSERT INTO dvds.payment VALUES (20798, 403, 2, 11460, 0.99, '2007-03-02 19:56:29.996577'); -INSERT INTO dvds.payment VALUES (20799, 403, 2, 11558, 0.99, '2007-03-16 23:48:18.996577'); -INSERT INTO dvds.payment VALUES (20800, 403, 2, 12005, 5.99, '2007-03-17 17:25:21.996577'); -INSERT INTO dvds.payment VALUES (20801, 403, 1, 12132, 2.99, '2007-03-17 22:05:29.996577'); -INSERT INTO dvds.payment VALUES (20802, 403, 1, 12793, 5.99, '2007-03-18 22:49:02.996577'); -INSERT INTO dvds.payment VALUES (20803, 403, 1, 14519, 2.99, '2007-03-21 13:27:55.996577'); -INSERT INTO dvds.payment VALUES (20804, 403, 1, 14662, 0.99, '2007-03-21 18:13:53.996577'); -INSERT INTO dvds.payment VALUES (20805, 403, 2, 14725, 4.99, '2007-03-21 20:30:34.996577'); -INSERT INTO dvds.payment VALUES (20806, 403, 1, 15410, 4.99, '2007-03-22 21:56:09.996577'); -INSERT INTO dvds.payment VALUES (20807, 404, 1, 10651, 2.99, '2007-03-01 14:48:48.996577'); -INSERT INTO dvds.payment VALUES (20808, 404, 1, 12325, 5.99, '2007-03-18 05:09:56.996577'); -INSERT INTO dvds.payment VALUES (20809, 404, 1, 12554, 8.99, '2007-03-18 13:15:54.996577'); -INSERT INTO dvds.payment VALUES (20810, 404, 2, 13412, 5.99, '2007-03-19 21:15:01.996577'); -INSERT INTO dvds.payment VALUES (20811, 404, 1, 13422, 4.99, '2007-03-19 21:35:50.996577'); -INSERT INTO dvds.payment VALUES (20812, 404, 1, 14691, 0.99, '2007-03-21 19:10:55.996577'); -INSERT INTO dvds.payment VALUES (20813, 404, 2, 14835, 5.99, '2007-03-22 00:17:33.996577'); -INSERT INTO dvds.payment VALUES (20814, 404, 2, 14838, 4.99, '2007-03-22 00:26:00.996577'); -INSERT INTO dvds.payment VALUES (20815, 404, 2, 14912, 4.99, '2007-03-22 03:20:08.996577'); -INSERT INTO dvds.payment VALUES (20816, 404, 2, 15087, 0.99, '2007-03-22 09:52:35.996577'); -INSERT INTO dvds.payment VALUES (20817, 404, 2, 15290, 10.99, '2007-03-22 17:56:28.996577'); -INSERT INTO dvds.payment VALUES (20818, 405, 1, 10472, 4.99, '2007-03-01 08:23:07.996577'); -INSERT INTO dvds.payment VALUES (20819, 405, 2, 10823, 4.99, '2007-03-01 21:27:36.996577'); -INSERT INTO dvds.payment VALUES (20820, 405, 1, 11345, 7.99, '2007-03-02 15:42:45.996577'); -INSERT INTO dvds.payment VALUES (20821, 405, 1, 12050, 0.99, '2007-03-17 19:23:51.996577'); -INSERT INTO dvds.payment VALUES (20822, 405, 2, 12425, 5.99, '2007-03-18 08:46:32.996577'); -INSERT INTO dvds.payment VALUES (20823, 405, 1, 13304, 1.99, '2007-03-19 17:24:58.996577'); -INSERT INTO dvds.payment VALUES (20824, 405, 1, 13398, 0.99, '2007-03-19 20:37:14.996577'); -INSERT INTO dvds.payment VALUES (20825, 405, 1, 14274, 4.99, '2007-03-21 04:57:46.996577'); -INSERT INTO dvds.payment VALUES (20826, 405, 2, 14537, 0.99, '2007-03-21 13:52:50.996577'); -INSERT INTO dvds.payment VALUES (20827, 405, 1, 15072, 1.99, '2007-03-22 09:27:11.996577'); -INSERT INTO dvds.payment VALUES (20828, 405, 2, 15383, 2.99, '2007-03-22 20:59:46.996577'); -INSERT INTO dvds.payment VALUES (20829, 405, 1, 15932, 4.99, '2007-03-23 17:00:06.996577'); -INSERT INTO dvds.payment VALUES (20830, 406, 1, 10632, 1.99, '2007-03-01 14:05:22.996577'); -INSERT INTO dvds.payment VALUES (20831, 406, 1, 11603, 4.99, '2007-03-17 01:50:36.996577'); -INSERT INTO dvds.payment VALUES (20832, 406, 2, 12505, 5.99, '2007-03-18 11:45:56.996577'); -INSERT INTO dvds.payment VALUES (20833, 406, 2, 14205, 6.99, '2007-03-21 02:25:41.996577'); -INSERT INTO dvds.payment VALUES (20834, 406, 2, 14421, 2.99, '2007-03-21 09:48:47.996577'); -INSERT INTO dvds.payment VALUES (20835, 406, 2, 14601, 2.99, '2007-03-21 16:14:18.996577'); -INSERT INTO dvds.payment VALUES (20836, 407, 2, 10774, 4.99, '2007-03-01 19:22:59.996577'); -INSERT INTO dvds.payment VALUES (20837, 407, 1, 11214, 8.99, '2007-03-02 10:48:16.996577'); -INSERT INTO dvds.payment VALUES (20838, 407, 1, 11222, 2.99, '2007-03-02 11:00:54.996577'); -INSERT INTO dvds.payment VALUES (20839, 407, 2, 11382, 5.99, '2007-03-02 16:49:18.996577'); -INSERT INTO dvds.payment VALUES (20840, 407, 2, 11518, 4.99, '2007-03-16 22:28:15.996577'); -INSERT INTO dvds.payment VALUES (20841, 407, 1, 11677, 0.99, '2007-03-17 04:34:52.996577'); -INSERT INTO dvds.payment VALUES (20842, 407, 2, 12566, 0.99, '2007-03-18 13:41:30.996577'); -INSERT INTO dvds.payment VALUES (20843, 407, 2, 12931, 2.99, '2007-03-19 03:40:13.996577'); -INSERT INTO dvds.payment VALUES (20844, 407, 1, 13800, 0.99, '2007-03-20 11:09:14.996577'); -INSERT INTO dvds.payment VALUES (20845, 407, 2, 13856, 6.99, '2007-03-20 13:17:58.996577'); -INSERT INTO dvds.payment VALUES (20846, 407, 2, 14401, 6.99, '2007-03-21 09:04:46.996577'); -INSERT INTO dvds.payment VALUES (20847, 407, 2, 15320, 0.99, '2007-03-22 18:46:15.996577'); -INSERT INTO dvds.payment VALUES (20848, 407, 2, 15334, 1.99, '2007-03-22 19:13:01.996577'); -INSERT INTO dvds.payment VALUES (20849, 408, 2, 11115, 2.99, '2007-03-02 06:59:32.996577'); -INSERT INTO dvds.payment VALUES (20850, 408, 1, 12140, 2.99, '2007-03-17 22:26:21.996577'); -INSERT INTO dvds.payment VALUES (20851, 408, 1, 12338, 4.99, '2007-03-18 05:32:50.996577'); -INSERT INTO dvds.payment VALUES (20852, 408, 1, 12498, 2.99, '2007-03-18 11:29:34.996577'); -INSERT INTO dvds.payment VALUES (20853, 408, 2, 12900, 0.99, '2007-03-19 02:32:15.996577'); -INSERT INTO dvds.payment VALUES (20854, 408, 1, 13508, 7.99, '2007-03-20 00:41:20.996577'); -INSERT INTO dvds.payment VALUES (20855, 408, 2, 13744, 3.99, '2007-03-20 09:20:11.996577'); -INSERT INTO dvds.payment VALUES (20856, 408, 1, 13944, 2.99, '2007-03-20 16:09:42.996577'); -INSERT INTO dvds.payment VALUES (20857, 408, 2, 14733, 4.99, '2007-03-21 20:50:59.996577'); -INSERT INTO dvds.payment VALUES (20858, 408, 1, 15628, 2.99, '2007-03-23 05:56:30.996577'); -INSERT INTO dvds.payment VALUES (20859, 408, 2, 15716, 1.99, '2007-03-23 09:30:26.996577'); -INSERT INTO dvds.payment VALUES (20860, 408, 1, 15765, 6.99, '2007-03-23 11:34:45.996577'); -INSERT INTO dvds.payment VALUES (20861, 409, 2, 12830, 0.99, '2007-03-19 00:08:51.996577'); -INSERT INTO dvds.payment VALUES (20862, 409, 1, 13392, 8.99, '2007-03-19 20:31:48.996577'); -INSERT INTO dvds.payment VALUES (20863, 409, 2, 13632, 6.99, '2007-03-20 05:39:18.996577'); -INSERT INTO dvds.payment VALUES (20864, 409, 1, 14103, 1.99, '2007-03-20 23:05:26.996577'); -INSERT INTO dvds.payment VALUES (20865, 409, 1, 14697, 4.99, '2007-03-21 19:17:47.996577'); -INSERT INTO dvds.payment VALUES (20866, 410, 1, 10402, 4.99, '2007-03-01 05:55:45.996577'); -INSERT INTO dvds.payment VALUES (20867, 410, 1, 10837, 2.99, '2007-03-01 21:58:48.996577'); -INSERT INTO dvds.payment VALUES (20868, 410, 1, 11107, 0.99, '2007-03-02 06:48:04.996577'); -INSERT INTO dvds.payment VALUES (20869, 410, 1, 11187, 10.99, '2007-03-02 09:44:45.996577'); -INSERT INTO dvds.payment VALUES (20870, 410, 1, 11472, 6.99, '2007-03-02 20:17:32.996577'); -INSERT INTO dvds.payment VALUES (20871, 410, 1, 11694, 6.99, '2007-03-17 05:25:56.996577'); -INSERT INTO dvds.payment VALUES (20872, 410, 2, 12955, 8.99, '2007-03-19 04:34:24.996577'); -INSERT INTO dvds.payment VALUES (20873, 410, 1, 13460, 4.99, '2007-03-19 23:16:50.996577'); -INSERT INTO dvds.payment VALUES (20874, 410, 2, 13748, 2.99, '2007-03-20 09:28:20.996577'); -INSERT INTO dvds.payment VALUES (20875, 410, 2, 13948, 6.99, '2007-03-20 16:19:14.996577'); -INSERT INTO dvds.payment VALUES (20876, 410, 1, 14237, 3.99, '2007-03-21 03:43:26.996577'); -INSERT INTO dvds.payment VALUES (20877, 410, 2, 14298, 4.99, '2007-03-21 05:45:36.996577'); -INSERT INTO dvds.payment VALUES (20878, 410, 1, 14319, 4.99, '2007-03-21 06:29:21.996577'); -INSERT INTO dvds.payment VALUES (20879, 410, 2, 14819, 2.99, '2007-03-21 23:45:45.996577'); -INSERT INTO dvds.payment VALUES (20880, 410, 1, 15211, 2.99, '2007-03-22 15:08:47.996577'); -INSERT INTO dvds.payment VALUES (20881, 410, 2, 15392, 3.99, '2007-03-22 21:30:41.996577'); -INSERT INTO dvds.payment VALUES (20882, 410, 1, 15518, 4.99, '2007-03-23 01:48:00.996577'); -INSERT INTO dvds.payment VALUES (20883, 411, 2, 11294, 2.99, '2007-03-02 13:36:53.996577'); -INSERT INTO dvds.payment VALUES (20884, 411, 1, 11997, 5.99, '2007-03-17 17:03:04.996577'); -INSERT INTO dvds.payment VALUES (20885, 411, 2, 13634, 0.99, '2007-03-20 05:45:11.996577'); -INSERT INTO dvds.payment VALUES (20886, 411, 2, 13656, 7.99, '2007-03-20 06:29:33.996577'); -INSERT INTO dvds.payment VALUES (20887, 411, 2, 14480, 2.99, '2007-03-21 12:05:06.996577'); -INSERT INTO dvds.payment VALUES (20888, 411, 1, 14772, 5.99, '2007-03-21 22:19:05.996577'); -INSERT INTO dvds.payment VALUES (20889, 411, 2, 14996, 2.99, '2007-03-22 06:21:07.996577'); -INSERT INTO dvds.payment VALUES (20890, 411, 1, 15936, 0.99, '2007-03-23 17:11:37.996577'); -INSERT INTO dvds.payment VALUES (20891, 412, 2, 10381, 2.99, '2007-03-01 05:05:03.996577'); -INSERT INTO dvds.payment VALUES (20892, 412, 1, 10467, 5.99, '2007-03-01 08:14:24.996577'); -INSERT INTO dvds.payment VALUES (20893, 412, 2, 11027, 4.99, '2007-03-02 04:15:36.996577'); -INSERT INTO dvds.payment VALUES (20894, 412, 1, 14068, 3.99, '2007-03-20 21:19:25.996577'); -INSERT INTO dvds.payment VALUES (20895, 412, 1, 14535, 6.99, '2007-03-21 13:51:03.996577'); -INSERT INTO dvds.payment VALUES (20896, 412, 2, 15354, 4.99, '2007-03-22 19:47:25.996577'); -INSERT INTO dvds.payment VALUES (20897, 412, 2, 15732, 4.99, '2007-03-23 10:03:38.996577'); -INSERT INTO dvds.payment VALUES (20898, 412, 1, 15781, 8.99, '2007-03-23 12:09:31.996577'); -INSERT INTO dvds.payment VALUES (20899, 413, 1, 10909, 2.99, '2007-03-02 00:22:25.996577'); -INSERT INTO dvds.payment VALUES (20900, 413, 2, 11304, 2.99, '2007-03-02 14:08:36.996577'); -INSERT INTO dvds.payment VALUES (20901, 413, 1, 11468, 0.99, '2007-03-02 20:15:52.996577'); -INSERT INTO dvds.payment VALUES (20902, 413, 1, 11532, 0.99, '2007-03-16 23:02:40.996577'); -INSERT INTO dvds.payment VALUES (20903, 413, 2, 12552, 2.99, '2007-03-18 13:15:00.996577'); -INSERT INTO dvds.payment VALUES (20904, 413, 1, 13010, 3.99, '2007-03-19 06:20:47.996577'); -INSERT INTO dvds.payment VALUES (20905, 413, 1, 13318, 2.99, '2007-03-19 18:02:23.996577'); -INSERT INTO dvds.payment VALUES (20906, 413, 2, 13824, 4.99, '2007-03-20 12:11:38.996577'); -INSERT INTO dvds.payment VALUES (20907, 413, 2, 13887, 4.99, '2007-03-20 14:07:26.996577'); -INSERT INTO dvds.payment VALUES (20908, 413, 1, 14773, 2.99, '2007-03-21 22:19:23.996577'); -INSERT INTO dvds.payment VALUES (20909, 413, 1, 15678, 2.99, '2007-03-23 07:52:11.996577'); -INSERT INTO dvds.payment VALUES (20910, 414, 1, 11706, 0.99, '2007-03-17 05:52:12.996577'); -INSERT INTO dvds.payment VALUES (20911, 414, 2, 12930, 4.99, '2007-03-19 03:39:58.996577'); -INSERT INTO dvds.payment VALUES (20912, 414, 1, 13042, 0.99, '2007-03-19 07:34:34.996577'); -INSERT INTO dvds.payment VALUES (20913, 414, 1, 13242, 2.99, '2007-03-19 14:57:13.996577'); -INSERT INTO dvds.payment VALUES (20914, 414, 1, 13308, 7.99, '2007-03-19 17:28:08.996577'); -INSERT INTO dvds.payment VALUES (20915, 414, 1, 13404, 0.99, '2007-03-19 20:47:08.996577'); -INSERT INTO dvds.payment VALUES (20916, 414, 2, 13494, 2.99, '2007-03-20 00:05:00.996577'); -INSERT INTO dvds.payment VALUES (20917, 414, 2, 13657, 4.99, '2007-03-20 06:30:05.996577'); -INSERT INTO dvds.payment VALUES (20918, 414, 1, 15140, 6.99, '2007-03-22 12:07:46.996577'); -INSERT INTO dvds.payment VALUES (20919, 414, 2, 15481, 0.99, '2007-03-23 00:27:40.996577'); -INSERT INTO dvds.payment VALUES (20920, 415, 1, 10263, 5.99, '2007-03-01 01:31:14.996577'); -INSERT INTO dvds.payment VALUES (20921, 415, 1, 10553, 2.99, '2007-03-01 11:22:32.996577'); -INSERT INTO dvds.payment VALUES (20922, 415, 2, 11310, 1.99, '2007-03-02 14:20:24.996577'); -INSERT INTO dvds.payment VALUES (20923, 415, 2, 12128, 5.99, '2007-03-17 21:59:35.996577'); -INSERT INTO dvds.payment VALUES (20924, 415, 2, 12588, 2.99, '2007-03-18 14:33:11.996577'); -INSERT INTO dvds.payment VALUES (20925, 415, 2, 13729, 8.99, '2007-03-20 08:45:34.996577'); -INSERT INTO dvds.payment VALUES (20926, 415, 1, 14992, 4.99, '2007-03-22 06:20:13.996577'); -INSERT INTO dvds.payment VALUES (20927, 415, 2, 15121, 4.99, '2007-03-22 11:15:03.996577'); -INSERT INTO dvds.payment VALUES (20928, 415, 1, 15959, 0.99, '2007-03-23 17:55:30.996577'); -INSERT INTO dvds.payment VALUES (20929, 416, 1, 10254, 3.99, '2007-03-01 01:10:29.996577'); -INSERT INTO dvds.payment VALUES (20930, 416, 1, 10354, 2.99, '2007-03-01 04:15:36.996577'); -INSERT INTO dvds.payment VALUES (20931, 416, 1, 10742, 6.99, '2007-03-01 18:21:39.996577'); -INSERT INTO dvds.payment VALUES (20932, 416, 1, 10937, 6.99, '2007-03-02 01:28:44.996577'); -INSERT INTO dvds.payment VALUES (20933, 416, 2, 11047, 5.99, '2007-03-02 04:37:46.996577'); -INSERT INTO dvds.payment VALUES (20934, 416, 1, 11557, 6.99, '2007-03-16 23:47:46.996577'); -INSERT INTO dvds.payment VALUES (20935, 416, 1, 12722, 8.99, '2007-03-18 20:02:19.996577'); -INSERT INTO dvds.payment VALUES (20936, 416, 1, 12932, 4.99, '2007-03-19 03:45:56.996577'); -INSERT INTO dvds.payment VALUES (20937, 416, 1, 14239, 4.99, '2007-03-21 03:47:23.996577'); -INSERT INTO dvds.payment VALUES (20938, 416, 1, 15235, 1.99, '2007-03-22 16:11:38.996577'); -INSERT INTO dvds.payment VALUES (20939, 416, 2, 15470, 4.99, '2007-03-23 00:03:38.996577'); -INSERT INTO dvds.payment VALUES (20940, 416, 1, 15727, 2.99, '2007-03-23 09:57:15.996577'); -INSERT INTO dvds.payment VALUES (20941, 416, 2, 15761, 0.99, '2007-03-23 11:24:17.996577'); -INSERT INTO dvds.payment VALUES (20942, 417, 1, 10478, 0.99, '2007-03-01 08:37:32.996577'); -INSERT INTO dvds.payment VALUES (20943, 417, 1, 11217, 7.99, '2007-03-02 10:54:57.996577'); -INSERT INTO dvds.payment VALUES (20944, 417, 1, 11291, 6.99, '2007-03-02 13:26:24.996577'); -INSERT INTO dvds.payment VALUES (20945, 417, 2, 11303, 0.99, '2007-03-02 14:07:44.996577'); -INSERT INTO dvds.payment VALUES (20946, 417, 2, 12074, 0.99, '2007-03-17 20:19:23.996577'); -INSERT INTO dvds.payment VALUES (20947, 417, 2, 12281, 4.99, '2007-03-18 03:18:58.996577'); -INSERT INTO dvds.payment VALUES (20948, 417, 1, 13545, 4.99, '2007-03-20 02:18:41.996577'); -INSERT INTO dvds.payment VALUES (20949, 417, 1, 13927, 1.99, '2007-03-20 15:40:24.996577'); -INSERT INTO dvds.payment VALUES (20950, 417, 2, 14121, 4.99, '2007-03-20 23:54:59.996577'); -INSERT INTO dvds.payment VALUES (20951, 417, 1, 14304, 6.99, '2007-03-21 05:51:36.996577'); -INSERT INTO dvds.payment VALUES (20952, 417, 1, 14607, 2.99, '2007-03-21 16:25:16.996577'); -INSERT INTO dvds.payment VALUES (20953, 417, 2, 14882, 2.99, '2007-03-22 02:20:47.996577'); -INSERT INTO dvds.payment VALUES (20954, 417, 1, 15795, 0.99, '2007-03-23 12:36:22.996577'); -INSERT INTO dvds.payment VALUES (20955, 418, 2, 10537, 5.99, '2007-03-01 10:50:54.996577'); -INSERT INTO dvds.payment VALUES (20956, 418, 1, 10709, 0.99, '2007-03-01 17:12:23.996577'); -INSERT INTO dvds.payment VALUES (20957, 418, 2, 10915, 2.99, '2007-03-02 00:33:30.996577'); -INSERT INTO dvds.payment VALUES (20958, 418, 1, 11270, 2.99, '2007-03-02 12:46:33.996577'); -INSERT INTO dvds.payment VALUES (20959, 418, 2, 11322, 3.99, '2007-03-02 14:51:43.996577'); -INSERT INTO dvds.payment VALUES (20960, 418, 2, 11409, 1.99, '2007-03-02 17:55:17.996577'); -INSERT INTO dvds.payment VALUES (20961, 418, 1, 11650, 4.99, '2007-03-17 03:28:29.996577'); -INSERT INTO dvds.payment VALUES (20962, 418, 1, 11769, 2.99, '2007-03-17 08:33:15.996577'); -INSERT INTO dvds.payment VALUES (20963, 418, 1, 11910, 0.99, '2007-03-17 14:13:03.996577'); -INSERT INTO dvds.payment VALUES (20964, 418, 2, 13312, 0.99, '2007-03-19 17:37:40.996577'); -INSERT INTO dvds.payment VALUES (20965, 418, 1, 13537, 2.99, '2007-03-20 02:07:41.996577'); -INSERT INTO dvds.payment VALUES (20966, 418, 1, 13970, 0.99, '2007-03-20 17:12:00.996577'); -INSERT INTO dvds.payment VALUES (20967, 418, 1, 14484, 0.99, '2007-03-21 12:15:55.996577'); -INSERT INTO dvds.payment VALUES (20968, 418, 1, 14836, 4.99, '2007-03-22 00:20:52.996577'); -INSERT INTO dvds.payment VALUES (20969, 418, 2, 14860, 2.99, '2007-03-22 01:15:33.996577'); -INSERT INTO dvds.payment VALUES (20970, 418, 1, 15466, 4.99, '2007-03-22 23:45:21.996577'); -INSERT INTO dvds.payment VALUES (20971, 418, 2, 15957, 5.99, '2007-03-23 17:49:48.996577'); -INSERT INTO dvds.payment VALUES (20972, 419, 1, 10372, 2.99, '2007-03-01 04:52:14.996577'); -INSERT INTO dvds.payment VALUES (20973, 419, 2, 11025, 4.99, '2007-03-02 04:07:38.996577'); -INSERT INTO dvds.payment VALUES (20974, 419, 1, 11313, 2.99, '2007-03-02 14:31:17.996577'); -INSERT INTO dvds.payment VALUES (20975, 419, 2, 11323, 2.99, '2007-03-02 14:58:23.996577'); -INSERT INTO dvds.payment VALUES (20976, 419, 1, 11425, 2.99, '2007-03-02 18:27:14.996577'); -INSERT INTO dvds.payment VALUES (20977, 419, 2, 11689, 6.99, '2007-03-17 05:10:34.996577'); -INSERT INTO dvds.payment VALUES (20978, 419, 1, 12460, 7.99, '2007-03-18 09:53:39.996577'); -INSERT INTO dvds.payment VALUES (20979, 419, 1, 12720, 5.99, '2007-03-18 19:57:08.996577'); -INSERT INTO dvds.payment VALUES (20980, 419, 2, 14308, 0.99, '2007-03-21 06:11:47.996577'); -INSERT INTO dvds.payment VALUES (20981, 419, 2, 15779, 4.99, '2007-03-23 12:02:12.996577'); -INSERT INTO dvds.payment VALUES (20982, 420, 2, 10291, 4.99, '2007-03-01 02:08:23.996577'); -INSERT INTO dvds.payment VALUES (20983, 420, 2, 10601, 10.99, '2007-03-01 12:54:06.996577'); -INSERT INTO dvds.payment VALUES (20984, 420, 1, 10766, 4.99, '2007-03-01 19:04:55.996577'); -INSERT INTO dvds.payment VALUES (20985, 420, 2, 11236, 5.99, '2007-03-02 11:45:47.996577'); -INSERT INTO dvds.payment VALUES (20986, 420, 2, 14525, 0.99, '2007-03-21 13:35:15.996577'); -INSERT INTO dvds.payment VALUES (20987, 420, 2, 15597, 0.99, '2007-03-23 04:49:46.996577'); -INSERT INTO dvds.payment VALUES (20988, 421, 2, 11089, 2.99, '2007-03-02 06:20:46.996577'); -INSERT INTO dvds.payment VALUES (20989, 421, 1, 11263, 4.99, '2007-03-02 12:30:45.996577'); -INSERT INTO dvds.payment VALUES (20990, 421, 1, 11523, 3.99, '2007-03-16 22:38:36.996577'); -INSERT INTO dvds.payment VALUES (20991, 421, 1, 12279, 4.99, '2007-03-18 03:15:56.996577'); -INSERT INTO dvds.payment VALUES (20992, 421, 2, 13461, 9.99, '2007-03-19 23:17:30.996577'); -INSERT INTO dvds.payment VALUES (20993, 421, 1, 13872, 4.99, '2007-03-20 13:38:56.996577'); -INSERT INTO dvds.payment VALUES (20994, 421, 1, 14742, 4.99, '2007-03-21 21:07:27.996577'); -INSERT INTO dvds.payment VALUES (20995, 421, 1, 14887, 3.99, '2007-03-22 02:32:57.996577'); -INSERT INTO dvds.payment VALUES (20996, 422, 2, 10833, 6.99, '2007-03-01 21:54:21.996577'); -INSERT INTO dvds.payment VALUES (20997, 422, 2, 11325, 6.99, '2007-03-02 15:01:37.996577'); -INSERT INTO dvds.payment VALUES (20998, 422, 1, 11658, 2.99, '2007-03-17 03:47:43.996577'); -INSERT INTO dvds.payment VALUES (20999, 422, 1, 11842, 4.99, '2007-03-17 11:42:03.996577'); -INSERT INTO dvds.payment VALUES (21000, 422, 1, 12907, 9.99, '2007-03-19 02:44:39.996577'); -INSERT INTO dvds.payment VALUES (21001, 422, 2, 13216, 1.99, '2007-03-19 14:04:31.996577'); -INSERT INTO dvds.payment VALUES (21002, 422, 2, 13625, 1.99, '2007-03-20 05:20:29.996577'); -INSERT INTO dvds.payment VALUES (21003, 422, 2, 13709, 0.99, '2007-03-20 08:03:17.996577'); -INSERT INTO dvds.payment VALUES (21004, 422, 2, 13722, 4.99, '2007-03-20 08:32:11.996577'); -INSERT INTO dvds.payment VALUES (21005, 422, 1, 14861, 4.99, '2007-03-22 01:16:31.996577'); -INSERT INTO dvds.payment VALUES (21006, 422, 1, 15272, 3.99, '2007-03-22 17:18:06.996577'); -INSERT INTO dvds.payment VALUES (21007, 422, 1, 15273, 2.99, '2007-03-22 17:21:54.996577'); -INSERT INTO dvds.payment VALUES (21008, 422, 2, 15316, 2.99, '2007-03-22 18:35:29.996577'); -INSERT INTO dvds.payment VALUES (21009, 423, 1, 10488, 2.99, '2007-03-01 08:55:53.996577'); -INSERT INTO dvds.payment VALUES (21010, 423, 1, 11091, 2.99, '2007-03-02 06:25:07.996577'); -INSERT INTO dvds.payment VALUES (21011, 423, 2, 11514, 4.99, '2007-03-16 22:21:36.996577'); -INSERT INTO dvds.payment VALUES (21012, 423, 2, 12806, 4.99, '2007-03-18 23:05:52.996577'); -INSERT INTO dvds.payment VALUES (21013, 423, 2, 14191, 6.99, '2007-03-21 02:04:24.996577'); -INSERT INTO dvds.payment VALUES (21014, 423, 2, 14902, 4.99, '2007-03-22 03:00:16.996577'); -INSERT INTO dvds.payment VALUES (21015, 423, 1, 15380, 0.99, '2007-03-22 20:56:41.996577'); -INSERT INTO dvds.payment VALUES (21016, 423, 1, 15755, 4.99, '2007-03-23 11:15:04.996577'); -INSERT INTO dvds.payment VALUES (21017, 424, 2, 10369, 4.99, '2007-03-01 04:42:10.996577'); -INSERT INTO dvds.payment VALUES (21018, 424, 1, 10866, 2.99, '2007-03-01 22:51:15.996577'); -INSERT INTO dvds.payment VALUES (21019, 424, 2, 11374, 2.99, '2007-03-02 16:43:20.996577'); -INSERT INTO dvds.payment VALUES (21020, 424, 2, 11562, 6.99, '2007-03-16 23:52:05.996577'); -INSERT INTO dvds.payment VALUES (21021, 424, 2, 11833, 2.99, '2007-03-17 11:28:59.996577'); -INSERT INTO dvds.payment VALUES (21022, 424, 2, 12729, 0.99, '2007-03-18 20:21:25.996577'); -INSERT INTO dvds.payment VALUES (21023, 424, 2, 13793, 3.99, '2007-03-20 10:50:30.996577'); -INSERT INTO dvds.payment VALUES (21024, 424, 2, 15113, 0.99, '2007-03-22 10:52:25.996577'); -INSERT INTO dvds.payment VALUES (21025, 424, 2, 15941, 9.99, '2007-03-23 17:15:10.996577'); -INSERT INTO dvds.payment VALUES (21026, 425, 1, 10545, 0.99, '2007-03-01 11:06:12.996577'); -INSERT INTO dvds.payment VALUES (21027, 425, 2, 13040, 0.99, '2007-03-19 07:32:50.996577'); -INSERT INTO dvds.payment VALUES (21028, 425, 2, 14089, 5.99, '2007-03-20 22:27:28.996577'); -INSERT INTO dvds.payment VALUES (21029, 425, 2, 14881, 4.99, '2007-03-22 02:16:05.996577'); -INSERT INTO dvds.payment VALUES (21030, 425, 1, 15064, 0.99, '2007-03-22 09:10:24.996577'); -INSERT INTO dvds.payment VALUES (21031, 425, 2, 15784, 6.99, '2007-03-23 12:14:26.996577'); -INSERT INTO dvds.payment VALUES (21032, 425, 2, 16036, 2.99, '2007-03-23 20:41:10.996577'); -INSERT INTO dvds.payment VALUES (21033, 426, 1, 10505, 1.99, '2007-03-01 09:42:25.996577'); -INSERT INTO dvds.payment VALUES (21034, 426, 2, 11237, 0.99, '2007-03-02 11:52:27.996577'); -INSERT INTO dvds.payment VALUES (21035, 426, 2, 11876, 0.99, '2007-03-17 12:46:47.996577'); -INSERT INTO dvds.payment VALUES (21036, 426, 2, 11938, 6.99, '2007-03-17 15:23:20.996577'); -INSERT INTO dvds.payment VALUES (21037, 426, 2, 12548, 5.99, '2007-03-18 13:03:52.996577'); -INSERT INTO dvds.payment VALUES (21038, 426, 2, 12707, 4.99, '2007-03-18 19:20:28.996577'); -INSERT INTO dvds.payment VALUES (21039, 426, 1, 12822, 4.99, '2007-03-18 23:43:50.996577'); -INSERT INTO dvds.payment VALUES (21040, 426, 2, 13834, 2.99, '2007-03-20 12:31:34.996577'); -INSERT INTO dvds.payment VALUES (21041, 426, 2, 14151, 6.99, '2007-03-21 00:51:51.996577'); -INSERT INTO dvds.payment VALUES (21042, 426, 2, 14826, 2.99, '2007-03-22 00:00:40.996577'); -INSERT INTO dvds.payment VALUES (21043, 427, 1, 10417, 4.99, '2007-03-01 06:39:02.996577'); -INSERT INTO dvds.payment VALUES (21044, 427, 1, 10464, 5.99, '2007-03-01 08:11:40.996577'); -INSERT INTO dvds.payment VALUES (21045, 427, 2, 10560, 4.99, '2007-03-01 11:33:23.996577'); -INSERT INTO dvds.payment VALUES (21046, 427, 1, 11024, 5.99, '2007-03-02 04:06:57.996577'); -INSERT INTO dvds.payment VALUES (21047, 427, 1, 13720, 1.99, '2007-03-20 08:30:05.996577'); -INSERT INTO dvds.payment VALUES (21048, 427, 2, 14201, 6.99, '2007-03-21 02:20:00.996577'); -INSERT INTO dvds.payment VALUES (21049, 427, 1, 14287, 3.99, '2007-03-21 05:22:25.996577'); -INSERT INTO dvds.payment VALUES (21050, 427, 1, 15330, 3.99, '2007-03-22 19:03:56.996577'); -INSERT INTO dvds.payment VALUES (21051, 428, 2, 10577, 4.99, '2007-03-01 12:15:04.996577'); -INSERT INTO dvds.payment VALUES (21052, 428, 2, 10888, 2.99, '2007-03-01 23:21:11.996577'); -INSERT INTO dvds.payment VALUES (21053, 428, 2, 11536, 0.99, '2007-03-16 23:08:29.996577'); -INSERT INTO dvds.payment VALUES (21054, 429, 1, 12259, 2.99, '2007-03-18 02:43:01.996577'); -INSERT INTO dvds.payment VALUES (21055, 429, 1, 12953, 4.99, '2007-03-19 04:32:33.996577'); -INSERT INTO dvds.payment VALUES (21056, 429, 2, 14495, 4.99, '2007-03-21 12:33:05.996577'); -INSERT INTO dvds.payment VALUES (21057, 430, 1, 12723, 0.99, '2007-03-18 20:02:42.996577'); -INSERT INTO dvds.payment VALUES (21058, 430, 1, 12965, 4.99, '2007-03-19 05:01:26.996577'); -INSERT INTO dvds.payment VALUES (21059, 430, 1, 13007, 0.99, '2007-03-19 06:16:09.996577'); -INSERT INTO dvds.payment VALUES (21060, 430, 2, 13452, 0.99, '2007-03-19 22:48:33.996577'); -INSERT INTO dvds.payment VALUES (21061, 430, 2, 13454, 2.99, '2007-03-19 22:59:18.996577'); -INSERT INTO dvds.payment VALUES (21062, 430, 1, 14058, 5.99, '2007-03-20 20:53:01.996577'); -INSERT INTO dvds.payment VALUES (21063, 430, 1, 15031, 4.99, '2007-03-22 07:40:14.996577'); -INSERT INTO dvds.payment VALUES (21064, 431, 2, 10508, 0.99, '2007-03-01 09:51:53.996577'); -INSERT INTO dvds.payment VALUES (21065, 431, 1, 10527, 4.99, '2007-03-01 10:24:20.996577'); -INSERT INTO dvds.payment VALUES (21066, 431, 2, 10959, 6.99, '2007-03-02 02:08:05.996577'); -INSERT INTO dvds.payment VALUES (21067, 431, 2, 11538, 2.99, '2007-03-16 23:12:30.996577'); -INSERT INTO dvds.payment VALUES (21068, 431, 1, 12273, 6.99, '2007-03-18 03:09:16.996577'); -INSERT INTO dvds.payment VALUES (21069, 431, 2, 13153, 1.99, '2007-03-19 11:38:13.996577'); -INSERT INTO dvds.payment VALUES (21070, 431, 1, 13784, 4.99, '2007-03-20 10:39:54.996577'); -INSERT INTO dvds.payment VALUES (21071, 431, 1, 15809, 2.99, '2007-03-23 13:10:33.996577'); -INSERT INTO dvds.payment VALUES (21072, 431, 1, 15960, 2.99, '2007-03-23 18:04:08.996577'); -INSERT INTO dvds.payment VALUES (21073, 432, 2, 11870, 0.99, '2007-03-17 12:39:54.996577'); -INSERT INTO dvds.payment VALUES (21074, 432, 1, 12767, 6.99, '2007-03-18 21:54:15.996577'); -INSERT INTO dvds.payment VALUES (21075, 432, 1, 14027, 2.99, '2007-03-20 19:50:00.996577'); -INSERT INTO dvds.payment VALUES (21076, 432, 1, 15523, 4.99, '2007-03-23 02:01:02.996577'); -INSERT INTO dvds.payment VALUES (21077, 432, 1, 15713, 6.99, '2007-03-23 09:24:41.996577'); -INSERT INTO dvds.payment VALUES (21078, 433, 1, 10663, 4.99, '2007-03-01 15:19:34.996577'); -INSERT INTO dvds.payment VALUES (21079, 433, 1, 11664, 2.99, '2007-03-17 04:04:18.996577'); -INSERT INTO dvds.payment VALUES (21080, 433, 2, 12669, 6.99, '2007-03-18 17:46:13.996577'); -INSERT INTO dvds.payment VALUES (21081, 433, 2, 13273, 4.99, '2007-03-19 16:17:39.996577'); -INSERT INTO dvds.payment VALUES (21082, 433, 1, 13801, 4.99, '2007-03-20 11:09:19.996577'); -INSERT INTO dvds.payment VALUES (21083, 433, 2, 14523, 4.99, '2007-03-21 13:32:11.996577'); -INSERT INTO dvds.payment VALUES (21084, 433, 1, 14559, 6.99, '2007-03-21 14:40:01.996577'); -INSERT INTO dvds.payment VALUES (21085, 433, 2, 15476, 4.99, '2007-03-23 00:13:33.996577'); -INSERT INTO dvds.payment VALUES (21086, 433, 1, 15502, 5.99, '2007-03-23 01:08:30.996577'); -INSERT INTO dvds.payment VALUES (21087, 434, 1, 11242, 3.99, '2007-03-02 12:00:26.996577'); -INSERT INTO dvds.payment VALUES (21088, 434, 1, 11867, 2.99, '2007-03-17 12:32:54.996577'); -INSERT INTO dvds.payment VALUES (21089, 434, 2, 12030, 2.99, '2007-03-17 18:39:14.996577'); -INSERT INTO dvds.payment VALUES (21090, 434, 2, 12146, 2.99, '2007-03-17 22:38:30.996577'); -INSERT INTO dvds.payment VALUES (21091, 434, 2, 12624, 7.99, '2007-03-18 16:03:26.996577'); -INSERT INTO dvds.payment VALUES (21092, 434, 2, 13359, 9.99, '2007-03-19 19:33:15.996577'); -INSERT INTO dvds.payment VALUES (21093, 434, 1, 13383, 7.99, '2007-03-19 20:07:10.996577'); -INSERT INTO dvds.payment VALUES (21094, 434, 2, 14553, 4.99, '2007-03-21 14:28:06.996577'); -INSERT INTO dvds.payment VALUES (21095, 434, 2, 15016, 3.99, '2007-03-22 07:16:01.996577'); -INSERT INTO dvds.payment VALUES (21096, 434, 2, 15385, 4.99, '2007-03-22 21:06:00.996577'); -INSERT INTO dvds.payment VALUES (21097, 435, 1, 10998, 6.99, '2007-03-02 03:19:21.996577'); -INSERT INTO dvds.payment VALUES (21098, 435, 1, 11041, 2.99, '2007-03-02 04:32:19.996577'); -INSERT INTO dvds.payment VALUES (21099, 435, 1, 11786, 3.99, '2007-03-17 09:26:06.996577'); -INSERT INTO dvds.payment VALUES (21100, 435, 1, 11796, 0.99, '2007-03-17 09:45:13.996577'); -INSERT INTO dvds.payment VALUES (21101, 435, 2, 12046, 0.99, '2007-03-17 19:16:12.996577'); -INSERT INTO dvds.payment VALUES (21102, 435, 1, 12741, 4.99, '2007-03-18 20:45:31.996577'); -INSERT INTO dvds.payment VALUES (21103, 435, 2, 13208, 0.99, '2007-03-19 13:47:21.996577'); -INSERT INTO dvds.payment VALUES (21104, 435, 1, 14696, 4.99, '2007-03-21 19:16:31.996577'); -INSERT INTO dvds.payment VALUES (21105, 435, 1, 14765, 1.99, '2007-03-21 22:08:54.996577'); -INSERT INTO dvds.payment VALUES (21106, 435, 1, 14850, 0.99, '2007-03-22 00:45:21.996577'); -INSERT INTO dvds.payment VALUES (21107, 435, 1, 15136, 2.99, '2007-03-22 11:47:51.996577'); -INSERT INTO dvds.payment VALUES (21108, 436, 2, 11160, 0.99, '2007-03-02 08:33:56.996577'); -INSERT INTO dvds.payment VALUES (21109, 436, 1, 11580, 2.99, '2007-03-17 00:27:33.996577'); -INSERT INTO dvds.payment VALUES (21110, 436, 2, 11615, 4.99, '2007-03-17 02:23:01.996577'); -INSERT INTO dvds.payment VALUES (21111, 436, 2, 11896, 5.99, '2007-03-17 13:48:20.996577'); -INSERT INTO dvds.payment VALUES (21112, 436, 2, 12297, 0.99, '2007-03-18 03:48:23.996577'); -INSERT INTO dvds.payment VALUES (21113, 436, 2, 12429, 6.99, '2007-03-18 08:55:12.996577'); -INSERT INTO dvds.payment VALUES (21114, 436, 2, 13099, 9.99, '2007-03-19 09:23:45.996577'); -INSERT INTO dvds.payment VALUES (21115, 436, 2, 13382, 7.99, '2007-03-19 20:07:07.996577'); -INSERT INTO dvds.payment VALUES (21116, 436, 1, 13533, 3.99, '2007-03-20 01:58:26.996577'); -INSERT INTO dvds.payment VALUES (21117, 436, 1, 13760, 5.99, '2007-03-20 09:54:59.996577'); -INSERT INTO dvds.payment VALUES (21118, 436, 1, 13814, 0.99, '2007-03-20 11:35:49.996577'); -INSERT INTO dvds.payment VALUES (21119, 436, 2, 13826, 2.99, '2007-03-20 12:15:04.996577'); -INSERT INTO dvds.payment VALUES (21120, 436, 2, 15766, 4.99, '2007-03-23 11:38:42.996577'); -INSERT INTO dvds.payment VALUES (21121, 437, 2, 10249, 0.99, '2007-03-01 01:04:05.996577'); -INSERT INTO dvds.payment VALUES (21122, 437, 2, 11417, 3.99, '2007-03-02 18:13:12.996577'); -INSERT INTO dvds.payment VALUES (21123, 437, 1, 12205, 8.99, '2007-03-18 00:49:34.996577'); -INSERT INTO dvds.payment VALUES (21124, 437, 2, 13838, 7.99, '2007-03-20 12:51:12.996577'); -INSERT INTO dvds.payment VALUES (21125, 437, 1, 13839, 2.99, '2007-03-20 12:51:42.996577'); -INSERT INTO dvds.payment VALUES (21126, 437, 1, 13905, 1.99, '2007-03-20 14:41:14.996577'); -INSERT INTO dvds.payment VALUES (21127, 437, 1, 14993, 1.99, '2007-03-22 06:20:44.996577'); -INSERT INTO dvds.payment VALUES (21128, 438, 1, 10512, 6.99, '2007-03-01 10:04:45.996577'); -INSERT INTO dvds.payment VALUES (21129, 438, 1, 10607, 4.99, '2007-03-01 13:13:09.996577'); -INSERT INTO dvds.payment VALUES (21130, 438, 2, 11644, 4.99, '2007-03-17 03:18:12.996577'); -INSERT INTO dvds.payment VALUES (21131, 438, 2, 11933, 4.99, '2007-03-17 15:06:46.996577'); -INSERT INTO dvds.payment VALUES (21132, 438, 2, 12654, 0.99, '2007-03-18 17:25:06.996577'); -INSERT INTO dvds.payment VALUES (21133, 438, 2, 13319, 7.99, '2007-03-19 18:03:39.996577'); -INSERT INTO dvds.payment VALUES (21134, 438, 1, 13414, 4.99, '2007-03-19 21:16:00.996577'); -INSERT INTO dvds.payment VALUES (21135, 438, 2, 14582, 5.99, '2007-03-21 15:36:59.996577'); -INSERT INTO dvds.payment VALUES (21136, 438, 2, 15893, 5.99, '2007-03-23 15:30:26.996577'); -INSERT INTO dvds.payment VALUES (21137, 439, 2, 10744, 1.99, '2007-03-01 18:25:15.996577'); -INSERT INTO dvds.payment VALUES (21138, 439, 1, 10905, 2.99, '2007-03-02 00:14:25.996577'); -INSERT INTO dvds.payment VALUES (21139, 439, 2, 11042, 6.99, '2007-03-02 04:32:59.996577'); -INSERT INTO dvds.payment VALUES (21140, 439, 2, 11544, 5.99, '2007-03-16 23:23:33.996577'); -INSERT INTO dvds.payment VALUES (21141, 439, 1, 11989, 2.99, '2007-03-17 16:52:24.996577'); -INSERT INTO dvds.payment VALUES (21142, 439, 1, 12621, 2.99, '2007-03-18 16:00:02.996577'); -INSERT INTO dvds.payment VALUES (21143, 439, 2, 12755, 5.99, '2007-03-18 21:07:13.996577'); -INSERT INTO dvds.payment VALUES (21144, 439, 2, 12826, 3.99, '2007-03-18 23:53:37.996577'); -INSERT INTO dvds.payment VALUES (21145, 439, 2, 13358, 4.99, '2007-03-19 19:32:46.996577'); -INSERT INTO dvds.payment VALUES (21146, 439, 2, 14730, 5.99, '2007-03-21 20:49:37.996577'); -INSERT INTO dvds.payment VALUES (21147, 439, 2, 15044, 9.99, '2007-03-22 08:20:20.996577'); -INSERT INTO dvds.payment VALUES (21148, 439, 2, 15162, 4.99, '2007-03-22 13:09:31.996577'); -INSERT INTO dvds.payment VALUES (21149, 439, 2, 15653, 4.99, '2007-03-23 07:03:08.996577'); -INSERT INTO dvds.payment VALUES (21150, 439, 1, 15818, 1.99, '2007-03-23 13:28:24.996577'); -INSERT INTO dvds.payment VALUES (21151, 439, 1, 16018, 0.99, '2007-03-23 19:56:01.996577'); -INSERT INTO dvds.payment VALUES (21152, 440, 2, 12403, 6.99, '2007-03-18 07:59:31.996577'); -INSERT INTO dvds.payment VALUES (21153, 440, 1, 12850, 0.99, '2007-03-19 00:36:32.996577'); -INSERT INTO dvds.payment VALUES (21154, 440, 2, 13384, 4.99, '2007-03-19 20:07:17.996577'); -INSERT INTO dvds.payment VALUES (21155, 440, 2, 13779, 2.99, '2007-03-20 10:32:20.996577'); -INSERT INTO dvds.payment VALUES (21156, 440, 1, 14555, 0.99, '2007-03-21 14:31:28.996577'); -INSERT INTO dvds.payment VALUES (21157, 440, 2, 14863, 7.99, '2007-03-22 01:25:30.996577'); -INSERT INTO dvds.payment VALUES (21158, 440, 2, 15264, 0.99, '2007-03-22 16:56:04.996577'); -INSERT INTO dvds.payment VALUES (21159, 440, 1, 15925, 4.99, '2007-03-23 16:43:32.996577'); -INSERT INTO dvds.payment VALUES (21160, 441, 1, 10846, 1.99, '2007-03-01 22:16:20.996577'); -INSERT INTO dvds.payment VALUES (21161, 441, 2, 11247, 1.99, '2007-03-02 12:02:34.996577'); -INSERT INTO dvds.payment VALUES (21162, 441, 2, 13483, 2.99, '2007-03-19 23:45:04.996577'); -INSERT INTO dvds.payment VALUES (21163, 441, 2, 13739, 4.99, '2007-03-20 09:13:36.996577'); -INSERT INTO dvds.payment VALUES (21164, 441, 1, 13932, 4.99, '2007-03-20 15:45:26.996577'); -INSERT INTO dvds.payment VALUES (21165, 441, 2, 14796, 4.99, '2007-03-21 23:09:15.996577'); -INSERT INTO dvds.payment VALUES (21166, 441, 2, 15070, 3.99, '2007-03-22 09:24:11.996577'); -INSERT INTO dvds.payment VALUES (21167, 442, 2, 10365, 6.99, '2007-03-01 04:37:10.996577'); -INSERT INTO dvds.payment VALUES (21168, 442, 2, 10452, 0.99, '2007-03-01 07:40:02.996577'); -INSERT INTO dvds.payment VALUES (21169, 442, 1, 12948, 0.99, '2007-03-19 04:23:40.996577'); -INSERT INTO dvds.payment VALUES (21170, 442, 2, 13004, 0.99, '2007-03-19 06:08:34.996577'); -INSERT INTO dvds.payment VALUES (21171, 442, 1, 13155, 7.99, '2007-03-19 11:38:49.996577'); -INSERT INTO dvds.payment VALUES (21172, 442, 2, 14199, 0.99, '2007-03-21 02:17:09.996577'); -INSERT INTO dvds.payment VALUES (21173, 442, 1, 14418, 1.99, '2007-03-21 09:42:52.996577'); -INSERT INTO dvds.payment VALUES (21174, 442, 1, 14466, 0.99, '2007-03-21 11:31:39.996577'); -INSERT INTO dvds.payment VALUES (21175, 442, 2, 15207, 2.99, '2007-03-22 15:03:51.996577'); -INSERT INTO dvds.payment VALUES (21176, 443, 2, 10360, 0.99, '2007-03-01 04:21:19.996577'); -INSERT INTO dvds.payment VALUES (21177, 443, 1, 11449, 4.99, '2007-03-02 19:13:09.996577'); -INSERT INTO dvds.payment VALUES (21178, 443, 1, 12415, 4.99, '2007-03-18 08:22:27.996577'); -INSERT INTO dvds.payment VALUES (21179, 443, 2, 12857, 4.99, '2007-03-19 00:48:39.996577'); -INSERT INTO dvds.payment VALUES (21180, 443, 1, 13489, 2.99, '2007-03-19 23:57:32.996577'); -INSERT INTO dvds.payment VALUES (21181, 443, 1, 14561, 2.99, '2007-03-21 14:49:09.996577'); -INSERT INTO dvds.payment VALUES (21182, 443, 2, 14611, 6.99, '2007-03-21 16:30:07.996577'); -INSERT INTO dvds.payment VALUES (21183, 443, 1, 15182, 0.99, '2007-03-22 14:15:31.996577'); -INSERT INTO dvds.payment VALUES (21184, 443, 2, 15393, 4.99, '2007-03-22 21:32:35.996577'); -INSERT INTO dvds.payment VALUES (21185, 443, 1, 15519, 0.99, '2007-03-23 01:51:58.996577'); -INSERT INTO dvds.payment VALUES (21186, 444, 1, 10529, 4.99, '2007-03-01 10:28:28.996577'); -INSERT INTO dvds.payment VALUES (21187, 444, 1, 10693, 4.99, '2007-03-01 16:42:40.996577'); -INSERT INTO dvds.payment VALUES (21188, 444, 2, 11353, 0.99, '2007-03-02 16:03:11.996577'); -INSERT INTO dvds.payment VALUES (21189, 444, 2, 11419, 6.99, '2007-03-02 18:15:04.996577'); -INSERT INTO dvds.payment VALUES (21190, 444, 1, 11728, 4.99, '2007-03-17 06:40:52.996577'); -INSERT INTO dvds.payment VALUES (21191, 444, 1, 12161, 6.99, '2007-03-17 23:10:12.996577'); -INSERT INTO dvds.payment VALUES (21192, 444, 2, 12712, 2.99, '2007-03-18 19:32:39.996577'); -INSERT INTO dvds.payment VALUES (21193, 444, 2, 12946, 2.99, '2007-03-19 04:22:00.996577'); -INSERT INTO dvds.payment VALUES (21194, 444, 1, 13488, 0.99, '2007-03-19 23:57:08.996577'); -INSERT INTO dvds.payment VALUES (21195, 444, 2, 13559, 2.99, '2007-03-20 02:44:33.996577'); -INSERT INTO dvds.payment VALUES (21196, 444, 1, 13924, 0.99, '2007-03-20 15:33:44.996577'); -INSERT INTO dvds.payment VALUES (21197, 444, 1, 15249, 4.99, '2007-03-22 16:26:53.996577'); -INSERT INTO dvds.payment VALUES (21198, 444, 1, 15557, 0.99, '2007-03-23 03:20:43.996577'); -INSERT INTO dvds.payment VALUES (21199, 444, 2, 15815, 4.99, '2007-03-23 13:24:13.996577'); -INSERT INTO dvds.payment VALUES (21200, 445, 2, 10334, 1.99, '2007-03-01 03:27:08.996577'); -INSERT INTO dvds.payment VALUES (21201, 445, 2, 10341, 0.99, '2007-03-01 03:38:28.996577'); -INSERT INTO dvds.payment VALUES (21202, 445, 2, 10936, 9.99, '2007-03-02 01:23:30.996577'); -INSERT INTO dvds.payment VALUES (21203, 445, 1, 11383, 7.99, '2007-03-02 16:50:31.996577'); -INSERT INTO dvds.payment VALUES (21204, 445, 1, 11868, 4.99, '2007-03-17 12:34:00.996577'); -INSERT INTO dvds.payment VALUES (21205, 445, 1, 11877, 3.99, '2007-03-17 12:49:37.996577'); -INSERT INTO dvds.payment VALUES (21206, 445, 2, 13586, 0.99, '2007-03-20 04:08:59.996577'); -INSERT INTO dvds.payment VALUES (21207, 445, 1, 14612, 6.99, '2007-03-21 16:31:41.996577'); -INSERT INTO dvds.payment VALUES (21208, 445, 2, 14673, 2.99, '2007-03-21 18:29:44.996577'); -INSERT INTO dvds.payment VALUES (21209, 445, 1, 14866, 6.99, '2007-03-22 01:40:01.996577'); -INSERT INTO dvds.payment VALUES (21210, 445, 1, 14955, 4.99, '2007-03-22 04:54:18.996577'); -INSERT INTO dvds.payment VALUES (21211, 445, 1, 15123, 3.99, '2007-03-22 11:17:10.996577'); -INSERT INTO dvds.payment VALUES (21212, 445, 1, 15791, 6.99, '2007-03-23 12:30:39.996577'); -INSERT INTO dvds.payment VALUES (21213, 445, 2, 15906, 2.99, '2007-03-23 16:04:26.996577'); -INSERT INTO dvds.payment VALUES (21214, 446, 1, 11051, 3.99, '2007-03-02 04:52:05.996577'); -INSERT INTO dvds.payment VALUES (21215, 446, 2, 12253, 0.99, '2007-03-18 02:29:16.996577'); -INSERT INTO dvds.payment VALUES (21216, 446, 2, 12480, 8.99, '2007-03-18 10:55:09.996577'); -INSERT INTO dvds.payment VALUES (21217, 446, 1, 15808, 1.99, '2007-03-23 13:07:03.996577'); -INSERT INTO dvds.payment VALUES (21218, 446, 2, 15951, 0.99, '2007-03-23 17:38:58.996577'); -INSERT INTO dvds.payment VALUES (21219, 447, 1, 10425, 2.99, '2007-03-01 06:51:51.996577'); -INSERT INTO dvds.payment VALUES (21220, 447, 2, 10957, 5.99, '2007-03-02 02:01:56.996577'); -INSERT INTO dvds.payment VALUES (21221, 447, 2, 11108, 0.99, '2007-03-02 06:48:27.996577'); -INSERT INTO dvds.payment VALUES (21222, 447, 1, 11465, 5.99, '2007-03-02 20:12:18.996577'); -INSERT INTO dvds.payment VALUES (21223, 447, 2, 12511, 0.99, '2007-03-18 11:51:45.996577'); -INSERT INTO dvds.payment VALUES (21224, 447, 1, 13072, 2.99, '2007-03-19 08:31:56.996577'); -INSERT INTO dvds.payment VALUES (21225, 447, 2, 13110, 0.99, '2007-03-19 09:53:03.996577'); -INSERT INTO dvds.payment VALUES (21226, 447, 1, 13848, 4.99, '2007-03-20 13:06:15.996577'); -INSERT INTO dvds.payment VALUES (21227, 447, 2, 14443, 5.99, '2007-03-21 10:34:58.996577'); -INSERT INTO dvds.payment VALUES (21228, 447, 1, 15108, 2.99, '2007-03-22 10:38:33.996577'); -INSERT INTO dvds.payment VALUES (21229, 447, 1, 15997, 4.99, '2007-03-23 19:08:57.996577'); -INSERT INTO dvds.payment VALUES (21230, 447, 2, 16032, 4.99, '2007-03-23 20:28:23.996577'); -INSERT INTO dvds.payment VALUES (21231, 448, 2, 11608, 8.99, '2007-03-17 02:05:18.996577'); -INSERT INTO dvds.payment VALUES (21232, 448, 1, 11798, 9.99, '2007-03-17 09:50:09.996577'); -INSERT INTO dvds.payment VALUES (21233, 448, 1, 12446, 2.99, '2007-03-18 09:24:55.996577'); -INSERT INTO dvds.payment VALUES (21234, 448, 1, 13220, 2.99, '2007-03-19 14:10:58.996577'); -INSERT INTO dvds.payment VALUES (21235, 448, 2, 13250, 3.99, '2007-03-19 15:16:21.996577'); -INSERT INTO dvds.payment VALUES (21236, 448, 1, 13982, 3.99, '2007-03-20 17:36:51.996577'); -INSERT INTO dvds.payment VALUES (21237, 448, 1, 14580, 3.99, '2007-03-21 15:25:05.996577'); -INSERT INTO dvds.payment VALUES (21238, 448, 1, 14711, 2.99, '2007-03-21 19:50:33.996577'); -INSERT INTO dvds.payment VALUES (21239, 448, 2, 15358, 9.99, '2007-03-22 19:57:40.996577'); -INSERT INTO dvds.payment VALUES (21240, 448, 1, 15427, 4.99, '2007-03-22 22:36:19.996577'); -INSERT INTO dvds.payment VALUES (21241, 449, 2, 10409, 2.99, '2007-03-01 06:17:41.996577'); -INSERT INTO dvds.payment VALUES (21242, 449, 1, 10416, 4.99, '2007-03-01 06:37:05.996577'); -INSERT INTO dvds.payment VALUES (21243, 449, 1, 10516, 6.99, '2007-03-01 10:10:21.996577'); -INSERT INTO dvds.payment VALUES (21244, 449, 2, 10688, 6.99, '2007-03-01 16:22:09.996577'); -INSERT INTO dvds.payment VALUES (21245, 449, 1, 12212, 4.99, '2007-03-18 01:01:55.996577'); -INSERT INTO dvds.payment VALUES (21246, 449, 2, 14962, 7.99, '2007-03-22 05:06:09.996577'); -INSERT INTO dvds.payment VALUES (21247, 450, 2, 10432, 2.99, '2007-03-01 07:11:47.996577'); -INSERT INTO dvds.payment VALUES (21248, 450, 1, 10984, 3.99, '2007-03-02 02:58:28.996577'); -INSERT INTO dvds.payment VALUES (21249, 450, 2, 12812, 0.99, '2007-03-18 23:22:28.996577'); -INSERT INTO dvds.payment VALUES (21250, 450, 2, 13731, 4.99, '2007-03-20 08:50:34.996577'); -INSERT INTO dvds.payment VALUES (21251, 450, 1, 13810, 0.99, '2007-03-20 11:28:04.996577'); -INSERT INTO dvds.payment VALUES (21252, 450, 1, 13828, 4.99, '2007-03-20 12:18:18.996577'); -INSERT INTO dvds.payment VALUES (21253, 450, 1, 14282, 4.99, '2007-03-21 05:09:55.996577'); -INSERT INTO dvds.payment VALUES (21254, 450, 2, 15019, 0.99, '2007-03-22 07:21:19.996577'); -INSERT INTO dvds.payment VALUES (21255, 450, 1, 15327, 4.99, '2007-03-22 18:59:50.996577'); -INSERT INTO dvds.payment VALUES (21256, 450, 2, 15419, 4.99, '2007-03-22 22:23:02.996577'); -INSERT INTO dvds.payment VALUES (21257, 451, 2, 10337, 8.99, '2007-03-01 03:30:12.996577'); -INSERT INTO dvds.payment VALUES (21258, 451, 1, 10856, 2.99, '2007-03-01 22:35:40.996577'); -INSERT INTO dvds.payment VALUES (21259, 451, 2, 10950, 2.99, '2007-03-02 01:53:34.996577'); -INSERT INTO dvds.payment VALUES (21260, 451, 2, 11167, 6.99, '2007-03-02 08:44:17.996577'); -INSERT INTO dvds.payment VALUES (21261, 451, 2, 11381, 6.99, '2007-03-02 16:47:55.996577'); -INSERT INTO dvds.payment VALUES (21262, 451, 1, 11790, 2.99, '2007-03-17 09:28:34.996577'); -INSERT INTO dvds.payment VALUES (21263, 451, 2, 12371, 2.99, '2007-03-18 06:31:12.996577'); -INSERT INTO dvds.payment VALUES (21264, 451, 1, 12422, 4.99, '2007-03-18 08:41:38.996577'); -INSERT INTO dvds.payment VALUES (21265, 451, 2, 13003, 1.99, '2007-03-19 06:07:55.996577'); -INSERT INTO dvds.payment VALUES (21266, 451, 2, 13100, 2.99, '2007-03-19 09:24:11.996577'); -INSERT INTO dvds.payment VALUES (21267, 451, 2, 13252, 2.99, '2007-03-19 15:19:16.996577'); -INSERT INTO dvds.payment VALUES (21268, 451, 2, 13380, 0.99, '2007-03-19 20:05:24.996577'); -INSERT INTO dvds.payment VALUES (21269, 451, 1, 13666, 2.99, '2007-03-20 06:48:45.996577'); -INSERT INTO dvds.payment VALUES (21270, 451, 1, 13705, 2.99, '2007-03-20 08:00:49.996577'); -INSERT INTO dvds.payment VALUES (21271, 451, 2, 14500, 0.99, '2007-03-21 12:39:56.996577'); -INSERT INTO dvds.payment VALUES (21272, 451, 1, 15651, 4.99, '2007-03-23 07:00:15.996577'); -INSERT INTO dvds.payment VALUES (21273, 452, 2, 11715, 4.99, '2007-03-17 06:09:21.996577'); -INSERT INTO dvds.payment VALUES (21274, 452, 1, 11735, 3.99, '2007-03-17 07:04:08.996577'); -INSERT INTO dvds.payment VALUES (21275, 452, 1, 12355, 0.99, '2007-03-18 06:04:49.996577'); -INSERT INTO dvds.payment VALUES (21276, 452, 1, 12630, 4.99, '2007-03-18 16:17:54.996577'); -INSERT INTO dvds.payment VALUES (21277, 452, 1, 13080, 4.99, '2007-03-19 08:46:26.996577'); -INSERT INTO dvds.payment VALUES (21278, 452, 1, 13642, 3.99, '2007-03-20 06:10:43.996577'); -INSERT INTO dvds.payment VALUES (21279, 452, 1, 14660, 0.99, '2007-03-21 18:11:47.996577'); -INSERT INTO dvds.payment VALUES (21280, 452, 1, 15909, 0.99, '2007-03-23 16:11:08.996577'); -INSERT INTO dvds.payment VALUES (21281, 453, 1, 11794, 4.99, '2007-03-17 09:37:14.996577'); -INSERT INTO dvds.payment VALUES (21282, 453, 1, 12703, 2.99, '2007-03-18 19:05:39.996577'); -INSERT INTO dvds.payment VALUES (21283, 453, 1, 13711, 7.99, '2007-03-20 08:03:46.996577'); -INSERT INTO dvds.payment VALUES (21284, 453, 1, 13785, 4.99, '2007-03-20 10:40:12.996577'); -INSERT INTO dvds.payment VALUES (21285, 453, 1, 14133, 2.99, '2007-03-21 00:12:40.996577'); -INSERT INTO dvds.payment VALUES (21286, 453, 2, 14306, 5.99, '2007-03-21 06:01:01.996577'); -INSERT INTO dvds.payment VALUES (21287, 453, 2, 14644, 4.99, '2007-03-21 17:40:38.996577'); -INSERT INTO dvds.payment VALUES (21288, 453, 1, 14652, 4.99, '2007-03-21 18:00:31.996577'); -INSERT INTO dvds.payment VALUES (21289, 453, 1, 15252, 0.99, '2007-03-22 16:32:48.996577'); -INSERT INTO dvds.payment VALUES (21290, 453, 2, 15627, 4.99, '2007-03-23 05:54:04.996577'); -INSERT INTO dvds.payment VALUES (21291, 454, 2, 12347, 0.99, '2007-03-18 05:46:36.996577'); -INSERT INTO dvds.payment VALUES (21292, 454, 1, 12553, 0.99, '2007-03-18 13:15:20.996577'); -INSERT INTO dvds.payment VALUES (21293, 454, 2, 13496, 8.99, '2007-03-20 00:10:55.996577'); -INSERT INTO dvds.payment VALUES (21294, 454, 2, 13513, 2.99, '2007-03-20 00:56:19.996577'); -INSERT INTO dvds.payment VALUES (21295, 454, 2, 13694, 8.99, '2007-03-20 07:41:49.996577'); -INSERT INTO dvds.payment VALUES (21296, 454, 1, 13805, 6.99, '2007-03-20 11:21:38.996577'); -INSERT INTO dvds.payment VALUES (21297, 454, 1, 14799, 0.99, '2007-03-21 23:13:23.996577'); -INSERT INTO dvds.payment VALUES (21298, 454, 2, 14843, 2.99, '2007-03-22 00:33:51.996577'); -INSERT INTO dvds.payment VALUES (21299, 454, 2, 15012, 4.99, '2007-03-22 07:10:58.996577'); -INSERT INTO dvds.payment VALUES (21300, 454, 1, 15301, 3.99, '2007-03-22 18:12:42.996577'); -INSERT INTO dvds.payment VALUES (21301, 454, 2, 15608, 1.99, '2007-03-23 05:23:52.996577'); -INSERT INTO dvds.payment VALUES (21302, 455, 1, 10436, 0.99, '2007-03-01 07:19:25.996577'); -INSERT INTO dvds.payment VALUES (21303, 455, 1, 11605, 4.99, '2007-03-17 01:59:23.996577'); -INSERT INTO dvds.payment VALUES (21304, 455, 1, 12163, 2.99, '2007-03-17 23:14:27.996577'); -INSERT INTO dvds.payment VALUES (21305, 455, 1, 12314, 4.99, '2007-03-18 04:38:28.996577'); -INSERT INTO dvds.payment VALUES (21306, 455, 2, 13083, 2.99, '2007-03-19 08:55:11.996577'); -INSERT INTO dvds.payment VALUES (21307, 455, 2, 13813, 4.99, '2007-03-20 11:31:52.996577'); -INSERT INTO dvds.payment VALUES (21308, 455, 1, 14294, 2.99, '2007-03-21 05:35:52.996577'); -INSERT INTO dvds.payment VALUES (21309, 455, 2, 14583, 4.99, '2007-03-21 15:40:13.996577'); -INSERT INTO dvds.payment VALUES (21310, 455, 1, 15494, 1.99, '2007-03-23 00:53:35.996577'); -INSERT INTO dvds.payment VALUES (21311, 456, 2, 10519, 5.99, '2007-03-01 10:12:39.996577'); -INSERT INTO dvds.payment VALUES (21312, 456, 1, 10813, 2.99, '2007-03-01 21:11:26.996577'); -INSERT INTO dvds.payment VALUES (21313, 456, 1, 12188, 4.99, '2007-03-18 00:20:09.996577'); -INSERT INTO dvds.payment VALUES (21314, 456, 1, 13144, 8.99, '2007-03-19 11:14:21.996577'); -INSERT INTO dvds.payment VALUES (21315, 456, 1, 13348, 4.99, '2007-03-19 19:00:14.996577'); -INSERT INTO dvds.payment VALUES (21316, 456, 1, 13547, 4.99, '2007-03-20 02:21:42.996577'); -INSERT INTO dvds.payment VALUES (21317, 456, 2, 14253, 2.99, '2007-03-21 04:16:18.996577'); -INSERT INTO dvds.payment VALUES (21318, 456, 2, 14690, 1.99, '2007-03-21 19:10:51.996577'); -INSERT INTO dvds.payment VALUES (21319, 456, 1, 15720, 3.99, '2007-03-23 09:43:46.996577'); -INSERT INTO dvds.payment VALUES (21320, 456, 1, 15910, 2.99, '2007-03-23 16:11:42.996577'); -INSERT INTO dvds.payment VALUES (21321, 457, 2, 11956, 6.99, '2007-03-17 15:50:31.996577'); -INSERT INTO dvds.payment VALUES (21322, 457, 1, 12115, 4.99, '2007-03-17 21:32:41.996577'); -INSERT INTO dvds.payment VALUES (21323, 457, 1, 12171, 4.99, '2007-03-17 23:34:39.996577'); -INSERT INTO dvds.payment VALUES (21324, 457, 1, 13088, 0.99, '2007-03-19 09:04:37.996577'); -INSERT INTO dvds.payment VALUES (21325, 457, 1, 13150, 2.99, '2007-03-19 11:36:45.996577'); -INSERT INTO dvds.payment VALUES (21326, 457, 2, 13934, 0.99, '2007-03-20 15:47:14.996577'); -INSERT INTO dvds.payment VALUES (21327, 457, 2, 14327, 10.99, '2007-03-21 06:46:44.996577'); -INSERT INTO dvds.payment VALUES (21328, 457, 1, 14365, 6.99, '2007-03-21 07:53:39.996577'); -INSERT INTO dvds.payment VALUES (21329, 457, 1, 15128, 3.99, '2007-03-22 11:25:52.996577'); -INSERT INTO dvds.payment VALUES (21330, 458, 2, 11138, 2.99, '2007-03-02 07:54:42.996577'); -INSERT INTO dvds.payment VALUES (21331, 458, 2, 11975, 2.99, '2007-03-17 16:27:05.996577'); -INSERT INTO dvds.payment VALUES (21332, 458, 2, 12768, 0.99, '2007-03-18 21:54:37.996577'); -INSERT INTO dvds.payment VALUES (21333, 458, 2, 13259, 2.99, '2007-03-19 15:37:19.996577'); -INSERT INTO dvds.payment VALUES (21334, 458, 2, 13487, 2.99, '2007-03-19 23:55:31.996577'); -INSERT INTO dvds.payment VALUES (21335, 458, 2, 13571, 4.99, '2007-03-20 03:33:40.996577'); -INSERT INTO dvds.payment VALUES (21336, 458, 2, 14428, 4.99, '2007-03-21 09:55:33.996577'); -INSERT INTO dvds.payment VALUES (21337, 458, 1, 15604, 4.99, '2007-03-23 05:12:45.996577'); -INSERT INTO dvds.payment VALUES (21338, 459, 1, 10233, 6.99, '2007-03-01 00:22:49.996577'); -INSERT INTO dvds.payment VALUES (21339, 459, 2, 10255, 4.99, '2007-03-01 01:14:39.996577'); -INSERT INTO dvds.payment VALUES (21340, 459, 1, 10499, 7.99, '2007-03-01 09:28:46.996577'); -INSERT INTO dvds.payment VALUES (21341, 459, 1, 10531, 2.99, '2007-03-01 10:34:56.996577'); -INSERT INTO dvds.payment VALUES (21342, 459, 1, 12527, 6.99, '2007-03-18 12:17:12.996577'); -INSERT INTO dvds.payment VALUES (21343, 459, 1, 12629, 7.99, '2007-03-18 16:08:59.996577'); -INSERT INTO dvds.payment VALUES (21344, 459, 2, 13960, 10.99, '2007-03-20 16:44:52.996577'); -INSERT INTO dvds.payment VALUES (21345, 459, 1, 13967, 4.99, '2007-03-20 16:57:12.996577'); -INSERT INTO dvds.payment VALUES (21346, 459, 1, 14315, 3.99, '2007-03-21 06:25:05.996577'); -INSERT INTO dvds.payment VALUES (21347, 459, 1, 15126, 5.99, '2007-03-22 11:22:24.996577'); -INSERT INTO dvds.payment VALUES (21348, 459, 2, 15342, 2.99, '2007-03-22 19:25:07.996577'); -INSERT INTO dvds.payment VALUES (21349, 459, 1, 15814, 0.99, '2007-03-23 13:21:16.996577'); -INSERT INTO dvds.payment VALUES (21350, 460, 2, 10754, 10.99, '2007-03-01 18:40:59.996577'); -INSERT INTO dvds.payment VALUES (21351, 460, 1, 10926, 1.99, '2007-03-02 00:55:03.996577'); -INSERT INTO dvds.payment VALUES (21352, 460, 2, 11554, 2.99, '2007-03-16 23:33:43.996577'); -INSERT INTO dvds.payment VALUES (21353, 460, 1, 12056, 5.99, '2007-03-17 19:32:14.996577'); -INSERT INTO dvds.payment VALUES (21354, 460, 2, 12586, 4.99, '2007-03-18 14:23:05.996577'); -INSERT INTO dvds.payment VALUES (21355, 460, 1, 12865, 0.99, '2007-03-19 01:07:16.996577'); -INSERT INTO dvds.payment VALUES (21356, 460, 2, 13215, 8.99, '2007-03-19 14:04:04.996577'); -INSERT INTO dvds.payment VALUES (21357, 460, 1, 13341, 3.99, '2007-03-19 18:47:19.996577'); -INSERT INTO dvds.payment VALUES (21358, 460, 2, 13920, 5.99, '2007-03-20 15:19:44.996577'); -INSERT INTO dvds.payment VALUES (21359, 460, 2, 14864, 0.99, '2007-03-22 01:25:32.996577'); -INSERT INTO dvds.payment VALUES (21360, 460, 1, 14923, 3.99, '2007-03-22 03:41:59.996577'); -INSERT INTO dvds.payment VALUES (21361, 460, 2, 15954, 2.99, '2007-03-23 17:42:33.996577'); -INSERT INTO dvds.payment VALUES (21362, 461, 1, 10260, 2.99, '2007-03-01 01:26:33.996577'); -INSERT INTO dvds.payment VALUES (21363, 461, 2, 11063, 0.99, '2007-03-02 05:22:14.996577'); -INSERT INTO dvds.payment VALUES (21364, 461, 2, 11219, 0.99, '2007-03-02 10:58:46.996577'); -INSERT INTO dvds.payment VALUES (21365, 461, 2, 12022, 2.99, '2007-03-17 18:21:11.996577'); -INSERT INTO dvds.payment VALUES (21366, 461, 1, 13223, 2.99, '2007-03-19 14:20:30.996577'); -INSERT INTO dvds.payment VALUES (21367, 461, 1, 13269, 2.99, '2007-03-19 16:02:26.996577'); -INSERT INTO dvds.payment VALUES (21368, 461, 1, 14186, 4.99, '2007-03-21 01:59:33.996577'); -INSERT INTO dvds.payment VALUES (21369, 461, 1, 14893, 4.99, '2007-03-22 02:44:14.996577'); -INSERT INTO dvds.payment VALUES (21370, 461, 1, 15067, 2.99, '2007-03-22 09:17:47.996577'); -INSERT INTO dvds.payment VALUES (21371, 461, 2, 15187, 4.99, '2007-03-22 14:21:58.996577'); -INSERT INTO dvds.payment VALUES (21372, 461, 1, 15336, 6.99, '2007-03-22 19:16:14.996577'); -INSERT INTO dvds.payment VALUES (21373, 461, 2, 15411, 2.99, '2007-03-22 22:04:07.996577'); -INSERT INTO dvds.payment VALUES (21374, 461, 2, 15449, 2.99, '2007-03-22 23:24:09.996577'); -INSERT INTO dvds.payment VALUES (21375, 461, 2, 15613, 7.99, '2007-03-23 05:31:45.996577'); -INSERT INTO dvds.payment VALUES (21376, 462, 1, 10283, 2.99, '2007-03-01 01:58:11.996577'); -INSERT INTO dvds.payment VALUES (21377, 462, 2, 11639, 6.99, '2007-03-17 03:11:55.996577'); -INSERT INTO dvds.payment VALUES (21378, 462, 1, 11808, 2.99, '2007-03-17 10:19:42.996577'); -INSERT INTO dvds.payment VALUES (21379, 462, 1, 12466, 4.99, '2007-03-18 10:05:21.996577'); -INSERT INTO dvds.payment VALUES (21380, 462, 2, 12582, 0.99, '2007-03-18 14:19:38.996577'); -INSERT INTO dvds.payment VALUES (21381, 462, 1, 12802, 8.99, '2007-03-18 22:56:07.996577'); -INSERT INTO dvds.payment VALUES (21382, 462, 2, 13041, 8.99, '2007-03-19 07:34:04.996577'); -INSERT INTO dvds.payment VALUES (21383, 462, 1, 13328, 4.99, '2007-03-19 18:24:27.996577'); -INSERT INTO dvds.payment VALUES (21384, 462, 1, 13492, 7.99, '2007-03-20 00:00:30.996577'); -INSERT INTO dvds.payment VALUES (21385, 462, 2, 15581, 2.99, '2007-03-23 04:10:39.996577'); -INSERT INTO dvds.payment VALUES (21386, 462, 1, 15943, 2.99, '2007-03-23 17:17:58.996577'); -INSERT INTO dvds.payment VALUES (21387, 462, 1, 16013, 0.99, '2007-03-23 19:45:43.996577'); -INSERT INTO dvds.payment VALUES (21388, 463, 1, 10275, 3.99, '2007-03-01 01:48:34.996577'); -INSERT INTO dvds.payment VALUES (21389, 463, 2, 10405, 0.99, '2007-03-01 06:03:51.996577'); -INSERT INTO dvds.payment VALUES (21390, 463, 2, 10906, 2.99, '2007-03-02 00:15:30.996577'); -INSERT INTO dvds.payment VALUES (21391, 463, 2, 12096, 7.99, '2007-03-17 21:01:16.996577'); -INSERT INTO dvds.payment VALUES (21392, 463, 2, 12679, 6.99, '2007-03-18 18:10:37.996577'); -INSERT INTO dvds.payment VALUES (21393, 463, 1, 12950, 2.99, '2007-03-19 04:24:24.996577'); -INSERT INTO dvds.payment VALUES (21394, 463, 2, 13938, 4.99, '2007-03-20 15:53:11.996577'); -INSERT INTO dvds.payment VALUES (21395, 463, 1, 14689, 0.99, '2007-03-21 19:01:26.996577'); -INSERT INTO dvds.payment VALUES (21396, 463, 1, 14859, 2.99, '2007-03-22 01:15:01.996577'); -INSERT INTO dvds.payment VALUES (21397, 463, 2, 15151, 7.99, '2007-03-22 12:51:37.996577'); -INSERT INTO dvds.payment VALUES (21398, 464, 2, 11275, 1.99, '2007-03-02 12:54:24.996577'); -INSERT INTO dvds.payment VALUES (21399, 464, 1, 13644, 8.99, '2007-03-20 06:14:56.996577'); -INSERT INTO dvds.payment VALUES (21400, 464, 2, 13943, 2.99, '2007-03-20 15:59:44.996577'); -INSERT INTO dvds.payment VALUES (21401, 464, 1, 15092, 6.99, '2007-03-22 10:04:42.996577'); -INSERT INTO dvds.payment VALUES (21402, 464, 2, 15854, 0.99, '2007-03-23 14:26:31.996577'); -INSERT INTO dvds.payment VALUES (21403, 464, 1, 15983, 4.99, '2007-03-23 18:42:04.996577'); -INSERT INTO dvds.payment VALUES (21404, 465, 1, 10542, 3.99, '2007-03-01 11:00:49.996577'); -INSERT INTO dvds.payment VALUES (21405, 465, 1, 11156, 2.99, '2007-03-02 08:24:32.996577'); -INSERT INTO dvds.payment VALUES (21406, 465, 1, 11586, 4.99, '2007-03-17 00:49:08.996577'); -INSERT INTO dvds.payment VALUES (21407, 465, 2, 11648, 6.99, '2007-03-17 03:24:42.996577'); -INSERT INTO dvds.payment VALUES (21408, 465, 2, 12106, 4.99, '2007-03-17 21:23:58.996577'); -INSERT INTO dvds.payment VALUES (21409, 465, 1, 12814, 4.99, '2007-03-18 23:26:50.996577'); -INSERT INTO dvds.payment VALUES (21410, 465, 1, 12864, 4.99, '2007-03-19 01:06:52.996577'); -INSERT INTO dvds.payment VALUES (21411, 465, 1, 15550, 3.99, '2007-03-23 02:56:20.996577'); -INSERT INTO dvds.payment VALUES (21412, 465, 2, 15859, 4.99, '2007-03-23 14:36:41.996577'); -INSERT INTO dvds.payment VALUES (21413, 466, 1, 10469, 4.99, '2007-03-01 08:19:37.996577'); -INSERT INTO dvds.payment VALUES (21414, 466, 2, 11343, 0.99, '2007-03-02 15:40:56.996577'); -INSERT INTO dvds.payment VALUES (21415, 466, 1, 11359, 4.99, '2007-03-02 16:14:21.996577'); -INSERT INTO dvds.payment VALUES (21416, 466, 1, 12048, 7.99, '2007-03-17 19:17:50.996577'); -INSERT INTO dvds.payment VALUES (21417, 466, 1, 13478, 2.99, '2007-03-19 23:35:40.996577'); -INSERT INTO dvds.payment VALUES (21418, 466, 1, 13884, 5.99, '2007-03-20 13:59:17.996577'); -INSERT INTO dvds.payment VALUES (21419, 466, 1, 13988, 4.99, '2007-03-20 17:49:54.996577'); -INSERT INTO dvds.payment VALUES (21420, 466, 2, 14546, 2.99, '2007-03-21 14:19:16.996577'); -INSERT INTO dvds.payment VALUES (21421, 466, 2, 15230, 4.99, '2007-03-22 16:00:07.996577'); -INSERT INTO dvds.payment VALUES (21422, 466, 1, 16005, 7.99, '2007-03-23 19:28:48.996577'); -INSERT INTO dvds.payment VALUES (21423, 467, 2, 10239, 0.99, '2007-03-01 00:37:48.996577'); -INSERT INTO dvds.payment VALUES (21424, 467, 2, 11332, 2.99, '2007-03-02 15:21:23.996577'); -INSERT INTO dvds.payment VALUES (21425, 467, 1, 11874, 4.99, '2007-03-17 12:45:06.996577'); -INSERT INTO dvds.payment VALUES (21426, 467, 1, 12266, 2.99, '2007-03-18 02:50:57.996577'); -INSERT INTO dvds.payment VALUES (21427, 467, 1, 12437, 9.99, '2007-03-18 09:11:09.996577'); -INSERT INTO dvds.payment VALUES (21428, 467, 1, 12641, 2.99, '2007-03-18 16:46:34.996577'); -INSERT INTO dvds.payment VALUES (21429, 467, 1, 14402, 2.99, '2007-03-21 09:06:43.996577'); -INSERT INTO dvds.payment VALUES (21430, 467, 1, 14451, 0.99, '2007-03-21 10:50:10.996577'); -INSERT INTO dvds.payment VALUES (21431, 467, 1, 14842, 3.99, '2007-03-22 00:33:04.996577'); -INSERT INTO dvds.payment VALUES (21432, 467, 1, 15032, 0.99, '2007-03-22 07:42:35.996577'); -INSERT INTO dvds.payment VALUES (21433, 467, 2, 15830, 2.99, '2007-03-23 13:47:41.996577'); -INSERT INTO dvds.payment VALUES (21434, 468, 2, 11257, 10.99, '2007-03-02 12:13:31.996577'); -INSERT INTO dvds.payment VALUES (21435, 468, 2, 11633, 4.99, '2007-03-17 02:58:35.996577'); -INSERT INTO dvds.payment VALUES (21436, 468, 2, 12026, 6.99, '2007-03-17 18:28:36.996577'); -INSERT INTO dvds.payment VALUES (21437, 468, 2, 13221, 3.99, '2007-03-19 14:14:13.996577'); -INSERT INTO dvds.payment VALUES (21438, 468, 1, 13417, 0.99, '2007-03-19 21:20:05.996577'); -INSERT INTO dvds.payment VALUES (21439, 468, 2, 14154, 4.99, '2007-03-21 00:58:26.996577'); -INSERT INTO dvds.payment VALUES (21440, 468, 2, 14210, 4.99, '2007-03-21 02:56:28.996577'); -INSERT INTO dvds.payment VALUES (21441, 468, 1, 14309, 9.99, '2007-03-21 06:12:43.996577'); -INSERT INTO dvds.payment VALUES (21442, 468, 1, 14313, 2.99, '2007-03-21 06:18:19.996577'); -INSERT INTO dvds.payment VALUES (21443, 468, 1, 14614, 9.99, '2007-03-21 16:32:17.996577'); -INSERT INTO dvds.payment VALUES (21444, 468, 2, 15435, 4.99, '2007-03-22 22:56:45.996577'); -INSERT INTO dvds.payment VALUES (21445, 468, 1, 15522, 1.99, '2007-03-23 02:00:57.996577'); -INSERT INTO dvds.payment VALUES (21446, 468, 1, 15836, 2.99, '2007-03-23 13:57:43.996577'); -INSERT INTO dvds.payment VALUES (21447, 468, 2, 16044, 0.99, '2007-03-23 20:53:05.996577'); -INSERT INTO dvds.payment VALUES (21448, 469, 1, 10258, 4.99, '2007-03-01 01:19:35.996577'); -INSERT INTO dvds.payment VALUES (21449, 469, 1, 10316, 4.99, '2007-03-01 03:03:23.996577'); -INSERT INTO dvds.payment VALUES (21450, 469, 1, 10658, 2.99, '2007-03-01 15:07:44.996577'); -INSERT INTO dvds.payment VALUES (21451, 469, 1, 10741, 2.99, '2007-03-01 18:21:18.996577'); -INSERT INTO dvds.payment VALUES (21452, 469, 2, 11185, 0.99, '2007-03-02 09:33:01.996577'); -INSERT INTO dvds.payment VALUES (21453, 469, 2, 12035, 0.99, '2007-03-17 18:46:32.996577'); -INSERT INTO dvds.payment VALUES (21454, 469, 1, 12447, 4.99, '2007-03-18 09:25:27.996577'); -INSERT INTO dvds.payment VALUES (21455, 469, 1, 12633, 6.99, '2007-03-18 16:24:04.996577'); -INSERT INTO dvds.payment VALUES (21456, 469, 1, 13654, 4.99, '2007-03-20 06:26:47.996577'); -INSERT INTO dvds.payment VALUES (21457, 469, 1, 13763, 2.99, '2007-03-20 10:06:22.996577'); -INSERT INTO dvds.payment VALUES (21458, 469, 2, 14197, 7.99, '2007-03-21 02:15:51.996577'); -INSERT INTO dvds.payment VALUES (21459, 469, 2, 14661, 2.99, '2007-03-21 18:12:47.996577'); -INSERT INTO dvds.payment VALUES (21460, 469, 1, 15487, 4.99, '2007-03-23 00:34:17.996577'); -INSERT INTO dvds.payment VALUES (21461, 469, 1, 15561, 9.99, '2007-03-23 03:30:57.996577'); -INSERT INTO dvds.payment VALUES (21462, 469, 1, 15851, 2.99, '2007-03-23 14:14:59.996577'); -INSERT INTO dvds.payment VALUES (21463, 470, 1, 10236, 0.99, '2007-03-01 00:34:00.996577'); -INSERT INTO dvds.payment VALUES (21464, 470, 2, 10944, 4.99, '2007-03-02 01:48:29.996577'); -INSERT INTO dvds.payment VALUES (21465, 470, 2, 11397, 1.99, '2007-03-02 17:21:40.996577'); -INSERT INTO dvds.payment VALUES (21466, 470, 2, 11711, 2.99, '2007-03-17 05:59:21.996577'); -INSERT INTO dvds.payment VALUES (21467, 470, 1, 11742, 0.99, '2007-03-17 07:17:09.996577'); -INSERT INTO dvds.payment VALUES (21468, 470, 2, 12177, 3.99, '2007-03-17 23:44:13.996577'); -INSERT INTO dvds.payment VALUES (21469, 470, 2, 12423, 8.99, '2007-03-18 08:43:18.996577'); -INSERT INTO dvds.payment VALUES (21470, 470, 1, 12753, 10.99, '2007-03-18 21:06:05.996577'); -INSERT INTO dvds.payment VALUES (21471, 470, 2, 13585, 4.99, '2007-03-20 04:00:49.996577'); -INSERT INTO dvds.payment VALUES (21472, 470, 1, 13592, 4.99, '2007-03-20 04:19:01.996577'); -INSERT INTO dvds.payment VALUES (21473, 470, 2, 14405, 4.99, '2007-03-21 09:13:27.996577'); -INSERT INTO dvds.payment VALUES (21474, 471, 1, 10430, 2.99, '2007-03-01 07:05:32.996577'); -INSERT INTO dvds.payment VALUES (21475, 471, 2, 10828, 3.99, '2007-03-01 21:44:36.996577'); -INSERT INTO dvds.payment VALUES (21476, 471, 2, 11601, 4.99, '2007-03-17 01:43:13.996577'); -INSERT INTO dvds.payment VALUES (21477, 471, 1, 12271, 4.99, '2007-03-18 03:01:37.996577'); -INSERT INTO dvds.payment VALUES (21478, 471, 1, 13661, 5.99, '2007-03-20 06:34:25.996577'); -INSERT INTO dvds.payment VALUES (21479, 471, 1, 14085, 7.99, '2007-03-20 22:14:50.996577'); -INSERT INTO dvds.payment VALUES (21480, 471, 1, 14094, 4.99, '2007-03-20 22:50:01.996577'); -INSERT INTO dvds.payment VALUES (21481, 471, 1, 14317, 5.99, '2007-03-21 06:29:06.996577'); -INSERT INTO dvds.payment VALUES (21482, 471, 2, 14538, 2.99, '2007-03-21 13:56:41.996577'); -INSERT INTO dvds.payment VALUES (21483, 471, 2, 14942, 7.99, '2007-03-22 04:26:53.996577'); -INSERT INTO dvds.payment VALUES (21484, 471, 2, 15184, 0.99, '2007-03-22 14:19:38.996577'); -INSERT INTO dvds.payment VALUES (21485, 471, 1, 15654, 1.99, '2007-03-23 07:03:19.996577'); -INSERT INTO dvds.payment VALUES (21486, 472, 1, 10282, 6.99, '2007-03-01 01:57:36.996577'); -INSERT INTO dvds.payment VALUES (21487, 472, 1, 10627, 0.99, '2007-03-01 14:01:29.996577'); -INSERT INTO dvds.payment VALUES (21488, 472, 1, 11911, 6.99, '2007-03-17 14:20:01.996577'); -INSERT INTO dvds.payment VALUES (21489, 472, 2, 12763, 4.99, '2007-03-18 21:35:27.996577'); -INSERT INTO dvds.payment VALUES (21490, 472, 2, 13188, 8.99, '2007-03-19 12:55:29.996577'); -INSERT INTO dvds.payment VALUES (21491, 472, 1, 14209, 4.99, '2007-03-21 02:46:22.996577'); -INSERT INTO dvds.payment VALUES (21492, 472, 2, 14596, 4.99, '2007-03-21 16:07:03.996577'); -INSERT INTO dvds.payment VALUES (21493, 472, 1, 14597, 4.99, '2007-03-21 16:08:07.996577'); -INSERT INTO dvds.payment VALUES (21494, 472, 2, 15185, 5.99, '2007-03-22 14:21:16.996577'); -INSERT INTO dvds.payment VALUES (21495, 472, 2, 15278, 2.99, '2007-03-22 17:35:13.996577'); -INSERT INTO dvds.payment VALUES (21496, 473, 1, 10867, 2.99, '2007-03-01 22:52:41.996577'); -INSERT INTO dvds.payment VALUES (21497, 473, 2, 11006, 2.99, '2007-03-02 03:34:18.996577'); -INSERT INTO dvds.payment VALUES (21498, 473, 1, 11216, 4.99, '2007-03-02 10:52:09.996577'); -INSERT INTO dvds.payment VALUES (21499, 473, 1, 11336, 0.99, '2007-03-02 15:27:22.996577'); -INSERT INTO dvds.payment VALUES (21500, 473, 2, 11421, 7.99, '2007-03-02 18:20:19.996577'); -INSERT INTO dvds.payment VALUES (21501, 473, 1, 11741, 0.99, '2007-03-17 07:17:05.996577'); -INSERT INTO dvds.payment VALUES (21502, 473, 2, 13984, 4.99, '2007-03-20 17:40:56.996577'); -INSERT INTO dvds.payment VALUES (21503, 473, 2, 14202, 0.99, '2007-03-21 02:20:18.996577'); -INSERT INTO dvds.payment VALUES (21504, 473, 2, 14550, 0.99, '2007-03-21 14:25:05.996577'); -INSERT INTO dvds.payment VALUES (21505, 473, 2, 14658, 4.99, '2007-03-21 18:10:16.996577'); -INSERT INTO dvds.payment VALUES (21506, 473, 2, 14757, 4.99, '2007-03-21 21:52:03.996577'); -INSERT INTO dvds.payment VALUES (21507, 473, 1, 15118, 4.99, '2007-03-22 11:07:03.996577'); -INSERT INTO dvds.payment VALUES (21508, 473, 2, 15400, 2.99, '2007-03-22 21:41:29.996577'); -INSERT INTO dvds.payment VALUES (21509, 473, 2, 16024, 4.99, '2007-03-23 20:15:13.996577'); -INSERT INTO dvds.payment VALUES (21510, 474, 2, 10376, 5.99, '2007-03-01 04:55:39.996577'); -INSERT INTO dvds.payment VALUES (21511, 474, 2, 11117, 0.99, '2007-03-02 07:04:29.996577'); -INSERT INTO dvds.payment VALUES (21512, 474, 1, 11489, 2.99, '2007-03-02 21:03:54.996577'); -INSERT INTO dvds.payment VALUES (21513, 474, 2, 11537, 2.99, '2007-03-16 23:09:34.996577'); -INSERT INTO dvds.payment VALUES (21514, 474, 1, 12083, 2.99, '2007-03-17 20:42:03.996577'); -INSERT INTO dvds.payment VALUES (21515, 474, 1, 12236, 4.99, '2007-03-18 01:47:55.996577'); -INSERT INTO dvds.payment VALUES (21516, 474, 1, 12440, 0.99, '2007-03-18 09:16:01.996577'); -INSERT INTO dvds.payment VALUES (21517, 474, 2, 12597, 2.99, '2007-03-18 15:02:28.996577'); -INSERT INTO dvds.payment VALUES (21518, 474, 1, 12702, 4.99, '2007-03-18 18:58:59.996577'); -INSERT INTO dvds.payment VALUES (21519, 474, 1, 14728, 0.99, '2007-03-21 20:44:02.996577'); -INSERT INTO dvds.payment VALUES (21520, 474, 2, 15046, 4.99, '2007-03-22 08:23:20.996577'); -INSERT INTO dvds.payment VALUES (21521, 474, 1, 15558, 6.99, '2007-03-23 03:20:48.996577'); -INSERT INTO dvds.payment VALUES (21522, 475, 1, 10357, 0.99, '2007-03-01 04:18:15.996577'); -INSERT INTO dvds.payment VALUES (21523, 475, 1, 10633, 3.99, '2007-03-01 14:05:43.996577'); -INSERT INTO dvds.payment VALUES (21524, 475, 1, 11293, 5.99, '2007-03-02 13:29:09.996577'); -INSERT INTO dvds.payment VALUES (21525, 475, 1, 11770, 4.99, '2007-03-17 08:33:31.996577'); -INSERT INTO dvds.payment VALUES (21526, 475, 2, 14303, 2.99, '2007-03-21 05:51:09.996577'); -INSERT INTO dvds.payment VALUES (21527, 475, 1, 15097, 1.99, '2007-03-22 10:12:08.996577'); -INSERT INTO dvds.payment VALUES (21528, 475, 1, 15288, 4.99, '2007-03-22 17:52:24.996577'); -INSERT INTO dvds.payment VALUES (21529, 476, 1, 10346, 4.99, '2007-03-01 03:47:49.996577'); -INSERT INTO dvds.payment VALUES (21530, 476, 1, 10617, 9.99, '2007-03-01 13:34:18.996577'); -INSERT INTO dvds.payment VALUES (21531, 476, 1, 10826, 6.99, '2007-03-01 21:36:22.996577'); -INSERT INTO dvds.payment VALUES (21532, 476, 1, 12616, 4.99, '2007-03-18 15:51:07.996577'); -INSERT INTO dvds.payment VALUES (21533, 476, 2, 12709, 5.99, '2007-03-18 19:28:17.996577'); -INSERT INTO dvds.payment VALUES (21534, 476, 1, 15413, 0.99, '2007-03-22 22:06:27.996577'); -INSERT INTO dvds.payment VALUES (21535, 477, 1, 10500, 4.99, '2007-03-01 09:29:27.996577'); -INSERT INTO dvds.payment VALUES (21536, 477, 2, 10912, 0.99, '2007-03-02 00:28:29.996577'); -INSERT INTO dvds.payment VALUES (21537, 477, 2, 12420, 4.99, '2007-03-18 08:30:16.996577'); -INSERT INTO dvds.payment VALUES (21538, 477, 1, 13002, 0.99, '2007-03-19 06:06:24.996577'); -INSERT INTO dvds.payment VALUES (21539, 477, 2, 14552, 3.99, '2007-03-21 14:27:53.996577'); -INSERT INTO dvds.payment VALUES (21540, 477, 2, 15091, 2.99, '2007-03-22 10:03:09.996577'); -INSERT INTO dvds.payment VALUES (21541, 477, 1, 15929, 2.99, '2007-03-23 16:51:56.996577'); -INSERT INTO dvds.payment VALUES (21542, 478, 1, 11906, 2.99, '2007-03-17 14:09:12.996577'); -INSERT INTO dvds.payment VALUES (21543, 478, 2, 13162, 2.99, '2007-03-19 11:56:52.996577'); -INSERT INTO dvds.payment VALUES (21544, 478, 2, 13507, 4.99, '2007-03-20 00:38:53.996577'); -INSERT INTO dvds.payment VALUES (21545, 478, 1, 15027, 4.99, '2007-03-22 07:31:30.996577'); -INSERT INTO dvds.payment VALUES (21546, 478, 2, 15188, 4.99, '2007-03-22 14:24:14.996577'); -INSERT INTO dvds.payment VALUES (21547, 478, 1, 15724, 4.99, '2007-03-23 09:50:35.996577'); -INSERT INTO dvds.payment VALUES (21548, 479, 2, 10303, 4.99, '2007-03-01 02:41:59.996577'); -INSERT INTO dvds.payment VALUES (21549, 479, 2, 11109, 4.99, '2007-03-02 06:48:55.996577'); -INSERT INTO dvds.payment VALUES (21550, 479, 2, 11584, 1.99, '2007-03-17 00:41:52.996577'); -INSERT INTO dvds.payment VALUES (21551, 479, 2, 11835, 4.99, '2007-03-17 11:31:39.996577'); -INSERT INTO dvds.payment VALUES (21552, 479, 2, 12401, 0.99, '2007-03-18 07:49:17.996577'); -INSERT INTO dvds.payment VALUES (21553, 479, 2, 13078, 8.99, '2007-03-19 08:45:09.996577'); -INSERT INTO dvds.payment VALUES (21554, 479, 1, 13974, 2.99, '2007-03-20 17:23:25.996577'); -INSERT INTO dvds.payment VALUES (21555, 480, 2, 10808, 1.99, '2007-03-01 21:05:37.996577'); -INSERT INTO dvds.payment VALUES (21556, 480, 2, 11017, 0.99, '2007-03-02 03:48:17.996577'); -INSERT INTO dvds.payment VALUES (21557, 480, 1, 11369, 5.99, '2007-03-02 16:33:07.996577'); -INSERT INTO dvds.payment VALUES (21558, 480, 2, 12905, 4.99, '2007-03-19 02:42:03.996577'); -INSERT INTO dvds.payment VALUES (21559, 480, 2, 13092, 0.99, '2007-03-19 09:09:35.996577'); -INSERT INTO dvds.payment VALUES (21560, 480, 2, 13131, 9.99, '2007-03-19 10:36:39.996577'); -INSERT INTO dvds.payment VALUES (21561, 480, 1, 13831, 4.99, '2007-03-20 12:28:01.996577'); -INSERT INTO dvds.payment VALUES (21562, 480, 2, 15363, 2.99, '2007-03-22 20:10:06.996577'); -INSERT INTO dvds.payment VALUES (21563, 480, 2, 15579, 4.99, '2007-03-23 04:07:07.996577'); -INSERT INTO dvds.payment VALUES (21564, 481, 2, 11207, 0.99, '2007-03-02 10:29:56.996577'); -INSERT INTO dvds.payment VALUES (21565, 481, 2, 11387, 2.99, '2007-03-02 17:01:04.996577'); -INSERT INTO dvds.payment VALUES (21566, 481, 1, 11752, 4.99, '2007-03-17 07:39:21.996577'); -INSERT INTO dvds.payment VALUES (21567, 481, 1, 11885, 4.99, '2007-03-17 13:22:19.996577'); -INSERT INTO dvds.payment VALUES (21568, 481, 2, 12160, 2.99, '2007-03-17 23:06:25.996577'); -INSERT INTO dvds.payment VALUES (21569, 481, 1, 12981, 4.99, '2007-03-19 05:32:26.996577'); -INSERT INTO dvds.payment VALUES (21570, 481, 2, 13497, 2.99, '2007-03-20 00:15:04.996577'); -INSERT INTO dvds.payment VALUES (21571, 481, 2, 13878, 4.99, '2007-03-20 13:46:04.996577'); -INSERT INTO dvds.payment VALUES (21572, 481, 1, 13990, 1.99, '2007-03-20 17:57:49.996577'); -INSERT INTO dvds.payment VALUES (21573, 481, 2, 14280, 4.99, '2007-03-21 05:08:24.996577'); -INSERT INTO dvds.payment VALUES (21574, 481, 2, 14584, 0.99, '2007-03-21 15:43:59.996577'); -INSERT INTO dvds.payment VALUES (21575, 482, 2, 10824, 4.99, '2007-03-01 21:28:48.996577'); -INSERT INTO dvds.payment VALUES (21576, 482, 2, 10839, 2.99, '2007-03-01 22:06:05.996577'); -INSERT INTO dvds.payment VALUES (21577, 482, 2, 11498, 6.99, '2007-03-16 21:21:20.996577'); -INSERT INTO dvds.payment VALUES (21578, 482, 1, 13174, 4.99, '2007-03-19 12:21:16.996577'); -INSERT INTO dvds.payment VALUES (21579, 482, 2, 14383, 4.99, '2007-03-21 08:30:31.996577'); -INSERT INTO dvds.payment VALUES (21580, 482, 2, 14732, 0.99, '2007-03-21 20:50:55.996577'); -INSERT INTO dvds.payment VALUES (21581, 482, 2, 14891, 6.99, '2007-03-22 02:39:28.996577'); -INSERT INTO dvds.payment VALUES (21582, 482, 2, 14995, 4.99, '2007-03-22 06:20:57.996577'); -INSERT INTO dvds.payment VALUES (21583, 482, 1, 15391, 0.99, '2007-03-22 21:30:11.996577'); -INSERT INTO dvds.payment VALUES (21584, 482, 1, 15849, 5.99, '2007-03-23 14:09:46.996577'); -INSERT INTO dvds.payment VALUES (21585, 482, 2, 15865, 2.99, '2007-03-23 14:46:51.996577'); -INSERT INTO dvds.payment VALUES (21586, 482, 1, 15879, 3.99, '2007-03-23 15:11:19.996577'); -INSERT INTO dvds.payment VALUES (21587, 483, 2, 10677, 0.99, '2007-03-01 15:53:01.996577'); -INSERT INTO dvds.payment VALUES (21588, 483, 1, 10953, 6.99, '2007-03-02 01:57:04.996577'); -INSERT INTO dvds.payment VALUES (21589, 483, 2, 12331, 3.99, '2007-03-18 05:15:45.996577'); -INSERT INTO dvds.payment VALUES (21590, 483, 2, 12695, 2.99, '2007-03-18 18:40:01.996577'); -INSERT INTO dvds.payment VALUES (21591, 483, 2, 12875, 2.99, '2007-03-19 01:38:47.996577'); -INSERT INTO dvds.payment VALUES (21592, 484, 2, 11871, 4.99, '2007-03-17 12:40:10.996577'); -INSERT INTO dvds.payment VALUES (21593, 484, 1, 12024, 0.99, '2007-03-17 18:26:00.996577'); -INSERT INTO dvds.payment VALUES (21594, 484, 1, 12771, 4.99, '2007-03-18 21:57:49.996577'); -INSERT INTO dvds.payment VALUES (21595, 484, 1, 12993, 7.99, '2007-03-19 05:52:29.996577'); -INSERT INTO dvds.payment VALUES (21596, 484, 2, 13160, 0.99, '2007-03-19 11:49:30.996577'); -INSERT INTO dvds.payment VALUES (21597, 484, 2, 13956, 3.99, '2007-03-20 16:36:45.996577'); -INSERT INTO dvds.payment VALUES (21598, 484, 1, 15607, 2.99, '2007-03-23 05:22:32.996577'); -INSERT INTO dvds.payment VALUES (21599, 484, 1, 16026, 4.99, '2007-03-23 20:17:48.996577'); -INSERT INTO dvds.payment VALUES (21600, 485, 1, 10771, 4.99, '2007-03-01 19:18:01.996577'); -INSERT INTO dvds.payment VALUES (21601, 485, 2, 10772, 6.99, '2007-03-01 19:19:36.996577'); -INSERT INTO dvds.payment VALUES (21602, 485, 2, 11188, 3.99, '2007-03-02 09:45:37.996577'); -INSERT INTO dvds.payment VALUES (21603, 485, 1, 11921, 4.99, '2007-03-17 14:40:53.996577'); -INSERT INTO dvds.payment VALUES (21604, 485, 1, 11974, 2.99, '2007-03-17 16:25:14.996577'); -INSERT INTO dvds.payment VALUES (21605, 485, 2, 12261, 8.99, '2007-03-18 02:44:32.996577'); -INSERT INTO dvds.payment VALUES (21606, 485, 2, 12487, 0.99, '2007-03-18 11:13:50.996577'); -INSERT INTO dvds.payment VALUES (21607, 485, 2, 13055, 2.99, '2007-03-19 08:04:54.996577'); -INSERT INTO dvds.payment VALUES (21608, 486, 2, 10902, 4.99, '2007-03-02 00:04:12.996577'); -INSERT INTO dvds.payment VALUES (21609, 486, 1, 12465, 0.99, '2007-03-18 10:03:28.996577'); -INSERT INTO dvds.payment VALUES (21610, 486, 2, 12609, 2.99, '2007-03-18 15:34:48.996577'); -INSERT INTO dvds.payment VALUES (21611, 486, 1, 13048, 4.99, '2007-03-19 07:53:32.996577'); -INSERT INTO dvds.payment VALUES (21612, 486, 2, 13803, 0.99, '2007-03-20 11:14:43.996577'); -INSERT INTO dvds.payment VALUES (21613, 486, 2, 14251, 4.99, '2007-03-21 04:10:46.996577'); -INSERT INTO dvds.payment VALUES (21614, 486, 2, 14284, 4.99, '2007-03-21 05:13:03.996577'); -INSERT INTO dvds.payment VALUES (21615, 487, 2, 10511, 2.99, '2007-03-01 10:00:42.996577'); -INSERT INTO dvds.payment VALUES (21616, 487, 2, 10555, 6.99, '2007-03-01 11:25:04.996577'); -INSERT INTO dvds.payment VALUES (21617, 487, 1, 10832, 6.99, '2007-03-01 21:53:19.996577'); -INSERT INTO dvds.payment VALUES (21618, 487, 2, 10877, 5.99, '2007-03-01 23:00:30.996577'); -INSERT INTO dvds.payment VALUES (21619, 487, 1, 10978, 9.99, '2007-03-02 02:40:53.996577'); -INSERT INTO dvds.payment VALUES (21620, 487, 1, 11669, 5.99, '2007-03-17 04:17:17.996577'); -INSERT INTO dvds.payment VALUES (21621, 487, 2, 11890, 5.99, '2007-03-17 13:37:09.996577'); -INSERT INTO dvds.payment VALUES (21622, 487, 1, 12493, 7.99, '2007-03-18 11:22:04.996577'); -INSERT INTO dvds.payment VALUES (21623, 487, 2, 13210, 4.99, '2007-03-19 13:52:04.996577'); -INSERT INTO dvds.payment VALUES (21624, 487, 1, 13658, 7.99, '2007-03-20 06:30:48.996577'); -INSERT INTO dvds.payment VALUES (21625, 487, 2, 15665, 2.99, '2007-03-23 07:27:38.996577'); -INSERT INTO dvds.payment VALUES (21626, 488, 2, 10474, 5.99, '2007-03-01 08:30:08.996577'); -INSERT INTO dvds.payment VALUES (21627, 488, 1, 10767, 0.99, '2007-03-01 19:05:49.996577'); -INSERT INTO dvds.payment VALUES (21628, 488, 1, 11774, 3.99, '2007-03-17 08:49:05.996577'); -INSERT INTO dvds.payment VALUES (21629, 488, 2, 12483, 5.99, '2007-03-18 11:07:03.996577'); -INSERT INTO dvds.payment VALUES (21630, 488, 2, 13446, 4.99, '2007-03-19 22:34:39.996577'); -INSERT INTO dvds.payment VALUES (21631, 488, 2, 14948, 5.99, '2007-03-22 04:39:19.996577'); -INSERT INTO dvds.payment VALUES (21632, 488, 2, 15259, 0.99, '2007-03-22 16:51:49.996577'); -INSERT INTO dvds.payment VALUES (21633, 488, 1, 15350, 2.99, '2007-03-22 19:43:55.996577'); -INSERT INTO dvds.payment VALUES (21634, 488, 2, 15499, 2.99, '2007-03-23 01:05:45.996577'); -INSERT INTO dvds.payment VALUES (21635, 489, 2, 11119, 9.99, '2007-03-02 07:13:10.996577'); -INSERT INTO dvds.payment VALUES (21636, 489, 1, 11705, 4.99, '2007-03-17 05:50:51.996577'); -INSERT INTO dvds.payment VALUES (21637, 489, 1, 12496, 6.99, '2007-03-18 11:26:51.996577'); -INSERT INTO dvds.payment VALUES (21638, 489, 2, 12701, 6.99, '2007-03-18 18:55:13.996577'); -INSERT INTO dvds.payment VALUES (21639, 489, 1, 13462, 4.99, '2007-03-19 23:17:45.996577'); -INSERT INTO dvds.payment VALUES (21640, 489, 2, 14095, 5.99, '2007-03-20 22:54:11.996577'); -INSERT INTO dvds.payment VALUES (21641, 489, 2, 14328, 2.99, '2007-03-21 06:46:46.996577'); -INSERT INTO dvds.payment VALUES (21642, 489, 2, 14424, 6.99, '2007-03-21 09:52:37.996577'); -INSERT INTO dvds.payment VALUES (21643, 489, 1, 15205, 0.99, '2007-03-22 15:00:49.996577'); -INSERT INTO dvds.payment VALUES (21644, 489, 1, 15981, 4.99, '2007-03-23 18:40:43.996577'); -INSERT INTO dvds.payment VALUES (21645, 490, 1, 10786, 7.99, '2007-03-01 19:58:00.996577'); -INSERT INTO dvds.payment VALUES (21646, 490, 1, 10955, 7.99, '2007-03-02 02:01:00.996577'); -INSERT INTO dvds.payment VALUES (21647, 490, 2, 11965, 2.99, '2007-03-17 16:08:11.996577'); -INSERT INTO dvds.payment VALUES (21648, 490, 2, 14557, 4.99, '2007-03-21 14:33:37.996577'); -INSERT INTO dvds.payment VALUES (21649, 490, 2, 14761, 6.99, '2007-03-21 21:58:54.996577'); -INSERT INTO dvds.payment VALUES (21650, 490, 2, 15276, 2.99, '2007-03-22 17:27:27.996577'); -INSERT INTO dvds.payment VALUES (21651, 490, 1, 15448, 2.99, '2007-03-22 23:23:50.996577'); -INSERT INTO dvds.payment VALUES (21652, 491, 2, 10974, 6.99, '2007-03-02 02:39:18.996577'); -INSERT INTO dvds.payment VALUES (21653, 491, 1, 11048, 4.99, '2007-03-02 04:43:33.996577'); -INSERT INTO dvds.payment VALUES (21654, 491, 1, 11590, 0.99, '2007-03-17 00:56:59.996577'); -INSERT INTO dvds.payment VALUES (21655, 491, 1, 11840, 4.99, '2007-03-17 11:37:27.996577'); -INSERT INTO dvds.payment VALUES (21656, 491, 2, 13607, 2.99, '2007-03-20 04:37:08.996577'); -INSERT INTO dvds.payment VALUES (21657, 491, 1, 14780, 0.99, '2007-03-21 22:34:59.996577'); -INSERT INTO dvds.payment VALUES (21658, 491, 2, 15685, 5.99, '2007-03-23 08:09:54.996577'); -INSERT INTO dvds.payment VALUES (21659, 492, 2, 12971, 4.99, '2007-03-19 05:11:09.996577'); -INSERT INTO dvds.payment VALUES (21660, 492, 1, 14255, 2.99, '2007-03-21 04:20:03.996577'); -INSERT INTO dvds.payment VALUES (21661, 492, 2, 15822, 0.99, '2007-03-23 13:34:25.996577'); -INSERT INTO dvds.payment VALUES (21662, 492, 1, 15958, 4.99, '2007-03-23 17:51:02.996577'); -INSERT INTO dvds.payment VALUES (21663, 493, 1, 10777, 6.99, '2007-03-01 19:32:16.996577'); -INSERT INTO dvds.payment VALUES (21664, 493, 2, 10885, 7.99, '2007-03-01 23:20:03.996577'); -INSERT INTO dvds.payment VALUES (21665, 493, 1, 13638, 2.99, '2007-03-20 05:49:41.996577'); -INSERT INTO dvds.payment VALUES (21666, 493, 2, 13675, 6.99, '2007-03-20 07:01:17.996577'); -INSERT INTO dvds.payment VALUES (21667, 493, 1, 14117, 4.99, '2007-03-20 23:40:25.996577'); -INSERT INTO dvds.payment VALUES (21668, 493, 2, 15177, 4.99, '2007-03-22 14:03:15.996577'); -INSERT INTO dvds.payment VALUES (21669, 493, 1, 15355, 0.99, '2007-03-22 19:47:50.996577'); -INSERT INTO dvds.payment VALUES (21670, 493, 1, 15490, 6.99, '2007-03-23 00:36:44.996577'); -INSERT INTO dvds.payment VALUES (21671, 493, 2, 15878, 2.99, '2007-03-23 15:02:57.996577'); -INSERT INTO dvds.payment VALUES (21672, 494, 1, 10403, 0.99, '2007-03-01 05:59:11.996577'); -INSERT INTO dvds.payment VALUES (21673, 494, 1, 10623, 2.99, '2007-03-01 13:51:04.996577'); -INSERT INTO dvds.payment VALUES (21674, 494, 2, 11152, 3.99, '2007-03-02 08:22:02.996577'); -INSERT INTO dvds.payment VALUES (21675, 494, 1, 11987, 5.99, '2007-03-17 16:50:25.996577'); -INSERT INTO dvds.payment VALUES (21676, 494, 2, 13094, 0.99, '2007-03-19 09:16:24.996577'); -INSERT INTO dvds.payment VALUES (21677, 494, 2, 13301, 3.99, '2007-03-19 17:21:41.996577'); -INSERT INTO dvds.payment VALUES (21678, 494, 2, 14634, 5.99, '2007-03-21 17:19:54.996577'); -INSERT INTO dvds.payment VALUES (21679, 494, 1, 14832, 4.99, '2007-03-22 00:11:55.996577'); -INSERT INTO dvds.payment VALUES (21680, 494, 1, 15086, 6.99, '2007-03-22 09:49:34.996577'); -INSERT INTO dvds.payment VALUES (21681, 494, 2, 15156, 9.99, '2007-03-22 12:57:37.996577'); -INSERT INTO dvds.payment VALUES (21682, 494, 2, 15291, 4.99, '2007-03-22 17:56:30.996577'); -INSERT INTO dvds.payment VALUES (21683, 495, 2, 10643, 5.99, '2007-03-01 14:16:59.996577'); -INSERT INTO dvds.payment VALUES (21684, 495, 1, 10783, 4.99, '2007-03-01 19:52:03.996577'); -INSERT INTO dvds.payment VALUES (21685, 495, 1, 12782, 5.99, '2007-03-18 22:24:49.996577'); -INSERT INTO dvds.payment VALUES (21686, 495, 2, 12837, 0.99, '2007-03-19 00:19:35.996577'); -INSERT INTO dvds.payment VALUES (21687, 495, 2, 13205, 3.99, '2007-03-19 13:33:52.996577'); -INSERT INTO dvds.payment VALUES (21688, 495, 2, 13445, 2.99, '2007-03-19 22:33:59.996577'); -INSERT INTO dvds.payment VALUES (21689, 495, 2, 13818, 4.99, '2007-03-20 11:48:35.996577'); -INSERT INTO dvds.payment VALUES (21690, 495, 1, 15984, 2.99, '2007-03-23 18:44:53.996577'); -INSERT INTO dvds.payment VALUES (21691, 496, 1, 11060, 7.99, '2007-03-02 05:16:44.996577'); -INSERT INTO dvds.payment VALUES (21692, 496, 2, 11448, 4.99, '2007-03-02 19:12:59.996577'); -INSERT INTO dvds.payment VALUES (21693, 496, 1, 11893, 3.99, '2007-03-17 13:41:55.996577'); -INSERT INTO dvds.payment VALUES (21694, 496, 2, 12605, 4.99, '2007-03-18 15:28:03.996577'); -INSERT INTO dvds.payment VALUES (21695, 496, 1, 13569, 5.99, '2007-03-20 03:31:25.996577'); -INSERT INTO dvds.payment VALUES (21696, 496, 2, 14013, 6.99, '2007-03-20 19:11:16.996577'); -INSERT INTO dvds.payment VALUES (21697, 496, 1, 14332, 7.99, '2007-03-21 06:59:09.996577'); -INSERT INTO dvds.payment VALUES (21698, 496, 1, 14348, 0.99, '2007-03-21 07:22:52.996577'); -INSERT INTO dvds.payment VALUES (21699, 496, 2, 15750, 2.99, '2007-03-23 11:04:31.996577'); -INSERT INTO dvds.payment VALUES (21700, 497, 2, 10760, 7.99, '2007-03-01 18:53:46.996577'); -INSERT INTO dvds.payment VALUES (21701, 497, 1, 12123, 0.99, '2007-03-17 21:50:44.996577'); -INSERT INTO dvds.payment VALUES (21702, 497, 1, 13159, 4.99, '2007-03-19 11:48:25.996577'); -INSERT INTO dvds.payment VALUES (21703, 497, 1, 13289, 2.99, '2007-03-19 16:59:56.996577'); -INSERT INTO dvds.payment VALUES (21704, 497, 2, 14134, 0.99, '2007-03-21 00:14:20.996577'); -INSERT INTO dvds.payment VALUES (21705, 497, 1, 15362, 5.99, '2007-03-22 20:08:46.996577'); -INSERT INTO dvds.payment VALUES (21706, 497, 2, 15633, 0.99, '2007-03-23 05:59:36.996577'); -INSERT INTO dvds.payment VALUES (21707, 497, 1, 15919, 0.99, '2007-03-23 16:29:57.996577'); -INSERT INTO dvds.payment VALUES (21708, 498, 1, 10225, 0.99, '2007-03-01 00:07:06.996577'); -INSERT INTO dvds.payment VALUES (21709, 498, 1, 11455, 6.99, '2007-03-02 19:35:32.996577'); -INSERT INTO dvds.payment VALUES (21710, 498, 1, 12893, 2.99, '2007-03-19 02:15:09.996577'); -INSERT INTO dvds.payment VALUES (21711, 499, 2, 10333, 0.99, '2007-03-01 03:26:58.996577'); -INSERT INTO dvds.payment VALUES (21712, 499, 2, 10497, 2.99, '2007-03-01 09:24:25.996577'); -INSERT INTO dvds.payment VALUES (21713, 499, 1, 11513, 7.99, '2007-03-16 22:19:59.996577'); -INSERT INTO dvds.payment VALUES (21714, 499, 2, 11606, 0.99, '2007-03-17 02:01:09.996577'); -INSERT INTO dvds.payment VALUES (21715, 499, 2, 11978, 4.99, '2007-03-17 16:30:36.996577'); -INSERT INTO dvds.payment VALUES (21716, 499, 1, 12004, 8.99, '2007-03-17 17:25:19.996577'); -INSERT INTO dvds.payment VALUES (21717, 499, 1, 12354, 7.99, '2007-03-18 06:02:33.996577'); -INSERT INTO dvds.payment VALUES (21718, 499, 1, 12436, 3.99, '2007-03-18 09:09:31.996577'); -INSERT INTO dvds.payment VALUES (21719, 499, 1, 12587, 1.99, '2007-03-18 14:31:39.996577'); -INSERT INTO dvds.payment VALUES (21720, 499, 2, 12947, 4.99, '2007-03-19 04:22:47.996577'); -INSERT INTO dvds.payment VALUES (21721, 499, 2, 13822, 3.99, '2007-03-20 12:07:54.996577'); -INSERT INTO dvds.payment VALUES (21722, 499, 1, 14858, 3.99, '2007-03-22 01:14:44.996577'); -INSERT INTO dvds.payment VALUES (21723, 499, 1, 15587, 7.99, '2007-03-23 04:28:54.996577'); -INSERT INTO dvds.payment VALUES (21724, 500, 1, 10947, 6.99, '2007-03-02 01:51:43.996577'); -INSERT INTO dvds.payment VALUES (21725, 500, 2, 11218, 1.99, '2007-03-02 10:57:38.996577'); -INSERT INTO dvds.payment VALUES (21726, 500, 1, 12639, 2.99, '2007-03-18 16:41:31.996577'); -INSERT INTO dvds.payment VALUES (21727, 500, 2, 12813, 2.99, '2007-03-18 23:22:48.996577'); -INSERT INTO dvds.payment VALUES (21728, 500, 2, 13628, 4.99, '2007-03-20 05:32:19.996577'); -INSERT INTO dvds.payment VALUES (21729, 500, 1, 14407, 0.99, '2007-03-21 09:15:17.996577'); -INSERT INTO dvds.payment VALUES (21730, 500, 1, 14964, 4.99, '2007-03-22 05:07:50.996577'); -INSERT INTO dvds.payment VALUES (21731, 500, 1, 15584, 2.99, '2007-03-23 04:17:47.996577'); -INSERT INTO dvds.payment VALUES (21732, 500, 1, 15853, 2.99, '2007-03-23 14:22:46.996577'); -INSERT INTO dvds.payment VALUES (21733, 501, 1, 10817, 4.99, '2007-03-01 21:19:34.996577'); -INSERT INTO dvds.payment VALUES (21734, 501, 2, 11393, 4.99, '2007-03-02 17:12:55.996577'); -INSERT INTO dvds.payment VALUES (21735, 501, 1, 11640, 1.99, '2007-03-17 03:12:59.996577'); -INSERT INTO dvds.payment VALUES (21736, 501, 2, 11799, 6.99, '2007-03-17 09:53:51.996577'); -INSERT INTO dvds.payment VALUES (21737, 501, 1, 12914, 4.99, '2007-03-19 02:54:25.996577'); -INSERT INTO dvds.payment VALUES (21738, 501, 2, 13889, 0.99, '2007-03-20 14:08:32.996577'); -INSERT INTO dvds.payment VALUES (21739, 501, 1, 15239, 4.99, '2007-03-22 16:14:43.996577'); -INSERT INTO dvds.payment VALUES (21740, 501, 1, 15699, 5.99, '2007-03-23 08:49:01.996577'); -INSERT INTO dvds.payment VALUES (21741, 502, 2, 10390, 4.99, '2007-03-01 05:15:14.996577'); -INSERT INTO dvds.payment VALUES (21742, 502, 1, 10938, 0.99, '2007-03-02 01:33:48.996577'); -INSERT INTO dvds.payment VALUES (21743, 502, 2, 11036, 4.99, '2007-03-02 04:24:55.996577'); -INSERT INTO dvds.payment VALUES (21744, 502, 1, 11301, 0.99, '2007-03-02 14:06:25.996577'); -INSERT INTO dvds.payment VALUES (21745, 502, 1, 11317, 4.99, '2007-03-02 14:37:18.996577'); -INSERT INTO dvds.payment VALUES (21746, 502, 1, 11435, 0.99, '2007-03-02 18:42:49.996577'); -INSERT INTO dvds.payment VALUES (21747, 502, 1, 11620, 0.99, '2007-03-17 02:34:48.996577'); -INSERT INTO dvds.payment VALUES (21748, 502, 1, 12762, 4.99, '2007-03-18 21:35:20.996577'); -INSERT INTO dvds.payment VALUES (21749, 502, 1, 13052, 9.99, '2007-03-19 08:00:08.996577'); -INSERT INTO dvds.payment VALUES (21750, 502, 1, 14411, 4.99, '2007-03-21 09:23:23.996577'); -INSERT INTO dvds.payment VALUES (21751, 502, 1, 15486, 3.99, '2007-03-23 00:33:46.996577'); -INSERT INTO dvds.payment VALUES (21752, 502, 1, 16034, 3.99, '2007-03-23 20:35:00.996577'); -INSERT INTO dvds.payment VALUES (21753, 503, 2, 11075, 2.99, '2007-03-02 05:52:49.996577'); -INSERT INTO dvds.payment VALUES (21754, 503, 1, 11161, 1.99, '2007-03-02 08:34:23.996577'); -INSERT INTO dvds.payment VALUES (21755, 503, 1, 11858, 4.99, '2007-03-17 12:18:57.996577'); -INSERT INTO dvds.payment VALUES (21756, 503, 2, 12370, 2.99, '2007-03-18 06:26:13.996577'); -INSERT INTO dvds.payment VALUES (21757, 503, 2, 12783, 4.99, '2007-03-18 22:29:40.996577'); -INSERT INTO dvds.payment VALUES (21758, 503, 1, 13332, 2.99, '2007-03-19 18:29:17.996577'); -INSERT INTO dvds.payment VALUES (21759, 503, 1, 13551, 2.99, '2007-03-20 02:28:56.996577'); -INSERT INTO dvds.payment VALUES (21760, 503, 1, 14823, 0.99, '2007-03-21 23:53:08.996577'); -INSERT INTO dvds.payment VALUES (21761, 503, 1, 14913, 2.99, '2007-03-22 03:20:39.996577'); -INSERT INTO dvds.payment VALUES (21762, 503, 2, 15056, 4.99, '2007-03-22 08:44:20.996577'); -INSERT INTO dvds.payment VALUES (21763, 503, 2, 15077, 2.99, '2007-03-22 09:37:44.996577'); -INSERT INTO dvds.payment VALUES (21764, 503, 1, 15588, 3.99, '2007-03-23 04:31:01.996577'); -INSERT INTO dvds.payment VALUES (21765, 503, 1, 15692, 4.99, '2007-03-23 08:28:28.996577'); -INSERT INTO dvds.payment VALUES (21766, 503, 1, 15726, 2.99, '2007-03-23 09:56:52.996577'); -INSERT INTO dvds.payment VALUES (21767, 503, 1, 15797, 0.99, '2007-03-23 12:42:13.996577'); -INSERT INTO dvds.payment VALUES (21768, 504, 2, 10397, 0.99, '2007-03-01 05:39:53.996577'); -INSERT INTO dvds.payment VALUES (21769, 504, 2, 10509, 3.99, '2007-03-01 09:53:54.996577'); -INSERT INTO dvds.payment VALUES (21770, 504, 2, 11569, 2.99, '2007-03-16 23:59:30.996577'); -INSERT INTO dvds.payment VALUES (21771, 504, 1, 12769, 1.99, '2007-03-18 21:55:06.996577'); -INSERT INTO dvds.payment VALUES (21772, 504, 1, 13166, 2.99, '2007-03-19 12:04:54.996577'); -INSERT INTO dvds.payment VALUES (21773, 504, 2, 13206, 2.99, '2007-03-19 13:34:00.996577'); -INSERT INTO dvds.payment VALUES (21774, 504, 2, 13387, 2.99, '2007-03-19 20:14:36.996577'); -INSERT INTO dvds.payment VALUES (21775, 504, 2, 13859, 5.99, '2007-03-20 13:22:09.996577'); -INSERT INTO dvds.payment VALUES (21776, 504, 2, 15018, 4.99, '2007-03-22 07:21:04.996577'); -INSERT INTO dvds.payment VALUES (21777, 504, 1, 15166, 6.99, '2007-03-22 13:34:03.996577'); -INSERT INTO dvds.payment VALUES (21778, 504, 1, 15723, 8.99, '2007-03-23 09:45:52.996577'); -INSERT INTO dvds.payment VALUES (21779, 504, 2, 16022, 4.99, '2007-03-23 20:12:53.996577'); -INSERT INTO dvds.payment VALUES (21780, 505, 1, 10896, 2.99, '2007-03-01 23:47:59.996577'); -INSERT INTO dvds.payment VALUES (21781, 505, 1, 11163, 0.99, '2007-03-02 08:37:06.996577'); -INSERT INTO dvds.payment VALUES (21782, 505, 1, 11907, 2.99, '2007-03-17 14:09:13.996577'); -INSERT INTO dvds.payment VALUES (21783, 505, 2, 13612, 3.99, '2007-03-20 04:50:34.996577'); -INSERT INTO dvds.payment VALUES (21784, 505, 1, 14398, 2.99, '2007-03-21 08:55:47.996577'); -INSERT INTO dvds.payment VALUES (21785, 505, 1, 14802, 2.99, '2007-03-21 23:16:49.996577'); -INSERT INTO dvds.payment VALUES (21786, 505, 1, 15436, 4.99, '2007-03-22 22:58:52.996577'); -INSERT INTO dvds.payment VALUES (21787, 506, 1, 10477, 2.99, '2007-03-01 08:32:43.996577'); -INSERT INTO dvds.payment VALUES (21788, 506, 1, 10873, 4.99, '2007-03-01 22:59:00.996577'); -INSERT INTO dvds.payment VALUES (21789, 506, 2, 11238, 0.99, '2007-03-02 11:54:16.996577'); -INSERT INTO dvds.payment VALUES (21790, 506, 2, 11781, 4.99, '2007-03-17 09:05:26.996577'); -INSERT INTO dvds.payment VALUES (21791, 506, 1, 12994, 0.99, '2007-03-19 05:54:36.996577'); -INSERT INTO dvds.payment VALUES (21792, 506, 2, 13073, 2.99, '2007-03-19 08:34:04.996577'); -INSERT INTO dvds.payment VALUES (21793, 506, 2, 13767, 0.99, '2007-03-20 10:12:02.996577'); -INSERT INTO dvds.payment VALUES (21794, 506, 1, 14074, 1.99, '2007-03-20 21:44:33.996577'); -INSERT INTO dvds.payment VALUES (21795, 506, 1, 14337, 2.99, '2007-03-21 07:02:52.996577'); -INSERT INTO dvds.payment VALUES (21796, 506, 2, 14395, 6.99, '2007-03-21 08:52:26.996577'); -INSERT INTO dvds.payment VALUES (21797, 506, 2, 15022, 5.99, '2007-03-22 07:24:09.996577'); -INSERT INTO dvds.payment VALUES (21798, 506, 2, 15572, 1.99, '2007-03-23 03:56:27.996577'); -INSERT INTO dvds.payment VALUES (21799, 506, 1, 15694, 9.99, '2007-03-23 08:31:12.996577'); -INSERT INTO dvds.payment VALUES (21800, 507, 2, 12071, 6.99, '2007-03-17 20:17:40.996577'); -INSERT INTO dvds.payment VALUES (21801, 507, 2, 12275, 4.99, '2007-03-18 03:10:28.996577'); -INSERT INTO dvds.payment VALUES (21802, 507, 1, 12343, 4.99, '2007-03-18 05:43:39.996577'); -INSERT INTO dvds.payment VALUES (21803, 507, 2, 14625, 4.99, '2007-03-21 17:02:47.996577'); -INSERT INTO dvds.payment VALUES (21804, 507, 1, 15394, 2.99, '2007-03-22 21:32:47.996577'); -INSERT INTO dvds.payment VALUES (21805, 508, 1, 10746, 8.99, '2007-03-01 18:27:15.996577'); -INSERT INTO dvds.payment VALUES (21806, 508, 1, 11365, 2.99, '2007-03-02 16:28:35.996577'); -INSERT INTO dvds.payment VALUES (21807, 508, 2, 11447, 6.99, '2007-03-02 19:04:51.996577'); -INSERT INTO dvds.payment VALUES (21808, 508, 1, 13095, 6.99, '2007-03-19 09:16:36.996577'); -INSERT INTO dvds.payment VALUES (21809, 508, 2, 13201, 2.99, '2007-03-19 13:24:31.996577'); -INSERT INTO dvds.payment VALUES (21810, 508, 1, 15010, 6.99, '2007-03-22 06:58:43.996577'); -INSERT INTO dvds.payment VALUES (21811, 508, 1, 15195, 4.99, '2007-03-22 14:36:49.996577'); -INSERT INTO dvds.payment VALUES (21812, 509, 2, 10988, 5.99, '2007-03-02 03:06:43.996577'); -INSERT INTO dvds.payment VALUES (21813, 509, 1, 11814, 6.99, '2007-03-17 10:37:46.996577'); -INSERT INTO dvds.payment VALUES (21814, 509, 2, 12109, 4.99, '2007-03-17 21:27:01.996577'); -INSERT INTO dvds.payment VALUES (21815, 509, 2, 14045, 4.99, '2007-03-20 20:18:37.996577'); -INSERT INTO dvds.payment VALUES (21816, 509, 2, 14994, 5.99, '2007-03-22 06:20:50.996577'); -INSERT INTO dvds.payment VALUES (21817, 509, 1, 15965, 2.99, '2007-03-23 18:15:05.996577'); -INSERT INTO dvds.payment VALUES (21818, 510, 2, 10265, 7.99, '2007-03-01 01:33:30.996577'); -INSERT INTO dvds.payment VALUES (21819, 510, 2, 11996, 4.99, '2007-03-17 17:03:03.996577'); -INSERT INTO dvds.payment VALUES (21820, 510, 1, 12317, 0.99, '2007-03-18 04:45:32.996577'); -INSERT INTO dvds.payment VALUES (21821, 510, 2, 12406, 2.99, '2007-03-18 08:06:28.996577'); -INSERT INTO dvds.payment VALUES (21822, 510, 1, 15065, 4.99, '2007-03-22 09:15:10.996577'); -INSERT INTO dvds.payment VALUES (21823, 511, 1, 10231, 2.99, '2007-03-01 00:19:15.996577'); -INSERT INTO dvds.payment VALUES (21824, 511, 2, 10429, 2.99, '2007-03-01 07:02:44.996577'); -INSERT INTO dvds.payment VALUES (21825, 511, 2, 12110, 6.99, '2007-03-17 21:28:12.996577'); -INSERT INTO dvds.payment VALUES (21826, 511, 1, 12920, 4.99, '2007-03-19 03:00:58.996577'); -INSERT INTO dvds.payment VALUES (21827, 511, 1, 14213, 4.99, '2007-03-21 02:59:13.996577'); -INSERT INTO dvds.payment VALUES (21828, 511, 1, 14302, 6.99, '2007-03-21 05:48:23.996577'); -INSERT INTO dvds.payment VALUES (21829, 511, 1, 15172, 4.99, '2007-03-22 13:53:59.996577'); -INSERT INTO dvds.payment VALUES (21830, 512, 2, 10232, 4.99, '2007-03-01 00:19:21.996577'); -INSERT INTO dvds.payment VALUES (21831, 512, 2, 10670, 3.99, '2007-03-01 15:35:42.996577'); -INSERT INTO dvds.payment VALUES (21832, 512, 2, 11818, 9.99, '2007-03-17 10:50:30.996577'); -INSERT INTO dvds.payment VALUES (21833, 512, 2, 12957, 8.99, '2007-03-19 04:41:10.996577'); -INSERT INTO dvds.payment VALUES (21834, 512, 2, 13156, 4.99, '2007-03-19 11:39:08.996577'); -INSERT INTO dvds.payment VALUES (21835, 512, 2, 13771, 0.99, '2007-03-20 10:15:47.996577'); -INSERT INTO dvds.payment VALUES (21836, 512, 1, 14288, 4.99, '2007-03-21 05:26:00.996577'); -INSERT INTO dvds.payment VALUES (21837, 512, 1, 14870, 2.99, '2007-03-22 01:51:46.996577'); -INSERT INTO dvds.payment VALUES (21838, 512, 1, 15153, 2.99, '2007-03-22 12:54:27.996577'); -INSERT INTO dvds.payment VALUES (21839, 512, 2, 15265, 3.99, '2007-03-22 17:04:25.996577'); -INSERT INTO dvds.payment VALUES (21840, 512, 1, 15317, 3.99, '2007-03-22 18:42:39.996577'); -INSERT INTO dvds.payment VALUES (21841, 512, 2, 15733, 4.99, '2007-03-23 10:05:58.996577'); -INSERT INTO dvds.payment VALUES (21842, 512, 2, 15990, 4.99, '2007-03-23 18:53:37.996577'); -INSERT INTO dvds.payment VALUES (21843, 513, 2, 11081, 2.99, '2007-03-02 05:58:40.996577'); -INSERT INTO dvds.payment VALUES (21844, 513, 1, 11165, 2.99, '2007-03-02 08:40:43.996577'); -INSERT INTO dvds.payment VALUES (21845, 513, 1, 11407, 3.99, '2007-03-02 17:47:09.996577'); -INSERT INTO dvds.payment VALUES (21846, 513, 1, 11755, 3.99, '2007-03-17 07:44:01.996577'); -INSERT INTO dvds.payment VALUES (21847, 513, 1, 12559, 5.99, '2007-03-18 13:22:24.996577'); -INSERT INTO dvds.payment VALUES (21848, 513, 2, 12784, 2.99, '2007-03-18 22:31:12.996577'); -INSERT INTO dvds.payment VALUES (21849, 513, 2, 12807, 4.99, '2007-03-18 23:07:12.996577'); -INSERT INTO dvds.payment VALUES (21850, 513, 1, 13596, 5.99, '2007-03-20 04:27:24.996577'); -INSERT INTO dvds.payment VALUES (21851, 513, 1, 13690, 4.99, '2007-03-20 07:35:53.996577'); -INSERT INTO dvds.payment VALUES (21852, 513, 2, 14844, 7.99, '2007-03-22 00:37:38.996577'); -INSERT INTO dvds.payment VALUES (21853, 513, 1, 14875, 4.99, '2007-03-22 02:03:05.996577'); -INSERT INTO dvds.payment VALUES (21854, 513, 1, 15035, 4.99, '2007-03-22 08:02:58.996577'); -INSERT INTO dvds.payment VALUES (21855, 513, 2, 15289, 6.99, '2007-03-22 17:55:50.996577'); -INSERT INTO dvds.payment VALUES (21856, 513, 2, 15545, 5.99, '2007-03-23 02:48:42.996577'); -INSERT INTO dvds.payment VALUES (21857, 514, 1, 11675, 1.99, '2007-03-17 04:26:20.996577'); -INSERT INTO dvds.payment VALUES (21858, 514, 2, 12067, 4.99, '2007-03-17 20:05:13.996577'); -INSERT INTO dvds.payment VALUES (21859, 514, 1, 12293, 4.99, '2007-03-18 03:42:02.996577'); -INSERT INTO dvds.payment VALUES (21860, 514, 1, 12302, 4.99, '2007-03-18 04:10:05.996577'); -INSERT INTO dvds.payment VALUES (21861, 514, 2, 12578, 0.99, '2007-03-18 14:15:37.996577'); -INSERT INTO dvds.payment VALUES (21862, 514, 1, 12752, 2.99, '2007-03-18 21:02:02.996577'); -INSERT INTO dvds.payment VALUES (21863, 514, 2, 13344, 3.99, '2007-03-19 18:51:10.996577'); -INSERT INTO dvds.payment VALUES (21864, 514, 1, 14052, 0.99, '2007-03-20 20:40:12.996577'); -INSERT INTO dvds.payment VALUES (21865, 514, 1, 14386, 1.99, '2007-03-21 08:35:00.996577'); -INSERT INTO dvds.payment VALUES (21866, 514, 1, 15451, 2.99, '2007-03-22 23:24:53.996577'); -INSERT INTO dvds.payment VALUES (21867, 514, 1, 15776, 5.99, '2007-03-23 11:54:27.996577'); -INSERT INTO dvds.payment VALUES (21868, 515, 2, 10716, 0.99, '2007-03-01 17:22:14.996577'); -INSERT INTO dvds.payment VALUES (21869, 515, 1, 11451, 3.99, '2007-03-02 19:14:22.996577'); -INSERT INTO dvds.payment VALUES (21870, 515, 2, 11572, 4.99, '2007-03-17 00:06:21.996577'); -INSERT INTO dvds.payment VALUES (21871, 515, 1, 11691, 3.99, '2007-03-17 05:19:31.996577'); -INSERT INTO dvds.payment VALUES (21872, 515, 2, 11937, 6.99, '2007-03-17 15:17:02.996577'); -INSERT INTO dvds.payment VALUES (21873, 515, 2, 12416, 2.99, '2007-03-18 08:25:14.996577'); -INSERT INTO dvds.payment VALUES (21874, 515, 1, 12486, 8.99, '2007-03-18 11:11:16.996577'); -INSERT INTO dvds.payment VALUES (21875, 515, 1, 12889, 5.99, '2007-03-19 02:09:57.996577'); -INSERT INTO dvds.payment VALUES (21876, 515, 2, 14072, 4.99, '2007-03-20 21:35:36.996577'); -INSERT INTO dvds.payment VALUES (21877, 515, 2, 14378, 3.99, '2007-03-21 08:18:28.996577'); -INSERT INTO dvds.payment VALUES (21878, 515, 2, 14414, 0.99, '2007-03-21 09:36:43.996577'); -INSERT INTO dvds.payment VALUES (21879, 515, 2, 15274, 4.99, '2007-03-22 17:24:18.996577'); -INSERT INTO dvds.payment VALUES (21880, 516, 2, 11926, 0.99, '2007-03-17 14:53:28.996577'); -INSERT INTO dvds.payment VALUES (21881, 516, 2, 11939, 1.99, '2007-03-17 15:24:23.996577'); -INSERT INTO dvds.payment VALUES (21882, 516, 1, 12535, 1.99, '2007-03-18 12:33:48.996577'); -INSERT INTO dvds.payment VALUES (21883, 516, 1, 13276, 8.99, '2007-03-19 16:22:08.996577'); -INSERT INTO dvds.payment VALUES (21884, 516, 1, 14932, 0.99, '2007-03-22 04:09:05.996577'); -INSERT INTO dvds.payment VALUES (21885, 516, 1, 15526, 0.99, '2007-03-23 02:12:56.996577'); -INSERT INTO dvds.payment VALUES (21886, 516, 1, 15701, 0.99, '2007-03-23 08:50:47.996577'); -INSERT INTO dvds.payment VALUES (21887, 517, 2, 10358, 4.99, '2007-03-01 04:18:33.996577'); -INSERT INTO dvds.payment VALUES (21888, 517, 2, 10433, 4.99, '2007-03-01 07:14:22.996577'); -INSERT INTO dvds.payment VALUES (21889, 517, 1, 11684, 3.99, '2007-03-17 04:55:41.996577'); -INSERT INTO dvds.payment VALUES (21890, 517, 2, 12705, 0.99, '2007-03-18 19:12:40.996577'); -INSERT INTO dvds.payment VALUES (21891, 517, 1, 13396, 0.99, '2007-03-19 20:34:35.996577'); -INSERT INTO dvds.payment VALUES (21892, 517, 2, 14190, 4.99, '2007-03-21 02:03:47.996577'); -INSERT INTO dvds.payment VALUES (21893, 517, 1, 15559, 5.99, '2007-03-23 03:23:31.996577'); -INSERT INTO dvds.payment VALUES (21894, 518, 1, 10751, 5.99, '2007-03-01 18:34:36.996577'); -INSERT INTO dvds.payment VALUES (21895, 518, 2, 11433, 3.99, '2007-03-02 18:41:36.996577'); -INSERT INTO dvds.payment VALUES (21896, 518, 2, 12450, 2.99, '2007-03-18 09:32:30.996577'); -INSERT INTO dvds.payment VALUES (21897, 518, 2, 12681, 2.99, '2007-03-18 18:16:32.996577'); -INSERT INTO dvds.payment VALUES (21898, 518, 1, 13065, 4.99, '2007-03-19 08:17:18.996577'); -INSERT INTO dvds.payment VALUES (21899, 518, 1, 13539, 6.99, '2007-03-20 02:08:53.996577'); -INSERT INTO dvds.payment VALUES (21900, 518, 1, 14088, 6.99, '2007-03-20 22:25:50.996577'); -INSERT INTO dvds.payment VALUES (21901, 518, 1, 14149, 4.99, '2007-03-21 00:51:13.996577'); -INSERT INTO dvds.payment VALUES (21902, 518, 2, 14980, 0.99, '2007-03-22 05:45:11.996577'); -INSERT INTO dvds.payment VALUES (21903, 518, 2, 15434, 4.99, '2007-03-22 22:56:42.996577'); -INSERT INTO dvds.payment VALUES (21904, 519, 2, 10697, 4.99, '2007-03-01 16:48:49.996577'); -INSERT INTO dvds.payment VALUES (21905, 519, 2, 12648, 7.99, '2007-03-18 16:58:47.996577'); -INSERT INTO dvds.payment VALUES (21906, 519, 2, 12924, 2.99, '2007-03-19 03:20:13.996577'); -INSERT INTO dvds.payment VALUES (21907, 519, 1, 13647, 7.99, '2007-03-20 06:16:33.996577'); -INSERT INTO dvds.payment VALUES (21908, 519, 1, 14182, 2.99, '2007-03-21 01:45:36.996577'); -INSERT INTO dvds.payment VALUES (21909, 519, 2, 15347, 2.99, '2007-03-22 19:40:45.996577'); -INSERT INTO dvds.payment VALUES (21910, 520, 2, 10530, 4.99, '2007-03-01 10:29:43.996577'); -INSERT INTO dvds.payment VALUES (21911, 520, 1, 11566, 0.99, '2007-03-16 23:57:01.996577'); -INSERT INTO dvds.payment VALUES (21912, 520, 1, 12517, 4.99, '2007-03-18 12:08:46.996577'); -INSERT INTO dvds.payment VALUES (21913, 520, 1, 12628, 5.99, '2007-03-18 16:08:51.996577'); -INSERT INTO dvds.payment VALUES (21914, 520, 1, 12647, 5.99, '2007-03-18 16:58:17.996577'); -INSERT INTO dvds.payment VALUES (21915, 520, 1, 13311, 0.99, '2007-03-19 17:35:35.996577'); -INSERT INTO dvds.payment VALUES (21916, 520, 2, 13438, 2.99, '2007-03-19 22:06:28.996577'); -INSERT INTO dvds.payment VALUES (21917, 520, 2, 13659, 2.99, '2007-03-20 06:34:18.996577'); -INSERT INTO dvds.payment VALUES (21918, 520, 2, 13746, 5.99, '2007-03-20 09:23:54.996577'); -INSERT INTO dvds.payment VALUES (21919, 520, 1, 14372, 4.99, '2007-03-21 08:08:16.996577'); -INSERT INTO dvds.payment VALUES (21920, 520, 1, 14509, 0.99, '2007-03-21 13:08:24.996577'); -INSERT INTO dvds.payment VALUES (21921, 520, 1, 15465, 0.99, '2007-03-22 23:44:59.996577'); -INSERT INTO dvds.payment VALUES (21922, 520, 2, 15492, 2.99, '2007-03-23 00:42:12.996577'); -INSERT INTO dvds.payment VALUES (21923, 520, 1, 15948, 7.99, '2007-03-23 17:27:59.996577'); -INSERT INTO dvds.payment VALUES (21924, 521, 1, 10587, 2.99, '2007-03-01 12:32:04.996577'); -INSERT INTO dvds.payment VALUES (21925, 521, 2, 11625, 2.99, '2007-03-17 02:47:18.996577'); -INSERT INTO dvds.payment VALUES (21926, 521, 1, 11967, 3.99, '2007-03-17 16:13:26.996577'); -INSERT INTO dvds.payment VALUES (21927, 521, 2, 12082, 4.99, '2007-03-17 20:41:41.996577'); -INSERT INTO dvds.payment VALUES (21928, 521, 1, 12530, 4.99, '2007-03-18 12:23:14.996577'); -INSERT INTO dvds.payment VALUES (21929, 521, 1, 13527, 2.99, '2007-03-20 01:29:13.996577'); -INSERT INTO dvds.payment VALUES (21930, 521, 1, 14423, 0.99, '2007-03-21 09:52:25.996577'); -INSERT INTO dvds.payment VALUES (21931, 521, 2, 14551, 3.99, '2007-03-21 14:25:51.996577'); -INSERT INTO dvds.payment VALUES (21932, 521, 2, 14738, 5.99, '2007-03-21 20:57:39.996577'); -INSERT INTO dvds.payment VALUES (21933, 521, 2, 15170, 4.99, '2007-03-22 13:50:41.996577'); -INSERT INTO dvds.payment VALUES (21934, 521, 2, 15329, 2.99, '2007-03-22 19:01:05.996577'); -INSERT INTO dvds.payment VALUES (21935, 522, 1, 10411, 3.99, '2007-03-01 06:24:58.996577'); -INSERT INTO dvds.payment VALUES (21936, 522, 1, 10675, 7.99, '2007-03-01 15:40:23.996577'); -INSERT INTO dvds.payment VALUES (21937, 522, 2, 10821, 5.99, '2007-03-01 21:22:53.996577'); -INSERT INTO dvds.payment VALUES (21938, 522, 2, 11696, 2.99, '2007-03-17 05:29:35.996577'); -INSERT INTO dvds.payment VALUES (21939, 522, 2, 11830, 1.99, '2007-03-17 11:21:41.996577'); -INSERT INTO dvds.payment VALUES (21940, 522, 2, 12494, 6.99, '2007-03-18 11:22:15.996577'); -INSERT INTO dvds.payment VALUES (21941, 522, 2, 13605, 6.99, '2007-03-20 04:34:43.996577'); -INSERT INTO dvds.payment VALUES (21942, 522, 2, 14467, 2.99, '2007-03-21 11:31:59.996577'); -INSERT INTO dvds.payment VALUES (21943, 522, 1, 15921, 6.99, '2007-03-23 16:35:20.996577'); -INSERT INTO dvds.payment VALUES (21944, 523, 2, 10470, 1.99, '2007-03-01 08:20:52.996577'); -INSERT INTO dvds.payment VALUES (21945, 523, 1, 11827, 4.99, '2007-03-17 11:12:53.996577'); -INSERT INTO dvds.payment VALUES (21946, 523, 1, 12288, 2.99, '2007-03-18 03:29:46.996577'); -INSERT INTO dvds.payment VALUES (21947, 523, 1, 13133, 2.99, '2007-03-19 10:39:29.996577'); -INSERT INTO dvds.payment VALUES (21948, 523, 1, 14766, 4.99, '2007-03-21 22:10:46.996577'); -INSERT INTO dvds.payment VALUES (21949, 523, 1, 15040, 2.99, '2007-03-22 08:09:35.996577'); -INSERT INTO dvds.payment VALUES (21950, 524, 2, 13626, 2.99, '2007-03-20 05:23:50.996577'); -INSERT INTO dvds.payment VALUES (21951, 524, 2, 14046, 4.99, '2007-03-20 20:21:47.996577'); -INSERT INTO dvds.payment VALUES (21952, 524, 1, 14178, 2.99, '2007-03-21 01:42:11.996577'); -INSERT INTO dvds.payment VALUES (21953, 524, 1, 14366, 2.99, '2007-03-21 08:00:05.996577'); -INSERT INTO dvds.payment VALUES (21954, 524, 2, 14680, 1.99, '2007-03-21 18:48:18.996577'); -INSERT INTO dvds.payment VALUES (21955, 524, 2, 15206, 6.99, '2007-03-22 15:02:05.996577'); -INSERT INTO dvds.payment VALUES (21956, 525, 1, 10496, 2.99, '2007-03-01 09:21:42.996577'); -INSERT INTO dvds.payment VALUES (21957, 525, 2, 11406, 2.99, '2007-03-02 17:44:36.996577'); -INSERT INTO dvds.payment VALUES (21958, 525, 1, 11660, 1.99, '2007-03-17 03:51:08.996577'); -INSERT INTO dvds.payment VALUES (21959, 525, 1, 15159, 0.99, '2007-03-22 13:00:51.996577'); -INSERT INTO dvds.payment VALUES (21960, 525, 2, 15623, 3.99, '2007-03-23 05:51:55.996577'); -INSERT INTO dvds.payment VALUES (21961, 526, 2, 11046, 4.99, '2007-03-02 04:37:00.996577'); -INSERT INTO dvds.payment VALUES (21962, 526, 1, 11503, 10.99, '2007-03-16 21:39:00.996577'); -INSERT INTO dvds.payment VALUES (21963, 526, 1, 11612, 2.99, '2007-03-17 02:17:17.996577'); -INSERT INTO dvds.payment VALUES (21964, 526, 2, 11702, 4.99, '2007-03-17 05:47:22.996577'); -INSERT INTO dvds.payment VALUES (21965, 526, 1, 12607, 0.99, '2007-03-18 15:32:15.996577'); -INSERT INTO dvds.payment VALUES (21966, 526, 2, 13224, 8.99, '2007-03-19 14:20:39.996577'); -INSERT INTO dvds.payment VALUES (21967, 526, 2, 13580, 0.99, '2007-03-20 03:52:00.996577'); -INSERT INTO dvds.payment VALUES (21968, 526, 1, 13617, 8.99, '2007-03-20 05:03:56.996577'); -INSERT INTO dvds.payment VALUES (21969, 526, 2, 14487, 6.99, '2007-03-21 12:21:59.996577'); -INSERT INTO dvds.payment VALUES (21970, 526, 1, 14590, 7.99, '2007-03-21 15:57:36.996577'); -INSERT INTO dvds.payment VALUES (21971, 526, 1, 15168, 2.99, '2007-03-22 13:42:46.996577'); -INSERT INTO dvds.payment VALUES (21972, 526, 1, 15395, 4.99, '2007-03-22 21:34:51.996577'); -INSERT INTO dvds.payment VALUES (21973, 526, 1, 16043, 9.99, '2007-03-23 20:49:29.996577'); -INSERT INTO dvds.payment VALUES (21974, 527, 2, 10486, 3.99, '2007-03-01 08:52:09.996577'); -INSERT INTO dvds.payment VALUES (21975, 527, 2, 10613, 0.99, '2007-03-01 13:24:40.996577'); -INSERT INTO dvds.payment VALUES (21976, 527, 1, 11013, 5.99, '2007-03-02 03:39:20.996577'); -INSERT INTO dvds.payment VALUES (21977, 527, 1, 11150, 2.99, '2007-03-02 08:20:12.996577'); -INSERT INTO dvds.payment VALUES (21978, 527, 1, 11624, 0.99, '2007-03-17 02:46:08.996577'); -INSERT INTO dvds.payment VALUES (21979, 527, 1, 12136, 7.99, '2007-03-17 22:19:56.996577'); -INSERT INTO dvds.payment VALUES (21980, 527, 1, 12513, 6.99, '2007-03-18 12:00:11.996577'); -INSERT INTO dvds.payment VALUES (21981, 527, 1, 14352, 6.99, '2007-03-21 07:34:55.996577'); -INSERT INTO dvds.payment VALUES (21982, 527, 1, 15144, 2.99, '2007-03-22 12:17:44.996577'); -INSERT INTO dvds.payment VALUES (21983, 527, 1, 15552, 3.99, '2007-03-23 03:01:49.996577'); -INSERT INTO dvds.payment VALUES (21984, 528, 1, 10673, 0.99, '2007-03-01 15:40:17.996577'); -INSERT INTO dvds.payment VALUES (21985, 528, 1, 10880, 2.99, '2007-03-01 23:02:38.996577'); -INSERT INTO dvds.payment VALUES (21986, 528, 1, 12818, 3.99, '2007-03-18 23:33:25.996577'); -INSERT INTO dvds.payment VALUES (21987, 528, 2, 13518, 2.99, '2007-03-20 01:04:43.996577'); -INSERT INTO dvds.payment VALUES (21988, 528, 1, 13600, 7.99, '2007-03-20 04:28:51.996577'); -INSERT INTO dvds.payment VALUES (21989, 528, 2, 14148, 2.99, '2007-03-21 00:46:15.996577'); -INSERT INTO dvds.payment VALUES (21990, 528, 2, 15880, 6.99, '2007-03-23 15:12:20.996577'); -INSERT INTO dvds.payment VALUES (21991, 529, 2, 10361, 10.99, '2007-03-01 04:22:15.996577'); -INSERT INTO dvds.payment VALUES (21992, 529, 1, 11862, 2.99, '2007-03-17 12:23:19.996577'); -INSERT INTO dvds.payment VALUES (21993, 529, 2, 12356, 2.99, '2007-03-18 06:05:31.996577'); -INSERT INTO dvds.payment VALUES (21994, 529, 1, 12622, 3.99, '2007-03-18 16:02:37.996577'); -INSERT INTO dvds.payment VALUES (21995, 529, 1, 13011, 4.99, '2007-03-19 06:22:24.996577'); -INSERT INTO dvds.payment VALUES (21996, 529, 2, 13132, 3.99, '2007-03-19 10:39:23.996577'); -INSERT INTO dvds.payment VALUES (21997, 529, 1, 13797, 2.99, '2007-03-20 11:02:02.996577'); -INSERT INTO dvds.payment VALUES (21998, 529, 2, 13946, 9.99, '2007-03-20 16:12:58.996577'); -INSERT INTO dvds.payment VALUES (21999, 529, 2, 14449, 4.99, '2007-03-21 10:41:44.996577'); -INSERT INTO dvds.payment VALUES (22000, 529, 2, 14764, 0.99, '2007-03-21 22:06:13.996577'); -INSERT INTO dvds.payment VALUES (22001, 529, 1, 14970, 5.99, '2007-03-22 05:17:55.996577'); -INSERT INTO dvds.payment VALUES (22002, 529, 2, 15305, 2.99, '2007-03-22 18:14:31.996577'); -INSERT INTO dvds.payment VALUES (22003, 530, 2, 10504, 4.99, '2007-03-01 09:39:21.996577'); -INSERT INTO dvds.payment VALUES (22004, 530, 1, 11326, 0.99, '2007-03-02 15:02:55.996577'); -INSERT INTO dvds.payment VALUES (22005, 530, 1, 12220, 4.99, '2007-03-18 01:18:28.996577'); -INSERT INTO dvds.payment VALUES (22006, 530, 1, 12387, 2.99, '2007-03-18 07:14:50.996577'); -INSERT INTO dvds.payment VALUES (22007, 530, 1, 12649, 4.99, '2007-03-18 17:00:13.996577'); -INSERT INTO dvds.payment VALUES (22008, 530, 1, 13998, 5.99, '2007-03-20 18:21:04.996577'); -INSERT INTO dvds.payment VALUES (22009, 530, 2, 14707, 5.99, '2007-03-21 19:34:55.996577'); -INSERT INTO dvds.payment VALUES (22010, 530, 2, 15066, 0.99, '2007-03-22 09:17:32.996577'); -INSERT INTO dvds.payment VALUES (22011, 531, 2, 10920, 4.99, '2007-03-02 00:42:36.996577'); -INSERT INTO dvds.payment VALUES (22012, 531, 1, 10941, 5.99, '2007-03-02 01:39:59.996577'); -INSERT INTO dvds.payment VALUES (22013, 531, 2, 11026, 4.99, '2007-03-02 04:14:31.996577'); -INSERT INTO dvds.payment VALUES (22014, 531, 1, 11265, 10.99, '2007-03-02 12:34:08.996577'); -INSERT INTO dvds.payment VALUES (22015, 531, 1, 11666, 2.99, '2007-03-17 04:13:36.996577'); -INSERT INTO dvds.payment VALUES (22016, 531, 1, 12923, 2.99, '2007-03-19 03:18:46.996577'); -INSERT INTO dvds.payment VALUES (22017, 531, 2, 13300, 8.99, '2007-03-19 17:15:22.996577'); -INSERT INTO dvds.payment VALUES (22018, 531, 2, 15360, 0.99, '2007-03-22 20:05:17.996577'); -INSERT INTO dvds.payment VALUES (22019, 532, 2, 10286, 6.99, '2007-03-01 02:04:24.996577'); -INSERT INTO dvds.payment VALUES (22020, 532, 2, 10712, 5.99, '2007-03-01 17:16:22.996577'); -INSERT INTO dvds.payment VALUES (22021, 532, 1, 10945, 5.99, '2007-03-02 01:48:49.996577'); -INSERT INTO dvds.payment VALUES (22022, 532, 2, 11251, 2.99, '2007-03-02 12:09:15.996577'); -INSERT INTO dvds.payment VALUES (22023, 532, 2, 11318, 4.99, '2007-03-02 14:37:37.996577'); -INSERT INTO dvds.payment VALUES (22024, 532, 2, 12061, 3.99, '2007-03-17 19:42:01.996577'); -INSERT INTO dvds.payment VALUES (22025, 532, 2, 12295, 5.99, '2007-03-18 03:44:12.996577'); -INSERT INTO dvds.payment VALUES (22026, 532, 2, 13038, 4.99, '2007-03-19 07:23:42.996577'); -INSERT INTO dvds.payment VALUES (22027, 532, 1, 13192, 8.99, '2007-03-19 12:58:32.996577'); -INSERT INTO dvds.payment VALUES (22028, 532, 1, 13254, 4.99, '2007-03-19 15:22:27.996577'); -INSERT INTO dvds.payment VALUES (22029, 532, 1, 13908, 4.99, '2007-03-20 14:50:06.996577'); -INSERT INTO dvds.payment VALUES (22030, 532, 2, 15180, 0.99, '2007-03-22 14:11:23.996577'); -INSERT INTO dvds.payment VALUES (22031, 532, 2, 15414, 1.99, '2007-03-22 22:12:20.996577'); -INSERT INTO dvds.payment VALUES (22032, 532, 1, 16014, 5.99, '2007-03-23 19:46:57.996577'); -INSERT INTO dvds.payment VALUES (22033, 533, 1, 10380, 2.99, '2007-03-01 05:03:02.996577'); -INSERT INTO dvds.payment VALUES (22034, 533, 1, 10614, 6.99, '2007-03-01 13:25:26.996577'); -INSERT INTO dvds.payment VALUES (22035, 533, 2, 11524, 7.99, '2007-03-16 22:39:21.996577'); -INSERT INTO dvds.payment VALUES (22036, 533, 1, 11758, 8.99, '2007-03-17 08:01:28.996577'); -INSERT INTO dvds.payment VALUES (22037, 533, 1, 11918, 2.99, '2007-03-17 14:37:08.996577'); -INSERT INTO dvds.payment VALUES (22038, 533, 1, 12602, 0.99, '2007-03-18 15:18:16.996577'); -INSERT INTO dvds.payment VALUES (22039, 533, 1, 12655, 6.99, '2007-03-18 17:26:10.996577'); -INSERT INTO dvds.payment VALUES (22040, 533, 1, 14263, 7.99, '2007-03-21 04:36:41.996577'); -INSERT INTO dvds.payment VALUES (22041, 533, 1, 14800, 4.99, '2007-03-21 23:14:44.996577'); -INSERT INTO dvds.payment VALUES (22042, 533, 2, 16006, 0.99, '2007-03-23 19:29:35.996577'); -INSERT INTO dvds.payment VALUES (22043, 534, 2, 10465, 5.99, '2007-03-01 08:13:51.996577'); -INSERT INTO dvds.payment VALUES (22044, 534, 2, 10725, 6.99, '2007-03-01 17:39:30.996577'); -INSERT INTO dvds.payment VALUES (22045, 534, 1, 10796, 0.99, '2007-03-01 20:25:07.996577'); -INSERT INTO dvds.payment VALUES (22046, 534, 2, 11180, 5.99, '2007-03-02 09:22:56.996577'); -INSERT INTO dvds.payment VALUES (22047, 534, 2, 12305, 2.99, '2007-03-18 04:14:55.996577'); -INSERT INTO dvds.payment VALUES (22048, 534, 1, 12691, 5.99, '2007-03-18 18:36:12.996577'); -INSERT INTO dvds.payment VALUES (22049, 534, 2, 12798, 4.99, '2007-03-18 22:52:59.996577'); -INSERT INTO dvds.payment VALUES (22050, 534, 2, 13294, 0.99, '2007-03-19 17:05:01.996577'); -INSERT INTO dvds.payment VALUES (22051, 534, 2, 14816, 1.99, '2007-03-21 23:44:17.996577'); -INSERT INTO dvds.payment VALUES (22052, 535, 2, 10322, 5.99, '2007-03-01 03:12:39.996577'); -INSERT INTO dvds.payment VALUES (22053, 535, 2, 10353, 3.99, '2007-03-01 04:14:59.996577'); -INSERT INTO dvds.payment VALUES (22054, 535, 2, 11736, 8.99, '2007-03-17 07:09:21.996577'); -INSERT INTO dvds.payment VALUES (22055, 535, 1, 11855, 7.99, '2007-03-17 12:11:33.996577'); -INSERT INTO dvds.payment VALUES (22056, 535, 2, 12168, 2.99, '2007-03-17 23:32:18.996577'); -INSERT INTO dvds.payment VALUES (22057, 535, 1, 12233, 0.99, '2007-03-18 01:45:20.996577'); -INSERT INTO dvds.payment VALUES (22058, 535, 2, 12673, 4.99, '2007-03-18 17:50:22.996577'); -INSERT INTO dvds.payment VALUES (22059, 535, 1, 12732, 0.99, '2007-03-18 20:26:16.996577'); -INSERT INTO dvds.payment VALUES (22060, 535, 2, 12750, 1.99, '2007-03-18 21:01:05.996577'); -INSERT INTO dvds.payment VALUES (22061, 535, 1, 13631, 4.99, '2007-03-20 05:36:03.996577'); -INSERT INTO dvds.payment VALUES (22062, 535, 1, 13852, 0.99, '2007-03-20 13:13:49.996577'); -INSERT INTO dvds.payment VALUES (22063, 535, 1, 14522, 4.99, '2007-03-21 13:30:00.996577'); -INSERT INTO dvds.payment VALUES (22064, 535, 2, 15075, 5.99, '2007-03-22 09:33:18.996577'); -INSERT INTO dvds.payment VALUES (22065, 535, 1, 15287, 6.99, '2007-03-22 17:48:03.996577'); -INSERT INTO dvds.payment VALUES (22066, 535, 1, 16017, 0.99, '2007-03-23 19:55:37.996577'); -INSERT INTO dvds.payment VALUES (22067, 536, 1, 11473, 6.99, '2007-03-02 20:20:29.996577'); -INSERT INTO dvds.payment VALUES (22068, 536, 1, 11826, 2.99, '2007-03-17 11:12:12.996577'); -INSERT INTO dvds.payment VALUES (22069, 536, 2, 11977, 4.99, '2007-03-17 16:29:41.996577'); -INSERT INTO dvds.payment VALUES (22070, 536, 2, 12052, 8.99, '2007-03-17 19:25:28.996577'); -INSERT INTO dvds.payment VALUES (22071, 536, 2, 13505, 4.99, '2007-03-20 00:34:23.996577'); -INSERT INTO dvds.payment VALUES (22072, 536, 1, 15130, 7.99, '2007-03-22 11:32:58.996577'); -INSERT INTO dvds.payment VALUES (22073, 536, 1, 15978, 8.99, '2007-03-23 18:36:44.996577'); -INSERT INTO dvds.payment VALUES (22074, 536, 1, 15979, 0.99, '2007-03-23 18:36:52.996577'); -INSERT INTO dvds.payment VALUES (22075, 537, 2, 12984, 4.99, '2007-03-19 05:35:17.996577'); -INSERT INTO dvds.payment VALUES (22076, 537, 2, 13885, 4.99, '2007-03-20 14:00:35.996577'); -INSERT INTO dvds.payment VALUES (22077, 537, 1, 14010, 4.99, '2007-03-20 18:58:12.996577'); -INSERT INTO dvds.payment VALUES (22078, 537, 2, 14506, 0.99, '2007-03-21 13:00:53.996577'); -INSERT INTO dvds.payment VALUES (22079, 537, 1, 14670, 0.99, '2007-03-21 18:22:37.996577'); -INSERT INTO dvds.payment VALUES (22080, 537, 1, 15149, 2.99, '2007-03-22 12:36:32.996577'); -INSERT INTO dvds.payment VALUES (22081, 537, 1, 15832, 8.99, '2007-03-23 13:50:01.996577'); -INSERT INTO dvds.payment VALUES (22082, 538, 2, 10701, 3.99, '2007-03-01 16:56:43.996577'); -INSERT INTO dvds.payment VALUES (22083, 538, 1, 10732, 5.99, '2007-03-01 17:53:44.996577'); -INSERT INTO dvds.payment VALUES (22084, 538, 1, 10962, 4.99, '2007-03-02 02:16:39.996577'); -INSERT INTO dvds.payment VALUES (22085, 538, 2, 12089, 5.99, '2007-03-17 20:48:55.996577'); -INSERT INTO dvds.payment VALUES (22086, 538, 1, 13544, 1.99, '2007-03-20 02:12:52.996577'); -INSERT INTO dvds.payment VALUES (22087, 538, 2, 13770, 4.99, '2007-03-20 10:14:20.996577'); -INSERT INTO dvds.payment VALUES (22088, 538, 2, 14572, 2.99, '2007-03-21 15:12:57.996577'); -INSERT INTO dvds.payment VALUES (22089, 538, 1, 14591, 0.99, '2007-03-21 15:58:35.996577'); -INSERT INTO dvds.payment VALUES (22090, 538, 1, 15343, 6.99, '2007-03-22 19:29:51.996577'); -INSERT INTO dvds.payment VALUES (22091, 539, 2, 10922, 3.99, '2007-03-02 00:43:06.996577'); -INSERT INTO dvds.payment VALUES (22092, 539, 1, 12848, 2.99, '2007-03-19 00:33:37.996577'); -INSERT INTO dvds.payment VALUES (22093, 539, 2, 13615, 2.99, '2007-03-20 04:57:19.996577'); -INSERT INTO dvds.payment VALUES (22094, 539, 2, 13778, 5.99, '2007-03-20 10:32:10.996577'); -INSERT INTO dvds.payment VALUES (22095, 539, 1, 15356, 2.99, '2007-03-22 19:52:45.996577'); -INSERT INTO dvds.payment VALUES (22096, 540, 1, 10924, 8.99, '2007-03-02 00:48:45.996577'); -INSERT INTO dvds.payment VALUES (22097, 540, 1, 11198, 3.99, '2007-03-02 10:13:41.996577'); -INSERT INTO dvds.payment VALUES (22098, 540, 2, 11324, 4.99, '2007-03-02 14:59:43.996577'); -INSERT INTO dvds.payment VALUES (22099, 540, 2, 11432, 6.99, '2007-03-02 18:38:27.996577'); -INSERT INTO dvds.payment VALUES (22100, 540, 2, 12058, 8.99, '2007-03-17 19:36:07.996577'); -INSERT INTO dvds.payment VALUES (22101, 540, 2, 12201, 4.99, '2007-03-18 00:42:32.996577'); -INSERT INTO dvds.payment VALUES (22102, 540, 1, 12300, 6.99, '2007-03-18 04:04:40.996577'); -INSERT INTO dvds.payment VALUES (22103, 540, 2, 14910, 0.99, '2007-03-22 03:19:18.996577'); -INSERT INTO dvds.payment VALUES (22104, 540, 2, 15079, 2.99, '2007-03-22 09:38:22.996577'); -INSERT INTO dvds.payment VALUES (22105, 540, 2, 15953, 3.99, '2007-03-23 17:42:12.996577'); -INSERT INTO dvds.payment VALUES (22106, 541, 1, 10306, 5.99, '2007-03-01 02:47:44.996577'); -INSERT INTO dvds.payment VALUES (22107, 541, 2, 11273, 0.99, '2007-03-02 12:49:21.996577'); -INSERT INTO dvds.payment VALUES (22108, 541, 1, 12306, 4.99, '2007-03-18 04:16:21.996577'); -INSERT INTO dvds.payment VALUES (22109, 541, 2, 12395, 4.99, '2007-03-18 07:34:56.996577'); -INSERT INTO dvds.payment VALUES (22110, 541, 1, 12894, 7.99, '2007-03-19 02:17:54.996577'); -INSERT INTO dvds.payment VALUES (22111, 541, 2, 13239, 4.99, '2007-03-19 14:50:39.996577'); -INSERT INTO dvds.payment VALUES (22112, 541, 2, 13640, 0.99, '2007-03-20 05:51:19.996577'); -INSERT INTO dvds.payment VALUES (22113, 541, 2, 14938, 6.99, '2007-03-22 04:21:05.996577'); -INSERT INTO dvds.payment VALUES (22114, 541, 1, 15071, 4.99, '2007-03-22 09:27:09.996577'); -INSERT INTO dvds.payment VALUES (22115, 541, 2, 15141, 3.99, '2007-03-22 12:10:15.996577'); -INSERT INTO dvds.payment VALUES (22116, 541, 1, 15223, 1.99, '2007-03-22 15:42:05.996577'); -INSERT INTO dvds.payment VALUES (22117, 541, 1, 15421, 0.99, '2007-03-22 22:25:03.996577'); -INSERT INTO dvds.payment VALUES (22118, 541, 2, 15924, 1.99, '2007-03-23 16:37:25.996577'); -INSERT INTO dvds.payment VALUES (22119, 542, 1, 10280, 4.99, '2007-03-01 01:55:41.996577'); -INSERT INTO dvds.payment VALUES (22120, 542, 2, 11583, 0.99, '2007-03-17 00:36:39.996577'); -INSERT INTO dvds.payment VALUES (22121, 542, 2, 11903, 2.99, '2007-03-17 14:06:11.996577'); -INSERT INTO dvds.payment VALUES (22122, 542, 1, 12819, 0.99, '2007-03-18 23:33:31.996577'); -INSERT INTO dvds.payment VALUES (22123, 542, 1, 13447, 0.99, '2007-03-19 22:38:02.996577'); -INSERT INTO dvds.payment VALUES (22124, 542, 2, 14982, 9.99, '2007-03-22 05:49:21.996577'); -INSERT INTO dvds.payment VALUES (22125, 543, 2, 10257, 0.99, '2007-03-01 01:18:09.996577'); -INSERT INTO dvds.payment VALUES (22126, 543, 1, 10520, 4.99, '2007-03-01 10:14:24.996577'); -INSERT INTO dvds.payment VALUES (22127, 543, 2, 11241, 9.99, '2007-03-02 11:57:50.996577'); -INSERT INTO dvds.payment VALUES (22128, 543, 1, 11681, 2.99, '2007-03-17 04:41:56.996577'); -INSERT INTO dvds.payment VALUES (22129, 543, 1, 13187, 0.99, '2007-03-19 12:53:14.996577'); -INSERT INTO dvds.payment VALUES (22130, 543, 2, 15281, 1.99, '2007-03-22 17:38:52.996577'); -INSERT INTO dvds.payment VALUES (22131, 543, 1, 15785, 1.99, '2007-03-23 12:14:53.996577'); -INSERT INTO dvds.payment VALUES (22132, 544, 1, 10735, 0.99, '2007-03-01 17:58:11.996577'); -INSERT INTO dvds.payment VALUES (22133, 544, 1, 11401, 3.99, '2007-03-02 17:33:32.996577'); -INSERT INTO dvds.payment VALUES (22134, 544, 2, 11766, 2.99, '2007-03-17 08:27:06.996577'); -INSERT INTO dvds.payment VALUES (22135, 544, 2, 12640, 3.99, '2007-03-18 16:43:15.996577'); -INSERT INTO dvds.payment VALUES (22136, 544, 2, 14142, 4.99, '2007-03-21 00:36:09.996577'); -INSERT INTO dvds.payment VALUES (22137, 544, 1, 14498, 4.99, '2007-03-21 12:39:10.996577'); -INSERT INTO dvds.payment VALUES (22138, 544, 2, 14651, 8.99, '2007-03-21 17:59:35.996577'); -INSERT INTO dvds.payment VALUES (22139, 544, 1, 14981, 2.99, '2007-03-22 05:47:31.996577'); -INSERT INTO dvds.payment VALUES (22140, 544, 1, 15219, 6.99, '2007-03-22 15:28:57.996577'); -INSERT INTO dvds.payment VALUES (22141, 544, 1, 15605, 4.99, '2007-03-23 05:17:13.996577'); -INSERT INTO dvds.payment VALUES (22142, 545, 2, 10931, 2.99, '2007-03-02 01:13:25.996577'); -INSERT INTO dvds.payment VALUES (22143, 545, 2, 11760, 2.99, '2007-03-17 08:12:48.996577'); -INSERT INTO dvds.payment VALUES (22144, 545, 1, 12098, 4.99, '2007-03-17 21:06:57.996577'); -INSERT INTO dvds.payment VALUES (22145, 545, 1, 12349, 2.99, '2007-03-18 05:52:08.996577'); -INSERT INTO dvds.payment VALUES (22146, 545, 2, 12667, 10.99, '2007-03-18 17:40:11.996577'); -INSERT INTO dvds.payment VALUES (22147, 545, 1, 12800, 2.99, '2007-03-18 22:55:37.996577'); -INSERT INTO dvds.payment VALUES (22148, 545, 1, 13595, 4.99, '2007-03-20 04:22:53.996577'); -INSERT INTO dvds.payment VALUES (22149, 545, 1, 15585, 0.99, '2007-03-23 04:23:48.996577'); -INSERT INTO dvds.payment VALUES (22150, 545, 2, 15998, 4.99, '2007-03-23 19:09:35.996577'); -INSERT INTO dvds.payment VALUES (22151, 546, 2, 10370, 0.99, '2007-03-01 04:46:30.996577'); -INSERT INTO dvds.payment VALUES (22152, 546, 2, 11352, 5.99, '2007-03-02 15:58:05.996577'); -INSERT INTO dvds.payment VALUES (22153, 546, 1, 11797, 4.99, '2007-03-17 09:45:47.996577'); -INSERT INTO dvds.payment VALUES (22154, 546, 2, 12591, 2.99, '2007-03-18 14:45:07.996577'); -INSERT INTO dvds.payment VALUES (22155, 546, 2, 13850, 5.99, '2007-03-20 13:11:29.996577'); -INSERT INTO dvds.payment VALUES (22156, 546, 1, 14797, 4.99, '2007-03-21 23:09:50.996577'); -INSERT INTO dvds.payment VALUES (22157, 546, 1, 14829, 2.99, '2007-03-22 00:04:03.996577'); -INSERT INTO dvds.payment VALUES (22158, 546, 1, 14929, 3.99, '2007-03-22 04:01:04.996577'); -INSERT INTO dvds.payment VALUES (22159, 546, 2, 15565, 4.99, '2007-03-23 03:41:35.996577'); -INSERT INTO dvds.payment VALUES (22160, 547, 1, 10903, 2.99, '2007-03-02 00:10:25.996577'); -INSERT INTO dvds.payment VALUES (22161, 547, 1, 10980, 4.99, '2007-03-02 02:45:58.996577'); -INSERT INTO dvds.payment VALUES (22162, 547, 2, 11170, 5.99, '2007-03-02 08:50:19.996577'); -INSERT INTO dvds.payment VALUES (22163, 547, 2, 11361, 0.99, '2007-03-02 16:15:00.996577'); -INSERT INTO dvds.payment VALUES (22164, 547, 1, 12579, 0.99, '2007-03-18 14:16:15.996577'); -INSERT INTO dvds.payment VALUES (22165, 547, 2, 12943, 2.99, '2007-03-19 04:14:52.996577'); -INSERT INTO dvds.payment VALUES (22166, 547, 2, 13307, 2.99, '2007-03-19 17:27:10.996577'); -INSERT INTO dvds.payment VALUES (22167, 547, 1, 14510, 9.99, '2007-03-21 13:13:07.996577'); -INSERT INTO dvds.payment VALUES (22168, 547, 2, 14884, 4.99, '2007-03-22 02:25:34.996577'); -INSERT INTO dvds.payment VALUES (22169, 548, 2, 10318, 0.99, '2007-03-01 03:05:19.996577'); -INSERT INTO dvds.payment VALUES (22170, 548, 1, 12860, 5.99, '2007-03-19 00:53:07.996577'); -INSERT INTO dvds.payment VALUES (22171, 548, 1, 13691, 3.99, '2007-03-20 07:36:05.996577'); -INSERT INTO dvds.payment VALUES (22172, 548, 2, 13730, 7.99, '2007-03-20 08:45:35.996577'); -INSERT INTO dvds.payment VALUES (22173, 548, 2, 14188, 0.99, '2007-03-21 02:00:30.996577'); -INSERT INTO dvds.payment VALUES (22174, 548, 2, 14723, 6.99, '2007-03-21 20:20:58.996577'); -INSERT INTO dvds.payment VALUES (22175, 549, 2, 10281, 0.99, '2007-03-01 01:56:59.996577'); -INSERT INTO dvds.payment VALUES (22176, 549, 2, 11737, 4.99, '2007-03-17 07:10:34.996577'); -INSERT INTO dvds.payment VALUES (22177, 549, 2, 11878, 2.99, '2007-03-17 12:52:18.996577'); -INSERT INTO dvds.payment VALUES (22178, 549, 2, 12634, 2.99, '2007-03-18 16:26:40.996577'); -INSERT INTO dvds.payment VALUES (22179, 549, 2, 12747, 4.99, '2007-03-18 20:56:48.996577'); -INSERT INTO dvds.payment VALUES (22180, 549, 1, 14434, 0.99, '2007-03-21 10:09:12.996577'); -INSERT INTO dvds.payment VALUES (22181, 550, 1, 11246, 2.99, '2007-03-02 12:02:22.996577'); -INSERT INTO dvds.payment VALUES (22182, 550, 2, 11320, 0.99, '2007-03-02 14:41:54.996577'); -INSERT INTO dvds.payment VALUES (22183, 550, 1, 11969, 4.99, '2007-03-17 16:18:03.996577'); -INSERT INTO dvds.payment VALUES (22184, 550, 1, 12063, 2.99, '2007-03-17 19:53:14.996577'); -INSERT INTO dvds.payment VALUES (22185, 550, 2, 12077, 4.99, '2007-03-17 20:27:40.996577'); -INSERT INTO dvds.payment VALUES (22186, 550, 1, 13114, 10.99, '2007-03-19 09:55:58.996577'); -INSERT INTO dvds.payment VALUES (22187, 550, 2, 14071, 2.99, '2007-03-20 21:30:22.996577'); -INSERT INTO dvds.payment VALUES (22188, 550, 2, 14127, 4.99, '2007-03-21 00:01:58.996577'); -INSERT INTO dvds.payment VALUES (22189, 550, 2, 14375, 6.99, '2007-03-21 08:15:01.996577'); -INSERT INTO dvds.payment VALUES (22190, 550, 1, 14687, 4.99, '2007-03-21 19:00:42.996577'); -INSERT INTO dvds.payment VALUES (22191, 550, 2, 15431, 9.99, '2007-03-22 22:55:13.996577'); -INSERT INTO dvds.payment VALUES (22192, 550, 1, 15883, 0.99, '2007-03-23 15:13:22.996577'); -INSERT INTO dvds.payment VALUES (22193, 550, 2, 15977, 4.99, '2007-03-23 18:35:36.996577'); -INSERT INTO dvds.payment VALUES (22194, 551, 2, 11380, 0.99, '2007-03-02 16:45:58.996577'); -INSERT INTO dvds.payment VALUES (22195, 551, 2, 11883, 2.99, '2007-03-17 13:09:54.996577'); -INSERT INTO dvds.payment VALUES (22196, 551, 2, 12208, 4.99, '2007-03-18 00:53:51.996577'); -INSERT INTO dvds.payment VALUES (22197, 551, 2, 12868, 0.99, '2007-03-19 01:15:45.996577'); -INSERT INTO dvds.payment VALUES (22198, 551, 1, 13439, 3.99, '2007-03-19 22:10:42.996577'); -INSERT INTO dvds.payment VALUES (22199, 551, 1, 14420, 0.99, '2007-03-21 09:44:41.996577'); -INSERT INTO dvds.payment VALUES (22200, 551, 2, 14609, 4.99, '2007-03-21 16:25:52.996577'); -INSERT INTO dvds.payment VALUES (22201, 551, 2, 14633, 2.99, '2007-03-21 17:19:36.996577'); -INSERT INTO dvds.payment VALUES (22202, 551, 1, 14833, 2.99, '2007-03-22 00:13:44.996577'); -INSERT INTO dvds.payment VALUES (22203, 551, 1, 15377, 4.99, '2007-03-22 20:50:59.996577'); -INSERT INTO dvds.payment VALUES (22204, 551, 2, 15390, 6.99, '2007-03-22 21:25:51.996577'); -INSERT INTO dvds.payment VALUES (22205, 552, 1, 11146, 1.99, '2007-03-02 08:13:58.996577'); -INSERT INTO dvds.payment VALUES (22206, 552, 2, 11205, 4.99, '2007-03-02 10:25:20.996577'); -INSERT INTO dvds.payment VALUES (22207, 552, 2, 11300, 7.99, '2007-03-02 14:06:08.996577'); -INSERT INTO dvds.payment VALUES (22208, 552, 2, 12433, 4.99, '2007-03-18 09:06:15.996577'); -INSERT INTO dvds.payment VALUES (22209, 552, 2, 12880, 2.99, '2007-03-19 01:55:43.996577'); -INSERT INTO dvds.payment VALUES (22210, 552, 2, 13574, 2.99, '2007-03-20 03:39:05.996577'); -INSERT INTO dvds.payment VALUES (22211, 552, 1, 13693, 0.99, '2007-03-20 07:40:08.996577'); -INSERT INTO dvds.payment VALUES (22212, 552, 2, 14724, 4.99, '2007-03-21 20:22:13.996577'); -INSERT INTO dvds.payment VALUES (22213, 552, 2, 15700, 2.99, '2007-03-23 08:49:47.996577'); -INSERT INTO dvds.payment VALUES (22214, 553, 2, 11710, 4.99, '2007-03-17 05:58:10.996577'); -INSERT INTO dvds.payment VALUES (22215, 553, 1, 13972, 2.99, '2007-03-20 17:20:43.996577'); -INSERT INTO dvds.payment VALUES (22216, 553, 1, 15042, 4.99, '2007-03-22 08:16:03.996577'); -INSERT INTO dvds.payment VALUES (22217, 553, 1, 15506, 0.99, '2007-03-23 01:16:50.996577'); -INSERT INTO dvds.payment VALUES (22218, 554, 1, 10612, 6.99, '2007-03-01 13:23:57.996577'); -INSERT INTO dvds.payment VALUES (22219, 554, 2, 10829, 7.99, '2007-03-01 21:45:32.996577'); -INSERT INTO dvds.payment VALUES (22220, 554, 2, 11589, 9.99, '2007-03-17 00:56:48.996577'); -INSERT INTO dvds.payment VALUES (22221, 554, 1, 11873, 0.99, '2007-03-17 12:43:05.996577'); -INSERT INTO dvds.payment VALUES (22222, 554, 1, 12010, 8.99, '2007-03-17 17:46:20.996577'); -INSERT INTO dvds.payment VALUES (22223, 554, 1, 12014, 0.99, '2007-03-17 17:58:10.996577'); -INSERT INTO dvds.payment VALUES (22224, 554, 2, 13139, 4.99, '2007-03-19 11:00:36.996577'); -INSERT INTO dvds.payment VALUES (22225, 554, 2, 14015, 2.99, '2007-03-20 19:16:09.996577'); -INSERT INTO dvds.payment VALUES (22226, 554, 1, 14098, 3.99, '2007-03-20 22:58:58.996577'); -INSERT INTO dvds.payment VALUES (22227, 554, 1, 14469, 0.99, '2007-03-21 11:35:50.996577'); -INSERT INTO dvds.payment VALUES (22228, 554, 1, 14626, 2.99, '2007-03-21 17:04:10.996577'); -INSERT INTO dvds.payment VALUES (22229, 554, 2, 15690, 4.99, '2007-03-23 08:21:56.996577'); -INSERT INTO dvds.payment VALUES (22230, 555, 1, 10921, 3.99, '2007-03-02 00:42:59.996577'); -INSERT INTO dvds.payment VALUES (22231, 555, 1, 11168, 4.99, '2007-03-02 08:48:08.996577'); -INSERT INTO dvds.payment VALUES (22232, 555, 1, 11718, 4.99, '2007-03-17 06:13:08.996577'); -INSERT INTO dvds.payment VALUES (22233, 555, 2, 11747, 2.99, '2007-03-17 07:31:57.996577'); -INSERT INTO dvds.payment VALUES (22234, 555, 2, 12091, 4.99, '2007-03-17 20:51:16.996577'); -INSERT INTO dvds.payment VALUES (22235, 555, 2, 12150, 2.99, '2007-03-17 22:42:21.996577'); -INSERT INTO dvds.payment VALUES (22236, 555, 2, 12182, 2.99, '2007-03-17 23:58:45.996577'); -INSERT INTO dvds.payment VALUES (22237, 555, 1, 12388, 2.99, '2007-03-18 07:16:35.996577'); -INSERT INTO dvds.payment VALUES (22238, 555, 1, 12883, 4.99, '2007-03-19 02:02:13.996577'); -INSERT INTO dvds.payment VALUES (22239, 555, 2, 15102, 6.99, '2007-03-22 10:27:24.996577'); -INSERT INTO dvds.payment VALUES (22240, 556, 2, 10518, 6.99, '2007-03-01 10:12:34.996577'); -INSERT INTO dvds.payment VALUES (22241, 556, 1, 11466, 1.99, '2007-03-02 20:15:12.996577'); -INSERT INTO dvds.payment VALUES (22242, 556, 2, 11804, 3.99, '2007-03-17 10:11:11.996577'); -INSERT INTO dvds.payment VALUES (22243, 556, 1, 12045, 4.99, '2007-03-17 19:09:12.996577'); -INSERT INTO dvds.payment VALUES (22244, 556, 1, 14176, 2.99, '2007-03-21 01:37:49.996577'); -INSERT INTO dvds.payment VALUES (22245, 556, 1, 15568, 2.99, '2007-03-23 03:52:35.996577'); -INSERT INTO dvds.payment VALUES (22246, 557, 1, 11181, 0.99, '2007-03-02 09:23:29.996577'); -INSERT INTO dvds.payment VALUES (22247, 557, 1, 12555, 1.99, '2007-03-18 13:17:48.996577'); -INSERT INTO dvds.payment VALUES (22248, 557, 1, 12789, 2.99, '2007-03-18 22:44:45.996577'); -INSERT INTO dvds.payment VALUES (22249, 557, 1, 13540, 2.99, '2007-03-20 02:09:49.996577'); -INSERT INTO dvds.payment VALUES (22250, 557, 2, 13794, 2.99, '2007-03-20 10:53:58.996577'); -INSERT INTO dvds.payment VALUES (22251, 557, 2, 15236, 0.99, '2007-03-22 16:12:53.996577'); -INSERT INTO dvds.payment VALUES (22252, 557, 2, 15570, 5.99, '2007-03-23 03:53:21.996577'); -INSERT INTO dvds.payment VALUES (22253, 557, 2, 15914, 0.99, '2007-03-23 16:17:52.996577'); -INSERT INTO dvds.payment VALUES (22254, 558, 2, 10707, 0.99, '2007-03-01 17:10:00.996577'); -INSERT INTO dvds.payment VALUES (22255, 558, 1, 11268, 0.99, '2007-03-02 12:39:05.996577'); -INSERT INTO dvds.payment VALUES (22256, 558, 2, 11567, 5.99, '2007-03-16 23:57:09.996577'); -INSERT INTO dvds.payment VALUES (22257, 558, 2, 12040, 6.99, '2007-03-17 18:58:22.996577'); -INSERT INTO dvds.payment VALUES (22258, 558, 1, 12194, 1.99, '2007-03-18 00:33:13.996577'); -INSERT INTO dvds.payment VALUES (22259, 558, 2, 13566, 5.99, '2007-03-20 03:13:58.996577'); -INSERT INTO dvds.payment VALUES (22260, 558, 2, 14235, 7.99, '2007-03-21 03:37:08.996577'); -INSERT INTO dvds.payment VALUES (22261, 558, 1, 14286, 5.99, '2007-03-21 05:22:19.996577'); -INSERT INTO dvds.payment VALUES (22262, 559, 1, 10377, 3.99, '2007-03-01 04:56:54.996577'); -INSERT INTO dvds.payment VALUES (22263, 559, 1, 10669, 8.99, '2007-03-01 15:31:54.996577'); -INSERT INTO dvds.payment VALUES (22264, 559, 2, 10876, 0.99, '2007-03-01 23:00:24.996577'); -INSERT INTO dvds.payment VALUES (22265, 559, 2, 11136, 1.99, '2007-03-02 07:51:23.996577'); -INSERT INTO dvds.payment VALUES (22266, 559, 1, 13234, 1.99, '2007-03-19 14:45:41.996577'); -INSERT INTO dvds.payment VALUES (22267, 559, 2, 13248, 6.99, '2007-03-19 15:16:07.996577'); -INSERT INTO dvds.payment VALUES (22268, 559, 2, 13322, 4.99, '2007-03-19 18:11:34.996577'); -INSERT INTO dvds.payment VALUES (22269, 559, 1, 13845, 5.99, '2007-03-20 12:59:47.996577'); -INSERT INTO dvds.payment VALUES (22270, 559, 1, 14342, 4.99, '2007-03-21 07:07:52.996577'); -INSERT INTO dvds.payment VALUES (22271, 559, 2, 14622, 4.99, '2007-03-21 16:54:25.996577'); -INSERT INTO dvds.payment VALUES (22272, 559, 2, 15440, 4.99, '2007-03-22 23:05:47.996577'); -INSERT INTO dvds.payment VALUES (22273, 559, 1, 15877, 4.99, '2007-03-23 15:01:59.996577'); -INSERT INTO dvds.payment VALUES (22274, 560, 2, 10480, 4.99, '2007-03-01 08:42:07.996577'); -INSERT INTO dvds.payment VALUES (22275, 560, 1, 10702, 4.99, '2007-03-01 17:03:25.996577'); -INSERT INTO dvds.payment VALUES (22276, 560, 1, 10733, 7.99, '2007-03-01 17:56:27.996577'); -INSERT INTO dvds.payment VALUES (22277, 560, 1, 11334, 7.99, '2007-03-02 15:21:46.996577'); -INSERT INTO dvds.payment VALUES (22278, 560, 1, 11788, 4.99, '2007-03-17 09:27:44.996577'); -INSERT INTO dvds.payment VALUES (22279, 560, 2, 14008, 5.99, '2007-03-20 18:54:26.996577'); -INSERT INTO dvds.payment VALUES (22280, 560, 1, 14341, 1.99, '2007-03-21 07:06:50.996577'); -INSERT INTO dvds.payment VALUES (22281, 560, 2, 14363, 4.99, '2007-03-21 07:48:29.996577'); -INSERT INTO dvds.payment VALUES (22282, 560, 1, 14436, 2.99, '2007-03-21 10:16:53.996577'); -INSERT INTO dvds.payment VALUES (22283, 560, 2, 14785, 2.99, '2007-03-21 22:53:03.996577'); -INSERT INTO dvds.payment VALUES (22284, 560, 1, 15352, 6.99, '2007-03-22 19:45:20.996577'); -INSERT INTO dvds.payment VALUES (22285, 561, 2, 10317, 2.99, '2007-03-01 03:04:00.996577'); -INSERT INTO dvds.payment VALUES (22286, 561, 1, 10907, 4.99, '2007-03-02 00:20:14.996577'); -INSERT INTO dvds.payment VALUES (22287, 561, 1, 11371, 2.99, '2007-03-02 16:36:02.996577'); -INSERT INTO dvds.payment VALUES (22288, 561, 2, 11402, 2.99, '2007-03-02 17:35:47.996577'); -INSERT INTO dvds.payment VALUES (22289, 561, 2, 12441, 2.99, '2007-03-18 09:16:23.996577'); -INSERT INTO dvds.payment VALUES (22290, 561, 2, 14139, 0.99, '2007-03-21 00:32:59.996577'); -INSERT INTO dvds.payment VALUES (22291, 561, 1, 15573, 0.99, '2007-03-23 03:57:02.996577'); -INSERT INTO dvds.payment VALUES (22292, 561, 1, 15946, 2.99, '2007-03-23 17:22:33.996577'); -INSERT INTO dvds.payment VALUES (22293, 562, 2, 10868, 6.99, '2007-03-01 22:53:41.996577'); -INSERT INTO dvds.payment VALUES (22294, 562, 2, 12008, 4.99, '2007-03-17 17:44:44.996577'); -INSERT INTO dvds.payment VALUES (22295, 562, 1, 12248, 5.99, '2007-03-18 02:21:44.996577'); -INSERT INTO dvds.payment VALUES (22296, 562, 2, 13225, 2.99, '2007-03-19 14:22:59.996577'); -INSERT INTO dvds.payment VALUES (22297, 562, 2, 13347, 10.99, '2007-03-19 18:57:14.996577'); -INSERT INTO dvds.payment VALUES (22298, 562, 2, 13639, 0.99, '2007-03-20 05:50:33.996577'); -INSERT INTO dvds.payment VALUES (22299, 562, 1, 15212, 2.99, '2007-03-22 15:12:52.996577'); -INSERT INTO dvds.payment VALUES (22300, 562, 2, 15475, 2.99, '2007-03-23 00:13:09.996577'); -INSERT INTO dvds.payment VALUES (22301, 562, 1, 15900, 1.99, '2007-03-23 15:44:56.996577'); -INSERT INTO dvds.payment VALUES (22302, 563, 2, 11829, 0.99, '2007-03-17 11:20:30.996577'); -INSERT INTO dvds.payment VALUES (22303, 563, 1, 12039, 1.99, '2007-03-17 18:57:34.996577'); -INSERT INTO dvds.payment VALUES (22304, 563, 1, 12202, 1.99, '2007-03-18 00:42:34.996577'); -INSERT INTO dvds.payment VALUES (22305, 563, 1, 12832, 2.99, '2007-03-19 00:10:10.996577'); -INSERT INTO dvds.payment VALUES (22306, 563, 2, 13863, 9.99, '2007-03-20 13:26:16.996577'); -INSERT INTO dvds.payment VALUES (22307, 563, 2, 14592, 4.99, '2007-03-21 15:58:43.996577'); -INSERT INTO dvds.payment VALUES (22308, 563, 2, 15507, 0.99, '2007-03-23 01:16:52.996577'); -INSERT INTO dvds.payment VALUES (22309, 563, 2, 15638, 3.99, '2007-03-23 06:23:20.996577'); -INSERT INTO dvds.payment VALUES (22310, 563, 1, 15850, 4.99, '2007-03-23 14:14:08.996577'); -INSERT INTO dvds.payment VALUES (22311, 564, 2, 10352, 1.99, '2007-03-01 04:13:02.996577'); -INSERT INTO dvds.payment VALUES (22312, 564, 2, 10401, 4.99, '2007-03-01 05:55:35.996577'); -INSERT INTO dvds.payment VALUES (22313, 564, 1, 10528, 2.99, '2007-03-01 10:24:48.996577'); -INSERT INTO dvds.payment VALUES (22314, 564, 2, 11768, 2.99, '2007-03-17 08:30:55.996577'); -INSERT INTO dvds.payment VALUES (22315, 564, 2, 12197, 6.99, '2007-03-18 00:37:24.996577'); -INSERT INTO dvds.payment VALUES (22316, 564, 2, 12617, 2.99, '2007-03-18 15:51:14.996577'); -INSERT INTO dvds.payment VALUES (22317, 564, 2, 13324, 0.99, '2007-03-19 18:19:26.996577'); -INSERT INTO dvds.payment VALUES (22318, 564, 2, 13558, 0.99, '2007-03-20 02:41:43.996577'); -INSERT INTO dvds.payment VALUES (22319, 564, 1, 13701, 0.99, '2007-03-20 07:55:31.996577'); -INSERT INTO dvds.payment VALUES (22320, 564, 2, 14439, 5.99, '2007-03-21 10:21:07.996577'); -INSERT INTO dvds.payment VALUES (22321, 564, 1, 14593, 0.99, '2007-03-21 16:01:44.996577'); -INSERT INTO dvds.payment VALUES (22322, 564, 2, 15059, 8.99, '2007-03-22 08:50:26.996577'); -INSERT INTO dvds.payment VALUES (22323, 565, 2, 10776, 10.99, '2007-03-01 19:28:24.996577'); -INSERT INTO dvds.payment VALUES (22324, 565, 2, 10913, 3.99, '2007-03-02 00:32:29.996577'); -INSERT INTO dvds.payment VALUES (22325, 565, 2, 11189, 6.99, '2007-03-02 09:45:49.996577'); -INSERT INTO dvds.payment VALUES (22326, 565, 1, 11399, 3.99, '2007-03-02 17:24:54.996577'); -INSERT INTO dvds.payment VALUES (22327, 565, 2, 11506, 4.99, '2007-03-16 21:54:14.996577'); -INSERT INTO dvds.payment VALUES (22328, 565, 1, 11588, 3.99, '2007-03-17 00:54:49.996577'); -INSERT INTO dvds.payment VALUES (22329, 565, 1, 11795, 2.99, '2007-03-17 09:42:04.996577'); -INSERT INTO dvds.payment VALUES (22330, 565, 2, 12743, 5.99, '2007-03-18 20:50:57.996577'); -INSERT INTO dvds.payment VALUES (22331, 565, 2, 13195, 4.99, '2007-03-19 13:07:40.996577'); -INSERT INTO dvds.payment VALUES (22332, 565, 2, 13217, 4.99, '2007-03-19 14:07:05.996577'); -INSERT INTO dvds.payment VALUES (22333, 565, 1, 13362, 0.99, '2007-03-19 19:36:20.996577'); -INSERT INTO dvds.payment VALUES (22334, 565, 1, 13925, 8.99, '2007-03-20 15:34:00.996577'); -INSERT INTO dvds.payment VALUES (22335, 565, 1, 15885, 2.99, '2007-03-23 15:19:09.996577'); -INSERT INTO dvds.payment VALUES (22336, 566, 2, 10259, 2.99, '2007-03-01 01:20:31.996577'); -INSERT INTO dvds.payment VALUES (22337, 566, 2, 10289, 6.99, '2007-03-01 02:08:14.996577'); -INSERT INTO dvds.payment VALUES (22338, 566, 2, 11129, 2.99, '2007-03-02 07:37:10.996577'); -INSERT INTO dvds.payment VALUES (22339, 566, 1, 11717, 0.99, '2007-03-17 06:12:35.996577'); -INSERT INTO dvds.payment VALUES (22340, 566, 1, 11941, 1.99, '2007-03-17 15:25:23.996577'); -INSERT INTO dvds.payment VALUES (22341, 566, 2, 12382, 8.99, '2007-03-18 07:00:59.996577'); -INSERT INTO dvds.payment VALUES (22342, 566, 2, 12995, 4.99, '2007-03-19 05:54:56.996577'); -INSERT INTO dvds.payment VALUES (22343, 566, 2, 13762, 4.99, '2007-03-20 09:57:58.996577'); -INSERT INTO dvds.payment VALUES (22344, 566, 1, 14277, 3.99, '2007-03-21 05:03:07.996577'); -INSERT INTO dvds.payment VALUES (22345, 566, 1, 14297, 2.99, '2007-03-21 05:42:12.996577'); -INSERT INTO dvds.payment VALUES (22346, 567, 2, 10708, 7.99, '2007-03-01 17:11:54.996577'); -INSERT INTO dvds.payment VALUES (22347, 567, 2, 11749, 2.99, '2007-03-17 07:32:29.996577'); -INSERT INTO dvds.payment VALUES (22348, 567, 1, 12119, 2.99, '2007-03-17 21:45:10.996577'); -INSERT INTO dvds.payment VALUES (22349, 567, 2, 13031, 2.99, '2007-03-19 06:58:30.996577'); -INSERT INTO dvds.payment VALUES (22350, 567, 2, 14839, 2.99, '2007-03-22 00:26:41.996577'); -INSERT INTO dvds.payment VALUES (22351, 567, 2, 15074, 5.99, '2007-03-22 09:31:18.996577'); -INSERT INTO dvds.payment VALUES (22352, 567, 2, 15594, 10.99, '2007-03-23 04:47:09.996577'); -INSERT INTO dvds.payment VALUES (22353, 568, 1, 10340, 2.99, '2007-03-01 03:35:29.996577'); -INSERT INTO dvds.payment VALUES (22354, 568, 2, 10689, 0.99, '2007-03-01 16:32:44.996577'); -INSERT INTO dvds.payment VALUES (22355, 568, 2, 10869, 0.99, '2007-03-01 22:55:20.996577'); -INSERT INTO dvds.payment VALUES (22356, 568, 1, 11331, 2.99, '2007-03-02 15:17:27.996577'); -INSERT INTO dvds.payment VALUES (22357, 568, 1, 13883, 4.99, '2007-03-20 13:57:19.996577'); -INSERT INTO dvds.payment VALUES (22358, 568, 2, 15069, 5.99, '2007-03-22 09:24:08.996577'); -INSERT INTO dvds.payment VALUES (22359, 568, 1, 15203, 2.99, '2007-03-22 14:56:26.996577'); -INSERT INTO dvds.payment VALUES (22360, 569, 2, 10884, 0.99, '2007-03-01 23:15:59.996577'); -INSERT INTO dvds.payment VALUES (22361, 569, 1, 11030, 1.99, '2007-03-02 04:19:46.996577'); -INSERT INTO dvds.payment VALUES (22362, 569, 2, 11255, 4.99, '2007-03-02 12:12:56.996577'); -INSERT INTO dvds.payment VALUES (22363, 569, 1, 11354, 6.99, '2007-03-02 16:03:36.996577'); -INSERT INTO dvds.payment VALUES (22364, 569, 1, 11946, 4.99, '2007-03-17 15:34:19.996577'); -INSERT INTO dvds.payment VALUES (22365, 569, 1, 12157, 2.99, '2007-03-17 23:02:11.996577'); -INSERT INTO dvds.payment VALUES (22366, 569, 2, 12308, 0.99, '2007-03-18 04:17:19.996577'); -INSERT INTO dvds.payment VALUES (22367, 569, 1, 12568, 3.99, '2007-03-18 13:44:10.996577'); -INSERT INTO dvds.payment VALUES (22368, 569, 2, 12958, 2.99, '2007-03-19 04:47:47.996577'); -INSERT INTO dvds.payment VALUES (22369, 569, 1, 13287, 7.99, '2007-03-19 16:56:50.996577'); -INSERT INTO dvds.payment VALUES (22370, 569, 2, 13554, 9.99, '2007-03-20 02:37:05.996577'); -INSERT INTO dvds.payment VALUES (22371, 569, 2, 14207, 4.99, '2007-03-21 02:36:45.996577'); -INSERT INTO dvds.payment VALUES (22372, 569, 2, 14400, 0.99, '2007-03-21 09:02:11.996577'); -INSERT INTO dvds.payment VALUES (22373, 569, 1, 14896, 8.99, '2007-03-22 02:49:21.996577'); -INSERT INTO dvds.payment VALUES (22374, 569, 1, 14959, 2.99, '2007-03-22 04:58:54.996577'); -INSERT INTO dvds.payment VALUES (22375, 569, 2, 15617, 0.99, '2007-03-23 05:35:48.996577'); -INSERT INTO dvds.payment VALUES (22376, 569, 2, 16025, 4.99, '2007-03-23 20:17:20.996577'); -INSERT INTO dvds.payment VALUES (22377, 570, 1, 11098, 3.99, '2007-03-02 06:34:44.996577'); -INSERT INTO dvds.payment VALUES (22378, 570, 2, 12042, 4.99, '2007-03-17 19:05:03.996577'); -INSERT INTO dvds.payment VALUES (22379, 570, 2, 14768, 3.99, '2007-03-21 22:13:19.996577'); -INSERT INTO dvds.payment VALUES (22380, 571, 1, 10227, 2.99, '2007-03-01 00:10:48.996577'); -INSERT INTO dvds.payment VALUES (22381, 571, 2, 11080, 2.99, '2007-03-02 05:58:22.996577'); -INSERT INTO dvds.payment VALUES (22382, 571, 2, 11191, 7.99, '2007-03-02 09:52:33.996577'); -INSERT INTO dvds.payment VALUES (22383, 571, 1, 13228, 2.99, '2007-03-19 14:36:42.996577'); -INSERT INTO dvds.payment VALUES (22384, 571, 2, 13266, 2.99, '2007-03-19 15:59:46.996577'); -INSERT INTO dvds.payment VALUES (22385, 571, 1, 14956, 0.99, '2007-03-22 04:54:42.996577'); -INSERT INTO dvds.payment VALUES (22386, 571, 1, 15841, 4.99, '2007-03-23 14:04:25.996577'); -INSERT INTO dvds.payment VALUES (22387, 572, 1, 11114, 0.99, '2007-03-02 06:55:11.996577'); -INSERT INTO dvds.payment VALUES (22388, 572, 1, 11121, 4.99, '2007-03-02 07:16:57.996577'); -INSERT INTO dvds.payment VALUES (22389, 572, 2, 11415, 2.99, '2007-03-02 18:12:04.996577'); -INSERT INTO dvds.payment VALUES (22390, 572, 1, 11426, 4.99, '2007-03-02 18:28:35.996577'); -INSERT INTO dvds.payment VALUES (22391, 572, 1, 11526, 4.99, '2007-03-16 22:46:04.996577'); -INSERT INTO dvds.payment VALUES (22392, 572, 1, 12256, 1.99, '2007-03-18 02:38:05.996577'); -INSERT INTO dvds.payment VALUES (22393, 572, 2, 13377, 1.99, '2007-03-19 20:00:49.996577'); -INSERT INTO dvds.payment VALUES (22394, 572, 2, 13523, 6.99, '2007-03-20 01:15:29.996577'); -INSERT INTO dvds.payment VALUES (22395, 572, 1, 13688, 5.99, '2007-03-20 07:28:04.996577'); -INSERT INTO dvds.payment VALUES (22396, 573, 1, 10296, 0.99, '2007-03-01 02:33:03.996577'); -INSERT INTO dvds.payment VALUES (22397, 573, 1, 10887, 2.99, '2007-03-01 23:21:01.996577'); -INSERT INTO dvds.payment VALUES (22398, 573, 1, 11043, 0.99, '2007-03-02 04:33:10.996577'); -INSERT INTO dvds.payment VALUES (22399, 573, 2, 11912, 5.99, '2007-03-17 14:20:15.996577'); -INSERT INTO dvds.payment VALUES (22400, 573, 1, 12017, 1.99, '2007-03-17 18:02:15.996577'); -INSERT INTO dvds.payment VALUES (22401, 573, 1, 12125, 1.99, '2007-03-17 21:52:51.996577'); -INSERT INTO dvds.payment VALUES (22402, 573, 1, 12269, 6.99, '2007-03-18 02:56:20.996577'); -INSERT INTO dvds.payment VALUES (22403, 573, 1, 12791, 0.99, '2007-03-18 22:45:35.996577'); -INSERT INTO dvds.payment VALUES (22404, 573, 2, 13113, 2.99, '2007-03-19 09:55:46.996577'); -INSERT INTO dvds.payment VALUES (22405, 574, 1, 10347, 4.99, '2007-03-01 03:48:29.996577'); -INSERT INTO dvds.payment VALUES (22406, 574, 2, 11775, 3.99, '2007-03-17 08:54:19.996577'); -INSERT INTO dvds.payment VALUES (22407, 574, 1, 12462, 2.99, '2007-03-18 09:57:21.996577'); -INSERT INTO dvds.payment VALUES (22408, 574, 1, 13589, 4.99, '2007-03-20 04:15:51.996577'); -INSERT INTO dvds.payment VALUES (22409, 574, 1, 14076, 4.99, '2007-03-20 21:48:36.996577'); -INSERT INTO dvds.payment VALUES (22410, 574, 2, 14941, 2.99, '2007-03-22 04:26:49.996577'); -INSERT INTO dvds.payment VALUES (22411, 574, 2, 15214, 2.99, '2007-03-22 15:21:55.996577'); -INSERT INTO dvds.payment VALUES (22412, 575, 1, 10331, 4.99, '2007-03-01 03:25:40.996577'); -INSERT INTO dvds.payment VALUES (22413, 575, 2, 10629, 7.99, '2007-03-01 14:01:58.996577'); -INSERT INTO dvds.payment VALUES (22414, 575, 1, 11097, 3.99, '2007-03-02 06:34:12.996577'); -INSERT INTO dvds.payment VALUES (22415, 575, 1, 11458, 4.99, '2007-03-02 19:52:28.996577'); -INSERT INTO dvds.payment VALUES (22416, 575, 1, 12204, 7.99, '2007-03-18 00:49:01.996577'); -INSERT INTO dvds.payment VALUES (22417, 575, 2, 12289, 8.99, '2007-03-18 03:33:54.996577'); -INSERT INTO dvds.payment VALUES (22418, 575, 2, 12770, 5.99, '2007-03-18 21:57:26.996577'); -INSERT INTO dvds.payment VALUES (22419, 575, 2, 13408, 4.99, '2007-03-19 21:03:17.996577'); -INSERT INTO dvds.payment VALUES (22420, 575, 2, 13465, 2.99, '2007-03-19 23:22:40.996577'); -INSERT INTO dvds.payment VALUES (22421, 575, 2, 14952, 2.99, '2007-03-22 04:48:33.996577'); -INSERT INTO dvds.payment VALUES (22422, 575, 2, 15749, 4.99, '2007-03-23 11:02:07.996577'); -INSERT INTO dvds.payment VALUES (22423, 575, 2, 15857, 0.99, '2007-03-23 14:28:17.996577'); -INSERT INTO dvds.payment VALUES (22424, 576, 2, 10724, 3.99, '2007-03-01 17:39:25.996577'); -INSERT INTO dvds.payment VALUES (22425, 576, 2, 12112, 5.99, '2007-03-17 21:28:57.996577'); -INSERT INTO dvds.payment VALUES (22426, 576, 1, 12245, 4.99, '2007-03-18 02:15:06.996577'); -INSERT INTO dvds.payment VALUES (22427, 576, 1, 13061, 4.99, '2007-03-19 08:12:05.996577'); -INSERT INTO dvds.payment VALUES (22428, 576, 1, 13326, 4.99, '2007-03-19 18:21:18.996577'); -INSERT INTO dvds.payment VALUES (22429, 576, 1, 14501, 4.99, '2007-03-21 12:43:04.996577'); -INSERT INTO dvds.payment VALUES (22430, 576, 1, 14541, 0.99, '2007-03-21 14:02:58.996577'); -INSERT INTO dvds.payment VALUES (22431, 576, 1, 15634, 0.99, '2007-03-23 06:02:44.996577'); -INSERT INTO dvds.payment VALUES (22432, 577, 2, 10323, 4.99, '2007-03-01 03:13:24.996577'); -INSERT INTO dvds.payment VALUES (22433, 577, 1, 10487, 0.99, '2007-03-01 08:55:00.996577'); -INSERT INTO dvds.payment VALUES (22434, 577, 1, 10782, 4.99, '2007-03-01 19:51:51.996577'); -INSERT INTO dvds.payment VALUES (22435, 577, 1, 11054, 7.99, '2007-03-02 05:01:33.996577'); -INSERT INTO dvds.payment VALUES (22436, 577, 2, 11464, 0.99, '2007-03-02 20:10:33.996577'); -INSERT INTO dvds.payment VALUES (22437, 577, 1, 12664, 4.99, '2007-03-18 17:39:20.996577'); -INSERT INTO dvds.payment VALUES (22438, 577, 2, 12671, 0.99, '2007-03-18 17:48:25.996577'); -INSERT INTO dvds.payment VALUES (22439, 577, 2, 13200, 3.99, '2007-03-19 13:24:24.996577'); -INSERT INTO dvds.payment VALUES (22440, 577, 2, 13500, 3.99, '2007-03-20 00:23:05.996577'); -INSERT INTO dvds.payment VALUES (22441, 577, 2, 15480, 2.99, '2007-03-23 00:25:46.996577'); -INSERT INTO dvds.payment VALUES (22442, 577, 2, 15873, 2.99, '2007-03-23 14:56:25.996577'); -INSERT INTO dvds.payment VALUES (22443, 577, 2, 16003, 4.99, '2007-03-23 19:15:54.996577'); -INSERT INTO dvds.payment VALUES (22444, 578, 1, 10779, 7.99, '2007-03-01 19:40:20.996577'); -INSERT INTO dvds.payment VALUES (22445, 578, 1, 11199, 7.99, '2007-03-02 10:16:06.996577'); -INSERT INTO dvds.payment VALUES (22446, 578, 2, 13071, 5.99, '2007-03-19 08:29:33.996577'); -INSERT INTO dvds.payment VALUES (22447, 578, 2, 13498, 5.99, '2007-03-20 00:19:49.996577'); -INSERT INTO dvds.payment VALUES (22448, 578, 2, 13552, 2.99, '2007-03-20 02:32:17.996577'); -INSERT INTO dvds.payment VALUES (22449, 578, 1, 15652, 0.99, '2007-03-23 07:02:36.996577'); -INSERT INTO dvds.payment VALUES (22450, 579, 1, 11494, 3.99, '2007-03-02 21:19:49.996577'); -INSERT INTO dvds.payment VALUES (22451, 579, 2, 12051, 6.99, '2007-03-17 19:24:41.996577'); -INSERT INTO dvds.payment VALUES (22452, 579, 2, 12315, 5.99, '2007-03-18 04:43:32.996577'); -INSERT INTO dvds.payment VALUES (22453, 579, 2, 14047, 2.99, '2007-03-20 20:29:09.996577'); -INSERT INTO dvds.payment VALUES (22454, 579, 1, 14185, 0.99, '2007-03-21 01:57:03.996577'); -INSERT INTO dvds.payment VALUES (22455, 579, 1, 14543, 1.99, '2007-03-21 14:07:27.996577'); -INSERT INTO dvds.payment VALUES (22456, 579, 2, 14560, 2.99, '2007-03-21 14:42:13.996577'); -INSERT INTO dvds.payment VALUES (22457, 579, 2, 15601, 0.99, '2007-03-23 05:01:52.996577'); -INSERT INTO dvds.payment VALUES (22458, 579, 1, 15838, 4.99, '2007-03-23 13:59:14.996577'); -INSERT INTO dvds.payment VALUES (22459, 580, 1, 10723, 3.99, '2007-03-01 17:39:15.996577'); -INSERT INTO dvds.payment VALUES (22460, 580, 2, 10965, 3.99, '2007-03-02 02:28:45.996577'); -INSERT INTO dvds.payment VALUES (22461, 580, 1, 11164, 8.99, '2007-03-02 08:39:22.996577'); -INSERT INTO dvds.payment VALUES (22462, 580, 2, 12670, 2.99, '2007-03-18 17:46:24.996577'); -INSERT INTO dvds.payment VALUES (22463, 580, 2, 13313, 2.99, '2007-03-19 17:40:07.996577'); -INSERT INTO dvds.payment VALUES (22464, 580, 2, 13742, 2.99, '2007-03-20 09:17:41.996577'); -INSERT INTO dvds.payment VALUES (22465, 580, 2, 14818, 2.99, '2007-03-21 23:45:44.996577'); -INSERT INTO dvds.payment VALUES (22466, 580, 1, 15157, 6.99, '2007-03-22 12:58:35.996577'); -INSERT INTO dvds.payment VALUES (22467, 580, 1, 15630, 6.99, '2007-03-23 05:57:39.996577'); -INSERT INTO dvds.payment VALUES (22468, 580, 1, 15947, 4.99, '2007-03-23 17:22:58.996577'); -INSERT INTO dvds.payment VALUES (22469, 581, 2, 11443, 2.99, '2007-03-02 18:57:56.996577'); -INSERT INTO dvds.payment VALUES (22470, 581, 2, 11707, 2.99, '2007-03-17 05:53:25.996577'); -INSERT INTO dvds.payment VALUES (22471, 581, 2, 13621, 0.99, '2007-03-20 05:12:10.996577'); -INSERT INTO dvds.payment VALUES (22472, 581, 2, 13712, 2.99, '2007-03-20 08:06:30.996577'); -INSERT INTO dvds.payment VALUES (22473, 581, 2, 14070, 8.99, '2007-03-20 21:25:00.996577'); -INSERT INTO dvds.payment VALUES (22474, 581, 1, 14976, 2.99, '2007-03-22 05:38:52.996577'); -INSERT INTO dvds.payment VALUES (22475, 581, 1, 15403, 0.99, '2007-03-22 21:46:36.996577'); -INSERT INTO dvds.payment VALUES (22476, 581, 2, 15792, 4.99, '2007-03-23 12:34:03.996577'); -INSERT INTO dvds.payment VALUES (22477, 582, 2, 11290, 7.99, '2007-03-02 13:26:10.996577'); -INSERT INTO dvds.payment VALUES (22478, 582, 1, 11667, 5.99, '2007-03-17 04:15:21.996577'); -INSERT INTO dvds.payment VALUES (22479, 582, 1, 11708, 2.99, '2007-03-17 05:55:13.996577'); -INSERT INTO dvds.payment VALUES (22480, 582, 2, 13815, 5.99, '2007-03-20 11:37:19.996577'); -INSERT INTO dvds.payment VALUES (22481, 582, 1, 14376, 4.99, '2007-03-21 08:17:22.996577'); -INSERT INTO dvds.payment VALUES (22482, 582, 1, 14568, 0.99, '2007-03-21 14:59:14.996577'); -INSERT INTO dvds.payment VALUES (22483, 582, 1, 15090, 5.99, '2007-03-22 10:02:59.996577'); -INSERT INTO dvds.payment VALUES (22484, 582, 1, 15503, 2.99, '2007-03-23 01:13:15.996577'); -INSERT INTO dvds.payment VALUES (22485, 582, 1, 15539, 0.99, '2007-03-23 02:37:29.996577'); -INSERT INTO dvds.payment VALUES (22486, 582, 2, 15911, 4.99, '2007-03-23 16:13:19.996577'); -INSERT INTO dvds.payment VALUES (22487, 583, 2, 10301, 4.99, '2007-03-01 02:38:03.996577'); -INSERT INTO dvds.payment VALUES (22488, 583, 2, 10586, 2.99, '2007-03-01 12:29:25.996577'); -INSERT INTO dvds.payment VALUES (22489, 583, 2, 10800, 4.99, '2007-03-01 20:36:10.996577'); -INSERT INTO dvds.payment VALUES (22490, 583, 2, 11002, 4.99, '2007-03-02 03:31:22.996577'); -INSERT INTO dvds.payment VALUES (22491, 583, 1, 14259, 0.99, '2007-03-21 04:28:48.996577'); -INSERT INTO dvds.payment VALUES (22492, 584, 1, 10914, 4.99, '2007-03-02 00:33:09.996577'); -INSERT INTO dvds.payment VALUES (22493, 584, 2, 10966, 0.99, '2007-03-02 02:29:13.996577'); -INSERT INTO dvds.payment VALUES (22494, 584, 1, 11213, 4.99, '2007-03-02 10:47:01.996577'); -INSERT INTO dvds.payment VALUES (22495, 584, 2, 11500, 6.99, '2007-03-16 21:29:48.996577'); -INSERT INTO dvds.payment VALUES (22496, 584, 2, 12507, 8.99, '2007-03-18 11:47:39.996577'); -INSERT INTO dvds.payment VALUES (22497, 584, 2, 12541, 2.99, '2007-03-18 12:46:56.996577'); -INSERT INTO dvds.payment VALUES (22498, 584, 2, 12693, 5.99, '2007-03-18 18:38:45.996577'); -INSERT INTO dvds.payment VALUES (22499, 584, 1, 12844, 2.99, '2007-03-19 00:27:34.996577'); -INSERT INTO dvds.payment VALUES (22500, 584, 2, 14102, 5.99, '2007-03-20 23:03:47.996577'); -INSERT INTO dvds.payment VALUES (22501, 584, 2, 14230, 5.99, '2007-03-21 03:25:55.996577'); -INSERT INTO dvds.payment VALUES (22502, 584, 2, 14447, 4.99, '2007-03-21 10:40:31.996577'); -INSERT INTO dvds.payment VALUES (22503, 584, 1, 14930, 1.99, '2007-03-22 04:06:58.996577'); -INSERT INTO dvds.payment VALUES (22504, 584, 1, 15615, 0.99, '2007-03-23 05:34:26.996577'); -INSERT INTO dvds.payment VALUES (22505, 585, 2, 10573, 0.99, '2007-03-01 11:55:50.996577'); -INSERT INTO dvds.payment VALUES (22506, 585, 1, 11285, 9.99, '2007-03-02 13:12:28.996577'); -INSERT INTO dvds.payment VALUES (22507, 585, 2, 13593, 3.99, '2007-03-20 04:19:18.996577'); -INSERT INTO dvds.payment VALUES (22508, 585, 2, 13939, 0.99, '2007-03-20 15:56:27.996577'); -INSERT INTO dvds.payment VALUES (22509, 585, 1, 15804, 4.99, '2007-03-23 12:57:42.996577'); -INSERT INTO dvds.payment VALUES (22510, 585, 1, 15896, 6.99, '2007-03-23 15:38:22.996577'); -INSERT INTO dvds.payment VALUES (22511, 586, 1, 11034, 2.99, '2007-03-02 04:23:19.996577'); -INSERT INTO dvds.payment VALUES (22512, 586, 1, 11763, 0.99, '2007-03-17 08:20:05.996577'); -INSERT INTO dvds.payment VALUES (22513, 586, 1, 12013, 4.99, '2007-03-17 17:51:28.996577'); -INSERT INTO dvds.payment VALUES (22514, 586, 1, 12898, 0.99, '2007-03-19 02:23:00.996577'); -INSERT INTO dvds.payment VALUES (22515, 586, 2, 14043, 2.99, '2007-03-20 20:15:09.996577'); -INSERT INTO dvds.payment VALUES (22516, 586, 1, 14392, 1.99, '2007-03-21 08:47:51.996577'); -INSERT INTO dvds.payment VALUES (22517, 586, 2, 14533, 2.99, '2007-03-21 13:43:45.996577'); -INSERT INTO dvds.payment VALUES (22518, 586, 1, 15666, 3.99, '2007-03-23 07:29:36.996577'); -INSERT INTO dvds.payment VALUES (22519, 586, 2, 15684, 0.99, '2007-03-23 08:08:30.996577'); -INSERT INTO dvds.payment VALUES (22520, 587, 2, 10224, 4.99, '2007-03-01 00:00:22.996577'); -INSERT INTO dvds.payment VALUES (22521, 587, 1, 10825, 2.99, '2007-03-01 21:33:59.996577'); -INSERT INTO dvds.payment VALUES (22522, 587, 1, 11078, 2.99, '2007-03-02 05:55:24.996577'); -INSERT INTO dvds.payment VALUES (22523, 587, 2, 11403, 4.99, '2007-03-02 17:38:47.996577'); -INSERT INTO dvds.payment VALUES (22524, 587, 2, 12164, 4.99, '2007-03-17 23:15:04.996577'); -INSERT INTO dvds.payment VALUES (22525, 587, 2, 12330, 6.99, '2007-03-18 05:14:59.996577'); -INSERT INTO dvds.payment VALUES (22526, 587, 2, 14710, 4.99, '2007-03-21 19:43:49.996577'); -INSERT INTO dvds.payment VALUES (22527, 587, 2, 15348, 2.99, '2007-03-22 19:42:12.996577'); -INSERT INTO dvds.payment VALUES (22528, 587, 2, 15349, 0.99, '2007-03-22 19:42:17.996577'); -INSERT INTO dvds.payment VALUES (22529, 588, 2, 10373, 4.99, '2007-03-01 04:52:52.996577'); -INSERT INTO dvds.payment VALUES (22530, 588, 1, 12185, 2.99, '2007-03-18 00:08:40.996577'); -INSERT INTO dvds.payment VALUES (22531, 588, 2, 12815, 4.99, '2007-03-18 23:28:08.996577'); -INSERT INTO dvds.payment VALUES (22532, 588, 1, 13064, 4.99, '2007-03-19 08:15:19.996577'); -INSERT INTO dvds.payment VALUES (22533, 588, 1, 13923, 1.99, '2007-03-20 15:33:28.996577'); -INSERT INTO dvds.payment VALUES (22534, 588, 1, 15109, 1.99, '2007-03-22 10:41:24.996577'); -INSERT INTO dvds.payment VALUES (22535, 588, 1, 15158, 2.99, '2007-03-22 12:59:05.996577'); -INSERT INTO dvds.payment VALUES (22536, 588, 1, 15209, 4.99, '2007-03-22 15:05:58.996577'); -INSERT INTO dvds.payment VALUES (22537, 589, 2, 10544, 4.99, '2007-03-01 11:04:47.996577'); -INSERT INTO dvds.payment VALUES (22538, 589, 1, 11980, 4.99, '2007-03-17 16:38:44.996577'); -INSERT INTO dvds.payment VALUES (22539, 589, 1, 12738, 7.99, '2007-03-18 20:40:13.996577'); -INSERT INTO dvds.payment VALUES (22540, 589, 2, 12933, 8.99, '2007-03-19 03:46:46.996577'); -INSERT INTO dvds.payment VALUES (22541, 589, 1, 14038, 6.99, '2007-03-20 20:07:49.996577'); -INSERT INTO dvds.payment VALUES (22542, 589, 1, 14254, 6.99, '2007-03-21 04:19:54.996577'); -INSERT INTO dvds.payment VALUES (22543, 589, 1, 14544, 0.99, '2007-03-21 14:09:27.996577'); -INSERT INTO dvds.payment VALUES (22544, 589, 2, 14706, 0.99, '2007-03-21 19:33:08.996577'); -INSERT INTO dvds.payment VALUES (22545, 589, 2, 15917, 5.99, '2007-03-23 16:25:54.996577'); -INSERT INTO dvds.payment VALUES (22546, 589, 2, 15992, 0.99, '2007-03-23 18:56:58.996577'); -INSERT INTO dvds.payment VALUES (22547, 590, 1, 10657, 4.99, '2007-03-01 15:07:10.996577'); -INSERT INTO dvds.payment VALUES (22548, 590, 2, 11578, 5.99, '2007-03-17 00:22:39.996577'); -INSERT INTO dvds.payment VALUES (22549, 590, 2, 11713, 3.99, '2007-03-17 06:02:31.996577'); -INSERT INTO dvds.payment VALUES (22550, 590, 1, 14830, 2.99, '2007-03-22 00:05:45.996577'); -INSERT INTO dvds.payment VALUES (22551, 591, 1, 10415, 4.99, '2007-03-01 06:34:25.996577'); -INSERT INTO dvds.payment VALUES (22552, 591, 2, 12203, 5.99, '2007-03-18 00:47:18.996577'); -INSERT INTO dvds.payment VALUES (22553, 591, 2, 12227, 4.99, '2007-03-18 01:32:54.996577'); -INSERT INTO dvds.payment VALUES (22554, 591, 1, 12547, 4.99, '2007-03-18 12:58:05.996577'); -INSERT INTO dvds.payment VALUES (22555, 591, 1, 12571, 5.99, '2007-03-18 13:59:44.996577'); -INSERT INTO dvds.payment VALUES (22556, 591, 1, 12934, 5.99, '2007-03-19 03:47:08.996577'); -INSERT INTO dvds.payment VALUES (22557, 591, 2, 13104, 2.99, '2007-03-19 09:34:32.996577'); -INSERT INTO dvds.payment VALUES (22558, 591, 2, 13343, 3.99, '2007-03-19 18:50:34.996577'); -INSERT INTO dvds.payment VALUES (22559, 591, 1, 13867, 9.99, '2007-03-20 13:34:08.996577'); -INSERT INTO dvds.payment VALUES (22560, 592, 2, 10383, 0.99, '2007-03-01 05:05:42.996577'); -INSERT INTO dvds.payment VALUES (22561, 592, 2, 10634, 2.99, '2007-03-01 14:06:14.996577'); -INSERT INTO dvds.payment VALUES (22562, 592, 1, 11410, 8.99, '2007-03-02 17:57:27.996577'); -INSERT INTO dvds.payment VALUES (22563, 592, 2, 12043, 0.99, '2007-03-17 19:06:47.996577'); -INSERT INTO dvds.payment VALUES (22564, 592, 2, 12619, 0.99, '2007-03-18 15:52:41.996577'); -INSERT INTO dvds.payment VALUES (22565, 592, 1, 12976, 1.99, '2007-03-19 05:21:24.996577'); -INSERT INTO dvds.payment VALUES (22566, 592, 1, 13157, 2.99, '2007-03-19 11:40:54.996577'); -INSERT INTO dvds.payment VALUES (22567, 592, 2, 13662, 3.99, '2007-03-20 06:40:24.996577'); -INSERT INTO dvds.payment VALUES (22568, 593, 1, 10368, 3.99, '2007-03-01 04:42:04.996577'); -INSERT INTO dvds.payment VALUES (22569, 593, 2, 10533, 3.99, '2007-03-01 10:42:42.996577'); -INSERT INTO dvds.payment VALUES (22570, 593, 1, 10840, 5.99, '2007-03-01 22:07:00.996577'); -INSERT INTO dvds.payment VALUES (22571, 593, 2, 10904, 4.99, '2007-03-02 00:11:28.996577'); -INSERT INTO dvds.payment VALUES (22572, 593, 2, 12744, 2.99, '2007-03-18 20:51:02.996577'); -INSERT INTO dvds.payment VALUES (22573, 593, 1, 13524, 6.99, '2007-03-20 01:17:09.996577'); -INSERT INTO dvds.payment VALUES (22574, 593, 1, 14408, 5.99, '2007-03-21 09:15:50.996577'); -INSERT INTO dvds.payment VALUES (22575, 593, 1, 14653, 0.99, '2007-03-21 18:04:25.996577'); -INSERT INTO dvds.payment VALUES (22576, 594, 2, 10704, 8.99, '2007-03-01 17:06:28.996577'); -INSERT INTO dvds.payment VALUES (22577, 594, 2, 14824, 4.99, '2007-03-21 23:56:17.996577'); -INSERT INTO dvds.payment VALUES (22578, 594, 1, 14999, 4.99, '2007-03-22 06:23:13.996577'); -INSERT INTO dvds.payment VALUES (22579, 595, 1, 10729, 2.99, '2007-03-01 17:49:37.996577'); -INSERT INTO dvds.payment VALUES (22580, 595, 1, 10932, 2.99, '2007-03-02 01:14:48.996577'); -INSERT INTO dvds.payment VALUES (22581, 595, 2, 11748, 0.99, '2007-03-17 07:32:28.996577'); -INSERT INTO dvds.payment VALUES (22582, 595, 1, 12235, 0.99, '2007-03-18 01:46:16.996577'); -INSERT INTO dvds.payment VALUES (22583, 595, 1, 14334, 0.99, '2007-03-21 07:00:58.996577'); -INSERT INTO dvds.payment VALUES (22584, 595, 2, 15576, 2.99, '2007-03-23 04:00:29.996577'); -INSERT INTO dvds.payment VALUES (22585, 595, 2, 15994, 0.99, '2007-03-23 18:57:36.996577'); -INSERT INTO dvds.payment VALUES (22586, 595, 2, 16016, 2.99, '2007-03-23 19:55:01.996577'); -INSERT INTO dvds.payment VALUES (22587, 596, 2, 10692, 4.99, '2007-03-01 16:41:01.996577'); -INSERT INTO dvds.payment VALUES (22588, 596, 1, 10756, 2.99, '2007-03-01 18:45:29.996577'); -INSERT INTO dvds.payment VALUES (22589, 596, 2, 10804, 0.99, '2007-03-01 20:50:37.996577'); -INSERT INTO dvds.payment VALUES (22590, 596, 2, 11009, 4.99, '2007-03-02 03:34:49.996577'); -INSERT INTO dvds.payment VALUES (22591, 596, 2, 11852, 3.99, '2007-03-17 12:06:53.996577'); -INSERT INTO dvds.payment VALUES (22592, 596, 1, 11934, 0.99, '2007-03-17 15:08:26.996577'); -INSERT INTO dvds.payment VALUES (22593, 596, 2, 12560, 4.99, '2007-03-18 13:22:45.996577'); -INSERT INTO dvds.payment VALUES (22594, 596, 1, 12878, 4.99, '2007-03-19 01:45:34.996577'); -INSERT INTO dvds.payment VALUES (22595, 596, 1, 13648, 4.99, '2007-03-20 06:16:36.996577'); -INSERT INTO dvds.payment VALUES (22596, 596, 1, 14050, 3.99, '2007-03-20 20:37:30.996577'); -INSERT INTO dvds.payment VALUES (22597, 596, 1, 14417, 0.99, '2007-03-21 09:42:01.996577'); -INSERT INTO dvds.payment VALUES (22598, 596, 1, 15405, 0.99, '2007-03-22 21:49:07.996577'); -INSERT INTO dvds.payment VALUES (22599, 596, 1, 15899, 6.99, '2007-03-23 15:44:54.996577'); -INSERT INTO dvds.payment VALUES (22600, 597, 2, 10986, 5.99, '2007-03-02 03:03:50.996577'); -INSERT INTO dvds.payment VALUES (22601, 597, 2, 11147, 4.99, '2007-03-02 08:14:20.996577'); -INSERT INTO dvds.payment VALUES (22602, 597, 2, 11223, 2.99, '2007-03-02 11:02:53.996577'); -INSERT INTO dvds.payment VALUES (22603, 597, 1, 11240, 2.99, '2007-03-02 11:56:56.996577'); -INSERT INTO dvds.payment VALUES (22604, 597, 1, 11880, 5.99, '2007-03-17 12:56:54.996577'); -INSERT INTO dvds.payment VALUES (22605, 597, 1, 12081, 4.99, '2007-03-17 20:39:12.996577'); -INSERT INTO dvds.payment VALUES (22606, 597, 1, 12992, 0.99, '2007-03-19 05:51:32.996577'); -INSERT INTO dvds.payment VALUES (22607, 597, 2, 13019, 2.99, '2007-03-19 06:36:09.996577'); -INSERT INTO dvds.payment VALUES (22608, 597, 1, 13152, 6.99, '2007-03-19 11:37:58.996577'); -INSERT INTO dvds.payment VALUES (22609, 597, 2, 15275, 2.99, '2007-03-22 17:26:05.996577'); -INSERT INTO dvds.payment VALUES (22610, 597, 1, 15469, 4.99, '2007-03-22 23:58:25.996577'); -INSERT INTO dvds.payment VALUES (22611, 598, 2, 11350, 0.99, '2007-03-02 15:51:25.996577'); -INSERT INTO dvds.payment VALUES (22612, 598, 2, 12601, 2.99, '2007-03-18 15:16:18.996577'); -INSERT INTO dvds.payment VALUES (22613, 598, 2, 14345, 0.99, '2007-03-21 07:09:41.996577'); -INSERT INTO dvds.payment VALUES (22614, 598, 2, 15307, 2.99, '2007-03-22 18:22:52.996577'); -INSERT INTO dvds.payment VALUES (22615, 598, 1, 15443, 7.99, '2007-03-22 23:12:41.996577'); -INSERT INTO dvds.payment VALUES (22616, 599, 2, 11522, 3.99, '2007-03-16 22:33:31.996577'); -INSERT INTO dvds.payment VALUES (22617, 599, 1, 14233, 1.99, '2007-03-21 03:35:34.996577'); -INSERT INTO dvds.payment VALUES (22618, 599, 1, 14599, 4.99, '2007-03-21 16:12:08.996577'); -INSERT INTO dvds.payment VALUES (22619, 599, 1, 14719, 1.99, '2007-03-21 20:10:23.996577'); -INSERT INTO dvds.payment VALUES (22620, 599, 2, 15590, 8.99, '2007-03-23 04:38:10.996577'); -INSERT INTO dvds.payment VALUES (22621, 599, 2, 15719, 2.99, '2007-03-23 09:37:12.996577'); -INSERT INTO dvds.payment VALUES (22622, 599, 2, 15725, 2.99, '2007-03-23 09:53:26.996577'); -INSERT INTO dvds.payment VALUES (22623, 202, 1, 10375, 2.99, '2007-03-01 04:54:48.996577'); -INSERT INTO dvds.payment VALUES (22624, 202, 1, 11210, 4.99, '2007-03-02 10:44:20.996577'); -INSERT INTO dvds.payment VALUES (22625, 202, 2, 11924, 4.99, '2007-03-17 14:50:31.996577'); -INSERT INTO dvds.payment VALUES (22626, 202, 2, 12801, 8.99, '2007-03-18 22:55:45.996577'); -INSERT INTO dvds.payment VALUES (22627, 202, 1, 13196, 4.99, '2007-03-19 13:08:58.996577'); -INSERT INTO dvds.payment VALUES (22628, 202, 1, 13528, 3.99, '2007-03-20 01:31:57.996577'); -INSERT INTO dvds.payment VALUES (22629, 202, 1, 14019, 3.99, '2007-03-20 19:27:41.996577'); -INSERT INTO dvds.payment VALUES (22630, 202, 1, 15095, 0.99, '2007-03-22 10:10:01.996577'); -INSERT INTO dvds.payment VALUES (22631, 202, 2, 15772, 4.99, '2007-03-23 11:51:22.996577'); -INSERT INTO dvds.payment VALUES (22632, 203, 2, 10700, 3.99, '2007-03-01 16:54:57.996577'); -INSERT INTO dvds.payment VALUES (22633, 203, 2, 10805, 2.99, '2007-03-01 20:52:03.996577'); -INSERT INTO dvds.payment VALUES (22634, 203, 1, 11712, 2.99, '2007-03-17 06:01:17.996577'); -INSERT INTO dvds.payment VALUES (22635, 203, 1, 12519, 0.99, '2007-03-18 12:10:40.996577'); -INSERT INTO dvds.payment VALUES (22636, 203, 2, 13841, 4.99, '2007-03-20 12:53:44.996577'); -INSERT INTO dvds.payment VALUES (22637, 203, 2, 14505, 5.99, '2007-03-21 12:54:54.996577'); -INSERT INTO dvds.payment VALUES (22638, 203, 2, 15798, 2.99, '2007-03-23 12:51:29.996577'); -INSERT INTO dvds.payment VALUES (22639, 203, 2, 15991, 2.99, '2007-03-23 18:56:00.996577'); -INSERT INTO dvds.payment VALUES (22640, 204, 2, 10399, 5.99, '2007-03-01 05:42:05.996577'); -INSERT INTO dvds.payment VALUES (22641, 204, 1, 11261, 7.99, '2007-03-02 12:22:52.996577'); -INSERT INTO dvds.payment VALUES (22642, 204, 2, 11886, 0.99, '2007-03-17 13:27:17.996577'); -INSERT INTO dvds.payment VALUES (22643, 204, 1, 12737, 6.99, '2007-03-18 20:40:03.996577'); -INSERT INTO dvds.payment VALUES (22644, 204, 1, 13084, 0.99, '2007-03-19 08:55:51.996577'); -INSERT INTO dvds.payment VALUES (22645, 204, 1, 13416, 4.99, '2007-03-19 21:17:14.996577'); -INSERT INTO dvds.payment VALUES (22646, 204, 2, 13899, 2.99, '2007-03-20 14:33:37.996577'); -INSERT INTO dvds.payment VALUES (22647, 204, 2, 14163, 4.99, '2007-03-21 01:25:18.996577'); -INSERT INTO dvds.payment VALUES (22648, 204, 1, 14871, 0.99, '2007-03-22 01:51:50.996577'); -INSERT INTO dvds.payment VALUES (22649, 204, 1, 15364, 4.99, '2007-03-22 20:10:07.996577'); -INSERT INTO dvds.payment VALUES (22650, 204, 2, 15415, 11.99, '2007-03-22 22:17:22.996577'); -INSERT INTO dvds.payment VALUES (22651, 205, 1, 13935, 2.99, '2007-03-20 15:49:15.996577'); -INSERT INTO dvds.payment VALUES (22652, 205, 1, 14338, 0.99, '2007-03-21 07:04:29.996577'); -INSERT INTO dvds.payment VALUES (22653, 205, 2, 14391, 4.99, '2007-03-21 08:44:53.996577'); -INSERT INTO dvds.payment VALUES (22654, 205, 1, 14442, 2.99, '2007-03-21 10:28:47.996577'); -INSERT INTO dvds.payment VALUES (22655, 205, 2, 14490, 6.99, '2007-03-21 12:22:41.996577'); -INSERT INTO dvds.payment VALUES (22656, 205, 2, 15418, 0.99, '2007-03-22 22:22:40.996577'); -INSERT INTO dvds.payment VALUES (22657, 206, 2, 10930, 3.99, '2007-03-02 01:06:33.996577'); -INSERT INTO dvds.payment VALUES (22658, 206, 1, 11022, 2.99, '2007-03-02 04:03:29.996577'); -INSERT INTO dvds.payment VALUES (22659, 206, 2, 11634, 2.99, '2007-03-17 03:00:15.996577'); -INSERT INTO dvds.payment VALUES (22660, 206, 1, 13128, 4.99, '2007-03-19 10:32:42.996577'); -INSERT INTO dvds.payment VALUES (22661, 206, 2, 13232, 2.99, '2007-03-19 14:41:58.996577'); -INSERT INTO dvds.payment VALUES (22662, 206, 2, 13263, 10.99, '2007-03-19 15:55:21.996577'); -INSERT INTO dvds.payment VALUES (22663, 206, 2, 13550, 9.99, '2007-03-20 02:27:17.996577'); -INSERT INTO dvds.payment VALUES (22664, 206, 2, 13696, 0.99, '2007-03-20 07:44:41.996577'); -INSERT INTO dvds.payment VALUES (22665, 206, 2, 14695, 0.99, '2007-03-21 19:15:13.996577'); -INSERT INTO dvds.payment VALUES (22666, 206, 2, 15686, 7.99, '2007-03-23 08:10:47.996577'); -INSERT INTO dvds.payment VALUES (22667, 206, 1, 15709, 4.99, '2007-03-23 09:04:26.996577'); -INSERT INTO dvds.payment VALUES (22668, 207, 2, 10234, 3.99, '2007-03-01 00:24:46.996577'); -INSERT INTO dvds.payment VALUES (22669, 207, 2, 10300, 0.99, '2007-03-01 02:36:37.996577'); -INSERT INTO dvds.payment VALUES (22670, 207, 1, 11112, 2.99, '2007-03-02 06:53:40.996577'); -INSERT INTO dvds.payment VALUES (22671, 207, 2, 11260, 0.99, '2007-03-02 12:20:45.996577'); -INSERT INTO dvds.payment VALUES (22672, 207, 2, 11286, 5.99, '2007-03-02 13:12:48.996577'); -INSERT INTO dvds.payment VALUES (22673, 207, 1, 11724, 6.99, '2007-03-17 06:33:10.996577'); -INSERT INTO dvds.payment VALUES (22674, 207, 2, 12108, 6.99, '2007-03-17 21:25:05.996577'); -INSERT INTO dvds.payment VALUES (22675, 207, 2, 13655, 2.99, '2007-03-20 06:27:39.996577'); -INSERT INTO dvds.payment VALUES (22676, 207, 2, 13809, 8.99, '2007-03-20 11:24:29.996577'); -INSERT INTO dvds.payment VALUES (22677, 207, 2, 13912, 9.99, '2007-03-20 15:00:36.996577'); -INSERT INTO dvds.payment VALUES (22678, 207, 2, 13954, 3.99, '2007-03-20 16:31:07.996577'); -INSERT INTO dvds.payment VALUES (22679, 207, 1, 15625, 1.99, '2007-03-23 05:53:55.996577'); -INSERT INTO dvds.payment VALUES (22680, 1, 2, 10437, 4.99, '2007-03-01 07:19:30.996577'); -INSERT INTO dvds.payment VALUES (22681, 1, 2, 11299, 3.99, '2007-03-02 14:05:18.996577'); -INSERT INTO dvds.payment VALUES (22682, 1, 1, 11367, 0.99, '2007-03-02 16:30:04.996577'); -INSERT INTO dvds.payment VALUES (22683, 1, 2, 11824, 4.99, '2007-03-17 11:06:20.996577'); -INSERT INTO dvds.payment VALUES (22684, 1, 1, 12250, 0.99, '2007-03-18 02:25:55.996577'); -INSERT INTO dvds.payment VALUES (22685, 1, 2, 13068, 0.99, '2007-03-19 08:23:42.996577'); -INSERT INTO dvds.payment VALUES (22686, 1, 2, 13176, 2.99, '2007-03-19 12:25:20.996577'); -INSERT INTO dvds.payment VALUES (22687, 1, 1, 14762, 0.99, '2007-03-21 22:02:23.996577'); -INSERT INTO dvds.payment VALUES (22688, 1, 1, 14825, 1.99, '2007-03-21 23:56:23.996577'); -INSERT INTO dvds.payment VALUES (22689, 1, 2, 15298, 2.99, '2007-03-22 18:10:03.996577'); -INSERT INTO dvds.payment VALUES (22690, 1, 1, 15315, 5.99, '2007-03-22 18:32:12.996577'); -INSERT INTO dvds.payment VALUES (22691, 2, 1, 10466, 0.99, '2007-03-01 08:13:52.996577'); -INSERT INTO dvds.payment VALUES (22692, 2, 1, 10918, 0.99, '2007-03-02 00:39:22.996577'); -INSERT INTO dvds.payment VALUES (22693, 2, 1, 11087, 5.99, '2007-03-02 06:10:07.996577'); -INSERT INTO dvds.payment VALUES (22694, 2, 1, 11177, 6.99, '2007-03-02 09:12:14.996577'); -INSERT INTO dvds.payment VALUES (22695, 2, 2, 11256, 2.99, '2007-03-02 12:13:19.996577'); -INSERT INTO dvds.payment VALUES (22696, 2, 1, 11614, 2.99, '2007-03-17 02:20:44.996577'); -INSERT INTO dvds.payment VALUES (22697, 2, 1, 12963, 2.99, '2007-03-19 04:54:30.996577'); -INSERT INTO dvds.payment VALUES (22698, 2, 1, 14475, 4.99, '2007-03-21 11:52:58.996577'); -INSERT INTO dvds.payment VALUES (22699, 2, 2, 14743, 5.99, '2007-03-21 21:10:22.996577'); -INSERT INTO dvds.payment VALUES (22700, 2, 2, 15145, 4.99, '2007-03-22 12:21:30.996577'); -INSERT INTO dvds.payment VALUES (22701, 2, 2, 15907, 4.99, '2007-03-23 16:08:01.996577'); -INSERT INTO dvds.payment VALUES (22702, 3, 2, 10597, 5.99, '2007-03-01 12:48:14.996577'); -INSERT INTO dvds.payment VALUES (22703, 3, 2, 12556, 4.99, '2007-03-18 13:18:21.996577'); -INSERT INTO dvds.payment VALUES (22704, 3, 1, 13403, 8.99, '2007-03-19 20:46:33.996577'); -INSERT INTO dvds.payment VALUES (22705, 3, 2, 13610, 2.99, '2007-03-20 04:42:38.996577'); -INSERT INTO dvds.payment VALUES (22706, 3, 2, 14699, 8.99, '2007-03-21 19:19:14.996577'); -INSERT INTO dvds.payment VALUES (22707, 3, 2, 15038, 0.99, '2007-03-22 08:05:53.996577'); -INSERT INTO dvds.payment VALUES (22708, 3, 1, 15619, 2.99, '2007-03-23 05:38:40.996577'); -INSERT INTO dvds.payment VALUES (22709, 4, 2, 11069, 0.99, '2007-03-02 05:38:00.996577'); -INSERT INTO dvds.payment VALUES (22710, 4, 1, 11110, 2.99, '2007-03-02 06:48:57.996577'); -INSERT INTO dvds.payment VALUES (22711, 4, 2, 11529, 4.99, '2007-03-16 22:56:27.996577'); -INSERT INTO dvds.payment VALUES (22712, 4, 1, 12151, 2.99, '2007-03-17 22:42:29.996577'); -INSERT INTO dvds.payment VALUES (22713, 4, 2, 12294, 8.99, '2007-03-18 03:43:10.996577'); -INSERT INTO dvds.payment VALUES (22714, 4, 2, 12856, 1.99, '2007-03-19 00:47:39.996577'); -INSERT INTO dvds.payment VALUES (22715, 4, 1, 13704, 2.99, '2007-03-20 08:00:30.996577'); -INSERT INTO dvds.payment VALUES (22716, 4, 1, 13807, 6.99, '2007-03-20 11:24:06.996577'); -INSERT INTO dvds.payment VALUES (22717, 4, 2, 14225, 4.99, '2007-03-21 03:22:03.996577'); -INSERT INTO dvds.payment VALUES (22718, 4, 1, 15147, 2.99, '2007-03-22 12:26:49.996577'); -INSERT INTO dvds.payment VALUES (22719, 4, 2, 15635, 1.99, '2007-03-23 06:11:26.996577'); -INSERT INTO dvds.payment VALUES (22720, 5, 2, 10609, 4.99, '2007-03-01 13:17:11.996577'); -INSERT INTO dvds.payment VALUES (22721, 5, 1, 10625, 0.99, '2007-03-01 13:55:36.996577'); -INSERT INTO dvds.payment VALUES (22722, 5, 2, 11001, 4.99, '2007-03-02 03:25:11.996577'); -INSERT INTO dvds.payment VALUES (22723, 5, 1, 11179, 4.99, '2007-03-02 09:18:32.996577'); -INSERT INTO dvds.payment VALUES (22724, 5, 2, 11930, 3.99, '2007-03-17 14:57:19.996577'); -INSERT INTO dvds.payment VALUES (22725, 5, 1, 12145, 9.99, '2007-03-17 22:38:30.996577'); -INSERT INTO dvds.payment VALUES (22726, 5, 1, 12797, 2.99, '2007-03-18 22:52:34.996577'); -INSERT INTO dvds.payment VALUES (22727, 5, 1, 13063, 1.99, '2007-03-19 08:14:07.996577'); -INSERT INTO dvds.payment VALUES (22728, 5, 2, 13877, 0.99, '2007-03-20 13:44:44.996577'); -INSERT INTO dvds.payment VALUES (22729, 5, 2, 14053, 6.99, '2007-03-20 20:42:25.996577'); -INSERT INTO dvds.payment VALUES (22730, 5, 1, 14430, 6.99, '2007-03-21 09:59:37.996577'); -INSERT INTO dvds.payment VALUES (22731, 5, 2, 14494, 2.99, '2007-03-21 12:31:16.996577'); -INSERT INTO dvds.payment VALUES (22732, 5, 2, 15232, 0.99, '2007-03-22 16:05:28.996577'); -INSERT INTO dvds.payment VALUES (22733, 6, 1, 10271, 2.99, '2007-03-01 01:42:05.996577'); -INSERT INTO dvds.payment VALUES (22734, 6, 1, 11023, 2.99, '2007-03-02 04:05:04.996577'); -INSERT INTO dvds.payment VALUES (22735, 6, 1, 11398, 3.99, '2007-03-02 17:23:41.996577'); -INSERT INTO dvds.payment VALUES (22736, 6, 1, 11591, 6.99, '2007-03-17 00:58:07.996577'); -INSERT INTO dvds.payment VALUES (22737, 6, 1, 11727, 0.99, '2007-03-17 06:40:46.996577'); -INSERT INTO dvds.payment VALUES (22738, 6, 1, 11853, 0.99, '2007-03-17 12:07:58.996577'); -INSERT INTO dvds.payment VALUES (22739, 6, 2, 12254, 2.99, '2007-03-18 02:33:55.996577'); -INSERT INTO dvds.payment VALUES (22740, 6, 2, 13451, 6.99, '2007-03-19 22:46:51.996577'); -INSERT INTO dvds.payment VALUES (22741, 6, 1, 14329, 7.99, '2007-03-21 06:51:22.996577'); -INSERT INTO dvds.payment VALUES (22742, 6, 1, 14377, 4.99, '2007-03-21 08:17:54.996577'); -INSERT INTO dvds.payment VALUES (22743, 6, 1, 15509, 5.99, '2007-03-23 01:19:50.996577'); -INSERT INTO dvds.payment VALUES (22744, 6, 2, 15603, 0.99, '2007-03-23 05:09:58.996577'); -INSERT INTO dvds.payment VALUES (22745, 7, 2, 10330, 6.99, '2007-03-01 03:25:30.996577'); -INSERT INTO dvds.payment VALUES (22746, 7, 1, 10423, 5.99, '2007-03-01 06:48:19.996577'); -INSERT INTO dvds.payment VALUES (22747, 7, 1, 10514, 4.99, '2007-03-01 10:07:52.996577'); -INSERT INTO dvds.payment VALUES (22748, 7, 2, 10644, 4.99, '2007-03-01 14:20:26.996577'); -INSERT INTO dvds.payment VALUES (22749, 7, 2, 10989, 3.99, '2007-03-02 03:09:20.996577'); -INSERT INTO dvds.payment VALUES (22750, 7, 2, 11542, 7.99, '2007-03-16 23:19:58.996577'); -INSERT INTO dvds.payment VALUES (22751, 7, 1, 12367, 8.99, '2007-03-18 06:25:40.996577'); -INSERT INTO dvds.payment VALUES (22752, 7, 1, 12730, 2.99, '2007-03-18 20:23:27.996577'); -INSERT INTO dvds.payment VALUES (22753, 7, 2, 13373, 2.99, '2007-03-19 19:51:57.996577'); -INSERT INTO dvds.payment VALUES (22754, 7, 1, 13476, 2.99, '2007-03-19 23:34:30.996577'); -INSERT INTO dvds.payment VALUES (22755, 7, 1, 13594, 0.99, '2007-03-20 04:21:57.996577'); -INSERT INTO dvds.payment VALUES (22756, 7, 1, 14222, 5.99, '2007-03-21 03:18:14.996577'); -INSERT INTO dvds.payment VALUES (22757, 8, 2, 10561, 2.99, '2007-03-01 11:34:01.996577'); -INSERT INTO dvds.payment VALUES (22758, 8, 1, 11232, 9.99, '2007-03-02 11:32:38.996577'); -INSERT INTO dvds.payment VALUES (22759, 8, 2, 11284, 2.99, '2007-03-02 13:11:11.996577'); -INSERT INTO dvds.payment VALUES (22760, 8, 1, 12613, 2.99, '2007-03-18 15:44:27.996577'); -INSERT INTO dvds.payment VALUES (22761, 8, 1, 14114, 0.99, '2007-03-20 23:35:37.996577'); -INSERT INTO dvds.payment VALUES (22762, 8, 1, 15374, 7.99, '2007-03-22 20:37:35.996577'); -INSERT INTO dvds.payment VALUES (22763, 8, 1, 15764, 2.99, '2007-03-23 11:33:36.996577'); -INSERT INTO dvds.payment VALUES (22764, 8, 1, 15805, 4.99, '2007-03-23 12:59:45.996577'); -INSERT INTO dvds.payment VALUES (22765, 9, 1, 10451, 0.99, '2007-03-01 07:39:51.996577'); -INSERT INTO dvds.payment VALUES (22766, 9, 1, 10454, 4.99, '2007-03-01 07:42:26.996577'); -INSERT INTO dvds.payment VALUES (22767, 9, 2, 11400, 5.99, '2007-03-02 17:29:18.996577'); -INSERT INTO dvds.payment VALUES (22768, 9, 1, 11556, 0.99, '2007-03-16 23:40:19.996577'); -INSERT INTO dvds.payment VALUES (22769, 9, 1, 12228, 2.99, '2007-03-18 01:36:36.996577'); -INSERT INTO dvds.payment VALUES (22770, 9, 1, 12309, 2.99, '2007-03-18 04:27:06.996577'); -INSERT INTO dvds.payment VALUES (22771, 9, 2, 12652, 4.99, '2007-03-18 17:17:24.996577'); -INSERT INTO dvds.payment VALUES (22772, 9, 2, 14489, 7.99, '2007-03-21 12:22:25.996577'); -INSERT INTO dvds.payment VALUES (22773, 10, 2, 10671, 8.99, '2007-03-01 15:38:25.996577'); -INSERT INTO dvds.payment VALUES (22774, 10, 2, 11289, 2.99, '2007-03-02 13:23:26.996577'); -INSERT INTO dvds.payment VALUES (22775, 10, 1, 11405, 0.99, '2007-03-02 17:42:05.996577'); -INSERT INTO dvds.payment VALUES (22776, 10, 2, 12031, 2.99, '2007-03-17 18:40:01.996577'); -INSERT INTO dvds.payment VALUES (22777, 10, 2, 12400, 2.99, '2007-03-18 07:47:38.996577'); -INSERT INTO dvds.payment VALUES (22778, 10, 2, 13316, 4.99, '2007-03-19 17:51:56.996577'); -INSERT INTO dvds.payment VALUES (22779, 10, 2, 13917, 2.99, '2007-03-20 15:11:54.996577'); -INSERT INTO dvds.payment VALUES (22780, 10, 1, 15370, 5.99, '2007-03-22 20:27:55.996577'); -INSERT INTO dvds.payment VALUES (22781, 11, 1, 10812, 4.99, '2007-03-01 21:09:42.996577'); -INSERT INTO dvds.payment VALUES (22782, 11, 2, 11166, 6.99, '2007-03-02 08:43:24.996577'); -INSERT INTO dvds.payment VALUES (22783, 11, 2, 11502, 0.99, '2007-03-16 21:34:56.996577'); -INSERT INTO dvds.payment VALUES (22784, 11, 2, 12015, 5.99, '2007-03-17 18:01:10.996577'); -INSERT INTO dvds.payment VALUES (22785, 11, 2, 13572, 0.99, '2007-03-20 03:35:53.996577'); -INSERT INTO dvds.payment VALUES (22786, 11, 1, 13790, 4.99, '2007-03-20 10:45:53.996577'); -INSERT INTO dvds.payment VALUES (22787, 11, 1, 15120, 0.99, '2007-03-22 11:11:13.996577'); -INSERT INTO dvds.payment VALUES (22788, 11, 2, 15240, 2.99, '2007-03-22 16:15:07.996577'); -INSERT INTO dvds.payment VALUES (22789, 12, 2, 10392, 10.99, '2007-03-01 05:18:52.996577'); -INSERT INTO dvds.payment VALUES (22790, 12, 2, 11497, 0.99, '2007-03-16 21:20:56.996577'); -INSERT INTO dvds.payment VALUES (22791, 12, 1, 12604, 4.99, '2007-03-18 15:27:14.996577'); -INSERT INTO dvds.payment VALUES (22792, 12, 2, 13519, 0.99, '2007-03-20 01:05:33.996577'); -INSERT INTO dvds.payment VALUES (22793, 12, 2, 13895, 2.99, '2007-03-20 14:26:54.996577'); -INSERT INTO dvds.payment VALUES (22794, 12, 2, 14240, 4.99, '2007-03-21 03:48:05.996577'); -INSERT INTO dvds.payment VALUES (22795, 12, 1, 15993, 0.99, '2007-03-23 18:57:10.996577'); -INSERT INTO dvds.payment VALUES (22796, 13, 1, 11292, 4.99, '2007-03-02 13:27:07.996577'); -INSERT INTO dvds.payment VALUES (22797, 13, 2, 11315, 0.99, '2007-03-02 14:33:43.996577'); -INSERT INTO dvds.payment VALUES (22798, 13, 2, 11761, 5.99, '2007-03-17 08:13:25.996577'); -INSERT INTO dvds.payment VALUES (22799, 13, 2, 12918, 7.99, '2007-03-19 03:00:02.996577'); -INSERT INTO dvds.payment VALUES (22800, 13, 2, 13096, 4.99, '2007-03-19 09:17:29.996577'); -INSERT INTO dvds.payment VALUES (22801, 13, 2, 13213, 0.99, '2007-03-19 13:54:14.996577'); -INSERT INTO dvds.payment VALUES (22802, 13, 1, 13456, 0.99, '2007-03-19 23:01:45.996577'); -INSERT INTO dvds.payment VALUES (22803, 13, 1, 14252, 9.99, '2007-03-21 04:12:33.996577'); -INSERT INTO dvds.payment VALUES (22804, 13, 2, 14545, 7.99, '2007-03-21 14:12:49.996577'); -INSERT INTO dvds.payment VALUES (22805, 13, 1, 15338, 4.99, '2007-03-22 19:19:50.996577'); -INSERT INTO dvds.payment VALUES (22806, 14, 1, 10348, 2.99, '2007-03-01 03:51:26.996577'); -INSERT INTO dvds.payment VALUES (22807, 14, 2, 10526, 6.99, '2007-03-01 10:23:59.996577'); -INSERT INTO dvds.payment VALUES (22808, 14, 1, 11480, 4.99, '2007-03-02 20:46:50.996577'); -INSERT INTO dvds.payment VALUES (22809, 14, 2, 11528, 3.99, '2007-03-16 22:55:49.996577'); -INSERT INTO dvds.payment VALUES (22810, 14, 1, 12668, 2.99, '2007-03-18 17:45:13.996577'); -INSERT INTO dvds.payment VALUES (22811, 14, 1, 13757, 4.99, '2007-03-20 09:48:38.996577'); -INSERT INTO dvds.payment VALUES (22812, 14, 2, 15015, 6.99, '2007-03-22 07:12:16.996577'); -INSERT INTO dvds.payment VALUES (22813, 14, 1, 15373, 0.99, '2007-03-22 20:36:37.996577'); -INSERT INTO dvds.payment VALUES (22814, 14, 1, 16045, 0.99, '2007-03-23 20:53:52.996577'); -INSERT INTO dvds.payment VALUES (22815, 15, 1, 11118, 2.99, '2007-03-02 07:12:44.996577'); -INSERT INTO dvds.payment VALUES (22816, 15, 1, 11141, 2.99, '2007-03-02 07:57:37.996577'); -INSERT INTO dvds.payment VALUES (22817, 15, 2, 11307, 2.99, '2007-03-02 14:16:34.996577'); -INSERT INTO dvds.payment VALUES (22818, 15, 2, 11341, 2.99, '2007-03-02 15:37:50.996577'); -INSERT INTO dvds.payment VALUES (22819, 15, 1, 11922, 7.99, '2007-03-17 14:49:03.996577'); -INSERT INTO dvds.payment VALUES (22820, 15, 2, 12272, 2.99, '2007-03-18 03:07:36.996577'); -INSERT INTO dvds.payment VALUES (22821, 15, 2, 12551, 2.99, '2007-03-18 13:14:52.996577'); -INSERT INTO dvds.payment VALUES (22822, 15, 1, 12635, 2.99, '2007-03-18 16:28:49.996577'); -INSERT INTO dvds.payment VALUES (22823, 15, 2, 13339, 8.99, '2007-03-19 18:47:02.996577'); -INSERT INTO dvds.payment VALUES (22824, 15, 1, 13393, 5.99, '2007-03-19 20:32:12.996577'); -INSERT INTO dvds.payment VALUES (22825, 15, 2, 13503, 5.99, '2007-03-20 00:28:59.996577'); -INSERT INTO dvds.payment VALUES (22826, 15, 1, 13541, 4.99, '2007-03-20 02:10:07.996577'); -INSERT INTO dvds.payment VALUES (22827, 15, 2, 13677, 3.99, '2007-03-20 07:03:07.996577'); -INSERT INTO dvds.payment VALUES (22828, 15, 2, 14569, 0.99, '2007-03-21 14:59:48.996577'); -INSERT INTO dvds.payment VALUES (22829, 15, 2, 14776, 4.99, '2007-03-21 22:22:01.996577'); -INSERT INTO dvds.payment VALUES (22830, 15, 2, 14872, 8.99, '2007-03-22 01:52:07.996577'); -INSERT INTO dvds.payment VALUES (22831, 15, 1, 15178, 0.99, '2007-03-22 14:04:30.996577'); -INSERT INTO dvds.payment VALUES (22832, 15, 1, 15897, 4.99, '2007-03-23 15:40:57.996577'); -INSERT INTO dvds.payment VALUES (22833, 16, 2, 10687, 2.99, '2007-03-01 16:21:28.996577'); -INSERT INTO dvds.payment VALUES (22834, 16, 2, 10727, 2.99, '2007-03-01 17:43:34.996577'); -INSERT INTO dvds.payment VALUES (22835, 16, 2, 11308, 0.99, '2007-03-02 14:19:10.996577'); -INSERT INTO dvds.payment VALUES (22836, 16, 2, 12104, 2.99, '2007-03-17 21:21:26.996577'); -INSERT INTO dvds.payment VALUES (22837, 16, 1, 12358, 4.99, '2007-03-18 06:10:09.996577'); -INSERT INTO dvds.payment VALUES (22838, 16, 1, 12577, 7.99, '2007-03-18 14:08:12.996577'); -INSERT INTO dvds.payment VALUES (22839, 16, 2, 13151, 4.99, '2007-03-19 11:36:49.996577'); -INSERT INTO dvds.payment VALUES (22840, 16, 1, 13391, 4.99, '2007-03-19 20:30:08.996577'); -INSERT INTO dvds.payment VALUES (22841, 16, 1, 13480, 6.99, '2007-03-19 23:38:53.996577'); -INSERT INTO dvds.payment VALUES (22842, 16, 1, 14511, 8.99, '2007-03-21 13:14:00.996577'); -INSERT INTO dvds.payment VALUES (22843, 17, 2, 11990, 4.99, '2007-03-17 16:54:48.996577'); -INSERT INTO dvds.payment VALUES (22844, 17, 1, 13732, 2.99, '2007-03-20 08:53:07.996577'); -INSERT INTO dvds.payment VALUES (22845, 17, 1, 14040, 2.99, '2007-03-20 20:12:10.996577'); -INSERT INTO dvds.payment VALUES (22846, 17, 2, 14326, 2.99, '2007-03-21 06:44:07.996577'); -INSERT INTO dvds.payment VALUES (22847, 17, 1, 14346, 2.99, '2007-03-21 07:10:52.996577'); -INSERT INTO dvds.payment VALUES (22848, 17, 2, 15752, 5.99, '2007-03-23 11:10:04.996577'); -INSERT INTO dvds.payment VALUES (22849, 18, 1, 10682, 4.99, '2007-03-01 16:01:19.996577'); -INSERT INTO dvds.payment VALUES (22850, 18, 2, 10721, 1.99, '2007-03-01 17:33:44.996577'); -INSERT INTO dvds.payment VALUES (22851, 18, 2, 11094, 4.99, '2007-03-02 06:31:28.996577'); -INSERT INTO dvds.payment VALUES (22852, 18, 2, 11439, 4.99, '2007-03-02 18:51:11.996577'); -INSERT INTO dvds.payment VALUES (22853, 18, 2, 12333, 0.99, '2007-03-18 05:20:05.996577'); -INSERT INTO dvds.payment VALUES (22854, 18, 2, 13490, 0.99, '2007-03-19 23:57:55.996577'); -INSERT INTO dvds.payment VALUES (22855, 19, 2, 11508, 8.99, '2007-03-16 21:56:02.996577'); -INSERT INTO dvds.payment VALUES (22856, 19, 1, 11869, 5.99, '2007-03-17 12:38:48.996577'); -INSERT INTO dvds.payment VALUES (22857, 19, 1, 12211, 9.99, '2007-03-18 00:59:44.996577'); -INSERT INTO dvds.payment VALUES (22858, 19, 2, 12357, 2.99, '2007-03-18 06:09:18.996577'); -INSERT INTO dvds.payment VALUES (22859, 19, 1, 13718, 8.99, '2007-03-20 08:22:10.996577'); -INSERT INTO dvds.payment VALUES (22860, 19, 2, 13804, 8.99, '2007-03-20 11:14:58.996577'); -INSERT INTO dvds.payment VALUES (22861, 19, 1, 14101, 4.99, '2007-03-20 23:01:29.996577'); -INSERT INTO dvds.payment VALUES (22862, 19, 1, 15047, 2.99, '2007-03-22 08:25:42.996577'); -INSERT INTO dvds.payment VALUES (22863, 19, 2, 15529, 0.99, '2007-03-23 02:15:13.996577'); -INSERT INTO dvds.payment VALUES (22864, 20, 2, 10284, 4.99, '2007-03-01 02:01:45.996577'); -INSERT INTO dvds.payment VALUES (22865, 20, 1, 10616, 7.99, '2007-03-01 13:28:16.996577'); -INSERT INTO dvds.payment VALUES (22866, 20, 1, 10954, 1.99, '2007-03-02 01:58:50.996577'); -INSERT INTO dvds.payment VALUES (22867, 20, 1, 11821, 0.99, '2007-03-17 10:56:21.996577'); -INSERT INTO dvds.payment VALUES (22868, 20, 1, 12180, 0.99, '2007-03-17 23:56:41.996577'); -INSERT INTO dvds.payment VALUES (22869, 20, 2, 13036, 4.99, '2007-03-19 07:17:03.996577'); -INSERT INTO dvds.payment VALUES (22870, 20, 1, 13137, 4.99, '2007-03-19 10:54:58.996577'); -INSERT INTO dvds.payment VALUES (22871, 20, 2, 13317, 2.99, '2007-03-19 17:54:08.996577'); -INSERT INTO dvds.payment VALUES (22872, 20, 2, 14613, 2.99, '2007-03-21 16:31:46.996577'); -INSERT INTO dvds.payment VALUES (22873, 20, 2, 15057, 6.99, '2007-03-22 08:48:24.996577'); -INSERT INTO dvds.payment VALUES (22874, 20, 1, 15161, 1.99, '2007-03-22 13:05:48.996577'); -INSERT INTO dvds.payment VALUES (22875, 20, 2, 15248, 0.99, '2007-03-22 16:21:32.996577'); -INSERT INTO dvds.payment VALUES (22876, 20, 1, 15460, 2.99, '2007-03-22 23:39:08.996577'); -INSERT INTO dvds.payment VALUES (22877, 21, 2, 10570, 4.99, '2007-03-01 11:51:32.996577'); -INSERT INTO dvds.payment VALUES (22878, 21, 1, 10734, 0.99, '2007-03-01 17:57:13.996577'); -INSERT INTO dvds.payment VALUES (22879, 21, 2, 11072, 0.99, '2007-03-02 05:39:23.996577'); -INSERT INTO dvds.payment VALUES (22880, 21, 2, 11970, 0.99, '2007-03-17 16:21:35.996577'); -INSERT INTO dvds.payment VALUES (22881, 21, 2, 12131, 2.99, '2007-03-17 22:02:42.996577'); -INSERT INTO dvds.payment VALUES (22882, 21, 2, 12660, 4.99, '2007-03-18 17:35:49.996577'); -INSERT INTO dvds.payment VALUES (22883, 21, 1, 12774, 6.99, '2007-03-18 22:02:48.996577'); -INSERT INTO dvds.payment VALUES (22884, 21, 1, 13381, 2.99, '2007-03-19 20:06:23.996577'); -INSERT INTO dvds.payment VALUES (22885, 21, 2, 13399, 4.99, '2007-03-19 20:37:54.996577'); -INSERT INTO dvds.payment VALUES (22886, 21, 1, 13411, 4.99, '2007-03-19 21:12:04.996577'); -INSERT INTO dvds.payment VALUES (22887, 21, 1, 13463, 8.99, '2007-03-19 23:19:20.996577'); -INSERT INTO dvds.payment VALUES (22888, 21, 1, 13699, 9.99, '2007-03-20 07:54:40.996577'); -INSERT INTO dvds.payment VALUES (22889, 21, 1, 13740, 4.99, '2007-03-20 09:17:09.996577'); -INSERT INTO dvds.payment VALUES (22890, 21, 2, 14077, 8.99, '2007-03-20 21:52:33.996577'); -INSERT INTO dvds.payment VALUES (22891, 21, 2, 14161, 2.99, '2007-03-21 01:20:25.996577'); -INSERT INTO dvds.payment VALUES (22892, 21, 2, 14446, 2.99, '2007-03-21 10:39:07.996577'); -INSERT INTO dvds.payment VALUES (22893, 21, 1, 14869, 4.99, '2007-03-22 01:48:52.996577'); -INSERT INTO dvds.payment VALUES (22894, 22, 1, 12023, 5.99, '2007-03-17 18:23:20.996577'); -INSERT INTO dvds.payment VALUES (22895, 22, 1, 12124, 2.99, '2007-03-17 21:51:12.996577'); -INSERT INTO dvds.payment VALUES (22896, 22, 2, 12809, 0.99, '2007-03-18 23:10:50.996577'); -INSERT INTO dvds.payment VALUES (22897, 22, 2, 13060, 9.99, '2007-03-19 08:11:51.996577'); -INSERT INTO dvds.payment VALUES (22898, 22, 1, 14056, 2.99, '2007-03-20 20:47:19.996577'); -INSERT INTO dvds.payment VALUES (22899, 22, 1, 14564, 6.99, '2007-03-21 14:53:09.996577'); -INSERT INTO dvds.payment VALUES (22900, 22, 1, 15134, 7.99, '2007-03-22 11:46:51.996577'); -INSERT INTO dvds.payment VALUES (22901, 22, 1, 15589, 6.99, '2007-03-23 04:31:57.996577'); -INSERT INTO dvds.payment VALUES (22902, 22, 1, 15658, 4.99, '2007-03-23 07:17:09.996577'); -INSERT INTO dvds.payment VALUES (22903, 22, 1, 15793, 4.99, '2007-03-23 12:34:45.996577'); -INSERT INTO dvds.payment VALUES (22904, 23, 1, 10898, 2.99, '2007-03-01 23:58:23.996577'); -INSERT INTO dvds.payment VALUES (22905, 23, 2, 11501, 2.99, '2007-03-16 21:33:19.996577'); -INSERT INTO dvds.payment VALUES (22906, 23, 2, 13290, 2.99, '2007-03-19 17:00:16.996577'); -INSERT INTO dvds.payment VALUES (22907, 23, 2, 13331, 4.99, '2007-03-19 18:28:51.996577'); -INSERT INTO dvds.payment VALUES (22908, 23, 2, 13429, 6.99, '2007-03-19 21:54:03.996577'); -INSERT INTO dvds.payment VALUES (22909, 23, 2, 13511, 0.99, '2007-03-20 00:50:06.996577'); -INSERT INTO dvds.payment VALUES (22910, 23, 2, 13557, 0.99, '2007-03-20 02:41:07.996577'); -INSERT INTO dvds.payment VALUES (22911, 23, 2, 14482, 2.99, '2007-03-21 12:11:11.996577'); -INSERT INTO dvds.payment VALUES (22912, 24, 2, 10491, 2.99, '2007-03-01 09:06:53.996577'); -INSERT INTO dvds.payment VALUES (22913, 24, 1, 11209, 2.99, '2007-03-02 10:38:11.996577'); -INSERT INTO dvds.payment VALUES (22914, 24, 2, 11546, 2.99, '2007-03-16 23:26:02.996577'); -INSERT INTO dvds.payment VALUES (22915, 24, 2, 12165, 8.99, '2007-03-17 23:22:03.996577'); -INSERT INTO dvds.payment VALUES (22916, 24, 1, 12745, 2.99, '2007-03-18 20:51:11.996577'); -INSERT INTO dvds.payment VALUES (22917, 24, 1, 12999, 1.99, '2007-03-19 06:03:19.996577'); -INSERT INTO dvds.payment VALUES (22918, 24, 2, 13058, 4.99, '2007-03-19 08:09:19.996577'); -INSERT INTO dvds.payment VALUES (22919, 24, 1, 13247, 0.99, '2007-03-19 15:14:25.996577'); -INSERT INTO dvds.payment VALUES (22920, 24, 2, 15357, 4.99, '2007-03-22 19:57:25.996577'); -INSERT INTO dvds.payment VALUES (22921, 25, 1, 10324, 5.99, '2007-03-01 03:17:32.996577'); -INSERT INTO dvds.payment VALUES (22922, 25, 2, 10860, 2.99, '2007-03-01 22:40:58.996577'); -INSERT INTO dvds.payment VALUES (22923, 25, 1, 10916, 2.99, '2007-03-02 00:34:25.996577'); -INSERT INTO dvds.payment VALUES (22924, 25, 1, 11642, 0.99, '2007-03-17 03:16:31.996577'); -INSERT INTO dvds.payment VALUES (22925, 25, 1, 12922, 0.99, '2007-03-19 03:17:14.996577'); -INSERT INTO dvds.payment VALUES (22926, 25, 1, 14193, 4.99, '2007-03-21 02:06:53.996577'); -INSERT INTO dvds.payment VALUES (22927, 25, 1, 14236, 4.99, '2007-03-21 03:41:42.996577'); -INSERT INTO dvds.payment VALUES (22928, 25, 1, 15512, 0.99, '2007-03-23 01:25:56.996577'); -INSERT INTO dvds.payment VALUES (22929, 25, 1, 15972, 5.99, '2007-03-23 18:28:56.996577'); -INSERT INTO dvds.payment VALUES (22930, 26, 1, 10386, 3.99, '2007-03-01 05:10:46.996577'); -INSERT INTO dvds.payment VALUES (22931, 26, 1, 10996, 3.99, '2007-03-02 03:16:37.996577'); -INSERT INTO dvds.payment VALUES (22932, 26, 2, 11314, 2.99, '2007-03-02 14:32:34.996577'); -INSERT INTO dvds.payment VALUES (22933, 26, 1, 11338, 0.99, '2007-03-02 15:28:38.996577'); -INSERT INTO dvds.payment VALUES (22934, 26, 1, 11744, 5.99, '2007-03-17 07:22:56.996577'); -INSERT INTO dvds.payment VALUES (22935, 26, 2, 13111, 4.99, '2007-03-19 09:53:36.996577'); -INSERT INTO dvds.payment VALUES (22936, 26, 2, 14183, 4.99, '2007-03-21 01:52:55.996577'); -INSERT INTO dvds.payment VALUES (22937, 26, 2, 14192, 8.99, '2007-03-21 02:06:08.996577'); -INSERT INTO dvds.payment VALUES (22938, 26, 2, 14603, 1.99, '2007-03-21 16:19:32.996577'); -INSERT INTO dvds.payment VALUES (22939, 26, 1, 14677, 7.99, '2007-03-21 18:40:56.996577'); -INSERT INTO dvds.payment VALUES (22940, 26, 1, 15384, 2.99, '2007-03-22 21:03:10.996577'); -INSERT INTO dvds.payment VALUES (22941, 26, 1, 15722, 7.99, '2007-03-23 09:44:55.996577'); -INSERT INTO dvds.payment VALUES (22942, 27, 1, 10794, 7.99, '2007-03-01 20:19:41.996577'); -INSERT INTO dvds.payment VALUES (22943, 27, 1, 10852, 4.99, '2007-03-01 22:28:59.996577'); -INSERT INTO dvds.payment VALUES (22944, 27, 1, 11234, 0.99, '2007-03-02 11:40:43.996577'); -INSERT INTO dvds.payment VALUES (22945, 27, 1, 11661, 8.99, '2007-03-17 03:54:23.996577'); -INSERT INTO dvds.payment VALUES (22946, 27, 2, 11740, 6.99, '2007-03-17 07:16:57.996577'); -INSERT INTO dvds.payment VALUES (22947, 27, 2, 12021, 5.99, '2007-03-17 18:21:09.996577'); -INSERT INTO dvds.payment VALUES (22948, 27, 2, 12461, 0.99, '2007-03-18 09:56:40.996577'); -INSERT INTO dvds.payment VALUES (22949, 27, 1, 12531, 2.99, '2007-03-18 12:26:16.996577'); -INSERT INTO dvds.payment VALUES (22950, 27, 2, 13816, 4.99, '2007-03-20 11:42:22.996577'); -INSERT INTO dvds.payment VALUES (22951, 27, 1, 15048, 0.99, '2007-03-22 08:28:30.996577'); -INSERT INTO dvds.payment VALUES (22952, 28, 2, 10294, 6.99, '2007-03-01 02:16:38.996577'); -INSERT INTO dvds.payment VALUES (22953, 28, 1, 11444, 2.99, '2007-03-02 19:01:21.996577'); -INSERT INTO dvds.payment VALUES (22954, 28, 1, 11856, 3.99, '2007-03-17 12:13:15.996577'); -INSERT INTO dvds.payment VALUES (22955, 28, 2, 12190, 2.99, '2007-03-18 00:23:10.996577'); -INSERT INTO dvds.payment VALUES (22956, 28, 1, 12359, 0.99, '2007-03-18 06:12:31.996577'); -INSERT INTO dvds.payment VALUES (22957, 28, 1, 12708, 2.99, '2007-03-18 19:27:43.996577'); -INSERT INTO dvds.payment VALUES (22958, 28, 2, 13783, 4.99, '2007-03-20 10:39:29.996577'); -INSERT INTO dvds.payment VALUES (22959, 28, 2, 14540, 2.99, '2007-03-21 14:02:49.996577'); -INSERT INTO dvds.payment VALUES (22960, 28, 1, 15445, 4.99, '2007-03-22 23:16:55.996577'); -INSERT INTO dvds.payment VALUES (22961, 28, 1, 15491, 2.99, '2007-03-23 00:37:06.996577'); -INSERT INTO dvds.payment VALUES (22962, 29, 1, 10543, 5.99, '2007-03-01 11:04:35.996577'); -INSERT INTO dvds.payment VALUES (22963, 29, 2, 10899, 1.99, '2007-03-01 23:58:47.996577'); -INSERT INTO dvds.payment VALUES (22964, 29, 1, 11079, 4.99, '2007-03-02 05:57:36.996577'); -INSERT INTO dvds.payment VALUES (22965, 29, 2, 11962, 2.99, '2007-03-17 16:03:04.996577'); -INSERT INTO dvds.payment VALUES (22966, 29, 1, 12488, 4.99, '2007-03-18 11:16:48.996577'); -INSERT INTO dvds.payment VALUES (22967, 29, 1, 12508, 2.99, '2007-03-18 11:48:39.996577'); -INSERT INTO dvds.payment VALUES (22968, 29, 2, 12569, 6.99, '2007-03-18 13:49:12.996577'); -INSERT INTO dvds.payment VALUES (22969, 29, 2, 12615, 6.99, '2007-03-18 15:44:33.996577'); -INSERT INTO dvds.payment VALUES (22970, 29, 2, 13173, 2.99, '2007-03-19 12:19:02.996577'); -INSERT INTO dvds.payment VALUES (22971, 29, 1, 13436, 0.99, '2007-03-19 22:04:51.996577'); -INSERT INTO dvds.payment VALUES (22972, 29, 2, 13777, 2.99, '2007-03-20 10:32:01.996577'); -INSERT INTO dvds.payment VALUES (22973, 29, 1, 13832, 3.99, '2007-03-20 12:28:51.996577'); -INSERT INTO dvds.payment VALUES (22974, 29, 1, 14174, 0.99, '2007-03-21 01:30:11.996577'); -INSERT INTO dvds.payment VALUES (22975, 29, 1, 14703, 4.99, '2007-03-21 19:29:45.996577'); -INSERT INTO dvds.payment VALUES (22976, 29, 1, 14985, 7.99, '2007-03-22 06:04:22.996577'); -INSERT INTO dvds.payment VALUES (22977, 29, 1, 14997, 5.99, '2007-03-22 06:21:26.996577'); -INSERT INTO dvds.payment VALUES (22978, 30, 1, 10235, 6.99, '2007-03-01 00:26:14.996577'); -INSERT INTO dvds.payment VALUES (22979, 30, 1, 12240, 2.99, '2007-03-18 01:55:37.996577'); -INSERT INTO dvds.payment VALUES (22980, 30, 1, 12546, 2.99, '2007-03-18 12:58:03.996577'); -INSERT INTO dvds.payment VALUES (22981, 30, 2, 12758, 0.99, '2007-03-18 21:27:00.996577'); -INSERT INTO dvds.payment VALUES (22982, 30, 1, 13435, 0.99, '2007-03-19 22:04:10.996577'); -INSERT INTO dvds.payment VALUES (22983, 30, 1, 13682, 4.99, '2007-03-20 07:19:05.996577'); -INSERT INTO dvds.payment VALUES (22984, 30, 1, 14339, 0.99, '2007-03-21 07:05:41.996577'); -INSERT INTO dvds.payment VALUES (22985, 30, 1, 14585, 2.99, '2007-03-21 15:46:59.996577'); -INSERT INTO dvds.payment VALUES (22986, 30, 1, 15063, 4.99, '2007-03-22 09:08:17.996577'); -INSERT INTO dvds.payment VALUES (22987, 30, 1, 15544, 4.99, '2007-03-23 02:46:22.996577'); -INSERT INTO dvds.payment VALUES (22988, 30, 2, 15829, 2.99, '2007-03-23 13:45:40.996577'); -INSERT INTO dvds.payment VALUES (22989, 31, 2, 12085, 4.99, '2007-03-17 20:45:35.996577'); -INSERT INTO dvds.payment VALUES (22990, 31, 1, 12377, 0.99, '2007-03-18 06:54:31.996577'); -INSERT INTO dvds.payment VALUES (22991, 31, 2, 15682, 6.99, '2007-03-23 08:06:00.996577'); -INSERT INTO dvds.payment VALUES (22992, 31, 2, 15816, 6.99, '2007-03-23 13:26:32.996577'); -INSERT INTO dvds.payment VALUES (22993, 32, 1, 11135, 4.99, '2007-03-02 07:50:51.996577'); -INSERT INTO dvds.payment VALUES (22994, 32, 2, 11831, 4.99, '2007-03-17 11:23:13.996577'); -INSERT INTO dvds.payment VALUES (22995, 32, 2, 12414, 9.99, '2007-03-18 08:19:06.996577'); -INSERT INTO dvds.payment VALUES (22996, 32, 1, 13736, 8.99, '2007-03-20 08:59:49.996577'); -INSERT INTO dvds.payment VALUES (22997, 32, 1, 13931, 1.99, '2007-03-20 15:44:36.996577'); -INSERT INTO dvds.payment VALUES (22998, 32, 1, 14075, 0.99, '2007-03-20 21:47:20.996577'); -INSERT INTO dvds.payment VALUES (22999, 32, 2, 14570, 5.99, '2007-03-21 15:00:58.996577'); -INSERT INTO dvds.payment VALUES (23000, 33, 2, 10335, 2.99, '2007-03-01 03:27:56.996577'); -INSERT INTO dvds.payment VALUES (23001, 33, 1, 10870, 4.99, '2007-03-01 22:55:38.996577'); -INSERT INTO dvds.payment VALUES (23002, 33, 1, 13241, 7.99, '2007-03-19 14:53:26.996577'); -INSERT INTO dvds.payment VALUES (23003, 33, 1, 13858, 2.99, '2007-03-20 13:19:23.996577'); -INSERT INTO dvds.payment VALUES (23004, 33, 1, 13958, 7.99, '2007-03-20 16:40:10.996577'); -INSERT INTO dvds.payment VALUES (23005, 33, 1, 14002, 0.99, '2007-03-20 18:40:45.996577'); -INSERT INTO dvds.payment VALUES (23006, 33, 1, 14623, 0.99, '2007-03-21 16:57:39.996577'); -INSERT INTO dvds.payment VALUES (23007, 33, 1, 15096, 5.99, '2007-03-22 10:11:30.996577'); -INSERT INTO dvds.payment VALUES (23008, 33, 2, 15115, 2.99, '2007-03-22 10:56:27.996577'); -INSERT INTO dvds.payment VALUES (23009, 34, 1, 10523, 0.99, '2007-03-01 10:20:58.996577'); -INSERT INTO dvds.payment VALUES (23010, 34, 1, 10615, 4.99, '2007-03-01 13:26:40.996577'); -INSERT INTO dvds.payment VALUES (23011, 34, 2, 11096, 0.99, '2007-03-02 06:33:45.996577'); -INSERT INTO dvds.payment VALUES (23012, 34, 1, 11505, 2.99, '2007-03-16 21:47:13.996577'); -INSERT INTO dvds.payment VALUES (23013, 34, 2, 11701, 4.99, '2007-03-17 05:44:13.996577'); -INSERT INTO dvds.payment VALUES (23014, 34, 2, 12286, 2.99, '2007-03-18 03:26:25.996577'); -INSERT INTO dvds.payment VALUES (23015, 34, 1, 12599, 2.99, '2007-03-18 15:11:11.996577'); -INSERT INTO dvds.payment VALUES (23016, 34, 1, 12651, 0.99, '2007-03-18 17:04:42.996577'); -INSERT INTO dvds.payment VALUES (23017, 34, 1, 13371, 4.99, '2007-03-19 19:50:13.996577'); -INSERT INTO dvds.payment VALUES (23018, 34, 2, 13949, 2.99, '2007-03-20 16:23:39.996577'); -INSERT INTO dvds.payment VALUES (23019, 34, 1, 14686, 5.99, '2007-03-21 19:00:34.996577'); -INSERT INTO dvds.payment VALUES (23020, 34, 2, 14701, 7.99, '2007-03-21 19:22:58.996577'); -INSERT INTO dvds.payment VALUES (23021, 35, 1, 11298, 1.99, '2007-03-02 14:00:58.996577'); -INSERT INTO dvds.payment VALUES (23022, 35, 1, 11452, 7.99, '2007-03-02 19:28:18.996577'); -INSERT INTO dvds.payment VALUES (23023, 35, 1, 11645, 4.99, '2007-03-17 03:19:22.996577'); -INSERT INTO dvds.payment VALUES (23024, 35, 1, 12055, 4.99, '2007-03-17 19:30:45.996577'); -INSERT INTO dvds.payment VALUES (23025, 35, 1, 13735, 2.99, '2007-03-20 08:59:27.996577'); -INSERT INTO dvds.payment VALUES (23026, 35, 1, 14110, 0.99, '2007-03-20 23:21:35.996577'); -INSERT INTO dvds.payment VALUES (23027, 35, 2, 14124, 2.99, '2007-03-21 00:00:17.996577'); -INSERT INTO dvds.payment VALUES (23028, 35, 2, 14735, 4.99, '2007-03-21 20:53:35.996577'); -INSERT INTO dvds.payment VALUES (23029, 36, 2, 10525, 2.99, '2007-03-01 10:21:43.996577'); -INSERT INTO dvds.payment VALUES (23030, 36, 2, 10761, 2.99, '2007-03-01 18:54:01.996577'); -INSERT INTO dvds.payment VALUES (23031, 36, 1, 10963, 0.99, '2007-03-02 02:16:43.996577'); -INSERT INTO dvds.payment VALUES (23032, 36, 2, 10964, 6.99, '2007-03-02 02:24:49.996577'); -INSERT INTO dvds.payment VALUES (23033, 36, 2, 11616, 4.99, '2007-03-17 02:28:27.996577'); -INSERT INTO dvds.payment VALUES (23034, 36, 1, 11813, 4.99, '2007-03-17 10:35:20.996577'); -INSERT INTO dvds.payment VALUES (23035, 36, 2, 13562, 2.99, '2007-03-20 03:00:11.996577'); -INSERT INTO dvds.payment VALUES (23036, 36, 2, 13564, 1.99, '2007-03-20 03:03:12.996577'); -INSERT INTO dvds.payment VALUES (23037, 36, 1, 13674, 4.99, '2007-03-20 06:59:20.996577'); -INSERT INTO dvds.payment VALUES (23038, 36, 1, 14647, 9.99, '2007-03-21 17:43:59.996577'); -INSERT INTO dvds.payment VALUES (23039, 36, 2, 15657, 4.99, '2007-03-23 07:11:06.996577'); -INSERT INTO dvds.payment VALUES (23040, 37, 1, 10538, 2.99, '2007-03-01 10:51:07.996577'); -INSERT INTO dvds.payment VALUES (23041, 37, 1, 11176, 3.99, '2007-03-02 09:08:09.996577'); -INSERT INTO dvds.payment VALUES (23042, 37, 1, 13046, 7.99, '2007-03-19 07:49:36.996577'); -INSERT INTO dvds.payment VALUES (23043, 37, 2, 13147, 4.99, '2007-03-19 11:23:35.996577'); -INSERT INTO dvds.payment VALUES (23044, 37, 2, 13444, 0.99, '2007-03-19 22:28:50.996577'); -INSERT INTO dvds.payment VALUES (23045, 37, 2, 13493, 3.99, '2007-03-20 00:02:02.996577'); -INSERT INTO dvds.payment VALUES (23046, 37, 2, 14025, 8.99, '2007-03-20 19:48:02.996577'); -INSERT INTO dvds.payment VALUES (23047, 37, 1, 14084, 0.99, '2007-03-20 22:11:12.996577'); -INSERT INTO dvds.payment VALUES (23048, 37, 2, 14532, 2.99, '2007-03-21 13:43:29.996577'); -INSERT INTO dvds.payment VALUES (23049, 37, 1, 15028, 3.99, '2007-03-22 07:32:10.996577'); -INSERT INTO dvds.payment VALUES (23050, 37, 1, 15904, 0.99, '2007-03-23 16:00:45.996577'); -INSERT INTO dvds.payment VALUES (23051, 37, 2, 16035, 0.99, '2007-03-23 20:36:30.996577'); -INSERT INTO dvds.payment VALUES (23052, 38, 2, 10524, 6.99, '2007-03-01 10:21:38.996577'); -INSERT INTO dvds.payment VALUES (23053, 38, 2, 11049, 3.99, '2007-03-02 04:44:06.996577'); -INSERT INTO dvds.payment VALUES (23054, 38, 1, 11344, 2.99, '2007-03-02 15:41:52.996577'); -INSERT INTO dvds.payment VALUES (23055, 38, 1, 11817, 4.99, '2007-03-17 10:48:27.996577'); -INSERT INTO dvds.payment VALUES (23056, 38, 2, 12092, 0.99, '2007-03-17 20:56:41.996577'); -INSERT INTO dvds.payment VALUES (23057, 38, 2, 12187, 1.99, '2007-03-18 00:14:16.996577'); -INSERT INTO dvds.payment VALUES (23058, 38, 1, 14554, 4.99, '2007-03-21 14:31:27.996577'); -INSERT INTO dvds.payment VALUES (23059, 38, 2, 14632, 2.99, '2007-03-21 17:16:32.996577'); -INSERT INTO dvds.payment VALUES (23060, 38, 1, 14787, 6.99, '2007-03-21 22:54:25.996577'); -INSERT INTO dvds.payment VALUES (23061, 38, 1, 15668, 2.99, '2007-03-23 07:30:30.996577'); -INSERT INTO dvds.payment VALUES (23062, 38, 1, 15738, 5.99, '2007-03-23 10:24:16.996577'); -INSERT INTO dvds.payment VALUES (23063, 39, 1, 10251, 4.99, '2007-03-01 01:07:38.996577'); -INSERT INTO dvds.payment VALUES (23064, 39, 2, 10269, 4.99, '2007-03-01 01:37:52.996577'); -INSERT INTO dvds.payment VALUES (23065, 39, 2, 10630, 0.99, '2007-03-01 14:03:12.996577'); -INSERT INTO dvds.payment VALUES (23066, 39, 1, 10639, 9.99, '2007-03-01 14:13:09.996577'); -INSERT INTO dvds.payment VALUES (23067, 39, 2, 12268, 0.99, '2007-03-18 02:55:20.996577'); -INSERT INTO dvds.payment VALUES (23068, 39, 2, 12459, 4.99, '2007-03-18 09:53:37.996577'); -INSERT INTO dvds.payment VALUES (23069, 39, 2, 13101, 7.99, '2007-03-19 09:30:20.996577'); -INSERT INTO dvds.payment VALUES (23070, 39, 2, 15124, 5.99, '2007-03-22 11:20:04.996577'); -INSERT INTO dvds.payment VALUES (23071, 40, 1, 10442, 2.99, '2007-03-01 07:26:34.996577'); -INSERT INTO dvds.payment VALUES (23072, 40, 2, 11919, 0.99, '2007-03-17 14:37:15.996577'); -INSERT INTO dvds.payment VALUES (23073, 40, 2, 11948, 3.99, '2007-03-17 15:39:31.996577'); -INSERT INTO dvds.payment VALUES (23074, 40, 2, 12396, 9.99, '2007-03-18 07:39:49.996577'); -INSERT INTO dvds.payment VALUES (23075, 40, 2, 12877, 2.99, '2007-03-19 01:45:24.996577'); -INSERT INTO dvds.payment VALUES (23076, 40, 1, 13149, 6.99, '2007-03-19 11:35:38.996577'); -INSERT INTO dvds.payment VALUES (23077, 40, 1, 13376, 0.99, '2007-03-19 20:00:11.996577'); -INSERT INTO dvds.payment VALUES (23078, 40, 1, 13840, 5.99, '2007-03-20 12:51:46.996577'); -INSERT INTO dvds.payment VALUES (23079, 40, 1, 13951, 2.99, '2007-03-20 16:26:37.996577'); -INSERT INTO dvds.payment VALUES (23080, 40, 1, 14260, 6.99, '2007-03-21 04:29:34.996577'); -INSERT INTO dvds.payment VALUES (23081, 40, 1, 15193, 2.99, '2007-03-22 14:35:15.996577'); -INSERT INTO dvds.payment VALUES (23082, 41, 2, 10495, 4.99, '2007-03-01 09:14:17.996577'); -INSERT INTO dvds.payment VALUES (23083, 41, 1, 10853, 5.99, '2007-03-01 22:29:20.996577'); -INSERT INTO dvds.payment VALUES (23084, 41, 2, 12147, 2.99, '2007-03-17 22:38:46.996577'); -INSERT INTO dvds.payment VALUES (23085, 41, 2, 12173, 3.99, '2007-03-17 23:37:00.996577'); -INSERT INTO dvds.payment VALUES (23086, 41, 2, 12821, 0.99, '2007-03-18 23:35:28.996577'); -INSERT INTO dvds.payment VALUES (23087, 41, 2, 14539, 7.99, '2007-03-21 13:58:13.996577'); -INSERT INTO dvds.payment VALUES (23088, 41, 2, 15860, 4.99, '2007-03-23 14:37:06.996577'); -INSERT INTO dvds.payment VALUES (23089, 42, 2, 10345, 2.99, '2007-03-01 03:47:22.996577'); -INSERT INTO dvds.payment VALUES (23090, 42, 2, 10845, 2.99, '2007-03-01 22:15:29.996577'); -INSERT INTO dvds.payment VALUES (23091, 42, 1, 10935, 5.99, '2007-03-02 01:23:19.996577'); -INSERT INTO dvds.payment VALUES (23092, 42, 1, 12478, 4.99, '2007-03-18 10:53:42.996577'); -INSERT INTO dvds.payment VALUES (23093, 42, 2, 12499, 2.99, '2007-03-18 11:34:03.996577'); -INSERT INTO dvds.payment VALUES (23094, 42, 1, 14461, 7.99, '2007-03-21 11:18:59.996577'); -INSERT INTO dvds.payment VALUES (23095, 42, 1, 15442, 2.99, '2007-03-22 23:11:15.996577'); -INSERT INTO dvds.payment VALUES (23096, 43, 1, 11753, 4.99, '2007-03-17 07:40:18.996577'); -INSERT INTO dvds.payment VALUES (23097, 43, 1, 14244, 2.99, '2007-03-21 03:58:21.996577'); -INSERT INTO dvds.payment VALUES (23098, 43, 1, 14649, 4.99, '2007-03-21 17:47:47.996577'); -INSERT INTO dvds.payment VALUES (23099, 43, 2, 14837, 4.99, '2007-03-22 00:23:18.996577'); -INSERT INTO dvds.payment VALUES (23100, 43, 2, 15155, 4.99, '2007-03-22 12:56:12.996577'); -INSERT INTO dvds.payment VALUES (23101, 43, 2, 15800, 6.99, '2007-03-23 12:52:10.996577'); -INSERT INTO dvds.payment VALUES (23102, 43, 2, 15945, 2.99, '2007-03-23 17:20:07.996577'); -INSERT INTO dvds.payment VALUES (23103, 44, 1, 11364, 2.99, '2007-03-02 16:22:02.996577'); -INSERT INTO dvds.payment VALUES (23104, 44, 2, 12345, 3.99, '2007-03-18 05:45:24.996577'); -INSERT INTO dvds.payment VALUES (23105, 44, 1, 12504, 4.99, '2007-03-18 11:45:33.996577'); -INSERT INTO dvds.payment VALUES (23106, 44, 1, 12790, 6.99, '2007-03-18 22:45:20.996577'); -INSERT INTO dvds.payment VALUES (23107, 44, 2, 12982, 4.99, '2007-03-19 05:35:00.996577'); -INSERT INTO dvds.payment VALUES (23108, 44, 2, 15054, 2.99, '2007-03-22 08:42:59.996577'); -INSERT INTO dvds.payment VALUES (23109, 45, 1, 10507, 2.99, '2007-03-01 09:50:46.996577'); -INSERT INTO dvds.payment VALUES (23110, 45, 2, 10878, 6.99, '2007-03-01 23:01:38.996577'); -INSERT INTO dvds.payment VALUES (23111, 45, 1, 11004, 8.99, '2007-03-02 03:32:44.996577'); -INSERT INTO dvds.payment VALUES (23112, 45, 1, 11029, 4.99, '2007-03-02 04:19:36.996577'); -INSERT INTO dvds.payment VALUES (23113, 45, 2, 11483, 2.99, '2007-03-02 20:56:48.996577'); -INSERT INTO dvds.payment VALUES (23114, 45, 2, 11488, 3.99, '2007-03-02 21:03:41.996577'); -INSERT INTO dvds.payment VALUES (23115, 45, 1, 11725, 2.99, '2007-03-17 06:37:26.996577'); -INSERT INTO dvds.payment VALUES (23116, 45, 1, 13340, 3.99, '2007-03-19 18:47:05.996577'); -INSERT INTO dvds.payment VALUES (23117, 45, 2, 13394, 4.99, '2007-03-19 20:33:45.996577'); -INSERT INTO dvds.payment VALUES (23118, 45, 1, 14576, 6.99, '2007-03-21 15:20:29.996577'); -INSERT INTO dvds.payment VALUES (23119, 45, 1, 15812, 10.99, '2007-03-23 13:15:52.996577'); -INSERT INTO dvds.payment VALUES (23120, 45, 2, 16037, 7.99, '2007-03-23 20:41:30.996577'); -INSERT INTO dvds.payment VALUES (23121, 46, 2, 10428, 4.99, '2007-03-01 06:58:37.996577'); -INSERT INTO dvds.payment VALUES (23122, 46, 1, 10803, 4.99, '2007-03-01 20:50:33.996577'); -INSERT INTO dvds.payment VALUES (23123, 46, 1, 10827, 5.99, '2007-03-01 21:41:26.996577'); -INSERT INTO dvds.payment VALUES (23124, 46, 1, 11721, 0.99, '2007-03-17 06:17:43.996577'); -INSERT INTO dvds.payment VALUES (23125, 46, 2, 12095, 4.99, '2007-03-17 21:01:03.996577'); -INSERT INTO dvds.payment VALUES (23126, 46, 2, 12238, 2.99, '2007-03-18 01:53:34.996577'); -INSERT INTO dvds.payment VALUES (23127, 46, 2, 12280, 4.99, '2007-03-18 03:17:53.996577'); -INSERT INTO dvds.payment VALUES (23128, 46, 1, 12298, 2.99, '2007-03-18 03:58:57.996577'); -INSERT INTO dvds.payment VALUES (23129, 46, 2, 12455, 4.99, '2007-03-18 09:48:13.996577'); -INSERT INTO dvds.payment VALUES (23130, 46, 1, 13226, 0.99, '2007-03-19 14:34:02.996577'); -INSERT INTO dvds.payment VALUES (23131, 46, 2, 14144, 4.99, '2007-03-21 00:39:23.996577'); -INSERT INTO dvds.payment VALUES (23132, 46, 2, 14528, 6.99, '2007-03-21 13:36:31.996577'); -INSERT INTO dvds.payment VALUES (23133, 46, 1, 14940, 4.99, '2007-03-22 04:22:29.996577'); -INSERT INTO dvds.payment VALUES (23134, 46, 1, 15438, 2.99, '2007-03-22 23:00:23.996577'); -INSERT INTO dvds.payment VALUES (23135, 46, 1, 15708, 0.99, '2007-03-23 09:04:17.996577'); -INSERT INTO dvds.payment VALUES (23136, 46, 1, 15758, 5.99, '2007-03-23 11:15:52.996577'); -INSERT INTO dvds.payment VALUES (23137, 47, 1, 11126, 0.99, '2007-03-02 07:27:30.996577'); -INSERT INTO dvds.payment VALUES (23138, 47, 2, 11477, 5.99, '2007-03-02 20:37:27.996577'); -INSERT INTO dvds.payment VALUES (23139, 47, 1, 12215, 7.99, '2007-03-18 01:04:05.996577'); -INSERT INTO dvds.payment VALUES (23140, 47, 2, 12274, 7.99, '2007-03-18 03:10:13.996577'); -INSERT INTO dvds.payment VALUES (23141, 47, 1, 14397, 0.99, '2007-03-21 08:54:22.996577'); -INSERT INTO dvds.payment VALUES (23142, 47, 2, 15846, 2.99, '2007-03-23 14:07:44.996577'); -INSERT INTO dvds.payment VALUES (23143, 48, 2, 10276, 2.99, '2007-03-01 01:50:49.996577'); -INSERT INTO dvds.payment VALUES (23144, 48, 2, 14450, 1.99, '2007-03-21 10:49:51.996577'); -INSERT INTO dvds.payment VALUES (23145, 48, 2, 14536, 2.99, '2007-03-21 13:51:16.996577'); -INSERT INTO dvds.payment VALUES (23146, 48, 1, 15228, 3.99, '2007-03-22 15:55:49.996577'); -INSERT INTO dvds.payment VALUES (23147, 49, 1, 10266, 0.99, '2007-03-01 01:34:25.996577'); -INSERT INTO dvds.payment VALUES (23148, 49, 1, 10588, 2.99, '2007-03-01 12:38:47.996577'); -INSERT INTO dvds.payment VALUES (23149, 49, 1, 10814, 2.99, '2007-03-01 21:11:38.996577'); -INSERT INTO dvds.payment VALUES (23150, 49, 2, 14168, 5.99, '2007-03-21 01:28:29.996577'); -INSERT INTO dvds.payment VALUES (23151, 49, 1, 14627, 6.99, '2007-03-21 17:04:20.996577'); -INSERT INTO dvds.payment VALUES (23152, 49, 1, 14676, 2.99, '2007-03-21 18:30:44.996577'); -INSERT INTO dvds.payment VALUES (23153, 50, 2, 10261, 4.99, '2007-03-01 01:26:53.996577'); -INSERT INTO dvds.payment VALUES (23154, 50, 2, 10485, 7.99, '2007-03-01 08:49:00.996577'); -INSERT INTO dvds.payment VALUES (23155, 50, 2, 11053, 3.99, '2007-03-02 04:55:39.996577'); -INSERT INTO dvds.payment VALUES (23156, 50, 1, 12766, 6.99, '2007-03-18 21:53:46.996577'); -INSERT INTO dvds.payment VALUES (23157, 50, 2, 13136, 7.99, '2007-03-19 10:52:49.996577'); -INSERT INTO dvds.payment VALUES (23158, 50, 1, 14054, 4.99, '2007-03-20 20:45:27.996577'); -INSERT INTO dvds.payment VALUES (23159, 50, 2, 15138, 2.99, '2007-03-22 12:04:56.996577'); -INSERT INTO dvds.payment VALUES (23160, 50, 2, 15388, 6.99, '2007-03-22 21:17:49.996577'); -INSERT INTO dvds.payment VALUES (23161, 50, 1, 16015, 4.99, '2007-03-23 19:53:29.996577'); -INSERT INTO dvds.payment VALUES (23162, 51, 2, 10244, 4.99, '2007-03-01 00:48:27.996577'); -INSERT INTO dvds.payment VALUES (23163, 51, 1, 10780, 2.99, '2007-03-01 19:42:50.996577'); -INSERT INTO dvds.payment VALUES (23164, 51, 1, 10894, 0.99, '2007-03-01 23:41:01.996577'); -INSERT INTO dvds.payment VALUES (23165, 51, 1, 11302, 2.99, '2007-03-02 14:06:29.996577'); -INSERT INTO dvds.payment VALUES (23166, 51, 2, 11685, 4.99, '2007-03-17 05:07:42.996577'); -INSERT INTO dvds.payment VALUES (23167, 51, 2, 11751, 6.99, '2007-03-17 07:36:22.996577'); -INSERT INTO dvds.payment VALUES (23168, 51, 1, 12184, 0.99, '2007-03-18 00:04:26.996577'); -INSERT INTO dvds.payment VALUES (23169, 51, 1, 12725, 4.99, '2007-03-18 20:11:35.996577'); -INSERT INTO dvds.payment VALUES (23170, 51, 2, 13098, 2.99, '2007-03-19 09:20:25.996577'); -INSERT INTO dvds.payment VALUES (23171, 51, 1, 13302, 2.99, '2007-03-19 17:22:52.996577'); -INSERT INTO dvds.payment VALUES (23172, 51, 1, 13868, 0.99, '2007-03-20 13:34:52.996577'); -INSERT INTO dvds.payment VALUES (23173, 51, 2, 13882, 2.99, '2007-03-20 13:51:52.996577'); -INSERT INTO dvds.payment VALUES (23174, 51, 2, 14221, 6.99, '2007-03-21 03:18:07.996577'); -INSERT INTO dvds.payment VALUES (23175, 51, 2, 14512, 4.99, '2007-03-21 13:15:35.996577'); -INSERT INTO dvds.payment VALUES (23176, 51, 1, 14617, 4.99, '2007-03-21 16:36:06.996577'); -INSERT INTO dvds.payment VALUES (23177, 51, 1, 14903, 4.99, '2007-03-22 03:00:16.996577'); -INSERT INTO dvds.payment VALUES (23178, 52, 2, 10591, 0.99, '2007-03-01 12:40:55.996577'); -INSERT INTO dvds.payment VALUES (23179, 52, 1, 10635, 0.99, '2007-03-01 14:06:24.996577'); -INSERT INTO dvds.payment VALUES (23180, 52, 1, 11068, 0.99, '2007-03-02 05:36:33.996577'); -INSERT INTO dvds.payment VALUES (23181, 52, 1, 11731, 3.99, '2007-03-17 06:53:01.996577'); -INSERT INTO dvds.payment VALUES (23182, 52, 2, 12200, 2.99, '2007-03-18 00:40:59.996577'); -INSERT INTO dvds.payment VALUES (23183, 52, 2, 12520, 0.99, '2007-03-18 12:11:11.996577'); -INSERT INTO dvds.payment VALUES (23184, 52, 2, 13090, 5.99, '2007-03-19 09:08:20.996577'); -INSERT INTO dvds.payment VALUES (23185, 52, 2, 14820, 2.99, '2007-03-21 23:47:03.996577'); -INSERT INTO dvds.payment VALUES (23186, 52, 1, 14822, 5.99, '2007-03-21 23:49:40.996577'); -INSERT INTO dvds.payment VALUES (23187, 52, 2, 14961, 6.99, '2007-03-22 05:04:16.996577'); -INSERT INTO dvds.payment VALUES (23188, 52, 2, 15891, 5.99, '2007-03-23 15:28:38.996577'); -INSERT INTO dvds.payment VALUES (23189, 53, 1, 10594, 3.99, '2007-03-01 12:43:25.996577'); -INSERT INTO dvds.payment VALUES (23190, 53, 1, 12054, 5.99, '2007-03-17 19:28:22.996577'); -INSERT INTO dvds.payment VALUES (23191, 53, 1, 12580, 2.99, '2007-03-18 14:17:34.996577'); -INSERT INTO dvds.payment VALUES (23192, 53, 1, 13049, 5.99, '2007-03-19 07:54:06.996577'); -INSERT INTO dvds.payment VALUES (23193, 53, 2, 13789, 2.99, '2007-03-20 10:45:04.996577'); -INSERT INTO dvds.payment VALUES (23194, 53, 1, 14061, 2.99, '2007-03-20 21:00:37.996577'); -INSERT INTO dvds.payment VALUES (23195, 53, 2, 14091, 0.99, '2007-03-20 22:39:43.996577'); -INSERT INTO dvds.payment VALUES (23196, 53, 2, 14119, 5.99, '2007-03-20 23:44:25.996577'); -INSERT INTO dvds.payment VALUES (23197, 53, 1, 14671, 4.99, '2007-03-21 18:27:56.996577'); -INSERT INTO dvds.payment VALUES (23198, 53, 2, 14811, 0.99, '2007-03-21 23:37:30.996577'); -INSERT INTO dvds.payment VALUES (23199, 54, 2, 10489, 5.99, '2007-03-01 08:56:08.996577'); -INSERT INTO dvds.payment VALUES (23200, 54, 2, 10882, 5.99, '2007-03-01 23:15:42.996577'); -INSERT INTO dvds.payment VALUES (23201, 54, 1, 10956, 4.99, '2007-03-02 02:01:40.996577'); -INSERT INTO dvds.payment VALUES (23202, 54, 1, 11182, 4.99, '2007-03-02 09:23:40.996577'); -INSERT INTO dvds.payment VALUES (23203, 54, 2, 11887, 2.99, '2007-03-17 13:31:39.996577'); -INSERT INTO dvds.payment VALUES (23204, 54, 1, 12526, 2.99, '2007-03-18 12:17:09.996577'); -INSERT INTO dvds.payment VALUES (23205, 54, 2, 12775, 5.99, '2007-03-18 22:04:22.996577'); -INSERT INTO dvds.payment VALUES (23206, 54, 1, 12811, 4.99, '2007-03-18 23:19:54.996577'); -INSERT INTO dvds.payment VALUES (23207, 54, 2, 12872, 0.99, '2007-03-19 01:26:03.996577'); -INSERT INTO dvds.payment VALUES (23208, 54, 2, 13315, 2.99, '2007-03-19 17:44:44.996577'); -INSERT INTO dvds.payment VALUES (23209, 54, 1, 13890, 0.99, '2007-03-20 14:09:26.996577'); -INSERT INTO dvds.payment VALUES (23210, 54, 1, 14215, 4.99, '2007-03-21 03:02:37.996577'); -INSERT INTO dvds.payment VALUES (23211, 54, 1, 15226, 10.99, '2007-03-22 15:48:43.996577'); -INSERT INTO dvds.payment VALUES (23212, 54, 1, 15567, 4.99, '2007-03-23 03:49:02.996577'); -INSERT INTO dvds.payment VALUES (23213, 55, 2, 11287, 1.99, '2007-03-02 13:18:17.996577'); -INSERT INTO dvds.payment VALUES (23214, 55, 1, 12776, 4.99, '2007-03-18 22:05:59.996577'); -INSERT INTO dvds.payment VALUES (23215, 55, 1, 12808, 4.99, '2007-03-18 23:09:07.996577'); -INSERT INTO dvds.payment VALUES (23216, 55, 2, 12972, 1.99, '2007-03-19 05:11:54.996577'); -INSERT INTO dvds.payment VALUES (23217, 55, 1, 13345, 6.99, '2007-03-19 18:53:50.996577'); -INSERT INTO dvds.payment VALUES (23218, 55, 1, 14667, 2.99, '2007-03-21 18:19:37.996577'); -INSERT INTO dvds.payment VALUES (23219, 55, 1, 15296, 4.99, '2007-03-22 18:05:46.996577'); -INSERT INTO dvds.payment VALUES (23220, 56, 2, 10356, 6.99, '2007-03-01 04:17:43.996577'); -INSERT INTO dvds.payment VALUES (23221, 56, 2, 10678, 0.99, '2007-03-01 15:54:50.996577'); -INSERT INTO dvds.payment VALUES (23222, 56, 1, 10946, 4.99, '2007-03-02 01:49:05.996577'); -INSERT INTO dvds.payment VALUES (23223, 56, 1, 11358, 5.99, '2007-03-02 16:13:28.996577'); -INSERT INTO dvds.payment VALUES (23224, 56, 1, 11656, 4.99, '2007-03-17 03:39:35.996577'); -INSERT INTO dvds.payment VALUES (23225, 56, 2, 12537, 1.99, '2007-03-18 12:35:05.996577'); -INSERT INTO dvds.payment VALUES (23226, 56, 2, 12713, 4.99, '2007-03-18 19:35:54.996577'); -INSERT INTO dvds.payment VALUES (23227, 56, 2, 13560, 8.99, '2007-03-20 02:45:42.996577'); -INSERT INTO dvds.payment VALUES (23228, 56, 1, 13769, 5.99, '2007-03-20 10:12:18.996577'); -INSERT INTO dvds.payment VALUES (23229, 56, 2, 14291, 3.99, '2007-03-21 05:31:31.996577'); -INSERT INTO dvds.payment VALUES (23230, 56, 2, 14534, 0.99, '2007-03-21 13:44:55.996577'); -INSERT INTO dvds.payment VALUES (23231, 56, 2, 15702, 7.99, '2007-03-23 08:51:54.996577'); -INSERT INTO dvds.payment VALUES (23232, 57, 2, 12925, 5.99, '2007-03-19 03:27:27.996577'); -INSERT INTO dvds.payment VALUES (23233, 57, 2, 13163, 0.99, '2007-03-19 11:58:12.996577'); -INSERT INTO dvds.payment VALUES (23234, 57, 2, 13743, 0.99, '2007-03-20 09:19:53.996577'); -INSERT INTO dvds.payment VALUES (23235, 57, 2, 13929, 9.99, '2007-03-20 15:42:14.996577'); -INSERT INTO dvds.payment VALUES (23236, 57, 2, 15571, 0.99, '2007-03-23 03:54:56.996577'); -INSERT INTO dvds.payment VALUES (23237, 57, 2, 15871, 9.99, '2007-03-23 14:52:50.996577'); -INSERT INTO dvds.payment VALUES (23238, 58, 2, 10256, 4.99, '2007-03-01 01:15:37.996577'); -INSERT INTO dvds.payment VALUES (23239, 58, 1, 10668, 0.99, '2007-03-01 15:28:53.996577'); -INSERT INTO dvds.payment VALUES (23240, 58, 1, 11416, 6.99, '2007-03-02 18:12:30.996577'); -INSERT INTO dvds.payment VALUES (23241, 58, 2, 12292, 8.99, '2007-03-18 03:37:20.996577'); -INSERT INTO dvds.payment VALUES (23242, 58, 1, 13194, 6.99, '2007-03-19 13:02:38.996577'); -INSERT INTO dvds.payment VALUES (23243, 58, 1, 13207, 3.99, '2007-03-19 13:43:04.996577'); -INSERT INTO dvds.payment VALUES (23244, 58, 1, 13930, 2.99, '2007-03-20 15:43:32.996577'); -INSERT INTO dvds.payment VALUES (23245, 58, 2, 13973, 4.99, '2007-03-20 17:21:09.996577'); -INSERT INTO dvds.payment VALUES (23246, 58, 2, 14305, 5.99, '2007-03-21 05:57:31.996577'); -INSERT INTO dvds.payment VALUES (23247, 58, 1, 14665, 6.99, '2007-03-21 18:18:12.996577'); -INSERT INTO dvds.payment VALUES (23248, 58, 1, 14989, 4.99, '2007-03-22 06:15:33.996577'); -INSERT INTO dvds.payment VALUES (23249, 59, 2, 11396, 4.99, '2007-03-02 17:16:55.996577'); -INSERT INTO dvds.payment VALUES (23250, 59, 1, 12833, 5.99, '2007-03-19 00:10:54.996577'); -INSERT INTO dvds.payment VALUES (23251, 59, 2, 13282, 2.99, '2007-03-19 16:36:44.996577'); -INSERT INTO dvds.payment VALUES (23252, 59, 1, 13573, 2.99, '2007-03-20 03:38:40.996577'); -INSERT INTO dvds.payment VALUES (23253, 59, 2, 13921, 4.99, '2007-03-20 15:25:37.996577'); -INSERT INTO dvds.payment VALUES (23254, 59, 1, 14135, 5.99, '2007-03-21 00:22:20.996577'); -INSERT INTO dvds.payment VALUES (23255, 59, 1, 14977, 5.99, '2007-03-22 05:41:19.996577'); -INSERT INTO dvds.payment VALUES (23256, 59, 2, 15271, 5.99, '2007-03-22 17:17:14.996577'); -INSERT INTO dvds.payment VALUES (23257, 59, 2, 15744, 4.99, '2007-03-23 10:44:17.996577'); -INSERT INTO dvds.payment VALUES (23258, 59, 2, 15905, 2.99, '2007-03-23 16:01:30.996577'); -INSERT INTO dvds.payment VALUES (23259, 60, 2, 10680, 0.99, '2007-03-01 15:56:31.996577'); -INSERT INTO dvds.payment VALUES (23260, 60, 1, 11092, 4.99, '2007-03-02 06:27:16.996577'); -INSERT INTO dvds.payment VALUES (23261, 60, 1, 11404, 8.99, '2007-03-02 17:41:06.996577'); -INSERT INTO dvds.payment VALUES (23262, 60, 1, 12084, 1.99, '2007-03-17 20:45:15.996577'); -INSERT INTO dvds.payment VALUES (23263, 60, 2, 12614, 7.99, '2007-03-18 15:44:29.996577'); -INSERT INTO dvds.payment VALUES (23264, 60, 1, 15093, 2.99, '2007-03-22 10:07:29.996577'); -INSERT INTO dvds.payment VALUES (23265, 60, 1, 15318, 2.99, '2007-03-22 18:43:42.996577'); -INSERT INTO dvds.payment VALUES (23266, 60, 1, 15618, 5.99, '2007-03-23 05:36:24.996577'); -INSERT INTO dvds.payment VALUES (23267, 60, 1, 15632, 0.99, '2007-03-23 05:58:52.996577'); -INSERT INTO dvds.payment VALUES (23268, 60, 1, 15649, 2.99, '2007-03-23 06:56:29.996577'); -INSERT INTO dvds.payment VALUES (23269, 61, 2, 10549, 0.99, '2007-03-01 11:15:05.996577'); -INSERT INTO dvds.payment VALUES (23270, 61, 2, 11379, 2.99, '2007-03-02 16:45:21.996577'); -INSERT INTO dvds.payment VALUES (23271, 61, 1, 12072, 9.99, '2007-03-17 20:18:51.996577'); -INSERT INTO dvds.payment VALUES (23272, 61, 1, 13450, 0.99, '2007-03-19 22:46:41.996577'); -INSERT INTO dvds.payment VALUES (23273, 61, 1, 13830, 0.99, '2007-03-20 12:26:25.996577'); -INSERT INTO dvds.payment VALUES (23274, 61, 2, 15089, 6.99, '2007-03-22 10:02:32.996577'); -INSERT INTO dvds.payment VALUES (23275, 61, 1, 15681, 1.99, '2007-03-23 08:04:00.996577'); -INSERT INTO dvds.payment VALUES (23276, 62, 1, 10815, 2.99, '2007-03-01 21:14:47.996577'); -INSERT INTO dvds.payment VALUES (23277, 62, 1, 11297, 5.99, '2007-03-02 13:51:13.996577'); -INSERT INTO dvds.payment VALUES (23278, 62, 1, 11988, 0.99, '2007-03-17 16:52:16.996577'); -INSERT INTO dvds.payment VALUES (23279, 62, 2, 13512, 8.99, '2007-03-20 00:55:39.996577'); -INSERT INTO dvds.payment VALUES (23280, 62, 2, 14574, 1.99, '2007-03-21 15:19:00.996577'); -INSERT INTO dvds.payment VALUES (23281, 62, 2, 14594, 2.99, '2007-03-21 16:02:50.996577'); -INSERT INTO dvds.payment VALUES (23282, 62, 2, 14821, 4.99, '2007-03-21 23:48:45.996577'); -INSERT INTO dvds.payment VALUES (23283, 62, 1, 15464, 6.99, '2007-03-22 23:43:44.996577'); -INSERT INTO dvds.payment VALUES (23284, 62, 1, 15591, 0.99, '2007-03-23 04:40:18.996577'); -INSERT INTO dvds.payment VALUES (23285, 63, 1, 10288, 6.99, '2007-03-01 02:07:08.996577'); -INSERT INTO dvds.payment VALUES (23286, 63, 1, 11902, 4.99, '2007-03-17 14:06:00.996577'); -INSERT INTO dvds.payment VALUES (23287, 63, 2, 12342, 2.99, '2007-03-18 05:41:12.996577'); -INSERT INTO dvds.payment VALUES (23288, 63, 2, 12515, 0.99, '2007-03-18 12:07:52.996577'); -INSERT INTO dvds.payment VALUES (23289, 63, 1, 12954, 7.99, '2007-03-19 04:33:00.996577'); -INSERT INTO dvds.payment VALUES (23290, 63, 1, 13089, 0.99, '2007-03-19 09:07:22.996577'); -INSERT INTO dvds.payment VALUES (23291, 63, 1, 13624, 8.99, '2007-03-20 05:19:28.996577'); -INSERT INTO dvds.payment VALUES (23292, 63, 1, 14931, 3.99, '2007-03-22 04:07:21.996577'); -INSERT INTO dvds.payment VALUES (23293, 63, 1, 15060, 5.99, '2007-03-22 08:52:58.996577'); -INSERT INTO dvds.payment VALUES (23294, 63, 1, 15229, 2.99, '2007-03-22 15:58:51.996577'); -INSERT INTO dvds.payment VALUES (23295, 64, 2, 10714, 4.99, '2007-03-01 17:19:55.996577'); -INSERT INTO dvds.payment VALUES (23296, 64, 1, 10889, 4.99, '2007-03-01 23:22:59.996577'); -INSERT INTO dvds.payment VALUES (23297, 64, 1, 12409, 0.99, '2007-03-18 08:12:24.996577'); -INSERT INTO dvds.payment VALUES (23298, 64, 1, 13773, 2.99, '2007-03-20 10:18:40.996577'); -INSERT INTO dvds.payment VALUES (23299, 64, 1, 13971, 0.99, '2007-03-20 17:13:19.996577'); -INSERT INTO dvds.payment VALUES (23300, 64, 1, 14167, 5.99, '2007-03-21 01:28:14.996577'); -INSERT INTO dvds.payment VALUES (23301, 64, 2, 14316, 0.99, '2007-03-21 06:28:13.996577'); -INSERT INTO dvds.payment VALUES (23302, 65, 2, 11100, 5.99, '2007-03-02 06:36:26.996577'); -INSERT INTO dvds.payment VALUES (23303, 65, 1, 11227, 8.99, '2007-03-02 11:16:31.996577'); -INSERT INTO dvds.payment VALUES (23304, 65, 2, 11461, 4.99, '2007-03-02 20:03:26.996577'); -INSERT INTO dvds.payment VALUES (23305, 65, 2, 11845, 2.99, '2007-03-17 11:45:04.996577'); -INSERT INTO dvds.payment VALUES (23306, 65, 1, 12114, 7.99, '2007-03-17 21:30:26.996577'); -INSERT INTO dvds.payment VALUES (23307, 65, 1, 12688, 6.99, '2007-03-18 18:28:20.996577'); -INSERT INTO dvds.payment VALUES (23308, 65, 2, 13692, 0.99, '2007-03-20 07:36:18.996577'); -INSERT INTO dvds.payment VALUES (23309, 65, 2, 14140, 6.99, '2007-03-21 00:33:23.996577'); -INSERT INTO dvds.payment VALUES (23310, 65, 1, 14356, 0.99, '2007-03-21 07:37:17.996577'); -INSERT INTO dvds.payment VALUES (23311, 66, 1, 10419, 0.99, '2007-03-01 06:41:48.996577'); -INSERT INTO dvds.payment VALUES (23312, 66, 2, 11028, 5.99, '2007-03-02 04:16:46.996577'); -INSERT INTO dvds.payment VALUES (23313, 66, 2, 11360, 2.99, '2007-03-02 16:14:30.996577'); -INSERT INTO dvds.payment VALUES (23314, 66, 1, 11683, 5.99, '2007-03-17 04:43:43.996577'); -INSERT INTO dvds.payment VALUES (23315, 66, 1, 11935, 0.99, '2007-03-17 15:10:39.996577'); -INSERT INTO dvds.payment VALUES (23316, 66, 1, 12699, 0.99, '2007-03-18 18:49:25.996577'); -INSERT INTO dvds.payment VALUES (23317, 66, 1, 13900, 2.99, '2007-03-20 14:34:07.996577'); -INSERT INTO dvds.payment VALUES (23318, 66, 2, 14123, 2.99, '2007-03-20 23:59:51.996577'); -INSERT INTO dvds.payment VALUES (23319, 66, 1, 14217, 6.99, '2007-03-21 03:06:22.996577'); -INSERT INTO dvds.payment VALUES (23320, 66, 2, 14351, 2.99, '2007-03-21 07:32:46.996577'); -INSERT INTO dvds.payment VALUES (23321, 66, 2, 14429, 0.99, '2007-03-21 09:58:09.996577'); -INSERT INTO dvds.payment VALUES (23322, 66, 2, 15026, 4.99, '2007-03-22 07:30:18.996577'); -INSERT INTO dvds.payment VALUES (23323, 66, 1, 15598, 8.99, '2007-03-23 04:51:52.996577'); -INSERT INTO dvds.payment VALUES (23324, 67, 1, 11295, 8.99, '2007-03-02 13:38:32.996577'); -INSERT INTO dvds.payment VALUES (23325, 67, 1, 11894, 8.99, '2007-03-17 13:43:27.996577'); -INSERT INTO dvds.payment VALUES (23326, 67, 2, 13437, 4.99, '2007-03-19 22:06:18.996577'); -INSERT INTO dvds.payment VALUES (23327, 67, 1, 13652, 2.99, '2007-03-20 06:21:00.996577'); -INSERT INTO dvds.payment VALUES (23328, 67, 2, 13791, 4.99, '2007-03-20 10:49:31.996577'); -INSERT INTO dvds.payment VALUES (23329, 67, 2, 13837, 2.99, '2007-03-20 12:47:29.996577'); -INSERT INTO dvds.payment VALUES (23330, 67, 2, 14967, 4.99, '2007-03-22 05:14:29.996577'); -INSERT INTO dvds.payment VALUES (23331, 67, 2, 15085, 2.99, '2007-03-22 09:47:48.996577'); -INSERT INTO dvds.payment VALUES (23332, 68, 1, 11277, 2.99, '2007-03-02 12:57:16.996577'); -INSERT INTO dvds.payment VALUES (23333, 68, 2, 12742, 2.99, '2007-03-18 20:50:29.996577'); -INSERT INTO dvds.payment VALUES (23334, 68, 2, 13475, 4.99, '2007-03-19 23:33:31.996577'); -INSERT INTO dvds.payment VALUES (23335, 68, 2, 14242, 0.99, '2007-03-21 03:54:25.996577'); -INSERT INTO dvds.payment VALUES (23336, 68, 2, 14455, 5.99, '2007-03-21 11:04:37.996577'); -INSERT INTO dvds.payment VALUES (23337, 68, 1, 14947, 1.99, '2007-03-22 04:36:18.996577'); -INSERT INTO dvds.payment VALUES (23338, 68, 1, 15524, 4.99, '2007-03-23 02:04:52.996577'); -INSERT INTO dvds.payment VALUES (23339, 69, 1, 11943, 3.99, '2007-03-17 15:29:08.996577'); -INSERT INTO dvds.payment VALUES (23340, 69, 1, 12012, 2.99, '2007-03-17 17:49:14.996577'); -INSERT INTO dvds.payment VALUES (23341, 69, 1, 12121, 2.99, '2007-03-17 21:49:06.996577'); -INSERT INTO dvds.payment VALUES (23342, 69, 1, 12966, 5.99, '2007-03-19 05:06:14.996577'); -INSERT INTO dvds.payment VALUES (23343, 69, 1, 13023, 5.99, '2007-03-19 06:42:20.996577'); -INSERT INTO dvds.payment VALUES (23344, 69, 2, 14311, 3.99, '2007-03-21 06:14:13.996577'); -INSERT INTO dvds.payment VALUES (23345, 69, 2, 14685, 0.99, '2007-03-21 18:59:51.996577'); -INSERT INTO dvds.payment VALUES (23346, 69, 2, 14767, 2.99, '2007-03-21 22:11:26.996577'); -INSERT INTO dvds.payment VALUES (23347, 69, 1, 15547, 2.99, '2007-03-23 02:54:16.996577'); -INSERT INTO dvds.payment VALUES (23348, 70, 1, 11274, 9.99, '2007-03-02 12:52:34.996577'); -INSERT INTO dvds.payment VALUES (23349, 70, 1, 11901, 2.99, '2007-03-17 14:04:13.996577'); -INSERT INTO dvds.payment VALUES (23350, 70, 1, 12003, 4.99, '2007-03-17 17:24:31.996577'); -INSERT INTO dvds.payment VALUES (23351, 70, 2, 12218, 4.99, '2007-03-18 01:16:40.996577'); -INSERT INTO dvds.payment VALUES (23352, 70, 1, 12581, 6.99, '2007-03-18 14:17:41.996577'); -INSERT INTO dvds.payment VALUES (23353, 70, 1, 12951, 3.99, '2007-03-19 04:25:10.996577'); -INSERT INTO dvds.payment VALUES (23354, 70, 2, 13680, 4.99, '2007-03-20 07:12:32.996577'); -INSERT INTO dvds.payment VALUES (23355, 70, 2, 15238, 0.99, '2007-03-22 16:14:38.996577'); -INSERT INTO dvds.payment VALUES (23356, 70, 1, 15616, 3.99, '2007-03-23 05:35:04.996577'); -INSERT INTO dvds.payment VALUES (23357, 71, 1, 12417, 4.99, '2007-03-18 08:25:26.996577'); -INSERT INTO dvds.payment VALUES (23358, 71, 1, 14105, 7.99, '2007-03-20 23:13:00.996577'); -INSERT INTO dvds.payment VALUES (23359, 71, 1, 14228, 3.99, '2007-03-21 03:25:34.996577'); -INSERT INTO dvds.payment VALUES (23360, 71, 2, 14781, 4.99, '2007-03-21 22:43:38.996577'); -INSERT INTO dvds.payment VALUES (23361, 71, 2, 14904, 3.99, '2007-03-22 03:00:27.996577'); -INSERT INTO dvds.payment VALUES (23362, 71, 1, 15704, 4.99, '2007-03-23 08:54:11.996577'); -INSERT INTO dvds.payment VALUES (23363, 71, 1, 16000, 0.99, '2007-03-23 19:13:02.996577'); -INSERT INTO dvds.payment VALUES (23364, 72, 2, 10267, 0.99, '2007-03-01 01:35:52.996577'); -INSERT INTO dvds.payment VALUES (23365, 72, 2, 11206, 6.99, '2007-03-02 10:26:29.996577'); -INSERT INTO dvds.payment VALUES (23366, 72, 2, 11422, 5.99, '2007-03-02 18:20:34.996577'); -INSERT INTO dvds.payment VALUES (23367, 72, 1, 11630, 2.99, '2007-03-17 02:56:12.996577'); -INSERT INTO dvds.payment VALUES (23368, 72, 1, 11679, 4.99, '2007-03-17 04:37:20.996577'); -INSERT INTO dvds.payment VALUES (23369, 72, 1, 11923, 2.99, '2007-03-17 14:50:13.996577'); -INSERT INTO dvds.payment VALUES (23370, 72, 2, 12020, 2.99, '2007-03-17 18:18:59.996577'); -INSERT INTO dvds.payment VALUES (23371, 72, 1, 12448, 0.99, '2007-03-18 09:27:30.996577'); -INSERT INTO dvds.payment VALUES (23372, 72, 2, 12593, 0.99, '2007-03-18 14:46:20.996577'); -INSERT INTO dvds.payment VALUES (23373, 72, 1, 13145, 0.99, '2007-03-19 11:22:19.996577'); -INSERT INTO dvds.payment VALUES (23374, 72, 2, 13327, 4.99, '2007-03-19 18:24:11.996577'); -INSERT INTO dvds.payment VALUES (23375, 72, 2, 13597, 0.99, '2007-03-20 04:27:31.996577'); -INSERT INTO dvds.payment VALUES (23376, 72, 2, 13660, 4.99, '2007-03-20 06:34:22.996577'); -INSERT INTO dvds.payment VALUES (23377, 72, 1, 14020, 0.99, '2007-03-20 19:28:09.996577'); -INSERT INTO dvds.payment VALUES (23378, 72, 2, 15110, 0.99, '2007-03-22 10:45:12.996577'); -INSERT INTO dvds.payment VALUES (23379, 72, 2, 15146, 2.99, '2007-03-22 12:26:21.996577'); -INSERT INTO dvds.payment VALUES (23380, 73, 2, 10434, 4.99, '2007-03-01 07:15:26.996577'); -INSERT INTO dvds.payment VALUES (23381, 73, 1, 11102, 4.99, '2007-03-02 06:36:56.996577'); -INSERT INTO dvds.payment VALUES (23382, 73, 2, 11155, 0.99, '2007-03-02 08:23:54.996577'); -INSERT INTO dvds.payment VALUES (23383, 73, 2, 11349, 4.99, '2007-03-02 15:50:15.996577'); -INSERT INTO dvds.payment VALUES (23384, 73, 2, 11609, 3.99, '2007-03-17 02:09:37.996577'); -INSERT INTO dvds.payment VALUES (23385, 73, 2, 12291, 4.99, '2007-03-18 03:37:03.996577'); -INSERT INTO dvds.payment VALUES (23386, 73, 1, 13886, 4.99, '2007-03-20 14:03:09.996577'); -INSERT INTO dvds.payment VALUES (23387, 73, 1, 15667, 0.99, '2007-03-23 07:30:29.996577'); -INSERT INTO dvds.payment VALUES (23388, 73, 2, 16002, 2.99, '2007-03-23 19:15:38.996577'); -INSERT INTO dvds.payment VALUES (23389, 74, 1, 10624, 0.99, '2007-03-01 13:55:31.996577'); -INSERT INTO dvds.payment VALUES (23390, 74, 2, 12374, 3.99, '2007-03-18 06:36:11.996577'); -INSERT INTO dvds.payment VALUES (23391, 74, 2, 12477, 3.99, '2007-03-18 10:53:27.996577'); -INSERT INTO dvds.payment VALUES (23392, 74, 2, 13335, 0.99, '2007-03-19 18:31:44.996577'); -INSERT INTO dvds.payment VALUES (23393, 74, 2, 13520, 0.99, '2007-03-20 01:10:12.996577'); -INSERT INTO dvds.payment VALUES (23394, 74, 1, 13583, 1.99, '2007-03-20 03:58:11.996577'); -INSERT INTO dvds.payment VALUES (23395, 74, 2, 13747, 5.99, '2007-03-20 09:24:32.996577'); -INSERT INTO dvds.payment VALUES (23396, 74, 1, 15286, 4.99, '2007-03-22 17:46:22.996577'); -INSERT INTO dvds.payment VALUES (23397, 74, 2, 15325, 4.99, '2007-03-22 18:56:04.996577'); -INSERT INTO dvds.payment VALUES (23398, 74, 2, 15500, 0.99, '2007-03-23 01:08:03.996577'); -INSERT INTO dvds.payment VALUES (23399, 74, 2, 15739, 4.99, '2007-03-23 10:24:48.996577'); -INSERT INTO dvds.payment VALUES (23400, 74, 1, 16046, 0.99, '2007-03-23 20:55:13.996577'); -INSERT INTO dvds.payment VALUES (23401, 75, 2, 10653, 5.99, '2007-03-01 14:56:33.996577'); -INSERT INTO dvds.payment VALUES (23402, 75, 1, 10726, 3.99, '2007-03-01 17:43:19.996577'); -INSERT INTO dvds.payment VALUES (23403, 75, 1, 10871, 4.99, '2007-03-01 22:55:50.996577'); -INSERT INTO dvds.payment VALUES (23404, 75, 1, 11330, 0.99, '2007-03-02 15:13:59.996577'); -INSERT INTO dvds.payment VALUES (23405, 75, 1, 12002, 2.99, '2007-03-17 17:24:28.996577'); -INSERT INTO dvds.payment VALUES (23406, 75, 2, 12239, 0.99, '2007-03-18 01:55:08.996577'); -INSERT INTO dvds.payment VALUES (23407, 75, 1, 12336, 1.99, '2007-03-18 05:28:07.996577'); -INSERT INTO dvds.payment VALUES (23408, 75, 1, 12412, 5.99, '2007-03-18 08:18:18.996577'); -INSERT INTO dvds.payment VALUES (23409, 75, 1, 12426, 4.99, '2007-03-18 08:52:37.996577'); -INSERT INTO dvds.payment VALUES (23410, 75, 1, 12662, 0.99, '2007-03-18 17:39:07.996577'); -INSERT INTO dvds.payment VALUES (23411, 75, 2, 15928, 5.99, '2007-03-23 16:51:50.996577'); -INSERT INTO dvds.payment VALUES (23412, 76, 2, 10795, 4.99, '2007-03-01 20:25:03.996577'); -INSERT INTO dvds.payment VALUES (23413, 76, 2, 11172, 7.99, '2007-03-02 08:56:18.996577'); -INSERT INTO dvds.payment VALUES (23414, 76, 2, 13697, 3.99, '2007-03-20 07:49:34.996577'); -INSERT INTO dvds.payment VALUES (23415, 76, 1, 14637, 2.99, '2007-03-21 17:29:26.996577'); -INSERT INTO dvds.payment VALUES (23416, 76, 2, 15169, 4.99, '2007-03-22 13:50:22.996577'); -INSERT INTO dvds.payment VALUES (23417, 76, 1, 15566, 10.99, '2007-03-23 03:45:49.996577'); -INSERT INTO dvds.payment VALUES (23418, 77, 1, 10886, 2.99, '2007-03-01 23:21:00.996577'); -INSERT INTO dvds.payment VALUES (23419, 77, 1, 10895, 0.99, '2007-03-01 23:45:25.996577'); -INSERT INTO dvds.payment VALUES (23420, 77, 2, 10991, 0.99, '2007-03-02 03:09:38.996577'); -INSERT INTO dvds.payment VALUES (23421, 77, 1, 11469, 2.99, '2007-03-02 20:16:35.996577'); -INSERT INTO dvds.payment VALUES (23422, 77, 2, 11767, 7.99, '2007-03-17 08:29:06.996577'); -INSERT INTO dvds.payment VALUES (23423, 77, 1, 12065, 6.99, '2007-03-17 20:00:12.996577'); -INSERT INTO dvds.payment VALUES (23424, 77, 2, 12328, 1.99, '2007-03-18 05:12:22.996577'); -INSERT INTO dvds.payment VALUES (23425, 77, 2, 13752, 9.99, '2007-03-20 09:46:11.996577'); -INSERT INTO dvds.payment VALUES (23426, 77, 2, 14530, 4.99, '2007-03-21 13:39:16.996577'); -INSERT INTO dvds.payment VALUES (23427, 77, 2, 15359, 2.99, '2007-03-22 20:02:26.996577'); -INSERT INTO dvds.payment VALUES (23428, 78, 2, 10350, 3.99, '2007-03-01 03:58:31.996577'); -INSERT INTO dvds.payment VALUES (23429, 78, 1, 10590, 2.99, '2007-03-01 12:40:19.996577'); -INSERT INTO dvds.payment VALUES (23430, 78, 1, 10831, 7.99, '2007-03-01 21:51:11.996577'); -INSERT INTO dvds.payment VALUES (23431, 78, 1, 10942, 10.99, '2007-03-02 01:44:57.996577'); -INSERT INTO dvds.payment VALUES (23432, 78, 2, 12474, 8.99, '2007-03-18 10:38:29.996577'); -INSERT INTO dvds.payment VALUES (23433, 78, 2, 12653, 4.99, '2007-03-18 17:21:43.996577'); -INSERT INTO dvds.payment VALUES (23434, 78, 2, 13124, 5.99, '2007-03-19 10:24:25.996577'); -INSERT INTO dvds.payment VALUES (23435, 78, 1, 13432, 0.99, '2007-03-19 21:57:32.996577'); -INSERT INTO dvds.payment VALUES (23436, 78, 2, 13792, 5.99, '2007-03-20 10:50:03.996577'); -INSERT INTO dvds.payment VALUES (23437, 78, 2, 14620, 2.99, '2007-03-21 16:39:09.996577'); -INSERT INTO dvds.payment VALUES (23438, 78, 1, 14716, 0.99, '2007-03-21 19:58:21.996577'); -INSERT INTO dvds.payment VALUES (23439, 78, 1, 14810, 2.99, '2007-03-21 23:37:00.996577'); -INSERT INTO dvds.payment VALUES (23440, 78, 2, 14862, 7.99, '2007-03-22 01:20:07.996577'); -INSERT INTO dvds.payment VALUES (23441, 78, 2, 16039, 2.99, '2007-03-23 20:47:17.996577'); -INSERT INTO dvds.payment VALUES (23442, 79, 1, 10676, 2.99, '2007-03-01 15:42:41.996577'); -INSERT INTO dvds.payment VALUES (23443, 79, 2, 11641, 4.99, '2007-03-17 03:14:05.996577'); -INSERT INTO dvds.payment VALUES (23444, 79, 2, 13026, 2.99, '2007-03-19 06:51:11.996577'); -INSERT INTO dvds.payment VALUES (23445, 79, 1, 14179, 0.99, '2007-03-21 01:42:53.996577'); -INSERT INTO dvds.payment VALUES (23446, 80, 1, 10313, 0.99, '2007-03-01 02:57:55.996577'); -INSERT INTO dvds.payment VALUES (23447, 80, 1, 10656, 6.99, '2007-03-01 15:06:30.996577'); -INSERT INTO dvds.payment VALUES (23448, 80, 1, 10690, 8.99, '2007-03-01 16:34:20.996577'); -INSERT INTO dvds.payment VALUES (23449, 80, 2, 11101, 5.99, '2007-03-02 06:36:50.996577'); -INSERT INTO dvds.payment VALUES (23450, 80, 2, 11839, 0.99, '2007-03-17 11:37:11.996577'); -INSERT INTO dvds.payment VALUES (23451, 80, 1, 11850, 1.99, '2007-03-17 11:58:41.996577'); -INSERT INTO dvds.payment VALUES (23452, 80, 2, 12468, 2.99, '2007-03-18 10:10:13.996577'); -INSERT INTO dvds.payment VALUES (23453, 80, 1, 13352, 4.99, '2007-03-19 19:20:06.996577'); -INSERT INTO dvds.payment VALUES (23454, 80, 2, 13395, 0.99, '2007-03-19 20:34:06.996577'); -INSERT INTO dvds.payment VALUES (23455, 80, 1, 13724, 4.99, '2007-03-20 08:35:54.996577'); -INSERT INTO dvds.payment VALUES (23456, 80, 2, 13851, 0.99, '2007-03-20 13:12:48.996577'); -INSERT INTO dvds.payment VALUES (23457, 80, 1, 14916, 0.99, '2007-03-22 03:25:23.996577'); -INSERT INTO dvds.payment VALUES (23458, 80, 1, 15648, 8.99, '2007-03-23 06:56:23.996577'); -INSERT INTO dvds.payment VALUES (23459, 80, 1, 16012, 5.99, '2007-03-23 19:42:05.996577'); -INSERT INTO dvds.payment VALUES (23460, 81, 2, 10456, 0.99, '2007-03-01 07:45:47.996577'); -INSERT INTO dvds.payment VALUES (23461, 81, 1, 11837, 5.99, '2007-03-17 11:33:07.996577'); -INSERT INTO dvds.payment VALUES (23462, 81, 2, 12181, 4.99, '2007-03-17 23:56:44.996577'); -INSERT INTO dvds.payment VALUES (23463, 81, 2, 13820, 5.99, '2007-03-20 11:55:03.996577'); -INSERT INTO dvds.payment VALUES (23464, 81, 1, 14128, 4.99, '2007-03-21 00:04:24.996577'); -INSERT INTO dvds.payment VALUES (23465, 81, 1, 14642, 3.99, '2007-03-21 17:38:06.996577'); -INSERT INTO dvds.payment VALUES (23466, 81, 2, 14748, 7.99, '2007-03-21 21:30:28.996577'); -INSERT INTO dvds.payment VALUES (23467, 81, 1, 15224, 5.99, '2007-03-22 15:46:31.996577'); -INSERT INTO dvds.payment VALUES (23468, 81, 1, 15602, 4.99, '2007-03-23 05:09:33.996577'); -INSERT INTO dvds.payment VALUES (23469, 81, 1, 15823, 4.99, '2007-03-23 13:36:26.996577'); -INSERT INTO dvds.payment VALUES (23470, 81, 1, 15858, 2.99, '2007-03-23 14:35:41.996577'); -INSERT INTO dvds.payment VALUES (23471, 81, 2, 15884, 1.99, '2007-03-23 15:13:54.996577'); -INSERT INTO dvds.payment VALUES (23472, 82, 1, 11093, 4.99, '2007-03-02 06:28:15.996577'); -INSERT INTO dvds.payment VALUES (23473, 82, 2, 11688, 5.99, '2007-03-17 05:10:24.996577'); -INSERT INTO dvds.payment VALUES (23474, 82, 1, 12470, 3.99, '2007-03-18 10:24:08.996577'); -INSERT INTO dvds.payment VALUES (23475, 82, 1, 13032, 0.99, '2007-03-19 07:00:16.996577'); -INSERT INTO dvds.payment VALUES (23476, 82, 2, 13847, 6.99, '2007-03-20 13:02:25.996577'); -INSERT INTO dvds.payment VALUES (23477, 82, 2, 14518, 0.99, '2007-03-21 13:27:24.996577'); -INSERT INTO dvds.payment VALUES (23478, 82, 2, 14892, 4.99, '2007-03-22 02:43:31.996577'); -INSERT INTO dvds.payment VALUES (23479, 82, 2, 15516, 3.99, '2007-03-23 01:41:20.996577'); -INSERT INTO dvds.payment VALUES (23480, 83, 1, 11408, 0.99, '2007-03-02 17:53:39.996577'); -INSERT INTO dvds.payment VALUES (23481, 83, 1, 11565, 5.99, '2007-03-16 23:56:31.996577'); -INSERT INTO dvds.payment VALUES (23482, 83, 2, 11777, 4.99, '2007-03-17 08:55:45.996577'); -INSERT INTO dvds.payment VALUES (23483, 83, 1, 12258, 4.99, '2007-03-18 02:39:39.996577'); -INSERT INTO dvds.payment VALUES (23484, 83, 2, 12985, 5.99, '2007-03-19 05:36:31.996577'); -INSERT INTO dvds.payment VALUES (23485, 83, 1, 13875, 4.99, '2007-03-20 13:41:37.996577'); -INSERT INTO dvds.payment VALUES (23486, 83, 2, 15498, 4.99, '2007-03-23 01:01:53.996577'); -INSERT INTO dvds.payment VALUES (23487, 83, 2, 15737, 5.99, '2007-03-23 10:20:44.996577'); -INSERT INTO dvds.payment VALUES (23488, 84, 2, 10540, 0.99, '2007-03-01 10:53:08.996577'); -INSERT INTO dvds.payment VALUES (23489, 84, 1, 10872, 2.99, '2007-03-01 22:56:16.996577'); -INSERT INTO dvds.payment VALUES (23490, 84, 2, 11220, 4.99, '2007-03-02 11:00:07.996577'); -INSERT INTO dvds.payment VALUES (23491, 84, 2, 11424, 3.99, '2007-03-02 18:26:08.996577'); -INSERT INTO dvds.payment VALUES (23492, 84, 2, 11453, 7.99, '2007-03-02 19:28:31.996577'); -INSERT INTO dvds.payment VALUES (23493, 84, 2, 11899, 0.99, '2007-03-17 13:57:38.996577'); -INSERT INTO dvds.payment VALUES (23494, 84, 2, 11960, 4.99, '2007-03-17 15:52:56.996577'); -INSERT INTO dvds.payment VALUES (23495, 84, 2, 12364, 4.99, '2007-03-18 06:23:35.996577'); -INSERT INTO dvds.payment VALUES (23496, 84, 2, 13115, 2.99, '2007-03-19 09:56:09.996577'); -INSERT INTO dvds.payment VALUES (23497, 84, 1, 14330, 5.99, '2007-03-21 06:57:46.996577'); -INSERT INTO dvds.payment VALUES (23498, 84, 1, 15190, 4.99, '2007-03-22 14:26:04.996577'); -INSERT INTO dvds.payment VALUES (23499, 84, 1, 15255, 2.99, '2007-03-22 16:45:16.996577'); -INSERT INTO dvds.payment VALUES (23500, 85, 1, 10328, 4.99, '2007-03-01 03:24:36.996577'); -INSERT INTO dvds.payment VALUES (23501, 85, 1, 10548, 0.99, '2007-03-01 11:12:58.996577'); -INSERT INTO dvds.payment VALUES (23502, 85, 2, 11067, 8.99, '2007-03-02 05:31:50.996577'); -INSERT INTO dvds.payment VALUES (23503, 85, 2, 12036, 0.99, '2007-03-17 18:47:32.996577'); -INSERT INTO dvds.payment VALUES (23504, 85, 1, 12456, 4.99, '2007-03-18 09:50:17.996577'); -INSERT INTO dvds.payment VALUES (23505, 85, 1, 13727, 3.99, '2007-03-20 08:37:19.996577'); -INSERT INTO dvds.payment VALUES (23506, 85, 2, 13733, 0.99, '2007-03-20 08:53:38.996577'); -INSERT INTO dvds.payment VALUES (23507, 86, 2, 10252, 8.99, '2007-03-01 01:08:05.996577'); -INSERT INTO dvds.payment VALUES (23508, 86, 2, 10536, 4.99, '2007-03-01 10:50:19.996577'); -INSERT INTO dvds.payment VALUES (23509, 86, 2, 10584, 6.99, '2007-03-01 12:27:13.996577'); -INSERT INTO dvds.payment VALUES (23510, 86, 2, 11916, 0.99, '2007-03-17 14:34:17.996577'); -INSERT INTO dvds.payment VALUES (23511, 86, 1, 12198, 2.99, '2007-03-18 00:37:46.996577'); -INSERT INTO dvds.payment VALUES (23512, 86, 2, 12870, 3.99, '2007-03-19 01:23:04.996577'); -INSERT INTO dvds.payment VALUES (23513, 86, 2, 13338, 4.99, '2007-03-19 18:38:25.996577'); -INSERT INTO dvds.payment VALUES (23514, 86, 1, 13535, 4.99, '2007-03-20 01:58:51.996577'); -INSERT INTO dvds.payment VALUES (23515, 86, 1, 13874, 2.99, '2007-03-20 13:40:14.996577'); -INSERT INTO dvds.payment VALUES (23516, 86, 2, 14122, 1.99, '2007-03-20 23:57:27.996577'); -INSERT INTO dvds.payment VALUES (23517, 86, 2, 15099, 4.99, '2007-03-22 10:17:42.996577'); -INSERT INTO dvds.payment VALUES (23518, 86, 1, 15715, 1.99, '2007-03-23 09:26:06.996577'); -INSERT INTO dvds.payment VALUES (23519, 86, 2, 15940, 5.99, '2007-03-23 17:13:32.996577'); -INSERT INTO dvds.payment VALUES (23520, 87, 1, 10387, 4.99, '2007-03-01 05:10:57.996577'); -INSERT INTO dvds.payment VALUES (23521, 87, 1, 12232, 0.99, '2007-03-18 01:42:40.996577'); -INSERT INTO dvds.payment VALUES (23522, 87, 1, 12257, 8.99, '2007-03-18 02:39:29.996577'); -INSERT INTO dvds.payment VALUES (23523, 87, 1, 12264, 5.99, '2007-03-18 02:45:59.996577'); -INSERT INTO dvds.payment VALUES (23524, 87, 1, 13479, 0.99, '2007-03-19 23:37:37.996577'); -INSERT INTO dvds.payment VALUES (23525, 87, 1, 13906, 0.99, '2007-03-20 14:44:29.996577'); -INSERT INTO dvds.payment VALUES (23526, 87, 2, 14024, 10.99, '2007-03-20 19:42:24.996577'); -INSERT INTO dvds.payment VALUES (23527, 87, 1, 14566, 2.99, '2007-03-21 14:53:31.996577'); -INSERT INTO dvds.payment VALUES (23528, 87, 1, 15876, 2.99, '2007-03-23 15:00:36.996577'); -INSERT INTO dvds.payment VALUES (23529, 87, 2, 15890, 4.99, '2007-03-23 15:26:38.996577'); -INSERT INTO dvds.payment VALUES (23530, 88, 1, 10424, 0.99, '2007-03-01 06:51:20.996577'); -INSERT INTO dvds.payment VALUES (23531, 88, 1, 11056, 6.99, '2007-03-02 05:04:53.996577'); -INSERT INTO dvds.payment VALUES (23532, 88, 2, 14097, 2.99, '2007-03-20 22:57:14.996577'); -INSERT INTO dvds.payment VALUES (23533, 88, 2, 14827, 5.99, '2007-03-22 00:00:58.996577'); -INSERT INTO dvds.payment VALUES (23534, 88, 2, 15098, 3.99, '2007-03-22 10:16:45.996577'); -INSERT INTO dvds.payment VALUES (23535, 88, 1, 15898, 4.99, '2007-03-23 15:41:27.996577'); -INSERT INTO dvds.payment VALUES (23536, 89, 2, 10806, 4.99, '2007-03-01 20:53:55.996577'); -INSERT INTO dvds.payment VALUES (23537, 89, 1, 11090, 3.99, '2007-03-02 06:25:06.996577'); -INSERT INTO dvds.payment VALUES (23538, 89, 1, 12118, 3.99, '2007-03-17 21:42:51.996577'); -INSERT INTO dvds.payment VALUES (23539, 89, 2, 12431, 2.99, '2007-03-18 09:03:25.996577'); -INSERT INTO dvds.payment VALUES (23540, 89, 1, 12756, 2.99, '2007-03-18 21:20:39.996577'); -INSERT INTO dvds.payment VALUES (23541, 89, 1, 13823, 2.99, '2007-03-20 12:10:36.996577'); -INSERT INTO dvds.payment VALUES (23542, 89, 1, 15845, 2.99, '2007-03-23 14:07:00.996577'); -INSERT INTO dvds.payment VALUES (23543, 90, 1, 10722, 4.99, '2007-03-01 17:35:34.996577'); -INSERT INTO dvds.payment VALUES (23544, 90, 1, 10835, 4.99, '2007-03-01 21:57:15.996577'); -INSERT INTO dvds.payment VALUES (23545, 90, 2, 11231, 4.99, '2007-03-02 11:30:37.996577'); -INSERT INTO dvds.payment VALUES (23546, 90, 1, 11516, 0.99, '2007-03-16 22:23:13.996577'); -INSERT INTO dvds.payment VALUES (23547, 90, 2, 12019, 0.99, '2007-03-17 18:17:21.996577'); -INSERT INTO dvds.payment VALUES (23548, 90, 1, 12788, 2.99, '2007-03-18 22:43:35.996577'); -INSERT INTO dvds.payment VALUES (23549, 90, 1, 13051, 4.99, '2007-03-19 07:59:59.996577'); -INSERT INTO dvds.payment VALUES (23550, 90, 1, 14608, 1.99, '2007-03-21 16:25:48.996577'); -INSERT INTO dvds.payment VALUES (23551, 90, 1, 14807, 4.99, '2007-03-21 23:26:09.996577'); -INSERT INTO dvds.payment VALUES (23552, 90, 2, 15061, 0.99, '2007-03-22 08:58:10.996577'); -INSERT INTO dvds.payment VALUES (23553, 90, 2, 15217, 0.99, '2007-03-22 15:26:57.996577'); -INSERT INTO dvds.payment VALUES (23554, 90, 1, 15674, 7.99, '2007-03-23 07:45:05.996577'); -INSERT INTO dvds.payment VALUES (23555, 91, 2, 11418, 0.99, '2007-03-02 18:13:59.996577'); -INSERT INTO dvds.payment VALUES (23556, 91, 1, 12847, 0.99, '2007-03-19 00:32:33.996577'); -INSERT INTO dvds.payment VALUES (23557, 91, 2, 13222, 4.99, '2007-03-19 14:16:24.996577'); -INSERT INTO dvds.payment VALUES (23558, 91, 2, 13309, 4.99, '2007-03-19 17:32:26.996577'); -INSERT INTO dvds.payment VALUES (23559, 91, 1, 14132, 0.99, '2007-03-21 00:12:24.996577'); -INSERT INTO dvds.payment VALUES (23560, 91, 2, 14888, 2.99, '2007-03-22 02:37:44.996577'); -INSERT INTO dvds.payment VALUES (23561, 91, 1, 15122, 1.99, '2007-03-22 11:16:11.996577'); -INSERT INTO dvds.payment VALUES (23562, 91, 1, 15341, 4.99, '2007-03-22 19:24:57.996577'); -INSERT INTO dvds.payment VALUES (23563, 91, 1, 15707, 1.99, '2007-03-23 09:04:11.996577'); -INSERT INTO dvds.payment VALUES (23564, 91, 2, 15886, 4.99, '2007-03-23 15:19:19.996577'); -INSERT INTO dvds.payment VALUES (23565, 92, 2, 11203, 4.99, '2007-03-02 10:21:07.996577'); -INSERT INTO dvds.payment VALUES (23566, 92, 2, 11245, 2.99, '2007-03-02 12:02:16.996577'); -INSERT INTO dvds.payment VALUES (23567, 92, 1, 11849, 4.99, '2007-03-17 11:53:21.996577'); -INSERT INTO dvds.payment VALUES (23568, 92, 2, 13020, 5.99, '2007-03-19 06:36:16.996577'); -INSERT INTO dvds.payment VALUES (23569, 92, 1, 13495, 0.99, '2007-03-20 00:08:51.996577'); -INSERT INTO dvds.payment VALUES (23570, 92, 1, 13620, 2.99, '2007-03-20 05:09:53.996577'); -INSERT INTO dvds.payment VALUES (23571, 92, 1, 14798, 0.99, '2007-03-21 23:12:34.996577'); -INSERT INTO dvds.payment VALUES (23572, 92, 2, 14998, 4.99, '2007-03-22 06:21:40.996577'); -INSERT INTO dvds.payment VALUES (23573, 93, 2, 11271, 5.99, '2007-03-02 12:46:48.996577'); -INSERT INTO dvds.payment VALUES (23574, 93, 1, 12704, 4.99, '2007-03-18 19:11:26.996577'); -INSERT INTO dvds.payment VALUES (23575, 93, 1, 13555, 2.99, '2007-03-20 02:38:16.996577'); -INSERT INTO dvds.payment VALUES (23576, 93, 2, 13904, 2.99, '2007-03-20 14:40:00.996577'); -INSERT INTO dvds.payment VALUES (23577, 93, 1, 13950, 8.99, '2007-03-20 16:26:26.996577'); -INSERT INTO dvds.payment VALUES (23578, 93, 1, 13993, 4.99, '2007-03-20 18:00:55.996577'); -INSERT INTO dvds.payment VALUES (23579, 93, 1, 14195, 0.99, '2007-03-21 02:09:01.996577'); -INSERT INTO dvds.payment VALUES (23580, 93, 2, 14333, 4.99, '2007-03-21 06:59:29.996577'); -INSERT INTO dvds.payment VALUES (23581, 93, 2, 15324, 5.99, '2007-03-22 18:51:39.996577'); -INSERT INTO dvds.payment VALUES (23582, 93, 2, 15631, 2.99, '2007-03-23 05:58:49.996577'); -INSERT INTO dvds.payment VALUES (23583, 93, 1, 15696, 0.99, '2007-03-23 08:32:43.996577'); -INSERT INTO dvds.payment VALUES (23584, 93, 2, 15913, 1.99, '2007-03-23 16:16:56.996577'); -INSERT INTO dvds.payment VALUES (23585, 94, 1, 12316, 2.99, '2007-03-18 04:44:35.996577'); -INSERT INTO dvds.payment VALUES (23586, 94, 1, 13786, 5.99, '2007-03-20 10:41:50.996577'); -INSERT INTO dvds.payment VALUES (23587, 94, 2, 14804, 1.99, '2007-03-21 23:19:51.996577'); -INSERT INTO dvds.payment VALUES (23588, 94, 1, 14865, 4.99, '2007-03-22 01:35:04.996577'); -INSERT INTO dvds.payment VALUES (23589, 94, 1, 14978, 0.99, '2007-03-22 05:41:41.996577'); -INSERT INTO dvds.payment VALUES (23590, 94, 1, 15693, 0.99, '2007-03-23 08:28:50.996577'); -INSERT INTO dvds.payment VALUES (23591, 95, 2, 10446, 0.99, '2007-03-01 07:30:43.996577'); -INSERT INTO dvds.payment VALUES (23592, 95, 2, 12351, 5.99, '2007-03-18 06:00:38.996577'); -INSERT INTO dvds.payment VALUES (23593, 95, 2, 13516, 7.99, '2007-03-20 01:01:11.996577'); -INSERT INTO dvds.payment VALUES (23594, 95, 2, 14203, 4.99, '2007-03-21 02:20:18.996577'); -INSERT INTO dvds.payment VALUES (23595, 96, 2, 11864, 4.99, '2007-03-17 12:30:27.996577'); -INSERT INTO dvds.payment VALUES (23596, 96, 1, 11984, 3.99, '2007-03-17 16:44:56.996577'); -INSERT INTO dvds.payment VALUES (23597, 96, 1, 12199, 4.99, '2007-03-18 00:37:49.996577'); -INSERT INTO dvds.payment VALUES (23598, 96, 2, 12525, 4.99, '2007-03-18 12:16:57.996577'); -INSERT INTO dvds.payment VALUES (23599, 96, 1, 13514, 0.99, '2007-03-20 00:56:35.996577'); -INSERT INTO dvds.payment VALUES (23600, 96, 1, 13855, 4.99, '2007-03-20 13:17:21.996577'); -INSERT INTO dvds.payment VALUES (23601, 96, 1, 14462, 3.99, '2007-03-21 11:19:23.996577'); -INSERT INTO dvds.payment VALUES (23602, 96, 2, 15989, 4.99, '2007-03-23 18:53:02.996577'); -INSERT INTO dvds.payment VALUES (23603, 97, 1, 10820, 2.99, '2007-03-01 21:22:06.996577'); -INSERT INTO dvds.payment VALUES (23604, 97, 2, 14323, 4.99, '2007-03-21 06:37:09.996577'); -INSERT INTO dvds.payment VALUES (23605, 97, 1, 15006, 0.99, '2007-03-22 06:48:41.996577'); -INSERT INTO dvds.payment VALUES (23606, 98, 2, 10694, 3.99, '2007-03-01 16:43:33.996577'); -INSERT INTO dvds.payment VALUES (23607, 98, 1, 10925, 2.99, '2007-03-02 00:53:04.996577'); -INSERT INTO dvds.payment VALUES (23608, 98, 2, 11007, 0.99, '2007-03-02 03:34:19.996577'); -INSERT INTO dvds.payment VALUES (23609, 98, 2, 11200, 2.99, '2007-03-02 10:17:02.996577'); -INSERT INTO dvds.payment VALUES (23610, 98, 1, 11635, 5.99, '2007-03-17 03:01:43.996577'); -INSERT INTO dvds.payment VALUES (23611, 98, 1, 11730, 2.99, '2007-03-17 06:50:26.996577'); -INSERT INTO dvds.payment VALUES (23612, 98, 2, 12221, 5.99, '2007-03-18 01:19:17.996577'); -INSERT INTO dvds.payment VALUES (23613, 98, 2, 14459, 1.99, '2007-03-21 11:16:34.996577'); -INSERT INTO dvds.payment VALUES (23614, 98, 1, 15536, 7.99, '2007-03-23 02:26:54.996577'); -INSERT INTO dvds.payment VALUES (23615, 99, 2, 10388, 7.99, '2007-03-01 05:11:10.996577'); -INSERT INTO dvds.payment VALUES (23616, 99, 1, 10455, 1.99, '2007-03-01 07:43:26.996577'); -INSERT INTO dvds.payment VALUES (23617, 99, 2, 11266, 4.99, '2007-03-02 12:36:01.996577'); -INSERT INTO dvds.payment VALUES (23618, 99, 2, 12379, 0.99, '2007-03-18 06:55:14.996577'); -INSERT INTO dvds.payment VALUES (23619, 99, 2, 12869, 8.99, '2007-03-19 01:19:02.996577'); -INSERT INTO dvds.payment VALUES (23620, 100, 1, 11143, 0.99, '2007-03-02 08:01:20.996577'); -INSERT INTO dvds.payment VALUES (23621, 100, 2, 11346, 4.99, '2007-03-02 15:44:04.996577'); -INSERT INTO dvds.payment VALUES (23622, 100, 1, 12657, 0.99, '2007-03-18 17:30:42.996577'); -INSERT INTO dvds.payment VALUES (23623, 100, 1, 15163, 0.99, '2007-03-22 13:11:39.996577'); -INSERT INTO dvds.payment VALUES (23624, 100, 2, 15246, 3.99, '2007-03-22 16:19:15.996577'); -INSERT INTO dvds.payment VALUES (23625, 101, 1, 10253, 6.99, '2007-03-01 01:08:15.996577'); -INSERT INTO dvds.payment VALUES (23626, 101, 1, 10407, 0.99, '2007-03-01 06:06:33.996577'); -INSERT INTO dvds.payment VALUES (23627, 101, 2, 11959, 4.99, '2007-03-17 15:52:01.996577'); -INSERT INTO dvds.payment VALUES (23628, 101, 2, 12174, 2.99, '2007-03-17 23:37:19.996577'); -INSERT INTO dvds.payment VALUES (23629, 101, 1, 12471, 4.99, '2007-03-18 10:25:26.996577'); -INSERT INTO dvds.payment VALUES (23630, 101, 2, 13370, 1.99, '2007-03-19 19:48:37.996577'); -INSERT INTO dvds.payment VALUES (23631, 101, 1, 14476, 0.99, '2007-03-21 11:59:33.996577'); -INSERT INTO dvds.payment VALUES (23632, 101, 2, 14542, 3.99, '2007-03-21 14:05:00.996577'); -INSERT INTO dvds.payment VALUES (23633, 101, 2, 15103, 2.99, '2007-03-22 10:29:32.996577'); -INSERT INTO dvds.payment VALUES (23634, 102, 2, 10841, 1.99, '2007-03-01 22:07:47.996577'); -INSERT INTO dvds.payment VALUES (23635, 102, 2, 11099, 4.99, '2007-03-02 06:35:38.996577'); -INSERT INTO dvds.payment VALUES (23636, 102, 1, 11183, 4.99, '2007-03-02 09:28:58.996577'); -INSERT INTO dvds.payment VALUES (23637, 102, 2, 12495, 4.99, '2007-03-18 11:25:03.996577'); -INSERT INTO dvds.payment VALUES (23638, 102, 1, 13420, 9.99, '2007-03-19 21:25:51.996577'); -INSERT INTO dvds.payment VALUES (23639, 102, 1, 15049, 1.99, '2007-03-22 08:34:54.996577'); -INSERT INTO dvds.payment VALUES (23640, 102, 2, 16031, 3.99, '2007-03-23 20:27:52.996577'); -INSERT INTO dvds.payment VALUES (23641, 103, 2, 12942, 7.99, '2007-03-19 04:09:02.996577'); -INSERT INTO dvds.payment VALUES (23642, 103, 1, 13676, 0.99, '2007-03-20 07:01:47.996577'); -INSERT INTO dvds.payment VALUES (23643, 103, 2, 14064, 2.99, '2007-03-20 21:07:42.996577'); -INSERT INTO dvds.payment VALUES (23644, 103, 2, 14289, 4.99, '2007-03-21 05:27:15.996577'); -INSERT INTO dvds.payment VALUES (23645, 103, 2, 15401, 8.99, '2007-03-22 21:41:36.996577'); -INSERT INTO dvds.payment VALUES (23646, 103, 1, 15461, 5.99, '2007-03-22 23:42:18.996577'); -INSERT INTO dvds.payment VALUES (23647, 103, 1, 15467, 3.99, '2007-03-22 23:50:38.996577'); -INSERT INTO dvds.payment VALUES (23648, 103, 1, 15599, 5.99, '2007-03-23 04:53:33.996577'); -INSERT INTO dvds.payment VALUES (23649, 103, 2, 15679, 0.99, '2007-03-23 07:55:55.996577'); -INSERT INTO dvds.payment VALUES (23650, 103, 2, 16048, 8.99, '2007-03-23 21:11:33.996577'); -INSERT INTO dvds.payment VALUES (23651, 104, 1, 11700, 2.99, '2007-03-17 05:40:57.996577'); -INSERT INTO dvds.payment VALUES (23652, 104, 1, 12453, 3.99, '2007-03-18 09:45:33.996577'); -INSERT INTO dvds.payment VALUES (23653, 104, 1, 13005, 0.99, '2007-03-19 06:14:08.996577'); -INSERT INTO dvds.payment VALUES (23654, 104, 1, 13017, 1.99, '2007-03-19 06:30:50.996577'); -INSERT INTO dvds.payment VALUES (23655, 104, 1, 13179, 4.99, '2007-03-19 12:28:19.996577'); -INSERT INTO dvds.payment VALUES (23656, 104, 1, 13410, 3.99, '2007-03-19 21:10:10.996577'); -INSERT INTO dvds.payment VALUES (23657, 104, 1, 14218, 3.99, '2007-03-21 03:12:25.996577'); -INSERT INTO dvds.payment VALUES (23658, 104, 2, 15186, 0.99, '2007-03-22 14:21:23.996577'); -INSERT INTO dvds.payment VALUES (23659, 105, 1, 10513, 4.99, '2007-03-01 10:06:00.996577'); -INSERT INTO dvds.payment VALUES (23660, 105, 1, 12217, 0.99, '2007-03-18 01:13:10.996577'); -INSERT INTO dvds.payment VALUES (23661, 105, 2, 12899, 2.99, '2007-03-19 02:32:00.996577'); -INSERT INTO dvds.payment VALUES (23662, 105, 1, 13057, 6.99, '2007-03-19 08:08:31.996577'); -INSERT INTO dvds.payment VALUES (23663, 105, 1, 13751, 2.99, '2007-03-20 09:45:29.996577'); -INSERT INTO dvds.payment VALUES (23664, 105, 2, 14048, 0.99, '2007-03-20 20:31:44.996577'); -INSERT INTO dvds.payment VALUES (23665, 105, 2, 15624, 4.99, '2007-03-23 05:52:53.996577'); -INSERT INTO dvds.payment VALUES (23666, 105, 2, 15688, 4.99, '2007-03-23 08:17:11.996577'); -INSERT INTO dvds.payment VALUES (23667, 105, 2, 15803, 2.99, '2007-03-23 12:55:33.996577'); -INSERT INTO dvds.payment VALUES (23668, 106, 1, 10228, 2.99, '2007-03-01 00:11:44.996577'); -INSERT INTO dvds.payment VALUES (23669, 106, 1, 10444, 8.99, '2007-03-01 07:30:06.996577'); -INSERT INTO dvds.payment VALUES (23670, 106, 2, 11436, 0.99, '2007-03-02 18:44:32.996577'); -INSERT INTO dvds.payment VALUES (23671, 106, 1, 12159, 7.99, '2007-03-17 23:04:35.996577'); -INSERT INTO dvds.payment VALUES (23672, 106, 1, 12845, 2.99, '2007-03-19 00:31:03.996577'); -INSERT INTO dvds.payment VALUES (23673, 106, 2, 14431, 2.99, '2007-03-21 09:59:41.996577'); -INSERT INTO dvds.payment VALUES (23674, 106, 1, 14920, 0.99, '2007-03-22 03:37:24.996577'); -INSERT INTO dvds.payment VALUES (23675, 106, 1, 15154, 6.99, '2007-03-22 12:56:03.996577'); -INSERT INTO dvds.payment VALUES (23676, 107, 1, 10226, 4.99, '2007-03-01 00:08:30.996577'); -INSERT INTO dvds.payment VALUES (23677, 107, 2, 13361, 4.99, '2007-03-19 19:35:48.996577'); -INSERT INTO dvds.payment VALUES (23678, 107, 1, 13510, 6.99, '2007-03-20 00:46:56.996577'); -INSERT INTO dvds.payment VALUES (23679, 107, 1, 14562, 4.99, '2007-03-21 14:51:25.996577'); -INSERT INTO dvds.payment VALUES (23680, 107, 1, 15560, 3.99, '2007-03-23 03:29:39.996577'); -INSERT INTO dvds.payment VALUES (23681, 108, 1, 11316, 5.99, '2007-03-02 14:36:15.996577'); -INSERT INTO dvds.payment VALUES (23682, 108, 2, 11445, 6.99, '2007-03-02 19:02:01.996577'); -INSERT INTO dvds.payment VALUES (23683, 108, 2, 11759, 2.99, '2007-03-17 08:09:49.996577'); -INSERT INTO dvds.payment VALUES (23684, 108, 1, 12583, 2.99, '2007-03-18 14:20:02.996577'); -INSERT INTO dvds.payment VALUES (23685, 108, 2, 12625, 6.99, '2007-03-18 16:04:45.996577'); -INSERT INTO dvds.payment VALUES (23686, 108, 2, 13754, 2.99, '2007-03-20 09:46:34.996577'); -INSERT INTO dvds.payment VALUES (23687, 108, 2, 14635, 3.99, '2007-03-21 17:20:09.996577'); -INSERT INTO dvds.payment VALUES (23688, 108, 2, 15556, 8.99, '2007-03-23 03:20:42.996577'); -INSERT INTO dvds.payment VALUES (23689, 108, 1, 16001, 2.99, '2007-03-23 19:14:19.996577'); -INSERT INTO dvds.payment VALUES (23690, 109, 2, 10240, 0.99, '2007-03-01 00:37:59.996577'); -INSERT INTO dvds.payment VALUES (23691, 109, 2, 10892, 3.99, '2007-03-01 23:40:32.996577'); -INSERT INTO dvds.payment VALUES (23692, 109, 2, 12137, 6.99, '2007-03-17 22:20:52.996577'); -INSERT INTO dvds.payment VALUES (23693, 109, 1, 13264, 3.99, '2007-03-19 15:55:36.996577'); -INSERT INTO dvds.payment VALUES (23694, 109, 2, 15398, 7.99, '2007-03-22 21:39:15.996577'); -INSERT INTO dvds.payment VALUES (23695, 109, 2, 15677, 2.99, '2007-03-23 07:52:02.996577'); -INSERT INTO dvds.payment VALUES (23696, 110, 1, 11647, 7.99, '2007-03-17 03:22:40.996577'); -INSERT INTO dvds.payment VALUES (23697, 110, 2, 12585, 3.99, '2007-03-18 14:20:38.996577'); -INSERT INTO dvds.payment VALUES (23698, 110, 1, 13723, 2.99, '2007-03-20 08:33:56.996577'); -INSERT INTO dvds.payment VALUES (23699, 110, 2, 15381, 2.99, '2007-03-22 20:57:02.996577'); -INSERT INTO dvds.payment VALUES (23700, 111, 2, 10602, 4.99, '2007-03-01 12:58:49.996577'); -INSERT INTO dvds.payment VALUES (23701, 111, 1, 10952, 4.99, '2007-03-02 01:56:47.996577'); -INSERT INTO dvds.payment VALUES (23702, 111, 2, 10990, 4.99, '2007-03-02 03:09:32.996577'); -INSERT INTO dvds.payment VALUES (23703, 111, 2, 11239, 2.99, '2007-03-02 11:55:37.996577'); -INSERT INTO dvds.payment VALUES (23704, 111, 2, 12196, 3.99, '2007-03-18 00:37:14.996577'); -INSERT INTO dvds.payment VALUES (23705, 111, 2, 13251, 2.99, '2007-03-19 15:17:03.996577'); -INSERT INTO dvds.payment VALUES (23706, 111, 2, 13525, 5.99, '2007-03-20 01:19:10.996577'); -INSERT INTO dvds.payment VALUES (23707, 111, 1, 14949, 0.99, '2007-03-22 04:40:42.996577'); -INSERT INTO dvds.payment VALUES (23708, 111, 2, 15174, 6.99, '2007-03-22 13:55:02.996577'); -INSERT INTO dvds.payment VALUES (23709, 112, 2, 10596, 5.99, '2007-03-01 12:47:23.996577'); -INSERT INTO dvds.payment VALUES (23710, 112, 1, 11019, 2.99, '2007-03-02 03:57:57.996577'); -INSERT INTO dvds.payment VALUES (23711, 112, 1, 11599, 7.99, '2007-03-17 01:36:36.996577'); -INSERT INTO dvds.payment VALUES (23712, 112, 2, 11659, 4.99, '2007-03-17 03:49:11.996577'); -INSERT INTO dvds.payment VALUES (23713, 112, 2, 11863, 3.99, '2007-03-17 12:24:27.996577'); -INSERT INTO dvds.payment VALUES (23714, 112, 2, 13611, 8.99, '2007-03-20 04:49:08.996577'); -INSERT INTO dvds.payment VALUES (23715, 112, 2, 13879, 2.99, '2007-03-20 13:46:36.996577'); -INSERT INTO dvds.payment VALUES (23716, 112, 2, 14049, 5.99, '2007-03-20 20:37:21.996577'); -INSERT INTO dvds.payment VALUES (23717, 112, 1, 14358, 0.99, '2007-03-21 07:42:54.996577'); -INSERT INTO dvds.payment VALUES (23718, 112, 2, 15304, 4.99, '2007-03-22 18:14:23.996577'); -INSERT INTO dvds.payment VALUES (23719, 112, 1, 15671, 0.99, '2007-03-23 07:36:42.996577'); -INSERT INTO dvds.payment VALUES (23720, 112, 1, 15687, 8.99, '2007-03-23 08:14:59.996577'); -INSERT INTO dvds.payment VALUES (23721, 112, 1, 15756, 2.99, '2007-03-23 11:15:31.996577'); -INSERT INTO dvds.payment VALUES (23722, 113, 1, 10378, 0.99, '2007-03-01 04:58:30.996577'); -INSERT INTO dvds.payment VALUES (23723, 113, 2, 10578, 1.99, '2007-03-01 12:16:28.996577'); -INSERT INTO dvds.payment VALUES (23724, 113, 2, 11655, 7.99, '2007-03-17 03:39:33.996577'); -INSERT INTO dvds.payment VALUES (23725, 113, 1, 11872, 5.99, '2007-03-17 12:40:11.996577'); -INSERT INTO dvds.payment VALUES (23726, 113, 1, 12392, 5.99, '2007-03-18 07:26:24.996577'); -INSERT INTO dvds.payment VALUES (23727, 113, 2, 12817, 3.99, '2007-03-18 23:33:01.996577'); -INSERT INTO dvds.payment VALUES (23728, 113, 2, 13406, 2.99, '2007-03-19 20:50:27.996577'); -INSERT INTO dvds.payment VALUES (23729, 113, 1, 15600, 1.99, '2007-03-23 04:59:50.996577'); -INSERT INTO dvds.payment VALUES (23730, 113, 1, 15770, 2.99, '2007-03-23 11:46:42.996577'); -INSERT INTO dvds.payment VALUES (23731, 114, 1, 11547, 4.99, '2007-03-16 23:27:50.996577'); -INSERT INTO dvds.payment VALUES (23732, 114, 2, 12326, 0.99, '2007-03-18 05:10:25.996577'); -INSERT INTO dvds.payment VALUES (23733, 114, 1, 12685, 6.99, '2007-03-18 18:19:55.996577'); -INSERT INTO dvds.payment VALUES (23734, 114, 2, 13459, 6.99, '2007-03-19 23:14:06.996577'); -INSERT INTO dvds.payment VALUES (23735, 114, 2, 14158, 5.99, '2007-03-21 01:11:46.996577'); -INSERT INTO dvds.payment VALUES (23736, 114, 1, 14867, 4.99, '2007-03-22 01:43:12.996577'); -INSERT INTO dvds.payment VALUES (23737, 114, 1, 15485, 0.99, '2007-03-23 00:33:23.996577'); -INSERT INTO dvds.payment VALUES (23738, 114, 1, 15528, 2.99, '2007-03-23 02:14:06.996577'); -INSERT INTO dvds.payment VALUES (23739, 114, 2, 15646, 3.99, '2007-03-23 06:48:21.996577'); -INSERT INTO dvds.payment VALUES (23740, 114, 1, 16047, 0.99, '2007-03-23 21:11:14.996577'); -INSERT INTO dvds.payment VALUES (23741, 115, 2, 10475, 4.99, '2007-03-01 08:31:43.996577'); -INSERT INTO dvds.payment VALUES (23742, 115, 2, 10647, 2.99, '2007-03-01 14:37:12.996577'); -INSERT INTO dvds.payment VALUES (23743, 115, 2, 10919, 0.99, '2007-03-02 00:39:29.996577'); -INSERT INTO dvds.payment VALUES (23744, 115, 1, 11891, 2.99, '2007-03-17 13:40:21.996577'); -INSERT INTO dvds.payment VALUES (23745, 115, 2, 12366, 0.99, '2007-03-18 06:23:40.996577'); -INSERT INTO dvds.payment VALUES (23746, 115, 2, 13977, 0.99, '2007-03-20 17:31:00.996577'); -INSERT INTO dvds.payment VALUES (23747, 115, 1, 15176, 6.99, '2007-03-22 13:58:51.996577'); -INSERT INTO dvds.payment VALUES (23748, 115, 2, 15452, 0.99, '2007-03-22 23:25:38.996577'); -INSERT INTO dvds.payment VALUES (23749, 116, 2, 10250, 1.99, '2007-03-01 01:07:08.996577'); -INSERT INTO dvds.payment VALUES (23750, 116, 1, 10801, 1.99, '2007-03-01 20:38:01.996577'); -INSERT INTO dvds.payment VALUES (23751, 116, 2, 11016, 4.99, '2007-03-02 03:47:39.996577'); -INSERT INTO dvds.payment VALUES (23752, 116, 2, 12376, 2.99, '2007-03-18 06:48:55.996577'); -INSERT INTO dvds.payment VALUES (23753, 116, 2, 13146, 7.99, '2007-03-19 11:23:08.996577'); -INSERT INTO dvds.payment VALUES (23754, 116, 1, 13369, 0.99, '2007-03-19 19:48:13.996577'); -INSERT INTO dvds.payment VALUES (23755, 116, 1, 13474, 0.99, '2007-03-19 23:32:58.996577'); -INSERT INTO dvds.payment VALUES (23756, 116, 1, 13775, 6.99, '2007-03-20 10:24:56.996577'); -INSERT INTO dvds.payment VALUES (23757, 116, 2, 14763, 11.99, '2007-03-21 22:02:26.996577'); -INSERT INTO dvds.payment VALUES (23758, 116, 1, 14907, 2.99, '2007-03-22 03:12:35.996577'); -INSERT INTO dvds.payment VALUES (23759, 117, 2, 10556, 2.99, '2007-03-01 11:27:08.996577'); -INSERT INTO dvds.payment VALUES (23760, 117, 1, 10558, 4.99, '2007-03-01 11:28:46.996577'); -INSERT INTO dvds.payment VALUES (23761, 117, 2, 11467, 3.99, '2007-03-02 20:15:33.996577'); -INSERT INTO dvds.payment VALUES (23762, 117, 1, 12143, 2.99, '2007-03-17 22:34:52.996577'); -INSERT INTO dvds.payment VALUES (23763, 117, 1, 12337, 2.99, '2007-03-18 05:30:50.996577'); -INSERT INTO dvds.payment VALUES (23764, 117, 1, 12575, 6.99, '2007-03-18 14:06:08.996577'); -INSERT INTO dvds.payment VALUES (23765, 117, 1, 12618, 4.99, '2007-03-18 15:52:28.996577'); -INSERT INTO dvds.payment VALUES (23766, 117, 1, 14784, 0.99, '2007-03-21 22:51:39.996577'); -INSERT INTO dvds.payment VALUES (23767, 117, 2, 14854, 2.99, '2007-03-22 00:55:13.996577'); -INSERT INTO dvds.payment VALUES (23768, 117, 1, 15432, 2.99, '2007-03-22 22:55:18.996577'); -INSERT INTO dvds.payment VALUES (23769, 118, 2, 12538, 2.99, '2007-03-18 12:37:35.996577'); -INSERT INTO dvds.payment VALUES (23770, 118, 2, 13193, 6.99, '2007-03-19 13:02:11.996577'); -INSERT INTO dvds.payment VALUES (23771, 118, 2, 14394, 5.99, '2007-03-21 08:51:36.996577'); -INSERT INTO dvds.payment VALUES (23772, 118, 2, 14595, 7.99, '2007-03-21 16:03:43.996577'); -INSERT INTO dvds.payment VALUES (23773, 118, 1, 14924, 2.99, '2007-03-22 03:43:43.996577'); -INSERT INTO dvds.payment VALUES (23774, 118, 1, 15731, 0.99, '2007-03-23 10:01:51.996577'); -INSERT INTO dvds.payment VALUES (23775, 119, 1, 10366, 3.99, '2007-03-01 04:38:03.996577'); -INSERT INTO dvds.payment VALUES (23776, 119, 2, 10552, 2.99, '2007-03-01 11:18:10.996577'); -INSERT INTO dvds.payment VALUES (23777, 119, 1, 10681, 4.99, '2007-03-01 15:59:01.996577'); -INSERT INTO dvds.payment VALUES (23778, 119, 2, 11377, 2.99, '2007-03-02 16:45:13.996577'); -INSERT INTO dvds.payment VALUES (23779, 119, 1, 11520, 5.99, '2007-03-16 22:32:54.996577'); -INSERT INTO dvds.payment VALUES (23780, 119, 2, 12576, 2.99, '2007-03-18 14:06:57.996577'); -INSERT INTO dvds.payment VALUES (23781, 119, 2, 12603, 3.99, '2007-03-18 15:24:46.996577'); -INSERT INTO dvds.payment VALUES (23782, 119, 2, 12842, 6.99, '2007-03-19 00:25:47.996577'); -INSERT INTO dvds.payment VALUES (23783, 119, 1, 13581, 4.99, '2007-03-20 03:54:41.996577'); -INSERT INTO dvds.payment VALUES (23784, 119, 2, 14349, 3.99, '2007-03-21 07:23:19.996577'); -INSERT INTO dvds.payment VALUES (23785, 119, 2, 14382, 2.99, '2007-03-21 08:29:29.996577'); -INSERT INTO dvds.payment VALUES (23786, 119, 2, 14643, 6.99, '2007-03-21 17:40:24.996577'); -INSERT INTO dvds.payment VALUES (23787, 119, 2, 14659, 0.99, '2007-03-21 18:11:02.996577'); -INSERT INTO dvds.payment VALUES (23788, 119, 1, 15111, 4.99, '2007-03-22 10:50:09.996577'); -INSERT INTO dvds.payment VALUES (23789, 119, 2, 15131, 3.99, '2007-03-22 11:34:52.996577'); -INSERT INTO dvds.payment VALUES (23790, 119, 2, 15171, 6.99, '2007-03-22 13:52:25.996577'); -INSERT INTO dvds.payment VALUES (23791, 119, 1, 15844, 2.99, '2007-03-23 14:06:38.996577'); -INSERT INTO dvds.payment VALUES (23792, 119, 2, 16028, 3.99, '2007-03-23 20:21:22.996577'); -INSERT INTO dvds.payment VALUES (23793, 120, 2, 10696, 4.99, '2007-03-01 16:46:39.996577'); -INSERT INTO dvds.payment VALUES (23794, 120, 1, 10940, 3.99, '2007-03-02 01:36:55.996577'); -INSERT INTO dvds.payment VALUES (23795, 120, 2, 11133, 0.99, '2007-03-02 07:44:11.996577'); -INSERT INTO dvds.payment VALUES (23796, 120, 2, 13167, 2.99, '2007-03-19 12:05:07.996577'); -INSERT INTO dvds.payment VALUES (23797, 120, 2, 13375, 7.99, '2007-03-19 19:59:57.996577'); -INSERT INTO dvds.payment VALUES (23798, 120, 1, 14001, 2.99, '2007-03-20 18:35:41.996577'); -INSERT INTO dvds.payment VALUES (23799, 120, 1, 14153, 4.99, '2007-03-21 00:52:59.996577'); -INSERT INTO dvds.payment VALUES (23800, 120, 1, 14246, 4.99, '2007-03-21 04:02:35.996577'); -INSERT INTO dvds.payment VALUES (23801, 120, 2, 14460, 9.99, '2007-03-21 11:17:14.996577'); -INSERT INTO dvds.payment VALUES (23802, 120, 2, 14969, 6.99, '2007-03-22 05:17:41.996577'); -INSERT INTO dvds.payment VALUES (23803, 121, 2, 10457, 5.99, '2007-03-01 07:46:00.996577'); -INSERT INTO dvds.payment VALUES (23804, 121, 2, 11720, 8.99, '2007-03-17 06:15:20.996577'); -INSERT INTO dvds.payment VALUES (23805, 121, 2, 12242, 1.99, '2007-03-18 02:05:57.996577'); -INSERT INTO dvds.payment VALUES (23806, 121, 2, 12428, 3.99, '2007-03-18 08:52:47.996577'); -INSERT INTO dvds.payment VALUES (23807, 121, 2, 12734, 1.99, '2007-03-18 20:33:18.996577'); -INSERT INTO dvds.payment VALUES (23808, 121, 1, 12881, 5.99, '2007-03-19 01:56:39.996577'); -INSERT INTO dvds.payment VALUES (23809, 121, 2, 12892, 0.99, '2007-03-19 02:15:00.996577'); -INSERT INTO dvds.payment VALUES (23810, 121, 1, 14138, 7.99, '2007-03-21 00:28:03.996577'); -INSERT INTO dvds.payment VALUES (23811, 121, 1, 14177, 4.99, '2007-03-21 01:39:59.996577'); -INSERT INTO dvds.payment VALUES (23812, 121, 2, 14412, 9.99, '2007-03-21 09:30:35.996577'); -INSERT INTO dvds.payment VALUES (23813, 121, 1, 14464, 2.99, '2007-03-21 11:21:20.996577'); -INSERT INTO dvds.payment VALUES (23814, 121, 2, 15114, 7.99, '2007-03-22 10:53:21.996577'); -INSERT INTO dvds.payment VALUES (23815, 121, 1, 15369, 0.99, '2007-03-22 20:26:32.996577'); -INSERT INTO dvds.payment VALUES (23816, 121, 1, 16041, 2.99, '2007-03-23 20:48:52.996577'); -INSERT INTO dvds.payment VALUES (23817, 122, 1, 10626, 1.99, '2007-03-01 14:01:07.996577'); -INSERT INTO dvds.payment VALUES (23818, 122, 2, 11044, 3.99, '2007-03-02 04:33:53.996577'); -INSERT INTO dvds.payment VALUES (23819, 122, 2, 11197, 2.99, '2007-03-02 10:13:33.996577'); -INSERT INTO dvds.payment VALUES (23820, 122, 2, 12476, 4.99, '2007-03-18 10:51:06.996577'); -INSERT INTO dvds.payment VALUES (23821, 122, 2, 12711, 4.99, '2007-03-18 19:31:58.996577'); -INSERT INTO dvds.payment VALUES (23822, 122, 1, 13171, 2.99, '2007-03-19 12:17:20.996577'); -INSERT INTO dvds.payment VALUES (23823, 122, 1, 13812, 4.99, '2007-03-20 11:30:09.996577'); -INSERT INTO dvds.payment VALUES (23824, 122, 2, 14666, 5.99, '2007-03-21 18:19:35.996577'); -INSERT INTO dvds.payment VALUES (23825, 123, 2, 10295, 8.99, '2007-03-01 02:22:15.996577'); -INSERT INTO dvds.payment VALUES (23826, 123, 1, 12360, 2.99, '2007-03-18 06:15:01.996577'); -INSERT INTO dvds.payment VALUES (23827, 123, 1, 12402, 3.99, '2007-03-18 07:56:00.996577'); -INSERT INTO dvds.payment VALUES (23828, 123, 1, 13668, 2.99, '2007-03-20 06:54:32.996577'); -INSERT INTO dvds.payment VALUES (23829, 123, 2, 15152, 7.99, '2007-03-22 12:53:47.996577'); -INSERT INTO dvds.payment VALUES (23830, 123, 2, 15525, 4.99, '2007-03-23 02:11:58.996577'); -INSERT INTO dvds.payment VALUES (23831, 123, 1, 15621, 1.99, '2007-03-23 05:42:09.996577'); -INSERT INTO dvds.payment VALUES (23832, 123, 2, 15787, 2.99, '2007-03-23 12:20:23.996577'); -INSERT INTO dvds.payment VALUES (23833, 124, 2, 11493, 5.99, '2007-03-02 21:15:26.996577'); -INSERT INTO dvds.payment VALUES (23834, 124, 1, 12835, 4.99, '2007-03-19 00:16:11.996577'); -INSERT INTO dvds.payment VALUES (23835, 124, 2, 14737, 0.99, '2007-03-21 20:55:37.996577'); -INSERT INTO dvds.payment VALUES (23836, 124, 2, 15266, 4.99, '2007-03-22 17:05:50.996577'); -INSERT INTO dvds.payment VALUES (23837, 124, 2, 16023, 0.99, '2007-03-23 20:13:28.996577'); -INSERT INTO dvds.payment VALUES (23838, 125, 1, 10583, 2.99, '2007-03-01 12:23:01.996577'); -INSERT INTO dvds.payment VALUES (23839, 125, 1, 10699, 2.99, '2007-03-01 16:53:17.996577'); -INSERT INTO dvds.payment VALUES (23840, 125, 2, 11279, 7.99, '2007-03-02 12:58:29.996577'); -INSERT INTO dvds.payment VALUES (23841, 125, 1, 11806, 4.99, '2007-03-17 10:17:54.996577'); -INSERT INTO dvds.payment VALUES (23842, 125, 1, 11832, 4.99, '2007-03-17 11:23:57.996577'); -INSERT INTO dvds.payment VALUES (23843, 125, 1, 11999, 0.99, '2007-03-17 17:15:33.996577'); -INSERT INTO dvds.payment VALUES (23844, 125, 1, 12075, 4.99, '2007-03-17 20:23:21.996577'); -INSERT INTO dvds.payment VALUES (23845, 125, 2, 12262, 2.99, '2007-03-18 02:44:41.996577'); -INSERT INTO dvds.payment VALUES (23846, 125, 2, 13441, 6.99, '2007-03-19 22:16:49.996577'); -INSERT INTO dvds.payment VALUES (23847, 125, 2, 14456, 2.99, '2007-03-21 11:06:35.996577'); -INSERT INTO dvds.payment VALUES (23848, 125, 1, 15055, 2.99, '2007-03-22 08:43:05.996577'); -INSERT INTO dvds.payment VALUES (23849, 126, 1, 11196, 9.99, '2007-03-02 10:11:06.996577'); -INSERT INTO dvds.payment VALUES (23850, 126, 2, 11613, 4.99, '2007-03-17 02:18:59.996577'); -INSERT INTO dvds.payment VALUES (23851, 126, 1, 11779, 3.99, '2007-03-17 09:00:24.996577'); -INSERT INTO dvds.payment VALUES (23852, 126, 1, 11801, 0.99, '2007-03-17 09:58:37.996577'); -INSERT INTO dvds.payment VALUES (23853, 126, 2, 12991, 2.99, '2007-03-19 05:49:50.996577'); -INSERT INTO dvds.payment VALUES (23854, 126, 2, 13015, 7.99, '2007-03-19 06:25:17.996577'); -INSERT INTO dvds.payment VALUES (23855, 126, 2, 13177, 0.99, '2007-03-19 12:25:24.996577'); -INSERT INTO dvds.payment VALUES (23856, 126, 2, 14477, 2.99, '2007-03-21 12:01:04.996577'); -INSERT INTO dvds.payment VALUES (23857, 126, 2, 14577, 2.99, '2007-03-21 15:20:55.996577'); -INSERT INTO dvds.payment VALUES (23858, 126, 2, 15741, 4.99, '2007-03-23 10:39:20.996577'); -INSERT INTO dvds.payment VALUES (23859, 126, 1, 16007, 7.99, '2007-03-23 19:31:09.996577'); -INSERT INTO dvds.payment VALUES (23860, 127, 1, 10787, 10.99, '2007-03-01 20:03:27.996577'); -INSERT INTO dvds.payment VALUES (23861, 127, 1, 10973, 7.99, '2007-03-02 02:38:08.996577'); -INSERT INTO dvds.payment VALUES (23862, 127, 1, 11235, 0.99, '2007-03-02 11:41:47.996577'); -INSERT INTO dvds.payment VALUES (23863, 127, 2, 12060, 4.99, '2007-03-17 19:40:23.996577'); -INSERT INTO dvds.payment VALUES (23864, 127, 2, 12820, 2.99, '2007-03-18 23:33:34.996577'); -INSERT INTO dvds.payment VALUES (23865, 127, 2, 13043, 4.99, '2007-03-19 07:35:39.996577'); -INSERT INTO dvds.payment VALUES (23866, 127, 1, 13091, 2.99, '2007-03-19 09:08:36.996577'); -INSERT INTO dvds.payment VALUES (23867, 127, 2, 14030, 2.99, '2007-03-20 19:52:20.996577'); -INSERT INTO dvds.payment VALUES (23868, 127, 1, 14189, 2.99, '2007-03-21 02:00:43.996577'); -INSERT INTO dvds.payment VALUES (23869, 127, 1, 15463, 5.99, '2007-03-22 23:43:33.996577'); -INSERT INTO dvds.payment VALUES (23870, 127, 2, 15736, 5.99, '2007-03-23 10:08:56.996577'); -INSERT INTO dvds.payment VALUES (23871, 128, 1, 10394, 2.99, '2007-03-01 05:26:43.996577'); -INSERT INTO dvds.payment VALUES (23872, 128, 2, 12731, 2.99, '2007-03-18 20:24:04.996577'); -INSERT INTO dvds.payment VALUES (23873, 128, 2, 12843, 2.99, '2007-03-19 00:27:20.996577'); -INSERT INTO dvds.payment VALUES (23874, 128, 2, 12910, 0.99, '2007-03-19 02:51:39.996577'); -INSERT INTO dvds.payment VALUES (23875, 128, 2, 13027, 0.99, '2007-03-19 06:53:42.996577'); -INSERT INTO dvds.payment VALUES (23876, 128, 2, 13181, 5.99, '2007-03-19 12:29:22.996577'); -INSERT INTO dvds.payment VALUES (23877, 128, 1, 13509, 0.99, '2007-03-20 00:42:42.996577'); -INSERT INTO dvds.payment VALUES (23878, 128, 2, 13964, 2.99, '2007-03-20 16:52:52.996577'); -INSERT INTO dvds.payment VALUES (23879, 128, 2, 14157, 0.99, '2007-03-21 01:11:41.996577'); -INSERT INTO dvds.payment VALUES (23880, 128, 1, 14925, 8.99, '2007-03-22 03:44:42.996577'); -INSERT INTO dvds.payment VALUES (23881, 128, 1, 15220, 3.99, '2007-03-22 15:30:49.996577'); -INSERT INTO dvds.payment VALUES (23882, 128, 1, 15835, 8.99, '2007-03-23 13:53:53.996577'); -INSERT INTO dvds.payment VALUES (23883, 129, 2, 10395, 2.99, '2007-03-01 05:36:48.996577'); -INSERT INTO dvds.payment VALUES (23884, 129, 1, 10468, 0.99, '2007-03-01 08:16:55.996577'); -INSERT INTO dvds.payment VALUES (23885, 129, 1, 10483, 2.99, '2007-03-01 08:48:11.996577'); -INSERT INTO dvds.payment VALUES (23886, 129, 2, 10550, 2.99, '2007-03-01 11:15:18.996577'); -INSERT INTO dvds.payment VALUES (23887, 129, 2, 10816, 4.99, '2007-03-01 21:17:23.996577'); -INSERT INTO dvds.payment VALUES (23888, 129, 2, 12612, 3.99, '2007-03-18 15:38:31.996577'); -INSERT INTO dvds.payment VALUES (23889, 129, 2, 12728, 4.99, '2007-03-18 20:16:14.996577'); -INSERT INTO dvds.payment VALUES (23890, 129, 2, 13653, 10.99, '2007-03-20 06:23:20.996577'); -INSERT INTO dvds.payment VALUES (23891, 129, 1, 13915, 4.99, '2007-03-20 15:11:19.996577'); -INSERT INTO dvds.payment VALUES (23892, 129, 1, 13919, 4.99, '2007-03-20 15:16:00.996577'); -INSERT INTO dvds.payment VALUES (23893, 129, 1, 13961, 0.99, '2007-03-20 16:45:00.996577'); -INSERT INTO dvds.payment VALUES (23894, 129, 1, 14353, 0.99, '2007-03-21 07:36:16.996577'); -INSERT INTO dvds.payment VALUES (23895, 129, 2, 14968, 1.99, '2007-03-22 05:15:25.996577'); -INSERT INTO dvds.payment VALUES (23896, 130, 2, 10568, 2.99, '2007-03-01 11:45:54.996577'); -INSERT INTO dvds.payment VALUES (23897, 130, 2, 10645, 5.99, '2007-03-01 14:20:27.996577'); -INSERT INTO dvds.payment VALUES (23898, 130, 1, 11811, 2.99, '2007-03-17 10:27:44.996577'); -INSERT INTO dvds.payment VALUES (23899, 130, 1, 12094, 2.99, '2007-03-17 20:59:30.996577'); -INSERT INTO dvds.payment VALUES (23900, 130, 1, 12777, 6.99, '2007-03-18 22:07:48.996577'); -INSERT INTO dvds.payment VALUES (23901, 130, 2, 14111, 0.99, '2007-03-20 23:27:27.996577'); -INSERT INTO dvds.payment VALUES (23902, 130, 2, 15574, 5.99, '2007-03-23 03:57:58.996577'); -INSERT INTO dvds.payment VALUES (23903, 130, 1, 15777, 4.99, '2007-03-23 11:57:34.996577'); -INSERT INTO dvds.payment VALUES (23904, 131, 1, 10459, 4.99, '2007-03-01 07:48:35.996577'); -INSERT INTO dvds.payment VALUES (23905, 131, 1, 10861, 1.99, '2007-03-01 22:41:12.996577'); -INSERT INTO dvds.payment VALUES (23906, 131, 2, 11971, 0.99, '2007-03-17 16:22:08.996577'); -INSERT INTO dvds.payment VALUES (23907, 131, 1, 11973, 2.99, '2007-03-17 16:24:24.996577'); -INSERT INTO dvds.payment VALUES (23908, 131, 1, 12216, 0.99, '2007-03-18 01:05:33.996577'); -INSERT INTO dvds.payment VALUES (23909, 131, 2, 12263, 0.99, '2007-03-18 02:44:44.996577'); -INSERT INTO dvds.payment VALUES (23910, 131, 1, 12372, 9.99, '2007-03-18 06:33:01.996577'); -INSERT INTO dvds.payment VALUES (23911, 131, 2, 13050, 6.99, '2007-03-19 07:59:49.996577'); -INSERT INTO dvds.payment VALUES (23912, 131, 2, 13346, 7.99, '2007-03-19 18:56:47.996577'); -INSERT INTO dvds.payment VALUES (23913, 131, 2, 13353, 2.99, '2007-03-19 19:22:09.996577'); -INSERT INTO dvds.payment VALUES (23914, 131, 1, 13407, 0.99, '2007-03-19 20:54:52.996577'); -INSERT INTO dvds.payment VALUES (23915, 131, 2, 15659, 2.99, '2007-03-23 07:17:09.996577'); -INSERT INTO dvds.payment VALUES (23916, 131, 1, 16042, 2.99, '2007-03-23 20:49:06.996577'); -INSERT INTO dvds.payment VALUES (23917, 132, 2, 10243, 4.99, '2007-03-01 00:47:12.996577'); -INSERT INTO dvds.payment VALUES (23918, 132, 1, 10400, 6.99, '2007-03-01 05:46:50.996577'); -INSERT INTO dvds.payment VALUES (23919, 132, 2, 10619, 3.99, '2007-03-01 13:35:30.996577'); -INSERT INTO dvds.payment VALUES (23920, 132, 1, 10638, 6.99, '2007-03-01 14:12:46.996577'); -INSERT INTO dvds.payment VALUES (23921, 132, 2, 11140, 0.99, '2007-03-02 07:56:11.996577'); -INSERT INTO dvds.payment VALUES (23922, 132, 2, 11812, 0.99, '2007-03-17 10:29:20.996577'); -INSERT INTO dvds.payment VALUES (23923, 132, 2, 12133, 0.99, '2007-03-17 22:15:42.996577'); -INSERT INTO dvds.payment VALUES (23924, 132, 1, 15874, 4.99, '2007-03-23 14:59:21.996577'); -INSERT INTO dvds.payment VALUES (23925, 133, 1, 10665, 0.99, '2007-03-01 15:24:43.996577'); -INSERT INTO dvds.payment VALUES (23926, 133, 1, 12419, 4.99, '2007-03-18 08:30:14.996577'); -INSERT INTO dvds.payment VALUES (23927, 133, 1, 12834, 4.99, '2007-03-19 00:15:56.996577'); -INSERT INTO dvds.payment VALUES (23928, 133, 2, 13323, 2.99, '2007-03-19 18:16:33.996577'); -INSERT INTO dvds.payment VALUES (23929, 133, 1, 13455, 1.99, '2007-03-19 23:00:43.996577'); -INSERT INTO dvds.payment VALUES (23930, 133, 2, 13910, 2.99, '2007-03-20 14:59:15.996577'); -INSERT INTO dvds.payment VALUES (23931, 133, 2, 15080, 0.99, '2007-03-22 09:40:17.996577'); -INSERT INTO dvds.payment VALUES (23932, 133, 1, 16009, 6.99, '2007-03-23 19:36:25.996577'); -INSERT INTO dvds.payment VALUES (23933, 134, 1, 10864, 6.99, '2007-03-01 22:47:25.996577'); -INSERT INTO dvds.payment VALUES (23934, 134, 1, 11280, 3.99, '2007-03-02 13:02:59.996577'); -INSERT INTO dvds.payment VALUES (23935, 134, 1, 11283, 4.99, '2007-03-02 13:08:12.996577'); -INSERT INTO dvds.payment VALUES (23936, 134, 2, 11482, 4.99, '2007-03-02 20:52:57.996577'); -INSERT INTO dvds.payment VALUES (23937, 134, 1, 12754, 7.99, '2007-03-18 21:06:07.996577'); -INSERT INTO dvds.payment VALUES (23938, 134, 2, 12987, 2.99, '2007-03-19 05:40:10.996577'); -INSERT INTO dvds.payment VALUES (23939, 134, 2, 13006, 2.99, '2007-03-19 06:15:42.996577'); -INSERT INTO dvds.payment VALUES (23940, 134, 2, 14265, 2.99, '2007-03-21 04:48:40.996577'); -INSERT INTO dvds.payment VALUES (23941, 134, 2, 15963, 2.99, '2007-03-23 18:11:12.996577'); -INSERT INTO dvds.payment VALUES (23942, 135, 2, 10471, 0.99, '2007-03-01 08:21:03.996577'); -INSERT INTO dvds.payment VALUES (23943, 135, 1, 10611, 2.99, '2007-03-01 13:22:18.996577'); -INSERT INTO dvds.payment VALUES (23944, 135, 1, 10698, 3.99, '2007-03-01 16:53:07.996577'); -INSERT INTO dvds.payment VALUES (23945, 135, 2, 11194, 5.99, '2007-03-02 10:04:19.996577'); -INSERT INTO dvds.payment VALUES (23946, 135, 1, 11704, 7.99, '2007-03-17 05:49:48.996577'); -INSERT INTO dvds.payment VALUES (23947, 135, 1, 12249, 2.99, '2007-03-18 02:22:00.996577'); -INSERT INTO dvds.payment VALUES (23948, 135, 1, 13035, 0.99, '2007-03-19 07:15:11.996577'); -INSERT INTO dvds.payment VALUES (23949, 135, 1, 14005, 0.99, '2007-03-20 18:47:31.996577'); -INSERT INTO dvds.payment VALUES (23950, 135, 2, 14136, 5.99, '2007-03-21 00:25:52.996577'); -INSERT INTO dvds.payment VALUES (23951, 135, 2, 15908, 2.99, '2007-03-23 16:10:26.996577'); -INSERT INTO dvds.payment VALUES (23952, 136, 2, 11992, 10.99, '2007-03-17 16:55:48.996577'); -INSERT INTO dvds.payment VALUES (23953, 136, 1, 12287, 5.99, '2007-03-18 03:26:32.996577'); -INSERT INTO dvds.payment VALUES (23954, 136, 2, 12539, 0.99, '2007-03-18 12:38:35.996577'); -INSERT INTO dvds.payment VALUES (23955, 136, 2, 13992, 4.99, '2007-03-20 17:59:01.996577'); -INSERT INTO dvds.payment VALUES (23956, 136, 2, 14379, 0.99, '2007-03-21 08:21:29.996577'); -INSERT INTO dvds.payment VALUES (23957, 136, 1, 14437, 2.99, '2007-03-21 10:16:58.996577'); -INSERT INTO dvds.payment VALUES (23958, 136, 1, 15439, 4.99, '2007-03-22 23:02:54.996577'); -INSERT INTO dvds.payment VALUES (23959, 137, 2, 10595, 4.99, '2007-03-01 12:44:54.996577'); -INSERT INTO dvds.payment VALUES (23960, 137, 2, 10842, 5.99, '2007-03-01 22:09:50.996577'); -INSERT INTO dvds.payment VALUES (23961, 137, 2, 11057, 4.99, '2007-03-02 05:06:45.996577'); -INSERT INTO dvds.payment VALUES (23962, 137, 1, 11281, 3.99, '2007-03-02 13:03:27.996577'); -INSERT INTO dvds.payment VALUES (23963, 137, 2, 11732, 3.99, '2007-03-17 06:58:12.996577'); -INSERT INTO dvds.payment VALUES (23964, 137, 1, 12078, 2.99, '2007-03-17 20:28:48.996577'); -INSERT INTO dvds.payment VALUES (23965, 137, 1, 13148, 0.99, '2007-03-19 11:23:56.996577'); -INSERT INTO dvds.payment VALUES (23966, 137, 1, 13472, 5.99, '2007-03-19 23:31:57.996577'); -INSERT INTO dvds.payment VALUES (23967, 137, 1, 13776, 5.99, '2007-03-20 10:25:32.996577'); -INSERT INTO dvds.payment VALUES (23968, 137, 1, 14754, 7.99, '2007-03-21 21:45:52.996577'); -INSERT INTO dvds.payment VALUES (23969, 137, 2, 15082, 7.99, '2007-03-22 09:45:32.996577'); -INSERT INTO dvds.payment VALUES (23970, 137, 1, 15133, 0.99, '2007-03-22 11:46:09.996577'); -INSERT INTO dvds.payment VALUES (23971, 137, 2, 15537, 2.99, '2007-03-23 02:28:56.996577'); -INSERT INTO dvds.payment VALUES (23972, 137, 2, 15889, 4.99, '2007-03-23 15:26:09.996577'); -INSERT INTO dvds.payment VALUES (23973, 137, 1, 16030, 9.99, '2007-03-23 20:24:30.996577'); -INSERT INTO dvds.payment VALUES (23974, 138, 1, 10268, 3.99, '2007-03-01 01:37:22.996577'); -INSERT INTO dvds.payment VALUES (23975, 138, 1, 10431, 5.99, '2007-03-01 07:10:20.996577'); -INSERT INTO dvds.payment VALUES (23976, 138, 1, 11015, 4.99, '2007-03-02 03:41:26.996577'); -INSERT INTO dvds.payment VALUES (23977, 138, 1, 11088, 0.99, '2007-03-02 06:16:57.996577'); -INSERT INTO dvds.payment VALUES (23978, 138, 1, 11463, 0.99, '2007-03-02 20:06:02.996577'); -INSERT INTO dvds.payment VALUES (23979, 138, 2, 12550, 2.99, '2007-03-18 13:09:04.996577'); -INSERT INTO dvds.payment VALUES (23980, 138, 2, 12873, 2.99, '2007-03-19 01:34:07.996577'); -INSERT INTO dvds.payment VALUES (23981, 138, 1, 14194, 1.99, '2007-03-21 02:08:37.996577'); -INSERT INTO dvds.payment VALUES (23982, 138, 2, 14432, 4.99, '2007-03-21 10:04:41.996577'); -INSERT INTO dvds.payment VALUES (23983, 138, 2, 14486, 4.99, '2007-03-21 12:21:20.996577'); -INSERT INTO dvds.payment VALUES (23984, 138, 1, 14987, 4.99, '2007-03-22 06:09:34.996577'); -INSERT INTO dvds.payment VALUES (23985, 138, 1, 15424, 2.99, '2007-03-22 22:31:27.996577'); -INSERT INTO dvds.payment VALUES (23986, 138, 1, 15501, 0.99, '2007-03-23 01:08:22.996577'); -INSERT INTO dvds.payment VALUES (23987, 139, 1, 10900, 2.99, '2007-03-02 00:02:52.996577'); -INSERT INTO dvds.payment VALUES (23988, 139, 1, 12859, 6.99, '2007-03-19 00:51:49.996577'); -INSERT INTO dvds.payment VALUES (23989, 139, 2, 13401, 3.99, '2007-03-19 20:44:42.996577'); -INSERT INTO dvds.payment VALUES (23990, 139, 2, 14736, 5.99, '2007-03-21 20:54:19.996577'); -INSERT INTO dvds.payment VALUES (23991, 139, 1, 14788, 2.99, '2007-03-21 22:56:25.996577'); -INSERT INTO dvds.payment VALUES (23992, 139, 1, 15024, 2.99, '2007-03-22 07:25:36.996577'); -INSERT INTO dvds.payment VALUES (23993, 139, 2, 15029, 2.99, '2007-03-22 07:33:19.996577'); -INSERT INTO dvds.payment VALUES (23994, 139, 1, 15062, 2.99, '2007-03-22 09:03:05.996577'); -INSERT INTO dvds.payment VALUES (23995, 139, 1, 15218, 9.99, '2007-03-22 15:27:31.996577'); -INSERT INTO dvds.payment VALUES (23996, 139, 1, 15471, 3.99, '2007-03-23 00:07:14.996577'); -INSERT INTO dvds.payment VALUES (23997, 139, 1, 15743, 0.99, '2007-03-23 10:40:31.996577'); -INSERT INTO dvds.payment VALUES (23998, 140, 1, 10342, 6.99, '2007-03-01 03:39:37.996577'); -INSERT INTO dvds.payment VALUES (23999, 140, 2, 11430, 3.99, '2007-03-02 18:33:02.996577'); -INSERT INTO dvds.payment VALUES (24000, 140, 1, 12086, 4.99, '2007-03-17 20:48:27.996577'); -INSERT INTO dvds.payment VALUES (24001, 140, 1, 12675, 4.99, '2007-03-18 18:02:28.996577'); -INSERT INTO dvds.payment VALUES (24002, 140, 2, 13053, 10.99, '2007-03-19 08:00:14.996577'); -INSERT INTO dvds.payment VALUES (24003, 140, 1, 15261, 2.99, '2007-03-22 16:53:00.996577'); -INSERT INTO dvds.payment VALUES (24004, 140, 1, 15852, 2.99, '2007-03-23 14:15:28.996577'); -INSERT INTO dvds.payment VALUES (24005, 141, 1, 10287, 3.99, '2007-03-01 02:05:27.996577'); -INSERT INTO dvds.payment VALUES (24006, 141, 1, 10379, 1.99, '2007-03-01 05:02:55.996577'); -INSERT INTO dvds.payment VALUES (24007, 141, 1, 10798, 4.99, '2007-03-01 20:31:36.996577'); -INSERT INTO dvds.payment VALUES (24008, 141, 1, 11411, 2.99, '2007-03-02 17:58:13.996577'); -INSERT INTO dvds.payment VALUES (24009, 141, 1, 11412, 5.99, '2007-03-02 18:01:17.996577'); -INSERT INTO dvds.payment VALUES (24010, 141, 1, 12032, 5.99, '2007-03-17 18:42:52.996577'); -INSERT INTO dvds.payment VALUES (24011, 141, 1, 12093, 2.99, '2007-03-17 20:57:06.996577'); -INSERT INTO dvds.payment VALUES (24012, 141, 2, 12107, 3.99, '2007-03-17 21:24:50.996577'); -INSERT INTO dvds.payment VALUES (24013, 141, 2, 12353, 2.99, '2007-03-18 06:01:34.996577'); -INSERT INTO dvds.payment VALUES (24014, 141, 1, 13000, 0.99, '2007-03-19 06:05:08.996577'); -INSERT INTO dvds.payment VALUES (24015, 141, 2, 13169, 2.99, '2007-03-19 12:12:01.996577'); -INSERT INTO dvds.payment VALUES (24016, 141, 2, 13470, 4.99, '2007-03-19 23:29:42.996577'); -INSERT INTO dvds.payment VALUES (24017, 141, 2, 14059, 7.99, '2007-03-20 20:53:10.996577'); -INSERT INTO dvds.payment VALUES (24018, 141, 1, 14112, 2.99, '2007-03-20 23:29:12.996577'); -INSERT INTO dvds.payment VALUES (24019, 141, 1, 15013, 4.99, '2007-03-22 07:11:11.996577'); -INSERT INTO dvds.payment VALUES (24020, 141, 1, 15309, 0.99, '2007-03-22 18:23:18.996577'); -INSERT INTO dvds.payment VALUES (24021, 141, 1, 15964, 2.99, '2007-03-23 18:13:51.996577'); -INSERT INTO dvds.payment VALUES (24022, 142, 2, 10934, 5.99, '2007-03-02 01:20:44.996577'); -INSERT INTO dvds.payment VALUES (24023, 142, 2, 11244, 5.99, '2007-03-02 12:01:50.996577'); -INSERT INTO dvds.payment VALUES (24024, 142, 1, 12964, 0.99, '2007-03-19 04:57:39.996577'); -INSERT INTO dvds.payment VALUES (24025, 142, 1, 13044, 0.99, '2007-03-19 07:42:57.996577'); -INSERT INTO dvds.payment VALUES (24026, 142, 2, 13745, 0.99, '2007-03-20 09:22:15.996577'); -INSERT INTO dvds.payment VALUES (24027, 142, 1, 13959, 0.99, '2007-03-20 16:44:47.996577'); -INSERT INTO dvds.payment VALUES (24028, 142, 2, 14116, 4.99, '2007-03-20 23:39:43.996577'); -INSERT INTO dvds.payment VALUES (24029, 142, 2, 14813, 0.99, '2007-03-21 23:40:03.996577'); -INSERT INTO dvds.payment VALUES (24030, 142, 2, 15333, 2.99, '2007-03-22 19:12:32.996577'); -INSERT INTO dvds.payment VALUES (24031, 142, 1, 15477, 1.99, '2007-03-23 00:15:01.996577'); -INSERT INTO dvds.payment VALUES (24032, 143, 1, 11278, 6.99, '2007-03-02 12:58:09.996577'); -INSERT INTO dvds.payment VALUES (24033, 143, 2, 11651, 6.99, '2007-03-17 03:30:51.996577'); -INSERT INTO dvds.payment VALUES (24034, 143, 1, 12408, 2.99, '2007-03-18 08:09:04.996577'); -INSERT INTO dvds.payment VALUES (24035, 143, 2, 13835, 4.99, '2007-03-20 12:34:59.996577'); -INSERT INTO dvds.payment VALUES (24036, 143, 1, 15250, 5.99, '2007-03-22 16:31:37.996577'); -INSERT INTO dvds.payment VALUES (24037, 143, 1, 16029, 4.99, '2007-03-23 20:22:28.996577'); -INSERT INTO dvds.payment VALUES (24038, 144, 1, 10302, 0.99, '2007-03-01 02:40:34.996577'); -INSERT INTO dvds.payment VALUES (24039, 144, 1, 10593, 4.99, '2007-03-01 12:41:45.996577'); -INSERT INTO dvds.payment VALUES (24040, 144, 1, 10740, 5.99, '2007-03-01 18:18:58.996577'); -INSERT INTO dvds.payment VALUES (24041, 144, 1, 10951, 4.99, '2007-03-02 01:55:01.996577'); -INSERT INTO dvds.payment VALUES (24042, 144, 1, 11228, 2.99, '2007-03-02 11:23:49.996577'); -INSERT INTO dvds.payment VALUES (24043, 144, 2, 11476, 6.99, '2007-03-02 20:32:13.996577'); -INSERT INTO dvds.payment VALUES (24044, 144, 1, 11534, 7.99, '2007-03-16 23:03:53.996577'); -INSERT INTO dvds.payment VALUES (24045, 144, 1, 11859, 4.99, '2007-03-17 12:19:46.996577'); -INSERT INTO dvds.payment VALUES (24046, 144, 2, 12087, 2.99, '2007-03-17 20:48:38.996577'); -INSERT INTO dvds.payment VALUES (24047, 144, 2, 12733, 2.99, '2007-03-18 20:27:26.996577'); -INSERT INTO dvds.payment VALUES (24048, 144, 1, 12858, 3.99, '2007-03-19 00:50:42.996577'); -INSERT INTO dvds.payment VALUES (24049, 144, 2, 12980, 6.99, '2007-03-19 05:31:40.996577'); -INSERT INTO dvds.payment VALUES (24050, 144, 2, 13881, 2.99, '2007-03-20 13:47:21.996577'); -INSERT INTO dvds.payment VALUES (24051, 144, 2, 14159, 2.99, '2007-03-21 01:14:24.996577'); -INSERT INTO dvds.payment VALUES (24052, 144, 1, 15017, 1.99, '2007-03-22 07:16:10.996577'); -INSERT INTO dvds.payment VALUES (24053, 144, 1, 15753, 7.99, '2007-03-23 11:11:56.996577'); -INSERT INTO dvds.payment VALUES (24054, 145, 2, 10799, 4.99, '2007-03-01 20:31:57.996577'); -INSERT INTO dvds.payment VALUES (24055, 145, 2, 11904, 5.99, '2007-03-17 14:07:52.996577'); -INSERT INTO dvds.payment VALUES (24056, 145, 2, 11954, 2.99, '2007-03-17 15:47:02.996577'); -INSERT INTO dvds.payment VALUES (24057, 145, 1, 12637, 2.99, '2007-03-18 16:35:19.996577'); -INSERT INTO dvds.payment VALUES (24058, 145, 2, 12785, 2.99, '2007-03-18 22:34:15.996577'); -INSERT INTO dvds.payment VALUES (24059, 145, 2, 13012, 7.99, '2007-03-19 06:23:25.996577'); -INSERT INTO dvds.payment VALUES (24060, 145, 1, 13164, 3.99, '2007-03-19 11:59:21.996577'); -INSERT INTO dvds.payment VALUES (24061, 145, 2, 13272, 0.99, '2007-03-19 16:17:39.996577'); -INSERT INTO dvds.payment VALUES (24062, 145, 2, 14044, 5.99, '2007-03-20 20:17:04.996577'); -INSERT INTO dvds.payment VALUES (24063, 145, 2, 14389, 6.99, '2007-03-21 08:43:46.996577'); -INSERT INTO dvds.payment VALUES (24064, 146, 2, 11173, 7.99, '2007-03-02 08:56:26.996577'); -INSERT INTO dvds.payment VALUES (24065, 146, 1, 11221, 2.99, '2007-03-02 11:00:38.996577'); -INSERT INTO dvds.payment VALUES (24066, 146, 2, 11370, 0.99, '2007-03-02 16:34:27.996577'); -INSERT INTO dvds.payment VALUES (24067, 146, 2, 11392, 5.99, '2007-03-02 17:09:37.996577'); -INSERT INTO dvds.payment VALUES (24068, 146, 1, 11573, 4.99, '2007-03-17 00:06:44.996577'); -INSERT INTO dvds.payment VALUES (24069, 146, 1, 11857, 4.99, '2007-03-17 12:16:56.996577'); -INSERT INTO dvds.payment VALUES (24070, 146, 1, 12129, 7.99, '2007-03-17 21:59:51.996577'); -INSERT INTO dvds.payment VALUES (24071, 146, 1, 12385, 2.99, '2007-03-18 07:07:59.996577'); -INSERT INTO dvds.payment VALUES (24072, 146, 1, 12888, 4.99, '2007-03-19 02:09:35.996577'); -INSERT INTO dvds.payment VALUES (24073, 146, 1, 13606, 4.99, '2007-03-20 04:35:27.996577'); -INSERT INTO dvds.payment VALUES (24074, 146, 2, 13829, 4.99, '2007-03-20 12:18:43.996577'); -INSERT INTO dvds.payment VALUES (24075, 146, 2, 14143, 2.99, '2007-03-21 00:38:58.996577'); -INSERT INTO dvds.payment VALUES (24076, 146, 1, 15842, 6.99, '2007-03-23 14:04:31.996577'); -INSERT INTO dvds.payment VALUES (24077, 147, 1, 10706, 7.99, '2007-03-01 17:09:54.996577'); -INSERT INTO dvds.payment VALUES (24078, 147, 2, 10752, 8.99, '2007-03-01 18:37:15.996577'); -INSERT INTO dvds.payment VALUES (24079, 147, 1, 12284, 4.99, '2007-03-18 03:24:15.996577'); -INSERT INTO dvds.payment VALUES (24080, 147, 1, 12757, 4.99, '2007-03-18 21:26:11.996577'); -INSERT INTO dvds.payment VALUES (24081, 147, 2, 13542, 4.99, '2007-03-20 02:10:23.996577'); -INSERT INTO dvds.payment VALUES (24082, 147, 2, 13670, 3.99, '2007-03-20 06:55:27.996577'); -INSERT INTO dvds.payment VALUES (24083, 147, 2, 14021, 4.99, '2007-03-20 19:30:38.996577'); -INSERT INTO dvds.payment VALUES (24084, 147, 1, 14156, 0.99, '2007-03-21 01:03:42.996577'); -INSERT INTO dvds.payment VALUES (24085, 147, 2, 14641, 0.99, '2007-03-21 17:33:49.996577'); -INSERT INTO dvds.payment VALUES (24086, 147, 2, 14960, 4.99, '2007-03-22 05:00:02.996577'); -INSERT INTO dvds.payment VALUES (24087, 147, 1, 15052, 2.99, '2007-03-22 08:37:45.996577'); -INSERT INTO dvds.payment VALUES (24088, 147, 2, 15331, 4.99, '2007-03-22 19:06:23.996577'); -INSERT INTO dvds.payment VALUES (24089, 147, 2, 15513, 4.99, '2007-03-23 01:30:22.996577'); -INSERT INTO dvds.payment VALUES (24090, 147, 1, 15730, 8.99, '2007-03-23 10:01:01.996577'); -INSERT INTO dvds.payment VALUES (24091, 147, 2, 16004, 6.99, '2007-03-23 19:21:46.996577'); -INSERT INTO dvds.payment VALUES (24092, 148, 2, 10830, 6.99, '2007-03-01 21:46:32.996577'); -INSERT INTO dvds.payment VALUES (24093, 148, 1, 11357, 10.99, '2007-03-02 16:11:15.996577'); -INSERT INTO dvds.payment VALUES (24094, 148, 1, 12029, 2.99, '2007-03-17 18:35:27.996577'); -INSERT INTO dvds.payment VALUES (24095, 148, 2, 12038, 0.99, '2007-03-17 18:56:52.996577'); -INSERT INTO dvds.payment VALUES (24096, 148, 2, 12512, 3.99, '2007-03-18 11:56:53.996577'); -INSERT INTO dvds.payment VALUES (24097, 148, 1, 12944, 6.99, '2007-03-19 04:16:38.996577'); -INSERT INTO dvds.payment VALUES (24098, 148, 1, 12983, 6.99, '2007-03-19 05:35:17.996577'); -INSERT INTO dvds.payment VALUES (24099, 148, 1, 14055, 0.99, '2007-03-20 20:46:26.996577'); -INSERT INTO dvds.payment VALUES (24100, 148, 1, 14155, 4.99, '2007-03-21 01:00:01.996577'); -INSERT INTO dvds.payment VALUES (24101, 148, 2, 14184, 6.99, '2007-03-21 01:53:16.996577'); -INSERT INTO dvds.payment VALUES (24102, 148, 2, 14629, 2.99, '2007-03-21 17:08:18.996577'); -INSERT INTO dvds.payment VALUES (24103, 148, 2, 14713, 0.99, '2007-03-21 19:55:50.996577'); -INSERT INTO dvds.payment VALUES (24104, 148, 2, 14879, 5.99, '2007-03-22 02:10:38.996577'); -INSERT INTO dvds.payment VALUES (24105, 148, 2, 14965, 2.99, '2007-03-22 05:14:19.996577'); -INSERT INTO dvds.payment VALUES (24106, 148, 2, 15237, 4.99, '2007-03-22 16:12:56.996577'); -INSERT INTO dvds.payment VALUES (24107, 148, 2, 15379, 8.99, '2007-03-22 20:54:39.996577'); -INSERT INTO dvds.payment VALUES (24108, 148, 1, 15541, 3.99, '2007-03-23 02:42:19.996577'); -INSERT INTO dvds.payment VALUES (24109, 148, 2, 15586, 3.99, '2007-03-23 04:25:30.996577'); -INSERT INTO dvds.payment VALUES (24110, 149, 2, 10737, 7.99, '2007-03-01 17:59:50.996577'); -INSERT INTO dvds.payment VALUES (24111, 149, 2, 10967, 0.99, '2007-03-02 02:30:42.996577'); -INSERT INTO dvds.payment VALUES (24112, 149, 1, 11561, 2.99, '2007-03-16 23:51:35.996577'); -INSERT INTO dvds.payment VALUES (24113, 149, 1, 12000, 4.99, '2007-03-17 17:18:10.996577'); -INSERT INTO dvds.payment VALUES (24114, 149, 1, 14771, 3.99, '2007-03-21 22:18:41.996577'); -INSERT INTO dvds.payment VALUES (24115, 149, 2, 15479, 4.99, '2007-03-23 00:19:19.996577'); -INSERT INTO dvds.payment VALUES (24116, 149, 2, 15562, 2.99, '2007-03-23 03:32:59.996577'); -INSERT INTO dvds.payment VALUES (24117, 150, 1, 10686, 2.99, '2007-03-01 16:19:47.996577'); -INSERT INTO dvds.payment VALUES (24118, 150, 2, 11123, 2.99, '2007-03-02 07:22:43.996577'); -INSERT INTO dvds.payment VALUES (24119, 150, 2, 11789, 6.99, '2007-03-17 09:27:50.996577'); -INSERT INTO dvds.payment VALUES (24120, 150, 2, 12260, 6.99, '2007-03-18 02:44:09.996577'); -INSERT INTO dvds.payment VALUES (24121, 150, 2, 12335, 2.99, '2007-03-18 05:27:41.996577'); -INSERT INTO dvds.payment VALUES (24122, 150, 2, 12627, 2.99, '2007-03-18 16:05:37.996577'); -INSERT INTO dvds.payment VALUES (24123, 150, 1, 12887, 1.99, '2007-03-19 02:07:20.996577'); -INSERT INTO dvds.payment VALUES (24124, 150, 2, 12890, 0.99, '2007-03-19 02:10:34.996577'); -INSERT INTO dvds.payment VALUES (24125, 150, 1, 13116, 6.99, '2007-03-19 10:00:07.996577'); -INSERT INTO dvds.payment VALUES (24126, 150, 2, 13255, 8.99, '2007-03-19 15:22:38.996577'); -INSERT INTO dvds.payment VALUES (24127, 150, 1, 13372, 2.99, '2007-03-19 19:51:45.996577'); -INSERT INTO dvds.payment VALUES (24128, 150, 2, 13599, 5.99, '2007-03-20 04:28:29.996577'); -INSERT INTO dvds.payment VALUES (24129, 150, 2, 14165, 0.99, '2007-03-21 01:27:43.996577'); -INSERT INTO dvds.payment VALUES (24130, 150, 2, 14454, 2.99, '2007-03-21 11:04:15.996577'); -INSERT INTO dvds.payment VALUES (24131, 150, 2, 14520, 9.99, '2007-03-21 13:29:15.996577'); -INSERT INTO dvds.payment VALUES (24132, 150, 1, 14663, 0.99, '2007-03-21 18:16:21.996577'); -INSERT INTO dvds.payment VALUES (24133, 151, 1, 10311, 4.99, '2007-03-01 02:56:25.996577'); -INSERT INTO dvds.payment VALUES (24134, 151, 1, 10662, 2.99, '2007-03-01 15:19:23.996577'); -INSERT INTO dvds.payment VALUES (24135, 151, 2, 11714, 2.99, '2007-03-17 06:03:21.996577'); -INSERT INTO dvds.payment VALUES (24136, 151, 2, 13230, 0.99, '2007-03-19 14:40:33.996577'); -INSERT INTO dvds.payment VALUES (24137, 151, 1, 13568, 5.99, '2007-03-20 03:31:12.996577'); -INSERT INTO dvds.payment VALUES (24138, 151, 1, 14856, 4.99, '2007-03-22 01:00:17.996577'); -INSERT INTO dvds.payment VALUES (24139, 151, 2, 14922, 3.99, '2007-03-22 03:41:31.996577'); -INSERT INTO dvds.payment VALUES (24140, 151, 1, 15227, 4.99, '2007-03-22 15:51:07.996577'); -INSERT INTO dvds.payment VALUES (24141, 151, 1, 15926, 2.99, '2007-03-23 16:49:22.996577'); -INSERT INTO dvds.payment VALUES (24142, 151, 2, 15996, 2.99, '2007-03-23 19:00:04.996577'); -INSERT INTO dvds.payment VALUES (24143, 152, 1, 10320, 6.99, '2007-03-01 03:07:52.996577'); -INSERT INTO dvds.payment VALUES (24144, 152, 2, 11638, 6.99, '2007-03-17 03:07:35.996577'); -INSERT INTO dvds.payment VALUES (24145, 152, 2, 11783, 0.99, '2007-03-17 09:07:50.996577'); -INSERT INTO dvds.payment VALUES (24146, 152, 1, 12697, 2.99, '2007-03-18 18:43:22.996577'); -INSERT INTO dvds.payment VALUES (24147, 152, 1, 12917, 4.99, '2007-03-19 02:55:37.996577'); -INSERT INTO dvds.payment VALUES (24148, 152, 2, 12960, 1.99, '2007-03-19 04:50:18.996577'); -INSERT INTO dvds.payment VALUES (24149, 152, 1, 13204, 4.99, '2007-03-19 13:31:14.996577'); -INSERT INTO dvds.payment VALUES (24150, 152, 2, 13484, 0.99, '2007-03-19 23:45:18.996577'); -INSERT INTO dvds.payment VALUES (24151, 152, 1, 13986, 0.99, '2007-03-20 17:41:49.996577'); -INSERT INTO dvds.payment VALUES (24152, 152, 1, 14173, 0.99, '2007-03-21 01:29:27.996577'); -INSERT INTO dvds.payment VALUES (24153, 152, 2, 14668, 4.99, '2007-03-21 18:19:56.996577'); -INSERT INTO dvds.payment VALUES (24154, 153, 2, 11368, 4.99, '2007-03-02 16:31:31.996577'); -INSERT INTO dvds.payment VALUES (24155, 153, 1, 12103, 1.99, '2007-03-17 21:17:35.996577'); -INSERT INTO dvds.payment VALUES (24156, 153, 1, 12439, 3.99, '2007-03-18 09:13:23.996577'); -INSERT INTO dvds.payment VALUES (24157, 153, 1, 12882, 4.99, '2007-03-19 02:02:12.996577'); -INSERT INTO dvds.payment VALUES (24158, 153, 1, 14664, 4.99, '2007-03-21 18:17:13.996577'); -INSERT INTO dvds.payment VALUES (24159, 153, 1, 14747, 4.99, '2007-03-21 21:28:28.996577'); -INSERT INTO dvds.payment VALUES (24160, 153, 1, 14944, 4.99, '2007-03-22 04:29:52.996577'); -INSERT INTO dvds.payment VALUES (24161, 153, 2, 15267, 0.99, '2007-03-22 17:06:14.996577'); -INSERT INTO dvds.payment VALUES (24162, 153, 2, 15444, 7.99, '2007-03-22 23:15:18.996577'); -INSERT INTO dvds.payment VALUES (24163, 153, 1, 15593, 1.99, '2007-03-23 04:43:35.996577'); -INSERT INTO dvds.payment VALUES (24164, 154, 1, 10278, 6.99, '2007-03-01 01:53:53.996577'); -INSERT INTO dvds.payment VALUES (24165, 154, 1, 10851, 4.99, '2007-03-01 22:27:11.996577'); -INSERT INTO dvds.payment VALUES (24166, 154, 1, 11296, 5.99, '2007-03-02 13:43:53.996577'); -INSERT INTO dvds.payment VALUES (24167, 154, 1, 12341, 0.99, '2007-03-18 05:37:53.996577'); -INSERT INTO dvds.payment VALUES (24168, 154, 2, 13861, 4.99, '2007-03-20 13:25:19.996577'); -INSERT INTO dvds.payment VALUES (24169, 154, 2, 14731, 2.99, '2007-03-21 20:50:15.996577'); -INSERT INTO dvds.payment VALUES (24170, 154, 2, 14793, 7.99, '2007-03-21 23:06:23.996577'); -INSERT INTO dvds.payment VALUES (24171, 154, 1, 14918, 6.99, '2007-03-22 03:35:04.996577'); -INSERT INTO dvds.payment VALUES (24172, 154, 1, 15351, 0.99, '2007-03-22 19:44:12.996577'); -INSERT INTO dvds.payment VALUES (24173, 154, 1, 15721, 2.99, '2007-03-23 09:44:42.996577'); -INSERT INTO dvds.payment VALUES (24174, 155, 1, 11033, 4.99, '2007-03-02 04:22:43.996577'); -INSERT INTO dvds.payment VALUES (24175, 155, 2, 11951, 5.99, '2007-03-17 15:42:28.996577'); -INSERT INTO dvds.payment VALUES (24176, 155, 1, 14324, 8.99, '2007-03-21 06:39:22.996577'); -INSERT INTO dvds.payment VALUES (24177, 155, 2, 14549, 2.99, '2007-03-21 14:22:47.996577'); -INSERT INTO dvds.payment VALUES (24178, 155, 1, 14753, 2.99, '2007-03-21 21:40:09.996577'); -INSERT INTO dvds.payment VALUES (24179, 155, 2, 14909, 0.99, '2007-03-22 03:17:10.996577'); -INSERT INTO dvds.payment VALUES (24180, 155, 1, 15106, 0.99, '2007-03-22 10:30:14.996577'); -INSERT INTO dvds.payment VALUES (24181, 156, 2, 10309, 6.99, '2007-03-01 02:52:44.996577'); -INSERT INTO dvds.payment VALUES (24182, 156, 2, 11490, 2.99, '2007-03-02 21:04:26.996577'); -INSERT INTO dvds.payment VALUES (24183, 156, 1, 11587, 5.99, '2007-03-17 00:49:29.996577'); -INSERT INTO dvds.payment VALUES (24184, 156, 2, 13530, 0.99, '2007-03-20 01:41:09.996577'); -INSERT INTO dvds.payment VALUES (24185, 156, 2, 13531, 2.99, '2007-03-20 01:54:36.996577'); -INSERT INTO dvds.payment VALUES (24186, 156, 2, 13802, 2.99, '2007-03-20 11:13:19.996577'); -INSERT INTO dvds.payment VALUES (24187, 156, 1, 14794, 1.99, '2007-03-21 23:07:57.996577'); -INSERT INTO dvds.payment VALUES (24188, 156, 2, 14831, 4.99, '2007-03-22 00:09:15.996577'); -INSERT INTO dvds.payment VALUES (24189, 156, 1, 14914, 0.99, '2007-03-22 03:22:01.996577'); -INSERT INTO dvds.payment VALUES (24190, 156, 1, 15408, 6.99, '2007-03-22 21:54:58.996577'); -INSERT INTO dvds.payment VALUES (24191, 157, 2, 11249, 4.99, '2007-03-02 12:04:06.996577'); -INSERT INTO dvds.payment VALUES (24192, 157, 2, 11335, 4.99, '2007-03-02 15:26:03.996577'); -INSERT INTO dvds.payment VALUES (24193, 157, 1, 12213, 5.99, '2007-03-18 01:02:21.996577'); -INSERT INTO dvds.payment VALUES (24194, 157, 1, 12464, 6.99, '2007-03-18 10:02:00.996577'); -INSERT INTO dvds.payment VALUES (24195, 157, 1, 12916, 0.99, '2007-03-19 02:55:31.996577'); -INSERT INTO dvds.payment VALUES (24196, 157, 1, 13097, 4.99, '2007-03-19 09:19:09.996577'); -INSERT INTO dvds.payment VALUES (24197, 157, 1, 13214, 4.99, '2007-03-19 13:59:32.996577'); -INSERT INTO dvds.payment VALUES (24198, 157, 1, 13481, 6.99, '2007-03-19 23:39:38.996577'); -INSERT INTO dvds.payment VALUES (24199, 157, 1, 13728, 2.99, '2007-03-20 08:39:33.996577'); -INSERT INTO dvds.payment VALUES (24200, 157, 2, 14974, 4.99, '2007-03-22 05:32:51.996577'); -INSERT INTO dvds.payment VALUES (24201, 158, 2, 11077, 4.99, '2007-03-02 05:55:09.996577'); -INSERT INTO dvds.payment VALUES (24202, 158, 1, 11103, 6.99, '2007-03-02 06:38:20.996577'); -INSERT INTO dvds.payment VALUES (24203, 158, 1, 11272, 0.99, '2007-03-02 12:48:53.996577'); -INSERT INTO dvds.payment VALUES (24204, 158, 1, 11420, 2.99, '2007-03-02 18:16:22.996577'); -INSERT INTO dvds.payment VALUES (24205, 158, 2, 12070, 1.99, '2007-03-17 20:15:13.996577'); -INSERT INTO dvds.payment VALUES (24206, 158, 2, 12421, 5.99, '2007-03-18 08:32:32.996577'); -INSERT INTO dvds.payment VALUES (24207, 158, 2, 13212, 1.99, '2007-03-19 13:52:33.996577'); -INSERT INTO dvds.payment VALUES (24208, 158, 2, 13854, 2.99, '2007-03-20 13:17:08.996577'); -INSERT INTO dvds.payment VALUES (24209, 158, 1, 13926, 2.99, '2007-03-20 15:37:53.996577'); -INSERT INTO dvds.payment VALUES (24210, 158, 2, 14028, 0.99, '2007-03-20 19:51:29.996577'); -INSERT INTO dvds.payment VALUES (24211, 158, 1, 15763, 2.99, '2007-03-23 11:31:25.996577'); -INSERT INTO dvds.payment VALUES (24212, 158, 1, 15796, 5.99, '2007-03-23 12:40:48.996577'); -INSERT INTO dvds.payment VALUES (24213, 158, 1, 15802, 5.99, '2007-03-23 12:55:17.996577'); -INSERT INTO dvds.payment VALUES (24214, 159, 2, 11225, 4.99, '2007-03-02 11:11:53.996577'); -INSERT INTO dvds.payment VALUES (24215, 159, 2, 13270, 1.99, '2007-03-19 16:09:42.996577'); -INSERT INTO dvds.payment VALUES (24216, 159, 1, 13933, 0.99, '2007-03-20 15:45:33.996577'); -INSERT INTO dvds.payment VALUES (24217, 159, 2, 14575, 8.99, '2007-03-21 15:20:00.996577'); -INSERT INTO dvds.payment VALUES (24218, 159, 1, 15197, 0.99, '2007-03-22 14:42:51.996577'); -INSERT INTO dvds.payment VALUES (24219, 160, 1, 10305, 2.99, '2007-03-01 02:44:42.996577'); -INSERT INTO dvds.payment VALUES (24220, 160, 2, 10788, 0.99, '2007-03-01 20:05:36.996577'); -INSERT INTO dvds.payment VALUES (24221, 160, 2, 10958, 4.99, '2007-03-02 02:05:39.996577'); -INSERT INTO dvds.payment VALUES (24222, 160, 2, 10979, 5.99, '2007-03-02 02:45:03.996577'); -INSERT INTO dvds.payment VALUES (24223, 160, 2, 11154, 2.99, '2007-03-02 08:23:16.996577'); -INSERT INTO dvds.payment VALUES (24224, 160, 1, 11803, 2.99, '2007-03-17 10:10:34.996577'); -INSERT INTO dvds.payment VALUES (24225, 160, 1, 11888, 7.99, '2007-03-17 13:32:31.996577'); -INSERT INTO dvds.payment VALUES (24226, 160, 2, 12334, 2.99, '2007-03-18 05:21:02.996577'); -INSERT INTO dvds.payment VALUES (24227, 160, 1, 12435, 7.99, '2007-03-18 09:06:57.996577'); -INSERT INTO dvds.payment VALUES (24228, 160, 2, 13093, 6.99, '2007-03-19 09:14:42.996577'); -INSERT INTO dvds.payment VALUES (24229, 160, 1, 14868, 4.99, '2007-03-22 01:43:27.996577'); -INSERT INTO dvds.payment VALUES (24230, 160, 1, 15112, 2.99, '2007-03-22 10:50:15.996577'); -INSERT INTO dvds.payment VALUES (24231, 160, 2, 15642, 2.99, '2007-03-23 06:37:37.996577'); -INSERT INTO dvds.payment VALUES (24232, 160, 1, 15962, 4.99, '2007-03-23 18:10:30.996577'); -INSERT INTO dvds.payment VALUES (24233, 160, 1, 16027, 3.99, '2007-03-23 20:17:59.996577'); -INSERT INTO dvds.payment VALUES (24234, 161, 1, 10241, 5.99, '2007-03-01 00:40:51.996577'); -INSERT INTO dvds.payment VALUES (24235, 161, 1, 10355, 0.99, '2007-03-01 04:16:03.996577'); -INSERT INTO dvds.payment VALUES (24236, 161, 1, 10637, 2.99, '2007-03-01 14:12:35.996577'); -INSERT INTO dvds.payment VALUES (24237, 161, 1, 10863, 6.99, '2007-03-01 22:46:33.996577'); -INSERT INTO dvds.payment VALUES (24238, 161, 2, 10939, 0.99, '2007-03-02 01:34:46.996577'); -INSERT INTO dvds.payment VALUES (24239, 161, 1, 11838, 2.99, '2007-03-17 11:34:26.996577'); -INSERT INTO dvds.payment VALUES (24240, 161, 2, 14150, 0.99, '2007-03-21 00:51:29.996577'); -INSERT INTO dvds.payment VALUES (24241, 161, 1, 14370, 7.99, '2007-03-21 08:03:40.996577'); -INSERT INTO dvds.payment VALUES (24242, 161, 1, 15000, 0.99, '2007-03-22 06:23:24.996577'); -INSERT INTO dvds.payment VALUES (24243, 161, 2, 15045, 5.99, '2007-03-22 08:21:49.996577'); -INSERT INTO dvds.payment VALUES (24244, 161, 2, 15150, 2.99, '2007-03-22 12:40:31.996577'); -INSERT INTO dvds.payment VALUES (24245, 161, 1, 15420, 5.99, '2007-03-22 22:24:17.996577'); -INSERT INTO dvds.payment VALUES (24246, 162, 2, 11012, 0.99, '2007-03-02 03:38:08.996577'); -INSERT INTO dvds.payment VALUES (24247, 162, 1, 13288, 4.99, '2007-03-19 16:58:36.996577'); -INSERT INTO dvds.payment VALUES (24248, 162, 2, 14301, 1.99, '2007-03-21 05:48:14.996577'); -INSERT INTO dvds.payment VALUES (24249, 162, 1, 15332, 4.99, '2007-03-22 19:10:19.996577'); -INSERT INTO dvds.payment VALUES (24250, 163, 2, 10245, 0.99, '2007-03-01 00:52:35.996577'); -INSERT INTO dvds.payment VALUES (24251, 163, 2, 11623, 2.99, '2007-03-17 02:44:13.996577'); -INSERT INTO dvds.payment VALUES (24252, 163, 2, 11940, 4.99, '2007-03-17 15:24:54.996577'); -INSERT INTO dvds.payment VALUES (24253, 163, 1, 12154, 2.99, '2007-03-17 22:52:22.996577'); -INSERT INTO dvds.payment VALUES (24254, 163, 2, 12973, 2.99, '2007-03-19 05:16:37.996577'); -INSERT INTO dvds.payment VALUES (24255, 163, 2, 13543, 7.99, '2007-03-20 02:11:39.996577'); -INSERT INTO dvds.payment VALUES (24256, 163, 2, 14275, 4.99, '2007-03-21 04:58:56.996577'); -INSERT INTO dvds.payment VALUES (24257, 163, 2, 14427, 5.99, '2007-03-21 09:54:32.996577'); -INSERT INTO dvds.payment VALUES (24258, 163, 1, 15520, 8.99, '2007-03-23 01:59:11.996577'); -INSERT INTO dvds.payment VALUES (24259, 163, 1, 15847, 0.99, '2007-03-23 14:08:04.996577'); -INSERT INTO dvds.payment VALUES (24260, 164, 2, 11175, 2.99, '2007-03-02 09:07:13.996577'); -INSERT INTO dvds.payment VALUES (24261, 164, 2, 13453, 5.99, '2007-03-19 22:59:17.996577'); -INSERT INTO dvds.payment VALUES (24262, 165, 1, 10565, 4.99, '2007-03-01 11:36:53.996577'); -INSERT INTO dvds.payment VALUES (24263, 165, 1, 11484, 2.99, '2007-03-02 20:56:49.996577'); -INSERT INTO dvds.payment VALUES (24264, 165, 2, 12643, 4.99, '2007-03-18 16:49:32.996577'); -INSERT INTO dvds.payment VALUES (24265, 165, 2, 15007, 1.99, '2007-03-22 06:49:47.996577'); -INSERT INTO dvds.payment VALUES (24266, 165, 1, 15801, 3.99, '2007-03-23 12:54:30.996577'); -INSERT INTO dvds.payment VALUES (24267, 165, 2, 15834, 5.99, '2007-03-23 13:52:16.996577'); -INSERT INTO dvds.payment VALUES (24268, 166, 2, 10422, 7.99, '2007-03-01 06:45:37.996577'); -INSERT INTO dvds.payment VALUES (24269, 166, 2, 12683, 4.99, '2007-03-18 18:19:09.996577'); -INSERT INTO dvds.payment VALUES (24270, 166, 1, 12968, 4.99, '2007-03-19 05:06:44.996577'); -INSERT INTO dvds.payment VALUES (24271, 166, 2, 13582, 4.99, '2007-03-20 03:56:37.996577'); -INSERT INTO dvds.payment VALUES (24272, 166, 2, 13901, 7.99, '2007-03-20 14:35:19.996577'); -INSERT INTO dvds.payment VALUES (24273, 166, 2, 14261, 5.99, '2007-03-21 04:35:50.996577'); -INSERT INTO dvds.payment VALUES (24274, 166, 2, 14281, 2.99, '2007-03-21 05:09:14.996577'); -INSERT INTO dvds.payment VALUES (24275, 166, 1, 15213, 5.99, '2007-03-22 15:17:28.996577'); -INSERT INTO dvds.payment VALUES (24276, 166, 2, 15216, 2.99, '2007-03-22 15:25:28.996577'); -INSERT INTO dvds.payment VALUES (24277, 166, 2, 15806, 1.99, '2007-03-23 13:00:16.996577'); -INSERT INTO dvds.payment VALUES (24278, 167, 2, 10285, 3.99, '2007-03-01 02:03:37.996577'); -INSERT INTO dvds.payment VALUES (24279, 167, 1, 12642, 4.99, '2007-03-18 16:47:42.996577'); -INSERT INTO dvds.payment VALUES (24280, 167, 2, 12717, 4.99, '2007-03-18 19:44:06.996577'); -INSERT INTO dvds.payment VALUES (24281, 167, 1, 12978, 4.99, '2007-03-19 05:25:53.996577'); -INSERT INTO dvds.payment VALUES (24282, 167, 1, 13825, 6.99, '2007-03-20 12:11:48.996577'); -INSERT INTO dvds.payment VALUES (24283, 167, 1, 13870, 1.99, '2007-03-20 13:37:42.996577'); -INSERT INTO dvds.payment VALUES (24284, 167, 1, 15003, 3.99, '2007-03-22 06:39:50.996577'); -INSERT INTO dvds.payment VALUES (24285, 167, 1, 15050, 0.99, '2007-03-22 08:36:18.996577'); -INSERT INTO dvds.payment VALUES (24286, 167, 2, 15478, 0.99, '2007-03-23 00:18:57.996577'); -INSERT INTO dvds.payment VALUES (24287, 167, 2, 15530, 4.99, '2007-03-23 02:19:14.996577'); -INSERT INTO dvds.payment VALUES (24288, 167, 2, 15915, 4.99, '2007-03-23 16:20:27.996577'); -INSERT INTO dvds.payment VALUES (24289, 168, 2, 10270, 0.99, '2007-03-01 01:38:50.996577'); -INSERT INTO dvds.payment VALUES (24290, 168, 1, 11551, 0.99, '2007-03-16 23:32:15.996577'); -INSERT INTO dvds.payment VALUES (24291, 168, 1, 11627, 10.99, '2007-03-17 02:54:13.996577'); -INSERT INTO dvds.payment VALUES (24292, 168, 1, 11631, 1.99, '2007-03-17 02:57:22.996577'); -INSERT INTO dvds.payment VALUES (24293, 168, 1, 12545, 6.99, '2007-03-18 12:56:26.996577'); -INSERT INTO dvds.payment VALUES (24294, 168, 1, 12781, 2.99, '2007-03-18 22:18:50.996577'); -INSERT INTO dvds.payment VALUES (24295, 168, 1, 13018, 8.99, '2007-03-19 06:33:16.996577'); -INSERT INTO dvds.payment VALUES (24296, 168, 2, 13532, 4.99, '2007-03-20 01:57:54.996577'); -INSERT INTO dvds.payment VALUES (24297, 168, 2, 13811, 0.99, '2007-03-20 11:28:56.996577'); -INSERT INTO dvds.payment VALUES (24298, 168, 1, 14090, 2.99, '2007-03-20 22:39:42.996577'); -INSERT INTO dvds.payment VALUES (24299, 168, 1, 15033, 3.99, '2007-03-22 07:53:50.996577'); -INSERT INTO dvds.payment VALUES (24300, 168, 1, 15165, 2.99, '2007-03-22 13:27:56.996577'); -INSERT INTO dvds.payment VALUES (24301, 168, 2, 15683, 2.99, '2007-03-23 08:06:43.996577'); -INSERT INTO dvds.payment VALUES (24302, 169, 2, 11687, 5.99, '2007-03-17 05:08:25.996577'); -INSERT INTO dvds.payment VALUES (24303, 169, 1, 11898, 5.99, '2007-03-17 13:52:38.996577'); -INSERT INTO dvds.payment VALUES (24304, 169, 2, 13198, 2.99, '2007-03-19 13:15:44.996577'); -INSERT INTO dvds.payment VALUES (24305, 169, 2, 13237, 1.99, '2007-03-19 14:47:02.996577'); -INSERT INTO dvds.payment VALUES (24306, 169, 2, 14435, 0.99, '2007-03-21 10:13:03.996577'); -INSERT INTO dvds.payment VALUES (24307, 169, 2, 14805, 4.99, '2007-03-21 23:20:27.996577'); -INSERT INTO dvds.payment VALUES (24308, 169, 2, 15534, 0.99, '2007-03-23 02:24:20.996577'); -INSERT INTO dvds.payment VALUES (24309, 169, 2, 15680, 4.99, '2007-03-23 08:01:48.996577'); -INSERT INTO dvds.payment VALUES (24310, 170, 2, 10481, 5.99, '2007-03-01 08:45:52.996577'); -INSERT INTO dvds.payment VALUES (24311, 170, 1, 11039, 0.99, '2007-03-02 04:29:19.996577'); -INSERT INTO dvds.payment VALUES (24312, 170, 2, 12706, 3.99, '2007-03-18 19:13:00.996577'); -INSERT INTO dvds.payment VALUES (24313, 170, 1, 12967, 3.99, '2007-03-19 05:06:17.996577'); -INSERT INTO dvds.payment VALUES (24314, 170, 1, 13081, 0.99, '2007-03-19 08:47:32.996577'); -INSERT INTO dvds.payment VALUES (24315, 170, 2, 13862, 6.99, '2007-03-20 13:25:27.996577'); -INSERT INTO dvds.payment VALUES (24316, 170, 2, 14022, 8.99, '2007-03-20 19:37:15.996577'); -INSERT INTO dvds.payment VALUES (24317, 170, 2, 14675, 2.99, '2007-03-21 18:30:17.996577'); -INSERT INTO dvds.payment VALUES (24318, 170, 1, 15549, 7.99, '2007-03-23 02:55:32.996577'); -INSERT INTO dvds.payment VALUES (24319, 171, 2, 10622, 4.99, '2007-03-01 13:40:26.996577'); -INSERT INTO dvds.payment VALUES (24320, 171, 1, 12600, 4.99, '2007-03-18 15:12:50.996577'); -INSERT INTO dvds.payment VALUES (24321, 171, 1, 12962, 5.99, '2007-03-19 04:51:14.996577'); -INSERT INTO dvds.payment VALUES (24322, 171, 2, 13087, 6.99, '2007-03-19 09:02:18.996577'); -INSERT INTO dvds.payment VALUES (24323, 171, 2, 13292, 0.99, '2007-03-19 17:03:58.996577'); -INSERT INTO dvds.payment VALUES (24324, 171, 2, 13433, 0.99, '2007-03-19 21:59:19.996577'); -INSERT INTO dvds.payment VALUES (24325, 171, 1, 14270, 1.99, '2007-03-21 04:50:44.996577'); -INSERT INTO dvds.payment VALUES (24326, 171, 2, 14615, 9.99, '2007-03-21 16:34:58.996577'); -INSERT INTO dvds.payment VALUES (24327, 171, 2, 15810, 0.99, '2007-03-23 13:11:41.996577'); -INSERT INTO dvds.payment VALUES (24328, 172, 1, 10312, 3.99, '2007-03-01 02:57:32.996577'); -INSERT INTO dvds.payment VALUES (24329, 172, 2, 10621, 0.99, '2007-03-01 13:38:52.996577'); -INSERT INTO dvds.payment VALUES (24330, 172, 2, 11499, 6.99, '2007-03-16 21:22:38.996577'); -INSERT INTO dvds.payment VALUES (24331, 172, 2, 12350, 4.99, '2007-03-18 05:58:12.996577'); -INSERT INTO dvds.payment VALUES (24332, 172, 2, 12638, 8.99, '2007-03-18 16:40:05.996577'); -INSERT INTO dvds.payment VALUES (24333, 172, 2, 13067, 5.99, '2007-03-19 08:19:43.996577'); -INSERT INTO dvds.payment VALUES (24334, 172, 2, 13320, 4.99, '2007-03-19 18:03:59.996577'); -INSERT INTO dvds.payment VALUES (24335, 172, 1, 13342, 0.99, '2007-03-19 18:50:02.996577'); -INSERT INTO dvds.payment VALUES (24336, 172, 2, 13937, 4.99, '2007-03-20 15:51:17.996577'); -INSERT INTO dvds.payment VALUES (24337, 172, 1, 14991, 4.99, '2007-03-22 06:19:10.996577'); -INSERT INTO dvds.payment VALUES (24338, 172, 2, 15637, 2.99, '2007-03-23 06:22:04.996577'); -INSERT INTO dvds.payment VALUES (24339, 172, 1, 15902, 3.99, '2007-03-23 15:56:29.996577'); -INSERT INTO dvds.payment VALUES (24340, 172, 2, 16038, 3.99, '2007-03-23 20:42:57.996577'); -INSERT INTO dvds.payment VALUES (24341, 173, 1, 10351, 5.99, '2007-03-01 04:00:39.996577'); -INSERT INTO dvds.payment VALUES (24342, 173, 2, 12073, 2.99, '2007-03-17 20:19:05.996577'); -INSERT INTO dvds.payment VALUES (24343, 173, 1, 12282, 6.99, '2007-03-18 03:22:46.996577'); -INSERT INTO dvds.payment VALUES (24344, 173, 2, 12501, 4.99, '2007-03-18 11:41:39.996577'); -INSERT INTO dvds.payment VALUES (24345, 173, 1, 14654, 2.99, '2007-03-21 18:05:25.996577'); -INSERT INTO dvds.payment VALUES (24346, 173, 2, 15483, 0.99, '2007-03-23 00:31:19.996577'); -INSERT INTO dvds.payment VALUES (24347, 173, 1, 15775, 8.99, '2007-03-23 11:54:10.996577'); -INSERT INTO dvds.payment VALUES (24348, 173, 1, 16010, 2.99, '2007-03-23 19:38:50.996577'); -INSERT INTO dvds.payment VALUES (24349, 174, 1, 10363, 2.99, '2007-03-01 04:30:18.996577'); -INSERT INTO dvds.payment VALUES (24350, 174, 2, 10398, 4.99, '2007-03-01 05:40:15.996577'); -INSERT INTO dvds.payment VALUES (24351, 174, 1, 10559, 8.99, '2007-03-01 11:31:24.996577'); -INSERT INTO dvds.payment VALUES (24352, 174, 1, 11525, 0.99, '2007-03-16 22:43:57.996577'); -INSERT INTO dvds.payment VALUES (24353, 174, 2, 12886, 5.99, '2007-03-19 02:06:58.996577'); -INSERT INTO dvds.payment VALUES (24354, 174, 1, 13185, 0.99, '2007-03-19 12:50:56.996577'); -INSERT INTO dvds.payment VALUES (24355, 174, 1, 15892, 1.99, '2007-03-23 15:29:26.996577'); -INSERT INTO dvds.payment VALUES (24356, 174, 1, 15975, 4.99, '2007-03-23 18:34:49.996577'); -INSERT INTO dvds.payment VALUES (24357, 175, 2, 10229, 7.99, '2007-03-01 00:13:52.996577'); -INSERT INTO dvds.payment VALUES (24358, 175, 1, 10875, 0.99, '2007-03-01 23:00:10.996577'); -INSERT INTO dvds.payment VALUES (24359, 175, 2, 11618, 4.99, '2007-03-17 02:30:02.996577'); -INSERT INTO dvds.payment VALUES (24360, 175, 1, 12509, 0.99, '2007-03-18 11:50:18.996577'); -INSERT INTO dvds.payment VALUES (24361, 175, 1, 13016, 4.99, '2007-03-19 06:25:40.996577'); -INSERT INTO dvds.payment VALUES (24362, 175, 2, 13833, 6.99, '2007-03-20 12:28:55.996577'); -INSERT INTO dvds.payment VALUES (24363, 175, 2, 13997, 6.99, '2007-03-20 18:19:54.996577'); -INSERT INTO dvds.payment VALUES (24364, 175, 2, 14507, 4.99, '2007-03-21 13:01:11.996577'); -INSERT INTO dvds.payment VALUES (24365, 175, 2, 14897, 2.99, '2007-03-22 02:50:57.996577'); -INSERT INTO dvds.payment VALUES (24366, 176, 1, 10277, 2.99, '2007-03-01 01:51:07.996577'); -INSERT INTO dvds.payment VALUES (24367, 176, 2, 10441, 0.99, '2007-03-01 07:24:22.996577'); -INSERT INTO dvds.payment VALUES (24368, 176, 1, 10862, 2.99, '2007-03-01 22:46:00.996577'); -INSERT INTO dvds.payment VALUES (24369, 176, 1, 11678, 5.99, '2007-03-17 04:36:05.996577'); -INSERT INTO dvds.payment VALUES (24370, 176, 1, 12299, 2.99, '2007-03-18 04:00:58.996577'); -INSERT INTO dvds.payment VALUES (24371, 176, 1, 12718, 2.99, '2007-03-18 19:50:10.996577'); -INSERT INTO dvds.payment VALUES (24372, 176, 1, 13170, 7.99, '2007-03-19 12:14:14.996577'); -INSERT INTO dvds.payment VALUES (24373, 176, 2, 13186, 5.99, '2007-03-19 12:51:45.996577'); -INSERT INTO dvds.payment VALUES (24374, 176, 1, 14083, 7.99, '2007-03-20 22:10:57.996577'); -INSERT INTO dvds.payment VALUES (24375, 176, 2, 14232, 1.99, '2007-03-21 03:35:28.996577'); -INSERT INTO dvds.payment VALUES (24376, 176, 2, 15311, 4.99, '2007-03-22 18:25:18.996577'); -INSERT INTO dvds.payment VALUES (24377, 176, 1, 15933, 4.99, '2007-03-23 17:05:10.996577'); -INSERT INTO dvds.payment VALUES (24378, 177, 2, 10321, 4.99, '2007-03-01 03:08:28.996577'); -INSERT INTO dvds.payment VALUES (24379, 177, 1, 10661, 2.99, '2007-03-01 15:16:57.996577'); -INSERT INTO dvds.payment VALUES (24380, 177, 1, 10710, 0.99, '2007-03-01 17:13:02.996577'); -INSERT INTO dvds.payment VALUES (24381, 177, 1, 11195, 0.99, '2007-03-02 10:10:49.996577'); -INSERT INTO dvds.payment VALUES (24382, 177, 1, 11376, 5.99, '2007-03-02 16:44:26.996577'); -INSERT INTO dvds.payment VALUES (24383, 177, 2, 11662, 6.99, '2007-03-17 03:56:03.996577'); -INSERT INTO dvds.payment VALUES (24384, 177, 1, 12623, 4.99, '2007-03-18 16:02:45.996577'); -INSERT INTO dvds.payment VALUES (24385, 177, 2, 14093, 0.99, '2007-03-20 22:49:55.996577'); -INSERT INTO dvds.payment VALUES (24386, 177, 2, 14310, 0.99, '2007-03-21 06:12:58.996577'); -INSERT INTO dvds.payment VALUES (24387, 177, 2, 14849, 2.99, '2007-03-22 00:43:52.996577'); -INSERT INTO dvds.payment VALUES (24388, 177, 2, 14883, 0.99, '2007-03-22 02:23:28.996577'); -INSERT INTO dvds.payment VALUES (24389, 178, 2, 10562, 0.99, '2007-03-01 11:34:18.996577'); -INSERT INTO dvds.payment VALUES (24390, 178, 1, 10802, 5.99, '2007-03-01 20:46:58.996577'); -INSERT INTO dvds.payment VALUES (24391, 178, 2, 11319, 6.99, '2007-03-02 14:38:35.996577'); -INSERT INTO dvds.payment VALUES (24392, 178, 2, 11884, 6.99, '2007-03-17 13:11:49.996577'); -INSERT INTO dvds.payment VALUES (24393, 178, 2, 11927, 3.99, '2007-03-17 14:53:29.996577'); -INSERT INTO dvds.payment VALUES (24394, 178, 2, 12049, 6.99, '2007-03-17 19:21:53.996577'); -INSERT INTO dvds.payment VALUES (24395, 178, 2, 12727, 2.99, '2007-03-18 20:13:41.996577'); -INSERT INTO dvds.payment VALUES (24396, 178, 1, 13127, 2.99, '2007-03-19 10:32:29.996577'); -INSERT INTO dvds.payment VALUES (24397, 178, 1, 14104, 4.99, '2007-03-20 23:06:10.996577'); -INSERT INTO dvds.payment VALUES (24398, 178, 1, 14257, 7.99, '2007-03-21 04:21:23.996577'); -INSERT INTO dvds.payment VALUES (24399, 178, 2, 14314, 2.99, '2007-03-21 06:18:40.996577'); -INSERT INTO dvds.payment VALUES (24400, 178, 1, 15323, 4.99, '2007-03-22 18:51:06.996577'); -INSERT INTO dvds.payment VALUES (24401, 179, 1, 10385, 4.99, '2007-03-01 05:08:21.996577'); -INSERT INTO dvds.payment VALUES (24402, 179, 2, 10569, 3.99, '2007-03-01 11:46:49.996577'); -INSERT INTO dvds.payment VALUES (24403, 179, 1, 11342, 0.99, '2007-03-02 15:40:01.996577'); -INSERT INTO dvds.payment VALUES (24404, 179, 2, 13240, 0.99, '2007-03-19 14:50:40.996577'); -INSERT INTO dvds.payment VALUES (24405, 179, 1, 13400, 4.99, '2007-03-19 20:40:10.996577'); -INSERT INTO dvds.payment VALUES (24406, 179, 2, 13844, 7.99, '2007-03-20 12:58:52.996577'); -INSERT INTO dvds.payment VALUES (24407, 179, 2, 13957, 0.99, '2007-03-20 16:37:30.996577'); -INSERT INTO dvds.payment VALUES (24408, 179, 2, 14082, 7.99, '2007-03-20 22:10:26.996577'); -INSERT INTO dvds.payment VALUES (24409, 179, 1, 14589, 0.99, '2007-03-21 15:57:21.996577'); -INSERT INTO dvds.payment VALUES (24410, 179, 1, 15985, 4.99, '2007-03-23 18:48:49.996577'); -INSERT INTO dvds.payment VALUES (24411, 180, 1, 10576, 5.99, '2007-03-01 12:14:28.996577'); -INSERT INTO dvds.payment VALUES (24412, 180, 1, 10992, 8.99, '2007-03-02 03:09:43.996577'); -INSERT INTO dvds.payment VALUES (24413, 180, 1, 12313, 8.99, '2007-03-18 04:35:57.996577'); -INSERT INTO dvds.payment VALUES (24414, 180, 1, 13283, 2.99, '2007-03-19 16:38:45.996577'); -INSERT INTO dvds.payment VALUES (24415, 180, 2, 13842, 4.99, '2007-03-20 12:58:03.996577'); -INSERT INTO dvds.payment VALUES (24416, 180, 1, 13994, 2.99, '2007-03-20 18:01:47.996577'); -INSERT INTO dvds.payment VALUES (24417, 180, 1, 14109, 0.99, '2007-03-20 23:21:24.996577'); -INSERT INTO dvds.payment VALUES (24418, 180, 1, 14851, 2.99, '2007-03-22 00:49:10.996577'); -INSERT INTO dvds.payment VALUES (24419, 180, 1, 15039, 4.99, '2007-03-22 08:06:20.996577'); -INSERT INTO dvds.payment VALUES (24420, 181, 2, 10262, 4.99, '2007-03-01 01:29:52.996577'); -INSERT INTO dvds.payment VALUES (24421, 181, 2, 10362, 6.99, '2007-03-01 04:23:39.996577'); -INSERT INTO dvds.payment VALUES (24422, 181, 2, 10703, 2.99, '2007-03-01 17:06:05.996577'); -INSERT INTO dvds.payment VALUES (24423, 181, 1, 10748, 4.99, '2007-03-01 18:29:50.996577'); -INSERT INTO dvds.payment VALUES (24424, 181, 1, 10773, 6.99, '2007-03-01 19:22:11.996577'); -INSERT INTO dvds.payment VALUES (24425, 181, 2, 11224, 4.99, '2007-03-02 11:09:04.996577'); -INSERT INTO dvds.payment VALUES (24426, 181, 1, 12363, 7.99, '2007-03-18 06:21:15.996577'); -INSERT INTO dvds.payment VALUES (24427, 181, 1, 12411, 0.99, '2007-03-18 08:16:23.996577'); -INSERT INTO dvds.payment VALUES (24428, 181, 1, 12678, 2.99, '2007-03-18 18:09:53.996577'); -INSERT INTO dvds.payment VALUES (24429, 181, 2, 12939, 2.99, '2007-03-19 04:06:51.996577'); -INSERT INTO dvds.payment VALUES (24430, 181, 2, 13118, 4.99, '2007-03-19 10:08:24.996577'); -INSERT INTO dvds.payment VALUES (24431, 181, 2, 13405, 4.99, '2007-03-19 20:49:15.996577'); -INSERT INTO dvds.payment VALUES (24432, 181, 2, 13415, 2.99, '2007-03-19 21:16:35.996577'); -INSERT INTO dvds.payment VALUES (24433, 181, 2, 14406, 3.99, '2007-03-21 09:15:01.996577'); -INSERT INTO dvds.payment VALUES (24434, 181, 2, 15196, 2.99, '2007-03-22 14:39:58.996577'); -INSERT INTO dvds.payment VALUES (24435, 181, 2, 15482, 4.99, '2007-03-23 00:29:46.996577'); -INSERT INTO dvds.payment VALUES (24436, 182, 1, 11055, 4.99, '2007-03-02 05:04:31.996577'); -INSERT INTO dvds.payment VALUES (24437, 182, 2, 11785, 3.99, '2007-03-17 09:23:12.996577'); -INSERT INTO dvds.payment VALUES (24438, 182, 1, 12573, 4.99, '2007-03-18 14:01:23.996577'); -INSERT INTO dvds.payment VALUES (24439, 182, 1, 12840, 6.99, '2007-03-19 00:22:37.996577'); -INSERT INTO dvds.payment VALUES (24440, 182, 1, 13285, 2.99, '2007-03-19 16:47:10.996577'); -INSERT INTO dvds.payment VALUES (24441, 182, 1, 14586, 5.99, '2007-03-21 15:47:35.996577'); -INSERT INTO dvds.payment VALUES (24442, 182, 1, 14953, 6.99, '2007-03-22 04:52:20.996577'); -INSERT INTO dvds.payment VALUES (24443, 182, 1, 15043, 1.99, '2007-03-22 08:17:58.996577'); -INSERT INTO dvds.payment VALUES (24444, 183, 2, 10620, 5.99, '2007-03-01 13:37:43.996577'); -INSERT INTO dvds.payment VALUES (24445, 183, 2, 11386, 2.99, '2007-03-02 16:52:29.996577'); -INSERT INTO dvds.payment VALUES (24446, 183, 2, 12451, 0.99, '2007-03-18 09:33:08.996577'); -INSERT INTO dvds.payment VALUES (24447, 183, 2, 12764, 3.99, '2007-03-18 21:42:41.996577'); -INSERT INTO dvds.payment VALUES (24448, 183, 2, 12831, 3.99, '2007-03-19 00:09:09.996577'); -INSERT INTO dvds.payment VALUES (24449, 183, 1, 13482, 2.99, '2007-03-19 23:42:56.996577'); -INSERT INTO dvds.payment VALUES (24450, 183, 1, 13536, 4.99, '2007-03-20 02:03:42.996577'); -INSERT INTO dvds.payment VALUES (24451, 184, 2, 12166, 9.99, '2007-03-17 23:25:32.996577'); -INSERT INTO dvds.payment VALUES (24452, 184, 2, 12454, 2.99, '2007-03-18 09:47:28.996577'); -INSERT INTO dvds.payment VALUES (24453, 184, 1, 12532, 2.99, '2007-03-18 12:26:24.996577'); -INSERT INTO dvds.payment VALUES (24454, 184, 1, 13134, 0.99, '2007-03-19 10:42:40.996577'); -INSERT INTO dvds.payment VALUES (24455, 184, 1, 13262, 5.99, '2007-03-19 15:48:41.996577'); -INSERT INTO dvds.payment VALUES (24456, 184, 1, 13303, 4.99, '2007-03-19 17:23:47.996577'); -INSERT INTO dvds.payment VALUES (24457, 184, 2, 14472, 4.99, '2007-03-21 11:42:23.996577'); -INSERT INTO dvds.payment VALUES (24458, 184, 1, 14801, 5.99, '2007-03-21 23:15:20.996577'); -INSERT INTO dvds.payment VALUES (24459, 184, 2, 15611, 0.99, '2007-03-23 05:24:44.996577'); -INSERT INTO dvds.payment VALUES (24460, 185, 2, 11355, 0.99, '2007-03-02 16:06:09.996577'); -INSERT INTO dvds.payment VALUES (24461, 185, 1, 12312, 2.99, '2007-03-18 04:35:52.996577'); -INSERT INTO dvds.payment VALUES (24462, 185, 1, 12674, 5.99, '2007-03-18 17:53:22.996577'); -INSERT INTO dvds.payment VALUES (24463, 185, 1, 12885, 0.99, '2007-03-19 02:05:51.996577'); -INSERT INTO dvds.payment VALUES (24464, 185, 2, 14513, 2.99, '2007-03-21 13:20:01.996577'); -INSERT INTO dvds.payment VALUES (24465, 186, 1, 10985, 0.99, '2007-03-02 02:58:45.996577'); -INSERT INTO dvds.payment VALUES (24466, 186, 1, 11982, 0.99, '2007-03-17 16:41:33.996577'); -INSERT INTO dvds.payment VALUES (24467, 186, 1, 12348, 5.99, '2007-03-18 05:50:13.996577'); -INSERT INTO dvds.payment VALUES (24468, 186, 1, 12438, 8.99, '2007-03-18 09:11:18.996577'); -INSERT INTO dvds.payment VALUES (24469, 186, 1, 13168, 6.99, '2007-03-19 12:05:54.996577'); -INSERT INTO dvds.payment VALUES (24470, 186, 2, 13517, 4.99, '2007-03-20 01:01:43.996577'); -INSERT INTO dvds.payment VALUES (24471, 186, 1, 13853, 3.99, '2007-03-20 13:15:28.996577'); -INSERT INTO dvds.payment VALUES (24472, 186, 1, 14006, 2.99, '2007-03-20 18:50:02.996577'); -INSERT INTO dvds.payment VALUES (24473, 186, 2, 14229, 4.99, '2007-03-21 03:25:41.996577'); -INSERT INTO dvds.payment VALUES (24474, 186, 2, 14646, 4.99, '2007-03-21 17:43:14.996577'); -INSERT INTO dvds.payment VALUES (24475, 186, 2, 14988, 3.99, '2007-03-22 06:14:31.996577'); -INSERT INTO dvds.payment VALUES (24476, 186, 2, 15001, 0.99, '2007-03-22 06:29:15.996577'); -INSERT INTO dvds.payment VALUES (24477, 186, 2, 15295, 3.99, '2007-03-22 18:04:47.996577'); -INSERT INTO dvds.payment VALUES (24478, 186, 1, 15596, 0.99, '2007-03-23 04:48:17.996577'); -INSERT INTO dvds.payment VALUES (24479, 187, 1, 11843, 2.99, '2007-03-17 11:43:16.996577'); -INSERT INTO dvds.payment VALUES (24480, 187, 2, 12307, 8.99, '2007-03-18 04:16:49.996577'); -INSERT INTO dvds.payment VALUES (24481, 187, 2, 12490, 9.99, '2007-03-18 11:17:11.996577'); -INSERT INTO dvds.payment VALUES (24482, 187, 1, 12534, 7.99, '2007-03-18 12:33:07.996577'); -INSERT INTO dvds.payment VALUES (24483, 187, 2, 13940, 8.99, '2007-03-20 15:57:23.996577'); -INSERT INTO dvds.payment VALUES (24484, 187, 2, 14855, 8.99, '2007-03-22 00:55:58.996577'); -INSERT INTO dvds.payment VALUES (24485, 187, 2, 15231, 4.99, '2007-03-22 16:01:23.996577'); -INSERT INTO dvds.payment VALUES (24486, 187, 2, 15517, 2.99, '2007-03-23 01:41:27.996577'); -INSERT INTO dvds.payment VALUES (24487, 187, 2, 15971, 7.99, '2007-03-23 18:27:59.996577'); -INSERT INTO dvds.payment VALUES (24488, 188, 2, 10453, 5.99, '2007-03-01 07:41:53.996577'); -INSERT INTO dvds.payment VALUES (24489, 188, 1, 10494, 0.99, '2007-03-01 09:13:47.996577'); -INSERT INTO dvds.payment VALUES (24490, 188, 2, 10719, 4.99, '2007-03-01 17:28:54.996577'); -INSERT INTO dvds.payment VALUES (24491, 188, 2, 10757, 4.99, '2007-03-01 18:51:10.996577'); -INSERT INTO dvds.payment VALUES (24492, 188, 2, 11378, 2.99, '2007-03-02 16:45:18.996577'); -INSERT INTO dvds.payment VALUES (24493, 188, 1, 13570, 2.99, '2007-03-20 03:33:23.996577'); -INSERT INTO dvds.payment VALUES (24494, 188, 1, 13787, 5.99, '2007-03-20 10:43:49.996577'); -INSERT INTO dvds.payment VALUES (24495, 188, 1, 14399, 2.99, '2007-03-21 09:01:49.996577'); -INSERT INTO dvds.payment VALUES (24496, 188, 2, 14809, 2.99, '2007-03-21 23:29:08.996577'); -INSERT INTO dvds.payment VALUES (24497, 188, 2, 15319, 2.99, '2007-03-22 18:45:43.996577'); -INSERT INTO dvds.payment VALUES (24498, 188, 2, 15409, 0.99, '2007-03-22 21:54:58.996577'); -INSERT INTO dvds.payment VALUES (24499, 188, 2, 15474, 4.99, '2007-03-23 00:07:36.996577'); -INSERT INTO dvds.payment VALUES (24500, 189, 1, 10247, 9.99, '2007-03-01 01:02:32.996577'); -INSERT INTO dvds.payment VALUES (24501, 189, 2, 11059, 6.99, '2007-03-02 05:10:04.996577'); -INSERT INTO dvds.payment VALUES (24502, 189, 2, 13601, 6.99, '2007-03-20 04:29:41.996577'); -INSERT INTO dvds.payment VALUES (24503, 189, 1, 13766, 3.99, '2007-03-20 10:10:27.996577'); -INSERT INTO dvds.payment VALUES (24504, 189, 1, 15773, 1.99, '2007-03-23 11:53:23.996577'); -INSERT INTO dvds.payment VALUES (24505, 189, 1, 16008, 5.99, '2007-03-23 19:33:17.996577'); -INSERT INTO dvds.payment VALUES (24506, 190, 1, 11082, 5.99, '2007-03-02 05:58:45.996577'); -INSERT INTO dvds.payment VALUES (24507, 190, 2, 11158, 6.99, '2007-03-02 08:26:54.996577'); -INSERT INTO dvds.payment VALUES (24508, 190, 2, 11276, 4.99, '2007-03-02 12:57:12.996577'); -INSERT INTO dvds.payment VALUES (24509, 190, 2, 11312, 6.99, '2007-03-02 14:25:17.996577'); -INSERT INTO dvds.payment VALUES (24510, 190, 2, 11750, 0.99, '2007-03-17 07:35:26.996577'); -INSERT INTO dvds.payment VALUES (24511, 190, 2, 11950, 9.99, '2007-03-17 15:41:42.996577'); -INSERT INTO dvds.payment VALUES (24512, 190, 1, 12270, 2.99, '2007-03-18 03:00:31.996577'); -INSERT INTO dvds.payment VALUES (24513, 190, 2, 12381, 0.99, '2007-03-18 07:00:09.996577'); -INSERT INTO dvds.payment VALUES (24514, 190, 2, 14065, 0.99, '2007-03-20 21:09:13.996577'); -INSERT INTO dvds.payment VALUES (24515, 190, 2, 14141, 4.99, '2007-03-21 00:35:48.996577'); -INSERT INTO dvds.payment VALUES (24516, 190, 2, 14166, 2.99, '2007-03-21 01:27:57.996577'); -INSERT INTO dvds.payment VALUES (24517, 190, 2, 14650, 0.99, '2007-03-21 17:53:17.996577'); -INSERT INTO dvds.payment VALUES (24518, 191, 2, 10532, 2.99, '2007-03-01 10:35:01.996577'); -INSERT INTO dvds.payment VALUES (24519, 191, 2, 15375, 4.99, '2007-03-22 20:40:28.996577'); -INSERT INTO dvds.payment VALUES (24520, 192, 2, 10238, 0.99, '2007-03-01 00:36:31.996577'); -INSERT INTO dvds.payment VALUES (24521, 192, 1, 10843, 7.99, '2007-03-01 22:11:29.996577'); -INSERT INTO dvds.payment VALUES (24522, 192, 1, 11385, 4.99, '2007-03-02 16:51:37.996577'); -INSERT INTO dvds.payment VALUES (24523, 192, 1, 11815, 4.99, '2007-03-17 10:41:52.996577'); -INSERT INTO dvds.payment VALUES (24524, 192, 1, 13125, 5.99, '2007-03-19 10:26:15.996577'); -INSERT INTO dvds.payment VALUES (24525, 192, 2, 14146, 4.99, '2007-03-21 00:41:57.996577'); -INSERT INTO dvds.payment VALUES (24526, 192, 2, 14238, 7.99, '2007-03-21 03:45:06.996577'); -INSERT INTO dvds.payment VALUES (24527, 192, 1, 14404, 4.99, '2007-03-21 09:11:30.996577'); -INSERT INTO dvds.payment VALUES (24528, 192, 2, 14692, 6.99, '2007-03-21 19:11:47.996577'); -INSERT INTO dvds.payment VALUES (24529, 192, 2, 15855, 2.99, '2007-03-23 14:27:27.996577'); -INSERT INTO dvds.payment VALUES (24530, 193, 2, 10462, 2.99, '2007-03-01 08:06:54.996577'); -INSERT INTO dvds.payment VALUES (24531, 193, 2, 12384, 0.99, '2007-03-18 07:05:24.996577'); -INSERT INTO dvds.payment VALUES (24532, 193, 2, 12658, 4.99, '2007-03-18 17:34:08.996577'); -INSERT INTO dvds.payment VALUES (24533, 193, 1, 13529, 2.99, '2007-03-20 01:36:13.996577'); -INSERT INTO dvds.payment VALUES (24534, 193, 1, 13608, 0.99, '2007-03-20 04:39:10.996577'); -INSERT INTO dvds.payment VALUES (24535, 193, 1, 14679, 2.99, '2007-03-21 18:43:24.996577'); -INSERT INTO dvds.payment VALUES (24536, 193, 1, 14927, 4.99, '2007-03-22 04:00:19.996577'); -INSERT INTO dvds.payment VALUES (24537, 193, 2, 15164, 4.99, '2007-03-22 13:16:19.996577'); -INSERT INTO dvds.payment VALUES (24538, 193, 2, 15344, 6.99, '2007-03-22 19:30:14.996577'); -INSERT INTO dvds.payment VALUES (24539, 193, 2, 15495, 5.99, '2007-03-23 00:54:36.996577'); -INSERT INTO dvds.payment VALUES (24540, 194, 2, 11475, 5.99, '2007-03-02 20:23:35.996577'); -INSERT INTO dvds.payment VALUES (24541, 194, 2, 12851, 3.99, '2007-03-19 00:40:38.996577'); -INSERT INTO dvds.payment VALUES (24542, 194, 1, 13515, 0.99, '2007-03-20 00:58:13.996577'); -INSERT INTO dvds.payment VALUES (24543, 194, 2, 13616, 7.99, '2007-03-20 04:58:59.996577'); -INSERT INTO dvds.payment VALUES (24544, 194, 1, 14440, 4.99, '2007-03-21 10:27:30.996577'); -INSERT INTO dvds.payment VALUES (24545, 194, 2, 15937, 4.99, '2007-03-23 17:11:48.996577'); -INSERT INTO dvds.payment VALUES (24546, 195, 2, 10911, 4.99, '2007-03-02 00:27:02.996577'); -INSERT INTO dvds.payment VALUES (24547, 195, 1, 11201, 7.99, '2007-03-02 10:17:42.996577'); -INSERT INTO dvds.payment VALUES (24548, 195, 2, 11787, 2.99, '2007-03-17 09:27:26.996577'); -INSERT INTO dvds.payment VALUES (24549, 195, 2, 12099, 0.99, '2007-03-17 21:07:20.996577'); -INSERT INTO dvds.payment VALUES (24550, 195, 2, 12941, 0.99, '2007-03-19 04:07:52.996577'); -INSERT INTO dvds.payment VALUES (24551, 195, 2, 13741, 0.99, '2007-03-20 09:17:13.996577'); -INSERT INTO dvds.payment VALUES (24552, 195, 2, 14751, 7.99, '2007-03-21 21:39:49.996577'); -INSERT INTO dvds.payment VALUES (24553, 195, 2, 16040, 11.99, '2007-03-23 20:47:59.996577'); -INSERT INTO dvds.payment VALUES (24554, 196, 1, 11104, 2.99, '2007-03-02 06:38:24.996577'); -INSERT INTO dvds.payment VALUES (24555, 196, 2, 12430, 0.99, '2007-03-18 09:01:07.996577'); -INSERT INTO dvds.payment VALUES (24556, 196, 2, 12684, 0.99, '2007-03-18 18:19:53.996577'); -INSERT INTO dvds.payment VALUES (24557, 196, 2, 12836, 0.99, '2007-03-19 00:16:59.996577'); -INSERT INTO dvds.payment VALUES (24558, 196, 1, 13799, 8.99, '2007-03-20 11:05:08.996577'); -INSERT INTO dvds.payment VALUES (24559, 196, 2, 14410, 5.99, '2007-03-21 09:23:15.996577'); -INSERT INTO dvds.payment VALUES (24560, 196, 1, 14698, 5.99, '2007-03-21 19:18:24.996577'); -INSERT INTO dvds.payment VALUES (24561, 196, 2, 15980, 0.99, '2007-03-23 18:38:39.996577'); -INSERT INTO dvds.payment VALUES (24562, 197, 2, 10460, 3.99, '2007-03-01 07:59:26.996577'); -INSERT INTO dvds.payment VALUES (24563, 197, 2, 10666, 0.99, '2007-03-01 15:25:02.996577'); -INSERT INTO dvds.payment VALUES (24564, 197, 2, 10739, 4.99, '2007-03-01 18:14:37.996577'); -INSERT INTO dvds.payment VALUES (24565, 197, 1, 10743, 2.99, '2007-03-01 18:23:35.996577'); -INSERT INTO dvds.payment VALUES (24566, 197, 1, 11018, 4.99, '2007-03-02 03:56:19.996577'); -INSERT INTO dvds.payment VALUES (24567, 197, 1, 11215, 4.99, '2007-03-02 10:49:08.996577'); -INSERT INTO dvds.payment VALUES (24568, 197, 1, 11311, 4.99, '2007-03-02 14:22:14.996577'); -INSERT INTO dvds.payment VALUES (24569, 197, 1, 11478, 2.99, '2007-03-02 20:37:31.996577'); -INSERT INTO dvds.payment VALUES (24570, 197, 1, 11643, 1.99, '2007-03-17 03:18:01.996577'); -INSERT INTO dvds.payment VALUES (24571, 197, 1, 12799, 0.99, '2007-03-18 22:55:27.996577'); -INSERT INTO dvds.payment VALUES (24572, 197, 2, 13913, 3.99, '2007-03-20 15:06:01.996577'); -INSERT INTO dvds.payment VALUES (24573, 197, 1, 14069, 9.99, '2007-03-20 21:19:51.996577'); -INSERT INTO dvds.payment VALUES (24574, 197, 2, 14951, 4.99, '2007-03-22 04:48:03.996577'); -INSERT INTO dvds.payment VALUES (24575, 197, 1, 15078, 2.99, '2007-03-22 09:37:57.996577'); -INSERT INTO dvds.payment VALUES (24576, 197, 2, 15233, 0.99, '2007-03-22 16:10:19.996577'); -INSERT INTO dvds.payment VALUES (24577, 197, 1, 15540, 8.99, '2007-03-23 02:41:18.996577'); -INSERT INTO dvds.payment VALUES (24578, 198, 1, 10679, 0.99, '2007-03-01 15:56:24.996577'); -INSERT INTO dvds.payment VALUES (24579, 198, 1, 11351, 3.99, '2007-03-02 15:56:33.996577'); -INSERT INTO dvds.payment VALUES (24580, 198, 1, 11594, 6.99, '2007-03-17 01:15:28.996577'); -INSERT INTO dvds.payment VALUES (24581, 198, 1, 11756, 2.99, '2007-03-17 07:57:48.996577'); -INSERT INTO dvds.payment VALUES (24582, 198, 1, 11836, 4.99, '2007-03-17 11:32:02.996577'); -INSERT INTO dvds.payment VALUES (24583, 198, 2, 11949, 2.99, '2007-03-17 15:40:52.996577'); -INSERT INTO dvds.payment VALUES (24584, 198, 1, 11957, 1.99, '2007-03-17 15:50:55.996577'); -INSERT INTO dvds.payment VALUES (24585, 198, 2, 11985, 2.99, '2007-03-17 16:48:10.996577'); -INSERT INTO dvds.payment VALUES (24586, 198, 2, 12594, 4.99, '2007-03-18 14:52:50.996577'); -INSERT INTO dvds.payment VALUES (24587, 198, 1, 12862, 5.99, '2007-03-19 01:00:25.996577'); -INSERT INTO dvds.payment VALUES (24588, 198, 1, 13768, 5.99, '2007-03-20 10:12:09.996577'); -INSERT INTO dvds.payment VALUES (24589, 198, 1, 14214, 5.99, '2007-03-21 02:59:15.996577'); -INSERT INTO dvds.payment VALUES (24590, 198, 2, 14380, 2.99, '2007-03-21 08:22:18.996577'); -INSERT INTO dvds.payment VALUES (24591, 198, 2, 14990, 4.99, '2007-03-22 06:16:27.996577'); -INSERT INTO dvds.payment VALUES (24592, 198, 1, 15256, 6.99, '2007-03-22 16:48:33.996577'); -INSERT INTO dvds.payment VALUES (24593, 198, 1, 15433, 4.99, '2007-03-22 22:55:44.996577'); -INSERT INTO dvds.payment VALUES (24594, 199, 2, 10517, 4.99, '2007-03-01 10:10:23.996577'); -INSERT INTO dvds.payment VALUES (24595, 199, 1, 10850, 8.99, '2007-03-01 22:22:11.996577'); -INSERT INTO dvds.payment VALUES (24596, 199, 1, 11454, 2.99, '2007-03-02 19:33:05.996577'); -INSERT INTO dvds.payment VALUES (24597, 199, 1, 12386, 0.99, '2007-03-18 07:14:23.996577'); -INSERT INTO dvds.payment VALUES (24598, 199, 2, 14320, 4.99, '2007-03-21 06:33:06.996577'); -INSERT INTO dvds.payment VALUES (24599, 199, 2, 15412, 0.99, '2007-03-22 22:05:37.996577'); -INSERT INTO dvds.payment VALUES (24600, 199, 2, 15751, 3.99, '2007-03-23 11:09:33.996577'); -INSERT INTO dvds.payment VALUES (24601, 200, 1, 10685, 2.99, '2007-03-01 16:18:04.996577'); -INSERT INTO dvds.payment VALUES (24602, 200, 1, 11356, 8.99, '2007-03-02 16:11:06.996577'); -INSERT INTO dvds.payment VALUES (24603, 200, 1, 13737, 5.99, '2007-03-20 09:10:16.996577'); -INSERT INTO dvds.payment VALUES (24604, 200, 1, 14034, 10.99, '2007-03-20 20:00:18.996577'); -INSERT INTO dvds.payment VALUES (24605, 200, 2, 14521, 6.99, '2007-03-21 13:29:58.996577'); -INSERT INTO dvds.payment VALUES (24606, 200, 2, 15691, 4.99, '2007-03-23 08:22:20.996577'); -INSERT INTO dvds.payment VALUES (24607, 200, 2, 15742, 5.99, '2007-03-23 10:40:03.996577'); -INSERT INTO dvds.payment VALUES (24608, 200, 1, 15961, 6.99, '2007-03-23 18:04:08.996577'); -INSERT INTO dvds.payment VALUES (24609, 201, 2, 10750, 5.99, '2007-03-01 18:34:26.996577'); -INSERT INTO dvds.payment VALUES (24610, 201, 2, 10865, 3.99, '2007-03-01 22:51:12.996577'); -INSERT INTO dvds.payment VALUES (24611, 201, 1, 10891, 0.99, '2007-03-01 23:38:21.996577'); -INSERT INTO dvds.payment VALUES (24612, 201, 2, 11807, 0.99, '2007-03-17 10:19:41.996577'); -INSERT INTO dvds.payment VALUES (24613, 201, 2, 13076, 4.99, '2007-03-19 08:38:52.996577'); -INSERT INTO dvds.payment VALUES (24614, 201, 2, 13613, 9.99, '2007-03-20 04:52:19.996577'); -INSERT INTO dvds.payment VALUES (24615, 201, 2, 13671, 3.99, '2007-03-20 06:55:29.996577'); -INSERT INTO dvds.payment VALUES (24616, 201, 2, 13672, 2.99, '2007-03-20 06:55:53.996577'); -INSERT INTO dvds.payment VALUES (24617, 201, 2, 14656, 2.99, '2007-03-21 18:07:54.996577'); -INSERT INTO dvds.payment VALUES (24618, 201, 1, 14973, 2.99, '2007-03-22 05:27:54.996577'); -INSERT INTO dvds.payment VALUES (24619, 201, 1, 15887, 2.99, '2007-03-23 15:22:35.996577'); -INSERT INTO dvds.payment VALUES (24620, 201, 2, 15974, 5.99, '2007-03-23 18:34:30.996577'); -INSERT INTO dvds.payment VALUES (24621, 208, 2, 10762, 4.99, '2007-03-01 18:57:05.996577'); -INSERT INTO dvds.payment VALUES (24622, 208, 2, 10784, 5.99, '2007-03-01 19:52:54.996577'); -INSERT INTO dvds.payment VALUES (24623, 208, 2, 11442, 2.99, '2007-03-02 18:54:45.996577'); -INSERT INTO dvds.payment VALUES (24624, 208, 2, 11805, 6.99, '2007-03-17 10:17:13.996577'); -INSERT INTO dvds.payment VALUES (24625, 208, 2, 11819, 0.99, '2007-03-17 10:53:43.996577'); -INSERT INTO dvds.payment VALUES (24626, 209, 2, 10554, 2.99, '2007-03-01 11:24:45.996577'); -INSERT INTO dvds.payment VALUES (24627, 209, 1, 10646, 4.99, '2007-03-01 14:26:21.996577'); -INSERT INTO dvds.payment VALUES (24628, 209, 2, 10811, 6.99, '2007-03-01 21:09:41.996577'); -INSERT INTO dvds.payment VALUES (24629, 209, 1, 12025, 0.99, '2007-03-17 18:27:32.996577'); -INSERT INTO dvds.payment VALUES (24630, 209, 1, 13796, 8.99, '2007-03-20 11:00:58.996577'); -INSERT INTO dvds.payment VALUES (24631, 209, 2, 14631, 6.99, '2007-03-21 17:16:15.996577'); -INSERT INTO dvds.payment VALUES (24632, 209, 1, 15254, 2.99, '2007-03-22 16:41:33.996577'); -INSERT INTO dvds.payment VALUES (24633, 209, 2, 15510, 9.99, '2007-03-23 01:19:53.996577'); -INSERT INTO dvds.payment VALUES (24634, 210, 2, 10890, 4.99, '2007-03-01 23:27:12.996577'); -INSERT INTO dvds.payment VALUES (24635, 210, 2, 12410, 8.99, '2007-03-18 08:13:59.996577'); -INSERT INTO dvds.payment VALUES (24636, 210, 1, 12879, 4.99, '2007-03-19 01:51:21.996577'); -INSERT INTO dvds.payment VALUES (24637, 210, 2, 12909, 2.99, '2007-03-19 02:48:51.996577'); -INSERT INTO dvds.payment VALUES (24638, 210, 2, 12986, 4.99, '2007-03-19 05:38:02.996577'); -INSERT INTO dvds.payment VALUES (24639, 210, 1, 14181, 7.99, '2007-03-21 01:44:56.996577'); -INSERT INTO dvds.payment VALUES (24640, 210, 2, 14639, 6.99, '2007-03-21 17:30:05.996577'); -INSERT INTO dvds.payment VALUES (24641, 210, 2, 14876, 4.99, '2007-03-22 02:07:55.996577'); -INSERT INTO dvds.payment VALUES (24642, 210, 2, 15672, 0.99, '2007-03-23 07:37:44.996577'); -INSERT INTO dvds.payment VALUES (24643, 210, 2, 15942, 8.99, '2007-03-23 17:17:06.996577'); -INSERT INTO dvds.payment VALUES (24644, 211, 1, 10445, 2.99, '2007-03-01 07:30:41.996577'); -INSERT INTO dvds.payment VALUES (24645, 211, 2, 10928, 4.99, '2007-03-02 01:02:38.996577'); -INSERT INTO dvds.payment VALUES (24646, 211, 2, 11076, 8.99, '2007-03-02 05:53:13.996577'); -INSERT INTO dvds.payment VALUES (24647, 211, 2, 11963, 3.99, '2007-03-17 16:04:13.996577'); -INSERT INTO dvds.payment VALUES (24648, 211, 2, 12311, 0.99, '2007-03-18 04:35:26.996577'); -INSERT INTO dvds.payment VALUES (24649, 211, 2, 12565, 4.99, '2007-03-18 13:40:43.996577'); -INSERT INTO dvds.payment VALUES (24650, 211, 2, 12570, 5.99, '2007-03-18 13:51:57.996577'); -INSERT INTO dvds.payment VALUES (24651, 211, 2, 13942, 2.99, '2007-03-20 15:59:18.996577'); -INSERT INTO dvds.payment VALUES (24652, 211, 1, 13979, 2.99, '2007-03-20 17:32:15.996577'); -INSERT INTO dvds.payment VALUES (24653, 211, 2, 14782, 0.99, '2007-03-21 22:45:46.996577'); -INSERT INTO dvds.payment VALUES (24654, 211, 2, 14812, 1.99, '2007-03-21 23:38:58.996577'); -INSERT INTO dvds.payment VALUES (24655, 211, 1, 15404, 7.99, '2007-03-22 21:48:10.996577'); -INSERT INTO dvds.payment VALUES (24656, 211, 2, 15538, 6.99, '2007-03-23 02:36:03.996577'); -INSERT INTO dvds.payment VALUES (24657, 211, 2, 15670, 5.99, '2007-03-23 07:35:37.996577'); -INSERT INTO dvds.payment VALUES (24658, 212, 2, 10273, 4.99, '2007-03-01 01:43:13.996577'); -INSERT INTO dvds.payment VALUES (24659, 212, 2, 10567, 0.99, '2007-03-01 11:44:27.996577'); -INSERT INTO dvds.payment VALUES (24660, 212, 1, 12156, 7.99, '2007-03-17 22:55:59.996577'); -INSERT INTO dvds.payment VALUES (24661, 212, 2, 12467, 0.99, '2007-03-18 10:08:35.996577'); -INSERT INTO dvds.payment VALUES (24662, 212, 2, 12562, 3.99, '2007-03-18 13:28:29.996577'); -INSERT INTO dvds.payment VALUES (24663, 212, 1, 14563, 2.99, '2007-03-21 14:52:19.996577'); -INSERT INTO dvds.payment VALUES (24664, 212, 2, 14681, 5.99, '2007-03-21 18:53:39.996577'); -INSERT INTO dvds.payment VALUES (24665, 212, 1, 15872, 4.99, '2007-03-23 14:55:50.996577'); -INSERT INTO dvds.payment VALUES (24666, 212, 2, 15920, 2.99, '2007-03-23 16:33:36.996577'); -INSERT INTO dvds.payment VALUES (24667, 213, 1, 10449, 2.99, '2007-03-01 07:38:25.996577'); -INSERT INTO dvds.payment VALUES (24668, 213, 2, 11778, 3.99, '2007-03-17 09:00:06.996577'); -INSERT INTO dvds.payment VALUES (24669, 213, 1, 13354, 4.99, '2007-03-19 19:23:49.996577'); -INSERT INTO dvds.payment VALUES (24670, 213, 2, 13426, 0.99, '2007-03-19 21:43:26.996577'); -INSERT INTO dvds.payment VALUES (24671, 213, 1, 14744, 6.99, '2007-03-21 21:13:47.996577'); -INSERT INTO dvds.payment VALUES (24672, 214, 1, 10563, 3.99, '2007-03-01 11:34:29.996577'); -INSERT INTO dvds.payment VALUES (24673, 214, 2, 10749, 4.99, '2007-03-01 18:30:27.996577'); -INSERT INTO dvds.payment VALUES (24674, 214, 2, 11450, 2.99, '2007-03-02 19:14:20.996577'); -INSERT INTO dvds.payment VALUES (24675, 214, 2, 11474, 4.99, '2007-03-02 20:21:34.996577'); -INSERT INTO dvds.payment VALUES (24676, 214, 2, 12463, 4.99, '2007-03-18 10:00:00.996577'); -INSERT INTO dvds.payment VALUES (24677, 214, 2, 13138, 2.99, '2007-03-19 10:58:27.996577'); -INSERT INTO dvds.payment VALUES (24678, 214, 2, 13350, 9.99, '2007-03-19 19:12:26.996577'); -INSERT INTO dvds.payment VALUES (24679, 214, 1, 13409, 2.99, '2007-03-19 21:04:52.996577'); -INSERT INTO dvds.payment VALUES (24680, 214, 1, 13565, 0.99, '2007-03-20 03:07:18.996577'); -INSERT INTO dvds.payment VALUES (24681, 214, 1, 13726, 0.99, '2007-03-20 08:37:06.996577'); -INSERT INTO dvds.payment VALUES (24682, 214, 1, 13864, 4.99, '2007-03-20 13:28:21.996577'); -INSERT INTO dvds.payment VALUES (24683, 214, 2, 14347, 4.99, '2007-03-21 07:10:57.996577'); -INSERT INTO dvds.payment VALUES (24684, 214, 1, 14567, 0.99, '2007-03-21 14:55:51.996577'); -INSERT INTO dvds.payment VALUES (24685, 214, 2, 15639, 2.99, '2007-03-23 06:31:51.996577'); -INSERT INTO dvds.payment VALUES (24686, 215, 1, 11729, 2.99, '2007-03-17 06:43:07.996577'); -INSERT INTO dvds.payment VALUES (24687, 215, 2, 12285, 2.99, '2007-03-18 03:25:09.996577'); -INSERT INTO dvds.payment VALUES (24688, 215, 1, 12380, 1.99, '2007-03-18 06:55:54.996577'); -INSERT INTO dvds.payment VALUES (24689, 215, 2, 13085, 0.99, '2007-03-19 08:56:48.996577'); -INSERT INTO dvds.payment VALUES (24690, 215, 2, 14126, 0.99, '2007-03-21 00:00:43.996577'); -INSERT INTO dvds.payment VALUES (24691, 215, 2, 14817, 4.99, '2007-03-21 23:45:42.996577'); -INSERT INTO dvds.payment VALUES (24692, 215, 1, 15583, 2.99, '2007-03-23 04:16:21.996577'); -INSERT INTO dvds.payment VALUES (24693, 215, 2, 15610, 2.99, '2007-03-23 05:24:41.996577'); -INSERT INTO dvds.payment VALUES (24694, 215, 2, 15799, 2.99, '2007-03-23 12:51:49.996577'); -INSERT INTO dvds.payment VALUES (24695, 215, 1, 15843, 0.99, '2007-03-23 14:05:57.996577'); -INSERT INTO dvds.payment VALUES (24696, 216, 1, 10506, 4.99, '2007-03-01 09:44:31.996577'); -INSERT INTO dvds.payment VALUES (24697, 216, 1, 11005, 0.99, '2007-03-02 03:33:49.996577'); -INSERT INTO dvds.payment VALUES (24698, 216, 2, 11621, 7.99, '2007-03-17 02:42:11.996577'); -INSERT INTO dvds.payment VALUES (24699, 216, 2, 13424, 0.99, '2007-03-19 21:38:35.996577'); -INSERT INTO dvds.payment VALUES (24700, 216, 2, 14638, 2.99, '2007-03-21 17:30:02.996577'); -INSERT INTO dvds.payment VALUES (24701, 216, 2, 14726, 4.99, '2007-03-21 20:37:18.996577'); -INSERT INTO dvds.payment VALUES (24702, 216, 1, 15192, 4.99, '2007-03-22 14:34:49.996577'); -INSERT INTO dvds.payment VALUES (24703, 216, 2, 15199, 2.99, '2007-03-22 14:46:15.996577'); -INSERT INTO dvds.payment VALUES (24704, 216, 2, 15934, 4.99, '2007-03-23 17:09:07.996577'); -INSERT INTO dvds.payment VALUES (24705, 217, 1, 10581, 5.99, '2007-03-01 12:20:56.996577'); -INSERT INTO dvds.payment VALUES (24706, 217, 1, 10836, 6.99, '2007-03-01 21:58:24.996577'); -INSERT INTO dvds.payment VALUES (24707, 217, 1, 11347, 2.99, '2007-03-02 15:46:33.996577'); -INSERT INTO dvds.payment VALUES (24708, 217, 1, 11649, 2.99, '2007-03-17 03:27:52.996577'); -INSERT INTO dvds.payment VALUES (24709, 217, 1, 11958, 4.99, '2007-03-17 15:51:46.996577'); -INSERT INTO dvds.payment VALUES (24710, 217, 2, 12210, 4.99, '2007-03-18 00:55:55.996577'); -INSERT INTO dvds.payment VALUES (24711, 217, 1, 12871, 4.99, '2007-03-19 01:24:02.996577'); -INSERT INTO dvds.payment VALUES (24712, 217, 2, 15116, 0.99, '2007-03-22 11:04:06.996577'); -INSERT INTO dvds.payment VALUES (24713, 217, 2, 15277, 2.99, '2007-03-22 17:31:14.996577'); -INSERT INTO dvds.payment VALUES (24714, 218, 1, 11654, 2.99, '2007-03-17 03:34:45.996577'); -INSERT INTO dvds.payment VALUES (24715, 218, 2, 12481, 2.99, '2007-03-18 11:00:00.996577'); -INSERT INTO dvds.payment VALUES (24716, 218, 1, 12974, 0.99, '2007-03-19 05:19:28.996577'); -INSERT INTO dvds.payment VALUES (24717, 218, 2, 13708, 5.99, '2007-03-20 08:02:33.996577'); -INSERT INTO dvds.payment VALUES (24718, 218, 2, 13947, 5.99, '2007-03-20 16:14:32.996577'); -INSERT INTO dvds.payment VALUES (24719, 218, 2, 14848, 4.99, '2007-03-22 00:42:45.996577'); -INSERT INTO dvds.payment VALUES (24720, 218, 2, 15575, 0.99, '2007-03-23 03:58:45.996577'); -INSERT INTO dvds.payment VALUES (24721, 219, 1, 11328, 2.99, '2007-03-02 15:11:04.996577'); -INSERT INTO dvds.payment VALUES (24722, 219, 2, 11791, 0.99, '2007-03-17 09:29:37.996577'); -INSERT INTO dvds.payment VALUES (24723, 219, 1, 13765, 4.99, '2007-03-20 10:07:26.996577'); -INSERT INTO dvds.payment VALUES (24724, 219, 2, 14029, 0.99, '2007-03-20 19:51:37.996577'); -INSERT INTO dvds.payment VALUES (24725, 219, 1, 14588, 5.99, '2007-03-21 15:54:19.996577'); -INSERT INTO dvds.payment VALUES (24726, 219, 1, 14688, 4.99, '2007-03-21 19:01:03.996577'); -INSERT INTO dvds.payment VALUES (24727, 219, 1, 15283, 4.99, '2007-03-22 17:44:30.996577'); -INSERT INTO dvds.payment VALUES (24728, 220, 2, 10778, 4.99, '2007-03-01 19:40:05.996577'); -INSERT INTO dvds.payment VALUES (24729, 220, 1, 10948, 4.99, '2007-03-02 01:51:49.996577'); -INSERT INTO dvds.payment VALUES (24730, 220, 1, 11037, 0.99, '2007-03-02 04:26:38.996577'); -INSERT INTO dvds.payment VALUES (24731, 220, 1, 11153, 3.99, '2007-03-02 08:22:45.996577'); -INSERT INTO dvds.payment VALUES (24732, 220, 1, 11622, 4.99, '2007-03-17 02:44:12.996577'); -INSERT INTO dvds.payment VALUES (24733, 220, 2, 11947, 2.99, '2007-03-17 15:36:39.996577'); -INSERT INTO dvds.payment VALUES (24734, 220, 1, 12407, 4.99, '2007-03-18 08:07:52.996577'); -INSERT INTO dvds.payment VALUES (24735, 220, 1, 12896, 4.99, '2007-03-19 02:21:10.996577'); -INSERT INTO dvds.payment VALUES (24736, 220, 2, 13123, 2.99, '2007-03-19 10:23:39.996577'); -INSERT INTO dvds.payment VALUES (24737, 220, 1, 13281, 2.99, '2007-03-19 16:36:13.996577'); -INSERT INTO dvds.payment VALUES (24738, 220, 2, 14016, 4.99, '2007-03-20 19:20:29.996577'); -INSERT INTO dvds.payment VALUES (24739, 220, 2, 15706, 4.99, '2007-03-23 09:01:18.996577'); -INSERT INTO dvds.payment VALUES (24740, 221, 2, 11680, 4.99, '2007-03-17 04:40:53.996577'); -INSERT INTO dvds.payment VALUES (24741, 221, 1, 11693, 4.99, '2007-03-17 05:25:22.996577'); -INSERT INTO dvds.payment VALUES (24742, 221, 1, 11802, 2.99, '2007-03-17 10:01:17.996577'); -INSERT INTO dvds.payment VALUES (24743, 221, 1, 12324, 0.99, '2007-03-18 05:06:46.996577'); -INSERT INTO dvds.payment VALUES (24744, 221, 2, 12620, 3.99, '2007-03-18 15:55:04.996577'); -INSERT INTO dvds.payment VALUES (24745, 221, 2, 13434, 2.99, '2007-03-19 22:02:52.996577'); -INSERT INTO dvds.payment VALUES (24746, 221, 2, 14322, 5.99, '2007-03-21 06:34:56.996577'); -INSERT INTO dvds.payment VALUES (24747, 221, 2, 14371, 0.99, '2007-03-21 08:05:42.996577'); -INSERT INTO dvds.payment VALUES (24748, 221, 1, 14419, 7.99, '2007-03-21 09:44:12.996577'); -INSERT INTO dvds.payment VALUES (24749, 221, 1, 15125, 8.99, '2007-03-22 11:21:48.996577'); -INSERT INTO dvds.payment VALUES (24750, 222, 2, 12179, 2.99, '2007-03-17 23:49:47.996577'); -INSERT INTO dvds.payment VALUES (24751, 222, 1, 13477, 2.99, '2007-03-19 23:35:26.996577'); -INSERT INTO dvds.payment VALUES (24752, 222, 2, 14350, 2.99, '2007-03-21 07:27:04.996577'); -INSERT INTO dvds.payment VALUES (24753, 223, 2, 11040, 4.99, '2007-03-02 04:31:48.996577'); -INSERT INTO dvds.payment VALUES (24754, 223, 1, 12927, 5.99, '2007-03-19 03:31:12.996577'); -INSERT INTO dvds.payment VALUES (24755, 223, 1, 13576, 0.99, '2007-03-20 03:48:22.996577'); -INSERT INTO dvds.payment VALUES (24756, 223, 2, 14496, 4.99, '2007-03-21 12:36:01.996577'); -INSERT INTO dvds.payment VALUES (24757, 223, 1, 15257, 7.99, '2007-03-22 16:49:30.996577'); -INSERT INTO dvds.payment VALUES (24758, 223, 2, 15546, 5.99, '2007-03-23 02:49:04.996577'); -INSERT INTO dvds.payment VALUES (24759, 223, 1, 15662, 2.99, '2007-03-23 07:21:16.996577'); -INSERT INTO dvds.payment VALUES (24760, 224, 1, 11816, 0.99, '2007-03-17 10:42:42.996577'); -INSERT INTO dvds.payment VALUES (24761, 224, 1, 12492, 4.99, '2007-03-18 11:17:30.996577'); -INSERT INTO dvds.payment VALUES (24762, 224, 1, 12969, 2.99, '2007-03-19 05:07:25.996577'); -INSERT INTO dvds.payment VALUES (24763, 224, 2, 13075, 4.99, '2007-03-19 08:38:36.996577'); -INSERT INTO dvds.payment VALUES (24764, 224, 2, 14099, 0.99, '2007-03-20 22:59:29.996577'); -INSERT INTO dvds.payment VALUES (24765, 224, 2, 14271, 5.99, '2007-03-21 04:51:55.996577'); -INSERT INTO dvds.payment VALUES (24766, 224, 2, 14468, 5.99, '2007-03-21 11:35:36.996577'); -INSERT INTO dvds.payment VALUES (24767, 224, 2, 14880, 2.99, '2007-03-22 02:13:02.996577'); -INSERT INTO dvds.payment VALUES (24768, 224, 1, 15225, 0.99, '2007-03-22 15:46:58.996577'); -INSERT INTO dvds.payment VALUES (24769, 224, 1, 15952, 1.99, '2007-03-23 17:39:55.996577'); -INSERT INTO dvds.payment VALUES (24770, 225, 1, 10793, 2.99, '2007-03-01 20:16:29.996577'); -INSERT INTO dvds.payment VALUES (24771, 225, 2, 11333, 1.99, '2007-03-02 15:21:26.996577'); -INSERT INTO dvds.payment VALUES (24772, 225, 2, 11384, 0.99, '2007-03-02 16:51:27.996577'); -INSERT INTO dvds.payment VALUES (24773, 225, 2, 11395, 5.99, '2007-03-02 17:16:10.996577'); -INSERT INTO dvds.payment VALUES (24774, 225, 2, 11437, 4.99, '2007-03-02 18:48:32.996577'); -INSERT INTO dvds.payment VALUES (24775, 225, 2, 14444, 5.99, '2007-03-21 10:35:51.996577'); -INSERT INTO dvds.payment VALUES (24776, 226, 1, 12172, 1.99, '2007-03-17 23:35:26.996577'); -INSERT INTO dvds.payment VALUES (24777, 226, 1, 14491, 6.99, '2007-03-21 12:24:05.996577'); -INSERT INTO dvds.payment VALUES (24778, 226, 1, 14708, 4.99, '2007-03-21 19:35:49.996577'); -INSERT INTO dvds.payment VALUES (24779, 226, 1, 14712, 0.99, '2007-03-21 19:51:22.996577'); -INSERT INTO dvds.payment VALUES (24780, 226, 2, 14739, 0.99, '2007-03-21 21:01:48.996577'); -INSERT INTO dvds.payment VALUES (24781, 226, 2, 14934, 4.99, '2007-03-22 04:15:41.996577'); -INSERT INTO dvds.payment VALUES (24782, 226, 2, 15472, 2.99, '2007-03-23 00:07:31.996577'); -INSERT INTO dvds.payment VALUES (24783, 226, 1, 15901, 4.99, '2007-03-23 15:47:43.996577'); -INSERT INTO dvds.payment VALUES (24784, 226, 1, 15986, 2.99, '2007-03-23 18:49:03.996577'); -INSERT INTO dvds.payment VALUES (24785, 226, 1, 16033, 5.99, '2007-03-23 20:34:41.996577'); -INSERT INTO dvds.payment VALUES (24786, 227, 2, 10999, 3.99, '2007-03-02 03:21:39.996577'); -INSERT INTO dvds.payment VALUES (24787, 227, 2, 11892, 0.99, '2007-03-17 13:41:47.996577'); -INSERT INTO dvds.payment VALUES (24788, 227, 2, 13379, 4.99, '2007-03-19 20:02:05.996577'); -INSERT INTO dvds.payment VALUES (24789, 227, 2, 15406, 0.99, '2007-03-22 21:49:48.996577'); -INSERT INTO dvds.payment VALUES (24790, 227, 2, 15976, 4.99, '2007-03-23 18:35:34.996577'); -INSERT INTO dvds.payment VALUES (24791, 228, 1, 10585, 4.99, '2007-03-01 12:29:08.996577'); -INSERT INTO dvds.payment VALUES (24792, 228, 1, 12304, 0.99, '2007-03-18 04:12:55.996577'); -INSERT INTO dvds.payment VALUES (24793, 228, 2, 12952, 2.99, '2007-03-19 04:29:18.996577'); -INSERT INTO dvds.payment VALUES (24794, 228, 2, 13458, 4.99, '2007-03-19 23:03:56.996577'); -INSERT INTO dvds.payment VALUES (24795, 229, 1, 11521, 4.99, '2007-03-16 22:33:20.996577'); -INSERT INTO dvds.payment VALUES (24796, 229, 1, 12866, 2.99, '2007-03-19 01:08:13.996577'); -INSERT INTO dvds.payment VALUES (24797, 229, 2, 13306, 0.99, '2007-03-19 17:25:55.996577'); -INSERT INTO dvds.payment VALUES (24798, 229, 2, 13431, 4.99, '2007-03-19 21:56:41.996577'); -INSERT INTO dvds.payment VALUES (24799, 229, 1, 13679, 5.99, '2007-03-20 07:08:00.996577'); -INSERT INTO dvds.payment VALUES (24800, 229, 1, 15740, 4.99, '2007-03-23 10:36:17.996577'); -INSERT INTO dvds.payment VALUES (24801, 229, 2, 15912, 2.99, '2007-03-23 16:16:06.996577'); -INSERT INTO dvds.payment VALUES (24802, 230, 2, 10874, 2.99, '2007-03-01 22:59:26.996577'); -INSERT INTO dvds.payment VALUES (24803, 230, 2, 11148, 5.99, '2007-03-02 08:15:34.996577'); -INSERT INTO dvds.payment VALUES (24804, 230, 1, 11552, 5.99, '2007-03-16 23:32:55.996577'); -INSERT INTO dvds.payment VALUES (24805, 230, 2, 11914, 2.99, '2007-03-17 14:33:08.996577'); -INSERT INTO dvds.payment VALUES (24806, 230, 1, 12079, 1.99, '2007-03-17 20:32:43.996577'); -INSERT INTO dvds.payment VALUES (24807, 230, 2, 12523, 7.99, '2007-03-18 12:14:07.996577'); -INSERT INTO dvds.payment VALUES (24808, 230, 2, 12542, 0.99, '2007-03-18 12:49:37.996577'); -INSERT INTO dvds.payment VALUES (24809, 230, 2, 14017, 0.99, '2007-03-20 19:23:58.996577'); -INSERT INTO dvds.payment VALUES (24810, 230, 1, 14073, 5.99, '2007-03-20 21:41:23.996577'); -INSERT INTO dvds.payment VALUES (24811, 230, 1, 14340, 2.99, '2007-03-21 07:06:47.996577'); -INSERT INTO dvds.payment VALUES (24812, 231, 2, 11113, 2.99, '2007-03-02 06:54:50.996577'); -INSERT INTO dvds.payment VALUES (24813, 231, 1, 11202, 7.99, '2007-03-02 10:20:23.996577'); -INSERT INTO dvds.payment VALUES (24814, 231, 1, 11581, 5.99, '2007-03-17 00:31:28.996577'); -INSERT INTO dvds.payment VALUES (24815, 231, 1, 12214, 0.99, '2007-03-18 01:02:48.996577'); -INSERT INTO dvds.payment VALUES (24816, 231, 2, 12230, 8.99, '2007-03-18 01:39:30.996577'); -INSERT INTO dvds.payment VALUES (24817, 231, 1, 12231, 3.99, '2007-03-18 01:40:10.996577'); -INSERT INTO dvds.payment VALUES (24818, 231, 2, 13983, 6.99, '2007-03-20 17:36:58.996577'); -INSERT INTO dvds.payment VALUES (24819, 231, 1, 14026, 0.99, '2007-03-20 19:49:34.996577'); -INSERT INTO dvds.payment VALUES (24820, 231, 1, 14478, 4.99, '2007-03-21 12:01:54.996577'); -INSERT INTO dvds.payment VALUES (24821, 231, 2, 14806, 2.99, '2007-03-21 23:21:34.996577'); -INSERT INTO dvds.payment VALUES (24822, 231, 1, 15389, 3.99, '2007-03-22 21:19:39.996577'); -INSERT INTO dvds.payment VALUES (24823, 232, 1, 10539, 6.99, '2007-03-01 10:51:26.996577'); -INSERT INTO dvds.payment VALUES (24824, 232, 2, 11861, 0.99, '2007-03-17 12:22:13.996577'); -INSERT INTO dvds.payment VALUES (24825, 232, 2, 12853, 2.99, '2007-03-19 00:43:58.996577'); -INSERT INTO dvds.payment VALUES (24826, 232, 2, 13707, 2.99, '2007-03-20 08:02:24.996577'); -INSERT INTO dvds.payment VALUES (24827, 232, 2, 14527, 0.99, '2007-03-21 13:36:08.996577'); -INSERT INTO dvds.payment VALUES (24828, 232, 2, 14857, 0.99, '2007-03-22 01:11:05.996577'); -INSERT INTO dvds.payment VALUES (24829, 232, 2, 15553, 2.99, '2007-03-23 03:02:05.996577'); -INSERT INTO dvds.payment VALUES (24830, 233, 1, 10582, 4.99, '2007-03-01 12:22:48.996577'); -INSERT INTO dvds.payment VALUES (24831, 233, 1, 12443, 5.99, '2007-03-18 09:19:25.996577'); -INSERT INTO dvds.payment VALUES (24832, 233, 2, 14357, 2.99, '2007-03-21 07:41:35.996577'); -INSERT INTO dvds.payment VALUES (24833, 233, 2, 15285, 2.99, '2007-03-22 17:45:50.996577'); -INSERT INTO dvds.payment VALUES (24834, 233, 1, 15790, 1.99, '2007-03-23 12:29:33.996577'); -INSERT INTO dvds.payment VALUES (24835, 233, 2, 15821, 0.99, '2007-03-23 13:32:24.996577'); -INSERT INTO dvds.payment VALUES (24836, 234, 2, 10541, 0.99, '2007-03-01 10:53:20.996577'); -INSERT INTO dvds.payment VALUES (24837, 234, 2, 10580, 6.99, '2007-03-01 12:19:40.996577'); -INSERT INTO dvds.payment VALUES (24838, 234, 2, 10968, 7.99, '2007-03-02 02:31:39.996577'); -INSERT INTO dvds.payment VALUES (24839, 234, 1, 11050, 4.99, '2007-03-02 04:45:42.996577'); -INSERT INTO dvds.payment VALUES (24840, 234, 1, 11073, 0.99, '2007-03-02 05:41:29.996577'); -INSERT INTO dvds.payment VALUES (24841, 234, 1, 11481, 3.99, '2007-03-02 20:47:07.996577'); -INSERT INTO dvds.payment VALUES (24842, 234, 1, 11882, 3.99, '2007-03-17 13:02:07.996577'); -INSERT INTO dvds.payment VALUES (24843, 234, 1, 12226, 0.99, '2007-03-18 01:29:14.996577'); -INSERT INTO dvds.payment VALUES (24844, 234, 2, 12863, 4.99, '2007-03-19 01:04:25.996577'); -INSERT INTO dvds.payment VALUES (24845, 234, 1, 12921, 5.99, '2007-03-19 03:16:14.996577'); -INSERT INTO dvds.payment VALUES (24846, 234, 2, 13349, 2.99, '2007-03-19 19:11:42.996577'); -INSERT INTO dvds.payment VALUES (24847, 234, 2, 15037, 5.99, '2007-03-22 08:04:59.996577'); -INSERT INTO dvds.payment VALUES (24848, 234, 1, 15129, 2.99, '2007-03-22 11:32:18.996577'); -INSERT INTO dvds.payment VALUES (24849, 235, 2, 12332, 2.99, '2007-03-18 05:19:31.996577'); -INSERT INTO dvds.payment VALUES (24850, 235, 1, 12502, 4.99, '2007-03-18 11:44:57.996577'); -INSERT INTO dvds.payment VALUES (24851, 235, 2, 13070, 0.99, '2007-03-19 08:24:49.996577'); -INSERT INTO dvds.payment VALUES (24852, 235, 1, 13469, 0.99, '2007-03-19 23:28:02.996577'); -INSERT INTO dvds.payment VALUES (24853, 235, 2, 14749, 3.99, '2007-03-21 21:36:59.996577'); -INSERT INTO dvds.payment VALUES (24854, 235, 1, 15034, 6.99, '2007-03-22 08:01:34.996577'); -INSERT INTO dvds.payment VALUES (24855, 236, 2, 11139, 6.99, '2007-03-02 07:56:02.996577'); -INSERT INTO dvds.payment VALUES (24856, 236, 2, 11486, 3.99, '2007-03-02 21:02:32.996577'); -INSERT INTO dvds.payment VALUES (24857, 236, 2, 11507, 5.99, '2007-03-16 21:55:09.996577'); -INSERT INTO dvds.payment VALUES (24858, 236, 1, 11895, 4.99, '2007-03-17 13:43:33.996577'); -INSERT INTO dvds.payment VALUES (24859, 236, 1, 12975, 2.99, '2007-03-19 05:19:45.996577'); -INSERT INTO dvds.payment VALUES (24860, 236, 1, 13364, 2.99, '2007-03-19 19:37:56.996577'); -INSERT INTO dvds.payment VALUES (24861, 236, 1, 13443, 7.99, '2007-03-19 22:22:08.996577'); -INSERT INTO dvds.payment VALUES (24862, 236, 2, 14321, 4.99, '2007-03-21 06:33:38.996577'); -INSERT INTO dvds.payment VALUES (24863, 236, 1, 14364, 7.99, '2007-03-21 07:53:37.996577'); -INSERT INTO dvds.payment VALUES (24864, 236, 2, 14722, 4.99, '2007-03-21 20:19:19.996577'); -INSERT INTO dvds.payment VALUES (24865, 237, 2, 11125, 4.99, '2007-03-02 07:24:01.996577'); -INSERT INTO dvds.payment VALUES (24866, 237, 2, 11479, 11.99, '2007-03-02 20:46:39.996577'); -INSERT INTO dvds.payment VALUES (24867, 237, 2, 11772, 5.99, '2007-03-17 08:47:23.996577'); -INSERT INTO dvds.payment VALUES (24868, 237, 1, 12469, 0.99, '2007-03-18 10:21:33.996577'); -INSERT INTO dvds.payment VALUES (24869, 237, 2, 13914, 6.99, '2007-03-20 15:07:23.996577'); -INSERT INTO dvds.payment VALUES (24870, 237, 2, 13922, 6.99, '2007-03-20 15:31:03.996577'); -INSERT INTO dvds.payment VALUES (24871, 237, 2, 13969, 6.99, '2007-03-20 17:11:06.996577'); -INSERT INTO dvds.payment VALUES (24872, 237, 2, 14453, 3.99, '2007-03-21 11:02:00.996577'); -INSERT INTO dvds.payment VALUES (24873, 237, 2, 15139, 8.99, '2007-03-22 12:06:37.996577'); -INSERT INTO dvds.payment VALUES (24874, 237, 1, 15337, 0.99, '2007-03-22 19:18:17.996577'); -INSERT INTO dvds.payment VALUES (24875, 237, 2, 15931, 1.99, '2007-03-23 16:56:35.996577'); -INSERT INTO dvds.payment VALUES (24876, 238, 1, 10659, 5.99, '2007-03-01 15:09:00.996577'); -INSERT INTO dvds.payment VALUES (24877, 238, 2, 11543, 5.99, '2007-03-16 23:22:54.996577'); -INSERT INTO dvds.payment VALUES (24878, 238, 2, 11632, 2.99, '2007-03-17 02:57:58.996577'); -INSERT INTO dvds.payment VALUES (24879, 238, 1, 11897, 2.99, '2007-03-17 13:52:32.996577'); -INSERT INTO dvds.payment VALUES (24880, 238, 1, 14312, 4.99, '2007-03-21 06:17:00.996577'); -INSERT INTO dvds.payment VALUES (24881, 238, 1, 14343, 8.99, '2007-03-21 07:08:47.996577'); -INSERT INTO dvds.payment VALUES (24882, 238, 1, 15455, 0.99, '2007-03-22 23:33:26.996577'); -INSERT INTO dvds.payment VALUES (24883, 239, 1, 10755, 0.99, '2007-03-01 18:42:40.996577'); -INSERT INTO dvds.payment VALUES (24884, 239, 2, 10923, 2.99, '2007-03-02 00:43:27.996577'); -INSERT INTO dvds.payment VALUES (24885, 239, 1, 11487, 2.99, '2007-03-02 21:03:31.996577'); -INSERT INTO dvds.payment VALUES (24886, 239, 2, 11900, 4.99, '2007-03-17 13:59:10.996577'); -INSERT INTO dvds.payment VALUES (24887, 239, 1, 11968, 0.99, '2007-03-17 16:16:00.996577'); -INSERT INTO dvds.payment VALUES (24888, 239, 1, 12340, 4.99, '2007-03-18 05:35:27.996577'); -INSERT INTO dvds.payment VALUES (24889, 239, 1, 12721, 1.99, '2007-03-18 19:58:38.996577'); -INSERT INTO dvds.payment VALUES (24890, 239, 1, 13175, 4.99, '2007-03-19 12:23:19.996577'); -INSERT INTO dvds.payment VALUES (24891, 239, 2, 13427, 4.99, '2007-03-19 21:47:28.996577'); -INSERT INTO dvds.payment VALUES (24892, 239, 2, 13999, 3.99, '2007-03-20 18:21:58.996577'); -INSERT INTO dvds.payment VALUES (24893, 239, 2, 14062, 1.99, '2007-03-20 21:03:00.996577'); -INSERT INTO dvds.payment VALUES (24894, 240, 1, 10308, 7.99, '2007-03-01 02:51:15.996577'); -INSERT INTO dvds.payment VALUES (24895, 240, 1, 11745, 3.99, '2007-03-17 07:28:27.996577'); -INSERT INTO dvds.payment VALUES (24896, 240, 2, 12283, 6.99, '2007-03-18 03:22:51.996577'); -INSERT INTO dvds.payment VALUES (24897, 240, 2, 13030, 2.99, '2007-03-19 06:56:37.996577'); -INSERT INTO dvds.payment VALUES (24898, 240, 2, 13119, 4.99, '2007-03-19 10:13:25.996577'); -INSERT INTO dvds.payment VALUES (24899, 240, 1, 13663, 8.99, '2007-03-20 06:40:59.996577'); -INSERT INTO dvds.payment VALUES (24900, 240, 2, 14573, 2.99, '2007-03-21 15:12:58.996577'); -INSERT INTO dvds.payment VALUES (24901, 240, 2, 15641, 0.99, '2007-03-23 06:35:15.996577'); -INSERT INTO dvds.payment VALUES (24902, 241, 2, 10447, 3.99, '2007-03-01 07:33:24.996577'); -INSERT INTO dvds.payment VALUES (24903, 241, 1, 10652, 2.99, '2007-03-01 14:52:34.996577'); -INSERT INTO dvds.payment VALUES (24904, 241, 1, 11423, 1.99, '2007-03-02 18:25:39.996577'); -INSERT INTO dvds.payment VALUES (24905, 241, 2, 12418, 4.99, '2007-03-18 08:28:02.996577'); -INSERT INTO dvds.payment VALUES (24906, 241, 1, 12956, 4.99, '2007-03-19 04:34:52.996577'); -INSERT INTO dvds.payment VALUES (24907, 241, 2, 13077, 2.99, '2007-03-19 08:43:45.996577'); -INSERT INTO dvds.payment VALUES (24908, 241, 2, 14269, 7.99, '2007-03-21 04:50:33.996577'); -INSERT INTO dvds.payment VALUES (24909, 241, 2, 14485, 2.99, '2007-03-21 12:20:33.996577'); -INSERT INTO dvds.payment VALUES (24910, 241, 1, 14936, 0.99, '2007-03-22 04:19:52.996577'); -INSERT INTO dvds.payment VALUES (24911, 241, 2, 15137, 2.99, '2007-03-22 11:48:54.996577'); -INSERT INTO dvds.payment VALUES (24912, 241, 1, 15429, 2.99, '2007-03-22 22:48:57.996577'); -INSERT INTO dvds.payment VALUES (24913, 241, 1, 15767, 4.99, '2007-03-23 11:42:41.996577'); -INSERT INTO dvds.payment VALUES (24914, 242, 2, 10367, 0.99, '2007-03-01 04:40:45.996577'); -INSERT INTO dvds.payment VALUES (24915, 242, 2, 10382, 4.99, '2007-03-01 05:05:11.996577'); -INSERT INTO dvds.payment VALUES (24916, 242, 2, 10650, 9.99, '2007-03-01 14:47:11.996577'); -INSERT INTO dvds.payment VALUES (24917, 242, 2, 11020, 0.99, '2007-03-02 03:58:14.996577'); -INSERT INTO dvds.payment VALUES (24918, 242, 1, 11258, 4.99, '2007-03-02 12:14:05.996577'); -INSERT INTO dvds.payment VALUES (24919, 242, 2, 11607, 0.99, '2007-03-17 02:04:32.996577'); -INSERT INTO dvds.payment VALUES (24920, 242, 1, 11931, 4.99, '2007-03-17 15:03:40.996577'); -INSERT INTO dvds.payment VALUES (24921, 242, 2, 12724, 7.99, '2007-03-18 20:05:46.996577'); -INSERT INTO dvds.payment VALUES (24922, 242, 1, 12855, 4.99, '2007-03-19 00:47:24.996577'); -INSERT INTO dvds.payment VALUES (24923, 242, 1, 13271, 9.99, '2007-03-19 16:10:32.996577'); -INSERT INTO dvds.payment VALUES (24924, 242, 2, 13567, 0.99, '2007-03-20 03:17:47.996577'); -INSERT INTO dvds.payment VALUES (24925, 242, 2, 13646, 5.99, '2007-03-20 06:15:34.996577'); -INSERT INTO dvds.payment VALUES (24926, 242, 1, 14515, 0.99, '2007-03-21 13:20:40.996577'); -INSERT INTO dvds.payment VALUES (24927, 242, 1, 15002, 0.99, '2007-03-22 06:34:26.996577'); -INSERT INTO dvds.payment VALUES (24928, 243, 1, 12209, 2.99, '2007-03-18 00:55:46.996577'); -INSERT INTO dvds.payment VALUES (24929, 243, 1, 13291, 2.99, '2007-03-19 17:00:37.996577'); -INSERT INTO dvds.payment VALUES (24930, 243, 1, 14033, 2.99, '2007-03-20 19:59:19.996577'); -INSERT INTO dvds.payment VALUES (24931, 243, 1, 14108, 0.99, '2007-03-20 23:21:11.996577'); -INSERT INTO dvds.payment VALUES (24932, 243, 1, 14272, 3.99, '2007-03-21 04:53:21.996577'); -INSERT INTO dvds.payment VALUES (24933, 243, 2, 14581, 1.99, '2007-03-21 15:35:34.996577'); -INSERT INTO dvds.payment VALUES (24934, 243, 2, 14705, 2.99, '2007-03-21 19:31:21.996577'); -INSERT INTO dvds.payment VALUES (24935, 244, 2, 10684, 6.99, '2007-03-01 16:15:26.996577'); -INSERT INTO dvds.payment VALUES (24936, 244, 2, 10969, 2.99, '2007-03-02 02:32:58.996577'); -INSERT INTO dvds.payment VALUES (24937, 244, 2, 11157, 0.99, '2007-03-02 08:26:41.996577'); -INSERT INTO dvds.payment VALUES (24938, 244, 1, 11267, 9.99, '2007-03-02 12:37:34.996577'); -INSERT INTO dvds.payment VALUES (24939, 244, 1, 11762, 9.99, '2007-03-17 08:16:32.996577'); -INSERT INTO dvds.payment VALUES (24940, 244, 1, 13630, 4.99, '2007-03-20 05:34:22.996577'); -INSERT INTO dvds.payment VALUES (24941, 244, 2, 13774, 0.99, '2007-03-20 10:22:27.996577'); -INSERT INTO dvds.payment VALUES (24942, 244, 1, 13928, 0.99, '2007-03-20 15:40:54.996577'); -INSERT INTO dvds.payment VALUES (24943, 244, 1, 14367, 0.99, '2007-03-21 08:00:10.996577'); -INSERT INTO dvds.payment VALUES (24944, 244, 2, 14657, 0.99, '2007-03-21 18:08:09.996577'); -INSERT INTO dvds.payment VALUES (24945, 244, 1, 14919, 1.99, '2007-03-22 03:35:43.996577'); -INSERT INTO dvds.payment VALUES (24946, 244, 1, 14975, 3.99, '2007-03-22 05:36:16.996577'); -INSERT INTO dvds.payment VALUES (24947, 245, 2, 11061, 0.99, '2007-03-02 05:18:44.996577'); -INSERT INTO dvds.payment VALUES (24948, 245, 1, 11105, 0.99, '2007-03-02 06:41:57.996577'); -INSERT INTO dvds.payment VALUES (24949, 245, 1, 11211, 0.99, '2007-03-02 10:45:14.996577'); -INSERT INTO dvds.payment VALUES (24950, 245, 1, 12303, 7.99, '2007-03-18 04:11:48.996577'); -INSERT INTO dvds.payment VALUES (24951, 245, 1, 13286, 0.99, '2007-03-19 16:56:33.996577'); -INSERT INTO dvds.payment VALUES (24952, 245, 1, 15782, 6.99, '2007-03-23 12:11:52.996577'); -INSERT INTO dvds.payment VALUES (24953, 246, 2, 10683, 2.99, '2007-03-01 16:01:29.996577'); -INSERT INTO dvds.payment VALUES (24954, 246, 2, 13418, 5.99, '2007-03-19 21:22:22.996577'); -INSERT INTO dvds.payment VALUES (24955, 246, 1, 13750, 6.99, '2007-03-20 09:40:08.996577'); -INSERT INTO dvds.payment VALUES (24956, 246, 1, 13987, 4.99, '2007-03-20 17:47:56.996577'); -INSERT INTO dvds.payment VALUES (24957, 246, 1, 14360, 6.99, '2007-03-21 07:45:06.996577'); -INSERT INTO dvds.payment VALUES (24958, 246, 1, 15746, 2.99, '2007-03-23 10:54:45.996577'); -INSERT INTO dvds.payment VALUES (24959, 247, 1, 10279, 1.99, '2007-03-01 01:55:10.996577'); -INSERT INTO dvds.payment VALUES (24960, 247, 1, 10410, 6.99, '2007-03-01 06:21:55.996577'); -INSERT INTO dvds.payment VALUES (24961, 247, 2, 11204, 2.99, '2007-03-02 10:24:57.996577'); -INSERT INTO dvds.payment VALUES (24962, 247, 2, 11306, 2.99, '2007-03-02 14:13:36.996577'); -INSERT INTO dvds.payment VALUES (24963, 247, 1, 11495, 0.99, '2007-03-16 21:19:46.996577'); -INSERT INTO dvds.payment VALUES (24964, 247, 2, 12265, 4.99, '2007-03-18 02:50:27.996577'); -INSERT INTO dvds.payment VALUES (24965, 247, 1, 12482, 7.99, '2007-03-18 11:06:02.996577'); -INSERT INTO dvds.payment VALUES (24966, 247, 1, 12491, 4.99, '2007-03-18 11:17:11.996577'); -INSERT INTO dvds.payment VALUES (24967, 247, 1, 12824, 4.99, '2007-03-18 23:46:26.996577'); -INSERT INTO dvds.payment VALUES (24968, 247, 1, 14041, 4.99, '2007-03-20 20:13:49.996577'); -INSERT INTO dvds.payment VALUES (24969, 247, 1, 15783, 4.99, '2007-03-23 12:14:10.996577'); -INSERT INTO dvds.payment VALUES (24970, 248, 2, 10418, 4.99, '2007-03-01 06:39:33.996577'); -INSERT INTO dvds.payment VALUES (24971, 248, 1, 12241, 0.99, '2007-03-18 02:01:43.996577'); -INSERT INTO dvds.payment VALUES (24972, 248, 1, 13918, 0.99, '2007-03-20 15:15:58.996577'); -INSERT INTO dvds.payment VALUES (24973, 248, 2, 14704, 0.99, '2007-03-21 19:30:48.996577'); -INSERT INTO dvds.payment VALUES (24974, 248, 2, 14885, 5.99, '2007-03-22 02:26:55.996577'); -INSERT INTO dvds.payment VALUES (24975, 249, 1, 11124, 1.99, '2007-03-02 07:23:51.996577'); -INSERT INTO dvds.payment VALUES (24976, 249, 1, 11159, 4.99, '2007-03-02 08:29:21.996577'); -INSERT INTO dvds.payment VALUES (24977, 249, 2, 11668, 0.99, '2007-03-17 04:15:58.996577'); -INSERT INTO dvds.payment VALUES (24978, 249, 2, 13981, 4.99, '2007-03-20 17:35:46.996577'); -INSERT INTO dvds.payment VALUES (24979, 249, 2, 14285, 0.99, '2007-03-21 05:19:14.996577'); -INSERT INTO dvds.payment VALUES (24980, 249, 1, 15160, 6.99, '2007-03-22 13:02:16.996577'); -INSERT INTO dvds.payment VALUES (24981, 250, 2, 10604, 4.99, '2007-03-01 13:03:34.996577'); -INSERT INTO dvds.payment VALUES (24982, 250, 1, 12361, 0.99, '2007-03-18 06:15:57.996577'); -INSERT INTO dvds.payment VALUES (24983, 250, 1, 12810, 0.99, '2007-03-18 23:12:36.996577'); -INSERT INTO dvds.payment VALUES (24984, 250, 2, 14565, 4.99, '2007-03-21 14:53:11.996577'); -INSERT INTO dvds.payment VALUES (24985, 250, 1, 14587, 5.99, '2007-03-21 15:49:21.996577'); -INSERT INTO dvds.payment VALUES (24986, 250, 2, 14814, 4.99, '2007-03-21 23:40:40.996577'); -INSERT INTO dvds.payment VALUES (24987, 250, 2, 15247, 6.99, '2007-03-22 16:20:31.996577'); -INSERT INTO dvds.payment VALUES (24988, 251, 1, 10575, 7.99, '2007-03-01 12:10:07.996577'); -INSERT INTO dvds.payment VALUES (24989, 251, 1, 11733, 0.99, '2007-03-17 06:59:29.996577'); -INSERT INTO dvds.payment VALUES (24990, 251, 2, 12047, 3.99, '2007-03-17 19:16:58.996577'); -INSERT INTO dvds.payment VALUES (24991, 251, 2, 12666, 4.99, '2007-03-18 17:40:07.996577'); -INSERT INTO dvds.payment VALUES (24992, 251, 2, 13121, 2.99, '2007-03-19 10:20:05.996577'); -INSERT INTO dvds.payment VALUES (24993, 251, 1, 13243, 2.99, '2007-03-19 15:01:42.996577'); -INSERT INTO dvds.payment VALUES (24994, 251, 2, 13260, 6.99, '2007-03-19 15:37:48.996577'); -INSERT INTO dvds.payment VALUES (24995, 251, 1, 14292, 0.99, '2007-03-21 05:34:46.996577'); -INSERT INTO dvds.payment VALUES (24996, 251, 2, 15647, 2.99, '2007-03-23 06:52:22.996577'); -INSERT INTO dvds.payment VALUES (24997, 251, 2, 15870, 4.99, '2007-03-23 14:51:34.996577'); -INSERT INTO dvds.payment VALUES (24998, 252, 2, 10314, 0.99, '2007-03-01 02:59:44.996577'); -INSERT INTO dvds.payment VALUES (24999, 252, 2, 10834, 2.99, '2007-03-01 21:56:26.996577'); -INSERT INTO dvds.payment VALUES (25000, 252, 2, 11764, 0.99, '2007-03-17 08:20:20.996577'); -INSERT INTO dvds.payment VALUES (25001, 252, 1, 13385, 4.99, '2007-03-19 20:08:01.996577'); -INSERT INTO dvds.payment VALUES (25002, 252, 2, 13989, 5.99, '2007-03-20 17:56:16.996577'); -INSERT INTO dvds.payment VALUES (25003, 252, 1, 14774, 4.99, '2007-03-21 22:20:58.996577'); -INSERT INTO dvds.payment VALUES (25004, 253, 2, 10404, 4.99, '2007-03-01 05:59:51.996577'); -INSERT INTO dvds.payment VALUES (25005, 253, 1, 10660, 2.99, '2007-03-01 15:16:27.996577'); -INSERT INTO dvds.payment VALUES (25006, 253, 2, 10881, 6.99, '2007-03-01 23:06:40.996577'); -INSERT INTO dvds.payment VALUES (25007, 253, 1, 12572, 0.99, '2007-03-18 14:01:20.996577'); -INSERT INTO dvds.payment VALUES (25008, 253, 2, 12827, 5.99, '2007-03-18 23:55:49.996577'); -INSERT INTO dvds.payment VALUES (25009, 253, 1, 13126, 5.99, '2007-03-19 10:28:54.996577'); -INSERT INTO dvds.payment VALUES (25010, 253, 2, 14086, 3.99, '2007-03-20 22:16:20.996577'); -INSERT INTO dvds.payment VALUES (25011, 253, 2, 14283, 4.99, '2007-03-21 05:12:40.996577'); -INSERT INTO dvds.payment VALUES (25012, 253, 1, 14640, 7.99, '2007-03-21 17:31:45.996577'); -INSERT INTO dvds.payment VALUES (25013, 253, 2, 14655, 4.99, '2007-03-21 18:05:36.996577'); -INSERT INTO dvds.payment VALUES (25014, 253, 2, 15221, 2.99, '2007-03-22 15:40:55.996577'); -INSERT INTO dvds.payment VALUES (25015, 254, 1, 10522, 4.99, '2007-03-01 10:17:17.996577'); -INSERT INTO dvds.payment VALUES (25016, 254, 1, 11190, 0.99, '2007-03-02 09:50:00.996577'); -INSERT INTO dvds.payment VALUES (25017, 254, 1, 11665, 6.99, '2007-03-17 04:05:23.996577'); -INSERT INTO dvds.payment VALUES (25018, 254, 2, 12148, 0.99, '2007-03-17 22:41:41.996577'); -INSERT INTO dvds.payment VALUES (25019, 254, 1, 12206, 0.99, '2007-03-18 00:50:46.996577'); -INSERT INTO dvds.payment VALUES (25020, 254, 1, 12247, 2.99, '2007-03-18 02:20:17.996577'); -INSERT INTO dvds.payment VALUES (25021, 254, 1, 12874, 0.99, '2007-03-19 01:36:23.996577'); -INSERT INTO dvds.payment VALUES (25022, 254, 2, 13001, 4.99, '2007-03-19 06:05:10.996577'); -INSERT INTO dvds.payment VALUES (25023, 254, 1, 13045, 4.99, '2007-03-19 07:46:01.996577'); -INSERT INTO dvds.payment VALUES (25024, 254, 2, 13130, 2.99, '2007-03-19 10:35:08.996577'); -INSERT INTO dvds.payment VALUES (25025, 254, 2, 14497, 4.99, '2007-03-21 12:38:13.996577'); -INSERT INTO dvds.payment VALUES (25026, 254, 1, 15774, 0.99, '2007-03-23 11:53:34.996577'); -INSERT INTO dvds.payment VALUES (25027, 255, 2, 11979, 4.99, '2007-03-17 16:35:39.996577'); -INSERT INTO dvds.payment VALUES (25028, 255, 2, 12176, 7.99, '2007-03-17 23:38:59.996577'); -INSERT INTO dvds.payment VALUES (25029, 255, 2, 13154, 2.99, '2007-03-19 11:38:20.996577'); -INSERT INTO dvds.payment VALUES (25030, 255, 1, 13268, 0.99, '2007-03-19 16:02:16.996577'); -INSERT INTO dvds.payment VALUES (25031, 255, 2, 13683, 0.99, '2007-03-20 07:23:21.996577'); -INSERT INTO dvds.payment VALUES (25032, 255, 1, 13758, 8.99, '2007-03-20 09:49:52.996577'); -INSERT INTO dvds.payment VALUES (25033, 255, 2, 14600, 3.99, '2007-03-21 16:13:47.996577'); -INSERT INTO dvds.payment VALUES (25034, 256, 2, 10759, 4.99, '2007-03-01 18:51:17.996577'); -INSERT INTO dvds.payment VALUES (25035, 256, 2, 11011, 2.99, '2007-03-02 03:35:33.996577'); -INSERT INTO dvds.payment VALUES (25036, 256, 2, 11628, 8.99, '2007-03-17 02:55:44.996577'); -INSERT INTO dvds.payment VALUES (25037, 256, 2, 13457, 0.99, '2007-03-19 23:01:48.996577'); -INSERT INTO dvds.payment VALUES (25038, 256, 1, 13651, 0.99, '2007-03-20 06:18:34.996577'); -INSERT INTO dvds.payment VALUES (25039, 256, 1, 14003, 6.99, '2007-03-20 18:44:32.996577'); -INSERT INTO dvds.payment VALUES (25040, 256, 2, 14036, 4.99, '2007-03-20 20:03:53.996577'); -INSERT INTO dvds.payment VALUES (25041, 256, 2, 14445, 2.99, '2007-03-21 10:36:08.996577'); -INSERT INTO dvds.payment VALUES (25042, 256, 2, 14458, 3.99, '2007-03-21 11:16:19.996577'); -INSERT INTO dvds.payment VALUES (25043, 256, 2, 15609, 2.99, '2007-03-23 05:24:30.996577'); -INSERT INTO dvds.payment VALUES (25044, 256, 2, 15861, 4.99, '2007-03-23 14:44:11.996577'); -INSERT INTO dvds.payment VALUES (25045, 256, 1, 15864, 7.99, '2007-03-23 14:46:38.996577'); -INSERT INTO dvds.payment VALUES (25046, 257, 1, 11230, 4.99, '2007-03-02 11:27:34.996577'); -INSERT INTO dvds.payment VALUES (25047, 257, 1, 11394, 0.99, '2007-03-02 17:13:11.996577'); -INSERT INTO dvds.payment VALUES (25048, 257, 2, 11545, 6.99, '2007-03-16 23:24:32.996577'); -INSERT INTO dvds.payment VALUES (25049, 257, 2, 11860, 1.99, '2007-03-17 12:20:52.996577'); -INSERT INTO dvds.payment VALUES (25050, 257, 2, 12841, 2.99, '2007-03-19 00:24:21.996577'); -INSERT INTO dvds.payment VALUES (25051, 257, 1, 12904, 5.99, '2007-03-19 02:39:16.996577'); -INSERT INTO dvds.payment VALUES (25052, 257, 2, 13203, 7.99, '2007-03-19 13:29:24.996577'); -INSERT INTO dvds.payment VALUES (25053, 257, 2, 13218, 0.99, '2007-03-19 14:08:05.996577'); -INSERT INTO dvds.payment VALUES (25054, 257, 1, 13389, 2.99, '2007-03-19 20:21:17.996577'); -INSERT INTO dvds.payment VALUES (25055, 257, 2, 13846, 5.99, '2007-03-20 13:00:57.996577'); -INSERT INTO dvds.payment VALUES (25056, 257, 2, 14115, 0.99, '2007-03-20 23:38:55.996577'); -INSERT INTO dvds.payment VALUES (25057, 257, 1, 15025, 0.99, '2007-03-22 07:25:50.996577'); -INSERT INTO dvds.payment VALUES (25058, 257, 1, 15967, 2.99, '2007-03-23 18:18:32.996577'); -INSERT INTO dvds.payment VALUES (25059, 257, 2, 15968, 0.99, '2007-03-23 18:19:55.996577'); -INSERT INTO dvds.payment VALUES (25060, 258, 2, 10293, 1.99, '2007-03-01 02:12:52.996577'); -INSERT INTO dvds.payment VALUES (25061, 258, 2, 10315, 4.99, '2007-03-01 03:03:11.996577'); -INSERT INTO dvds.payment VALUES (25062, 258, 1, 10325, 5.99, '2007-03-01 03:20:38.996577'); -INSERT INTO dvds.payment VALUES (25063, 258, 2, 10332, 6.99, '2007-03-01 03:25:58.996577'); -INSERT INTO dvds.payment VALUES (25064, 258, 1, 10393, 0.99, '2007-03-01 05:21:16.996577'); -INSERT INTO dvds.payment VALUES (25065, 258, 1, 12246, 5.99, '2007-03-18 02:17:07.996577'); -INSERT INTO dvds.payment VALUES (25066, 258, 2, 12296, 3.99, '2007-03-18 03:44:54.996577'); -INSERT INTO dvds.payment VALUES (25067, 258, 1, 13491, 4.99, '2007-03-19 23:59:22.996577'); -INSERT INTO dvds.payment VALUES (25068, 258, 1, 13695, 6.99, '2007-03-20 07:41:51.996577'); -INSERT INTO dvds.payment VALUES (25069, 258, 2, 13897, 2.99, '2007-03-20 14:30:54.996577'); -INSERT INTO dvds.payment VALUES (25070, 258, 2, 14901, 6.99, '2007-03-22 03:00:03.996577'); -INSERT INTO dvds.payment VALUES (25071, 259, 1, 10510, 3.99, '2007-03-01 09:56:56.996577'); -INSERT INTO dvds.payment VALUES (25072, 259, 1, 10781, 2.99, '2007-03-01 19:51:07.996577'); -INSERT INTO dvds.payment VALUES (25073, 259, 1, 11184, 3.99, '2007-03-02 09:29:52.996577'); -INSERT INTO dvds.payment VALUES (25074, 259, 2, 12680, 6.99, '2007-03-18 18:12:12.996577'); -INSERT INTO dvds.payment VALUES (25075, 259, 1, 13109, 4.99, '2007-03-19 09:51:46.996577'); -INSERT INTO dvds.payment VALUES (25076, 259, 2, 13112, 2.99, '2007-03-19 09:55:36.996577'); -INSERT INTO dvds.payment VALUES (25077, 259, 2, 13366, 4.99, '2007-03-19 19:43:11.996577'); -INSERT INTO dvds.payment VALUES (25078, 259, 1, 13598, 5.99, '2007-03-20 04:27:43.996577'); -INSERT INTO dvds.payment VALUES (25079, 259, 2, 13649, 4.99, '2007-03-20 06:17:04.996577'); -INSERT INTO dvds.payment VALUES (25080, 259, 2, 14067, 6.99, '2007-03-20 21:17:49.996577'); -INSERT INTO dvds.payment VALUES (25081, 259, 2, 14170, 4.99, '2007-03-21 01:29:05.996577'); -INSERT INTO dvds.payment VALUES (25082, 259, 2, 14966, 2.99, '2007-03-22 05:14:23.996577'); -INSERT INTO dvds.payment VALUES (25083, 259, 1, 15425, 10.99, '2007-03-22 22:34:23.996577'); -INSERT INTO dvds.payment VALUES (25084, 259, 1, 15473, 2.99, '2007-03-23 00:07:36.996577'); -INSERT INTO dvds.payment VALUES (25085, 259, 1, 15689, 2.99, '2007-03-23 08:21:21.996577'); -INSERT INTO dvds.payment VALUES (25086, 260, 2, 10970, 8.99, '2007-03-02 02:35:12.996577'); -INSERT INTO dvds.payment VALUES (25087, 260, 1, 12852, 0.99, '2007-03-19 00:41:06.996577'); -INSERT INTO dvds.payment VALUES (25088, 260, 2, 13440, 2.99, '2007-03-19 22:11:18.996577'); -INSERT INTO dvds.payment VALUES (25089, 260, 1, 13685, 3.99, '2007-03-20 07:25:37.996577'); -INSERT INTO dvds.payment VALUES (25090, 260, 1, 13966, 2.99, '2007-03-20 16:56:54.996577'); -INSERT INTO dvds.payment VALUES (25091, 260, 2, 13978, 0.99, '2007-03-20 17:31:51.996577'); -INSERT INTO dvds.payment VALUES (25092, 260, 2, 14035, 2.99, '2007-03-20 20:00:24.996577'); -INSERT INTO dvds.payment VALUES (25093, 260, 2, 14441, 2.99, '2007-03-21 10:28:04.996577'); -INSERT INTO dvds.payment VALUES (25094, 260, 1, 14579, 7.99, '2007-03-21 15:23:13.996577'); -INSERT INTO dvds.payment VALUES (25095, 260, 1, 14610, 6.99, '2007-03-21 16:27:35.996577'); -INSERT INTO dvds.payment VALUES (25096, 261, 2, 10246, 1.99, '2007-03-01 00:58:16.996577'); -INSERT INTO dvds.payment VALUES (25097, 261, 1, 11834, 1.99, '2007-03-17 11:29:06.996577'); -INSERT INTO dvds.payment VALUES (25098, 261, 2, 11928, 2.99, '2007-03-17 14:56:50.996577'); -INSERT INTO dvds.payment VALUES (25099, 261, 1, 12327, 6.99, '2007-03-18 05:11:48.996577'); -INSERT INTO dvds.payment VALUES (25100, 261, 2, 13245, 4.99, '2007-03-19 15:12:07.996577'); -INSERT INTO dvds.payment VALUES (25101, 261, 2, 13506, 5.99, '2007-03-20 00:35:32.996577'); -INSERT INTO dvds.payment VALUES (25102, 261, 1, 13669, 2.99, '2007-03-20 06:54:58.996577'); -INSERT INTO dvds.payment VALUES (25103, 261, 1, 13849, 4.99, '2007-03-20 13:11:00.996577'); -INSERT INTO dvds.payment VALUES (25104, 261, 2, 15397, 4.99, '2007-03-22 21:37:12.996577'); -INSERT INTO dvds.payment VALUES (25105, 262, 2, 10421, 0.99, '2007-03-01 06:42:36.996577'); -INSERT INTO dvds.payment VALUES (25106, 262, 2, 10770, 0.99, '2007-03-01 19:14:05.996577'); -INSERT INTO dvds.payment VALUES (25107, 262, 2, 13466, 2.99, '2007-03-19 23:23:42.996577'); -INSERT INTO dvds.payment VALUES (25108, 262, 1, 13808, 5.99, '2007-03-20 11:24:09.996577'); -INSERT INTO dvds.payment VALUES (25109, 262, 1, 14180, 4.99, '2007-03-21 01:44:41.996577'); -INSERT INTO dvds.payment VALUES (25110, 262, 2, 14465, 3.99, '2007-03-21 11:22:48.996577'); -INSERT INTO dvds.payment VALUES (25111, 262, 2, 14834, 6.99, '2007-03-22 00:14:24.996577'); -INSERT INTO dvds.payment VALUES (25112, 262, 2, 15270, 3.99, '2007-03-22 17:17:08.996577'); -INSERT INTO dvds.payment VALUES (25113, 262, 1, 15456, 0.99, '2007-03-22 23:35:27.996577'); -INSERT INTO dvds.payment VALUES (25114, 262, 1, 15640, 4.99, '2007-03-23 06:33:06.996577'); -INSERT INTO dvds.payment VALUES (25115, 262, 2, 15771, 4.99, '2007-03-23 11:47:12.996577'); -INSERT INTO dvds.payment VALUES (25116, 262, 1, 15918, 3.99, '2007-03-23 16:26:01.996577'); -INSERT INTO dvds.payment VALUES (25117, 263, 1, 10476, 6.99, '2007-03-01 08:31:46.996577'); -INSERT INTO dvds.payment VALUES (25118, 263, 1, 10775, 2.99, '2007-03-01 19:28:18.996577'); -INSERT INTO dvds.payment VALUES (25119, 263, 1, 11339, 2.99, '2007-03-02 15:30:32.996577'); -INSERT INTO dvds.payment VALUES (25120, 263, 1, 11822, 0.99, '2007-03-17 11:01:05.996577'); -INSERT INTO dvds.payment VALUES (25121, 263, 2, 12057, 9.99, '2007-03-17 19:33:01.996577'); -INSERT INTO dvds.payment VALUES (25122, 263, 2, 12432, 5.99, '2007-03-18 09:03:39.996577'); -INSERT INTO dvds.payment VALUES (25123, 263, 2, 12919, 6.99, '2007-03-19 03:00:41.996577'); -INSERT INTO dvds.payment VALUES (25124, 263, 1, 14335, 3.99, '2007-03-21 07:01:33.996577'); -INSERT INTO dvds.payment VALUES (25125, 263, 2, 14448, 6.99, '2007-03-21 10:41:36.996577'); -INSERT INTO dvds.payment VALUES (25126, 263, 1, 15322, 4.99, '2007-03-22 18:48:56.996577'); -INSERT INTO dvds.payment VALUES (25127, 263, 2, 15922, 7.99, '2007-03-23 16:35:57.996577'); -INSERT INTO dvds.payment VALUES (25128, 264, 2, 10792, 2.99, '2007-03-01 20:12:50.996577'); -INSERT INTO dvds.payment VALUES (25129, 264, 1, 11527, 3.99, '2007-03-16 22:53:32.996577'); -INSERT INTO dvds.payment VALUES (25130, 264, 2, 11533, 0.99, '2007-03-16 23:03:19.996577'); -INSERT INTO dvds.payment VALUES (25131, 264, 1, 11539, 2.99, '2007-03-16 23:14:07.996577'); -INSERT INTO dvds.payment VALUES (25132, 264, 1, 12518, 4.99, '2007-03-18 12:09:58.996577'); -INSERT INTO dvds.payment VALUES (25133, 264, 2, 13590, 2.99, '2007-03-20 04:17:25.996577'); -INSERT INTO dvds.payment VALUES (25134, 264, 1, 13664, 5.99, '2007-03-20 06:47:02.996577'); -INSERT INTO dvds.payment VALUES (25135, 264, 1, 15595, 4.99, '2007-03-23 04:47:38.996577'); -INSERT INTO dvds.payment VALUES (25136, 265, 2, 10592, 3.99, '2007-03-01 12:41:26.996577'); -INSERT INTO dvds.payment VALUES (25137, 265, 2, 11000, 3.99, '2007-03-02 03:24:40.996577'); -INSERT INTO dvds.payment VALUES (25138, 265, 1, 12207, 1.99, '2007-03-18 00:52:33.996577'); -INSERT INTO dvds.payment VALUES (25139, 265, 2, 12346, 4.99, '2007-03-18 05:46:21.996577'); -INSERT INTO dvds.payment VALUES (25140, 265, 2, 13700, 8.99, '2007-03-20 07:54:43.996577'); -INSERT INTO dvds.payment VALUES (25141, 265, 2, 14125, 4.99, '2007-03-21 00:00:42.996577'); -INSERT INTO dvds.payment VALUES (25142, 265, 1, 14547, 6.99, '2007-03-21 14:20:04.996577'); -INSERT INTO dvds.payment VALUES (25143, 265, 2, 14556, 6.99, '2007-03-21 14:31:53.996577'); -INSERT INTO dvds.payment VALUES (25144, 265, 1, 14943, 2.99, '2007-03-22 04:28:25.996577'); -INSERT INTO dvds.payment VALUES (25145, 266, 2, 10747, 4.99, '2007-03-01 18:28:07.996577'); -INSERT INTO dvds.payment VALUES (25146, 266, 2, 10910, 5.99, '2007-03-02 00:23:00.996577'); -INSERT INTO dvds.payment VALUES (25147, 266, 2, 11233, 5.99, '2007-03-02 11:34:37.996577'); -INSERT INTO dvds.payment VALUES (25148, 266, 1, 11321, 4.99, '2007-03-02 14:43:33.996577'); -INSERT INTO dvds.payment VALUES (25149, 266, 2, 11626, 0.99, '2007-03-17 02:54:08.996577'); -INSERT INTO dvds.payment VALUES (25150, 266, 1, 11726, 0.99, '2007-03-17 06:39:36.996577'); -INSERT INTO dvds.payment VALUES (25151, 266, 1, 12255, 4.99, '2007-03-18 02:35:46.996577'); -INSERT INTO dvds.payment VALUES (25152, 266, 2, 12378, 0.99, '2007-03-18 06:54:39.996577'); -INSERT INTO dvds.payment VALUES (25153, 266, 1, 12405, 6.99, '2007-03-18 08:05:56.996577'); -INSERT INTO dvds.payment VALUES (25154, 266, 1, 12715, 4.99, '2007-03-18 19:38:04.996577'); -INSERT INTO dvds.payment VALUES (25155, 266, 1, 13468, 8.99, '2007-03-19 23:25:10.996577'); -INSERT INTO dvds.payment VALUES (25156, 266, 1, 13556, 6.99, '2007-03-20 02:38:52.996577'); -INSERT INTO dvds.payment VALUES (25157, 266, 1, 14080, 1.99, '2007-03-20 21:58:16.996577'); -INSERT INTO dvds.payment VALUES (25158, 266, 1, 14492, 2.99, '2007-03-21 12:27:34.996577'); -INSERT INTO dvds.payment VALUES (25159, 266, 1, 14877, 0.99, '2007-03-22 02:08:22.996577'); -INSERT INTO dvds.payment VALUES (25160, 266, 1, 15181, 2.99, '2007-03-22 14:14:46.996577'); -INSERT INTO dvds.payment VALUES (25161, 266, 1, 15346, 4.99, '2007-03-22 19:34:26.996577'); -INSERT INTO dvds.payment VALUES (25162, 259, 2, 4591, 1.99, '2007-03-23 04:41:42.996577'); -INSERT INTO dvds.payment VALUES (25163, 267, 2, 9807, 2.99, '2007-04-30 09:42:18.996577'); -INSERT INTO dvds.payment VALUES (25164, 267, 2, 10048, 4.99, '2007-04-30 17:37:22.996577'); -INSERT INTO dvds.payment VALUES (25165, 268, 2, 3670, 4.99, '2007-04-06 07:25:09.996577'); -INSERT INTO dvds.payment VALUES (25166, 268, 2, 4626, 4.99, '2007-04-08 06:46:47.996577'); -INSERT INTO dvds.payment VALUES (25167, 268, 1, 5039, 7.99, '2007-04-09 01:43:11.996577'); -INSERT INTO dvds.payment VALUES (25168, 268, 2, 5671, 2.99, '2007-04-10 06:46:48.996577'); -INSERT INTO dvds.payment VALUES (25169, 268, 2, 5793, 2.99, '2007-04-10 13:01:26.996577'); -INSERT INTO dvds.payment VALUES (25170, 268, 2, 5888, 6.99, '2007-04-10 18:20:43.996577'); -INSERT INTO dvds.payment VALUES (25171, 268, 1, 6120, 3.99, '2007-04-11 06:18:19.996577'); -INSERT INTO dvds.payment VALUES (25172, 268, 2, 6489, 1.99, '2007-04-12 00:51:12.996577'); -INSERT INTO dvds.payment VALUES (25173, 268, 1, 8931, 2.99, '2007-04-30 00:58:33.996577'); -INSERT INTO dvds.payment VALUES (25174, 268, 2, 9436, 7.99, '2007-04-30 20:01:27.996577'); -INSERT INTO dvds.payment VALUES (25175, 268, 2, 9531, 3.99, '2007-04-30 23:40:19.996577'); -INSERT INTO dvds.payment VALUES (25176, 268, 1, 10040, 1.99, '2007-04-30 17:22:41.996577'); -INSERT INTO dvds.payment VALUES (25177, 269, 1, 4125, 9.99, '2007-04-07 05:48:55.996577'); -INSERT INTO dvds.payment VALUES (25178, 269, 2, 4804, 0.99, '2007-04-08 15:25:56.996577'); -INSERT INTO dvds.payment VALUES (25179, 269, 2, 4880, 6.99, '2007-04-08 18:04:43.996577'); -INSERT INTO dvds.payment VALUES (25180, 269, 1, 6440, 2.99, '2007-04-11 22:53:30.996577'); -INSERT INTO dvds.payment VALUES (25181, 269, 1, 6626, 5.99, '2007-04-12 07:44:50.996577'); -INSERT INTO dvds.payment VALUES (25182, 269, 2, 6804, 4.99, '2007-04-12 15:50:32.996577'); -INSERT INTO dvds.payment VALUES (25183, 269, 1, 7032, 4.99, '2007-04-27 01:31:35.996577'); -INSERT INTO dvds.payment VALUES (25184, 269, 1, 7537, 6.99, '2007-04-27 20:04:35.996577'); -INSERT INTO dvds.payment VALUES (25185, 269, 1, 7972, 2.99, '2007-04-28 12:36:12.996577'); -INSERT INTO dvds.payment VALUES (25186, 270, 1, 3501, 3.99, '2007-04-05 22:39:54.996577'); -INSERT INTO dvds.payment VALUES (25187, 270, 1, 3987, 9.99, '2007-04-06 21:56:50.996577'); -INSERT INTO dvds.payment VALUES (25188, 270, 2, 5533, 0.99, '2007-04-10 00:47:54.996577'); -INSERT INTO dvds.payment VALUES (25189, 270, 2, 6520, 4.99, '2007-04-12 02:33:42.996577'); -INSERT INTO dvds.payment VALUES (25190, 270, 1, 8355, 2.99, '2007-04-29 03:26:09.996577'); -INSERT INTO dvds.payment VALUES (25191, 270, 2, 8618, 3.99, '2007-04-29 12:16:46.996577'); -INSERT INTO dvds.payment VALUES (25192, 270, 1, 10069, 3.99, '2007-04-30 18:11:44.996577'); -INSERT INTO dvds.payment VALUES (25193, 271, 1, 3640, 1.99, '2007-04-06 05:40:52.996577'); -INSERT INTO dvds.payment VALUES (25194, 271, 2, 4545, 2.99, '2007-04-08 02:46:13.996577'); -INSERT INTO dvds.payment VALUES (25195, 271, 2, 5878, 1.99, '2007-04-10 17:38:23.996577'); -INSERT INTO dvds.payment VALUES (25196, 271, 1, 5922, 2.99, '2007-04-10 20:05:19.996577'); -INSERT INTO dvds.payment VALUES (25197, 271, 1, 6024, 2.99, '2007-04-11 00:45:13.996577'); -INSERT INTO dvds.payment VALUES (25198, 271, 1, 7618, 3.99, '2007-04-27 22:52:40.996577'); -INSERT INTO dvds.payment VALUES (25199, 271, 1, 8592, 0.99, '2007-04-29 11:02:24.996577'); -INSERT INTO dvds.payment VALUES (25200, 271, 1, 9821, 4.99, '2007-04-30 10:16:20.996577'); -INSERT INTO dvds.payment VALUES (25201, 271, 2, 10143, 7.99, '2007-04-30 20:40:09.996577'); -INSERT INTO dvds.payment VALUES (25202, 272, 2, 5047, 3.99, '2007-04-09 02:12:41.996577'); -INSERT INTO dvds.payment VALUES (25203, 272, 2, 5158, 2.99, '2007-04-09 07:21:35.996577'); -INSERT INTO dvds.payment VALUES (25204, 272, 2, 7300, 7.99, '2007-04-27 11:18:43.996577'); -INSERT INTO dvds.payment VALUES (25205, 272, 2, 7658, 2.99, '2007-04-28 00:37:38.996577'); -INSERT INTO dvds.payment VALUES (25206, 272, 1, 8248, 7.99, '2007-04-28 23:10:22.996577'); -INSERT INTO dvds.payment VALUES (25207, 272, 2, 9787, 10.99, '2007-04-30 08:54:45.996577'); -INSERT INTO dvds.payment VALUES (25208, 273, 2, 3556, 2.99, '2007-04-06 01:14:39.996577'); -INSERT INTO dvds.payment VALUES (25209, 273, 1, 4937, 5.99, '2007-04-08 20:58:25.996577'); -INSERT INTO dvds.payment VALUES (25210, 273, 1, 5256, 7.99, '2007-04-09 12:24:11.996577'); -INSERT INTO dvds.payment VALUES (25211, 273, 2, 5435, 7.99, '2007-04-09 19:56:33.996577'); -INSERT INTO dvds.payment VALUES (25212, 273, 1, 5605, 2.99, '2007-04-10 03:35:11.996577'); -INSERT INTO dvds.payment VALUES (25213, 273, 1, 6592, 8.99, '2007-04-12 05:48:01.996577'); -INSERT INTO dvds.payment VALUES (25214, 273, 1, 6635, 1.99, '2007-04-12 08:16:24.996577'); -INSERT INTO dvds.payment VALUES (25215, 273, 2, 6696, 2.99, '2007-04-12 11:12:30.996577'); -INSERT INTO dvds.payment VALUES (25216, 273, 1, 6717, 5.99, '2007-04-12 12:03:28.996577'); -INSERT INTO dvds.payment VALUES (25217, 273, 1, 8449, 2.99, '2007-04-29 06:10:51.996577'); -INSERT INTO dvds.payment VALUES (25218, 273, 1, 9186, 4.99, '2007-04-30 10:42:14.996577'); -INSERT INTO dvds.payment VALUES (25219, 273, 2, 9285, 5.99, '2007-04-30 13:54:34.996577'); -INSERT INTO dvds.payment VALUES (25220, 273, 2, 9391, 0.99, '2007-04-30 18:17:07.996577'); -INSERT INTO dvds.payment VALUES (25221, 273, 2, 9693, 3.99, '2007-04-30 05:40:16.996577'); -INSERT INTO dvds.payment VALUES (25222, 273, 2, 9729, 0.99, '2007-04-30 07:12:09.996577'); -INSERT INTO dvds.payment VALUES (25223, 274, 2, 3532, 5.99, '2007-04-05 23:53:04.996577'); -INSERT INTO dvds.payment VALUES (25224, 274, 1, 4147, 2.99, '2007-04-07 07:00:38.996577'); -INSERT INTO dvds.payment VALUES (25225, 274, 2, 4582, 2.99, '2007-04-08 04:37:35.996577'); -INSERT INTO dvds.payment VALUES (25226, 274, 2, 6389, 3.99, '2007-04-11 20:46:46.996577'); -INSERT INTO dvds.payment VALUES (25227, 274, 2, 8259, 0.99, '2007-04-28 23:33:42.996577'); -INSERT INTO dvds.payment VALUES (25228, 274, 2, 8406, 5.99, '2007-04-29 05:03:11.996577'); -INSERT INTO dvds.payment VALUES (25229, 274, 2, 8517, 7.99, '2007-04-29 08:29:14.996577'); -INSERT INTO dvds.payment VALUES (25230, 274, 1, 9331, 4.99, '2007-04-30 16:15:16.996577'); -INSERT INTO dvds.payment VALUES (25231, 274, 1, 9677, 4.99, '2007-04-30 05:08:11.996577'); -INSERT INTO dvds.payment VALUES (25232, 274, 2, 10059, 4.99, '2007-04-30 17:49:15.996577'); -INSERT INTO dvds.payment VALUES (25233, 275, 2, 4396, 0.99, '2007-04-07 19:42:45.996577'); -INSERT INTO dvds.payment VALUES (25234, 275, 1, 4634, 0.99, '2007-04-08 07:08:28.996577'); -INSERT INTO dvds.payment VALUES (25235, 275, 2, 4912, 9.99, '2007-04-08 19:54:37.996577'); -INSERT INTO dvds.payment VALUES (25236, 275, 2, 6301, 5.99, '2007-04-11 16:22:35.996577'); -INSERT INTO dvds.payment VALUES (25237, 275, 2, 6856, 0.99, '2007-04-12 18:18:42.996577'); -INSERT INTO dvds.payment VALUES (25238, 275, 1, 7553, 2.99, '2007-04-27 20:40:02.996577'); -INSERT INTO dvds.payment VALUES (25239, 275, 2, 7596, 4.99, '2007-04-27 22:02:23.996577'); -INSERT INTO dvds.payment VALUES (25240, 275, 1, 8746, 2.99, '2007-04-29 17:31:41.996577'); -INSERT INTO dvds.payment VALUES (25241, 275, 2, 9258, 2.99, '2007-04-30 12:59:57.996577'); -INSERT INTO dvds.payment VALUES (25242, 276, 2, 3714, 2.99, '2007-04-06 09:19:54.996577'); -INSERT INTO dvds.payment VALUES (25243, 276, 1, 4715, 0.99, '2007-04-08 10:44:03.996577'); -INSERT INTO dvds.payment VALUES (25244, 276, 2, 5186, 4.99, '2007-04-09 08:47:06.996577'); -INSERT INTO dvds.payment VALUES (25245, 276, 2, 5246, 4.99, '2007-04-09 11:53:44.996577'); -INSERT INTO dvds.payment VALUES (25246, 276, 2, 7282, 5.99, '2007-04-27 10:28:45.996577'); -INSERT INTO dvds.payment VALUES (25247, 276, 2, 7842, 2.99, '2007-04-28 07:38:32.996577'); -INSERT INTO dvds.payment VALUES (25248, 276, 1, 9070, 0.99, '2007-04-30 06:09:05.996577'); -INSERT INTO dvds.payment VALUES (25249, 276, 1, 9080, 1.99, '2007-04-30 06:31:05.996577'); -INSERT INTO dvds.payment VALUES (25250, 276, 1, 9102, 4.99, '2007-04-30 07:16:46.996577'); -INSERT INTO dvds.payment VALUES (25251, 276, 1, 9229, 8.99, '2007-04-30 12:06:43.996577'); -INSERT INTO dvds.payment VALUES (25252, 276, 2, 10149, 5.99, '2007-04-30 20:49:12.996577'); -INSERT INTO dvds.payment VALUES (25253, 277, 2, 3740, 5.99, '2007-04-06 10:24:01.996577'); -INSERT INTO dvds.payment VALUES (25254, 277, 2, 3897, 2.99, '2007-04-06 17:40:09.996577'); -INSERT INTO dvds.payment VALUES (25255, 277, 1, 4290, 4.99, '2007-04-07 14:15:36.996577'); -INSERT INTO dvds.payment VALUES (25256, 277, 2, 4987, 5.99, '2007-04-08 23:14:07.996577'); -INSERT INTO dvds.payment VALUES (25257, 277, 1, 5861, 0.99, '2007-04-10 16:42:48.996577'); -INSERT INTO dvds.payment VALUES (25258, 277, 1, 5913, 2.99, '2007-04-10 19:27:21.996577'); -INSERT INTO dvds.payment VALUES (25259, 277, 2, 6455, 2.99, '2007-04-11 23:30:24.996577'); -INSERT INTO dvds.payment VALUES (25260, 277, 1, 6487, 5.99, '2007-04-12 00:45:26.996577'); -INSERT INTO dvds.payment VALUES (25261, 277, 2, 7423, 4.99, '2007-04-27 15:40:13.996577'); -INSERT INTO dvds.payment VALUES (25262, 277, 2, 8410, 2.99, '2007-04-29 05:10:02.996577'); -INSERT INTO dvds.payment VALUES (25263, 277, 2, 9669, 4.99, '2007-04-30 05:00:02.996577'); -INSERT INTO dvds.payment VALUES (25264, 277, 1, 9901, 0.99, '2007-04-30 12:49:25.996577'); -INSERT INTO dvds.payment VALUES (25265, 278, 1, 3776, 2.99, '2007-04-06 12:00:03.996577'); -INSERT INTO dvds.payment VALUES (25266, 278, 1, 4430, 4.99, '2007-04-07 21:03:50.996577'); -INSERT INTO dvds.payment VALUES (25267, 278, 2, 4866, 8.99, '2007-04-08 17:38:25.996577'); -INSERT INTO dvds.payment VALUES (25268, 278, 2, 6869, 4.99, '2007-04-12 18:40:32.996577'); -INSERT INTO dvds.payment VALUES (25269, 278, 1, 7239, 0.99, '2007-04-27 08:48:53.996577'); -INSERT INTO dvds.payment VALUES (25270, 278, 2, 7834, 0.99, '2007-04-28 07:15:09.996577'); -INSERT INTO dvds.payment VALUES (25271, 278, 2, 8222, 5.99, '2007-04-28 22:20:19.996577'); -INSERT INTO dvds.payment VALUES (25272, 278, 1, 8953, 4.99, '2007-04-30 01:49:31.996577'); -INSERT INTO dvds.payment VALUES (25273, 278, 2, 9448, 2.99, '2007-04-30 20:24:39.996577'); -INSERT INTO dvds.payment VALUES (25274, 279, 1, 4476, 4.99, '2007-04-07 23:02:51.996577'); -INSERT INTO dvds.payment VALUES (25275, 279, 1, 4978, 7.99, '2007-04-08 22:50:28.996577'); -INSERT INTO dvds.payment VALUES (25276, 279, 2, 5248, 2.99, '2007-04-09 11:58:10.996577'); -INSERT INTO dvds.payment VALUES (25277, 279, 1, 5361, 9.99, '2007-04-09 16:43:58.996577'); -INSERT INTO dvds.payment VALUES (25278, 279, 1, 6176, 0.99, '2007-04-11 09:16:47.996577'); -INSERT INTO dvds.payment VALUES (25279, 279, 1, 7947, 2.99, '2007-04-28 11:34:16.996577'); -INSERT INTO dvds.payment VALUES (25280, 279, 2, 8559, 3.99, '2007-04-29 09:54:20.996577'); -INSERT INTO dvds.payment VALUES (25281, 279, 2, 9820, 5.99, '2007-04-30 10:15:23.996577'); -INSERT INTO dvds.payment VALUES (25282, 279, 2, 10177, 2.99, '2007-04-30 22:10:59.996577'); -INSERT INTO dvds.payment VALUES (25283, 280, 1, 4616, 4.99, '2007-04-08 06:16:38.996577'); -INSERT INTO dvds.payment VALUES (25284, 280, 2, 6851, 0.99, '2007-04-12 18:00:40.996577'); -INSERT INTO dvds.payment VALUES (25285, 280, 1, 7070, 4.99, '2007-04-27 02:29:34.996577'); -INSERT INTO dvds.payment VALUES (25286, 280, 2, 7901, 0.99, '2007-04-28 09:40:38.996577'); -INSERT INTO dvds.payment VALUES (25287, 280, 2, 8319, 0.99, '2007-04-29 02:13:18.996577'); -INSERT INTO dvds.payment VALUES (25288, 280, 1, 8365, 0.99, '2007-04-29 03:39:26.996577'); -INSERT INTO dvds.payment VALUES (25289, 280, 1, 8565, 7.99, '2007-04-29 10:03:49.996577'); -INSERT INTO dvds.payment VALUES (25290, 280, 2, 8695, 6.99, '2007-04-29 15:13:21.996577'); -INSERT INTO dvds.payment VALUES (25291, 280, 2, 8744, 3.99, '2007-04-29 17:26:50.996577'); -INSERT INTO dvds.payment VALUES (25292, 280, 1, 8912, 0.99, '2007-04-29 23:59:51.996577'); -INSERT INTO dvds.payment VALUES (25293, 280, 2, 9103, 0.99, '2007-04-30 07:17:52.996577'); -INSERT INTO dvds.payment VALUES (25294, 281, 1, 4607, 0.99, '2007-04-08 05:43:40.996577'); -INSERT INTO dvds.payment VALUES (25295, 281, 2, 4864, 6.99, '2007-04-08 17:34:00.996577'); -INSERT INTO dvds.payment VALUES (25296, 281, 2, 5410, 5.99, '2007-04-09 18:49:36.996577'); -INSERT INTO dvds.payment VALUES (25297, 281, 2, 6825, 0.99, '2007-04-12 16:56:38.996577'); -INSERT INTO dvds.payment VALUES (25298, 281, 2, 7034, 2.99, '2007-04-27 01:32:03.996577'); -INSERT INTO dvds.payment VALUES (25299, 281, 1, 7525, 3.99, '2007-04-27 19:41:54.996577'); -INSERT INTO dvds.payment VALUES (25300, 281, 2, 8131, 0.99, '2007-04-28 18:23:47.996577'); -INSERT INTO dvds.payment VALUES (25301, 281, 2, 8180, 4.99, '2007-04-28 20:33:50.996577'); -INSERT INTO dvds.payment VALUES (25302, 282, 2, 3675, 2.99, '2007-04-06 07:37:45.996577'); -INSERT INTO dvds.payment VALUES (25303, 282, 1, 3885, 2.99, '2007-04-06 17:12:09.996577'); -INSERT INTO dvds.payment VALUES (25304, 282, 1, 4359, 2.99, '2007-04-07 17:58:46.996577'); -INSERT INTO dvds.payment VALUES (25305, 282, 2, 4412, 4.99, '2007-04-07 20:25:19.996577'); -INSERT INTO dvds.payment VALUES (25306, 282, 1, 5113, 0.99, '2007-04-09 05:34:44.996577'); -INSERT INTO dvds.payment VALUES (25307, 282, 2, 5319, 8.99, '2007-04-09 14:46:10.996577'); -INSERT INTO dvds.payment VALUES (25308, 282, 1, 5926, 6.99, '2007-04-10 20:22:08.996577'); -INSERT INTO dvds.payment VALUES (25309, 282, 1, 7433, 2.99, '2007-04-27 16:00:46.996577'); -INSERT INTO dvds.payment VALUES (25310, 282, 2, 7534, 3.99, '2007-04-27 19:54:43.996577'); -INSERT INTO dvds.payment VALUES (25311, 282, 1, 8223, 6.99, '2007-04-28 22:24:27.996577'); -INSERT INTO dvds.payment VALUES (25312, 282, 2, 8270, 4.99, '2007-04-28 23:55:48.996577'); -INSERT INTO dvds.payment VALUES (25313, 282, 2, 8468, 1.99, '2007-04-29 06:54:30.996577'); -INSERT INTO dvds.payment VALUES (25314, 282, 2, 8743, 0.99, '2007-04-29 17:25:27.996577'); -INSERT INTO dvds.payment VALUES (25315, 282, 2, 8973, 1.99, '2007-04-30 02:37:39.996577'); -INSERT INTO dvds.payment VALUES (25316, 282, 2, 9658, 9.99, '2007-04-30 04:29:18.996577'); -INSERT INTO dvds.payment VALUES (25317, 283, 1, 3534, 4.99, '2007-04-06 00:00:53.996577'); -INSERT INTO dvds.payment VALUES (25318, 283, 1, 3568, 6.99, '2007-04-06 01:40:23.996577'); -INSERT INTO dvds.payment VALUES (25319, 283, 2, 3590, 4.99, '2007-04-06 03:03:38.996577'); -INSERT INTO dvds.payment VALUES (25320, 283, 2, 3672, 0.99, '2007-04-06 07:30:22.996577'); -INSERT INTO dvds.payment VALUES (25321, 283, 2, 4683, 2.99, '2007-04-08 09:06:54.996577'); -INSERT INTO dvds.payment VALUES (25322, 283, 2, 4876, 1.99, '2007-04-08 17:56:16.996577'); -INSERT INTO dvds.payment VALUES (25323, 283, 2, 5989, 2.99, '2007-04-10 23:26:19.996577'); -INSERT INTO dvds.payment VALUES (25324, 283, 1, 6075, 0.99, '2007-04-11 03:31:29.996577'); -INSERT INTO dvds.payment VALUES (25325, 283, 1, 6300, 1.99, '2007-04-11 16:18:35.996577'); -INSERT INTO dvds.payment VALUES (25326, 283, 2, 6313, 0.99, '2007-04-11 16:58:18.996577'); -INSERT INTO dvds.payment VALUES (25327, 283, 1, 6827, 4.99, '2007-04-12 17:02:11.996577'); -INSERT INTO dvds.payment VALUES (25328, 283, 1, 7504, 0.99, '2007-04-27 18:52:57.996577'); -INSERT INTO dvds.payment VALUES (25329, 283, 1, 7816, 0.99, '2007-04-28 06:42:38.996577'); -INSERT INTO dvds.payment VALUES (25330, 283, 2, 9353, 4.99, '2007-04-30 16:59:03.996577'); -INSERT INTO dvds.payment VALUES (25331, 283, 2, 9478, 2.99, '2007-04-30 21:41:19.996577'); -INSERT INTO dvds.payment VALUES (25332, 283, 2, 9572, 2.99, '2007-04-30 01:12:36.996577'); -INSERT INTO dvds.payment VALUES (25333, 283, 2, 9918, 2.99, '2007-04-30 13:23:48.996577'); -INSERT INTO dvds.payment VALUES (25334, 284, 1, 3572, 0.99, '2007-04-06 02:01:49.996577'); -INSERT INTO dvds.payment VALUES (25335, 284, 2, 4081, 2.99, '2007-04-07 03:38:34.996577'); -INSERT INTO dvds.payment VALUES (25336, 284, 1, 4759, 7.99, '2007-04-08 13:07:48.996577'); -INSERT INTO dvds.payment VALUES (25337, 284, 2, 4931, 7.99, '2007-04-08 20:44:44.996577'); -INSERT INTO dvds.payment VALUES (25338, 284, 1, 5161, 6.99, '2007-04-09 07:26:22.996577'); -INSERT INTO dvds.payment VALUES (25339, 284, 1, 6276, 5.99, '2007-04-11 14:44:16.996577'); -INSERT INTO dvds.payment VALUES (25340, 284, 2, 6982, 2.99, '2007-04-26 23:22:07.996577'); -INSERT INTO dvds.payment VALUES (25341, 284, 1, 7164, 6.99, '2007-04-27 06:05:00.996577'); -INSERT INTO dvds.payment VALUES (25342, 284, 1, 7463, 4.99, '2007-04-27 17:16:58.996577'); -INSERT INTO dvds.payment VALUES (25343, 284, 2, 7716, 8.99, '2007-04-28 03:01:41.996577'); -INSERT INTO dvds.payment VALUES (25344, 284, 1, 8888, 2.99, '2007-04-29 23:08:02.996577'); -INSERT INTO dvds.payment VALUES (25345, 284, 1, 9790, 0.99, '2007-04-30 09:02:34.996577'); -INSERT INTO dvds.payment VALUES (25346, 285, 2, 4007, 6.99, '2007-04-06 22:54:31.996577'); -INSERT INTO dvds.payment VALUES (25347, 285, 2, 5112, 2.99, '2007-04-09 05:32:30.996577'); -INSERT INTO dvds.payment VALUES (25348, 285, 1, 5683, 9.99, '2007-04-10 07:20:39.996577'); -INSERT INTO dvds.payment VALUES (25349, 285, 1, 6010, 0.99, '2007-04-11 00:20:54.996577'); -INSERT INTO dvds.payment VALUES (25350, 285, 2, 6083, 3.99, '2007-04-11 03:41:15.996577'); -INSERT INTO dvds.payment VALUES (25351, 285, 1, 6094, 4.99, '2007-04-11 04:23:08.996577'); -INSERT INTO dvds.payment VALUES (25352, 285, 2, 6333, 4.99, '2007-04-11 17:48:42.996577'); -INSERT INTO dvds.payment VALUES (25353, 285, 2, 6644, 0.99, '2007-04-12 09:08:05.996577'); -INSERT INTO dvds.payment VALUES (25354, 285, 1, 7211, 6.99, '2007-04-27 07:48:26.996577'); -INSERT INTO dvds.payment VALUES (25355, 285, 1, 7452, 9.99, '2007-04-27 16:55:05.996577'); -INSERT INTO dvds.payment VALUES (25356, 285, 1, 7745, 9.99, '2007-04-28 04:14:54.996577'); -INSERT INTO dvds.payment VALUES (25357, 285, 1, 8154, 4.99, '2007-04-28 19:24:44.996577'); -INSERT INTO dvds.payment VALUES (25358, 285, 2, 8466, 0.99, '2007-04-29 06:53:13.996577'); -INSERT INTO dvds.payment VALUES (25359, 286, 2, 3592, 4.99, '2007-04-06 03:07:16.996577'); -INSERT INTO dvds.payment VALUES (25360, 286, 2, 3692, 3.99, '2007-04-06 08:22:38.996577'); -INSERT INTO dvds.payment VALUES (25361, 286, 2, 4242, 6.99, '2007-04-07 12:07:27.996577'); -INSERT INTO dvds.payment VALUES (25362, 286, 2, 4461, 9.99, '2007-04-07 22:28:09.996577'); -INSERT INTO dvds.payment VALUES (25363, 286, 1, 4707, 4.99, '2007-04-08 10:25:54.996577'); -INSERT INTO dvds.payment VALUES (25364, 286, 1, 4894, 2.99, '2007-04-08 18:49:57.996577'); -INSERT INTO dvds.payment VALUES (25365, 286, 1, 5796, 4.99, '2007-04-10 13:11:20.996577'); -INSERT INTO dvds.payment VALUES (25366, 286, 2, 6611, 2.99, '2007-04-12 06:48:49.996577'); -INSERT INTO dvds.payment VALUES (25367, 286, 1, 7254, 2.99, '2007-04-27 09:17:16.996577'); -INSERT INTO dvds.payment VALUES (25368, 286, 1, 7299, 2.99, '2007-04-27 11:18:22.996577'); -INSERT INTO dvds.payment VALUES (25369, 286, 1, 7368, 0.99, '2007-04-27 13:34:31.996577'); -INSERT INTO dvds.payment VALUES (25370, 286, 1, 7422, 2.99, '2007-04-27 15:39:08.996577'); -INSERT INTO dvds.payment VALUES (25371, 286, 1, 7719, 6.99, '2007-04-28 03:07:35.996577'); -INSERT INTO dvds.payment VALUES (25372, 286, 2, 8399, 0.99, '2007-04-29 04:48:44.996577'); -INSERT INTO dvds.payment VALUES (25373, 286, 2, 9280, 6.99, '2007-04-30 13:44:04.996577'); -INSERT INTO dvds.payment VALUES (25374, 286, 1, 9809, 3.99, '2007-04-30 09:47:47.996577'); -INSERT INTO dvds.payment VALUES (25375, 286, 2, 10105, 5.99, '2007-04-30 19:22:46.996577'); -INSERT INTO dvds.payment VALUES (25376, 287, 2, 4877, 4.99, '2007-04-08 17:59:28.996577'); -INSERT INTO dvds.payment VALUES (25377, 287, 2, 5346, 1.99, '2007-04-09 15:57:27.996577'); -INSERT INTO dvds.payment VALUES (25378, 287, 1, 5593, 3.99, '2007-04-10 03:01:39.996577'); -INSERT INTO dvds.payment VALUES (25379, 287, 2, 5761, 0.99, '2007-04-10 11:14:02.996577'); -INSERT INTO dvds.payment VALUES (25380, 287, 2, 6379, 3.99, '2007-04-11 20:19:51.996577'); -INSERT INTO dvds.payment VALUES (25381, 287, 1, 6397, 2.99, '2007-04-11 21:02:28.996577'); -INSERT INTO dvds.payment VALUES (25382, 287, 2, 7402, 2.99, '2007-04-27 14:48:06.996577'); -INSERT INTO dvds.payment VALUES (25383, 287, 2, 7777, 2.99, '2007-04-28 05:33:08.996577'); -INSERT INTO dvds.payment VALUES (25384, 287, 2, 8994, 6.99, '2007-04-30 03:19:58.996577'); -INSERT INTO dvds.payment VALUES (25385, 287, 2, 9716, 1.99, '2007-04-30 06:52:19.996577'); -INSERT INTO dvds.payment VALUES (25386, 287, 1, 10027, 6.99, '2007-04-30 17:02:17.996577'); -INSERT INTO dvds.payment VALUES (25387, 288, 1, 3958, 3.99, '2007-04-06 20:35:59.996577'); -INSERT INTO dvds.payment VALUES (25388, 288, 1, 4692, 2.99, '2007-04-08 09:35:32.996577'); -INSERT INTO dvds.payment VALUES (25389, 288, 2, 4758, 0.99, '2007-04-08 13:06:28.996577'); -INSERT INTO dvds.payment VALUES (25390, 288, 1, 6399, 2.99, '2007-04-11 21:07:31.996577'); -INSERT INTO dvds.payment VALUES (25391, 288, 2, 6518, 3.99, '2007-04-12 02:28:08.996577'); -INSERT INTO dvds.payment VALUES (25392, 288, 2, 7744, 0.99, '2007-04-28 04:06:46.996577'); -INSERT INTO dvds.payment VALUES (25393, 288, 2, 7855, 2.99, '2007-04-28 08:11:28.996577'); -INSERT INTO dvds.payment VALUES (25394, 288, 2, 9429, 2.99, '2007-04-30 19:47:52.996577'); -INSERT INTO dvds.payment VALUES (25395, 288, 1, 9732, 0.99, '2007-04-30 07:24:34.996577'); -INSERT INTO dvds.payment VALUES (25396, 289, 1, 3588, 2.99, '2007-04-06 02:57:39.996577'); -INSERT INTO dvds.payment VALUES (25397, 289, 2, 4622, 0.99, '2007-04-08 06:31:08.996577'); -INSERT INTO dvds.payment VALUES (25398, 289, 1, 5089, 4.99, '2007-04-09 04:14:06.996577'); -INSERT INTO dvds.payment VALUES (25399, 289, 2, 5342, 8.99, '2007-04-09 15:48:29.996577'); -INSERT INTO dvds.payment VALUES (25400, 289, 2, 5584, 4.99, '2007-04-10 02:43:51.996577'); -INSERT INTO dvds.payment VALUES (25401, 289, 2, 5724, 0.99, '2007-04-10 09:46:38.996577'); -INSERT INTO dvds.payment VALUES (25402, 289, 2, 6007, 3.99, '2007-04-11 00:11:32.996577'); -INSERT INTO dvds.payment VALUES (25403, 289, 2, 6536, 7.99, '2007-04-12 03:12:51.996577'); -INSERT INTO dvds.payment VALUES (25404, 289, 1, 7151, 4.99, '2007-04-27 05:42:57.996577'); -INSERT INTO dvds.payment VALUES (25405, 289, 1, 7162, 4.99, '2007-04-27 06:01:11.996577'); -INSERT INTO dvds.payment VALUES (25406, 289, 2, 7325, 0.99, '2007-04-27 12:15:21.996577'); -INSERT INTO dvds.payment VALUES (25407, 289, 1, 9498, 2.99, '2007-04-30 22:25:21.996577'); -INSERT INTO dvds.payment VALUES (25408, 290, 2, 4039, 4.99, '2007-04-07 01:26:25.996577'); -INSERT INTO dvds.payment VALUES (25409, 290, 1, 4073, 0.99, '2007-04-07 03:17:39.996577'); -INSERT INTO dvds.payment VALUES (25410, 290, 2, 4416, 0.99, '2007-04-07 20:33:02.996577'); -INSERT INTO dvds.payment VALUES (25411, 290, 1, 5105, 2.99, '2007-04-09 05:07:25.996577'); -INSERT INTO dvds.payment VALUES (25412, 290, 2, 5214, 5.99, '2007-04-09 10:11:34.996577'); -INSERT INTO dvds.payment VALUES (25413, 290, 2, 5827, 2.99, '2007-04-10 14:50:46.996577'); -INSERT INTO dvds.payment VALUES (25414, 290, 2, 6816, 4.99, '2007-04-12 16:47:16.996577'); -INSERT INTO dvds.payment VALUES (25415, 290, 1, 6952, 4.99, '2007-04-26 22:19:53.996577'); -INSERT INTO dvds.payment VALUES (25416, 290, 2, 7265, 2.99, '2007-04-27 09:47:27.996577'); -INSERT INTO dvds.payment VALUES (25417, 290, 1, 7650, 1.99, '2007-04-28 00:15:46.996577'); -INSERT INTO dvds.payment VALUES (25418, 290, 1, 8639, 4.99, '2007-04-29 12:58:57.996577'); -INSERT INTO dvds.payment VALUES (25419, 290, 1, 9000, 7.99, '2007-04-30 03:27:21.996577'); -INSERT INTO dvds.payment VALUES (25420, 290, 1, 9413, 0.99, '2007-04-30 19:13:05.996577'); -INSERT INTO dvds.payment VALUES (25421, 290, 2, 10096, 3.99, '2007-04-30 19:07:24.996577'); -INSERT INTO dvds.payment VALUES (25422, 290, 1, 10194, 1.99, '2007-04-30 23:02:18.996577'); -INSERT INTO dvds.payment VALUES (25423, 291, 2, 3512, 4.99, '2007-04-05 23:11:32.996577'); -INSERT INTO dvds.payment VALUES (25424, 291, 2, 4862, 3.99, '2007-04-08 17:31:12.996577'); -INSERT INTO dvds.payment VALUES (25425, 291, 2, 5754, 2.99, '2007-04-10 11:01:09.996577'); -INSERT INTO dvds.payment VALUES (25426, 291, 2, 6516, 4.99, '2007-04-12 02:20:20.996577'); -INSERT INTO dvds.payment VALUES (25427, 291, 1, 6796, 2.99, '2007-04-12 15:12:42.996577'); -INSERT INTO dvds.payment VALUES (25428, 291, 1, 7561, 5.99, '2007-04-27 20:49:31.996577'); -INSERT INTO dvds.payment VALUES (25429, 291, 2, 7564, 0.99, '2007-04-27 20:59:43.996577'); -INSERT INTO dvds.payment VALUES (25430, 291, 1, 8690, 0.99, '2007-04-29 15:07:54.996577'); -INSERT INTO dvds.payment VALUES (25431, 291, 2, 8697, 4.99, '2007-04-29 15:14:33.996577'); -INSERT INTO dvds.payment VALUES (25432, 291, 1, 9165, 5.99, '2007-04-30 09:52:54.996577'); -INSERT INTO dvds.payment VALUES (25433, 291, 2, 9201, 5.99, '2007-04-30 11:10:47.996577'); -INSERT INTO dvds.payment VALUES (25434, 291, 2, 9919, 7.99, '2007-04-30 13:24:12.996577'); -INSERT INTO dvds.payment VALUES (25435, 292, 2, 3557, 0.99, '2007-04-06 01:17:05.996577'); -INSERT INTO dvds.payment VALUES (25436, 292, 1, 4200, 4.99, '2007-04-07 09:43:37.996577'); -INSERT INTO dvds.payment VALUES (25437, 292, 2, 5095, 4.99, '2007-04-09 04:36:48.996577'); -INSERT INTO dvds.payment VALUES (25438, 292, 2, 5257, 0.99, '2007-04-09 12:25:09.996577'); -INSERT INTO dvds.payment VALUES (25439, 292, 1, 5940, 4.99, '2007-04-10 20:59:27.996577'); -INSERT INTO dvds.payment VALUES (25440, 292, 1, 6270, 8.99, '2007-04-11 14:27:36.996577'); -INSERT INTO dvds.payment VALUES (25441, 292, 1, 6900, 6.99, '2007-04-12 20:13:51.996577'); -INSERT INTO dvds.payment VALUES (25442, 292, 2, 7199, 5.99, '2007-04-27 07:21:49.996577'); -INSERT INTO dvds.payment VALUES (25443, 292, 1, 7216, 2.99, '2007-04-27 07:56:11.996577'); -INSERT INTO dvds.payment VALUES (25444, 292, 1, 7545, 2.99, '2007-04-27 20:16:29.996577'); -INSERT INTO dvds.payment VALUES (25445, 292, 1, 7766, 4.99, '2007-04-28 05:10:23.996577'); -INSERT INTO dvds.payment VALUES (25446, 292, 1, 8047, 2.99, '2007-04-28 15:18:09.996577'); -INSERT INTO dvds.payment VALUES (25447, 292, 2, 8842, 4.99, '2007-04-29 21:32:06.996577'); -INSERT INTO dvds.payment VALUES (25448, 292, 1, 8990, 8.99, '2007-04-30 03:10:08.996577'); -INSERT INTO dvds.payment VALUES (25449, 292, 1, 9792, 5.99, '2007-04-30 09:12:07.996577'); -INSERT INTO dvds.payment VALUES (25450, 292, 2, 9819, 1.99, '2007-04-30 10:07:39.996577'); -INSERT INTO dvds.payment VALUES (25451, 293, 1, 3906, 3.99, '2007-04-06 18:04:21.996577'); -INSERT INTO dvds.payment VALUES (25452, 293, 2, 4343, 0.99, '2007-04-07 17:17:20.996577'); -INSERT INTO dvds.payment VALUES (25453, 293, 2, 4542, 4.99, '2007-04-08 02:34:56.996577'); -INSERT INTO dvds.payment VALUES (25454, 293, 2, 4944, 6.99, '2007-04-08 21:12:54.996577'); -INSERT INTO dvds.payment VALUES (25455, 293, 2, 5765, 3.99, '2007-04-10 11:31:28.996577'); -INSERT INTO dvds.payment VALUES (25456, 293, 1, 6432, 9.99, '2007-04-11 22:38:07.996577'); -INSERT INTO dvds.payment VALUES (25457, 293, 2, 7607, 4.99, '2007-04-27 22:34:19.996577'); -INSERT INTO dvds.payment VALUES (25458, 293, 1, 8589, 4.99, '2007-04-29 10:56:43.996577'); -INSERT INTO dvds.payment VALUES (25459, 293, 1, 8745, 2.99, '2007-04-29 17:31:31.996577'); -INSERT INTO dvds.payment VALUES (25460, 293, 2, 9123, 2.99, '2007-04-30 08:07:41.996577'); -INSERT INTO dvds.payment VALUES (25461, 294, 1, 3681, 4.99, '2007-04-06 07:47:56.996577'); -INSERT INTO dvds.payment VALUES (25462, 294, 2, 4019, 4.99, '2007-04-06 23:56:10.996577'); -INSERT INTO dvds.payment VALUES (25463, 294, 1, 4786, 7.99, '2007-04-08 14:41:31.996577'); -INSERT INTO dvds.payment VALUES (25464, 294, 2, 6185, 5.99, '2007-04-11 09:53:35.996577'); -INSERT INTO dvds.payment VALUES (25465, 294, 2, 7415, 6.99, '2007-04-27 15:19:25.996577'); -INSERT INTO dvds.payment VALUES (25466, 294, 1, 7765, 4.99, '2007-04-28 05:08:59.996577'); -INSERT INTO dvds.payment VALUES (25467, 294, 2, 8843, 4.99, '2007-04-29 21:32:51.996577'); -INSERT INTO dvds.payment VALUES (25468, 294, 2, 9194, 2.99, '2007-04-30 10:57:11.996577'); -INSERT INTO dvds.payment VALUES (25469, 294, 1, 9522, 2.99, '2007-04-30 23:23:37.996577'); -INSERT INTO dvds.payment VALUES (25470, 294, 2, 9607, 0.99, '2007-04-30 02:19:32.996577'); -INSERT INTO dvds.payment VALUES (25471, 294, 2, 10186, 0.99, '2007-04-30 22:41:02.996577'); -INSERT INTO dvds.payment VALUES (25472, 294, 2, 10220, 4.99, '2007-04-30 23:41:48.996577'); -INSERT INTO dvds.payment VALUES (25473, 295, 2, 3496, 1.99, '2007-04-05 22:27:41.996577'); -INSERT INTO dvds.payment VALUES (25474, 295, 1, 3876, 9.99, '2007-04-06 16:49:39.996577'); -INSERT INTO dvds.payment VALUES (25475, 295, 1, 4164, 1.99, '2007-04-07 07:48:37.996577'); -INSERT INTO dvds.payment VALUES (25476, 295, 1, 4432, 1.99, '2007-04-07 21:08:28.996577'); -INSERT INTO dvds.payment VALUES (25477, 295, 1, 5019, 2.99, '2007-04-09 00:32:58.996577'); -INSERT INTO dvds.payment VALUES (25478, 295, 2, 5053, 4.99, '2007-04-09 02:28:12.996577'); -INSERT INTO dvds.payment VALUES (25479, 295, 2, 5283, 2.99, '2007-04-09 13:35:43.996577'); -INSERT INTO dvds.payment VALUES (25480, 295, 2, 5994, 4.99, '2007-04-10 23:42:36.996577'); -INSERT INTO dvds.payment VALUES (25481, 295, 1, 6252, 2.99, '2007-04-11 13:34:55.996577'); -INSERT INTO dvds.payment VALUES (25482, 295, 2, 6331, 3.99, '2007-04-11 17:45:47.996577'); -INSERT INTO dvds.payment VALUES (25483, 295, 2, 8087, 0.99, '2007-04-28 16:49:42.996577'); -INSERT INTO dvds.payment VALUES (25484, 295, 1, 8108, 7.99, '2007-04-28 17:36:04.996577'); -INSERT INTO dvds.payment VALUES (25485, 295, 1, 8840, 9.99, '2007-04-29 21:24:04.996577'); -INSERT INTO dvds.payment VALUES (25486, 295, 2, 8932, 2.99, '2007-04-30 00:59:52.996577'); -INSERT INTO dvds.payment VALUES (25487, 295, 1, 9425, 7.99, '2007-04-30 19:39:47.996577'); -INSERT INTO dvds.payment VALUES (25488, 295, 2, 9692, 8.99, '2007-04-30 05:39:30.996577'); -INSERT INTO dvds.payment VALUES (25489, 295, 2, 9793, 4.99, '2007-04-30 09:13:37.996577'); -INSERT INTO dvds.payment VALUES (25490, 295, 2, 10160, 4.99, '2007-04-30 21:36:06.996577'); -INSERT INTO dvds.payment VALUES (25491, 295, 2, 10222, 0.99, '2007-04-30 23:46:08.996577'); -INSERT INTO dvds.payment VALUES (25492, 296, 2, 3486, 7.99, '2007-04-05 21:58:21.996577'); -INSERT INTO dvds.payment VALUES (25493, 296, 1, 3810, 2.99, '2007-04-06 13:47:10.996577'); -INSERT INTO dvds.payment VALUES (25494, 296, 1, 4480, 4.99, '2007-04-07 23:24:56.996577'); -INSERT INTO dvds.payment VALUES (25495, 296, 2, 5090, 0.99, '2007-04-09 04:16:48.996577'); -INSERT INTO dvds.payment VALUES (25496, 296, 1, 5589, 4.99, '2007-04-10 02:51:24.996577'); -INSERT INTO dvds.payment VALUES (25497, 296, 2, 6016, 4.99, '2007-04-11 00:33:11.996577'); -INSERT INTO dvds.payment VALUES (25498, 296, 1, 6398, 5.99, '2007-04-11 21:03:15.996577'); -INSERT INTO dvds.payment VALUES (25499, 296, 1, 6967, 6.99, '2007-04-26 22:44:57.996577'); -INSERT INTO dvds.payment VALUES (25500, 296, 2, 7568, 4.99, '2007-04-27 21:07:19.996577'); -INSERT INTO dvds.payment VALUES (25501, 296, 2, 8171, 0.99, '2007-04-28 20:01:23.996577'); -INSERT INTO dvds.payment VALUES (25502, 296, 1, 9249, 5.99, '2007-04-30 12:43:28.996577'); -INSERT INTO dvds.payment VALUES (25503, 296, 1, 9304, 2.99, '2007-04-30 15:10:00.996577'); -INSERT INTO dvds.payment VALUES (25504, 297, 1, 3582, 0.99, '2007-04-06 02:39:01.996577'); -INSERT INTO dvds.payment VALUES (25505, 297, 2, 4621, 2.99, '2007-04-08 06:30:44.996577'); -INSERT INTO dvds.payment VALUES (25506, 297, 1, 4929, 5.99, '2007-04-08 20:34:44.996577'); -INSERT INTO dvds.payment VALUES (25507, 297, 1, 5743, 8.99, '2007-04-10 10:26:04.996577'); -INSERT INTO dvds.payment VALUES (25508, 297, 2, 6036, 2.99, '2007-04-11 01:30:54.996577'); -INSERT INTO dvds.payment VALUES (25509, 297, 1, 6064, 6.99, '2007-04-11 02:51:44.996577'); -INSERT INTO dvds.payment VALUES (25510, 297, 1, 6156, 4.99, '2007-04-11 08:14:14.996577'); -INSERT INTO dvds.payment VALUES (25511, 297, 1, 6984, 2.99, '2007-04-26 23:24:56.996577'); -INSERT INTO dvds.payment VALUES (25512, 297, 2, 7867, 0.99, '2007-04-28 08:37:20.996577'); -INSERT INTO dvds.payment VALUES (25513, 297, 1, 7933, 0.99, '2007-04-28 10:55:53.996577'); -INSERT INTO dvds.payment VALUES (25514, 297, 2, 9014, 2.99, '2007-04-30 03:47:53.996577'); -INSERT INTO dvds.payment VALUES (25515, 297, 2, 9674, 5.99, '2007-04-30 05:05:19.996577'); -INSERT INTO dvds.payment VALUES (25516, 297, 1, 10153, 0.99, '2007-04-30 20:58:36.996577'); -INSERT INTO dvds.payment VALUES (25517, 298, 2, 3479, 0.99, '2007-04-05 21:37:19.996577'); -INSERT INTO dvds.payment VALUES (25518, 298, 1, 3728, 2.99, '2007-04-06 09:57:26.996577'); -INSERT INTO dvds.payment VALUES (25519, 298, 2, 4291, 2.99, '2007-04-07 14:16:13.996577'); -INSERT INTO dvds.payment VALUES (25520, 298, 1, 4936, 3.99, '2007-04-08 20:53:16.996577'); -INSERT INTO dvds.payment VALUES (25521, 298, 2, 5166, 2.99, '2007-04-09 07:44:14.996577'); -INSERT INTO dvds.payment VALUES (25522, 298, 1, 5247, 2.99, '2007-04-09 11:54:54.996577'); -INSERT INTO dvds.payment VALUES (25523, 298, 2, 6802, 0.99, '2007-04-12 15:42:43.996577'); -INSERT INTO dvds.payment VALUES (25524, 298, 2, 7802, 0.99, '2007-04-28 06:20:23.996577'); -INSERT INTO dvds.payment VALUES (25525, 298, 1, 7869, 7.99, '2007-04-28 08:41:41.996577'); -INSERT INTO dvds.payment VALUES (25526, 298, 2, 8737, 5.99, '2007-04-29 17:00:39.996577'); -INSERT INTO dvds.payment VALUES (25527, 299, 2, 3497, 0.99, '2007-04-05 22:28:29.996577'); -INSERT INTO dvds.payment VALUES (25528, 299, 2, 4153, 5.99, '2007-04-07 07:21:34.996577'); -INSERT INTO dvds.payment VALUES (25529, 299, 1, 4350, 2.99, '2007-04-07 17:31:07.996577'); -INSERT INTO dvds.payment VALUES (25530, 299, 2, 5033, 1.99, '2007-04-09 01:10:27.996577'); -INSERT INTO dvds.payment VALUES (25531, 299, 1, 5642, 2.99, '2007-04-10 05:14:34.996577'); -INSERT INTO dvds.payment VALUES (25532, 299, 2, 6732, 0.99, '2007-04-12 12:27:17.996577'); -INSERT INTO dvds.payment VALUES (25533, 299, 1, 6853, 7.99, '2007-04-12 18:06:37.996577'); -INSERT INTO dvds.payment VALUES (25534, 299, 1, 7264, 4.99, '2007-04-27 09:47:24.996577'); -INSERT INTO dvds.payment VALUES (25535, 299, 1, 7746, 2.99, '2007-04-28 04:17:22.996577'); -INSERT INTO dvds.payment VALUES (25536, 299, 2, 7862, 9.99, '2007-04-28 08:30:51.996577'); -INSERT INTO dvds.payment VALUES (25537, 299, 1, 9520, 2.99, '2007-04-30 23:19:20.996577'); -INSERT INTO dvds.payment VALUES (25538, 299, 1, 10201, 0.99, '2007-04-30 23:10:44.996577'); -INSERT INTO dvds.payment VALUES (25539, 300, 1, 3775, 0.99, '2007-04-06 11:55:59.996577'); -INSERT INTO dvds.payment VALUES (25540, 300, 1, 4030, 0.99, '2007-04-07 00:54:08.996577'); -INSERT INTO dvds.payment VALUES (25541, 300, 2, 5562, 2.99, '2007-04-10 01:46:08.996577'); -INSERT INTO dvds.payment VALUES (25542, 300, 1, 5705, 10.99, '2007-04-10 08:37:43.996577'); -INSERT INTO dvds.payment VALUES (25543, 300, 2, 6111, 4.99, '2007-04-11 05:55:23.996577'); -INSERT INTO dvds.payment VALUES (25544, 300, 1, 6822, 5.99, '2007-04-12 16:52:05.996577'); -INSERT INTO dvds.payment VALUES (25545, 300, 1, 6998, 4.99, '2007-04-26 23:44:55.996577'); -INSERT INTO dvds.payment VALUES (25546, 300, 1, 7815, 4.99, '2007-04-28 06:42:37.996577'); -INSERT INTO dvds.payment VALUES (25547, 300, 1, 8117, 6.99, '2007-04-28 17:48:42.996577'); -INSERT INTO dvds.payment VALUES (25548, 300, 1, 8210, 6.99, '2007-04-28 21:59:31.996577'); -INSERT INTO dvds.payment VALUES (25549, 300, 1, 8283, 3.99, '2007-04-29 00:20:48.996577'); -INSERT INTO dvds.payment VALUES (25550, 300, 1, 9078, 0.99, '2007-04-30 06:29:26.996577'); -INSERT INTO dvds.payment VALUES (25551, 300, 2, 9127, 2.99, '2007-04-30 08:15:02.996577'); -INSERT INTO dvds.payment VALUES (25552, 300, 2, 9791, 0.99, '2007-04-30 09:03:48.996577'); -INSERT INTO dvds.payment VALUES (25553, 301, 2, 4316, 4.99, '2007-04-07 16:12:48.996577'); -INSERT INTO dvds.payment VALUES (25554, 301, 2, 4834, 3.99, '2007-04-08 16:36:11.996577'); -INSERT INTO dvds.payment VALUES (25555, 301, 1, 5119, 6.99, '2007-04-09 05:42:44.996577'); -INSERT INTO dvds.payment VALUES (25556, 301, 2, 5511, 4.99, '2007-04-09 23:28:26.996577'); -INSERT INTO dvds.payment VALUES (25557, 301, 2, 5730, 2.99, '2007-04-10 09:56:58.996577'); -INSERT INTO dvds.payment VALUES (25558, 301, 2, 5807, 2.99, '2007-04-10 13:44:56.996577'); -INSERT INTO dvds.payment VALUES (25559, 301, 2, 6833, 6.99, '2007-04-12 17:22:00.996577'); -INSERT INTO dvds.payment VALUES (25560, 301, 2, 7318, 4.99, '2007-04-27 11:53:57.996577'); -INSERT INTO dvds.payment VALUES (25561, 301, 2, 7818, 4.99, '2007-04-28 06:53:26.996577'); -INSERT INTO dvds.payment VALUES (25562, 301, 2, 9435, 4.99, '2007-04-30 19:59:28.996577'); -INSERT INTO dvds.payment VALUES (25563, 302, 2, 4676, 4.99, '2007-04-08 08:54:28.996577'); -INSERT INTO dvds.payment VALUES (25564, 302, 2, 5498, 0.99, '2007-04-09 22:55:47.996577'); -INSERT INTO dvds.payment VALUES (25565, 302, 2, 5682, 2.99, '2007-04-10 07:20:05.996577'); -INSERT INTO dvds.payment VALUES (25566, 302, 2, 5709, 0.99, '2007-04-10 09:00:18.996577'); -INSERT INTO dvds.payment VALUES (25567, 302, 2, 5821, 4.99, '2007-04-10 14:35:42.996577'); -INSERT INTO dvds.payment VALUES (25568, 302, 2, 6623, 7.99, '2007-04-12 07:34:00.996577'); -INSERT INTO dvds.payment VALUES (25569, 302, 1, 7183, 0.99, '2007-04-27 06:47:04.996577'); -INSERT INTO dvds.payment VALUES (25570, 302, 1, 7411, 6.99, '2007-04-27 15:10:56.996577'); -INSERT INTO dvds.payment VALUES (25571, 302, 1, 8363, 6.99, '2007-04-29 03:38:34.996577'); -INSERT INTO dvds.payment VALUES (25572, 302, 2, 8646, 0.99, '2007-04-29 13:17:14.996577'); -INSERT INTO dvds.payment VALUES (25573, 302, 1, 8795, 2.99, '2007-04-29 19:32:40.996577'); -INSERT INTO dvds.payment VALUES (25574, 302, 1, 9146, 7.99, '2007-04-30 09:00:34.996577'); -INSERT INTO dvds.payment VALUES (25575, 302, 2, 9358, 2.99, '2007-04-30 17:05:50.996577'); -INSERT INTO dvds.payment VALUES (25576, 302, 1, 9374, 8.99, '2007-04-30 17:38:29.996577'); -INSERT INTO dvds.payment VALUES (25577, 302, 2, 9581, 5.99, '2007-04-30 01:31:33.996577'); -INSERT INTO dvds.payment VALUES (25578, 303, 1, 5140, 4.99, '2007-04-09 06:33:25.996577'); -INSERT INTO dvds.payment VALUES (25579, 303, 1, 6205, 4.99, '2007-04-11 10:59:50.996577'); -INSERT INTO dvds.payment VALUES (25580, 303, 2, 6219, 4.99, '2007-04-11 11:47:03.996577'); -INSERT INTO dvds.payment VALUES (25581, 303, 1, 6464, 4.99, '2007-04-11 23:45:06.996577'); -INSERT INTO dvds.payment VALUES (25582, 303, 1, 7023, 4.99, '2007-04-27 01:01:10.996577'); -INSERT INTO dvds.payment VALUES (25583, 303, 2, 7502, 2.99, '2007-04-27 18:47:34.996577'); -INSERT INTO dvds.payment VALUES (25584, 303, 1, 8409, 0.99, '2007-04-29 05:09:48.996577'); -INSERT INTO dvds.payment VALUES (25585, 303, 2, 8734, 6.99, '2007-04-29 16:56:41.996577'); -INSERT INTO dvds.payment VALUES (25586, 303, 2, 8764, 0.99, '2007-04-29 18:07:30.996577'); -INSERT INTO dvds.payment VALUES (25587, 303, 2, 10209, 2.99, '2007-04-30 23:25:13.996577'); -INSERT INTO dvds.payment VALUES (25588, 304, 1, 4466, 6.99, '2007-04-07 22:41:19.996577'); -INSERT INTO dvds.payment VALUES (25589, 304, 2, 4812, 8.99, '2007-04-08 15:35:37.996577'); -INSERT INTO dvds.payment VALUES (25590, 304, 1, 5411, 2.99, '2007-04-09 18:52:04.996577'); -INSERT INTO dvds.payment VALUES (25591, 304, 1, 5712, 4.99, '2007-04-10 09:08:58.996577'); -INSERT INTO dvds.payment VALUES (25592, 304, 2, 5749, 3.99, '2007-04-10 10:49:02.996577'); -INSERT INTO dvds.payment VALUES (25593, 304, 2, 5795, 0.99, '2007-04-10 13:04:55.996577'); -INSERT INTO dvds.payment VALUES (25594, 304, 2, 6107, 0.99, '2007-04-11 05:35:35.996577'); -INSERT INTO dvds.payment VALUES (25595, 304, 1, 6737, 4.99, '2007-04-12 12:45:18.996577'); -INSERT INTO dvds.payment VALUES (25596, 304, 2, 7551, 4.99, '2007-04-27 20:27:41.996577'); -INSERT INTO dvds.payment VALUES (25597, 304, 2, 8055, 4.99, '2007-04-28 15:30:58.996577'); -INSERT INTO dvds.payment VALUES (25598, 304, 1, 9930, 0.99, '2007-04-30 13:46:29.996577'); -INSERT INTO dvds.payment VALUES (25599, 304, 1, 9992, 6.99, '2007-04-30 15:58:14.996577'); -INSERT INTO dvds.payment VALUES (25600, 305, 2, 4260, 4.99, '2007-04-07 12:51:11.996577'); -INSERT INTO dvds.payment VALUES (25601, 305, 1, 4638, 2.99, '2007-04-08 07:25:46.996577'); -INSERT INTO dvds.payment VALUES (25602, 305, 2, 5041, 0.99, '2007-04-09 01:47:17.996577'); -INSERT INTO dvds.payment VALUES (25603, 305, 1, 5052, 2.99, '2007-04-09 02:28:09.996577'); -INSERT INTO dvds.payment VALUES (25604, 305, 2, 5582, 4.99, '2007-04-10 02:36:51.996577'); -INSERT INTO dvds.payment VALUES (25605, 305, 1, 5745, 8.99, '2007-04-10 10:38:37.996577'); -INSERT INTO dvds.payment VALUES (25606, 305, 1, 6134, 7.99, '2007-04-11 06:56:45.996577'); -INSERT INTO dvds.payment VALUES (25607, 305, 2, 6619, 0.99, '2007-04-12 07:19:14.996577'); -INSERT INTO dvds.payment VALUES (25608, 305, 2, 8865, 4.99, '2007-04-29 22:23:20.996577'); -INSERT INTO dvds.payment VALUES (25609, 305, 2, 9119, 4.99, '2007-04-30 07:54:22.996577'); -INSERT INTO dvds.payment VALUES (25610, 306, 1, 3814, 6.99, '2007-04-06 13:52:22.996577'); -INSERT INTO dvds.payment VALUES (25611, 306, 2, 4484, 5.99, '2007-04-07 23:34:23.996577'); -INSERT INTO dvds.payment VALUES (25612, 306, 2, 4596, 1.99, '2007-04-08 05:09:51.996577'); -INSERT INTO dvds.payment VALUES (25613, 306, 2, 5581, 2.99, '2007-04-10 02:34:32.996577'); -INSERT INTO dvds.payment VALUES (25614, 306, 2, 6868, 2.99, '2007-04-12 18:38:43.996577'); -INSERT INTO dvds.payment VALUES (25615, 306, 1, 6953, 4.99, '2007-04-26 22:21:13.996577'); -INSERT INTO dvds.payment VALUES (25616, 306, 1, 7225, 6.99, '2007-04-27 08:15:38.996577'); -INSERT INTO dvds.payment VALUES (25617, 306, 1, 7232, 4.99, '2007-04-27 08:32:45.996577'); -INSERT INTO dvds.payment VALUES (25618, 306, 2, 7701, 2.99, '2007-04-28 02:22:54.996577'); -INSERT INTO dvds.payment VALUES (25619, 306, 2, 8620, 0.99, '2007-04-29 12:19:46.996577'); -INSERT INTO dvds.payment VALUES (25620, 306, 1, 8702, 0.99, '2007-04-29 15:33:03.996577'); -INSERT INTO dvds.payment VALUES (25621, 306, 2, 9242, 4.99, '2007-04-30 12:32:24.996577'); -INSERT INTO dvds.payment VALUES (25622, 306, 2, 9395, 4.99, '2007-04-30 18:35:32.996577'); -INSERT INTO dvds.payment VALUES (25623, 306, 1, 9774, 0.99, '2007-04-30 08:26:17.996577'); -INSERT INTO dvds.payment VALUES (25624, 306, 1, 10202, 6.99, '2007-04-30 23:11:44.996577'); -INSERT INTO dvds.payment VALUES (25625, 307, 1, 3962, 6.99, '2007-04-06 20:42:11.996577'); -INSERT INTO dvds.payment VALUES (25626, 307, 1, 3985, 4.99, '2007-04-06 21:52:29.996577'); -INSERT INTO dvds.payment VALUES (25627, 307, 1, 4522, 2.99, '2007-04-08 01:31:38.996577'); -INSERT INTO dvds.payment VALUES (25628, 307, 1, 4868, 4.99, '2007-04-08 17:42:16.996577'); -INSERT INTO dvds.payment VALUES (25629, 307, 1, 5871, 3.99, '2007-04-10 17:14:34.996577'); -INSERT INTO dvds.payment VALUES (25630, 307, 2, 6125, 6.99, '2007-04-11 06:32:01.996577'); -INSERT INTO dvds.payment VALUES (25631, 307, 1, 6256, 0.99, '2007-04-11 13:47:48.996577'); -INSERT INTO dvds.payment VALUES (25632, 307, 1, 6991, 10.99, '2007-04-26 23:31:32.996577'); -INSERT INTO dvds.payment VALUES (25633, 307, 1, 7536, 2.99, '2007-04-27 20:02:35.996577'); -INSERT INTO dvds.payment VALUES (25634, 307, 1, 7760, 3.99, '2007-04-28 04:58:11.996577'); -INSERT INTO dvds.payment VALUES (25635, 307, 1, 7929, 0.99, '2007-04-28 10:45:06.996577'); -INSERT INTO dvds.payment VALUES (25636, 307, 1, 8647, 6.99, '2007-04-29 13:21:25.996577'); -INSERT INTO dvds.payment VALUES (25637, 307, 1, 10135, 4.99, '2007-04-30 20:25:58.996577'); -INSERT INTO dvds.payment VALUES (25638, 308, 1, 4002, 3.99, '2007-04-06 22:36:44.996577'); -INSERT INTO dvds.payment VALUES (25639, 308, 1, 4285, 8.99, '2007-04-07 14:03:01.996577'); -INSERT INTO dvds.payment VALUES (25640, 308, 1, 5946, 2.99, '2007-04-10 21:25:55.996577'); -INSERT INTO dvds.payment VALUES (25641, 308, 2, 8869, 0.99, '2007-04-29 22:34:58.996577'); -INSERT INTO dvds.payment VALUES (25642, 308, 1, 9479, 2.99, '2007-04-30 21:50:35.996577'); -INSERT INTO dvds.payment VALUES (25643, 308, 1, 9746, 7.99, '2007-04-30 07:45:14.996577'); -INSERT INTO dvds.payment VALUES (25644, 309, 2, 3837, 4.99, '2007-04-06 14:56:09.996577'); -INSERT INTO dvds.payment VALUES (25645, 309, 2, 3896, 7.99, '2007-04-06 17:37:41.996577'); -INSERT INTO dvds.payment VALUES (25646, 309, 2, 4172, 4.99, '2007-04-07 08:17:35.996577'); -INSERT INTO dvds.payment VALUES (25647, 309, 1, 4540, 4.99, '2007-04-08 02:31:54.996577'); -INSERT INTO dvds.payment VALUES (25648, 309, 2, 5305, 8.99, '2007-04-09 14:24:02.996577'); -INSERT INTO dvds.payment VALUES (25649, 309, 1, 5980, 4.99, '2007-04-10 22:46:47.996577'); -INSERT INTO dvds.payment VALUES (25650, 309, 2, 6480, 4.99, '2007-04-12 00:17:55.996577'); -INSERT INTO dvds.payment VALUES (25651, 309, 2, 7214, 5.99, '2007-04-27 07:51:59.996577'); -INSERT INTO dvds.payment VALUES (25652, 309, 2, 7722, 4.99, '2007-04-28 03:13:24.996577'); -INSERT INTO dvds.payment VALUES (25653, 309, 1, 7846, 5.99, '2007-04-28 07:49:44.996577'); -INSERT INTO dvds.payment VALUES (25654, 309, 1, 8341, 4.99, '2007-04-29 03:10:27.996577'); -INSERT INTO dvds.payment VALUES (25655, 309, 1, 8501, 2.99, '2007-04-29 07:41:17.996577'); -INSERT INTO dvds.payment VALUES (25656, 309, 1, 8681, 2.99, '2007-04-29 14:40:27.996577'); -INSERT INTO dvds.payment VALUES (25657, 309, 1, 8917, 2.99, '2007-04-30 00:15:28.996577'); -INSERT INTO dvds.payment VALUES (25658, 309, 2, 9945, 2.99, '2007-04-30 14:16:17.996577'); -INSERT INTO dvds.payment VALUES (25659, 309, 1, 9949, 0.99, '2007-04-30 14:18:36.996577'); -INSERT INTO dvds.payment VALUES (25660, 310, 2, 3830, 10.99, '2007-04-06 14:29:42.996577'); -INSERT INTO dvds.payment VALUES (25661, 310, 1, 4072, 0.99, '2007-04-07 03:16:28.996577'); -INSERT INTO dvds.payment VALUES (25662, 310, 1, 5621, 5.99, '2007-04-10 04:02:36.996577'); -INSERT INTO dvds.payment VALUES (25663, 310, 2, 5836, 0.99, '2007-04-10 15:17:28.996577'); -INSERT INTO dvds.payment VALUES (25664, 310, 1, 7648, 5.99, '2007-04-28 00:03:59.996577'); -INSERT INTO dvds.payment VALUES (25665, 310, 2, 8637, 5.99, '2007-04-29 12:58:37.996577'); -INSERT INTO dvds.payment VALUES (25666, 310, 1, 8981, 7.99, '2007-04-30 02:53:56.996577'); -INSERT INTO dvds.payment VALUES (25667, 310, 1, 9536, 2.99, '2007-04-30 23:47:28.996577'); -INSERT INTO dvds.payment VALUES (25668, 311, 2, 4836, 3.99, '2007-04-08 16:37:34.996577'); -INSERT INTO dvds.payment VALUES (25669, 311, 2, 5224, 5.99, '2007-04-09 10:35:53.996577'); -INSERT INTO dvds.payment VALUES (25670, 311, 2, 6419, 4.99, '2007-04-11 22:05:04.996577'); -INSERT INTO dvds.payment VALUES (25671, 311, 2, 8167, 6.99, '2007-04-28 19:54:11.996577'); -INSERT INTO dvds.payment VALUES (25672, 311, 1, 8473, 2.99, '2007-04-29 07:05:19.996577'); -INSERT INTO dvds.payment VALUES (25673, 311, 1, 9503, 6.99, '2007-04-30 22:31:04.996577'); -INSERT INTO dvds.payment VALUES (25674, 311, 2, 9882, 8.99, '2007-04-30 12:21:59.996577'); -INSERT INTO dvds.payment VALUES (25675, 311, 1, 10134, 4.99, '2007-04-30 20:24:36.996577'); -INSERT INTO dvds.payment VALUES (25676, 312, 1, 3766, 2.99, '2007-04-06 11:33:01.996577'); -INSERT INTO dvds.payment VALUES (25677, 312, 1, 3792, 1.99, '2007-04-06 12:55:04.996577'); -INSERT INTO dvds.payment VALUES (25678, 312, 1, 4647, 3.99, '2007-04-08 07:56:02.996577'); -INSERT INTO dvds.payment VALUES (25679, 312, 1, 5031, 5.99, '2007-04-09 01:05:03.996577'); -INSERT INTO dvds.payment VALUES (25680, 312, 2, 6751, 2.99, '2007-04-12 13:19:00.996577'); -INSERT INTO dvds.payment VALUES (25681, 312, 1, 6866, 2.99, '2007-04-12 18:32:10.996577'); -INSERT INTO dvds.payment VALUES (25682, 312, 1, 8137, 4.99, '2007-04-28 18:35:44.996577'); -INSERT INTO dvds.payment VALUES (25683, 312, 1, 8412, 6.99, '2007-04-29 05:13:16.996577'); -INSERT INTO dvds.payment VALUES (25684, 312, 1, 8721, 4.99, '2007-04-29 16:24:47.996577'); -INSERT INTO dvds.payment VALUES (25685, 312, 1, 9016, 6.99, '2007-04-30 03:54:39.996577'); -INSERT INTO dvds.payment VALUES (25686, 312, 1, 9154, 3.99, '2007-04-30 09:28:20.996577'); -INSERT INTO dvds.payment VALUES (25687, 313, 2, 4552, 2.99, '2007-04-08 03:05:01.996577'); -INSERT INTO dvds.payment VALUES (25688, 313, 1, 5255, 5.99, '2007-04-09 12:19:34.996577'); -INSERT INTO dvds.payment VALUES (25689, 313, 1, 6384, 2.99, '2007-04-11 20:35:52.996577'); -INSERT INTO dvds.payment VALUES (25690, 313, 2, 7294, 0.99, '2007-04-27 11:06:40.996577'); -INSERT INTO dvds.payment VALUES (25691, 313, 2, 8381, 4.99, '2007-04-29 04:00:10.996577'); -INSERT INTO dvds.payment VALUES (25692, 313, 1, 8970, 3.99, '2007-04-30 02:30:31.996577'); -INSERT INTO dvds.payment VALUES (25693, 313, 2, 9836, 2.99, '2007-04-30 10:40:26.996577'); -INSERT INTO dvds.payment VALUES (25694, 314, 1, 3517, 0.99, '2007-04-05 23:21:01.996577'); -INSERT INTO dvds.payment VALUES (25695, 314, 1, 3656, 2.99, '2007-04-06 06:23:48.996577'); -INSERT INTO dvds.payment VALUES (25696, 314, 1, 3808, 0.99, '2007-04-06 13:44:01.996577'); -INSERT INTO dvds.payment VALUES (25697, 314, 2, 4386, 0.99, '2007-04-07 19:23:45.996577'); -INSERT INTO dvds.payment VALUES (25698, 314, 2, 5241, 4.99, '2007-04-09 11:47:40.996577'); -INSERT INTO dvds.payment VALUES (25699, 314, 2, 5856, 0.99, '2007-04-10 16:25:58.996577'); -INSERT INTO dvds.payment VALUES (25700, 314, 1, 6192, 5.99, '2007-04-11 10:13:07.996577'); -INSERT INTO dvds.payment VALUES (25701, 314, 1, 6666, 2.99, '2007-04-12 10:00:41.996577'); -INSERT INTO dvds.payment VALUES (25702, 314, 1, 6763, 3.99, '2007-04-12 13:55:00.996577'); -INSERT INTO dvds.payment VALUES (25703, 314, 2, 7004, 4.99, '2007-04-27 00:04:31.996577'); -INSERT INTO dvds.payment VALUES (25704, 314, 1, 7276, 2.99, '2007-04-27 10:10:23.996577'); -INSERT INTO dvds.payment VALUES (25705, 314, 2, 8022, 6.99, '2007-04-28 14:17:22.996577'); -INSERT INTO dvds.payment VALUES (25706, 314, 1, 8073, 3.99, '2007-04-28 15:57:28.996577'); -INSERT INTO dvds.payment VALUES (25707, 314, 2, 8105, 0.99, '2007-04-28 17:28:12.996577'); -INSERT INTO dvds.payment VALUES (25708, 314, 2, 8328, 6.99, '2007-04-29 02:34:50.996577'); -INSERT INTO dvds.payment VALUES (25709, 314, 2, 8644, 4.99, '2007-04-29 13:14:11.996577'); -INSERT INTO dvds.payment VALUES (25710, 314, 2, 9191, 3.99, '2007-04-30 10:54:17.996577'); -INSERT INTO dvds.payment VALUES (25711, 314, 2, 9318, 6.99, '2007-04-30 15:42:56.996577'); -INSERT INTO dvds.payment VALUES (25712, 315, 1, 4021, 2.99, '2007-04-07 00:15:10.996577'); -INSERT INTO dvds.payment VALUES (25713, 315, 1, 4992, 4.99, '2007-04-08 23:18:03.996577'); -INSERT INTO dvds.payment VALUES (25714, 315, 2, 5126, 6.99, '2007-04-09 05:54:01.996577'); -INSERT INTO dvds.payment VALUES (25715, 315, 1, 6661, 4.99, '2007-04-12 09:49:05.996577'); -INSERT INTO dvds.payment VALUES (25716, 315, 1, 6894, 4.99, '2007-04-12 19:49:16.996577'); -INSERT INTO dvds.payment VALUES (25717, 315, 1, 8416, 5.99, '2007-04-29 05:21:20.996577'); -INSERT INTO dvds.payment VALUES (25718, 315, 2, 8677, 6.99, '2007-04-29 14:29:39.996577'); -INSERT INTO dvds.payment VALUES (25719, 315, 2, 9735, 9.99, '2007-04-30 07:26:15.996577'); -INSERT INTO dvds.payment VALUES (25720, 316, 1, 4379, 2.99, '2007-04-07 19:00:56.996577'); -INSERT INTO dvds.payment VALUES (25721, 316, 2, 5102, 3.99, '2007-04-09 04:54:14.996577'); -INSERT INTO dvds.payment VALUES (25722, 316, 2, 5544, 7.99, '2007-04-10 01:16:33.996577'); -INSERT INTO dvds.payment VALUES (25723, 316, 1, 5618, 5.99, '2007-04-10 03:57:24.996577'); -INSERT INTO dvds.payment VALUES (25724, 316, 2, 6988, 4.99, '2007-04-26 23:28:34.996577'); -INSERT INTO dvds.payment VALUES (25725, 316, 2, 7339, 2.99, '2007-04-27 12:46:14.996577'); -INSERT INTO dvds.payment VALUES (25726, 316, 2, 7586, 2.99, '2007-04-27 21:47:55.996577'); -INSERT INTO dvds.payment VALUES (25727, 316, 1, 7592, 4.99, '2007-04-27 21:54:30.996577'); -INSERT INTO dvds.payment VALUES (25728, 316, 1, 7945, 1.99, '2007-04-28 11:22:24.996577'); -INSERT INTO dvds.payment VALUES (25729, 316, 1, 8564, 4.99, '2007-04-29 10:01:26.996577'); -INSERT INTO dvds.payment VALUES (25730, 316, 1, 9508, 4.99, '2007-04-30 22:51:05.996577'); -INSERT INTO dvds.payment VALUES (25731, 316, 2, 9903, 6.99, '2007-04-30 13:00:10.996577'); -INSERT INTO dvds.payment VALUES (25732, 317, 1, 4138, 0.99, '2007-04-07 06:45:39.996577'); -INSERT INTO dvds.payment VALUES (25733, 317, 1, 4177, 8.99, '2007-04-07 08:41:02.996577'); -INSERT INTO dvds.payment VALUES (25734, 317, 2, 4700, 0.99, '2007-04-08 10:05:47.996577'); -INSERT INTO dvds.payment VALUES (25735, 317, 1, 5548, 0.99, '2007-04-10 01:25:11.996577'); -INSERT INTO dvds.payment VALUES (25736, 317, 2, 5942, 7.99, '2007-04-10 21:15:43.996577'); -INSERT INTO dvds.payment VALUES (25737, 317, 1, 7309, 2.99, '2007-04-27 11:28:55.996577'); -INSERT INTO dvds.payment VALUES (25738, 317, 2, 8062, 2.99, '2007-04-28 15:43:32.996577'); -INSERT INTO dvds.payment VALUES (25739, 317, 1, 8327, 2.99, '2007-04-29 02:29:18.996577'); -INSERT INTO dvds.payment VALUES (25740, 317, 1, 8458, 4.99, '2007-04-29 06:33:35.996577'); -INSERT INTO dvds.payment VALUES (25741, 317, 1, 9110, 2.99, '2007-04-30 07:34:08.996577'); -INSERT INTO dvds.payment VALUES (25742, 317, 2, 9513, 4.99, '2007-04-30 22:56:56.996577'); -INSERT INTO dvds.payment VALUES (25743, 317, 1, 9770, 8.99, '2007-04-30 08:21:06.996577'); -INSERT INTO dvds.payment VALUES (25744, 318, 1, 3732, 4.99, '2007-04-06 10:02:03.996577'); -INSERT INTO dvds.payment VALUES (25745, 318, 2, 3974, 2.99, '2007-04-06 21:27:42.996577'); -INSERT INTO dvds.payment VALUES (25746, 318, 1, 4356, 8.99, '2007-04-07 17:49:48.996577'); -INSERT INTO dvds.payment VALUES (25747, 318, 1, 7649, 0.99, '2007-04-28 00:05:52.996577'); -INSERT INTO dvds.payment VALUES (25748, 318, 2, 7853, 0.99, '2007-04-28 08:05:04.996577'); -INSERT INTO dvds.payment VALUES (25749, 318, 2, 10023, 5.99, '2007-04-30 16:54:17.996577'); -INSERT INTO dvds.payment VALUES (25750, 319, 2, 4119, 3.99, '2007-04-07 05:34:29.996577'); -INSERT INTO dvds.payment VALUES (25751, 319, 2, 4295, 2.99, '2007-04-07 14:37:17.996577'); -INSERT INTO dvds.payment VALUES (25752, 319, 1, 4630, 4.99, '2007-04-08 07:02:04.996577'); -INSERT INTO dvds.payment VALUES (25753, 319, 1, 5791, 8.99, '2007-04-10 12:44:48.996577'); -INSERT INTO dvds.payment VALUES (25754, 319, 1, 5882, 2.99, '2007-04-10 17:49:00.996577'); -INSERT INTO dvds.payment VALUES (25755, 319, 2, 6132, 2.99, '2007-04-11 06:53:10.996577'); -INSERT INTO dvds.payment VALUES (25756, 319, 1, 6195, 4.99, '2007-04-11 10:28:58.996577'); -INSERT INTO dvds.payment VALUES (25757, 319, 1, 6255, 4.99, '2007-04-11 13:39:59.996577'); -INSERT INTO dvds.payment VALUES (25758, 319, 1, 6485, 6.99, '2007-04-12 00:36:25.996577'); -INSERT INTO dvds.payment VALUES (25759, 319, 2, 7953, 2.99, '2007-04-28 11:52:58.996577'); -INSERT INTO dvds.payment VALUES (25760, 319, 2, 9017, 4.99, '2007-04-30 03:54:46.996577'); -INSERT INTO dvds.payment VALUES (25761, 319, 2, 9044, 0.99, '2007-04-30 05:03:47.996577'); -INSERT INTO dvds.payment VALUES (25762, 320, 2, 3519, 0.99, '2007-04-05 23:25:55.996577'); -INSERT INTO dvds.payment VALUES (25763, 320, 2, 3756, 4.99, '2007-04-06 11:09:04.996577'); -INSERT INTO dvds.payment VALUES (25764, 320, 2, 4173, 2.99, '2007-04-07 08:25:52.996577'); -INSERT INTO dvds.payment VALUES (25765, 320, 2, 7057, 4.99, '2007-04-27 02:18:29.996577'); -INSERT INTO dvds.payment VALUES (25766, 320, 2, 7064, 3.99, '2007-04-27 02:21:55.996577'); -INSERT INTO dvds.payment VALUES (25767, 320, 2, 7930, 4.99, '2007-04-28 10:49:34.996577'); -INSERT INTO dvds.payment VALUES (25768, 320, 2, 8144, 4.99, '2007-04-28 18:59:21.996577'); -INSERT INTO dvds.payment VALUES (25769, 320, 2, 8235, 4.99, '2007-04-28 22:51:22.996577'); -INSERT INTO dvds.payment VALUES (25770, 320, 1, 8238, 0.99, '2007-04-28 22:58:32.996577'); -INSERT INTO dvds.payment VALUES (25771, 320, 2, 8794, 4.99, '2007-04-29 19:28:04.996577'); -INSERT INTO dvds.payment VALUES (25772, 320, 1, 9509, 0.99, '2007-04-30 22:51:08.996577'); -INSERT INTO dvds.payment VALUES (25773, 321, 2, 3901, 5.99, '2007-04-06 17:53:21.996577'); -INSERT INTO dvds.payment VALUES (25774, 321, 1, 3920, 4.99, '2007-04-06 18:55:06.996577'); -INSERT INTO dvds.payment VALUES (25775, 321, 2, 4281, 4.99, '2007-04-07 13:46:16.996577'); -INSERT INTO dvds.payment VALUES (25776, 321, 1, 4318, 5.99, '2007-04-07 16:16:16.996577'); -INSERT INTO dvds.payment VALUES (25777, 321, 2, 5202, 2.99, '2007-04-09 09:22:14.996577'); -INSERT INTO dvds.payment VALUES (25778, 321, 2, 5867, 8.99, '2007-04-10 17:07:27.996577'); -INSERT INTO dvds.payment VALUES (25779, 321, 2, 6190, 2.99, '2007-04-11 10:04:44.996577'); -INSERT INTO dvds.payment VALUES (25780, 321, 1, 6859, 5.99, '2007-04-12 18:22:23.996577'); -INSERT INTO dvds.payment VALUES (25781, 321, 2, 8685, 6.99, '2007-04-29 14:45:31.996577'); -INSERT INTO dvds.payment VALUES (25782, 321, 1, 9981, 0.99, '2007-04-30 15:36:57.996577'); -INSERT INTO dvds.payment VALUES (25783, 322, 1, 3478, 0.99, '2007-04-05 21:34:10.996577'); -INSERT INTO dvds.payment VALUES (25784, 322, 2, 3627, 1.99, '2007-04-06 04:47:51.996577'); -INSERT INTO dvds.payment VALUES (25785, 322, 1, 3646, 4.99, '2007-04-06 05:57:25.996577'); -INSERT INTO dvds.payment VALUES (25786, 322, 2, 6033, 2.99, '2007-04-11 01:28:00.996577'); -INSERT INTO dvds.payment VALUES (25787, 322, 1, 6511, 3.99, '2007-04-12 02:07:55.996577'); -INSERT INTO dvds.payment VALUES (25788, 322, 2, 6673, 0.99, '2007-04-12 10:19:22.996577'); -INSERT INTO dvds.payment VALUES (25789, 322, 2, 6709, 4.99, '2007-04-12 11:49:07.996577'); -INSERT INTO dvds.payment VALUES (25790, 322, 1, 7091, 4.99, '2007-04-27 03:12:36.996577'); -INSERT INTO dvds.payment VALUES (25791, 322, 2, 8142, 4.99, '2007-04-28 18:50:20.996577'); -INSERT INTO dvds.payment VALUES (25792, 322, 1, 9104, 7.99, '2007-04-30 07:18:21.996577'); -INSERT INTO dvds.payment VALUES (25793, 322, 1, 9115, 4.99, '2007-04-30 07:42:21.996577'); -INSERT INTO dvds.payment VALUES (25794, 322, 1, 9252, 1.99, '2007-04-30 12:48:25.996577'); -INSERT INTO dvds.payment VALUES (25795, 323, 2, 3704, 6.99, '2007-04-06 08:45:11.996577'); -INSERT INTO dvds.payment VALUES (25796, 323, 2, 4572, 1.99, '2007-04-08 04:05:25.996577'); -INSERT INTO dvds.payment VALUES (25797, 323, 2, 5669, 4.99, '2007-04-10 06:41:19.996577'); -INSERT INTO dvds.payment VALUES (25798, 323, 2, 5906, 1.99, '2007-04-10 19:10:07.996577'); -INSERT INTO dvds.payment VALUES (25799, 323, 1, 6840, 3.99, '2007-04-12 17:31:48.996577'); -INSERT INTO dvds.payment VALUES (25800, 323, 2, 7146, 7.99, '2007-04-27 05:30:56.996577'); -INSERT INTO dvds.payment VALUES (25801, 323, 2, 7275, 2.99, '2007-04-27 10:07:34.996577'); -INSERT INTO dvds.payment VALUES (25802, 323, 2, 7695, 5.99, '2007-04-28 02:09:39.996577'); -INSERT INTO dvds.payment VALUES (25803, 323, 1, 7847, 1.99, '2007-04-28 07:51:40.996577'); -INSERT INTO dvds.payment VALUES (25804, 323, 2, 7937, 4.99, '2007-04-28 11:06:48.996577'); -INSERT INTO dvds.payment VALUES (25805, 323, 2, 8474, 0.99, '2007-04-29 07:05:22.996577'); -INSERT INTO dvds.payment VALUES (25806, 323, 1, 8790, 0.99, '2007-04-29 19:20:07.996577'); -INSERT INTO dvds.payment VALUES (25807, 323, 1, 9363, 2.99, '2007-04-30 17:12:49.996577'); -INSERT INTO dvds.payment VALUES (25808, 323, 2, 10002, 4.99, '2007-04-30 16:16:42.996577'); -INSERT INTO dvds.payment VALUES (25809, 323, 1, 10028, 4.99, '2007-04-30 17:04:20.996577'); -INSERT INTO dvds.payment VALUES (25810, 324, 1, 3947, 4.99, '2007-04-06 20:10:47.996577'); -INSERT INTO dvds.payment VALUES (25811, 324, 1, 4197, 0.99, '2007-04-07 09:36:18.996577'); -INSERT INTO dvds.payment VALUES (25812, 324, 2, 4368, 4.99, '2007-04-07 18:23:45.996577'); -INSERT INTO dvds.payment VALUES (25813, 324, 2, 5702, 2.99, '2007-04-10 08:28:27.996577'); -INSERT INTO dvds.payment VALUES (25814, 324, 1, 5778, 0.99, '2007-04-10 12:10:03.996577'); -INSERT INTO dvds.payment VALUES (25815, 324, 1, 6034, 2.99, '2007-04-11 01:29:16.996577'); -INSERT INTO dvds.payment VALUES (25816, 324, 2, 6299, 4.99, '2007-04-11 16:13:34.996577'); -INSERT INTO dvds.payment VALUES (25817, 324, 2, 7240, 3.99, '2007-04-27 08:49:41.996577'); -INSERT INTO dvds.payment VALUES (25818, 324, 1, 7263, 7.99, '2007-04-27 09:45:48.996577'); -INSERT INTO dvds.payment VALUES (25819, 324, 2, 7960, 6.99, '2007-04-28 12:15:34.996577'); -INSERT INTO dvds.payment VALUES (25820, 324, 1, 8698, 3.99, '2007-04-29 15:20:43.996577'); -INSERT INTO dvds.payment VALUES (25821, 324, 1, 9651, 4.99, '2007-04-30 04:17:15.996577'); -INSERT INTO dvds.payment VALUES (25822, 324, 2, 10212, 2.99, '2007-04-30 23:30:01.996577'); -INSERT INTO dvds.payment VALUES (25823, 325, 1, 5470, 5.99, '2007-04-09 21:39:15.996577'); -INSERT INTO dvds.payment VALUES (25824, 325, 2, 5740, 2.99, '2007-04-10 10:20:24.996577'); -INSERT INTO dvds.payment VALUES (25825, 325, 1, 5775, 4.99, '2007-04-10 12:02:52.996577'); -INSERT INTO dvds.payment VALUES (25826, 325, 2, 6135, 4.99, '2007-04-11 07:00:49.996577'); -INSERT INTO dvds.payment VALUES (25827, 325, 2, 6622, 0.99, '2007-04-12 07:32:37.996577'); -INSERT INTO dvds.payment VALUES (25828, 325, 2, 7223, 9.99, '2007-04-27 08:10:53.996577'); -INSERT INTO dvds.payment VALUES (25829, 325, 2, 7687, 2.99, '2007-04-28 01:48:52.996577'); -INSERT INTO dvds.payment VALUES (25830, 325, 2, 8539, 0.99, '2007-04-29 09:16:50.996577'); -INSERT INTO dvds.payment VALUES (25831, 325, 2, 10030, 2.99, '2007-04-30 17:08:02.996577'); -INSERT INTO dvds.payment VALUES (25832, 325, 1, 10070, 4.99, '2007-04-30 18:14:55.996577'); -INSERT INTO dvds.payment VALUES (25833, 326, 2, 3886, 0.99, '2007-04-06 17:12:50.996577'); -INSERT INTO dvds.payment VALUES (25834, 326, 1, 4160, 7.99, '2007-04-07 07:41:43.996577'); -INSERT INTO dvds.payment VALUES (25835, 326, 1, 5147, 5.99, '2007-04-09 06:46:07.996577'); -INSERT INTO dvds.payment VALUES (25836, 326, 1, 7117, 2.99, '2007-04-27 04:17:02.996577'); -INSERT INTO dvds.payment VALUES (25837, 326, 2, 7725, 2.99, '2007-04-28 03:15:40.996577'); -INSERT INTO dvds.payment VALUES (25838, 326, 2, 7931, 4.99, '2007-04-28 10:52:07.996577'); -INSERT INTO dvds.payment VALUES (25839, 326, 1, 8467, 5.99, '2007-04-29 06:54:01.996577'); -INSERT INTO dvds.payment VALUES (25840, 326, 1, 8604, 4.99, '2007-04-29 11:35:39.996577'); -INSERT INTO dvds.payment VALUES (25841, 326, 2, 8739, 2.99, '2007-04-29 17:02:59.996577'); -INSERT INTO dvds.payment VALUES (25842, 326, 2, 9855, 0.99, '2007-04-30 11:28:59.996577'); -INSERT INTO dvds.payment VALUES (25843, 326, 1, 10108, 0.99, '2007-04-30 19:30:40.996577'); -INSERT INTO dvds.payment VALUES (25844, 326, 2, 10173, 4.99, '2007-04-30 22:05:25.996577'); -INSERT INTO dvds.payment VALUES (25845, 327, 1, 4445, 4.99, '2007-04-07 21:36:48.996577'); -INSERT INTO dvds.payment VALUES (25846, 327, 1, 4521, 0.99, '2007-04-08 01:26:22.996577'); -INSERT INTO dvds.payment VALUES (25847, 327, 1, 6618, 2.99, '2007-04-12 07:10:08.996577'); -INSERT INTO dvds.payment VALUES (25848, 327, 2, 7458, 1.99, '2007-04-27 17:04:43.996577'); -INSERT INTO dvds.payment VALUES (25849, 327, 2, 7808, 1.99, '2007-04-28 06:27:22.996577'); -INSERT INTO dvds.payment VALUES (25850, 328, 1, 5450, 4.99, '2007-04-09 20:41:51.996577'); -INSERT INTO dvds.payment VALUES (25851, 328, 1, 8017, 1.99, '2007-04-28 14:04:07.996577'); -INSERT INTO dvds.payment VALUES (25852, 328, 1, 8577, 6.99, '2007-04-29 10:24:56.996577'); -INSERT INTO dvds.payment VALUES (25853, 328, 2, 8780, 4.99, '2007-04-29 18:48:11.996577'); -INSERT INTO dvds.payment VALUES (25854, 328, 2, 9557, 2.99, '2007-04-30 00:42:27.996577'); -INSERT INTO dvds.payment VALUES (25855, 328, 1, 9835, 2.99, '2007-04-30 10:36:01.996577'); -INSERT INTO dvds.payment VALUES (25856, 329, 2, 3976, 2.99, '2007-04-06 21:28:46.996577'); -INSERT INTO dvds.payment VALUES (25857, 329, 2, 4076, 4.99, '2007-04-07 03:20:41.996577'); -INSERT INTO dvds.payment VALUES (25858, 329, 1, 4415, 4.99, '2007-04-07 20:30:09.996577'); -INSERT INTO dvds.payment VALUES (25859, 329, 1, 4465, 1.99, '2007-04-07 22:36:11.996577'); -INSERT INTO dvds.payment VALUES (25860, 329, 2, 4674, 2.99, '2007-04-08 08:47:54.996577'); -INSERT INTO dvds.payment VALUES (25861, 329, 1, 7980, 4.99, '2007-04-28 12:45:15.996577'); -INSERT INTO dvds.payment VALUES (25862, 329, 2, 8172, 7.99, '2007-04-28 20:03:02.996577'); -INSERT INTO dvds.payment VALUES (25863, 329, 1, 8460, 6.99, '2007-04-29 06:36:29.996577'); -INSERT INTO dvds.payment VALUES (25864, 329, 2, 8941, 0.99, '2007-04-30 01:27:47.996577'); -INSERT INTO dvds.payment VALUES (25865, 329, 2, 9024, 4.99, '2007-04-30 04:13:08.996577'); -INSERT INTO dvds.payment VALUES (25866, 329, 2, 9219, 0.99, '2007-04-30 11:43:47.996577'); -INSERT INTO dvds.payment VALUES (25867, 329, 1, 9381, 0.99, '2007-04-30 17:51:30.996577'); -INSERT INTO dvds.payment VALUES (25868, 329, 1, 9827, 6.99, '2007-04-30 10:25:21.996577'); -INSERT INTO dvds.payment VALUES (25869, 330, 2, 3603, 4.99, '2007-04-06 03:53:29.996577'); -INSERT INTO dvds.payment VALUES (25870, 330, 2, 3659, 2.99, '2007-04-06 06:31:40.996577'); -INSERT INTO dvds.payment VALUES (25871, 330, 2, 3760, 2.99, '2007-04-06 11:17:54.996577'); -INSERT INTO dvds.payment VALUES (25872, 330, 1, 4124, 1.99, '2007-04-07 05:48:20.996577'); -INSERT INTO dvds.payment VALUES (25873, 330, 2, 5149, 2.99, '2007-04-09 06:56:49.996577'); -INSERT INTO dvds.payment VALUES (25874, 330, 1, 5750, 5.99, '2007-04-10 10:49:07.996577'); -INSERT INTO dvds.payment VALUES (25875, 330, 1, 6656, 0.99, '2007-04-12 09:38:13.996577'); -INSERT INTO dvds.payment VALUES (25876, 330, 2, 6678, 2.99, '2007-04-12 10:27:02.996577'); -INSERT INTO dvds.payment VALUES (25877, 330, 1, 6719, 2.99, '2007-04-12 12:09:03.996577'); -INSERT INTO dvds.payment VALUES (25878, 330, 2, 7894, 2.99, '2007-04-28 09:22:24.996577'); -INSERT INTO dvds.payment VALUES (25879, 330, 1, 8680, 4.99, '2007-04-29 14:36:29.996577'); -INSERT INTO dvds.payment VALUES (25880, 330, 2, 10100, 4.99, '2007-04-30 19:15:44.996577'); -INSERT INTO dvds.payment VALUES (25881, 331, 1, 3505, 4.99, '2007-04-05 22:47:58.996577'); -INSERT INTO dvds.payment VALUES (25882, 331, 1, 3613, 4.99, '2007-04-06 04:14:19.996577'); -INSERT INTO dvds.payment VALUES (25883, 331, 2, 3871, 8.99, '2007-04-06 16:27:17.996577'); -INSERT INTO dvds.payment VALUES (25884, 331, 1, 4051, 4.99, '2007-04-07 02:05:54.996577'); -INSERT INTO dvds.payment VALUES (25885, 331, 2, 4063, 5.99, '2007-04-07 02:52:23.996577'); -INSERT INTO dvds.payment VALUES (25886, 331, 1, 4326, 10.99, '2007-04-07 16:29:48.996577'); -INSERT INTO dvds.payment VALUES (25887, 331, 1, 5152, 2.99, '2007-04-09 07:03:10.996577'); -INSERT INTO dvds.payment VALUES (25888, 331, 1, 5885, 1.99, '2007-04-10 18:02:16.996577'); -INSERT INTO dvds.payment VALUES (25889, 331, 1, 5947, 5.99, '2007-04-10 21:36:08.996577'); -INSERT INTO dvds.payment VALUES (25890, 331, 1, 8231, 0.99, '2007-04-28 22:43:03.996577'); -INSERT INTO dvds.payment VALUES (25891, 331, 2, 8995, 4.99, '2007-04-30 03:21:37.996577'); -INSERT INTO dvds.payment VALUES (25892, 331, 1, 9401, 5.99, '2007-04-30 18:46:45.996577'); -INSERT INTO dvds.payment VALUES (25893, 331, 2, 10188, 6.99, '2007-04-30 22:48:07.996577'); -INSERT INTO dvds.payment VALUES (25894, 332, 1, 4100, 6.99, '2007-04-07 04:49:18.996577'); -INSERT INTO dvds.payment VALUES (25895, 332, 1, 4302, 6.99, '2007-04-07 15:16:19.996577'); -INSERT INTO dvds.payment VALUES (25896, 332, 2, 5116, 2.99, '2007-04-09 05:38:38.996577'); -INSERT INTO dvds.payment VALUES (25897, 332, 1, 5277, 1.99, '2007-04-09 13:09:08.996577'); -INSERT INTO dvds.payment VALUES (25898, 332, 2, 5381, 2.99, '2007-04-09 17:39:37.996577'); -INSERT INTO dvds.payment VALUES (25899, 332, 2, 5388, 0.99, '2007-04-09 17:53:51.996577'); -INSERT INTO dvds.payment VALUES (25900, 332, 1, 5440, 0.99, '2007-04-09 20:13:43.996577'); -INSERT INTO dvds.payment VALUES (25901, 332, 2, 7049, 7.99, '2007-04-27 02:01:07.996577'); -INSERT INTO dvds.payment VALUES (25902, 332, 2, 7418, 2.99, '2007-04-27 15:27:35.996577'); -INSERT INTO dvds.payment VALUES (25903, 332, 2, 7577, 8.99, '2007-04-27 21:24:33.996577'); -INSERT INTO dvds.payment VALUES (25904, 332, 2, 7578, 4.99, '2007-04-27 21:26:43.996577'); -INSERT INTO dvds.payment VALUES (25905, 332, 2, 7934, 8.99, '2007-04-28 11:01:36.996577'); -INSERT INTO dvds.payment VALUES (25906, 332, 2, 8173, 6.99, '2007-04-28 20:04:10.996577'); -INSERT INTO dvds.payment VALUES (25907, 332, 1, 9324, 1.99, '2007-04-30 15:57:18.996577'); -INSERT INTO dvds.payment VALUES (25908, 332, 1, 9388, 5.99, '2007-04-30 17:55:48.996577'); -INSERT INTO dvds.payment VALUES (25909, 332, 1, 9921, 0.99, '2007-04-30 13:27:47.996577'); -INSERT INTO dvds.payment VALUES (25910, 332, 1, 10026, 4.99, '2007-04-30 17:00:17.996577'); -INSERT INTO dvds.payment VALUES (25911, 333, 2, 5032, 0.99, '2007-04-09 01:08:13.996577'); -INSERT INTO dvds.payment VALUES (25912, 333, 1, 5645, 1.99, '2007-04-10 05:26:47.996577'); -INSERT INTO dvds.payment VALUES (25913, 333, 2, 5892, 4.99, '2007-04-10 18:31:08.996577'); -INSERT INTO dvds.payment VALUES (25914, 333, 2, 6275, 0.99, '2007-04-11 14:40:37.996577'); -INSERT INTO dvds.payment VALUES (25915, 333, 2, 6931, 4.99, '2007-04-26 21:31:23.996577'); -INSERT INTO dvds.payment VALUES (25916, 333, 2, 6958, 0.99, '2007-04-26 22:31:07.996577'); -INSERT INTO dvds.payment VALUES (25917, 333, 2, 7076, 6.99, '2007-04-27 02:40:40.996577'); -INSERT INTO dvds.payment VALUES (25918, 333, 2, 7246, 0.99, '2007-04-27 08:59:07.996577'); -INSERT INTO dvds.payment VALUES (25919, 333, 1, 8719, 4.99, '2007-04-29 16:14:11.996577'); -INSERT INTO dvds.payment VALUES (25920, 333, 2, 9148, 4.99, '2007-04-30 09:07:36.996577'); -INSERT INTO dvds.payment VALUES (25921, 333, 2, 9338, 10.99, '2007-04-30 16:31:39.996577'); -INSERT INTO dvds.payment VALUES (25922, 333, 2, 10035, 4.99, '2007-04-30 17:15:12.996577'); -INSERT INTO dvds.payment VALUES (25923, 333, 1, 10062, 2.99, '2007-04-30 17:53:21.996577'); -INSERT INTO dvds.payment VALUES (25924, 334, 1, 3662, 4.99, '2007-04-06 06:40:14.996577'); -INSERT INTO dvds.payment VALUES (25925, 334, 1, 4603, 6.99, '2007-04-08 05:25:33.996577'); -INSERT INTO dvds.payment VALUES (25926, 334, 2, 5014, 4.99, '2007-04-09 00:20:15.996577'); -INSERT INTO dvds.payment VALUES (25927, 334, 2, 5434, 0.99, '2007-04-09 19:53:46.996577'); -INSERT INTO dvds.payment VALUES (25928, 334, 2, 5818, 5.99, '2007-04-10 14:19:38.996577'); -INSERT INTO dvds.payment VALUES (25929, 334, 1, 5845, 4.99, '2007-04-10 15:51:40.996577'); -INSERT INTO dvds.payment VALUES (25930, 334, 2, 6641, 5.99, '2007-04-12 09:01:40.996577'); -INSERT INTO dvds.payment VALUES (25931, 334, 2, 6749, 4.99, '2007-04-12 13:11:31.996577'); -INSERT INTO dvds.payment VALUES (25932, 334, 1, 6987, 2.99, '2007-04-26 23:28:16.996577'); -INSERT INTO dvds.payment VALUES (25933, 334, 1, 8977, 7.99, '2007-04-30 02:42:33.996577'); -INSERT INTO dvds.payment VALUES (25934, 334, 1, 9633, 2.99, '2007-04-30 03:32:34.996577'); -INSERT INTO dvds.payment VALUES (25935, 334, 1, 10207, 3.99, '2007-04-30 23:21:27.996577'); -INSERT INTO dvds.payment VALUES (25936, 335, 1, 3607, 0.99, '2007-04-06 03:58:35.996577'); -INSERT INTO dvds.payment VALUES (25937, 335, 2, 4016, 0.99, '2007-04-06 23:34:16.996577'); -INSERT INTO dvds.payment VALUES (25938, 335, 2, 4032, 2.99, '2007-04-07 01:02:39.996577'); -INSERT INTO dvds.payment VALUES (25939, 335, 1, 4279, 4.99, '2007-04-07 13:30:19.996577'); -INSERT INTO dvds.payment VALUES (25940, 335, 1, 4387, 8.99, '2007-04-07 19:25:13.996577'); -INSERT INTO dvds.payment VALUES (25941, 335, 1, 5024, 4.99, '2007-04-09 00:53:38.996577'); -INSERT INTO dvds.payment VALUES (25942, 335, 1, 5252, 0.99, '2007-04-09 12:09:10.996577'); -INSERT INTO dvds.payment VALUES (25943, 335, 2, 5728, 2.99, '2007-04-10 09:54:40.996577'); -INSERT INTO dvds.payment VALUES (25944, 335, 1, 6624, 7.99, '2007-04-12 07:34:16.996577'); -INSERT INTO dvds.payment VALUES (25945, 335, 1, 6906, 0.99, '2007-04-12 20:31:28.996577'); -INSERT INTO dvds.payment VALUES (25946, 335, 2, 8634, 3.99, '2007-04-29 12:48:23.996577'); -INSERT INTO dvds.payment VALUES (25947, 335, 1, 8855, 2.99, '2007-04-29 22:08:36.996577'); -INSERT INTO dvds.payment VALUES (25948, 335, 1, 9125, 5.99, '2007-04-30 08:12:05.996577'); -INSERT INTO dvds.payment VALUES (25949, 335, 2, 9361, 4.99, '2007-04-30 17:12:15.996577'); -INSERT INTO dvds.payment VALUES (25950, 335, 1, 9428, 0.99, '2007-04-30 19:47:03.996577'); -INSERT INTO dvds.payment VALUES (25951, 336, 2, 4323, 5.99, '2007-04-07 16:24:19.996577'); -INSERT INTO dvds.payment VALUES (25952, 336, 1, 4595, 2.99, '2007-04-08 05:08:51.996577'); -INSERT INTO dvds.payment VALUES (25953, 336, 2, 5649, 2.99, '2007-04-10 05:43:33.996577'); -INSERT INTO dvds.payment VALUES (25954, 336, 2, 5667, 0.99, '2007-04-10 06:39:29.996577'); -INSERT INTO dvds.payment VALUES (25955, 336, 2, 6263, 4.99, '2007-04-11 14:02:16.996577'); -INSERT INTO dvds.payment VALUES (25956, 336, 2, 6382, 6.99, '2007-04-11 20:27:19.996577'); -INSERT INTO dvds.payment VALUES (25957, 336, 2, 8275, 4.99, '2007-04-29 00:04:13.996577'); -INSERT INTO dvds.payment VALUES (25958, 336, 1, 8407, 6.99, '2007-04-29 05:05:28.996577'); -INSERT INTO dvds.payment VALUES (25959, 336, 2, 8607, 4.99, '2007-04-29 11:46:26.996577'); -INSERT INTO dvds.payment VALUES (25960, 336, 2, 8951, 8.99, '2007-04-30 01:46:50.996577'); -INSERT INTO dvds.payment VALUES (25961, 336, 2, 9306, 0.99, '2007-04-30 15:15:43.996577'); -INSERT INTO dvds.payment VALUES (25962, 336, 1, 10055, 0.99, '2007-04-30 17:44:24.996577'); -INSERT INTO dvds.payment VALUES (25963, 337, 1, 3626, 5.99, '2007-04-06 04:44:01.996577'); -INSERT INTO dvds.payment VALUES (25964, 337, 1, 4091, 6.99, '2007-04-07 04:22:04.996577'); -INSERT INTO dvds.payment VALUES (25965, 337, 2, 4093, 4.99, '2007-04-07 04:23:16.996577'); -INSERT INTO dvds.payment VALUES (25966, 337, 2, 4855, 4.99, '2007-04-08 17:14:16.996577'); -INSERT INTO dvds.payment VALUES (25967, 337, 1, 5050, 2.99, '2007-04-09 02:23:04.996577'); -INSERT INTO dvds.payment VALUES (25968, 337, 1, 6212, 0.99, '2007-04-11 11:09:14.996577'); -INSERT INTO dvds.payment VALUES (25969, 337, 2, 6305, 7.99, '2007-04-11 16:30:51.996577'); -INSERT INTO dvds.payment VALUES (25970, 337, 1, 6620, 2.99, '2007-04-12 07:19:29.996577'); -INSERT INTO dvds.payment VALUES (25971, 337, 1, 7410, 4.99, '2007-04-27 15:10:25.996577'); -INSERT INTO dvds.payment VALUES (25972, 337, 1, 8516, 4.99, '2007-04-29 08:28:29.996577'); -INSERT INTO dvds.payment VALUES (25973, 337, 2, 8919, 8.99, '2007-04-30 00:25:29.996577'); -INSERT INTO dvds.payment VALUES (25974, 337, 2, 9051, 5.99, '2007-04-30 05:34:20.996577'); -INSERT INTO dvds.payment VALUES (25975, 338, 1, 3516, 0.99, '2007-04-05 23:18:56.996577'); -INSERT INTO dvds.payment VALUES (25976, 338, 2, 3772, 2.99, '2007-04-06 11:51:19.996577'); -INSERT INTO dvds.payment VALUES (25977, 338, 2, 4104, 5.99, '2007-04-07 04:54:07.996577'); -INSERT INTO dvds.payment VALUES (25978, 338, 2, 4779, 4.99, '2007-04-08 14:22:07.996577'); -INSERT INTO dvds.payment VALUES (25979, 338, 1, 5309, 4.99, '2007-04-09 14:28:42.996577'); -INSERT INTO dvds.payment VALUES (25980, 338, 1, 6236, 2.99, '2007-04-11 12:46:43.996577'); -INSERT INTO dvds.payment VALUES (25981, 338, 1, 6360, 4.99, '2007-04-11 19:36:06.996577'); -INSERT INTO dvds.payment VALUES (25982, 338, 2, 7584, 3.99, '2007-04-27 21:44:12.996577'); -INSERT INTO dvds.payment VALUES (25983, 338, 1, 8766, 0.99, '2007-04-29 18:09:30.996577'); -INSERT INTO dvds.payment VALUES (25984, 338, 1, 9485, 7.99, '2007-04-30 22:01:06.996577'); -INSERT INTO dvds.payment VALUES (25985, 339, 2, 3536, 2.99, '2007-04-06 00:04:37.996577'); -INSERT INTO dvds.payment VALUES (25986, 339, 1, 4243, 4.99, '2007-04-07 12:08:24.996577'); -INSERT INTO dvds.payment VALUES (25987, 339, 1, 4467, 0.99, '2007-04-07 22:42:18.996577'); -INSERT INTO dvds.payment VALUES (25988, 339, 2, 4967, 3.99, '2007-04-08 22:16:29.996577'); -INSERT INTO dvds.payment VALUES (25989, 339, 1, 5720, 3.99, '2007-04-10 09:37:38.996577'); -INSERT INTO dvds.payment VALUES (25990, 339, 1, 6072, 6.99, '2007-04-11 03:21:06.996577'); -INSERT INTO dvds.payment VALUES (25991, 339, 1, 6425, 0.99, '2007-04-11 22:23:18.996577'); -INSERT INTO dvds.payment VALUES (25992, 339, 2, 6682, 7.99, '2007-04-12 10:41:09.996577'); -INSERT INTO dvds.payment VALUES (25993, 339, 2, 7244, 2.99, '2007-04-27 08:55:59.996577'); -INSERT INTO dvds.payment VALUES (25994, 339, 2, 7973, 4.99, '2007-04-28 12:38:32.996577'); -INSERT INTO dvds.payment VALUES (25995, 339, 1, 8968, 0.99, '2007-04-30 02:25:58.996577'); -INSERT INTO dvds.payment VALUES (25996, 339, 2, 9208, 5.99, '2007-04-30 11:22:29.996577'); -INSERT INTO dvds.payment VALUES (25997, 339, 1, 9663, 4.99, '2007-04-30 04:39:14.996577'); -INSERT INTO dvds.payment VALUES (25998, 340, 2, 4475, 2.99, '2007-04-07 22:55:56.996577'); -INSERT INTO dvds.payment VALUES (25999, 340, 1, 4742, 0.99, '2007-04-08 12:03:49.996577'); -INSERT INTO dvds.payment VALUES (26000, 340, 2, 6381, 4.99, '2007-04-11 20:27:14.996577'); -INSERT INTO dvds.payment VALUES (26001, 340, 2, 7617, 2.99, '2007-04-27 22:47:06.996577'); -INSERT INTO dvds.payment VALUES (26002, 340, 2, 8274, 4.99, '2007-04-29 00:02:58.996577'); -INSERT INTO dvds.payment VALUES (26003, 340, 1, 8541, 0.99, '2007-04-29 09:23:27.996577'); -INSERT INTO dvds.payment VALUES (26004, 340, 2, 8551, 4.99, '2007-04-29 09:41:37.996577'); -INSERT INTO dvds.payment VALUES (26005, 340, 1, 8606, 4.99, '2007-04-29 11:42:50.996577'); -INSERT INTO dvds.payment VALUES (26006, 340, 1, 9834, 2.99, '2007-04-30 10:34:08.996577'); -INSERT INTO dvds.payment VALUES (26007, 341, 2, 3938, 4.99, '2007-04-06 19:44:11.996577'); -INSERT INTO dvds.payment VALUES (26008, 341, 1, 4624, 2.99, '2007-04-08 06:40:43.996577'); -INSERT INTO dvds.payment VALUES (26009, 341, 2, 5487, 4.99, '2007-04-09 22:30:16.996577'); -INSERT INTO dvds.payment VALUES (26010, 341, 2, 5931, 0.99, '2007-04-10 20:32:45.996577'); -INSERT INTO dvds.payment VALUES (26011, 341, 2, 7473, 2.99, '2007-04-27 17:34:06.996577'); -INSERT INTO dvds.payment VALUES (26012, 341, 1, 8661, 2.99, '2007-04-29 13:56:50.996577'); -INSERT INTO dvds.payment VALUES (26013, 341, 1, 8728, 9.99, '2007-04-29 16:41:15.996577'); -INSERT INTO dvds.payment VALUES (26014, 342, 1, 5617, 0.99, '2007-04-10 03:57:16.996577'); -INSERT INTO dvds.payment VALUES (26015, 342, 2, 6060, 4.99, '2007-04-11 02:34:43.996577'); -INSERT INTO dvds.payment VALUES (26016, 342, 2, 6429, 8.99, '2007-04-11 22:31:16.996577'); -INSERT INTO dvds.payment VALUES (26017, 342, 1, 6736, 2.99, '2007-04-12 12:45:16.996577'); -INSERT INTO dvds.payment VALUES (26018, 342, 2, 6787, 7.99, '2007-04-12 15:01:54.996577'); -INSERT INTO dvds.payment VALUES (26019, 342, 2, 6997, 0.99, '2007-04-26 23:42:28.996577'); -INSERT INTO dvds.payment VALUES (26020, 342, 2, 7280, 2.99, '2007-04-27 10:19:18.996577'); -INSERT INTO dvds.payment VALUES (26021, 342, 1, 9164, 2.99, '2007-04-30 09:52:40.996577'); -INSERT INTO dvds.payment VALUES (26022, 342, 1, 9526, 0.99, '2007-04-30 23:30:48.996577'); -INSERT INTO dvds.payment VALUES (26023, 342, 2, 9948, 5.99, '2007-04-30 14:18:07.996577'); -INSERT INTO dvds.payment VALUES (26024, 342, 1, 9955, 0.99, '2007-04-30 14:29:52.996577'); -INSERT INTO dvds.payment VALUES (26025, 342, 2, 9956, 4.99, '2007-04-30 14:32:13.996577'); -INSERT INTO dvds.payment VALUES (26026, 343, 1, 3978, 5.99, '2007-04-06 21:32:59.996577'); -INSERT INTO dvds.payment VALUES (26027, 343, 1, 4472, 7.99, '2007-04-07 22:50:32.996577'); -INSERT INTO dvds.payment VALUES (26028, 343, 2, 5097, 4.99, '2007-04-09 04:38:17.996577'); -INSERT INTO dvds.payment VALUES (26029, 343, 1, 5337, 3.99, '2007-04-09 15:32:16.996577'); -INSERT INTO dvds.payment VALUES (26030, 343, 1, 7069, 6.99, '2007-04-27 02:28:01.996577'); -INSERT INTO dvds.payment VALUES (26031, 343, 2, 8012, 5.99, '2007-04-28 13:57:26.996577'); -INSERT INTO dvds.payment VALUES (26032, 343, 2, 8088, 9.99, '2007-04-28 16:52:15.996577'); -INSERT INTO dvds.payment VALUES (26033, 343, 2, 9458, 5.99, '2007-04-30 20:53:00.996577'); -INSERT INTO dvds.payment VALUES (26034, 343, 2, 9739, 2.99, '2007-04-30 07:36:29.996577'); -INSERT INTO dvds.payment VALUES (26035, 344, 2, 4028, 5.99, '2007-04-07 00:47:40.996577'); -INSERT INTO dvds.payment VALUES (26036, 344, 2, 4347, 3.99, '2007-04-07 17:27:23.996577'); -INSERT INTO dvds.payment VALUES (26037, 344, 2, 6363, 5.99, '2007-04-11 19:41:45.996577'); -INSERT INTO dvds.payment VALUES (26038, 344, 2, 7480, 4.99, '2007-04-27 17:48:19.996577'); -INSERT INTO dvds.payment VALUES (26039, 344, 2, 8561, 2.99, '2007-04-29 09:57:38.996577'); -INSERT INTO dvds.payment VALUES (26040, 344, 2, 9788, 4.99, '2007-04-30 08:56:47.996577'); -INSERT INTO dvds.payment VALUES (26041, 345, 2, 4422, 2.99, '2007-04-07 20:38:11.996577'); -INSERT INTO dvds.payment VALUES (26042, 345, 1, 4425, 2.99, '2007-04-07 20:51:10.996577'); -INSERT INTO dvds.payment VALUES (26043, 345, 2, 4450, 4.99, '2007-04-07 21:48:31.996577'); -INSERT INTO dvds.payment VALUES (26044, 345, 2, 5508, 3.99, '2007-04-09 23:18:27.996577'); -INSERT INTO dvds.payment VALUES (26045, 345, 1, 6307, 7.99, '2007-04-11 16:32:55.996577'); -INSERT INTO dvds.payment VALUES (26046, 345, 1, 7092, 6.99, '2007-04-27 03:14:26.996577'); -INSERT INTO dvds.payment VALUES (26047, 345, 2, 8129, 2.99, '2007-04-28 18:15:28.996577'); -INSERT INTO dvds.payment VALUES (26048, 345, 2, 8694, 8.99, '2007-04-29 15:13:14.996577'); -INSERT INTO dvds.payment VALUES (26049, 345, 1, 9163, 4.99, '2007-04-30 09:51:48.996577'); -INSERT INTO dvds.payment VALUES (26050, 345, 2, 9207, 2.99, '2007-04-30 11:18:23.996577'); -INSERT INTO dvds.payment VALUES (26051, 345, 2, 10215, 8.99, '2007-04-30 23:32:54.996577'); -INSERT INTO dvds.payment VALUES (26052, 346, 2, 4420, 4.99, '2007-04-07 20:35:57.996577'); -INSERT INTO dvds.payment VALUES (26053, 346, 1, 4958, 8.99, '2007-04-08 21:48:18.996577'); -INSERT INTO dvds.payment VALUES (26054, 346, 1, 5428, 4.99, '2007-04-09 19:41:16.996577'); -INSERT INTO dvds.payment VALUES (26055, 346, 2, 5557, 4.99, '2007-04-10 01:38:47.996577'); -INSERT INTO dvds.payment VALUES (26056, 346, 2, 6136, 4.99, '2007-04-11 07:02:35.996577'); -INSERT INTO dvds.payment VALUES (26057, 346, 2, 6323, 2.99, '2007-04-11 17:30:45.996577'); -INSERT INTO dvds.payment VALUES (26058, 346, 2, 6881, 8.99, '2007-04-12 19:15:01.996577'); -INSERT INTO dvds.payment VALUES (26059, 346, 2, 7943, 6.99, '2007-04-28 11:19:21.996577'); -INSERT INTO dvds.payment VALUES (26060, 346, 2, 8272, 5.99, '2007-04-28 23:58:17.996577'); -INSERT INTO dvds.payment VALUES (26061, 346, 1, 8505, 6.99, '2007-04-29 07:51:18.996577'); -INSERT INTO dvds.payment VALUES (26062, 346, 2, 8543, 0.99, '2007-04-29 09:30:23.996577'); -INSERT INTO dvds.payment VALUES (26063, 346, 2, 8732, 8.99, '2007-04-29 16:53:29.996577'); -INSERT INTO dvds.payment VALUES (26064, 346, 2, 9566, 4.99, '2007-04-30 01:00:36.996577'); -INSERT INTO dvds.payment VALUES (26065, 346, 1, 9848, 4.99, '2007-04-30 11:12:59.996577'); -INSERT INTO dvds.payment VALUES (26066, 346, 1, 9927, 2.99, '2007-04-30 13:40:39.996577'); -INSERT INTO dvds.payment VALUES (26067, 347, 2, 3605, 0.99, '2007-04-06 03:55:41.996577'); -INSERT INTO dvds.payment VALUES (26068, 347, 2, 3666, 4.99, '2007-04-06 06:56:09.996577'); -INSERT INTO dvds.payment VALUES (26069, 347, 1, 4232, 5.99, '2007-04-07 11:17:38.996577'); -INSERT INTO dvds.payment VALUES (26070, 347, 1, 4523, 6.99, '2007-04-08 01:35:25.996577'); -INSERT INTO dvds.payment VALUES (26071, 347, 2, 5471, 0.99, '2007-04-09 21:40:18.996577'); -INSERT INTO dvds.payment VALUES (26072, 347, 1, 5819, 2.99, '2007-04-10 14:24:46.996577'); -INSERT INTO dvds.payment VALUES (26073, 347, 2, 6121, 1.99, '2007-04-11 06:23:53.996577'); -INSERT INTO dvds.payment VALUES (26074, 347, 1, 7811, 0.99, '2007-04-28 06:34:27.996577'); -INSERT INTO dvds.payment VALUES (26075, 347, 2, 8148, 4.99, '2007-04-28 19:08:13.996577'); -INSERT INTO dvds.payment VALUES (26076, 347, 2, 8153, 4.99, '2007-04-28 19:24:15.996577'); -INSERT INTO dvds.payment VALUES (26077, 347, 2, 8176, 4.99, '2007-04-28 20:10:34.996577'); -INSERT INTO dvds.payment VALUES (26078, 347, 2, 8378, 4.99, '2007-04-29 03:57:01.996577'); -INSERT INTO dvds.payment VALUES (26079, 347, 2, 8771, 2.99, '2007-04-29 18:23:07.996577'); -INSERT INTO dvds.payment VALUES (26080, 347, 1, 9013, 4.99, '2007-04-30 03:47:46.996577'); -INSERT INTO dvds.payment VALUES (26081, 347, 1, 9582, 4.99, '2007-04-30 01:33:45.996577'); -INSERT INTO dvds.payment VALUES (26082, 347, 1, 9856, 3.99, '2007-04-30 11:29:01.996577'); -INSERT INTO dvds.payment VALUES (26083, 347, 1, 9876, 2.99, '2007-04-30 12:06:17.996577'); -INSERT INTO dvds.payment VALUES (26084, 348, 2, 3494, 4.99, '2007-04-05 22:15:56.996577'); -INSERT INTO dvds.payment VALUES (26085, 348, 2, 3610, 4.99, '2007-04-06 04:05:25.996577'); -INSERT INTO dvds.payment VALUES (26086, 348, 2, 4556, 9.99, '2007-04-08 03:17:07.996577'); -INSERT INTO dvds.payment VALUES (26087, 348, 2, 4633, 0.99, '2007-04-08 07:08:05.996577'); -INSERT INTO dvds.payment VALUES (26088, 348, 1, 4699, 0.99, '2007-04-08 10:05:22.996577'); -INSERT INTO dvds.payment VALUES (26089, 348, 1, 4807, 8.99, '2007-04-08 15:30:14.996577'); -INSERT INTO dvds.payment VALUES (26090, 348, 1, 5345, 4.99, '2007-04-09 15:56:44.996577'); -INSERT INTO dvds.payment VALUES (26091, 348, 2, 5965, 0.99, '2007-04-10 22:20:18.996577'); -INSERT INTO dvds.payment VALUES (26092, 348, 2, 6776, 2.99, '2007-04-12 14:30:35.996577'); -INSERT INTO dvds.payment VALUES (26093, 348, 2, 7380, 2.99, '2007-04-27 14:05:27.996577'); -INSERT INTO dvds.payment VALUES (26094, 348, 1, 7482, 6.99, '2007-04-27 17:52:42.996577'); -INSERT INTO dvds.payment VALUES (26095, 348, 2, 7825, 4.99, '2007-04-28 07:03:23.996577'); -INSERT INTO dvds.payment VALUES (26096, 348, 1, 8500, 2.99, '2007-04-29 07:40:27.996577'); -INSERT INTO dvds.payment VALUES (26097, 348, 1, 8569, 4.99, '2007-04-29 10:07:43.996577'); -INSERT INTO dvds.payment VALUES (26098, 348, 2, 8682, 4.99, '2007-04-29 14:43:52.996577'); -INSERT INTO dvds.payment VALUES (26099, 348, 2, 9482, 2.99, '2007-04-30 21:57:42.996577'); -INSERT INTO dvds.payment VALUES (26100, 349, 2, 3488, 3.99, '2007-04-05 22:01:15.996577'); -INSERT INTO dvds.payment VALUES (26101, 349, 1, 4190, 2.99, '2007-04-07 09:21:05.996577'); -INSERT INTO dvds.payment VALUES (26102, 349, 2, 4494, 5.99, '2007-04-08 00:11:11.996577'); -INSERT INTO dvds.payment VALUES (26103, 349, 1, 4881, 0.99, '2007-04-08 18:09:00.996577'); -INSERT INTO dvds.payment VALUES (26104, 349, 1, 5433, 4.99, '2007-04-09 19:50:26.996577'); -INSERT INTO dvds.payment VALUES (26105, 349, 1, 7002, 4.99, '2007-04-26 23:54:40.996577'); -INSERT INTO dvds.payment VALUES (26106, 349, 1, 7046, 4.99, '2007-04-27 01:56:22.996577'); -INSERT INTO dvds.payment VALUES (26107, 349, 2, 7702, 2.99, '2007-04-28 02:24:31.996577'); -INSERT INTO dvds.payment VALUES (26108, 349, 2, 8297, 4.99, '2007-04-29 01:14:12.996577'); -INSERT INTO dvds.payment VALUES (26109, 349, 1, 9262, 1.99, '2007-04-30 13:13:28.996577'); -INSERT INTO dvds.payment VALUES (26110, 349, 1, 9670, 5.99, '2007-04-30 05:01:59.996577'); -INSERT INTO dvds.payment VALUES (26111, 349, 1, 9731, 0.99, '2007-04-30 07:23:13.996577'); -INSERT INTO dvds.payment VALUES (26112, 350, 1, 3529, 0.99, '2007-04-05 23:43:52.996577'); -INSERT INTO dvds.payment VALUES (26113, 350, 1, 3893, 5.99, '2007-04-06 17:27:57.996577'); -INSERT INTO dvds.payment VALUES (26114, 350, 1, 4767, 2.99, '2007-04-08 13:47:19.996577'); -INSERT INTO dvds.payment VALUES (26115, 350, 1, 5240, 0.99, '2007-04-09 11:43:14.996577'); -INSERT INTO dvds.payment VALUES (26116, 350, 1, 5303, 2.99, '2007-04-09 14:12:35.996577'); -INSERT INTO dvds.payment VALUES (26117, 350, 1, 5786, 1.99, '2007-04-10 12:35:10.996577'); -INSERT INTO dvds.payment VALUES (26118, 350, 2, 6408, 3.99, '2007-04-11 21:31:28.996577'); -INSERT INTO dvds.payment VALUES (26119, 350, 2, 7416, 4.99, '2007-04-27 15:23:51.996577'); -INSERT INTO dvds.payment VALUES (26120, 351, 1, 3836, 2.99, '2007-04-06 14:54:30.996577'); -INSERT INTO dvds.payment VALUES (26121, 351, 1, 4544, 0.99, '2007-04-08 02:39:30.996577'); -INSERT INTO dvds.payment VALUES (26122, 351, 1, 4756, 1.99, '2007-04-08 12:52:26.996577'); -INSERT INTO dvds.payment VALUES (26123, 351, 2, 4761, 5.99, '2007-04-08 13:20:11.996577'); -INSERT INTO dvds.payment VALUES (26124, 351, 1, 5280, 0.99, '2007-04-09 13:23:33.996577'); -INSERT INTO dvds.payment VALUES (26125, 351, 1, 5912, 3.99, '2007-04-10 19:26:48.996577'); -INSERT INTO dvds.payment VALUES (26126, 351, 2, 6180, 3.99, '2007-04-11 09:35:16.996577'); -INSERT INTO dvds.payment VALUES (26127, 351, 1, 6664, 4.99, '2007-04-12 09:56:48.996577'); -INSERT INTO dvds.payment VALUES (26128, 351, 2, 6777, 5.99, '2007-04-12 14:33:06.996577'); -INSERT INTO dvds.payment VALUES (26129, 351, 2, 7630, 4.99, '2007-04-27 23:29:29.996577'); -INSERT INTO dvds.payment VALUES (26130, 351, 2, 8512, 4.99, '2007-04-29 08:16:29.996577'); -INSERT INTO dvds.payment VALUES (26131, 351, 1, 9707, 7.99, '2007-04-30 06:12:44.996577'); -INSERT INTO dvds.payment VALUES (26132, 351, 2, 10119, 0.99, '2007-04-30 19:49:25.996577'); -INSERT INTO dvds.payment VALUES (26133, 352, 2, 4116, 4.99, '2007-04-07 05:24:39.996577'); -INSERT INTO dvds.payment VALUES (26134, 352, 2, 6329, 5.99, '2007-04-11 17:39:04.996577'); -INSERT INTO dvds.payment VALUES (26135, 352, 1, 7033, 2.99, '2007-04-27 01:31:51.996577'); -INSERT INTO dvds.payment VALUES (26136, 352, 1, 7419, 7.99, '2007-04-27 15:32:41.996577'); -INSERT INTO dvds.payment VALUES (26137, 352, 2, 7512, 6.99, '2007-04-27 19:09:06.996577'); -INSERT INTO dvds.payment VALUES (26138, 352, 1, 7579, 4.99, '2007-04-27 21:35:07.996577'); -INSERT INTO dvds.payment VALUES (26139, 352, 1, 7845, 5.99, '2007-04-28 07:46:33.996577'); -INSERT INTO dvds.payment VALUES (26140, 352, 1, 7886, 2.99, '2007-04-28 09:06:21.996577'); -INSERT INTO dvds.payment VALUES (26141, 352, 1, 9463, 0.99, '2007-04-30 20:59:23.996577'); -INSERT INTO dvds.payment VALUES (26142, 353, 2, 4380, 5.99, '2007-04-07 19:03:26.996577'); -INSERT INTO dvds.payment VALUES (26143, 353, 2, 6559, 1.99, '2007-04-12 03:49:01.996577'); -INSERT INTO dvds.payment VALUES (26144, 353, 1, 6610, 3.99, '2007-04-12 06:48:28.996577'); -INSERT INTO dvds.payment VALUES (26145, 353, 2, 7993, 3.99, '2007-04-28 13:25:07.996577'); -INSERT INTO dvds.payment VALUES (26146, 353, 2, 10071, 2.99, '2007-04-30 18:18:01.996577'); -INSERT INTO dvds.payment VALUES (26147, 354, 2, 3821, 2.99, '2007-04-06 14:04:46.996577'); -INSERT INTO dvds.payment VALUES (26148, 354, 2, 4034, 0.99, '2007-04-07 01:04:59.996577'); -INSERT INTO dvds.payment VALUES (26149, 354, 1, 4449, 5.99, '2007-04-07 21:47:24.996577'); -INSERT INTO dvds.payment VALUES (26150, 354, 2, 4745, 2.99, '2007-04-08 12:13:35.996577'); -INSERT INTO dvds.payment VALUES (26151, 354, 1, 5354, 4.99, '2007-04-09 16:32:59.996577'); -INSERT INTO dvds.payment VALUES (26152, 354, 2, 5556, 4.99, '2007-04-10 01:38:43.996577'); -INSERT INTO dvds.payment VALUES (26153, 354, 1, 5873, 3.99, '2007-04-10 17:30:36.996577'); -INSERT INTO dvds.payment VALUES (26154, 354, 1, 6054, 0.99, '2007-04-11 02:27:05.996577'); -INSERT INTO dvds.payment VALUES (26155, 354, 1, 6838, 4.99, '2007-04-12 17:29:56.996577'); -INSERT INTO dvds.payment VALUES (26156, 354, 1, 6926, 0.99, '2007-04-26 21:21:11.996577'); -INSERT INTO dvds.payment VALUES (26157, 354, 1, 6939, 5.99, '2007-04-26 21:46:17.996577'); -INSERT INTO dvds.payment VALUES (26158, 354, 2, 7148, 0.99, '2007-04-27 05:32:35.996577'); -INSERT INTO dvds.payment VALUES (26159, 354, 2, 7235, 2.99, '2007-04-27 08:37:56.996577'); -INSERT INTO dvds.payment VALUES (26160, 354, 2, 7241, 0.99, '2007-04-27 08:54:15.996577'); -INSERT INTO dvds.payment VALUES (26161, 354, 2, 8321, 4.99, '2007-04-29 02:19:20.996577'); -INSERT INTO dvds.payment VALUES (26162, 354, 2, 8477, 8.99, '2007-04-29 07:09:02.996577'); -INSERT INTO dvds.payment VALUES (26163, 354, 1, 8609, 4.99, '2007-04-29 11:47:51.996577'); -INSERT INTO dvds.payment VALUES (26164, 354, 2, 8921, 0.99, '2007-04-30 00:32:28.996577'); -INSERT INTO dvds.payment VALUES (26165, 354, 1, 9130, 2.99, '2007-04-30 08:23:36.996577'); -INSERT INTO dvds.payment VALUES (26166, 355, 1, 3567, 5.99, '2007-04-06 01:38:02.996577'); -INSERT INTO dvds.payment VALUES (26167, 355, 1, 3730, 6.99, '2007-04-06 09:59:50.996577'); -INSERT INTO dvds.payment VALUES (26168, 355, 1, 5210, 4.99, '2007-04-09 09:52:45.996577'); -INSERT INTO dvds.payment VALUES (26169, 355, 1, 5564, 5.99, '2007-04-10 01:51:31.996577'); -INSERT INTO dvds.payment VALUES (26170, 355, 1, 6127, 0.99, '2007-04-11 06:35:25.996577'); -INSERT INTO dvds.payment VALUES (26171, 355, 2, 6262, 6.99, '2007-04-11 14:01:50.996577'); -INSERT INTO dvds.payment VALUES (26172, 355, 1, 6437, 2.99, '2007-04-11 22:48:55.996577'); -INSERT INTO dvds.payment VALUES (26173, 355, 2, 6669, 4.99, '2007-04-12 10:08:21.996577'); -INSERT INTO dvds.payment VALUES (26174, 355, 2, 7108, 4.99, '2007-04-27 03:56:58.996577'); -INSERT INTO dvds.payment VALUES (26175, 355, 2, 7477, 5.99, '2007-04-27 17:39:29.996577'); -INSERT INTO dvds.payment VALUES (26176, 355, 2, 8418, 1.99, '2007-04-29 05:22:47.996577'); -INSERT INTO dvds.payment VALUES (26177, 356, 2, 3829, 6.99, '2007-04-06 14:28:06.996577'); -INSERT INTO dvds.payment VALUES (26178, 356, 2, 4599, 4.99, '2007-04-08 05:16:52.996577'); -INSERT INTO dvds.payment VALUES (26179, 356, 1, 5513, 0.99, '2007-04-09 23:34:07.996577'); -INSERT INTO dvds.payment VALUES (26180, 356, 1, 6593, 4.99, '2007-04-12 05:49:43.996577'); -INSERT INTO dvds.payment VALUES (26181, 356, 1, 6648, 0.99, '2007-04-12 09:14:56.996577'); -INSERT INTO dvds.payment VALUES (26182, 356, 1, 7079, 2.99, '2007-04-27 02:50:24.996577'); -INSERT INTO dvds.payment VALUES (26183, 356, 1, 7758, 1.99, '2007-04-28 04:52:07.996577'); -INSERT INTO dvds.payment VALUES (26184, 356, 1, 7902, 0.99, '2007-04-28 09:42:45.996577'); -INSERT INTO dvds.payment VALUES (26185, 356, 1, 8198, 3.99, '2007-04-28 21:36:31.996577'); -INSERT INTO dvds.payment VALUES (26186, 356, 1, 8975, 5.99, '2007-04-30 02:38:44.996577'); -INSERT INTO dvds.payment VALUES (26187, 356, 2, 9037, 4.99, '2007-04-30 04:51:40.996577'); -INSERT INTO dvds.payment VALUES (26188, 356, 2, 9523, 3.99, '2007-04-30 23:24:35.996577'); -INSERT INTO dvds.payment VALUES (26189, 356, 2, 9883, 6.99, '2007-04-30 12:22:03.996577'); -INSERT INTO dvds.payment VALUES (26190, 357, 1, 3865, 3.99, '2007-04-06 16:15:23.996577'); -INSERT INTO dvds.payment VALUES (26191, 357, 1, 4478, 0.99, '2007-04-07 23:07:34.996577'); -INSERT INTO dvds.payment VALUES (26192, 357, 1, 5896, 0.99, '2007-04-10 18:44:22.996577'); -INSERT INTO dvds.payment VALUES (26193, 357, 1, 6288, 8.99, '2007-04-11 15:30:18.996577'); -INSERT INTO dvds.payment VALUES (26194, 357, 2, 6367, 4.99, '2007-04-11 19:46:55.996577'); -INSERT INTO dvds.payment VALUES (26195, 357, 2, 6405, 2.99, '2007-04-11 21:21:38.996577'); -INSERT INTO dvds.payment VALUES (26196, 357, 1, 6839, 0.99, '2007-04-12 17:31:45.996577'); -INSERT INTO dvds.payment VALUES (26197, 357, 1, 7353, 2.99, '2007-04-27 13:07:05.996577'); -INSERT INTO dvds.payment VALUES (26198, 357, 1, 7366, 5.99, '2007-04-27 13:29:43.996577'); -INSERT INTO dvds.payment VALUES (26199, 357, 2, 8041, 2.99, '2007-04-28 15:08:22.996577'); -INSERT INTO dvds.payment VALUES (26200, 357, 1, 8124, 2.99, '2007-04-28 17:57:24.996577'); -INSERT INTO dvds.payment VALUES (26201, 357, 2, 9233, 3.99, '2007-04-30 12:12:41.996577'); -INSERT INTO dvds.payment VALUES (26202, 358, 1, 3753, 2.99, '2007-04-06 11:02:32.996577'); -INSERT INTO dvds.payment VALUES (26203, 358, 1, 3809, 2.99, '2007-04-06 13:45:03.996577'); -INSERT INTO dvds.payment VALUES (26204, 358, 2, 5023, 5.99, '2007-04-09 00:51:42.996577'); -INSERT INTO dvds.payment VALUES (26205, 358, 1, 6362, 2.99, '2007-04-11 19:37:57.996577'); -INSERT INTO dvds.payment VALUES (26206, 358, 1, 8621, 2.99, '2007-04-29 12:21:08.996577'); -INSERT INTO dvds.payment VALUES (26207, 358, 2, 9062, 0.99, '2007-04-30 05:51:43.996577'); -INSERT INTO dvds.payment VALUES (26208, 358, 1, 9568, 0.99, '2007-04-30 01:06:10.996577'); -INSERT INTO dvds.payment VALUES (26209, 358, 1, 10193, 2.99, '2007-04-30 23:01:53.996577'); -INSERT INTO dvds.payment VALUES (26210, 359, 2, 4830, 7.99, '2007-04-08 16:24:49.996577'); -INSERT INTO dvds.payment VALUES (26211, 359, 2, 6424, 9.99, '2007-04-11 22:18:03.996577'); -INSERT INTO dvds.payment VALUES (26212, 359, 1, 6542, 2.99, '2007-04-12 03:22:15.996577'); -INSERT INTO dvds.payment VALUES (26213, 359, 2, 6741, 0.99, '2007-04-12 12:52:42.996577'); -INSERT INTO dvds.payment VALUES (26214, 359, 2, 7098, 0.99, '2007-04-27 03:29:34.996577'); -INSERT INTO dvds.payment VALUES (26215, 359, 1, 7115, 0.99, '2007-04-27 04:11:24.996577'); -INSERT INTO dvds.payment VALUES (26216, 359, 1, 8174, 4.99, '2007-04-28 20:05:18.996577'); -INSERT INTO dvds.payment VALUES (26217, 359, 1, 9898, 4.99, '2007-04-30 12:40:29.996577'); -INSERT INTO dvds.payment VALUES (26218, 359, 2, 10174, 5.99, '2007-04-30 22:08:34.996577'); -INSERT INTO dvds.payment VALUES (26219, 360, 1, 4056, 4.99, '2007-04-07 02:26:02.996577'); -INSERT INTO dvds.payment VALUES (26220, 360, 1, 4487, 7.99, '2007-04-07 23:48:48.996577'); -INSERT INTO dvds.payment VALUES (26221, 360, 2, 5456, 2.99, '2007-04-09 21:00:11.996577'); -INSERT INTO dvds.payment VALUES (26222, 360, 1, 5834, 1.99, '2007-04-10 15:12:38.996577'); -INSERT INTO dvds.payment VALUES (26223, 360, 1, 5995, 3.99, '2007-04-10 23:44:05.996577'); -INSERT INTO dvds.payment VALUES (26224, 360, 1, 6442, 0.99, '2007-04-11 22:58:11.996577'); -INSERT INTO dvds.payment VALUES (26225, 360, 2, 6770, 5.99, '2007-04-12 14:18:06.996577'); -INSERT INTO dvds.payment VALUES (26226, 360, 1, 7251, 2.99, '2007-04-27 09:13:21.996577'); -INSERT INTO dvds.payment VALUES (26227, 360, 2, 7588, 9.99, '2007-04-27 21:51:57.996577'); -INSERT INTO dvds.payment VALUES (26228, 360, 1, 7654, 4.99, '2007-04-28 00:28:40.996577'); -INSERT INTO dvds.payment VALUES (26229, 360, 2, 7908, 3.99, '2007-04-28 10:01:23.996577'); -INSERT INTO dvds.payment VALUES (26230, 360, 1, 8220, 2.99, '2007-04-28 22:15:07.996577'); -INSERT INTO dvds.payment VALUES (26231, 360, 2, 8361, 2.99, '2007-04-29 03:37:23.996577'); -INSERT INTO dvds.payment VALUES (26232, 360, 1, 9283, 4.99, '2007-04-30 13:53:45.996577'); -INSERT INTO dvds.payment VALUES (26233, 360, 2, 9352, 0.99, '2007-04-30 16:57:52.996577'); -INSERT INTO dvds.payment VALUES (26234, 360, 1, 9623, 2.99, '2007-04-30 02:58:28.996577'); -INSERT INTO dvds.payment VALUES (26235, 360, 2, 9659, 3.99, '2007-04-30 04:30:40.996577'); -INSERT INTO dvds.payment VALUES (26236, 361, 2, 5154, 2.99, '2007-04-09 07:14:44.996577'); -INSERT INTO dvds.payment VALUES (26237, 361, 1, 6152, 0.99, '2007-04-11 07:54:18.996577'); -INSERT INTO dvds.payment VALUES (26238, 361, 2, 6829, 4.99, '2007-04-12 17:07:25.996577'); -INSERT INTO dvds.payment VALUES (26239, 361, 2, 6911, 0.99, '2007-04-12 20:43:00.996577'); -INSERT INTO dvds.payment VALUES (26240, 361, 1, 6914, 1.99, '2007-04-12 20:55:22.996577'); -INSERT INTO dvds.payment VALUES (26241, 361, 1, 7538, 2.99, '2007-04-27 20:06:30.996577'); -INSERT INTO dvds.payment VALUES (26242, 361, 2, 7712, 2.99, '2007-04-28 02:58:19.996577'); -INSERT INTO dvds.payment VALUES (26243, 361, 2, 8189, 4.99, '2007-04-28 21:04:52.996577'); -INSERT INTO dvds.payment VALUES (26244, 361, 1, 10145, 1.99, '2007-04-30 20:43:39.996577'); -INSERT INTO dvds.payment VALUES (26245, 361, 1, 10151, 4.99, '2007-04-30 20:51:03.996577'); -INSERT INTO dvds.payment VALUES (26246, 362, 2, 4646, 8.99, '2007-04-08 07:51:52.996577'); -INSERT INTO dvds.payment VALUES (26247, 362, 1, 5227, 4.99, '2007-04-09 10:45:05.996577'); -INSERT INTO dvds.payment VALUES (26248, 362, 2, 5563, 1.99, '2007-04-10 01:49:28.996577'); -INSERT INTO dvds.payment VALUES (26249, 362, 2, 5690, 5.99, '2007-04-10 07:55:15.996577'); -INSERT INTO dvds.payment VALUES (26250, 362, 1, 6204, 4.99, '2007-04-11 10:57:48.996577'); -INSERT INTO dvds.payment VALUES (26251, 362, 2, 6576, 4.99, '2007-04-12 04:42:07.996577'); -INSERT INTO dvds.payment VALUES (26252, 362, 1, 6981, 4.99, '2007-04-26 23:20:04.996577'); -INSERT INTO dvds.payment VALUES (26253, 362, 1, 7172, 1.99, '2007-04-27 06:27:42.996577'); -INSERT INTO dvds.payment VALUES (26254, 362, 1, 7485, 2.99, '2007-04-27 17:57:35.996577'); -INSERT INTO dvds.payment VALUES (26255, 362, 1, 8081, 2.99, '2007-04-28 16:35:12.996577'); -INSERT INTO dvds.payment VALUES (26256, 362, 2, 8325, 2.99, '2007-04-29 02:25:53.996577'); -INSERT INTO dvds.payment VALUES (26257, 362, 2, 8364, 4.99, '2007-04-29 03:38:57.996577'); -INSERT INTO dvds.payment VALUES (26258, 362, 1, 8662, 0.99, '2007-04-29 13:59:59.996577'); -INSERT INTO dvds.payment VALUES (26259, 362, 1, 8714, 2.99, '2007-04-29 16:00:06.996577'); -INSERT INTO dvds.payment VALUES (26260, 362, 1, 9784, 4.99, '2007-04-30 08:49:58.996577'); -INSERT INTO dvds.payment VALUES (26261, 363, 1, 3726, 3.99, '2007-04-06 09:44:15.996577'); -INSERT INTO dvds.payment VALUES (26262, 363, 2, 5687, 3.99, '2007-04-10 07:35:45.996577'); -INSERT INTO dvds.payment VALUES (26263, 363, 1, 5758, 6.99, '2007-04-10 11:11:09.996577'); -INSERT INTO dvds.payment VALUES (26264, 363, 2, 6140, 4.99, '2007-04-11 07:09:13.996577'); -INSERT INTO dvds.payment VALUES (26265, 363, 2, 6705, 4.99, '2007-04-12 11:21:37.996577'); -INSERT INTO dvds.payment VALUES (26266, 363, 2, 6821, 2.99, '2007-04-12 16:50:36.996577'); -INSERT INTO dvds.payment VALUES (26267, 363, 2, 6878, 4.99, '2007-04-12 19:05:39.996577'); -INSERT INTO dvds.payment VALUES (26268, 363, 1, 7256, 2.99, '2007-04-27 09:26:58.996577'); -INSERT INTO dvds.payment VALUES (26269, 363, 2, 7708, 4.99, '2007-04-28 02:47:41.996577'); -INSERT INTO dvds.payment VALUES (26270, 363, 2, 8121, 2.99, '2007-04-28 17:54:11.996577'); -INSERT INTO dvds.payment VALUES (26271, 363, 2, 8522, 3.99, '2007-04-29 08:44:45.996577'); -INSERT INTO dvds.payment VALUES (26272, 363, 2, 8804, 2.99, '2007-04-29 19:56:45.996577'); -INSERT INTO dvds.payment VALUES (26273, 363, 2, 8841, 4.99, '2007-04-29 21:24:33.996577'); -INSERT INTO dvds.payment VALUES (26274, 363, 1, 9968, 4.99, '2007-04-30 15:00:42.996577'); -INSERT INTO dvds.payment VALUES (26275, 363, 1, 9977, 8.99, '2007-04-30 15:27:08.996577'); -INSERT INTO dvds.payment VALUES (26276, 364, 1, 3678, 4.99, '2007-04-06 07:43:41.996577'); -INSERT INTO dvds.payment VALUES (26277, 364, 2, 3961, 4.99, '2007-04-06 20:40:09.996577'); -INSERT INTO dvds.payment VALUES (26278, 364, 1, 4047, 0.99, '2007-04-07 01:57:15.996577'); -INSERT INTO dvds.payment VALUES (26279, 364, 2, 4689, 4.99, '2007-04-08 09:32:13.996577'); -INSERT INTO dvds.payment VALUES (26280, 364, 1, 5872, 10.99, '2007-04-10 17:22:31.996577'); -INSERT INTO dvds.payment VALUES (26281, 364, 1, 7272, 2.99, '2007-04-27 09:58:46.996577'); -INSERT INTO dvds.payment VALUES (26282, 364, 2, 9266, 4.99, '2007-04-30 13:27:27.996577'); -INSERT INTO dvds.payment VALUES (26283, 364, 1, 10092, 0.99, '2007-04-30 18:56:35.996577'); -INSERT INTO dvds.payment VALUES (26284, 365, 1, 4583, 1.99, '2007-04-08 04:38:10.996577'); -INSERT INTO dvds.payment VALUES (26285, 365, 1, 6604, 4.99, '2007-04-12 06:26:11.996577'); -INSERT INTO dvds.payment VALUES (26286, 365, 1, 7488, 7.99, '2007-04-27 18:04:41.996577'); -INSERT INTO dvds.payment VALUES (26287, 365, 2, 7634, 4.99, '2007-04-27 23:35:27.996577'); -INSERT INTO dvds.payment VALUES (26288, 365, 1, 8168, 4.99, '2007-04-28 19:56:58.996577'); -INSERT INTO dvds.payment VALUES (26289, 365, 2, 8782, 4.99, '2007-04-29 18:58:00.996577'); -INSERT INTO dvds.payment VALUES (26290, 365, 1, 8856, 3.99, '2007-04-29 22:10:26.996577'); -INSERT INTO dvds.payment VALUES (26291, 365, 1, 9122, 2.99, '2007-04-30 08:05:18.996577'); -INSERT INTO dvds.payment VALUES (26292, 365, 2, 9184, 4.99, '2007-04-30 10:38:45.996577'); -INSERT INTO dvds.payment VALUES (26293, 365, 2, 9540, 2.99, '2007-04-30 00:08:32.996577'); -INSERT INTO dvds.payment VALUES (26294, 366, 2, 3632, 4.99, '2007-04-06 05:06:47.996577'); -INSERT INTO dvds.payment VALUES (26295, 366, 1, 3834, 2.99, '2007-04-06 14:48:22.996577'); -INSERT INTO dvds.payment VALUES (26296, 366, 2, 4276, 2.99, '2007-04-07 13:19:25.996577'); -INSERT INTO dvds.payment VALUES (26297, 366, 1, 4569, 5.99, '2007-04-08 03:59:17.996577'); -INSERT INTO dvds.payment VALUES (26298, 366, 2, 5364, 0.99, '2007-04-09 16:53:14.996577'); -INSERT INTO dvds.payment VALUES (26299, 366, 1, 6112, 6.99, '2007-04-11 05:56:31.996577'); -INSERT INTO dvds.payment VALUES (26300, 366, 1, 6366, 4.99, '2007-04-11 19:46:42.996577'); -INSERT INTO dvds.payment VALUES (26301, 366, 2, 6533, 6.99, '2007-04-12 03:08:04.996577'); -INSERT INTO dvds.payment VALUES (26302, 366, 2, 6738, 5.99, '2007-04-12 12:46:21.996577'); -INSERT INTO dvds.payment VALUES (26303, 366, 1, 6842, 0.99, '2007-04-12 17:36:21.996577'); -INSERT INTO dvds.payment VALUES (26304, 366, 2, 6971, 4.99, '2007-04-26 22:54:43.996577'); -INSERT INTO dvds.payment VALUES (26305, 366, 1, 7344, 1.99, '2007-04-27 12:57:54.996577'); -INSERT INTO dvds.payment VALUES (26306, 366, 1, 7562, 2.99, '2007-04-27 20:53:41.996577'); -INSERT INTO dvds.payment VALUES (26307, 366, 2, 7602, 4.99, '2007-04-27 22:17:01.996577'); -INSERT INTO dvds.payment VALUES (26308, 366, 1, 7805, 6.99, '2007-04-28 06:25:07.996577'); -INSERT INTO dvds.payment VALUES (26309, 366, 2, 8169, 4.99, '2007-04-28 19:58:12.996577'); -INSERT INTO dvds.payment VALUES (26310, 366, 2, 8260, 1.99, '2007-04-28 23:39:26.996577'); -INSERT INTO dvds.payment VALUES (26311, 366, 2, 8928, 2.99, '2007-04-30 00:46:45.996577'); -INSERT INTO dvds.payment VALUES (26312, 366, 1, 9316, 6.99, '2007-04-30 15:40:24.996577'); -INSERT INTO dvds.payment VALUES (26313, 366, 1, 10198, 2.99, '2007-04-30 23:04:41.996577'); -INSERT INTO dvds.payment VALUES (26314, 367, 1, 4251, 8.99, '2007-04-07 12:40:21.996577'); -INSERT INTO dvds.payment VALUES (26315, 367, 2, 5490, 4.99, '2007-04-09 22:37:37.996577'); -INSERT INTO dvds.payment VALUES (26316, 367, 2, 5538, 4.99, '2007-04-10 01:08:06.996577'); -INSERT INTO dvds.payment VALUES (26317, 367, 2, 5839, 2.99, '2007-04-10 15:36:56.996577'); -INSERT INTO dvds.payment VALUES (26318, 367, 2, 6228, 2.99, '2007-04-11 12:27:02.996577'); -INSERT INTO dvds.payment VALUES (26319, 367, 1, 6716, 0.99, '2007-04-12 12:03:24.996577'); -INSERT INTO dvds.payment VALUES (26320, 367, 2, 6835, 5.99, '2007-04-12 17:26:29.996577'); -INSERT INTO dvds.payment VALUES (26321, 367, 2, 8490, 0.99, '2007-04-29 07:27:51.996577'); -INSERT INTO dvds.payment VALUES (26322, 367, 1, 9030, 3.99, '2007-04-30 04:34:04.996577'); -INSERT INTO dvds.payment VALUES (26323, 367, 1, 9430, 4.99, '2007-04-30 19:48:39.996577'); -INSERT INTO dvds.payment VALUES (26324, 367, 1, 9912, 4.99, '2007-04-30 13:17:30.996577'); -INSERT INTO dvds.payment VALUES (26325, 368, 2, 3608, 4.99, '2007-04-06 04:04:05.996577'); -INSERT INTO dvds.payment VALUES (26326, 368, 2, 4066, 0.99, '2007-04-07 03:02:35.996577'); -INSERT INTO dvds.payment VALUES (26327, 368, 1, 4584, 0.99, '2007-04-08 04:39:28.996577'); -INSERT INTO dvds.payment VALUES (26328, 368, 2, 4913, 8.99, '2007-04-08 19:56:14.996577'); -INSERT INTO dvds.payment VALUES (26329, 368, 1, 6124, 4.99, '2007-04-11 06:30:58.996577'); -INSERT INTO dvds.payment VALUES (26330, 368, 1, 6154, 5.99, '2007-04-11 08:00:45.996577'); -INSERT INTO dvds.payment VALUES (26331, 368, 1, 6681, 2.99, '2007-04-12 10:32:38.996577'); -INSERT INTO dvds.payment VALUES (26332, 368, 2, 7571, 4.99, '2007-04-27 21:12:08.996577'); -INSERT INTO dvds.payment VALUES (26333, 368, 1, 8045, 0.99, '2007-04-28 15:18:04.996577'); -INSERT INTO dvds.payment VALUES (26334, 368, 2, 8226, 2.99, '2007-04-28 22:29:30.996577'); -INSERT INTO dvds.payment VALUES (26335, 368, 1, 9400, 5.99, '2007-04-30 18:44:24.996577'); -INSERT INTO dvds.payment VALUES (26336, 368, 1, 9833, 6.99, '2007-04-30 10:33:27.996577'); -INSERT INTO dvds.payment VALUES (26337, 369, 1, 3490, 6.99, '2007-04-05 22:05:39.996577'); -INSERT INTO dvds.payment VALUES (26338, 369, 2, 3903, 2.99, '2007-04-06 17:55:58.996577'); -INSERT INTO dvds.payment VALUES (26339, 369, 2, 4859, 4.99, '2007-04-08 17:22:30.996577'); -INSERT INTO dvds.payment VALUES (26340, 369, 1, 5043, 1.99, '2007-04-09 01:53:44.996577'); -INSERT INTO dvds.payment VALUES (26341, 369, 2, 5496, 7.99, '2007-04-09 22:48:49.996577'); -INSERT INTO dvds.payment VALUES (26342, 369, 2, 5561, 2.99, '2007-04-10 01:43:50.996577'); -INSERT INTO dvds.payment VALUES (26343, 369, 1, 8236, 2.99, '2007-04-28 22:55:30.996577'); -INSERT INTO dvds.payment VALUES (26344, 369, 2, 8826, 2.99, '2007-04-29 20:58:42.996577'); -INSERT INTO dvds.payment VALUES (26345, 369, 2, 9032, 4.99, '2007-04-30 04:35:20.996577'); -INSERT INTO dvds.payment VALUES (26346, 369, 1, 9089, 0.99, '2007-04-30 06:52:05.996577'); -INSERT INTO dvds.payment VALUES (26347, 369, 2, 9543, 0.99, '2007-04-30 00:12:00.996577'); -INSERT INTO dvds.payment VALUES (26348, 369, 1, 9973, 4.99, '2007-04-30 15:17:57.996577'); -INSERT INTO dvds.payment VALUES (26349, 370, 2, 4400, 7.99, '2007-04-07 19:50:52.996577'); -INSERT INTO dvds.payment VALUES (26350, 370, 2, 6714, 0.99, '2007-04-12 11:57:32.996577'); -INSERT INTO dvds.payment VALUES (26351, 370, 1, 6968, 0.99, '2007-04-26 22:45:11.996577'); -INSERT INTO dvds.payment VALUES (26352, 370, 2, 7152, 7.99, '2007-04-27 05:43:27.996577'); -INSERT INTO dvds.payment VALUES (26353, 370, 1, 7226, 6.99, '2007-04-27 08:16:19.996577'); -INSERT INTO dvds.payment VALUES (26354, 370, 2, 7797, 0.99, '2007-04-28 06:09:33.996577'); -INSERT INTO dvds.payment VALUES (26355, 370, 2, 8258, 0.99, '2007-04-28 23:32:08.996577'); -INSERT INTO dvds.payment VALUES (26356, 370, 2, 10095, 0.99, '2007-04-30 19:07:01.996577'); -INSERT INTO dvds.payment VALUES (26357, 371, 2, 4115, 8.99, '2007-04-07 05:20:49.996577'); -INSERT INTO dvds.payment VALUES (26358, 371, 1, 4612, 1.99, '2007-04-08 06:09:10.996577'); -INSERT INTO dvds.payment VALUES (26359, 371, 1, 5171, 4.99, '2007-04-09 07:55:21.996577'); -INSERT INTO dvds.payment VALUES (26360, 371, 2, 5614, 0.99, '2007-04-10 03:45:22.996577'); -INSERT INTO dvds.payment VALUES (26361, 371, 1, 6000, 2.99, '2007-04-10 23:51:32.996577'); -INSERT INTO dvds.payment VALUES (26362, 371, 1, 6460, 1.99, '2007-04-11 23:42:10.996577'); -INSERT INTO dvds.payment VALUES (26363, 371, 1, 6922, 0.99, '2007-04-12 21:08:14.996577'); -INSERT INTO dvds.payment VALUES (26364, 371, 1, 7408, 3.99, '2007-04-27 15:00:06.996577'); -INSERT INTO dvds.payment VALUES (26365, 371, 1, 8138, 4.99, '2007-04-28 18:40:43.996577'); -INSERT INTO dvds.payment VALUES (26366, 371, 1, 9008, 4.99, '2007-04-30 03:38:52.996577'); -INSERT INTO dvds.payment VALUES (26367, 371, 1, 9117, 8.99, '2007-04-30 07:49:25.996577'); -INSERT INTO dvds.payment VALUES (26368, 371, 1, 9635, 0.99, '2007-04-30 03:40:53.996577'); -INSERT INTO dvds.payment VALUES (26369, 372, 1, 5229, 4.99, '2007-04-09 10:58:44.996577'); -INSERT INTO dvds.payment VALUES (26370, 372, 1, 5314, 2.99, '2007-04-09 14:33:54.996577'); -INSERT INTO dvds.payment VALUES (26371, 372, 1, 5352, 2.99, '2007-04-09 16:23:24.996577'); -INSERT INTO dvds.payment VALUES (26372, 372, 1, 5501, 6.99, '2007-04-09 23:02:14.996577'); -INSERT INTO dvds.payment VALUES (26373, 372, 2, 5914, 7.99, '2007-04-10 19:29:38.996577'); -INSERT INTO dvds.payment VALUES (26374, 372, 2, 6692, 4.99, '2007-04-12 11:04:05.996577'); -INSERT INTO dvds.payment VALUES (26375, 372, 1, 7190, 4.99, '2007-04-27 07:04:27.996577'); -INSERT INTO dvds.payment VALUES (26376, 372, 2, 7234, 5.99, '2007-04-27 08:37:11.996577'); -INSERT INTO dvds.payment VALUES (26377, 372, 2, 7735, 4.99, '2007-04-28 03:38:22.996577'); -INSERT INTO dvds.payment VALUES (26378, 372, 2, 8009, 7.99, '2007-04-28 13:54:24.996577'); -INSERT INTO dvds.payment VALUES (26379, 372, 1, 8059, 2.99, '2007-04-28 15:38:25.996577'); -INSERT INTO dvds.payment VALUES (26380, 372, 1, 8358, 0.99, '2007-04-29 03:29:24.996577'); -INSERT INTO dvds.payment VALUES (26381, 372, 1, 8724, 0.99, '2007-04-29 16:33:47.996577'); -INSERT INTO dvds.payment VALUES (26382, 372, 1, 8755, 2.99, '2007-04-29 17:46:57.996577'); -INSERT INTO dvds.payment VALUES (26383, 372, 2, 8837, 8.99, '2007-04-29 21:17:26.996577'); -INSERT INTO dvds.payment VALUES (26384, 372, 1, 9128, 5.99, '2007-04-30 08:19:40.996577'); -INSERT INTO dvds.payment VALUES (26385, 373, 2, 3609, 2.99, '2007-04-06 04:04:48.996577'); -INSERT INTO dvds.payment VALUES (26386, 373, 2, 3667, 4.99, '2007-04-06 07:05:00.996577'); -INSERT INTO dvds.payment VALUES (26387, 373, 1, 4325, 7.99, '2007-04-07 16:27:50.996577'); -INSERT INTO dvds.payment VALUES (26388, 373, 1, 5120, 5.99, '2007-04-09 05:42:49.996577'); -INSERT INTO dvds.payment VALUES (26389, 373, 1, 6202, 3.99, '2007-04-11 10:52:51.996577'); -INSERT INTO dvds.payment VALUES (26390, 373, 2, 6311, 0.99, '2007-04-11 16:47:18.996577'); -INSERT INTO dvds.payment VALUES (26391, 373, 1, 6944, 4.99, '2007-04-26 22:02:28.996577'); -INSERT INTO dvds.payment VALUES (26392, 373, 1, 7094, 0.99, '2007-04-27 03:15:59.996577'); -INSERT INTO dvds.payment VALUES (26393, 373, 2, 7206, 3.99, '2007-04-27 07:35:31.996577'); -INSERT INTO dvds.payment VALUES (26394, 373, 1, 7615, 0.99, '2007-04-27 22:43:50.996577'); -INSERT INTO dvds.payment VALUES (26395, 373, 1, 8611, 3.99, '2007-04-29 11:54:47.996577'); -INSERT INTO dvds.payment VALUES (26396, 373, 2, 9327, 8.99, '2007-04-30 15:59:29.996577'); -INSERT INTO dvds.payment VALUES (26397, 373, 1, 9397, 4.99, '2007-04-30 18:35:55.996577'); -INSERT INTO dvds.payment VALUES (26398, 373, 2, 9480, 0.99, '2007-04-30 21:54:29.996577'); -INSERT INTO dvds.payment VALUES (26399, 373, 1, 9966, 4.99, '2007-04-30 14:55:12.996577'); -INSERT INTO dvds.payment VALUES (26400, 373, 1, 10010, 6.99, '2007-04-30 16:30:02.996577'); -INSERT INTO dvds.payment VALUES (26401, 373, 1, 10221, 4.99, '2007-04-30 23:45:16.996577'); -INSERT INTO dvds.payment VALUES (26402, 374, 1, 3797, 1.99, '2007-04-06 13:23:18.996577'); -INSERT INTO dvds.payment VALUES (26403, 374, 1, 5463, 4.99, '2007-04-09 21:25:28.996577'); -INSERT INTO dvds.payment VALUES (26404, 374, 1, 5570, 6.99, '2007-04-10 02:15:13.996577'); -INSERT INTO dvds.payment VALUES (26405, 374, 2, 5591, 3.99, '2007-04-10 02:53:29.996577'); -INSERT INTO dvds.payment VALUES (26406, 374, 2, 5945, 2.99, '2007-04-10 21:21:08.996577'); -INSERT INTO dvds.payment VALUES (26407, 374, 2, 6315, 0.99, '2007-04-11 17:11:15.996577'); -INSERT INTO dvds.payment VALUES (26408, 374, 2, 7837, 0.99, '2007-04-28 07:26:58.996577'); -INSERT INTO dvds.payment VALUES (26409, 374, 2, 8586, 7.99, '2007-04-29 10:45:00.996577'); -INSERT INTO dvds.payment VALUES (26410, 374, 2, 9113, 0.99, '2007-04-30 07:37:29.996577'); -INSERT INTO dvds.payment VALUES (26411, 374, 1, 9866, 6.99, '2007-04-30 11:42:16.996577'); -INSERT INTO dvds.payment VALUES (26412, 375, 1, 3981, 6.99, '2007-04-06 21:40:38.996577'); -INSERT INTO dvds.payment VALUES (26413, 375, 2, 4335, 4.99, '2007-04-07 17:02:23.996577'); -INSERT INTO dvds.payment VALUES (26414, 375, 2, 5474, 2.99, '2007-04-09 21:52:23.996577'); -INSERT INTO dvds.payment VALUES (26415, 375, 1, 7856, 4.99, '2007-04-28 08:16:50.996577'); -INSERT INTO dvds.payment VALUES (26416, 375, 2, 8900, 2.99, '2007-04-29 23:35:29.996577'); -INSERT INTO dvds.payment VALUES (26417, 376, 2, 3719, 2.99, '2007-04-06 09:34:21.996577'); -INSERT INTO dvds.payment VALUES (26418, 376, 1, 4163, 0.99, '2007-04-07 07:47:54.996577'); -INSERT INTO dvds.payment VALUES (26419, 376, 2, 4166, 8.99, '2007-04-07 08:01:56.996577'); -INSERT INTO dvds.payment VALUES (26420, 376, 1, 4320, 3.99, '2007-04-07 16:20:25.996577'); -INSERT INTO dvds.payment VALUES (26421, 376, 1, 4554, 5.99, '2007-04-08 03:16:29.996577'); -INSERT INTO dvds.payment VALUES (26422, 376, 1, 4869, 4.99, '2007-04-08 17:42:31.996577'); -INSERT INTO dvds.payment VALUES (26423, 376, 1, 5675, 4.99, '2007-04-10 06:59:32.996577'); -INSERT INTO dvds.payment VALUES (26424, 376, 1, 6524, 6.99, '2007-04-12 02:43:01.996577'); -INSERT INTO dvds.payment VALUES (26425, 376, 1, 6545, 8.99, '2007-04-12 03:24:56.996577'); -INSERT INTO dvds.payment VALUES (26426, 376, 2, 6807, 2.99, '2007-04-12 16:02:19.996577'); -INSERT INTO dvds.payment VALUES (26427, 376, 1, 8269, 2.99, '2007-04-28 23:55:20.996577'); -INSERT INTO dvds.payment VALUES (26428, 376, 1, 8420, 5.99, '2007-04-29 05:29:11.996577'); -INSERT INTO dvds.payment VALUES (26429, 376, 1, 9773, 4.99, '2007-04-30 08:25:22.996577'); -INSERT INTO dvds.payment VALUES (26430, 376, 1, 9828, 2.99, '2007-04-30 10:25:23.996577'); -INSERT INTO dvds.payment VALUES (26431, 376, 1, 9872, 0.99, '2007-04-30 11:56:21.996577'); -INSERT INTO dvds.payment VALUES (26432, 377, 1, 3858, 2.99, '2007-04-06 15:46:23.996577'); -INSERT INTO dvds.payment VALUES (26433, 377, 2, 4053, 0.99, '2007-04-07 02:07:48.996577'); -INSERT INTO dvds.payment VALUES (26434, 377, 1, 4077, 0.99, '2007-04-07 03:22:06.996577'); -INSERT INTO dvds.payment VALUES (26435, 377, 1, 4225, 0.99, '2007-04-07 10:53:03.996577'); -INSERT INTO dvds.payment VALUES (26436, 377, 2, 6893, 7.99, '2007-04-12 19:48:37.996577'); -INSERT INTO dvds.payment VALUES (26437, 377, 1, 7697, 1.99, '2007-04-28 02:12:11.996577'); -INSERT INTO dvds.payment VALUES (26438, 377, 2, 8018, 10.99, '2007-04-28 14:05:14.996577'); -INSERT INTO dvds.payment VALUES (26439, 377, 2, 8916, 4.99, '2007-04-30 00:10:47.996577'); -INSERT INTO dvds.payment VALUES (26440, 377, 2, 9461, 3.99, '2007-04-30 20:57:39.996577'); -INSERT INTO dvds.payment VALUES (26441, 377, 1, 9564, 0.99, '2007-04-30 01:00:03.996577'); -INSERT INTO dvds.payment VALUES (26442, 377, 1, 10013, 4.99, '2007-04-30 16:36:47.996577'); -INSERT INTO dvds.payment VALUES (26443, 377, 1, 10183, 8.99, '2007-04-30 22:36:27.996577'); -INSERT INTO dvds.payment VALUES (26444, 378, 1, 3759, 4.99, '2007-04-06 11:15:04.996577'); -INSERT INTO dvds.payment VALUES (26445, 378, 2, 4755, 0.99, '2007-04-08 12:52:07.996577'); -INSERT INTO dvds.payment VALUES (26446, 378, 1, 5578, 1.99, '2007-04-10 02:28:57.996577'); -INSERT INTO dvds.payment VALUES (26447, 378, 2, 6233, 1.99, '2007-04-11 12:39:13.996577'); -INSERT INTO dvds.payment VALUES (26448, 378, 1, 7888, 0.99, '2007-04-28 09:08:50.996577'); -INSERT INTO dvds.payment VALUES (26449, 378, 2, 8740, 2.99, '2007-04-29 17:09:57.996577'); -INSERT INTO dvds.payment VALUES (26450, 378, 2, 9668, 3.99, '2007-04-30 04:59:29.996577'); -INSERT INTO dvds.payment VALUES (26451, 378, 1, 9868, 2.99, '2007-04-30 11:48:34.996577'); -INSERT INTO dvds.payment VALUES (26452, 379, 1, 3788, 4.99, '2007-04-06 12:30:28.996577'); -INSERT INTO dvds.payment VALUES (26453, 379, 2, 4740, 2.99, '2007-04-08 11:59:01.996577'); -INSERT INTO dvds.payment VALUES (26454, 379, 1, 5402, 4.99, '2007-04-09 18:30:24.996577'); -INSERT INTO dvds.payment VALUES (26455, 379, 1, 6235, 7.99, '2007-04-11 12:46:17.996577'); -INSERT INTO dvds.payment VALUES (26456, 379, 2, 7041, 4.99, '2007-04-27 01:46:58.996577'); -INSERT INTO dvds.payment VALUES (26457, 379, 1, 10041, 4.99, '2007-04-30 17:29:28.996577'); -INSERT INTO dvds.payment VALUES (26458, 380, 1, 3637, 2.99, '2007-04-06 05:34:57.996577'); -INSERT INTO dvds.payment VALUES (26459, 380, 1, 3688, 4.99, '2007-04-06 08:10:19.996577'); -INSERT INTO dvds.payment VALUES (26460, 380, 1, 4675, 2.99, '2007-04-08 08:52:48.996577'); -INSERT INTO dvds.payment VALUES (26461, 380, 2, 4706, 4.99, '2007-04-08 10:20:07.996577'); -INSERT INTO dvds.payment VALUES (26462, 380, 2, 5339, 0.99, '2007-04-09 15:37:43.996577'); -INSERT INTO dvds.payment VALUES (26463, 380, 2, 7021, 8.99, '2007-04-27 00:55:04.996577'); -INSERT INTO dvds.payment VALUES (26464, 380, 2, 7167, 2.99, '2007-04-27 06:05:52.996577'); -INSERT INTO dvds.payment VALUES (26465, 380, 2, 7435, 0.99, '2007-04-27 16:07:10.996577'); -INSERT INTO dvds.payment VALUES (26466, 380, 2, 7443, 2.99, '2007-04-27 16:16:09.996577'); -INSERT INTO dvds.payment VALUES (26467, 380, 1, 7773, 2.99, '2007-04-28 05:30:43.996577'); -INSERT INTO dvds.payment VALUES (26468, 380, 1, 7974, 3.99, '2007-04-28 12:40:23.996577'); -INSERT INTO dvds.payment VALUES (26469, 380, 1, 9056, 0.99, '2007-04-30 05:41:46.996577'); -INSERT INTO dvds.payment VALUES (26470, 380, 1, 9261, 6.99, '2007-04-30 13:08:01.996577'); -INSERT INTO dvds.payment VALUES (26471, 380, 1, 9710, 10.99, '2007-04-30 06:33:57.996577'); -INSERT INTO dvds.payment VALUES (26472, 381, 2, 3812, 0.99, '2007-04-06 13:50:45.996577'); -INSERT INTO dvds.payment VALUES (26473, 381, 2, 3970, 2.99, '2007-04-06 21:16:43.996577'); -INSERT INTO dvds.payment VALUES (26474, 381, 1, 4735, 0.99, '2007-04-08 11:40:53.996577'); -INSERT INTO dvds.payment VALUES (26475, 381, 2, 5689, 0.99, '2007-04-10 07:52:43.996577'); -INSERT INTO dvds.payment VALUES (26476, 381, 2, 6116, 2.99, '2007-04-11 06:06:04.996577'); -INSERT INTO dvds.payment VALUES (26477, 381, 2, 6451, 4.99, '2007-04-11 23:20:45.996577'); -INSERT INTO dvds.payment VALUES (26478, 381, 2, 6778, 2.99, '2007-04-12 14:34:26.996577'); -INSERT INTO dvds.payment VALUES (26479, 381, 1, 7375, 2.99, '2007-04-27 13:50:59.996577'); -INSERT INTO dvds.payment VALUES (26480, 381, 1, 7645, 2.99, '2007-04-27 23:56:08.996577'); -INSERT INTO dvds.payment VALUES (26481, 381, 2, 8688, 0.99, '2007-04-29 14:59:58.996577'); -INSERT INTO dvds.payment VALUES (26482, 381, 2, 9144, 0.99, '2007-04-30 08:50:41.996577'); -INSERT INTO dvds.payment VALUES (26483, 381, 2, 9173, 4.99, '2007-04-30 10:08:36.996577'); -INSERT INTO dvds.payment VALUES (26484, 381, 1, 9822, 2.99, '2007-04-30 10:16:51.996577'); -INSERT INTO dvds.payment VALUES (26485, 381, 2, 10033, 4.99, '2007-04-30 17:12:55.996577'); -INSERT INTO dvds.payment VALUES (26486, 382, 2, 3480, 3.99, '2007-04-05 21:40:09.996577'); -INSERT INTO dvds.payment VALUES (26487, 382, 2, 4351, 4.99, '2007-04-07 17:32:50.996577'); -INSERT INTO dvds.payment VALUES (26488, 382, 1, 5004, 4.99, '2007-04-08 23:49:16.996577'); -INSERT INTO dvds.payment VALUES (26489, 382, 1, 5816, 0.99, '2007-04-10 14:17:13.996577'); -INSERT INTO dvds.payment VALUES (26490, 382, 2, 7625, 0.99, '2007-04-27 23:16:22.996577'); -INSERT INTO dvds.payment VALUES (26491, 382, 2, 8777, 0.99, '2007-04-29 18:38:47.996577'); -INSERT INTO dvds.payment VALUES (26492, 382, 1, 8871, 9.99, '2007-04-29 22:41:07.996577'); -INSERT INTO dvds.payment VALUES (26493, 382, 1, 8993, 4.99, '2007-04-30 03:19:51.996577'); -INSERT INTO dvds.payment VALUES (26494, 382, 1, 9067, 6.99, '2007-04-30 05:59:27.996577'); -INSERT INTO dvds.payment VALUES (26495, 382, 2, 9555, 0.99, '2007-04-30 00:39:42.996577'); -INSERT INTO dvds.payment VALUES (26496, 383, 2, 4747, 5.99, '2007-04-08 12:21:27.996577'); -INSERT INTO dvds.payment VALUES (26497, 383, 2, 6091, 4.99, '2007-04-11 04:17:44.996577'); -INSERT INTO dvds.payment VALUES (26498, 383, 2, 6244, 0.99, '2007-04-11 13:22:04.996577'); -INSERT INTO dvds.payment VALUES (26499, 383, 1, 6775, 4.99, '2007-04-12 14:30:10.996577'); -INSERT INTO dvds.payment VALUES (26500, 383, 1, 7367, 3.99, '2007-04-27 13:34:11.996577'); -INSERT INTO dvds.payment VALUES (26501, 383, 2, 8367, 2.99, '2007-04-29 03:39:45.996577'); -INSERT INTO dvds.payment VALUES (26502, 383, 1, 8635, 0.99, '2007-04-29 12:51:14.996577'); -INSERT INTO dvds.payment VALUES (26503, 383, 1, 9653, 0.99, '2007-04-30 04:24:04.996577'); -INSERT INTO dvds.payment VALUES (26504, 383, 1, 9678, 0.99, '2007-04-30 05:09:13.996577'); -INSERT INTO dvds.payment VALUES (26505, 384, 2, 4424, 0.99, '2007-04-07 20:43:09.996577'); -INSERT INTO dvds.payment VALUES (26506, 384, 2, 5250, 0.99, '2007-04-09 12:03:58.996577'); -INSERT INTO dvds.payment VALUES (26507, 384, 1, 5608, 4.99, '2007-04-10 03:36:52.996577'); -INSERT INTO dvds.payment VALUES (26508, 384, 2, 5797, 4.99, '2007-04-10 13:12:18.996577'); -INSERT INTO dvds.payment VALUES (26509, 384, 2, 5966, 2.99, '2007-04-10 22:27:53.996577'); -INSERT INTO dvds.payment VALUES (26510, 384, 2, 6387, 0.99, '2007-04-11 20:44:22.996577'); -INSERT INTO dvds.payment VALUES (26511, 384, 2, 7799, 0.99, '2007-04-28 06:10:35.996577'); -INSERT INTO dvds.payment VALUES (26512, 384, 1, 8445, 1.99, '2007-04-29 06:06:14.996577'); -INSERT INTO dvds.payment VALUES (26513, 385, 2, 3878, 8.99, '2007-04-06 16:55:35.996577'); -INSERT INTO dvds.payment VALUES (26514, 385, 2, 3953, 0.99, '2007-04-06 20:23:21.996577'); -INSERT INTO dvds.payment VALUES (26515, 385, 1, 4714, 6.99, '2007-04-08 10:41:14.996577'); -INSERT INTO dvds.payment VALUES (26516, 385, 1, 5783, 2.99, '2007-04-10 12:23:59.996577'); -INSERT INTO dvds.payment VALUES (26517, 385, 1, 6445, 4.99, '2007-04-11 23:05:28.996577'); -INSERT INTO dvds.payment VALUES (26518, 385, 2, 6933, 4.99, '2007-04-26 21:37:49.996577'); -INSERT INTO dvds.payment VALUES (26519, 385, 2, 7776, 0.99, '2007-04-28 05:33:02.996577'); -INSERT INTO dvds.payment VALUES (26520, 385, 1, 8346, 2.99, '2007-04-29 03:16:48.996577'); -INSERT INTO dvds.payment VALUES (26521, 385, 1, 8518, 2.99, '2007-04-29 08:33:53.996577'); -INSERT INTO dvds.payment VALUES (26522, 385, 1, 9570, 2.99, '2007-04-30 01:09:03.996577'); -INSERT INTO dvds.payment VALUES (26523, 385, 1, 9704, 4.99, '2007-04-30 06:07:58.996577'); -INSERT INTO dvds.payment VALUES (26524, 386, 2, 3783, 6.99, '2007-04-06 12:25:57.996577'); -INSERT INTO dvds.payment VALUES (26525, 386, 1, 4189, 8.99, '2007-04-07 09:19:33.996577'); -INSERT INTO dvds.payment VALUES (26526, 386, 1, 5524, 0.99, '2007-04-10 00:17:50.996577'); -INSERT INTO dvds.payment VALUES (26527, 386, 1, 5953, 2.99, '2007-04-10 21:50:01.996577'); -INSERT INTO dvds.payment VALUES (26528, 386, 1, 6037, 4.99, '2007-04-11 01:35:20.996577'); -INSERT INTO dvds.payment VALUES (26529, 386, 1, 6222, 2.99, '2007-04-11 11:54:15.996577'); -INSERT INTO dvds.payment VALUES (26530, 386, 2, 6261, 2.99, '2007-04-11 13:57:00.996577'); -INSERT INTO dvds.payment VALUES (26531, 386, 1, 6324, 3.99, '2007-04-11 17:31:00.996577'); -INSERT INTO dvds.payment VALUES (26532, 386, 2, 6715, 4.99, '2007-04-12 12:00:54.996577'); -INSERT INTO dvds.payment VALUES (26533, 386, 2, 8340, 4.99, '2007-04-29 03:10:10.996577'); -INSERT INTO dvds.payment VALUES (26534, 386, 1, 8751, 2.99, '2007-04-29 17:43:05.996577'); -INSERT INTO dvds.payment VALUES (26535, 386, 2, 9602, 0.99, '2007-04-30 02:11:17.996577'); -INSERT INTO dvds.payment VALUES (26536, 386, 1, 9686, 5.99, '2007-04-30 05:18:32.996577'); -INSERT INTO dvds.payment VALUES (26537, 387, 2, 6216, 4.99, '2007-04-11 11:25:31.996577'); -INSERT INTO dvds.payment VALUES (26538, 387, 2, 6456, 6.99, '2007-04-11 23:33:37.996577'); -INSERT INTO dvds.payment VALUES (26539, 387, 1, 6517, 5.99, '2007-04-12 02:21:05.996577'); -INSERT INTO dvds.payment VALUES (26540, 387, 1, 7497, 0.99, '2007-04-27 18:33:53.996577'); -INSERT INTO dvds.payment VALUES (26541, 387, 1, 8090, 2.99, '2007-04-28 16:55:55.996577'); -INSERT INTO dvds.payment VALUES (26542, 388, 2, 4947, 5.99, '2007-04-08 21:18:03.996577'); -INSERT INTO dvds.payment VALUES (26543, 388, 2, 5899, 2.99, '2007-04-10 18:50:18.996577'); -INSERT INTO dvds.payment VALUES (26544, 388, 2, 6321, 2.99, '2007-04-11 17:19:28.996577'); -INSERT INTO dvds.payment VALUES (26545, 388, 1, 6452, 2.99, '2007-04-11 23:25:57.996577'); -INSERT INTO dvds.payment VALUES (26546, 388, 2, 7985, 5.99, '2007-04-28 12:57:27.996577'); -INSERT INTO dvds.payment VALUES (26547, 388, 2, 8456, 3.99, '2007-04-29 06:26:57.996577'); -INSERT INTO dvds.payment VALUES (26548, 388, 2, 9213, 0.99, '2007-04-30 11:35:37.996577'); -INSERT INTO dvds.payment VALUES (26549, 388, 2, 9368, 2.99, '2007-04-30 17:19:19.996577'); -INSERT INTO dvds.payment VALUES (26550, 388, 2, 9840, 2.99, '2007-04-30 10:51:44.996577'); -INSERT INTO dvds.payment VALUES (26551, 388, 2, 9940, 0.99, '2007-04-30 13:57:32.996577'); -INSERT INTO dvds.payment VALUES (26552, 388, 2, 10044, 2.99, '2007-04-30 17:30:59.996577'); -INSERT INTO dvds.payment VALUES (26553, 389, 2, 3527, 0.99, '2007-04-05 23:39:34.996577'); -INSERT INTO dvds.payment VALUES (26554, 389, 1, 4443, 6.99, '2007-04-07 21:34:19.996577'); -INSERT INTO dvds.payment VALUES (26555, 389, 1, 5249, 0.99, '2007-04-09 12:02:19.996577'); -INSERT INTO dvds.payment VALUES (26556, 389, 2, 5626, 3.99, '2007-04-10 04:18:01.996577'); -INSERT INTO dvds.payment VALUES (26557, 389, 2, 6104, 2.99, '2007-04-11 05:30:01.996577'); -INSERT INTO dvds.payment VALUES (26558, 389, 1, 6600, 3.99, '2007-04-12 06:10:14.996577'); -INSERT INTO dvds.payment VALUES (26559, 389, 1, 7029, 4.99, '2007-04-27 01:26:09.996577'); -INSERT INTO dvds.payment VALUES (26560, 389, 1, 7896, 8.99, '2007-04-28 09:29:24.996577'); -INSERT INTO dvds.payment VALUES (26561, 389, 2, 7977, 4.99, '2007-04-28 12:44:20.996577'); -INSERT INTO dvds.payment VALUES (26562, 389, 1, 8338, 6.99, '2007-04-29 03:09:05.996577'); -INSERT INTO dvds.payment VALUES (26563, 389, 1, 8887, 4.99, '2007-04-29 23:05:20.996577'); -INSERT INTO dvds.payment VALUES (26564, 389, 1, 10217, 4.99, '2007-04-30 23:35:53.996577'); -INSERT INTO dvds.payment VALUES (26565, 390, 1, 3999, 2.99, '2007-04-06 22:19:20.996577'); -INSERT INTO dvds.payment VALUES (26566, 390, 1, 4022, 4.99, '2007-04-07 00:18:32.996577'); -INSERT INTO dvds.payment VALUES (26567, 390, 2, 4191, 3.99, '2007-04-07 09:24:40.996577'); -INSERT INTO dvds.payment VALUES (26568, 390, 2, 4310, 2.99, '2007-04-07 15:59:22.996577'); -INSERT INTO dvds.payment VALUES (26569, 390, 1, 4968, 5.99, '2007-04-08 22:17:45.996577'); -INSERT INTO dvds.payment VALUES (26570, 390, 1, 6215, 4.99, '2007-04-11 11:21:02.996577'); -INSERT INTO dvds.payment VALUES (26571, 390, 1, 6430, 0.99, '2007-04-11 22:32:00.996577'); -INSERT INTO dvds.payment VALUES (26572, 390, 2, 7515, 3.99, '2007-04-27 19:21:03.996577'); -INSERT INTO dvds.payment VALUES (26573, 390, 1, 7595, 5.99, '2007-04-27 22:00:49.996577'); -INSERT INTO dvds.payment VALUES (26574, 390, 1, 8493, 0.99, '2007-04-29 07:32:57.996577'); -INSERT INTO dvds.payment VALUES (26575, 390, 1, 9251, 5.99, '2007-04-30 12:47:51.996577'); -INSERT INTO dvds.payment VALUES (26576, 390, 2, 9314, 2.99, '2007-04-30 15:33:45.996577'); -INSERT INTO dvds.payment VALUES (26577, 390, 1, 9825, 4.99, '2007-04-30 10:19:17.996577'); -INSERT INTO dvds.payment VALUES (26578, 390, 1, 10061, 4.99, '2007-04-30 17:51:51.996577'); -INSERT INTO dvds.payment VALUES (26579, 391, 1, 4188, 5.99, '2007-04-07 09:13:55.996577'); -INSERT INTO dvds.payment VALUES (26580, 391, 1, 4716, 0.99, '2007-04-08 10:47:17.996577'); -INSERT INTO dvds.payment VALUES (26581, 391, 2, 4753, 0.99, '2007-04-08 12:47:07.996577'); -INSERT INTO dvds.payment VALUES (26582, 391, 2, 5583, 7.99, '2007-04-10 02:37:14.996577'); -INSERT INTO dvds.payment VALUES (26583, 391, 1, 5599, 4.99, '2007-04-10 03:20:30.996577'); -INSERT INTO dvds.payment VALUES (26584, 391, 1, 6302, 3.99, '2007-04-11 16:24:04.996577'); -INSERT INTO dvds.payment VALUES (26585, 391, 1, 6463, 2.99, '2007-04-11 23:44:37.996577'); -INSERT INTO dvds.payment VALUES (26586, 391, 2, 8016, 0.99, '2007-04-28 14:04:07.996577'); -INSERT INTO dvds.payment VALUES (26587, 391, 1, 8908, 0.99, '2007-04-29 23:54:31.996577'); -INSERT INTO dvds.payment VALUES (26588, 391, 2, 8913, 6.99, '2007-04-30 00:03:27.996577'); -INSERT INTO dvds.payment VALUES (26589, 391, 1, 9225, 0.99, '2007-04-30 11:58:13.996577'); -INSERT INTO dvds.payment VALUES (26590, 391, 1, 10210, 7.99, '2007-04-30 23:27:18.996577'); -INSERT INTO dvds.payment VALUES (26591, 392, 1, 3566, 2.99, '2007-04-06 01:37:17.996577'); -INSERT INTO dvds.payment VALUES (26592, 392, 2, 6061, 0.99, '2007-04-11 02:34:51.996577'); -INSERT INTO dvds.payment VALUES (26593, 392, 2, 6406, 2.99, '2007-04-11 21:23:53.996577'); -INSERT INTO dvds.payment VALUES (26594, 392, 1, 7692, 2.99, '2007-04-28 01:58:47.996577'); -INSERT INTO dvds.payment VALUES (26595, 392, 1, 7981, 1.99, '2007-04-28 12:46:51.996577'); -INSERT INTO dvds.payment VALUES (26596, 392, 1, 8254, 0.99, '2007-04-28 23:27:57.996577'); -INSERT INTO dvds.payment VALUES (26597, 392, 2, 8612, 9.99, '2007-04-29 11:56:46.996577'); -INSERT INTO dvds.payment VALUES (26598, 392, 2, 10085, 0.99, '2007-04-30 18:40:28.996577'); -INSERT INTO dvds.payment VALUES (26599, 393, 2, 4275, 2.99, '2007-04-07 13:12:17.996577'); -INSERT INTO dvds.payment VALUES (26600, 393, 2, 4546, 8.99, '2007-04-08 02:47:02.996577'); -INSERT INTO dvds.payment VALUES (26601, 393, 2, 4632, 5.99, '2007-04-08 07:07:23.996577'); -INSERT INTO dvds.payment VALUES (26602, 393, 2, 4791, 7.99, '2007-04-08 14:55:50.996577'); -INSERT INTO dvds.payment VALUES (26603, 393, 1, 5099, 4.99, '2007-04-09 04:42:56.996577'); -INSERT INTO dvds.payment VALUES (26604, 393, 1, 6221, 2.99, '2007-04-11 11:52:53.996577'); -INSERT INTO dvds.payment VALUES (26605, 393, 2, 6513, 0.99, '2007-04-12 02:13:09.996577'); -INSERT INTO dvds.payment VALUES (26606, 393, 1, 6930, 8.99, '2007-04-26 21:28:27.996577'); -INSERT INTO dvds.payment VALUES (26607, 393, 2, 7486, 0.99, '2007-04-27 17:57:50.996577'); -INSERT INTO dvds.payment VALUES (26608, 393, 2, 8004, 4.99, '2007-04-28 13:42:33.996577'); -INSERT INTO dvds.payment VALUES (26609, 393, 2, 8448, 0.99, '2007-04-29 06:10:20.996577'); -INSERT INTO dvds.payment VALUES (26610, 393, 2, 9763, 7.99, '2007-04-30 08:02:29.996577'); -INSERT INTO dvds.payment VALUES (26611, 393, 1, 10158, 1.99, '2007-04-30 21:08:57.996577'); -INSERT INTO dvds.payment VALUES (26612, 394, 2, 3543, 0.99, '2007-04-06 00:29:34.996577'); -INSERT INTO dvds.payment VALUES (26613, 394, 1, 3873, 6.99, '2007-04-06 16:31:42.996577'); -INSERT INTO dvds.payment VALUES (26614, 394, 2, 4009, 2.99, '2007-04-06 22:57:21.996577'); -INSERT INTO dvds.payment VALUES (26615, 394, 1, 4307, 6.99, '2007-04-07 15:49:05.996577'); -INSERT INTO dvds.payment VALUES (26616, 394, 2, 5183, 4.99, '2007-04-09 08:42:11.996577'); -INSERT INTO dvds.payment VALUES (26617, 394, 1, 5535, 4.99, '2007-04-10 00:56:08.996577'); -INSERT INTO dvds.payment VALUES (26618, 394, 2, 6059, 4.99, '2007-04-11 02:32:20.996577'); -INSERT INTO dvds.payment VALUES (26619, 394, 2, 7445, 3.99, '2007-04-27 16:25:41.996577'); -INSERT INTO dvds.payment VALUES (26620, 394, 1, 9147, 0.99, '2007-04-30 09:07:25.996577'); -INSERT INTO dvds.payment VALUES (26621, 394, 2, 9864, 0.99, '2007-04-30 11:35:20.996577'); -INSERT INTO dvds.payment VALUES (26622, 395, 2, 3684, 0.99, '2007-04-06 07:57:48.996577'); -INSERT INTO dvds.payment VALUES (26623, 395, 1, 4185, 5.99, '2007-04-07 08:59:31.996577'); -INSERT INTO dvds.payment VALUES (26624, 395, 1, 4393, 4.99, '2007-04-07 19:41:02.996577'); -INSERT INTO dvds.payment VALUES (26625, 395, 1, 5087, 0.99, '2007-04-09 04:12:54.996577'); -INSERT INTO dvds.payment VALUES (26626, 395, 2, 5136, 0.99, '2007-04-09 06:23:27.996577'); -INSERT INTO dvds.payment VALUES (26627, 395, 1, 7740, 2.99, '2007-04-28 03:52:02.996577'); -INSERT INTO dvds.payment VALUES (26628, 395, 2, 7986, 7.99, '2007-04-28 12:58:39.996577'); -INSERT INTO dvds.payment VALUES (26629, 396, 2, 3909, 6.99, '2007-04-06 18:23:07.996577'); -INSERT INTO dvds.payment VALUES (26630, 396, 1, 5059, 1.99, '2007-04-09 02:56:27.996577'); -INSERT INTO dvds.payment VALUES (26631, 396, 2, 6335, 2.99, '2007-04-11 17:53:41.996577'); -INSERT INTO dvds.payment VALUES (26632, 396, 2, 6764, 4.99, '2007-04-12 13:57:53.996577'); -INSERT INTO dvds.payment VALUES (26633, 396, 2, 6771, 2.99, '2007-04-12 14:23:06.996577'); -INSERT INTO dvds.payment VALUES (26634, 396, 2, 7142, 0.99, '2007-04-27 05:24:05.996577'); -INSERT INTO dvds.payment VALUES (26635, 396, 2, 7313, 2.99, '2007-04-27 11:40:23.996577'); -INSERT INTO dvds.payment VALUES (26636, 396, 2, 8371, 2.99, '2007-04-29 03:45:01.996577'); -INSERT INTO dvds.payment VALUES (26637, 396, 2, 8807, 2.99, '2007-04-29 20:05:25.996577'); -INSERT INTO dvds.payment VALUES (26638, 396, 1, 9344, 5.99, '2007-04-30 16:42:11.996577'); -INSERT INTO dvds.payment VALUES (26639, 396, 2, 10120, 2.99, '2007-04-30 19:52:50.996577'); -INSERT INTO dvds.payment VALUES (26640, 396, 2, 10124, 0.99, '2007-04-30 20:00:15.996577'); -INSERT INTO dvds.payment VALUES (26641, 396, 2, 10195, 6.99, '2007-04-30 23:03:08.996577'); -INSERT INTO dvds.payment VALUES (26642, 397, 1, 3489, 5.99, '2007-04-05 22:02:06.996577'); -INSERT INTO dvds.payment VALUES (26643, 397, 1, 4036, 0.99, '2007-04-07 01:16:26.996577'); -INSERT INTO dvds.payment VALUES (26644, 397, 2, 5103, 4.99, '2007-04-09 05:03:06.996577'); -INSERT INTO dvds.payment VALUES (26645, 397, 2, 5598, 4.99, '2007-04-10 03:16:55.996577'); -INSERT INTO dvds.payment VALUES (26646, 397, 2, 5763, 4.99, '2007-04-10 11:26:38.996577'); -INSERT INTO dvds.payment VALUES (26647, 397, 2, 6014, 2.99, '2007-04-11 00:31:21.996577'); -INSERT INTO dvds.payment VALUES (26648, 397, 2, 6266, 2.99, '2007-04-11 14:14:05.996577'); -INSERT INTO dvds.payment VALUES (26649, 397, 1, 6471, 4.99, '2007-04-11 23:59:32.996577'); -INSERT INTO dvds.payment VALUES (26650, 397, 2, 7356, 2.99, '2007-04-27 13:16:01.996577'); -INSERT INTO dvds.payment VALUES (26651, 397, 2, 7892, 4.99, '2007-04-28 09:15:24.996577'); -INSERT INTO dvds.payment VALUES (26652, 397, 1, 8103, 6.99, '2007-04-28 17:18:40.996577'); -INSERT INTO dvds.payment VALUES (26653, 397, 1, 9495, 0.99, '2007-04-30 22:22:52.996577'); -INSERT INTO dvds.payment VALUES (26654, 397, 2, 9608, 1.99, '2007-04-30 02:20:18.996577'); -INSERT INTO dvds.payment VALUES (26655, 398, 2, 5234, 5.99, '2007-04-09 11:13:13.996577'); -INSERT INTO dvds.payment VALUES (26656, 398, 2, 8119, 3.99, '2007-04-28 17:51:41.996577'); -INSERT INTO dvds.payment VALUES (26657, 398, 2, 8204, 4.99, '2007-04-28 21:46:55.996577'); -INSERT INTO dvds.payment VALUES (26658, 398, 1, 8428, 7.99, '2007-04-29 05:38:40.996577'); -INSERT INTO dvds.payment VALUES (26659, 398, 1, 9042, 2.99, '2007-04-30 05:02:21.996577'); -INSERT INTO dvds.payment VALUES (26660, 398, 2, 9281, 5.99, '2007-04-30 13:44:17.996577'); -INSERT INTO dvds.payment VALUES (26661, 398, 1, 9771, 1.99, '2007-04-30 08:24:02.996577'); -INSERT INTO dvds.payment VALUES (26662, 399, 2, 4957, 0.99, '2007-04-08 21:47:14.996577'); -INSERT INTO dvds.payment VALUES (26663, 399, 2, 4981, 4.99, '2007-04-08 22:57:55.996577'); -INSERT INTO dvds.payment VALUES (26664, 399, 1, 5507, 0.99, '2007-04-09 23:17:30.996577'); -INSERT INTO dvds.payment VALUES (26665, 399, 2, 6006, 2.99, '2007-04-11 00:07:08.996577'); -INSERT INTO dvds.payment VALUES (26666, 399, 2, 6229, 6.99, '2007-04-11 12:28:16.996577'); -INSERT INTO dvds.payment VALUES (26667, 399, 2, 6674, 4.99, '2007-04-12 10:20:20.996577'); -INSERT INTO dvds.payment VALUES (26668, 399, 2, 8461, 5.99, '2007-04-29 06:39:57.996577'); -INSERT INTO dvds.payment VALUES (26669, 399, 2, 9728, 2.99, '2007-04-30 07:09:20.996577'); -INSERT INTO dvds.payment VALUES (26670, 400, 1, 4573, 6.99, '2007-04-08 04:07:12.996577'); -INSERT INTO dvds.payment VALUES (26671, 400, 1, 4645, 2.99, '2007-04-08 07:48:35.996577'); -INSERT INTO dvds.payment VALUES (26672, 400, 2, 5212, 6.99, '2007-04-09 10:06:13.996577'); -INSERT INTO dvds.payment VALUES (26673, 400, 2, 5222, 5.99, '2007-04-09 10:34:11.996577'); -INSERT INTO dvds.payment VALUES (26674, 400, 2, 6790, 5.99, '2007-04-12 15:03:25.996577'); -INSERT INTO dvds.payment VALUES (26675, 400, 2, 6994, 2.99, '2007-04-26 23:36:52.996577'); -INSERT INTO dvds.payment VALUES (26676, 400, 2, 7296, 2.99, '2007-04-27 11:08:14.996577'); -INSERT INTO dvds.payment VALUES (26677, 400, 1, 7682, 5.99, '2007-04-28 01:35:55.996577'); -INSERT INTO dvds.payment VALUES (26678, 400, 2, 9177, 5.99, '2007-04-30 10:21:06.996577'); -INSERT INTO dvds.payment VALUES (26679, 400, 2, 9756, 4.99, '2007-04-30 07:53:26.996577'); -INSERT INTO dvds.payment VALUES (26680, 400, 1, 10187, 2.99, '2007-04-30 22:44:15.996577'); -INSERT INTO dvds.payment VALUES (26681, 401, 1, 4059, 0.99, '2007-04-07 02:32:52.996577'); -INSERT INTO dvds.payment VALUES (26682, 401, 2, 4292, 7.99, '2007-04-07 14:17:04.996577'); -INSERT INTO dvds.payment VALUES (26683, 401, 2, 5923, 0.99, '2007-04-10 20:08:32.996577'); -INSERT INTO dvds.payment VALUES (26684, 267, 2, 9059, 3.99, '2007-04-30 05:47:10.996577'); -INSERT INTO dvds.payment VALUES (26685, 401, 2, 7651, 4.99, '2007-04-28 00:16:58.996577'); -INSERT INTO dvds.payment VALUES (26686, 401, 1, 8450, 2.99, '2007-04-29 06:12:31.996577'); -INSERT INTO dvds.payment VALUES (26687, 401, 2, 8669, 2.99, '2007-04-29 14:13:21.996577'); -INSERT INTO dvds.payment VALUES (26688, 401, 1, 8722, 8.99, '2007-04-29 16:27:24.996577'); -INSERT INTO dvds.payment VALUES (26689, 401, 2, 9701, 4.99, '2007-04-30 06:00:47.996577'); -INSERT INTO dvds.payment VALUES (26690, 401, 2, 10171, 0.99, '2007-04-30 21:57:31.996577'); -INSERT INTO dvds.payment VALUES (26691, 402, 2, 3564, 6.99, '2007-04-06 01:30:39.996577'); -INSERT INTO dvds.payment VALUES (26692, 402, 2, 3612, 3.99, '2007-04-06 04:05:52.996577'); -INSERT INTO dvds.payment VALUES (26693, 402, 2, 3755, 5.99, '2007-04-06 11:05:42.996577'); -INSERT INTO dvds.payment VALUES (26694, 402, 1, 4399, 2.99, '2007-04-07 19:48:54.996577'); -INSERT INTO dvds.payment VALUES (26695, 402, 2, 4604, 3.99, '2007-04-08 05:27:09.996577'); -INSERT INTO dvds.payment VALUES (26696, 402, 2, 5329, 4.99, '2007-04-09 15:18:12.996577'); -INSERT INTO dvds.payment VALUES (26697, 402, 2, 6183, 2.99, '2007-04-11 09:43:01.996577'); -INSERT INTO dvds.payment VALUES (26698, 402, 1, 6283, 3.99, '2007-04-11 15:15:58.996577'); -INSERT INTO dvds.payment VALUES (26699, 402, 1, 7633, 0.99, '2007-04-27 23:32:07.996577'); -INSERT INTO dvds.payment VALUES (26700, 402, 2, 8521, 7.99, '2007-04-29 08:41:11.996577'); -INSERT INTO dvds.payment VALUES (26701, 402, 1, 9657, 6.99, '2007-04-30 04:29:07.996577'); -INSERT INTO dvds.payment VALUES (26702, 402, 2, 9779, 0.99, '2007-04-30 08:36:59.996577'); -INSERT INTO dvds.payment VALUES (26703, 403, 1, 3644, 6.99, '2007-04-06 05:48:37.996577'); -INSERT INTO dvds.payment VALUES (26704, 403, 2, 3737, 3.99, '2007-04-06 10:14:19.996577'); -INSERT INTO dvds.payment VALUES (26705, 403, 2, 4096, 4.99, '2007-04-07 04:37:37.996577'); -INSERT INTO dvds.payment VALUES (26706, 403, 1, 5982, 4.99, '2007-04-10 22:53:10.996577'); -INSERT INTO dvds.payment VALUES (26707, 403, 2, 6322, 2.99, '2007-04-11 17:26:46.996577'); -INSERT INTO dvds.payment VALUES (26708, 403, 1, 6342, 4.99, '2007-04-11 18:16:50.996577'); -INSERT INTO dvds.payment VALUES (26709, 403, 1, 7103, 4.99, '2007-04-27 03:37:25.996577'); -INSERT INTO dvds.payment VALUES (26710, 403, 2, 8013, 5.99, '2007-04-28 13:58:52.996577'); -INSERT INTO dvds.payment VALUES (26711, 403, 1, 9058, 2.99, '2007-04-30 05:44:11.996577'); -INSERT INTO dvds.payment VALUES (26712, 403, 2, 9486, 7.99, '2007-04-30 22:04:08.996577'); -INSERT INTO dvds.payment VALUES (26713, 403, 2, 9794, 4.99, '2007-04-30 09:15:27.996577'); -INSERT INTO dvds.payment VALUES (26714, 403, 2, 10109, 5.99, '2007-04-30 19:33:15.996577'); -INSERT INTO dvds.payment VALUES (26715, 404, 1, 3927, 2.99, '2007-04-06 19:16:40.996577'); -INSERT INTO dvds.payment VALUES (26716, 404, 1, 4495, 2.99, '2007-04-08 00:12:12.996577'); -INSERT INTO dvds.payment VALUES (26717, 404, 2, 4615, 8.99, '2007-04-08 06:15:19.996577'); -INSERT INTO dvds.payment VALUES (26718, 404, 1, 4653, 4.99, '2007-04-08 08:16:27.996577'); -INSERT INTO dvds.payment VALUES (26719, 404, 1, 4963, 4.99, '2007-04-08 22:07:06.996577'); -INSERT INTO dvds.payment VALUES (26720, 404, 1, 5632, 3.99, '2007-04-10 04:45:32.996577'); -INSERT INTO dvds.payment VALUES (26721, 404, 1, 6114, 1.99, '2007-04-11 06:02:14.996577'); -INSERT INTO dvds.payment VALUES (26722, 404, 2, 6779, 0.99, '2007-04-12 14:39:16.996577'); -INSERT INTO dvds.payment VALUES (26723, 404, 1, 6964, 4.99, '2007-04-26 22:43:30.996577'); -INSERT INTO dvds.payment VALUES (26724, 404, 1, 8058, 5.99, '2007-04-28 15:36:15.996577'); -INSERT INTO dvds.payment VALUES (26725, 404, 1, 8455, 3.99, '2007-04-29 06:21:32.996577'); -INSERT INTO dvds.payment VALUES (26726, 404, 1, 9206, 4.99, '2007-04-30 11:15:25.996577'); -INSERT INTO dvds.payment VALUES (26727, 404, 1, 9472, 4.99, '2007-04-30 21:31:58.996577'); -INSERT INTO dvds.payment VALUES (26728, 404, 2, 9824, 2.99, '2007-04-30 10:18:21.996577'); -INSERT INTO dvds.payment VALUES (26729, 405, 2, 4223, 0.99, '2007-04-07 10:52:20.996577'); -INSERT INTO dvds.payment VALUES (26730, 405, 2, 4401, 0.99, '2007-04-07 19:54:53.996577'); -INSERT INTO dvds.payment VALUES (26731, 405, 2, 5040, 7.99, '2007-04-09 01:45:00.996577'); -INSERT INTO dvds.payment VALUES (26732, 405, 1, 5231, 0.99, '2007-04-09 11:03:28.996577'); -INSERT INTO dvds.payment VALUES (26733, 405, 2, 5512, 1.99, '2007-04-09 23:34:04.996577'); -INSERT INTO dvds.payment VALUES (26734, 405, 1, 6110, 2.99, '2007-04-11 05:52:13.996577'); -INSERT INTO dvds.payment VALUES (26735, 405, 1, 7455, 2.99, '2007-04-27 17:03:07.996577'); -INSERT INTO dvds.payment VALUES (26736, 405, 1, 7759, 0.99, '2007-04-28 04:57:11.996577'); -INSERT INTO dvds.payment VALUES (26737, 405, 2, 8482, 2.99, '2007-04-29 07:14:59.996577'); -INSERT INTO dvds.payment VALUES (26738, 405, 1, 8955, 5.99, '2007-04-30 01:56:53.996577'); -INSERT INTO dvds.payment VALUES (26739, 405, 1, 9569, 0.99, '2007-04-30 01:08:04.996577'); -INSERT INTO dvds.payment VALUES (26740, 406, 2, 4264, 4.99, '2007-04-07 12:53:54.996577'); -INSERT INTO dvds.payment VALUES (26741, 406, 2, 5098, 4.99, '2007-04-09 04:42:20.996577'); -INSERT INTO dvds.payment VALUES (26742, 406, 2, 5263, 0.99, '2007-04-09 12:39:02.996577'); -INSERT INTO dvds.payment VALUES (26743, 406, 1, 5766, 0.99, '2007-04-10 11:35:57.996577'); -INSERT INTO dvds.payment VALUES (26744, 406, 2, 6439, 2.99, '2007-04-11 22:52:14.996577'); -INSERT INTO dvds.payment VALUES (26745, 406, 2, 7109, 5.99, '2007-04-27 03:57:23.996577'); -INSERT INTO dvds.payment VALUES (26746, 406, 1, 7171, 4.99, '2007-04-27 06:27:01.996577'); -INSERT INTO dvds.payment VALUES (26747, 406, 1, 7259, 4.99, '2007-04-27 09:34:26.996577'); -INSERT INTO dvds.payment VALUES (26748, 406, 2, 7604, 7.99, '2007-04-27 22:23:18.996577'); -INSERT INTO dvds.payment VALUES (26749, 406, 2, 8080, 4.99, '2007-04-28 16:33:32.996577'); -INSERT INTO dvds.payment VALUES (26750, 406, 2, 8295, 2.99, '2007-04-29 01:10:40.996577'); -INSERT INTO dvds.payment VALUES (26751, 406, 2, 8630, 0.99, '2007-04-29 12:36:25.996577'); -INSERT INTO dvds.payment VALUES (26752, 406, 1, 8903, 0.99, '2007-04-29 23:36:32.996577'); -INSERT INTO dvds.payment VALUES (26753, 406, 2, 8962, 1.99, '2007-04-30 02:12:11.996577'); -INSERT INTO dvds.payment VALUES (26754, 406, 2, 9224, 0.99, '2007-04-30 11:54:03.996577'); -INSERT INTO dvds.payment VALUES (26755, 406, 1, 9291, 4.99, '2007-04-30 14:32:05.996577'); -INSERT INTO dvds.payment VALUES (26756, 406, 2, 9487, 2.99, '2007-04-30 22:08:48.996577'); -INSERT INTO dvds.payment VALUES (26757, 406, 1, 9660, 8.99, '2007-04-30 04:31:43.996577'); -INSERT INTO dvds.payment VALUES (26758, 407, 1, 4296, 0.99, '2007-04-07 14:44:29.996577'); -INSERT INTO dvds.payment VALUES (26759, 407, 1, 5070, 4.99, '2007-04-09 03:26:52.996577'); -INSERT INTO dvds.payment VALUES (26760, 407, 2, 5590, 9.99, '2007-04-10 02:51:37.996577'); -INSERT INTO dvds.payment VALUES (26761, 407, 1, 6727, 0.99, '2007-04-12 12:22:51.996577'); -INSERT INTO dvds.payment VALUES (26762, 407, 1, 7363, 5.99, '2007-04-27 13:26:55.996577'); -INSERT INTO dvds.payment VALUES (26763, 407, 2, 7643, 4.99, '2007-04-27 23:48:10.996577'); -INSERT INTO dvds.payment VALUES (26764, 407, 1, 8078, 2.99, '2007-04-28 16:23:08.996577'); -INSERT INTO dvds.payment VALUES (26765, 407, 1, 8109, 4.99, '2007-04-28 17:36:10.996577'); -INSERT INTO dvds.payment VALUES (26766, 407, 1, 8197, 9.99, '2007-04-28 21:32:36.996577'); -INSERT INTO dvds.payment VALUES (26767, 407, 2, 8571, 0.99, '2007-04-29 10:17:05.996577'); -INSERT INTO dvds.payment VALUES (26768, 407, 1, 8802, 2.99, '2007-04-29 19:54:17.996577'); -INSERT INTO dvds.payment VALUES (26769, 408, 2, 4330, 3.99, '2007-04-07 16:38:07.996577'); -INSERT INTO dvds.payment VALUES (26770, 408, 2, 5073, 0.99, '2007-04-09 03:31:01.996577'); -INSERT INTO dvds.payment VALUES (26771, 408, 1, 6062, 0.99, '2007-04-11 02:40:24.996577'); -INSERT INTO dvds.payment VALUES (26772, 408, 2, 6203, 4.99, '2007-04-11 10:57:23.996577'); -INSERT INTO dvds.payment VALUES (26773, 408, 2, 6826, 2.99, '2007-04-12 17:00:28.996577'); -INSERT INTO dvds.payment VALUES (26774, 408, 1, 7053, 4.99, '2007-04-27 02:07:20.996577'); -INSERT INTO dvds.payment VALUES (26775, 408, 2, 7996, 4.99, '2007-04-28 13:29:15.996577'); -INSERT INTO dvds.payment VALUES (26776, 408, 2, 8251, 4.99, '2007-04-28 23:18:40.996577'); -INSERT INTO dvds.payment VALUES (26777, 408, 2, 8469, 3.99, '2007-04-29 06:54:53.996577'); -INSERT INTO dvds.payment VALUES (26778, 408, 2, 8902, 6.99, '2007-04-29 23:36:32.996577'); -INSERT INTO dvds.payment VALUES (26779, 408, 1, 9052, 0.99, '2007-04-30 05:34:34.996577'); -INSERT INTO dvds.payment VALUES (26780, 408, 2, 9757, 4.99, '2007-04-30 07:53:40.996577'); -INSERT INTO dvds.payment VALUES (26781, 409, 1, 3866, 5.99, '2007-04-06 16:15:46.996577'); -INSERT INTO dvds.payment VALUES (26782, 409, 2, 4550, 4.99, '2007-04-08 03:02:26.996577'); -INSERT INTO dvds.payment VALUES (26783, 409, 1, 5175, 3.99, '2007-04-09 08:02:54.996577'); -INSERT INTO dvds.payment VALUES (26784, 409, 2, 5306, 5.99, '2007-04-09 14:25:11.996577'); -INSERT INTO dvds.payment VALUES (26785, 409, 1, 5422, 0.99, '2007-04-09 19:24:13.996577'); -INSERT INTO dvds.payment VALUES (26786, 409, 1, 5848, 2.99, '2007-04-10 15:56:40.996577'); -INSERT INTO dvds.payment VALUES (26787, 409, 1, 5955, 7.99, '2007-04-10 21:50:36.996577'); -INSERT INTO dvds.payment VALUES (26788, 409, 2, 6026, 4.99, '2007-04-11 00:50:09.996577'); -INSERT INTO dvds.payment VALUES (26789, 409, 1, 6596, 2.99, '2007-04-12 06:01:25.996577'); -INSERT INTO dvds.payment VALUES (26790, 409, 2, 7673, 2.99, '2007-04-28 01:22:19.996577'); -INSERT INTO dvds.payment VALUES (26791, 409, 2, 7940, 0.99, '2007-04-28 11:15:13.996577'); -INSERT INTO dvds.payment VALUES (26792, 409, 1, 8037, 4.99, '2007-04-28 14:59:46.996577'); -INSERT INTO dvds.payment VALUES (26793, 409, 2, 8265, 5.99, '2007-04-28 23:48:41.996577'); -INSERT INTO dvds.payment VALUES (26794, 409, 1, 8726, 1.99, '2007-04-29 16:37:48.996577'); -INSERT INTO dvds.payment VALUES (26795, 409, 2, 9267, 0.99, '2007-04-30 13:27:31.996577'); -INSERT INTO dvds.payment VALUES (26796, 410, 2, 4062, 0.99, '2007-04-07 02:50:53.996577'); -INSERT INTO dvds.payment VALUES (26797, 410, 1, 4267, 0.99, '2007-04-07 13:03:56.996577'); -INSERT INTO dvds.payment VALUES (26798, 410, 1, 5150, 3.99, '2007-04-09 06:57:06.996577'); -INSERT INTO dvds.payment VALUES (26799, 410, 1, 5192, 4.99, '2007-04-09 08:55:35.996577'); -INSERT INTO dvds.payment VALUES (26800, 410, 2, 5330, 5.99, '2007-04-09 15:22:23.996577'); -INSERT INTO dvds.payment VALUES (26801, 410, 1, 5336, 2.99, '2007-04-09 15:29:34.996577'); -INSERT INTO dvds.payment VALUES (26802, 410, 1, 6148, 4.99, '2007-04-11 07:42:48.996577'); -INSERT INTO dvds.payment VALUES (26803, 410, 2, 6218, 5.99, '2007-04-11 11:43:24.996577'); -INSERT INTO dvds.payment VALUES (26804, 410, 2, 7350, 4.99, '2007-04-27 13:02:40.996577'); -INSERT INTO dvds.payment VALUES (26805, 410, 2, 7407, 5.99, '2007-04-27 14:57:30.996577'); -INSERT INTO dvds.payment VALUES (26806, 410, 1, 7523, 4.99, '2007-04-27 19:39:49.996577'); -INSERT INTO dvds.payment VALUES (26807, 410, 2, 8625, 3.99, '2007-04-29 12:27:39.996577'); -INSERT INTO dvds.payment VALUES (26808, 410, 1, 8882, 0.99, '2007-04-29 22:52:31.996577'); -INSERT INTO dvds.payment VALUES (26809, 410, 1, 9263, 2.99, '2007-04-30 13:16:50.996577'); -INSERT INTO dvds.payment VALUES (26810, 411, 1, 3928, 2.99, '2007-04-06 19:20:35.996577'); -INSERT INTO dvds.payment VALUES (26811, 411, 2, 4146, 0.99, '2007-04-07 06:58:42.996577'); -INSERT INTO dvds.payment VALUES (26812, 411, 1, 4246, 2.99, '2007-04-07 12:17:29.996577'); -INSERT INTO dvds.payment VALUES (26813, 411, 2, 5357, 5.99, '2007-04-09 16:37:25.996577'); -INSERT INTO dvds.payment VALUES (26814, 411, 1, 5800, 2.99, '2007-04-10 13:27:02.996577'); -INSERT INTO dvds.payment VALUES (26815, 411, 1, 7102, 1.99, '2007-04-27 03:35:47.996577'); -INSERT INTO dvds.payment VALUES (26816, 411, 2, 7395, 0.99, '2007-04-27 14:31:37.996577'); -INSERT INTO dvds.payment VALUES (26817, 411, 1, 7513, 2.99, '2007-04-27 19:19:30.996577'); -INSERT INTO dvds.payment VALUES (26818, 411, 1, 7813, 2.99, '2007-04-28 06:36:53.996577'); -INSERT INTO dvds.payment VALUES (26819, 411, 1, 8023, 0.99, '2007-04-28 14:21:55.996577'); -INSERT INTO dvds.payment VALUES (26820, 411, 2, 8613, 5.99, '2007-04-29 11:59:24.996577'); -INSERT INTO dvds.payment VALUES (26821, 411, 2, 9622, 0.99, '2007-04-30 02:50:11.996577'); -INSERT INTO dvds.payment VALUES (26822, 412, 2, 3888, 0.99, '2007-04-06 17:22:46.996577'); -INSERT INTO dvds.payment VALUES (26823, 412, 2, 4074, 0.99, '2007-04-07 03:18:15.996577'); -INSERT INTO dvds.payment VALUES (26824, 412, 1, 8036, 0.99, '2007-04-28 14:56:09.996577'); -INSERT INTO dvds.payment VALUES (26825, 412, 2, 8330, 8.99, '2007-04-29 02:37:33.996577'); -INSERT INTO dvds.payment VALUES (26826, 412, 1, 8411, 8.99, '2007-04-29 05:12:49.996577'); -INSERT INTO dvds.payment VALUES (26827, 412, 1, 8674, 0.99, '2007-04-29 14:22:48.996577'); -INSERT INTO dvds.payment VALUES (26828, 412, 1, 9881, 4.99, '2007-04-30 12:19:04.996577'); -INSERT INTO dvds.payment VALUES (26829, 413, 1, 3762, 4.99, '2007-04-06 11:21:15.996577'); -INSERT INTO dvds.payment VALUES (26830, 413, 2, 4491, 0.99, '2007-04-07 23:59:12.996577'); -INSERT INTO dvds.payment VALUES (26831, 413, 1, 5897, 7.99, '2007-04-10 18:44:40.996577'); -INSERT INTO dvds.payment VALUES (26832, 413, 2, 7100, 4.99, '2007-04-27 03:33:27.996577'); -INSERT INTO dvds.payment VALUES (26833, 413, 1, 7635, 0.99, '2007-04-27 23:36:37.996577'); -INSERT INTO dvds.payment VALUES (26834, 413, 2, 7731, 0.99, '2007-04-28 03:29:44.996577'); -INSERT INTO dvds.payment VALUES (26835, 414, 1, 3957, 10.99, '2007-04-06 20:34:13.996577'); -INSERT INTO dvds.payment VALUES (26836, 414, 1, 4437, 3.99, '2007-04-07 21:24:07.996577'); -INSERT INTO dvds.payment VALUES (26837, 414, 2, 6462, 7.99, '2007-04-11 23:43:50.996577'); -INSERT INTO dvds.payment VALUES (26838, 414, 2, 6728, 0.99, '2007-04-12 12:25:14.996577'); -INSERT INTO dvds.payment VALUES (26839, 414, 2, 6845, 0.99, '2007-04-12 17:49:07.996577'); -INSERT INTO dvds.payment VALUES (26840, 414, 1, 7009, 0.99, '2007-04-27 00:14:10.996577'); -INSERT INTO dvds.payment VALUES (26841, 414, 1, 7779, 2.99, '2007-04-28 05:39:37.996577'); -INSERT INTO dvds.payment VALUES (26842, 414, 1, 9650, 2.99, '2007-04-30 04:15:58.996577'); -INSERT INTO dvds.payment VALUES (26843, 414, 2, 9991, 2.99, '2007-04-30 15:54:53.996577'); -INSERT INTO dvds.payment VALUES (26844, 414, 2, 10107, 5.99, '2007-04-30 19:30:12.996577'); -INSERT INTO dvds.payment VALUES (26845, 415, 2, 4926, 8.99, '2007-04-08 20:30:14.996577'); -INSERT INTO dvds.payment VALUES (26846, 415, 2, 5665, 0.99, '2007-04-10 06:38:34.996577'); -INSERT INTO dvds.payment VALUES (26847, 415, 2, 5733, 0.99, '2007-04-10 10:05:50.996577'); -INSERT INTO dvds.payment VALUES (26848, 415, 2, 6491, 5.99, '2007-04-12 00:56:57.996577'); -INSERT INTO dvds.payment VALUES (26849, 415, 1, 6505, 3.99, '2007-04-12 01:56:03.996577'); -INSERT INTO dvds.payment VALUES (26850, 415, 1, 7379, 4.99, '2007-04-27 14:05:09.996577'); -INSERT INTO dvds.payment VALUES (26851, 415, 2, 7624, 0.99, '2007-04-27 23:06:10.996577'); -INSERT INTO dvds.payment VALUES (26852, 415, 1, 7748, 4.99, '2007-04-28 04:20:49.996577'); -INSERT INTO dvds.payment VALUES (26853, 415, 2, 8317, 2.99, '2007-04-29 02:07:33.996577'); -INSERT INTO dvds.payment VALUES (26854, 415, 2, 9586, 2.99, '2007-04-30 01:35:42.996577'); -INSERT INTO dvds.payment VALUES (26855, 415, 1, 9852, 2.99, '2007-04-30 11:20:43.996577'); -INSERT INTO dvds.payment VALUES (26856, 416, 1, 3833, 3.99, '2007-04-06 14:46:54.996577'); -INSERT INTO dvds.payment VALUES (26857, 416, 1, 3868, 2.99, '2007-04-06 16:22:39.996577'); -INSERT INTO dvds.payment VALUES (26858, 416, 1, 6097, 2.99, '2007-04-11 04:50:09.996577'); -INSERT INTO dvds.payment VALUES (26859, 416, 1, 6879, 7.99, '2007-04-12 19:06:03.996577'); -INSERT INTO dvds.payment VALUES (26860, 416, 1, 7889, 0.99, '2007-04-28 09:11:47.996577'); -INSERT INTO dvds.payment VALUES (26861, 416, 1, 7917, 2.99, '2007-04-28 10:25:23.996577'); -INSERT INTO dvds.payment VALUES (26862, 416, 2, 8349, 5.99, '2007-04-29 03:18:48.996577'); -INSERT INTO dvds.payment VALUES (26863, 416, 2, 8588, 2.99, '2007-04-29 10:50:46.996577'); -INSERT INTO dvds.payment VALUES (26864, 416, 2, 8648, 2.99, '2007-04-29 13:24:47.996577'); -INSERT INTO dvds.payment VALUES (26865, 416, 2, 9383, 2.99, '2007-04-30 17:53:16.996577'); -INSERT INTO dvds.payment VALUES (26866, 417, 1, 3952, 4.99, '2007-04-06 20:19:57.996577'); -INSERT INTO dvds.payment VALUES (26867, 417, 1, 4418, 2.99, '2007-04-07 20:33:56.996577'); -INSERT INTO dvds.payment VALUES (26868, 417, 1, 4421, 9.99, '2007-04-07 20:36:21.996577'); -INSERT INTO dvds.payment VALUES (26869, 417, 2, 6258, 6.99, '2007-04-11 13:52:58.996577'); -INSERT INTO dvds.payment VALUES (26870, 417, 1, 6312, 4.99, '2007-04-11 16:47:28.996577'); -INSERT INTO dvds.payment VALUES (26871, 417, 1, 8877, 2.99, '2007-04-29 22:43:48.996577'); -INSERT INTO dvds.payment VALUES (26872, 417, 2, 9049, 2.99, '2007-04-30 05:25:54.996577'); -INSERT INTO dvds.payment VALUES (26873, 418, 1, 3805, 0.99, '2007-04-06 13:37:08.996577'); -INSERT INTO dvds.payment VALUES (26874, 418, 2, 4852, 7.99, '2007-04-08 17:11:41.996577'); -INSERT INTO dvds.payment VALUES (26875, 418, 1, 4865, 2.99, '2007-04-08 17:37:30.996577'); -INSERT INTO dvds.payment VALUES (26876, 418, 1, 4938, 0.99, '2007-04-08 21:01:19.996577'); -INSERT INTO dvds.payment VALUES (26877, 418, 1, 6150, 4.99, '2007-04-11 07:52:22.996577'); -INSERT INTO dvds.payment VALUES (26878, 418, 1, 6970, 4.99, '2007-04-26 22:54:40.996577'); -INSERT INTO dvds.payment VALUES (26879, 418, 2, 8546, 5.99, '2007-04-29 09:37:14.996577'); -INSERT INTO dvds.payment VALUES (26880, 418, 2, 8591, 0.99, '2007-04-29 11:00:59.996577'); -INSERT INTO dvds.payment VALUES (26881, 418, 2, 8886, 10.99, '2007-04-29 23:04:57.996577'); -INSERT INTO dvds.payment VALUES (26882, 418, 1, 9558, 4.99, '2007-04-30 00:43:01.996577'); -INSERT INTO dvds.payment VALUES (26883, 419, 1, 3596, 0.99, '2007-04-06 03:31:37.996577'); -INSERT INTO dvds.payment VALUES (26884, 419, 1, 3694, 4.99, '2007-04-06 08:29:49.996577'); -INSERT INTO dvds.payment VALUES (26885, 419, 1, 4224, 0.99, '2007-04-07 10:52:47.996577'); -INSERT INTO dvds.payment VALUES (26886, 419, 2, 5333, 5.99, '2007-04-09 15:28:04.996577'); -INSERT INTO dvds.payment VALUES (26887, 419, 2, 5863, 0.99, '2007-04-10 16:53:49.996577'); -INSERT INTO dvds.payment VALUES (26888, 419, 1, 5900, 3.99, '2007-04-10 18:50:20.996577'); -INSERT INTO dvds.payment VALUES (26889, 419, 2, 5933, 0.99, '2007-04-10 20:35:14.996577'); -INSERT INTO dvds.payment VALUES (26890, 419, 2, 6173, 0.99, '2007-04-11 09:01:37.996577'); -INSERT INTO dvds.payment VALUES (26891, 419, 2, 6587, 3.99, '2007-04-12 05:24:52.996577'); -INSERT INTO dvds.payment VALUES (26892, 419, 1, 7362, 4.99, '2007-04-27 13:26:53.996577'); -INSERT INTO dvds.payment VALUES (26893, 419, 1, 7619, 2.99, '2007-04-27 22:54:07.996577'); -INSERT INTO dvds.payment VALUES (26894, 419, 1, 7796, 4.99, '2007-04-28 06:08:05.996577'); -INSERT INTO dvds.payment VALUES (26895, 419, 1, 10150, 2.99, '2007-04-30 20:50:26.996577'); -INSERT INTO dvds.payment VALUES (26896, 420, 1, 4176, 4.99, '2007-04-07 08:32:00.996577'); -INSERT INTO dvds.payment VALUES (26897, 420, 2, 5081, 4.99, '2007-04-09 03:53:46.996577'); -INSERT INTO dvds.payment VALUES (26898, 420, 1, 5168, 4.99, '2007-04-09 07:48:27.996577'); -INSERT INTO dvds.payment VALUES (26899, 420, 2, 5911, 0.99, '2007-04-10 19:20:08.996577'); -INSERT INTO dvds.payment VALUES (26900, 420, 2, 6086, 3.99, '2007-04-11 03:57:29.996577'); -INSERT INTO dvds.payment VALUES (26901, 420, 2, 6096, 4.99, '2007-04-11 04:46:30.996577'); -INSERT INTO dvds.payment VALUES (26902, 420, 2, 6582, 4.99, '2007-04-12 04:56:38.996577'); -INSERT INTO dvds.payment VALUES (26903, 420, 1, 6588, 4.99, '2007-04-12 05:26:06.996577'); -INSERT INTO dvds.payment VALUES (26904, 420, 2, 7081, 2.99, '2007-04-27 02:54:25.996577'); -INSERT INTO dvds.payment VALUES (26905, 420, 2, 8485, 0.99, '2007-04-29 07:21:35.996577'); -INSERT INTO dvds.payment VALUES (26906, 420, 1, 9362, 0.99, '2007-04-30 17:12:42.996577'); -INSERT INTO dvds.payment VALUES (26907, 421, 1, 3491, 7.99, '2007-04-05 22:09:34.996577'); -INSERT INTO dvds.payment VALUES (26908, 421, 2, 3703, 5.99, '2007-04-06 08:43:52.996577'); -INSERT INTO dvds.payment VALUES (26909, 421, 1, 3988, 8.99, '2007-04-06 21:59:08.996577'); -INSERT INTO dvds.payment VALUES (26910, 421, 2, 4456, 5.99, '2007-04-07 22:13:47.996577'); -INSERT INTO dvds.payment VALUES (26911, 421, 1, 6220, 0.99, '2007-04-11 11:50:32.996577'); -INSERT INTO dvds.payment VALUES (26912, 421, 2, 6960, 3.99, '2007-04-26 22:36:59.996577'); -INSERT INTO dvds.payment VALUES (26913, 421, 2, 7449, 4.99, '2007-04-27 16:46:07.996577'); -INSERT INTO dvds.payment VALUES (26914, 421, 2, 8025, 2.99, '2007-04-28 14:31:53.996577'); -INSERT INTO dvds.payment VALUES (26915, 421, 1, 8268, 4.99, '2007-04-28 23:51:49.996577'); -INSERT INTO dvds.payment VALUES (26916, 421, 1, 8725, 4.99, '2007-04-29 16:37:08.996577'); -INSERT INTO dvds.payment VALUES (26917, 421, 2, 9377, 4.99, '2007-04-30 17:40:44.996577'); -INSERT INTO dvds.payment VALUES (26918, 421, 2, 9875, 0.99, '2007-04-30 12:06:07.996577'); -INSERT INTO dvds.payment VALUES (26919, 421, 1, 10200, 4.99, '2007-04-30 23:07:31.996577'); -INSERT INTO dvds.payment VALUES (26920, 422, 1, 3553, 4.99, '2007-04-06 01:04:07.996577'); -INSERT INTO dvds.payment VALUES (26921, 422, 2, 4463, 2.99, '2007-04-07 22:33:25.996577'); -INSERT INTO dvds.payment VALUES (26922, 422, 2, 4504, 0.99, '2007-04-08 00:47:53.996577'); -INSERT INTO dvds.payment VALUES (26923, 422, 1, 5784, 1.99, '2007-04-10 12:31:54.996577'); -INSERT INTO dvds.payment VALUES (26924, 422, 2, 7827, 0.99, '2007-04-28 07:05:48.996577'); -INSERT INTO dvds.payment VALUES (26925, 422, 2, 8206, 4.99, '2007-04-28 21:48:57.996577'); -INSERT INTO dvds.payment VALUES (26926, 422, 2, 9541, 4.99, '2007-04-30 00:08:40.996577'); -INSERT INTO dvds.payment VALUES (26927, 423, 2, 4105, 0.99, '2007-04-07 04:59:26.996577'); -INSERT INTO dvds.payment VALUES (26928, 423, 1, 4250, 0.99, '2007-04-07 12:36:37.996577'); -INSERT INTO dvds.payment VALUES (26929, 423, 1, 4679, 2.99, '2007-04-08 09:01:40.996577'); -INSERT INTO dvds.payment VALUES (26930, 423, 1, 6506, 1.99, '2007-04-12 01:56:48.996577'); -INSERT INTO dvds.payment VALUES (26931, 423, 1, 7016, 5.99, '2007-04-27 00:43:42.996577'); -INSERT INTO dvds.payment VALUES (26932, 423, 2, 7141, 2.99, '2007-04-27 05:23:53.996577'); -INSERT INTO dvds.payment VALUES (26933, 423, 1, 7157, 4.99, '2007-04-27 05:48:54.996577'); -INSERT INTO dvds.payment VALUES (26934, 423, 1, 7290, 0.99, '2007-04-27 10:57:11.996577'); -INSERT INTO dvds.payment VALUES (26935, 423, 2, 7539, 9.99, '2007-04-27 20:08:08.996577'); -INSERT INTO dvds.payment VALUES (26936, 423, 1, 7849, 9.99, '2007-04-28 07:58:28.996577'); -INSERT INTO dvds.payment VALUES (26937, 423, 2, 8082, 3.99, '2007-04-28 16:36:28.996577'); -INSERT INTO dvds.payment VALUES (26938, 423, 2, 8595, 9.99, '2007-04-29 11:16:09.996577'); -INSERT INTO dvds.payment VALUES (26939, 423, 2, 9026, 2.99, '2007-04-30 04:23:57.996577'); -INSERT INTO dvds.payment VALUES (26940, 424, 2, 3746, 0.99, '2007-04-06 10:39:17.996577'); -INSERT INTO dvds.payment VALUES (26941, 424, 2, 4512, 0.99, '2007-04-08 01:07:22.996577'); -INSERT INTO dvds.payment VALUES (26942, 424, 2, 4559, 0.99, '2007-04-08 03:25:15.996577'); -INSERT INTO dvds.payment VALUES (26943, 424, 2, 4696, 5.99, '2007-04-08 09:40:53.996577'); -INSERT INTO dvds.payment VALUES (26944, 424, 1, 5568, 0.99, '2007-04-10 02:05:22.996577'); -INSERT INTO dvds.payment VALUES (26945, 424, 1, 5611, 3.99, '2007-04-10 03:42:09.996577'); -INSERT INTO dvds.payment VALUES (26946, 424, 1, 6589, 2.99, '2007-04-12 05:34:55.996577'); -INSERT INTO dvds.payment VALUES (26947, 424, 1, 7594, 2.99, '2007-04-27 21:59:07.996577'); -INSERT INTO dvds.payment VALUES (26948, 424, 2, 8194, 2.99, '2007-04-28 21:20:10.996577'); -INSERT INTO dvds.payment VALUES (26949, 424, 1, 8918, 4.99, '2007-04-30 00:24:48.996577'); -INSERT INTO dvds.payment VALUES (26950, 424, 2, 8964, 1.99, '2007-04-30 02:18:01.996577'); -INSERT INTO dvds.payment VALUES (26951, 424, 2, 8999, 2.99, '2007-04-30 03:24:12.996577'); -INSERT INTO dvds.payment VALUES (26952, 424, 1, 9471, 4.99, '2007-04-30 21:31:02.996577'); -INSERT INTO dvds.payment VALUES (26953, 424, 1, 9516, 8.99, '2007-04-30 23:09:24.996577'); -INSERT INTO dvds.payment VALUES (26954, 424, 2, 9878, 4.99, '2007-04-30 12:10:28.996577'); -INSERT INTO dvds.payment VALUES (26955, 424, 1, 10017, 6.99, '2007-04-30 16:41:48.996577'); -INSERT INTO dvds.payment VALUES (26956, 425, 1, 3807, 4.99, '2007-04-06 13:40:10.996577'); -INSERT INTO dvds.payment VALUES (26957, 425, 2, 4361, 2.99, '2007-04-07 18:01:49.996577'); -INSERT INTO dvds.payment VALUES (26958, 425, 2, 4362, 5.99, '2007-04-07 18:03:56.996577'); -INSERT INTO dvds.payment VALUES (26959, 425, 2, 4483, 8.99, '2007-04-07 23:31:38.996577'); -INSERT INTO dvds.payment VALUES (26960, 425, 1, 4659, 2.99, '2007-04-08 08:21:54.996577'); -INSERT INTO dvds.payment VALUES (26961, 425, 1, 4884, 7.99, '2007-04-08 18:17:43.996577'); -INSERT INTO dvds.payment VALUES (26962, 425, 1, 4939, 7.99, '2007-04-08 21:03:56.996577'); -INSERT INTO dvds.payment VALUES (26963, 425, 2, 5363, 2.99, '2007-04-09 16:47:15.996577'); -INSERT INTO dvds.payment VALUES (26964, 425, 1, 5371, 4.99, '2007-04-09 17:16:14.996577'); -INSERT INTO dvds.payment VALUES (26965, 425, 2, 6318, 2.99, '2007-04-11 17:16:48.996577'); -INSERT INTO dvds.payment VALUES (26966, 425, 1, 6603, 2.99, '2007-04-12 06:21:21.996577'); -INSERT INTO dvds.payment VALUES (26967, 425, 1, 7249, 4.99, '2007-04-27 09:08:19.996577'); -INSERT INTO dvds.payment VALUES (26968, 425, 1, 8974, 0.99, '2007-04-30 02:37:42.996577'); -INSERT INTO dvds.payment VALUES (26969, 425, 1, 9170, 0.99, '2007-04-30 10:03:50.996577'); -INSERT INTO dvds.payment VALUES (26970, 425, 2, 9682, 2.99, '2007-04-30 05:15:36.996577'); -INSERT INTO dvds.payment VALUES (26971, 425, 1, 10121, 0.99, '2007-04-30 19:53:19.996577'); -INSERT INTO dvds.payment VALUES (26972, 425, 2, 10163, 0.99, '2007-04-30 21:41:00.996577'); -INSERT INTO dvds.payment VALUES (26973, 426, 2, 4114, 2.99, '2007-04-07 05:19:38.996577'); -INSERT INTO dvds.payment VALUES (26974, 426, 2, 4398, 4.99, '2007-04-07 19:47:10.996577'); -INSERT INTO dvds.payment VALUES (26975, 426, 1, 4900, 4.99, '2007-04-08 19:06:32.996577'); -INSERT INTO dvds.payment VALUES (26976, 426, 1, 5725, 3.99, '2007-04-10 09:49:47.996577'); -INSERT INTO dvds.payment VALUES (26977, 426, 1, 7495, 4.99, '2007-04-27 18:29:46.996577'); -INSERT INTO dvds.payment VALUES (26978, 426, 1, 7527, 10.99, '2007-04-27 19:42:54.996577'); -INSERT INTO dvds.payment VALUES (26979, 426, 1, 7711, 4.99, '2007-04-28 02:55:08.996577'); -INSERT INTO dvds.payment VALUES (26980, 426, 1, 7789, 5.99, '2007-04-28 05:50:33.996577'); -INSERT INTO dvds.payment VALUES (26981, 426, 1, 9185, 5.99, '2007-04-30 10:39:06.996577'); -INSERT INTO dvds.payment VALUES (26982, 426, 2, 9247, 4.99, '2007-04-30 12:42:22.996577'); -INSERT INTO dvds.payment VALUES (26983, 426, 2, 10172, 10.99, '2007-04-30 21:58:17.996577'); -INSERT INTO dvds.payment VALUES (26984, 427, 1, 4793, 3.99, '2007-04-08 14:58:27.996577'); -INSERT INTO dvds.payment VALUES (26985, 427, 2, 5476, 2.99, '2007-04-09 22:05:35.996577'); -INSERT INTO dvds.payment VALUES (26986, 427, 2, 5586, 5.99, '2007-04-10 02:45:32.996577'); -INSERT INTO dvds.payment VALUES (26987, 427, 1, 6423, 6.99, '2007-04-11 22:15:57.996577'); -INSERT INTO dvds.payment VALUES (26988, 427, 1, 6509, 2.99, '2007-04-12 02:03:27.996577'); -INSERT INTO dvds.payment VALUES (26989, 427, 2, 6938, 7.99, '2007-04-26 21:44:30.996577'); -INSERT INTO dvds.payment VALUES (26990, 427, 2, 8182, 3.99, '2007-04-28 20:47:38.996577'); -INSERT INTO dvds.payment VALUES (26991, 427, 1, 8531, 5.99, '2007-04-29 08:54:41.996577'); -INSERT INTO dvds.payment VALUES (26992, 427, 2, 8658, 5.99, '2007-04-29 13:45:03.996577'); -INSERT INTO dvds.payment VALUES (26993, 427, 2, 9978, 2.99, '2007-04-30 15:28:17.996577'); -INSERT INTO dvds.payment VALUES (26994, 428, 1, 3702, 2.99, '2007-04-06 08:42:22.996577'); -INSERT INTO dvds.payment VALUES (26995, 428, 1, 3925, 5.99, '2007-04-06 19:10:10.996577'); -INSERT INTO dvds.payment VALUES (26996, 428, 1, 4151, 0.99, '2007-04-07 07:17:28.996577'); -INSERT INTO dvds.payment VALUES (26997, 428, 1, 5373, 4.99, '2007-04-09 17:17:23.996577'); -INSERT INTO dvds.payment VALUES (26998, 428, 1, 6735, 5.99, '2007-04-12 12:36:46.996577'); -INSERT INTO dvds.payment VALUES (26999, 428, 1, 7823, 6.99, '2007-04-28 07:01:19.996577'); -INSERT INTO dvds.payment VALUES (27000, 428, 1, 8155, 2.99, '2007-04-28 19:25:32.996577'); -INSERT INTO dvds.payment VALUES (27001, 428, 2, 8387, 4.99, '2007-04-29 04:15:53.996577'); -INSERT INTO dvds.payment VALUES (27002, 428, 2, 8528, 4.99, '2007-04-29 08:52:48.996577'); -INSERT INTO dvds.payment VALUES (27003, 428, 1, 9904, 5.99, '2007-04-30 13:02:43.996577'); -INSERT INTO dvds.payment VALUES (27004, 428, 2, 9982, 2.99, '2007-04-30 15:37:28.996577'); -INSERT INTO dvds.payment VALUES (27005, 429, 2, 5868, 4.99, '2007-04-10 17:07:42.996577'); -INSERT INTO dvds.payment VALUES (27006, 429, 2, 6196, 7.99, '2007-04-11 10:34:12.996577'); -INSERT INTO dvds.payment VALUES (27007, 429, 2, 6886, 6.99, '2007-04-12 19:26:30.996577'); -INSERT INTO dvds.payment VALUES (27008, 429, 1, 6977, 6.99, '2007-04-26 23:09:16.996577'); -INSERT INTO dvds.payment VALUES (27009, 429, 2, 7352, 4.99, '2007-04-27 13:06:55.996577'); -INSERT INTO dvds.payment VALUES (27010, 429, 2, 8136, 1.99, '2007-04-28 18:34:14.996577'); -INSERT INTO dvds.payment VALUES (27011, 429, 2, 8143, 2.99, '2007-04-28 18:51:37.996577'); -INSERT INTO dvds.payment VALUES (27012, 429, 2, 8175, 7.99, '2007-04-28 20:06:42.996577'); -INSERT INTO dvds.payment VALUES (27013, 429, 1, 9849, 0.99, '2007-04-30 11:13:00.996577'); -INSERT INTO dvds.payment VALUES (27014, 430, 1, 5002, 4.99, '2007-04-08 23:45:34.996577'); -INSERT INTO dvds.payment VALUES (27015, 430, 1, 5217, 5.99, '2007-04-09 10:25:16.996577'); -INSERT INTO dvds.payment VALUES (27016, 430, 2, 5879, 6.99, '2007-04-10 17:41:13.996577'); -INSERT INTO dvds.payment VALUES (27017, 430, 1, 5958, 6.99, '2007-04-10 22:00:17.996577'); -INSERT INTO dvds.payment VALUES (27018, 430, 2, 6043, 0.99, '2007-04-11 01:46:36.996577'); -INSERT INTO dvds.payment VALUES (27019, 430, 1, 8560, 4.99, '2007-04-29 09:55:53.996577'); -INSERT INTO dvds.payment VALUES (27020, 430, 2, 9450, 2.99, '2007-04-30 20:32:30.996577'); -INSERT INTO dvds.payment VALUES (27021, 431, 1, 4144, 3.99, '2007-04-07 06:54:10.996577'); -INSERT INTO dvds.payment VALUES (27022, 431, 1, 4801, 2.99, '2007-04-08 15:20:02.996577'); -INSERT INTO dvds.payment VALUES (27023, 431, 1, 4863, 0.99, '2007-04-08 17:31:41.996577'); -INSERT INTO dvds.payment VALUES (27024, 431, 2, 7978, 4.99, '2007-04-28 12:44:40.996577'); -INSERT INTO dvds.payment VALUES (27025, 431, 2, 8810, 4.99, '2007-04-29 20:13:45.996577'); -INSERT INTO dvds.payment VALUES (27026, 432, 1, 4965, 5.99, '2007-04-08 22:15:23.996577'); -INSERT INTO dvds.payment VALUES (27027, 432, 1, 4973, 4.99, '2007-04-08 22:26:44.996577'); -INSERT INTO dvds.payment VALUES (27028, 432, 1, 5204, 2.99, '2007-04-09 09:22:40.996577'); -INSERT INTO dvds.payment VALUES (27029, 432, 1, 5322, 6.99, '2007-04-09 14:56:39.996577'); -INSERT INTO dvds.payment VALUES (27030, 432, 1, 5944, 4.99, '2007-04-10 21:20:10.996577'); -INSERT INTO dvds.payment VALUES (27031, 432, 1, 5990, 4.99, '2007-04-10 23:31:40.996577'); -INSERT INTO dvds.payment VALUES (27032, 432, 2, 7326, 4.99, '2007-04-27 12:19:06.996577'); -INSERT INTO dvds.payment VALUES (27033, 432, 2, 7681, 0.99, '2007-04-28 01:35:35.996577'); -INSERT INTO dvds.payment VALUES (27034, 432, 2, 8079, 4.99, '2007-04-28 16:27:02.996577'); -INSERT INTO dvds.payment VALUES (27035, 432, 2, 8094, 6.99, '2007-04-28 16:58:54.996577'); -INSERT INTO dvds.payment VALUES (27036, 432, 2, 9916, 4.99, '2007-04-30 13:23:18.996577'); -INSERT INTO dvds.payment VALUES (27037, 432, 2, 9984, 2.99, '2007-04-30 15:40:49.996577'); -INSERT INTO dvds.payment VALUES (27038, 433, 2, 4087, 6.99, '2007-04-07 03:59:22.996577'); -INSERT INTO dvds.payment VALUES (27039, 433, 2, 4158, 0.99, '2007-04-07 07:34:08.996577'); -INSERT INTO dvds.payment VALUES (27040, 433, 2, 4988, 7.99, '2007-04-08 23:14:40.996577'); -INSERT INTO dvds.payment VALUES (27041, 433, 2, 5457, 0.99, '2007-04-09 21:01:40.996577'); -INSERT INTO dvds.payment VALUES (27042, 433, 1, 5969, 8.99, '2007-04-10 22:31:48.996577'); -INSERT INTO dvds.payment VALUES (27043, 433, 1, 6765, 5.99, '2007-04-12 13:59:13.996577'); -INSERT INTO dvds.payment VALUES (27044, 433, 1, 6848, 0.99, '2007-04-12 17:52:33.996577'); -INSERT INTO dvds.payment VALUES (27045, 433, 1, 6850, 4.99, '2007-04-12 17:59:08.996577'); -INSERT INTO dvds.payment VALUES (27046, 433, 1, 7821, 4.99, '2007-04-28 06:59:49.996577'); -INSERT INTO dvds.payment VALUES (27047, 433, 2, 7907, 4.99, '2007-04-28 10:00:26.996577'); -INSERT INTO dvds.payment VALUES (27048, 433, 1, 8414, 5.99, '2007-04-29 05:17:01.996577'); -INSERT INTO dvds.payment VALUES (27049, 433, 1, 8713, 2.99, '2007-04-29 15:59:45.996577'); -INSERT INTO dvds.payment VALUES (27050, 433, 2, 9161, 4.99, '2007-04-30 09:47:44.996577'); -INSERT INTO dvds.payment VALUES (27051, 433, 1, 9294, 3.99, '2007-04-30 14:43:03.996577'); -INSERT INTO dvds.payment VALUES (27052, 434, 1, 4414, 2.99, '2007-04-07 20:28:47.996577'); -INSERT INTO dvds.payment VALUES (27053, 434, 2, 4654, 6.99, '2007-04-08 08:16:29.996577'); -INSERT INTO dvds.payment VALUES (27054, 434, 2, 4960, 10.99, '2007-04-08 21:55:42.996577'); -INSERT INTO dvds.payment VALUES (27055, 434, 2, 5464, 2.99, '2007-04-09 21:26:40.996577'); -INSERT INTO dvds.payment VALUES (27056, 434, 2, 6972, 0.99, '2007-04-26 22:59:51.996577'); -INSERT INTO dvds.payment VALUES (27057, 434, 1, 7260, 6.99, '2007-04-27 09:37:54.996577'); -INSERT INTO dvds.payment VALUES (27058, 434, 2, 7479, 2.99, '2007-04-27 17:46:43.996577'); -INSERT INTO dvds.payment VALUES (27059, 434, 1, 8205, 0.99, '2007-04-28 21:47:14.996577'); -INSERT INTO dvds.payment VALUES (27060, 434, 1, 9350, 4.99, '2007-04-30 16:52:56.996577'); -INSERT INTO dvds.payment VALUES (27061, 435, 1, 3690, 0.99, '2007-04-06 08:14:29.996577'); -INSERT INTO dvds.payment VALUES (27062, 435, 1, 3918, 8.99, '2007-04-06 18:54:41.996577'); -INSERT INTO dvds.payment VALUES (27063, 435, 2, 5220, 4.99, '2007-04-09 10:27:30.996577'); -INSERT INTO dvds.payment VALUES (27064, 435, 2, 6051, 4.99, '2007-04-11 02:15:07.996577'); -INSERT INTO dvds.payment VALUES (27065, 435, 1, 6935, 2.99, '2007-04-26 21:41:36.996577'); -INSERT INTO dvds.payment VALUES (27066, 435, 1, 8386, 5.99, '2007-04-29 04:13:56.996577'); -INSERT INTO dvds.payment VALUES (27067, 435, 2, 8891, 4.99, '2007-04-29 23:15:21.996577'); -INSERT INTO dvds.payment VALUES (27068, 435, 2, 9269, 0.99, '2007-04-30 13:30:59.996577'); -INSERT INTO dvds.payment VALUES (27069, 435, 1, 9655, 3.99, '2007-04-30 04:26:20.996577'); -INSERT INTO dvds.payment VALUES (27070, 435, 2, 9829, 4.99, '2007-04-30 10:27:04.996577'); -INSERT INTO dvds.payment VALUES (27071, 436, 2, 3851, 1.99, '2007-04-06 15:22:38.996577'); -INSERT INTO dvds.payment VALUES (27072, 436, 2, 3944, 2.99, '2007-04-06 20:02:37.996577'); -INSERT INTO dvds.payment VALUES (27073, 436, 2, 4643, 0.99, '2007-04-08 07:42:22.996577'); -INSERT INTO dvds.payment VALUES (27074, 436, 2, 4751, 2.99, '2007-04-08 12:36:18.996577'); -INSERT INTO dvds.payment VALUES (27075, 436, 1, 4782, 4.99, '2007-04-08 14:37:17.996577'); -INSERT INTO dvds.payment VALUES (27076, 436, 1, 5959, 0.99, '2007-04-10 22:04:02.996577'); -INSERT INTO dvds.payment VALUES (27077, 436, 1, 7593, 4.99, '2007-04-27 21:57:13.996577'); -INSERT INTO dvds.payment VALUES (27078, 436, 2, 8027, 5.99, '2007-04-28 14:38:23.996577'); -INSERT INTO dvds.payment VALUES (27079, 436, 2, 8097, 9.99, '2007-04-28 17:01:15.996577'); -INSERT INTO dvds.payment VALUES (27080, 436, 1, 9345, 9.99, '2007-04-30 16:42:17.996577'); -INSERT INTO dvds.payment VALUES (27081, 436, 1, 9539, 0.99, '2007-04-30 00:04:45.996577'); -INSERT INTO dvds.payment VALUES (27082, 436, 1, 9638, 5.99, '2007-04-30 03:58:53.996577'); -INSERT INTO dvds.payment VALUES (27083, 436, 2, 10216, 3.99, '2007-04-30 23:34:53.996577'); -INSERT INTO dvds.payment VALUES (27084, 437, 1, 3747, 4.99, '2007-04-06 10:39:40.996577'); -INSERT INTO dvds.payment VALUES (27085, 437, 2, 4765, 4.99, '2007-04-08 13:37:11.996577'); -INSERT INTO dvds.payment VALUES (27086, 437, 2, 5085, 4.99, '2007-04-09 04:05:15.996577'); -INSERT INTO dvds.payment VALUES (27087, 437, 1, 5167, 1.99, '2007-04-09 07:47:09.996577'); -INSERT INTO dvds.payment VALUES (27088, 437, 2, 5744, 2.99, '2007-04-10 10:36:59.996577'); -INSERT INTO dvds.payment VALUES (27089, 437, 2, 5864, 6.99, '2007-04-10 16:58:23.996577'); -INSERT INTO dvds.payment VALUES (27090, 437, 2, 8215, 2.99, '2007-04-28 22:12:22.996577'); -INSERT INTO dvds.payment VALUES (27091, 437, 2, 9172, 2.99, '2007-04-30 10:05:04.996577'); -INSERT INTO dvds.payment VALUES (27092, 437, 2, 9333, 2.99, '2007-04-30 16:22:11.996577'); -INSERT INTO dvds.payment VALUES (27093, 437, 2, 10009, 8.99, '2007-04-30 16:28:54.996577'); -INSERT INTO dvds.payment VALUES (27094, 438, 1, 4355, 4.99, '2007-04-07 17:49:45.996577'); -INSERT INTO dvds.payment VALUES (27095, 438, 2, 4446, 2.99, '2007-04-07 21:40:42.996577'); -INSERT INTO dvds.payment VALUES (27096, 438, 2, 5316, 4.99, '2007-04-09 14:38:08.996577'); -INSERT INTO dvds.payment VALUES (27097, 438, 2, 5426, 4.99, '2007-04-09 19:33:13.996577'); -INSERT INTO dvds.payment VALUES (27098, 438, 1, 5870, 2.99, '2007-04-10 17:08:51.996577'); -INSERT INTO dvds.payment VALUES (27099, 438, 2, 6138, 4.99, '2007-04-11 07:04:30.996577'); -INSERT INTO dvds.payment VALUES (27100, 438, 1, 6563, 3.99, '2007-04-12 04:02:35.996577'); -INSERT INTO dvds.payment VALUES (27101, 438, 2, 6615, 4.99, '2007-04-12 07:04:48.996577'); -INSERT INTO dvds.payment VALUES (27102, 438, 2, 7357, 1.99, '2007-04-27 13:16:57.996577'); -INSERT INTO dvds.payment VALUES (27103, 438, 2, 7374, 8.99, '2007-04-27 13:49:23.996577'); -INSERT INTO dvds.payment VALUES (27104, 438, 1, 7598, 0.99, '2007-04-27 22:04:27.996577'); -INSERT INTO dvds.payment VALUES (27105, 438, 2, 8547, 2.99, '2007-04-29 09:38:41.996577'); -INSERT INTO dvds.payment VALUES (27106, 438, 1, 9082, 3.99, '2007-04-30 06:39:48.996577'); -INSERT INTO dvds.payment VALUES (27107, 438, 2, 9782, 0.99, '2007-04-30 08:42:52.996577'); -INSERT INTO dvds.payment VALUES (27108, 439, 2, 3774, 5.99, '2007-04-06 11:53:33.996577'); -INSERT INTO dvds.payment VALUES (27109, 439, 1, 4528, 2.99, '2007-04-08 01:53:20.996577'); -INSERT INTO dvds.payment VALUES (27110, 439, 1, 4813, 4.99, '2007-04-08 15:38:22.996577'); -INSERT INTO dvds.payment VALUES (27111, 439, 2, 5801, 5.99, '2007-04-10 13:27:31.996577'); -INSERT INTO dvds.payment VALUES (27112, 439, 1, 5893, 2.99, '2007-04-10 18:33:56.996577'); -INSERT INTO dvds.payment VALUES (27113, 439, 1, 6577, 2.99, '2007-04-12 04:43:31.996577'); -INSERT INTO dvds.payment VALUES (27114, 439, 2, 6672, 2.99, '2007-04-12 10:17:42.996577'); -INSERT INTO dvds.payment VALUES (27115, 439, 1, 8343, 2.99, '2007-04-29 03:13:42.996577'); -INSERT INTO dvds.payment VALUES (27116, 439, 1, 8624, 2.99, '2007-04-29 12:24:02.996577'); -INSERT INTO dvds.payment VALUES (27117, 439, 2, 8703, 2.99, '2007-04-29 15:41:10.996577'); -INSERT INTO dvds.payment VALUES (27118, 439, 1, 9275, 0.99, '2007-04-30 13:37:41.996577'); -INSERT INTO dvds.payment VALUES (27119, 439, 1, 9322, 6.99, '2007-04-30 15:50:05.996577'); -INSERT INTO dvds.payment VALUES (27120, 440, 1, 4301, 2.99, '2007-04-07 15:05:49.996577'); -INSERT INTO dvds.payment VALUES (27121, 440, 1, 4946, 7.99, '2007-04-08 21:14:49.996577'); -INSERT INTO dvds.payment VALUES (27122, 440, 2, 5423, 2.99, '2007-04-09 19:25:14.996577'); -INSERT INTO dvds.payment VALUES (27123, 440, 2, 5594, 0.99, '2007-04-10 03:02:02.996577'); -INSERT INTO dvds.payment VALUES (27124, 440, 2, 5731, 2.99, '2007-04-10 10:00:18.996577'); -INSERT INTO dvds.payment VALUES (27125, 440, 2, 5782, 0.99, '2007-04-10 12:21:22.996577'); -INSERT INTO dvds.payment VALUES (27126, 440, 2, 7585, 4.99, '2007-04-27 21:46:48.996577'); -INSERT INTO dvds.payment VALUES (27127, 440, 1, 7614, 0.99, '2007-04-27 22:43:04.996577'); -INSERT INTO dvds.payment VALUES (27128, 440, 1, 7806, 9.99, '2007-04-28 06:26:43.996577'); -INSERT INTO dvds.payment VALUES (27129, 440, 1, 9001, 4.99, '2007-04-30 03:28:07.996577'); -INSERT INTO dvds.payment VALUES (27130, 440, 1, 9195, 2.99, '2007-04-30 10:58:09.996577'); -INSERT INTO dvds.payment VALUES (27131, 440, 1, 9547, 4.99, '2007-04-30 00:21:00.996577'); -INSERT INTO dvds.payment VALUES (27132, 441, 2, 3629, 0.99, '2007-04-06 04:51:48.996577'); -INSERT INTO dvds.payment VALUES (27133, 441, 2, 3695, 2.99, '2007-04-06 08:30:34.996577'); -INSERT INTO dvds.payment VALUES (27134, 441, 1, 4084, 8.99, '2007-04-07 03:44:26.996577'); -INSERT INTO dvds.payment VALUES (27135, 441, 2, 4208, 0.99, '2007-04-07 10:02:48.996577'); -INSERT INTO dvds.payment VALUES (27136, 441, 2, 5129, 2.99, '2007-04-09 05:56:59.996577'); -INSERT INTO dvds.payment VALUES (27137, 441, 1, 5811, 0.99, '2007-04-10 13:55:30.996577'); -INSERT INTO dvds.payment VALUES (27138, 441, 2, 6636, 2.99, '2007-04-12 08:18:12.996577'); -INSERT INTO dvds.payment VALUES (27139, 441, 1, 6642, 4.99, '2007-04-12 09:06:18.996577'); -INSERT INTO dvds.payment VALUES (27140, 441, 1, 6941, 5.99, '2007-04-26 21:47:15.996577'); -INSERT INTO dvds.payment VALUES (27141, 441, 2, 8237, 2.99, '2007-04-28 22:58:22.996577'); -INSERT INTO dvds.payment VALUES (27142, 441, 1, 8281, 0.99, '2007-04-29 00:14:26.996577'); -INSERT INTO dvds.payment VALUES (27143, 441, 1, 8427, 4.99, '2007-04-29 05:37:02.996577'); -INSERT INTO dvds.payment VALUES (27144, 441, 1, 8575, 4.99, '2007-04-29 10:21:13.996577'); -INSERT INTO dvds.payment VALUES (27145, 441, 2, 8617, 4.99, '2007-04-29 12:14:40.996577'); -INSERT INTO dvds.payment VALUES (27146, 441, 2, 9644, 10.99, '2007-04-30 04:09:01.996577'); -INSERT INTO dvds.payment VALUES (27147, 441, 2, 9854, 2.99, '2007-04-30 11:28:00.996577'); -INSERT INTO dvds.payment VALUES (27148, 441, 2, 10139, 1.99, '2007-04-30 20:30:46.996577'); -INSERT INTO dvds.payment VALUES (27149, 442, 2, 3545, 4.99, '2007-04-06 00:44:43.996577'); -INSERT INTO dvds.payment VALUES (27150, 442, 1, 3661, 2.99, '2007-04-06 06:38:28.996577'); -INSERT INTO dvds.payment VALUES (27151, 442, 1, 4052, 5.99, '2007-04-07 02:06:48.996577'); -INSERT INTO dvds.payment VALUES (27152, 442, 1, 4058, 2.99, '2007-04-07 02:31:16.996577'); -INSERT INTO dvds.payment VALUES (27153, 442, 2, 4365, 2.99, '2007-04-07 18:16:12.996577'); -INSERT INTO dvds.payment VALUES (27154, 442, 2, 4577, 3.99, '2007-04-08 04:27:26.996577'); -INSERT INTO dvds.payment VALUES (27155, 442, 2, 6590, 4.99, '2007-04-12 05:36:47.996577'); -INSERT INTO dvds.payment VALUES (27156, 442, 2, 6632, 2.99, '2007-04-12 08:01:36.996577'); -INSERT INTO dvds.payment VALUES (27157, 442, 2, 7427, 2.99, '2007-04-27 15:48:42.996577'); -INSERT INTO dvds.payment VALUES (27158, 442, 1, 7460, 0.99, '2007-04-27 17:10:01.996577'); -INSERT INTO dvds.payment VALUES (27159, 442, 1, 7671, 2.99, '2007-04-28 01:16:57.996577'); -INSERT INTO dvds.payment VALUES (27160, 442, 1, 8044, 2.99, '2007-04-28 15:17:38.996577'); -INSERT INTO dvds.payment VALUES (27161, 442, 1, 8758, 4.99, '2007-04-29 17:49:15.996577'); -INSERT INTO dvds.payment VALUES (27162, 442, 1, 9180, 4.99, '2007-04-30 10:31:41.996577'); -INSERT INTO dvds.payment VALUES (27163, 442, 2, 9873, 5.99, '2007-04-30 12:00:44.996577'); -INSERT INTO dvds.payment VALUES (27164, 442, 1, 10034, 2.99, '2007-04-30 17:13:56.996577'); -INSERT INTO dvds.payment VALUES (27165, 443, 2, 3510, 5.99, '2007-04-05 22:56:07.996577'); -INSERT INTO dvds.payment VALUES (27166, 443, 2, 6625, 5.99, '2007-04-12 07:35:06.996577'); -INSERT INTO dvds.payment VALUES (27167, 443, 1, 6913, 4.99, '2007-04-12 20:46:38.996577'); -INSERT INTO dvds.payment VALUES (27168, 443, 2, 6983, 2.99, '2007-04-26 23:23:29.996577'); -INSERT INTO dvds.payment VALUES (27169, 443, 1, 7317, 2.99, '2007-04-27 11:48:07.996577'); -INSERT INTO dvds.payment VALUES (27170, 443, 1, 7667, 8.99, '2007-04-28 01:05:48.996577'); -INSERT INTO dvds.payment VALUES (27171, 443, 1, 7987, 9.99, '2007-04-28 13:05:18.996577'); -INSERT INTO dvds.payment VALUES (27172, 443, 2, 9740, 1.99, '2007-04-30 07:36:29.996577'); -INSERT INTO dvds.payment VALUES (27173, 443, 1, 10014, 4.99, '2007-04-30 16:39:22.996577'); -INSERT INTO dvds.payment VALUES (27174, 443, 2, 10081, 5.99, '2007-04-30 18:36:10.996577'); -INSERT INTO dvds.payment VALUES (27175, 444, 2, 3498, 4.99, '2007-04-05 22:30:34.996577'); -INSERT INTO dvds.payment VALUES (27176, 444, 1, 3539, 0.99, '2007-04-06 00:07:34.996577'); -INSERT INTO dvds.payment VALUES (27177, 444, 2, 4648, 6.99, '2007-04-08 07:59:53.996577'); -INSERT INTO dvds.payment VALUES (27178, 444, 1, 5753, 2.99, '2007-04-10 10:58:09.996577'); -INSERT INTO dvds.payment VALUES (27179, 444, 2, 5825, 2.99, '2007-04-10 14:48:56.996577'); -INSERT INTO dvds.payment VALUES (27180, 444, 2, 6285, 2.99, '2007-04-11 15:20:33.996577'); -INSERT INTO dvds.payment VALUES (27181, 444, 2, 7679, 3.99, '2007-04-28 01:27:05.996577'); -INSERT INTO dvds.payment VALUES (27182, 444, 2, 9634, 1.99, '2007-04-30 03:34:28.996577'); -INSERT INTO dvds.payment VALUES (27183, 445, 1, 4041, 0.99, '2007-04-07 01:31:59.996577'); -INSERT INTO dvds.payment VALUES (27184, 445, 1, 4193, 0.99, '2007-04-07 09:25:47.996577'); -INSERT INTO dvds.payment VALUES (27185, 445, 2, 5225, 2.99, '2007-04-09 10:38:42.996577'); -INSERT INTO dvds.payment VALUES (27186, 445, 1, 6346, 0.99, '2007-04-11 18:37:00.996577'); -INSERT INTO dvds.payment VALUES (27187, 445, 2, 7351, 2.99, '2007-04-27 13:06:02.996577'); -INSERT INTO dvds.payment VALUES (27188, 445, 2, 7971, 4.99, '2007-04-28 12:29:13.996577'); -INSERT INTO dvds.payment VALUES (27189, 445, 1, 8851, 8.99, '2007-04-29 21:54:45.996577'); -INSERT INTO dvds.payment VALUES (27190, 445, 2, 8911, 0.99, '2007-04-29 23:59:23.996577'); -INSERT INTO dvds.payment VALUES (27191, 445, 2, 9625, 4.99, '2007-04-30 02:59:14.996577'); -INSERT INTO dvds.payment VALUES (27192, 445, 1, 10007, 0.99, '2007-04-30 16:23:24.996577'); -INSERT INTO dvds.payment VALUES (27193, 446, 2, 4358, 4.99, '2007-04-07 17:55:30.996577'); -INSERT INTO dvds.payment VALUES (27194, 446, 2, 5393, 4.99, '2007-04-09 18:03:38.996577'); -INSERT INTO dvds.payment VALUES (27195, 446, 2, 5409, 2.99, '2007-04-09 18:45:45.996577'); -INSERT INTO dvds.payment VALUES (27196, 446, 2, 6454, 0.99, '2007-04-11 23:28:38.996577'); -INSERT INTO dvds.payment VALUES (27197, 446, 1, 6510, 4.99, '2007-04-12 02:04:05.996577'); -INSERT INTO dvds.payment VALUES (27198, 446, 1, 6535, 0.99, '2007-04-12 03:12:09.996577'); -INSERT INTO dvds.payment VALUES (27199, 446, 1, 6734, 6.99, '2007-04-12 12:32:50.996577'); -INSERT INTO dvds.payment VALUES (27200, 446, 1, 7005, 5.99, '2007-04-27 00:07:02.996577'); -INSERT INTO dvds.payment VALUES (27201, 446, 2, 7089, 0.99, '2007-04-27 03:12:08.996577'); -INSERT INTO dvds.payment VALUES (27202, 446, 1, 7576, 4.99, '2007-04-27 21:23:01.996577'); -INSERT INTO dvds.payment VALUES (27203, 446, 2, 8284, 6.99, '2007-04-29 00:25:06.996577'); -INSERT INTO dvds.payment VALUES (27204, 446, 1, 8309, 4.99, '2007-04-29 01:50:46.996577'); -INSERT INTO dvds.payment VALUES (27205, 446, 2, 8670, 4.99, '2007-04-29 14:17:29.996577'); -INSERT INTO dvds.payment VALUES (27206, 446, 2, 8691, 0.99, '2007-04-29 15:09:49.996577'); -INSERT INTO dvds.payment VALUES (27207, 446, 2, 8922, 9.99, '2007-04-30 00:36:51.996577'); -INSERT INTO dvds.payment VALUES (27208, 446, 1, 8923, 3.99, '2007-04-30 00:37:15.996577'); -INSERT INTO dvds.payment VALUES (27209, 446, 1, 9116, 0.99, '2007-04-30 07:48:07.996577'); -INSERT INTO dvds.payment VALUES (27210, 447, 2, 4403, 4.99, '2007-04-07 19:58:06.996577'); -INSERT INTO dvds.payment VALUES (27211, 447, 1, 4858, 6.99, '2007-04-08 17:21:50.996577'); -INSERT INTO dvds.payment VALUES (27212, 447, 1, 5331, 4.99, '2007-04-09 15:22:32.996577'); -INSERT INTO dvds.payment VALUES (27213, 447, 1, 5734, 0.99, '2007-04-10 10:05:54.996577'); -INSERT INTO dvds.payment VALUES (27214, 447, 2, 5987, 2.99, '2007-04-10 23:23:57.996577'); -INSERT INTO dvds.payment VALUES (27215, 447, 1, 6651, 0.99, '2007-04-12 09:25:54.996577'); -INSERT INTO dvds.payment VALUES (27216, 447, 1, 6690, 1.99, '2007-04-12 10:51:28.996577'); -INSERT INTO dvds.payment VALUES (27217, 447, 1, 8537, 8.99, '2007-04-29 09:13:20.996577'); -INSERT INTO dvds.payment VALUES (27218, 447, 2, 8945, 4.99, '2007-04-30 01:40:14.996577'); -INSERT INTO dvds.payment VALUES (27219, 447, 2, 9076, 5.99, '2007-04-30 06:26:38.996577'); -INSERT INTO dvds.payment VALUES (27220, 447, 1, 9288, 6.99, '2007-04-30 14:25:05.996577'); -INSERT INTO dvds.payment VALUES (27221, 448, 2, 3959, 5.99, '2007-04-06 20:36:24.996577'); -INSERT INTO dvds.payment VALUES (27222, 448, 2, 3992, 6.99, '2007-04-06 22:05:22.996577'); -INSERT INTO dvds.payment VALUES (27223, 448, 2, 4024, 0.99, '2007-04-07 00:39:49.996577'); -INSERT INTO dvds.payment VALUES (27224, 448, 2, 4206, 2.99, '2007-04-07 10:00:42.996577'); -INSERT INTO dvds.payment VALUES (27225, 448, 1, 4406, 1.99, '2007-04-07 20:03:42.996577'); -INSERT INTO dvds.payment VALUES (27226, 448, 2, 4537, 2.99, '2007-04-08 02:17:06.996577'); -INSERT INTO dvds.payment VALUES (27227, 448, 2, 4558, 2.99, '2007-04-08 03:23:52.996577'); -INSERT INTO dvds.payment VALUES (27228, 448, 2, 6341, 2.99, '2007-04-11 18:16:28.996577'); -INSERT INTO dvds.payment VALUES (27229, 448, 2, 6985, 4.99, '2007-04-26 23:26:08.996577'); -INSERT INTO dvds.payment VALUES (27230, 448, 1, 9178, 10.99, '2007-04-30 10:27:16.996577'); -INSERT INTO dvds.payment VALUES (27231, 449, 1, 3503, 0.99, '2007-04-05 22:45:50.996577'); -INSERT INTO dvds.payment VALUES (27232, 449, 1, 3977, 8.99, '2007-04-06 21:29:15.996577'); -INSERT INTO dvds.payment VALUES (27233, 449, 2, 4433, 3.99, '2007-04-07 21:14:07.996577'); -INSERT INTO dvds.payment VALUES (27234, 449, 1, 5824, 2.99, '2007-04-10 14:48:19.996577'); -INSERT INTO dvds.payment VALUES (27235, 449, 2, 7755, 6.99, '2007-04-28 04:50:44.996577'); -INSERT INTO dvds.payment VALUES (27236, 449, 2, 7803, 3.99, '2007-04-28 06:20:39.996577'); -INSERT INTO dvds.payment VALUES (27237, 449, 2, 8002, 2.99, '2007-04-28 13:39:26.996577'); -INSERT INTO dvds.payment VALUES (27238, 449, 2, 10083, 5.99, '2007-04-30 18:38:45.996577'); -INSERT INTO dvds.payment VALUES (27239, 450, 1, 3570, 3.99, '2007-04-06 01:52:09.996577'); -INSERT INTO dvds.payment VALUES (27240, 450, 1, 5999, 7.99, '2007-04-10 23:49:48.996577'); -INSERT INTO dvds.payment VALUES (27241, 450, 1, 6028, 4.99, '2007-04-11 01:00:10.996577'); -INSERT INTO dvds.payment VALUES (27242, 450, 2, 7365, 2.99, '2007-04-27 13:28:46.996577'); -INSERT INTO dvds.payment VALUES (27243, 450, 1, 7610, 0.99, '2007-04-27 22:40:01.996577'); -INSERT INTO dvds.payment VALUES (27244, 450, 1, 7626, 0.99, '2007-04-27 23:17:27.996577'); -INSERT INTO dvds.payment VALUES (27245, 450, 2, 8733, 4.99, '2007-04-29 16:55:00.996577'); -INSERT INTO dvds.payment VALUES (27246, 451, 2, 3826, 4.99, '2007-04-06 14:20:24.996577'); -INSERT INTO dvds.payment VALUES (27247, 451, 1, 4538, 2.99, '2007-04-08 02:24:55.996577'); -INSERT INTO dvds.payment VALUES (27248, 451, 1, 4794, 8.99, '2007-04-08 14:58:37.996577'); -INSERT INTO dvds.payment VALUES (27249, 451, 2, 4930, 4.99, '2007-04-08 20:44:14.996577'); -INSERT INTO dvds.payment VALUES (27250, 451, 1, 5005, 3.99, '2007-04-08 23:50:10.996577'); -INSERT INTO dvds.payment VALUES (27251, 451, 2, 5518, 8.99, '2007-04-09 23:43:37.996577'); -INSERT INTO dvds.payment VALUES (27252, 451, 1, 7018, 2.99, '2007-04-27 00:48:48.996577'); -INSERT INTO dvds.payment VALUES (27253, 452, 2, 3638, 3.99, '2007-04-06 05:36:43.996577'); -INSERT INTO dvds.payment VALUES (27254, 452, 1, 3791, 2.99, '2007-04-06 12:53:22.996577'); -INSERT INTO dvds.payment VALUES (27255, 452, 2, 3907, 6.99, '2007-04-06 18:07:40.996577'); -INSERT INTO dvds.payment VALUES (27256, 452, 1, 4348, 0.99, '2007-04-07 17:30:31.996577'); -INSERT INTO dvds.payment VALUES (27257, 452, 2, 4353, 4.99, '2007-04-07 17:47:31.996577'); -INSERT INTO dvds.payment VALUES (27258, 452, 2, 4417, 2.99, '2007-04-07 20:33:31.996577'); -INSERT INTO dvds.payment VALUES (27259, 452, 1, 4720, 0.99, '2007-04-08 11:03:00.996577'); -INSERT INTO dvds.payment VALUES (27260, 452, 1, 5177, 1.99, '2007-04-09 08:11:47.996577'); -INSERT INTO dvds.payment VALUES (27261, 452, 2, 5480, 0.99, '2007-04-09 22:17:33.996577'); -INSERT INTO dvds.payment VALUES (27262, 452, 2, 6959, 2.99, '2007-04-26 22:36:17.996577'); -INSERT INTO dvds.payment VALUES (27263, 452, 2, 7899, 6.99, '2007-04-28 09:38:38.996577'); -INSERT INTO dvds.payment VALUES (27264, 452, 1, 8898, 1.99, '2007-04-29 23:30:46.996577'); -INSERT INTO dvds.payment VALUES (27265, 452, 2, 9379, 6.99, '2007-04-30 17:41:27.996577'); -INSERT INTO dvds.payment VALUES (27266, 453, 2, 3929, 0.99, '2007-04-06 19:21:05.996577'); -INSERT INTO dvds.payment VALUES (27267, 453, 2, 4033, 8.99, '2007-04-07 01:04:12.996577'); -INSERT INTO dvds.payment VALUES (27268, 453, 1, 4717, 4.99, '2007-04-08 10:51:09.996577'); -INSERT INTO dvds.payment VALUES (27269, 453, 2, 4805, 2.99, '2007-04-08 15:27:38.996577'); -INSERT INTO dvds.payment VALUES (27270, 453, 2, 5359, 6.99, '2007-04-09 16:39:18.996577'); -INSERT INTO dvds.payment VALUES (27271, 453, 1, 6752, 4.99, '2007-04-12 13:21:41.996577'); -INSERT INTO dvds.payment VALUES (27272, 453, 1, 7563, 0.99, '2007-04-27 20:54:02.996577'); -INSERT INTO dvds.payment VALUES (27273, 453, 2, 9289, 6.99, '2007-04-30 14:25:30.996577'); -INSERT INTO dvds.payment VALUES (27274, 453, 2, 9406, 6.99, '2007-04-30 18:52:26.996577'); -INSERT INTO dvds.payment VALUES (27275, 453, 2, 9900, 1.99, '2007-04-30 12:43:31.996577'); -INSERT INTO dvds.payment VALUES (27276, 454, 1, 3622, 7.99, '2007-04-06 04:33:30.996577'); -INSERT INTO dvds.payment VALUES (27277, 454, 2, 4562, 4.99, '2007-04-08 03:36:58.996577'); -INSERT INTO dvds.payment VALUES (27278, 454, 2, 5088, 4.99, '2007-04-09 04:13:42.996577'); -INSERT INTO dvds.payment VALUES (27279, 454, 2, 5446, 2.99, '2007-04-09 20:28:21.996577'); -INSERT INTO dvds.payment VALUES (27280, 454, 2, 6260, 4.99, '2007-04-11 13:54:55.996577'); -INSERT INTO dvds.payment VALUES (27281, 454, 2, 6701, 0.99, '2007-04-12 11:16:25.996577'); -INSERT INTO dvds.payment VALUES (27282, 454, 2, 8481, 2.99, '2007-04-29 07:14:23.996577'); -INSERT INTO dvds.payment VALUES (27283, 454, 1, 8806, 0.99, '2007-04-29 20:05:00.996577'); -INSERT INTO dvds.payment VALUES (27284, 454, 2, 9041, 0.99, '2007-04-30 05:01:02.996577'); -INSERT INTO dvds.payment VALUES (27285, 454, 1, 9372, 9.99, '2007-04-30 17:32:56.996577'); -INSERT INTO dvds.payment VALUES (27286, 454, 1, 10005, 3.99, '2007-04-30 16:22:17.996577'); -INSERT INTO dvds.payment VALUES (27287, 455, 2, 4195, 2.99, '2007-04-07 09:28:28.996577'); -INSERT INTO dvds.payment VALUES (27288, 455, 1, 4861, 8.99, '2007-04-08 17:25:56.996577'); -INSERT INTO dvds.payment VALUES (27289, 455, 1, 4964, 2.99, '2007-04-08 22:15:04.996577'); -INSERT INTO dvds.payment VALUES (27290, 455, 1, 5504, 6.99, '2007-04-09 23:05:04.996577'); -INSERT INTO dvds.payment VALUES (27291, 455, 2, 6729, 4.99, '2007-04-12 12:26:49.996577'); -INSERT INTO dvds.payment VALUES (27292, 455, 1, 7388, 4.99, '2007-04-27 14:22:45.996577'); -INSERT INTO dvds.payment VALUES (27293, 455, 2, 7498, 4.99, '2007-04-27 18:37:57.996577'); -INSERT INTO dvds.payment VALUES (27294, 455, 2, 7905, 5.99, '2007-04-28 09:55:23.996577'); -INSERT INTO dvds.payment VALUES (27295, 455, 2, 8291, 2.99, '2007-04-29 00:56:51.996577'); -INSERT INTO dvds.payment VALUES (27296, 456, 1, 3743, 7.99, '2007-04-06 10:32:20.996577'); -INSERT INTO dvds.payment VALUES (27297, 456, 2, 3881, 2.99, '2007-04-06 17:04:03.996577'); -INSERT INTO dvds.payment VALUES (27298, 456, 1, 4141, 3.99, '2007-04-07 06:47:46.996577'); -INSERT INTO dvds.payment VALUES (27299, 456, 2, 5964, 0.99, '2007-04-10 22:15:44.996577'); -INSERT INTO dvds.payment VALUES (27300, 456, 2, 6023, 0.99, '2007-04-11 00:44:23.996577'); -INSERT INTO dvds.payment VALUES (27301, 456, 2, 7248, 2.99, '2007-04-27 09:06:11.996577'); -INSERT INTO dvds.payment VALUES (27302, 456, 1, 8749, 4.99, '2007-04-29 17:41:41.996577'); -INSERT INTO dvds.payment VALUES (27303, 457, 2, 4600, 5.99, '2007-04-08 05:17:03.996577'); -INSERT INTO dvds.payment VALUES (27304, 457, 1, 5500, 0.99, '2007-04-09 22:56:43.996577'); -INSERT INTO dvds.payment VALUES (27305, 457, 1, 6467, 7.99, '2007-04-11 23:50:29.996577'); -INSERT INTO dvds.payment VALUES (27306, 457, 1, 7184, 1.99, '2007-04-27 06:50:52.996577'); -INSERT INTO dvds.payment VALUES (27307, 457, 2, 8373, 4.99, '2007-04-29 03:48:19.996577'); -INSERT INTO dvds.payment VALUES (27308, 457, 1, 8502, 2.99, '2007-04-29 07:44:07.996577'); -INSERT INTO dvds.payment VALUES (27309, 457, 1, 10049, 2.99, '2007-04-30 17:39:37.996577'); -INSERT INTO dvds.payment VALUES (27310, 458, 2, 4525, 2.99, '2007-04-08 01:43:26.996577'); -INSERT INTO dvds.payment VALUES (27311, 458, 1, 5412, 2.99, '2007-04-09 18:52:18.996577'); -INSERT INTO dvds.payment VALUES (27312, 458, 1, 5572, 0.99, '2007-04-10 02:17:26.996577'); -INSERT INTO dvds.payment VALUES (27313, 458, 2, 6250, 3.99, '2007-04-11 13:30:30.996577'); -INSERT INTO dvds.payment VALUES (27314, 458, 1, 6431, 5.99, '2007-04-11 22:32:23.996577'); -INSERT INTO dvds.payment VALUES (27315, 458, 2, 6595, 7.99, '2007-04-12 05:54:14.996577'); -INSERT INTO dvds.payment VALUES (27316, 458, 1, 6654, 1.99, '2007-04-12 09:34:54.996577'); -INSERT INTO dvds.payment VALUES (27317, 458, 2, 7923, 3.99, '2007-04-28 10:36:55.996577'); -INSERT INTO dvds.payment VALUES (27318, 458, 1, 8158, 0.99, '2007-04-28 19:37:12.996577'); -INSERT INTO dvds.payment VALUES (27319, 459, 1, 3506, 2.99, '2007-04-05 22:50:55.996577'); -INSERT INTO dvds.payment VALUES (27320, 459, 2, 4519, 2.99, '2007-04-08 01:19:49.996577'); -INSERT INTO dvds.payment VALUES (27321, 459, 1, 5301, 3.99, '2007-04-09 14:10:36.996577'); -INSERT INTO dvds.payment VALUES (27322, 459, 1, 5695, 0.99, '2007-04-10 08:12:06.996577'); -INSERT INTO dvds.payment VALUES (27323, 459, 1, 6206, 0.99, '2007-04-11 11:00:40.996577'); -INSERT INTO dvds.payment VALUES (27324, 459, 2, 6750, 3.99, '2007-04-12 13:18:05.996577'); -INSERT INTO dvds.payment VALUES (27325, 459, 1, 7623, 6.99, '2007-04-27 23:06:07.996577'); -INSERT INTO dvds.payment VALUES (27326, 459, 2, 7639, 4.99, '2007-04-27 23:43:02.996577'); -INSERT INTO dvds.payment VALUES (27327, 459, 1, 7717, 4.99, '2007-04-28 03:02:20.996577'); -INSERT INTO dvds.payment VALUES (27328, 459, 1, 7820, 5.99, '2007-04-28 06:57:17.996577'); -INSERT INTO dvds.payment VALUES (27329, 459, 1, 7913, 6.99, '2007-04-28 10:15:49.996577'); -INSERT INTO dvds.payment VALUES (27330, 459, 1, 8289, 9.99, '2007-04-29 00:51:50.996577'); -INSERT INTO dvds.payment VALUES (27331, 459, 2, 8557, 10.99, '2007-04-29 09:48:25.996577'); -INSERT INTO dvds.payment VALUES (27332, 459, 1, 8897, 2.99, '2007-04-29 23:28:43.996577'); -INSERT INTO dvds.payment VALUES (27333, 459, 1, 9137, 6.99, '2007-04-30 08:37:50.996577'); -INSERT INTO dvds.payment VALUES (27334, 459, 2, 9639, 2.99, '2007-04-30 04:00:36.996577'); -INSERT INTO dvds.payment VALUES (27335, 459, 1, 9744, 4.99, '2007-04-30 07:44:04.996577'); -INSERT INTO dvds.payment VALUES (27336, 459, 2, 10117, 4.99, '2007-04-30 19:42:57.996577'); -INSERT INTO dvds.payment VALUES (27337, 460, 2, 3820, 4.99, '2007-04-06 14:03:52.996577'); -INSERT INTO dvds.payment VALUES (27338, 460, 1, 4452, 7.99, '2007-04-07 22:00:20.996577'); -INSERT INTO dvds.payment VALUES (27339, 460, 2, 5482, 3.99, '2007-04-09 22:21:30.996577'); -INSERT INTO dvds.payment VALUES (27340, 460, 1, 6613, 4.99, '2007-04-12 06:58:33.996577'); -INSERT INTO dvds.payment VALUES (27341, 460, 1, 6788, 5.99, '2007-04-12 15:02:10.996577'); -INSERT INTO dvds.payment VALUES (27342, 460, 1, 7125, 6.99, '2007-04-27 04:39:26.996577'); -INSERT INTO dvds.payment VALUES (27343, 460, 1, 7785, 3.99, '2007-04-28 05:44:37.996577'); -INSERT INTO dvds.payment VALUES (27344, 460, 2, 8656, 2.99, '2007-04-29 13:34:18.996577'); -INSERT INTO dvds.payment VALUES (27345, 461, 2, 3698, 0.99, '2007-04-06 08:37:46.996577'); -INSERT INTO dvds.payment VALUES (27346, 461, 2, 4586, 2.99, '2007-04-08 04:40:59.996577'); -INSERT INTO dvds.payment VALUES (27347, 461, 1, 5650, 0.99, '2007-04-10 05:45:27.996577'); -INSERT INTO dvds.payment VALUES (27348, 461, 1, 5809, 2.99, '2007-04-10 13:47:56.996577'); -INSERT INTO dvds.payment VALUES (27349, 461, 2, 7334, 2.99, '2007-04-27 12:28:24.996577'); -INSERT INTO dvds.payment VALUES (27350, 461, 2, 7664, 2.99, '2007-04-28 00:52:49.996577'); -INSERT INTO dvds.payment VALUES (27351, 461, 2, 8133, 0.99, '2007-04-28 18:29:32.996577'); -INSERT INTO dvds.payment VALUES (27352, 461, 2, 8164, 0.99, '2007-04-28 19:45:45.996577'); -INSERT INTO dvds.payment VALUES (27353, 461, 2, 9499, 4.99, '2007-04-30 22:26:56.996577'); -INSERT INTO dvds.payment VALUES (27354, 461, 1, 9885, 0.99, '2007-04-30 12:27:58.996577'); -INSERT INTO dvds.payment VALUES (27355, 461, 2, 10113, 4.99, '2007-04-30 19:38:29.996577'); -INSERT INTO dvds.payment VALUES (27356, 462, 1, 4500, 4.99, '2007-04-08 00:38:27.996577'); -INSERT INTO dvds.payment VALUES (27357, 462, 2, 4728, 3.99, '2007-04-08 11:27:27.996577'); -INSERT INTO dvds.payment VALUES (27358, 462, 1, 6583, 4.99, '2007-04-12 05:10:57.996577'); -INSERT INTO dvds.payment VALUES (27359, 462, 1, 6630, 0.99, '2007-04-12 07:58:31.996577'); -INSERT INTO dvds.payment VALUES (27360, 462, 1, 6710, 7.99, '2007-04-12 11:51:35.996577'); -INSERT INTO dvds.payment VALUES (27361, 462, 1, 6721, 6.99, '2007-04-12 12:11:24.996577'); -INSERT INTO dvds.payment VALUES (27362, 462, 2, 7295, 8.99, '2007-04-27 11:07:13.996577'); -INSERT INTO dvds.payment VALUES (27363, 462, 1, 7324, 6.99, '2007-04-27 12:11:05.996577'); -INSERT INTO dvds.payment VALUES (27364, 462, 1, 7762, 8.99, '2007-04-28 05:02:49.996577'); -INSERT INTO dvds.payment VALUES (27365, 462, 1, 7932, 4.99, '2007-04-28 10:53:20.996577'); -INSERT INTO dvds.payment VALUES (27366, 462, 2, 7935, 2.99, '2007-04-28 11:01:43.996577'); -INSERT INTO dvds.payment VALUES (27367, 462, 1, 8066, 2.99, '2007-04-28 15:48:35.996577'); -INSERT INTO dvds.payment VALUES (27368, 462, 1, 8282, 0.99, '2007-04-29 00:17:30.996577'); -INSERT INTO dvds.payment VALUES (27369, 462, 1, 8290, 3.99, '2007-04-29 00:52:34.996577'); -INSERT INTO dvds.payment VALUES (27370, 462, 2, 8757, 2.99, '2007-04-29 17:47:36.996577'); -INSERT INTO dvds.payment VALUES (27371, 462, 1, 9891, 0.99, '2007-04-30 12:34:10.996577'); -INSERT INTO dvds.payment VALUES (27372, 463, 1, 5026, 2.99, '2007-04-09 01:01:00.996577'); -INSERT INTO dvds.payment VALUES (27373, 463, 1, 5157, 2.99, '2007-04-09 07:20:38.996577'); -INSERT INTO dvds.payment VALUES (27374, 463, 1, 5448, 0.99, '2007-04-09 20:39:40.996577'); -INSERT INTO dvds.payment VALUES (27375, 463, 2, 6294, 0.99, '2007-04-11 15:54:21.996577'); -INSERT INTO dvds.payment VALUES (27376, 463, 1, 6932, 6.99, '2007-04-26 21:36:30.996577'); -INSERT INTO dvds.payment VALUES (27377, 463, 1, 7013, 0.99, '2007-04-27 00:31:47.996577'); -INSERT INTO dvds.payment VALUES (27378, 463, 1, 7361, 0.99, '2007-04-27 13:22:21.996577'); -INSERT INTO dvds.payment VALUES (27379, 463, 1, 8762, 2.99, '2007-04-29 17:58:28.996577'); -INSERT INTO dvds.payment VALUES (27380, 463, 2, 9405, 7.99, '2007-04-30 18:50:43.996577'); -INSERT INTO dvds.payment VALUES (27381, 463, 1, 9954, 2.99, '2007-04-30 14:25:33.996577'); -INSERT INTO dvds.payment VALUES (27382, 464, 1, 3761, 4.99, '2007-04-06 11:21:10.996577'); -INSERT INTO dvds.payment VALUES (27383, 464, 1, 4337, 5.99, '2007-04-07 17:05:03.996577'); -INSERT INTO dvds.payment VALUES (27384, 464, 2, 5455, 6.99, '2007-04-09 20:57:11.996577'); -INSERT INTO dvds.payment VALUES (27385, 464, 1, 5910, 4.99, '2007-04-10 19:20:00.996577'); -INSERT INTO dvds.payment VALUES (27386, 464, 2, 6601, 3.99, '2007-04-12 06:13:15.996577'); -INSERT INTO dvds.payment VALUES (27387, 464, 1, 9600, 5.99, '2007-04-30 02:04:00.996577'); -INSERT INTO dvds.payment VALUES (27388, 465, 1, 4763, 0.99, '2007-04-08 13:25:58.996577'); -INSERT INTO dvds.payment VALUES (27389, 465, 2, 6904, 3.99, '2007-04-12 20:30:35.996577'); -INSERT INTO dvds.payment VALUES (27390, 465, 2, 7508, 2.99, '2007-04-27 19:01:34.996577'); -INSERT INTO dvds.payment VALUES (27391, 466, 2, 5048, 0.99, '2007-04-09 02:14:59.996577'); -INSERT INTO dvds.payment VALUES (27392, 466, 1, 5691, 4.99, '2007-04-10 07:58:15.996577'); -INSERT INTO dvds.payment VALUES (27393, 466, 1, 6073, 6.99, '2007-04-11 03:22:57.996577'); -INSERT INTO dvds.payment VALUES (27394, 466, 2, 7080, 2.99, '2007-04-27 02:53:51.996577'); -INSERT INTO dvds.payment VALUES (27395, 466, 2, 8276, 0.99, '2007-04-29 00:07:09.996577'); -INSERT INTO dvds.payment VALUES (27396, 466, 1, 9202, 3.99, '2007-04-30 11:11:50.996577'); -INSERT INTO dvds.payment VALUES (27397, 466, 1, 9257, 2.99, '2007-04-30 12:59:04.996577'); -INSERT INTO dvds.payment VALUES (27398, 467, 1, 4216, 0.99, '2007-04-07 10:30:00.996577'); -INSERT INTO dvds.payment VALUES (27399, 467, 2, 4222, 4.99, '2007-04-07 10:48:47.996577'); -INSERT INTO dvds.payment VALUES (27400, 467, 1, 4259, 4.99, '2007-04-07 12:50:44.996577'); -INSERT INTO dvds.payment VALUES (27401, 467, 2, 5160, 4.99, '2007-04-09 07:25:33.996577'); -INSERT INTO dvds.payment VALUES (27402, 467, 2, 6271, 6.99, '2007-04-11 14:30:01.996577'); -INSERT INTO dvds.payment VALUES (27403, 467, 2, 7360, 2.99, '2007-04-27 13:20:32.996577'); -INSERT INTO dvds.payment VALUES (27404, 467, 2, 7573, 5.99, '2007-04-27 21:14:46.996577'); -INSERT INTO dvds.payment VALUES (27405, 467, 1, 7611, 2.99, '2007-04-27 22:40:13.996577'); -INSERT INTO dvds.payment VALUES (27406, 467, 1, 8010, 7.99, '2007-04-28 13:54:46.996577'); -INSERT INTO dvds.payment VALUES (27407, 467, 2, 8061, 6.99, '2007-04-28 15:41:19.996577'); -INSERT INTO dvds.payment VALUES (27408, 467, 2, 8224, 2.99, '2007-04-28 22:27:28.996577'); -INSERT INTO dvds.payment VALUES (27409, 467, 2, 8480, 8.99, '2007-04-29 07:13:12.996577'); -INSERT INTO dvds.payment VALUES (27410, 467, 1, 8767, 4.99, '2007-04-29 18:10:59.996577'); -INSERT INTO dvds.payment VALUES (27411, 468, 2, 3724, 2.99, '2007-04-06 09:41:14.996577'); -INSERT INTO dvds.payment VALUES (27412, 468, 1, 3840, 5.99, '2007-04-06 14:59:25.996577'); -INSERT INTO dvds.payment VALUES (27413, 468, 2, 4184, 3.99, '2007-04-07 08:58:34.996577'); -INSERT INTO dvds.payment VALUES (27414, 468, 2, 4527, 3.99, '2007-04-08 01:48:36.996577'); -INSERT INTO dvds.payment VALUES (27415, 468, 1, 5285, 2.99, '2007-04-09 13:39:10.996577'); -INSERT INTO dvds.payment VALUES (27416, 468, 1, 6392, 0.99, '2007-04-11 20:53:45.996577'); -INSERT INTO dvds.payment VALUES (27417, 468, 1, 6581, 4.99, '2007-04-12 04:55:15.996577'); -INSERT INTO dvds.payment VALUES (27418, 468, 2, 6815, 5.99, '2007-04-12 16:42:36.996577'); -INSERT INTO dvds.payment VALUES (27419, 468, 2, 7292, 4.99, '2007-04-27 11:02:40.996577'); -INSERT INTO dvds.payment VALUES (27420, 468, 1, 7685, 0.99, '2007-04-28 01:41:26.996577'); -INSERT INTO dvds.payment VALUES (27421, 468, 2, 8423, 5.99, '2007-04-29 05:31:23.996577'); -INSERT INTO dvds.payment VALUES (27422, 468, 2, 8768, 6.99, '2007-04-29 18:11:28.996577'); -INSERT INTO dvds.payment VALUES (27423, 468, 1, 9598, 0.99, '2007-04-30 01:59:07.996577'); -INSERT INTO dvds.payment VALUES (27424, 468, 1, 9690, 6.99, '2007-04-30 05:34:55.996577'); -INSERT INTO dvds.payment VALUES (27425, 469, 2, 3522, 4.99, '2007-04-05 23:28:47.996577'); -INSERT INTO dvds.payment VALUES (27426, 469, 1, 3526, 10.99, '2007-04-05 23:31:55.996577'); -INSERT INTO dvds.payment VALUES (27427, 469, 2, 4067, 3.99, '2007-04-07 03:02:49.996577'); -INSERT INTO dvds.payment VALUES (27428, 469, 2, 4123, 0.99, '2007-04-07 05:44:45.996577'); -INSERT INTO dvds.payment VALUES (27429, 469, 1, 5133, 0.99, '2007-04-09 06:11:48.996577'); -INSERT INTO dvds.payment VALUES (27430, 469, 1, 5299, 3.99, '2007-04-09 14:06:35.996577'); -INSERT INTO dvds.payment VALUES (27431, 469, 2, 5664, 6.99, '2007-04-10 06:33:07.996577'); -INSERT INTO dvds.payment VALUES (27432, 469, 2, 6022, 0.99, '2007-04-11 00:44:19.996577'); -INSERT INTO dvds.payment VALUES (27433, 469, 2, 6099, 4.99, '2007-04-11 04:53:10.996577'); -INSERT INTO dvds.payment VALUES (27434, 469, 1, 6797, 4.99, '2007-04-12 15:15:32.996577'); -INSERT INTO dvds.payment VALUES (27435, 469, 1, 6955, 3.99, '2007-04-26 22:24:14.996577'); -INSERT INTO dvds.payment VALUES (27436, 469, 2, 7062, 6.99, '2007-04-27 02:20:27.996577'); -INSERT INTO dvds.payment VALUES (27437, 469, 2, 7271, 6.99, '2007-04-27 09:57:37.996577'); -INSERT INTO dvds.payment VALUES (27438, 469, 2, 7756, 4.99, '2007-04-28 04:51:18.996577'); -INSERT INTO dvds.payment VALUES (27439, 469, 1, 7914, 4.99, '2007-04-28 10:16:34.996577'); -INSERT INTO dvds.payment VALUES (27440, 469, 2, 8791, 0.99, '2007-04-29 19:21:49.996577'); -INSERT INTO dvds.payment VALUES (27441, 469, 1, 9187, 2.99, '2007-04-30 10:42:29.996577'); -INSERT INTO dvds.payment VALUES (27442, 469, 2, 10075, 4.99, '2007-04-30 18:27:08.996577'); -INSERT INTO dvds.payment VALUES (27443, 470, 1, 3764, 5.99, '2007-04-06 11:29:29.996577'); -INSERT INTO dvds.payment VALUES (27444, 470, 1, 3841, 4.99, '2007-04-06 15:02:26.996577'); -INSERT INTO dvds.payment VALUES (27445, 470, 1, 3922, 4.99, '2007-04-06 19:00:53.996577'); -INSERT INTO dvds.payment VALUES (27446, 470, 1, 4373, 4.99, '2007-04-07 18:39:25.996577'); -INSERT INTO dvds.payment VALUES (27447, 470, 2, 4502, 6.99, '2007-04-08 00:40:30.996577'); -INSERT INTO dvds.payment VALUES (27448, 470, 2, 5082, 4.99, '2007-04-09 03:57:04.996577'); -INSERT INTO dvds.payment VALUES (27449, 470, 1, 6009, 3.99, '2007-04-11 00:20:24.996577'); -INSERT INTO dvds.payment VALUES (27450, 470, 1, 6198, 2.99, '2007-04-11 10:40:43.996577'); -INSERT INTO dvds.payment VALUES (27451, 470, 2, 6703, 4.99, '2007-04-12 11:18:45.996577'); -INSERT INTO dvds.payment VALUES (27452, 470, 1, 6927, 10.99, '2007-04-26 21:24:26.996577'); -INSERT INTO dvds.payment VALUES (27453, 470, 1, 6942, 5.99, '2007-04-26 21:56:06.996577'); -INSERT INTO dvds.payment VALUES (27454, 470, 1, 7663, 4.99, '2007-04-28 00:48:14.996577'); -INSERT INTO dvds.payment VALUES (27455, 470, 2, 8476, 8.99, '2007-04-29 07:07:38.996577'); -INSERT INTO dvds.payment VALUES (27456, 470, 1, 8890, 6.99, '2007-04-29 23:10:32.996577'); -INSERT INTO dvds.payment VALUES (27457, 470, 1, 9422, 5.99, '2007-04-30 19:37:07.996577'); -INSERT INTO dvds.payment VALUES (27458, 470, 1, 9687, 2.99, '2007-04-30 05:21:20.996577'); -INSERT INTO dvds.payment VALUES (27459, 470, 1, 10006, 4.99, '2007-04-30 16:23:01.996577'); -INSERT INTO dvds.payment VALUES (27460, 471, 1, 3917, 0.99, '2007-04-06 18:47:55.996577'); -INSERT INTO dvds.payment VALUES (27461, 471, 1, 4020, 2.99, '2007-04-07 00:10:48.996577'); -INSERT INTO dvds.payment VALUES (27462, 471, 2, 6293, 2.99, '2007-04-11 15:53:23.996577'); -INSERT INTO dvds.payment VALUES (27463, 471, 1, 6336, 8.99, '2007-04-11 17:58:39.996577'); -INSERT INTO dvds.payment VALUES (27464, 471, 1, 6912, 5.99, '2007-04-12 20:45:42.996577'); -INSERT INTO dvds.payment VALUES (27465, 471, 1, 8199, 0.99, '2007-04-28 21:38:51.996577'); -INSERT INTO dvds.payment VALUES (27466, 471, 1, 9077, 2.99, '2007-04-30 06:28:45.996577'); -INSERT INTO dvds.payment VALUES (27467, 471, 1, 9502, 0.99, '2007-04-30 22:30:36.996577'); -INSERT INTO dvds.payment VALUES (27468, 471, 2, 9560, 2.99, '2007-04-30 00:45:53.996577'); -INSERT INTO dvds.payment VALUES (27469, 472, 2, 3815, 6.99, '2007-04-06 13:55:02.996577'); -INSERT INTO dvds.payment VALUES (27470, 472, 2, 5318, 2.99, '2007-04-09 14:39:59.996577'); -INSERT INTO dvds.payment VALUES (27471, 472, 1, 5612, 3.99, '2007-04-10 03:43:38.996577'); -INSERT INTO dvds.payment VALUES (27472, 472, 1, 6119, 6.99, '2007-04-11 06:13:12.996577'); -INSERT INTO dvds.payment VALUES (27473, 472, 2, 6274, 5.99, '2007-04-11 14:38:08.996577'); -INSERT INTO dvds.payment VALUES (27474, 472, 1, 6308, 5.99, '2007-04-11 16:37:07.996577'); -INSERT INTO dvds.payment VALUES (27475, 472, 1, 6584, 2.99, '2007-04-12 05:12:02.996577'); -INSERT INTO dvds.payment VALUES (27476, 472, 2, 8929, 5.99, '2007-04-30 00:56:48.996577'); -INSERT INTO dvds.payment VALUES (27477, 472, 2, 9926, 6.99, '2007-04-30 13:40:17.996577'); -INSERT INTO dvds.payment VALUES (27478, 473, 1, 3971, 0.99, '2007-04-06 21:19:06.996577'); -INSERT INTO dvds.payment VALUES (27479, 473, 2, 4006, 4.99, '2007-04-06 22:53:55.996577'); -INSERT INTO dvds.payment VALUES (27480, 473, 2, 4625, 4.99, '2007-04-08 06:42:52.996577'); -INSERT INTO dvds.payment VALUES (27481, 473, 1, 4873, 0.99, '2007-04-08 17:51:58.996577'); -INSERT INTO dvds.payment VALUES (27482, 473, 2, 5447, 5.99, '2007-04-09 20:37:54.996577'); -INSERT INTO dvds.payment VALUES (27483, 473, 1, 6446, 2.99, '2007-04-11 23:12:34.996577'); -INSERT INTO dvds.payment VALUES (27484, 473, 2, 6890, 4.99, '2007-04-12 19:31:29.996577'); -INSERT INTO dvds.payment VALUES (27485, 473, 1, 7111, 4.99, '2007-04-27 04:06:42.996577'); -INSERT INTO dvds.payment VALUES (27486, 473, 1, 7215, 2.99, '2007-04-27 07:52:26.996577'); -INSERT INTO dvds.payment VALUES (27487, 473, 2, 7918, 1.99, '2007-04-28 10:27:19.996577'); -INSERT INTO dvds.payment VALUES (27488, 473, 2, 7928, 7.99, '2007-04-28 10:44:17.996577'); -INSERT INTO dvds.payment VALUES (27489, 473, 1, 9025, 4.99, '2007-04-30 04:18:34.996577'); -INSERT INTO dvds.payment VALUES (27490, 473, 2, 9120, 8.99, '2007-04-30 07:54:34.996577'); -INSERT INTO dvds.payment VALUES (27491, 474, 2, 3787, 4.99, '2007-04-06 12:30:27.996577'); -INSERT INTO dvds.payment VALUES (27492, 474, 2, 4048, 1.99, '2007-04-07 01:59:18.996577'); -INSERT INTO dvds.payment VALUES (27493, 474, 1, 4481, 2.99, '2007-04-07 23:26:41.996577'); -INSERT INTO dvds.payment VALUES (27494, 474, 1, 4533, 0.99, '2007-04-08 02:00:27.996577'); -INSERT INTO dvds.payment VALUES (27495, 474, 2, 4785, 0.99, '2007-04-08 14:38:45.996577'); -INSERT INTO dvds.payment VALUES (27496, 474, 1, 4809, 2.99, '2007-04-08 15:31:48.996577'); -INSERT INTO dvds.payment VALUES (27497, 474, 2, 4886, 4.99, '2007-04-08 18:21:48.996577'); -INSERT INTO dvds.payment VALUES (27498, 474, 1, 5251, 0.99, '2007-04-09 12:04:36.996577'); -INSERT INTO dvds.payment VALUES (27499, 474, 1, 6499, 7.99, '2007-04-12 01:39:44.996577'); -INSERT INTO dvds.payment VALUES (27500, 474, 1, 8991, 2.99, '2007-04-30 03:11:20.996577'); -INSERT INTO dvds.payment VALUES (27501, 475, 2, 3980, 5.99, '2007-04-06 21:39:37.996577'); -INSERT INTO dvds.payment VALUES (27502, 475, 1, 4013, 6.99, '2007-04-06 23:26:26.996577'); -INSERT INTO dvds.payment VALUES (27503, 475, 1, 4617, 4.99, '2007-04-08 06:23:34.996577'); -INSERT INTO dvds.payment VALUES (27504, 475, 2, 5379, 0.99, '2007-04-09 17:36:29.996577'); -INSERT INTO dvds.payment VALUES (27505, 475, 1, 5407, 0.99, '2007-04-09 18:44:33.996577'); -INSERT INTO dvds.payment VALUES (27506, 475, 2, 5415, 9.99, '2007-04-09 18:58:29.996577'); -INSERT INTO dvds.payment VALUES (27507, 475, 2, 5469, 2.99, '2007-04-09 21:36:33.996577'); -INSERT INTO dvds.payment VALUES (27508, 475, 1, 6224, 4.99, '2007-04-11 12:10:44.996577'); -INSERT INTO dvds.payment VALUES (27509, 475, 1, 7641, 7.99, '2007-04-27 23:44:11.996577'); -INSERT INTO dvds.payment VALUES (27510, 475, 1, 7775, 1.99, '2007-04-28 05:33:02.996577'); -INSERT INTO dvds.payment VALUES (27511, 475, 2, 8207, 5.99, '2007-04-28 21:54:57.996577'); -INSERT INTO dvds.payment VALUES (27512, 475, 1, 9183, 7.99, '2007-04-30 10:38:22.996577'); -INSERT INTO dvds.payment VALUES (27513, 475, 1, 9647, 2.99, '2007-04-30 04:13:41.996577'); -INSERT INTO dvds.payment VALUES (27514, 475, 1, 9737, 2.99, '2007-04-30 07:27:44.996577'); -INSERT INTO dvds.payment VALUES (27515, 475, 2, 10162, 3.99, '2007-04-30 21:39:27.996577'); -INSERT INTO dvds.payment VALUES (27516, 476, 2, 3477, 7.99, '2007-04-05 21:33:43.996577'); -INSERT INTO dvds.payment VALUES (27517, 476, 1, 4010, 5.99, '2007-04-06 23:15:26.996577'); -INSERT INTO dvds.payment VALUES (27518, 476, 2, 4171, 4.99, '2007-04-07 08:17:30.996577'); -INSERT INTO dvds.payment VALUES (27519, 476, 2, 5644, 4.99, '2007-04-10 05:26:10.996577'); -INSERT INTO dvds.payment VALUES (27520, 476, 1, 6151, 2.99, '2007-04-11 07:53:43.996577'); -INSERT INTO dvds.payment VALUES (27521, 476, 1, 7461, 0.99, '2007-04-27 17:13:41.996577'); -INSERT INTO dvds.payment VALUES (27522, 476, 1, 8146, 0.99, '2007-04-28 19:06:02.996577'); -INSERT INTO dvds.payment VALUES (27523, 476, 2, 9325, 6.99, '2007-04-30 15:57:45.996577'); -INSERT INTO dvds.payment VALUES (27524, 476, 2, 9743, 3.99, '2007-04-30 07:41:08.996577'); -INSERT INTO dvds.payment VALUES (27525, 477, 2, 4237, 5.99, '2007-04-07 11:45:21.996577'); -INSERT INTO dvds.payment VALUES (27526, 477, 1, 4283, 2.99, '2007-04-07 13:58:01.996577'); -INSERT INTO dvds.payment VALUES (27527, 477, 2, 4956, 7.99, '2007-04-08 21:45:36.996577'); -INSERT INTO dvds.payment VALUES (27528, 477, 2, 6265, 2.99, '2007-04-11 14:12:17.996577'); -INSERT INTO dvds.payment VALUES (27529, 477, 2, 7302, 2.99, '2007-04-27 11:20:39.996577'); -INSERT INTO dvds.payment VALUES (27530, 477, 2, 7904, 10.99, '2007-04-28 09:54:05.996577'); -INSERT INTO dvds.payment VALUES (27531, 477, 1, 8515, 6.99, '2007-04-29 08:23:46.996577'); -INSERT INTO dvds.payment VALUES (27532, 477, 1, 8821, 5.99, '2007-04-29 20:46:38.996577'); -INSERT INTO dvds.payment VALUES (27533, 477, 2, 8857, 2.99, '2007-04-29 22:12:48.996577'); -INSERT INTO dvds.payment VALUES (27534, 477, 2, 9446, 8.99, '2007-04-30 20:21:27.996577'); -INSERT INTO dvds.payment VALUES (27535, 478, 1, 3691, 4.99, '2007-04-06 08:14:38.996577'); -INSERT INTO dvds.payment VALUES (27536, 478, 1, 5837, 4.99, '2007-04-10 15:26:16.996577'); -INSERT INTO dvds.payment VALUES (27537, 478, 1, 7522, 2.99, '2007-04-27 19:39:29.996577'); -INSERT INTO dvds.payment VALUES (27538, 478, 2, 8488, 4.99, '2007-04-29 07:26:04.996577'); -INSERT INTO dvds.payment VALUES (27539, 478, 1, 9665, 4.99, '2007-04-30 04:45:59.996577'); -INSERT INTO dvds.payment VALUES (27540, 478, 2, 10016, 4.99, '2007-04-30 16:41:32.996577'); -INSERT INTO dvds.payment VALUES (27541, 478, 2, 10127, 0.99, '2007-04-30 20:08:14.996577'); -INSERT INTO dvds.payment VALUES (27542, 479, 2, 3537, 6.99, '2007-04-06 00:05:19.996577'); -INSERT INTO dvds.payment VALUES (27543, 479, 1, 3798, 0.99, '2007-04-06 13:26:19.996577'); -INSERT INTO dvds.payment VALUES (27544, 479, 2, 4183, 8.99, '2007-04-07 08:56:59.996577'); -INSERT INTO dvds.payment VALUES (27545, 479, 1, 5481, 0.99, '2007-04-09 22:20:23.996577'); -INSERT INTO dvds.payment VALUES (27546, 479, 1, 5751, 4.99, '2007-04-10 10:53:37.996577'); -INSERT INTO dvds.payment VALUES (27547, 479, 2, 6084, 7.99, '2007-04-11 03:44:46.996577'); -INSERT INTO dvds.payment VALUES (27548, 479, 1, 6421, 1.99, '2007-04-11 22:13:51.996577'); -INSERT INTO dvds.payment VALUES (27549, 479, 1, 6597, 0.99, '2007-04-12 06:05:28.996577'); -INSERT INTO dvds.payment VALUES (27550, 479, 2, 6849, 8.99, '2007-04-12 17:57:45.996577'); -INSERT INTO dvds.payment VALUES (27551, 479, 1, 7060, 7.99, '2007-04-27 02:19:30.996577'); -INSERT INTO dvds.payment VALUES (27552, 479, 2, 7893, 2.99, '2007-04-28 09:17:53.996577'); -INSERT INTO dvds.payment VALUES (27553, 479, 1, 9347, 5.99, '2007-04-30 16:44:29.996577'); -INSERT INTO dvds.payment VALUES (27554, 479, 1, 9439, 8.99, '2007-04-30 20:06:38.996577'); -INSERT INTO dvds.payment VALUES (27555, 479, 2, 9697, 2.99, '2007-04-30 05:51:37.996577'); -INSERT INTO dvds.payment VALUES (27556, 479, 2, 9754, 7.99, '2007-04-30 07:52:09.996577'); -INSERT INTO dvds.payment VALUES (27557, 480, 2, 3507, 7.99, '2007-04-05 22:52:09.996577'); -INSERT INTO dvds.payment VALUES (27558, 480, 2, 5633, 2.99, '2007-04-10 04:50:50.996577'); -INSERT INTO dvds.payment VALUES (27559, 480, 1, 6191, 2.99, '2007-04-11 10:06:18.996577'); -INSERT INTO dvds.payment VALUES (27560, 480, 1, 7257, 2.99, '2007-04-27 09:32:43.996577'); -INSERT INTO dvds.payment VALUES (27561, 480, 2, 7910, 9.99, '2007-04-28 10:13:22.996577'); -INSERT INTO dvds.payment VALUES (27562, 480, 2, 8847, 4.99, '2007-04-29 21:42:07.996577'); -INSERT INTO dvds.payment VALUES (27563, 480, 1, 8967, 6.99, '2007-04-30 02:25:21.996577'); -INSERT INTO dvds.payment VALUES (27564, 480, 2, 9332, 4.99, '2007-04-30 16:22:05.996577'); -INSERT INTO dvds.payment VALUES (27565, 481, 1, 3863, 0.99, '2007-04-06 16:08:44.996577'); -INSERT INTO dvds.payment VALUES (27566, 481, 1, 4473, 2.99, '2007-04-07 22:50:36.996577'); -INSERT INTO dvds.payment VALUES (27567, 481, 1, 4505, 1.99, '2007-04-08 00:48:30.996577'); -INSERT INTO dvds.payment VALUES (27568, 481, 1, 4532, 0.99, '2007-04-08 01:59:05.996577'); -INSERT INTO dvds.payment VALUES (27569, 481, 1, 4668, 10.99, '2007-04-08 08:40:11.996577'); -INSERT INTO dvds.payment VALUES (27570, 481, 2, 5711, 2.99, '2007-04-10 09:05:46.996577'); -INSERT INTO dvds.payment VALUES (27571, 481, 1, 6044, 0.99, '2007-04-11 01:47:05.996577'); -INSERT INTO dvds.payment VALUES (27572, 481, 1, 7228, 4.99, '2007-04-27 08:23:59.996577'); -INSERT INTO dvds.payment VALUES (27573, 481, 2, 7836, 7.99, '2007-04-28 07:23:53.996577'); -INSERT INTO dvds.payment VALUES (27574, 481, 1, 8243, 6.99, '2007-04-28 23:03:59.996577'); -INSERT INTO dvds.payment VALUES (27575, 481, 2, 8271, 6.99, '2007-04-28 23:56:10.996577'); -INSERT INTO dvds.payment VALUES (27576, 481, 1, 9481, 4.99, '2007-04-30 21:54:31.996577'); -INSERT INTO dvds.payment VALUES (27577, 481, 1, 10018, 3.99, '2007-04-30 16:43:40.996577'); -INSERT INTO dvds.payment VALUES (27578, 482, 2, 3650, 2.99, '2007-04-06 06:02:41.996577'); -INSERT INTO dvds.payment VALUES (27579, 482, 1, 4768, 4.99, '2007-04-08 13:56:46.996577'); -INSERT INTO dvds.payment VALUES (27580, 482, 1, 5334, 4.99, '2007-04-09 15:28:39.996577'); -INSERT INTO dvds.payment VALUES (27581, 482, 1, 5466, 4.99, '2007-04-09 21:31:47.996577'); -INSERT INTO dvds.payment VALUES (27582, 482, 2, 5810, 8.99, '2007-04-10 13:50:30.996577'); -INSERT INTO dvds.payment VALUES (27583, 482, 2, 5880, 2.99, '2007-04-10 17:43:24.996577'); -INSERT INTO dvds.payment VALUES (27584, 482, 1, 6355, 8.99, '2007-04-11 19:24:55.996577'); -INSERT INTO dvds.payment VALUES (27585, 482, 2, 6447, 7.99, '2007-04-11 23:13:43.996577'); -INSERT INTO dvds.payment VALUES (27586, 482, 2, 6844, 5.99, '2007-04-12 17:43:19.996577'); -INSERT INTO dvds.payment VALUES (27587, 482, 2, 7840, 6.99, '2007-04-28 07:31:28.996577'); -INSERT INTO dvds.payment VALUES (27588, 482, 2, 8584, 2.99, '2007-04-29 10:36:19.996577'); -INSERT INTO dvds.payment VALUES (27589, 482, 2, 9874, 6.99, '2007-04-30 12:00:57.996577'); -INSERT INTO dvds.payment VALUES (27590, 483, 2, 3559, 4.99, '2007-04-06 01:18:08.996577'); -INSERT INTO dvds.payment VALUES (27591, 483, 1, 5823, 4.99, '2007-04-10 14:48:18.996577'); -INSERT INTO dvds.payment VALUES (27592, 483, 2, 6478, 4.99, '2007-04-12 00:10:10.996577'); -INSERT INTO dvds.payment VALUES (27593, 483, 2, 6899, 9.99, '2007-04-12 20:12:42.996577'); -INSERT INTO dvds.payment VALUES (27594, 483, 2, 7137, 0.99, '2007-04-27 05:09:07.996577'); -INSERT INTO dvds.payment VALUES (27595, 483, 1, 7381, 4.99, '2007-04-27 14:08:52.996577'); -INSERT INTO dvds.payment VALUES (27596, 483, 1, 7669, 4.99, '2007-04-28 01:12:33.996577'); -INSERT INTO dvds.payment VALUES (27597, 483, 1, 8057, 7.99, '2007-04-28 15:35:39.996577'); -INSERT INTO dvds.payment VALUES (27598, 483, 1, 8356, 4.99, '2007-04-29 03:27:22.996577'); -INSERT INTO dvds.payment VALUES (27599, 484, 1, 4214, 4.99, '2007-04-07 10:22:59.996577'); -INSERT INTO dvds.payment VALUES (27600, 484, 1, 5389, 2.99, '2007-04-09 17:54:11.996577'); -INSERT INTO dvds.payment VALUES (27601, 484, 2, 5708, 6.99, '2007-04-10 08:57:45.996577'); -INSERT INTO dvds.payment VALUES (27602, 484, 1, 5852, 0.99, '2007-04-10 16:11:56.996577'); -INSERT INTO dvds.payment VALUES (27603, 484, 2, 5866, 6.99, '2007-04-10 17:03:40.996577'); -INSERT INTO dvds.payment VALUES (27604, 484, 2, 5977, 5.99, '2007-04-10 22:45:04.996577'); -INSERT INTO dvds.payment VALUES (27605, 484, 2, 6296, 2.99, '2007-04-11 16:02:30.996577'); -INSERT INTO dvds.payment VALUES (27606, 484, 1, 6863, 6.99, '2007-04-12 18:27:00.996577'); -INSERT INTO dvds.payment VALUES (27607, 484, 2, 7440, 4.99, '2007-04-27 16:11:53.996577'); -INSERT INTO dvds.payment VALUES (27608, 484, 2, 7548, 2.99, '2007-04-27 20:21:44.996577'); -INSERT INTO dvds.payment VALUES (27609, 484, 2, 8508, 0.99, '2007-04-29 08:03:04.996577'); -INSERT INTO dvds.payment VALUES (27610, 484, 2, 9141, 5.99, '2007-04-30 08:44:30.996577'); -INSERT INTO dvds.payment VALUES (27611, 484, 2, 9414, 9.99, '2007-04-30 19:14:28.996577'); -INSERT INTO dvds.payment VALUES (27612, 484, 1, 9769, 4.99, '2007-04-30 08:20:42.996577'); -INSERT INTO dvds.payment VALUES (27613, 484, 2, 10166, 8.99, '2007-04-30 21:50:46.996577'); -INSERT INTO dvds.payment VALUES (27614, 485, 2, 3579, 0.99, '2007-04-06 02:16:13.996577'); -INSERT INTO dvds.payment VALUES (27615, 485, 1, 3899, 1.99, '2007-04-06 17:41:06.996577'); -INSERT INTO dvds.payment VALUES (27616, 485, 1, 3904, 0.99, '2007-04-06 17:59:23.996577'); -INSERT INTO dvds.payment VALUES (27617, 485, 2, 4137, 3.99, '2007-04-07 06:45:32.996577'); -INSERT INTO dvds.payment VALUES (27618, 485, 2, 4667, 2.99, '2007-04-08 08:34:52.996577'); -INSERT INTO dvds.payment VALUES (27619, 485, 1, 5193, 2.99, '2007-04-09 08:56:44.996577'); -INSERT INTO dvds.payment VALUES (27620, 485, 1, 5343, 3.99, '2007-04-09 15:52:09.996577'); -INSERT INTO dvds.payment VALUES (27621, 485, 1, 5367, 3.99, '2007-04-09 17:07:41.996577'); -INSERT INTO dvds.payment VALUES (27622, 485, 1, 5820, 4.99, '2007-04-10 14:33:25.996577'); -INSERT INTO dvds.payment VALUES (27623, 485, 2, 6810, 4.99, '2007-04-12 16:22:45.996577'); -INSERT INTO dvds.payment VALUES (27624, 485, 2, 6902, 4.99, '2007-04-12 20:25:42.996577'); -INSERT INTO dvds.payment VALUES (27625, 485, 1, 7144, 4.99, '2007-04-27 05:29:03.996577'); -INSERT INTO dvds.payment VALUES (27626, 485, 2, 8984, 6.99, '2007-04-30 03:00:16.996577'); -INSERT INTO dvds.payment VALUES (27627, 485, 2, 9039, 2.99, '2007-04-30 04:52:54.996577'); -INSERT INTO dvds.payment VALUES (27628, 485, 1, 9053, 4.99, '2007-04-30 05:36:05.996577'); -INSERT INTO dvds.payment VALUES (27629, 485, 2, 9189, 2.99, '2007-04-30 10:49:25.996577'); -INSERT INTO dvds.payment VALUES (27630, 485, 1, 9535, 2.99, '2007-04-30 23:47:19.996577'); -INSERT INTO dvds.payment VALUES (27631, 485, 1, 9565, 0.99, '2007-04-30 01:00:26.996577'); -INSERT INTO dvds.payment VALUES (27632, 486, 1, 3835, 4.99, '2007-04-06 14:51:11.996577'); -INSERT INTO dvds.payment VALUES (27633, 486, 2, 4110, 4.99, '2007-04-07 05:12:53.996577'); -INSERT INTO dvds.payment VALUES (27634, 486, 1, 4205, 4.99, '2007-04-07 09:54:05.996577'); -INSERT INTO dvds.payment VALUES (27635, 486, 1, 4381, 2.99, '2007-04-07 19:06:19.996577'); -INSERT INTO dvds.payment VALUES (27636, 486, 1, 4772, 7.99, '2007-04-08 14:09:37.996577'); -INSERT INTO dvds.payment VALUES (27637, 486, 2, 5006, 4.99, '2007-04-08 23:52:33.996577'); -INSERT INTO dvds.payment VALUES (27638, 486, 2, 6383, 4.99, '2007-04-11 20:35:19.996577'); -INSERT INTO dvds.payment VALUES (27639, 486, 2, 7127, 4.99, '2007-04-27 04:42:14.996577'); -INSERT INTO dvds.payment VALUES (27640, 486, 2, 7446, 4.99, '2007-04-27 16:28:50.996577'); -INSERT INTO dvds.payment VALUES (27641, 486, 2, 8425, 8.99, '2007-04-29 05:34:47.996577'); -INSERT INTO dvds.payment VALUES (27642, 486, 2, 9142, 0.99, '2007-04-30 08:49:29.996577'); -INSERT INTO dvds.payment VALUES (27643, 486, 1, 10079, 2.99, '2007-04-30 18:34:11.996577'); -INSERT INTO dvds.payment VALUES (27644, 487, 2, 3994, 1.99, '2007-04-06 22:07:27.996577'); -INSERT INTO dvds.payment VALUES (27645, 487, 2, 4854, 2.99, '2007-04-08 17:13:10.996577'); -INSERT INTO dvds.payment VALUES (27646, 487, 1, 5634, 3.99, '2007-04-10 04:54:14.996577'); -INSERT INTO dvds.payment VALUES (27647, 487, 1, 6928, 2.99, '2007-04-26 21:24:47.996577'); -INSERT INTO dvds.payment VALUES (27648, 487, 1, 7097, 2.99, '2007-04-27 03:24:35.996577'); -INSERT INTO dvds.payment VALUES (27649, 487, 1, 7788, 0.99, '2007-04-28 05:50:21.996577'); -INSERT INTO dvds.payment VALUES (27650, 487, 2, 7949, 4.99, '2007-04-28 11:35:50.996577'); -INSERT INTO dvds.payment VALUES (27651, 487, 2, 8510, 1.99, '2007-04-29 08:10:04.996577'); -INSERT INTO dvds.payment VALUES (27652, 487, 2, 8689, 2.99, '2007-04-29 15:07:24.996577'); -INSERT INTO dvds.payment VALUES (27653, 487, 1, 8814, 4.99, '2007-04-29 20:18:09.996577'); -INSERT INTO dvds.payment VALUES (27654, 487, 1, 8988, 7.99, '2007-04-30 03:07:15.996577'); -INSERT INTO dvds.payment VALUES (27655, 487, 2, 9457, 2.99, '2007-04-30 20:51:31.996577'); -INSERT INTO dvds.payment VALUES (27656, 487, 1, 9490, 3.99, '2007-04-30 22:13:35.996577'); -INSERT INTO dvds.payment VALUES (27657, 487, 2, 10123, 0.99, '2007-04-30 19:59:12.996577'); -INSERT INTO dvds.payment VALUES (27658, 488, 2, 4133, 6.99, '2007-04-07 06:40:52.996577'); -INSERT INTO dvds.payment VALUES (27659, 488, 2, 4233, 5.99, '2007-04-07 11:28:46.996577'); -INSERT INTO dvds.payment VALUES (27660, 488, 1, 5141, 8.99, '2007-04-09 06:33:40.996577'); -INSERT INTO dvds.payment VALUES (27661, 488, 2, 6548, 5.99, '2007-04-12 03:29:12.996577'); -INSERT INTO dvds.payment VALUES (27662, 488, 1, 7373, 5.99, '2007-04-27 13:47:59.996577'); -INSERT INTO dvds.payment VALUES (27663, 488, 1, 8005, 2.99, '2007-04-28 13:43:37.996577'); -INSERT INTO dvds.payment VALUES (27664, 488, 2, 8050, 0.99, '2007-04-28 15:24:13.996577'); -INSERT INTO dvds.payment VALUES (27665, 488, 2, 8064, 2.99, '2007-04-28 15:44:04.996577'); -INSERT INTO dvds.payment VALUES (27666, 488, 2, 9083, 5.99, '2007-04-30 06:42:53.996577'); -INSERT INTO dvds.payment VALUES (27667, 488, 1, 9532, 2.99, '2007-04-30 23:45:17.996577'); -INSERT INTO dvds.payment VALUES (27668, 488, 1, 9537, 0.99, '2007-04-30 23:51:26.996577'); -INSERT INTO dvds.payment VALUES (27669, 489, 2, 3816, 2.99, '2007-04-06 13:55:30.996577'); -INSERT INTO dvds.payment VALUES (27670, 489, 1, 4774, 3.99, '2007-04-08 14:10:54.996577'); -INSERT INTO dvds.payment VALUES (27671, 489, 1, 6963, 4.99, '2007-04-26 22:41:28.996577'); -INSERT INTO dvds.payment VALUES (27672, 489, 2, 9231, 0.99, '2007-04-30 12:10:41.996577'); -INSERT INTO dvds.payment VALUES (27673, 489, 1, 9459, 4.99, '2007-04-30 20:53:12.996577'); -INSERT INTO dvds.payment VALUES (27674, 490, 1, 3476, 4.99, '2007-04-05 21:31:03.996577'); -INSERT INTO dvds.payment VALUES (27675, 490, 2, 3932, 4.99, '2007-04-06 19:34:43.996577'); -INSERT INTO dvds.payment VALUES (27676, 490, 1, 4083, 2.99, '2007-04-07 03:41:41.996577'); -INSERT INTO dvds.payment VALUES (27677, 490, 1, 4906, 5.99, '2007-04-08 19:27:39.996577'); -INSERT INTO dvds.payment VALUES (27678, 490, 2, 5173, 7.99, '2007-04-09 08:00:10.996577'); -INSERT INTO dvds.payment VALUES (27679, 490, 2, 5489, 0.99, '2007-04-09 22:35:29.996577'); -INSERT INTO dvds.payment VALUES (27680, 490, 1, 5654, 4.99, '2007-04-10 05:53:12.996577'); -INSERT INTO dvds.payment VALUES (27681, 490, 2, 6230, 2.99, '2007-04-11 12:30:45.996577'); -INSERT INTO dvds.payment VALUES (27682, 490, 1, 6803, 4.99, '2007-04-12 15:50:15.996577'); -INSERT INTO dvds.payment VALUES (27683, 490, 2, 6888, 2.99, '2007-04-12 19:29:37.996577'); -INSERT INTO dvds.payment VALUES (27684, 490, 2, 6923, 8.99, '2007-04-12 21:09:14.996577'); -INSERT INTO dvds.payment VALUES (27685, 490, 1, 8552, 5.99, '2007-04-29 09:42:28.996577'); -INSERT INTO dvds.payment VALUES (27686, 490, 2, 9108, 4.99, '2007-04-30 07:25:02.996577'); -INSERT INTO dvds.payment VALUES (27687, 490, 1, 9554, 0.99, '2007-04-30 00:35:15.996577'); -INSERT INTO dvds.payment VALUES (27688, 491, 1, 4046, 8.99, '2007-04-07 01:56:25.996577'); -INSERT INTO dvds.payment VALUES (27689, 491, 1, 4392, 2.99, '2007-04-07 19:39:28.996577'); -INSERT INTO dvds.payment VALUES (27690, 491, 2, 5134, 6.99, '2007-04-09 06:21:38.996577'); -INSERT INTO dvds.payment VALUES (27691, 491, 1, 5889, 4.99, '2007-04-10 18:23:07.996577'); -INSERT INTO dvds.payment VALUES (27692, 491, 2, 6171, 2.99, '2007-04-11 08:58:01.996577'); -INSERT INTO dvds.payment VALUES (27693, 491, 2, 7019, 3.99, '2007-04-27 00:48:52.996577'); -INSERT INTO dvds.payment VALUES (27694, 491, 2, 7281, 6.99, '2007-04-27 10:27:46.996577'); -INSERT INTO dvds.payment VALUES (27695, 491, 2, 7688, 7.99, '2007-04-28 01:49:13.996577'); -INSERT INTO dvds.payment VALUES (27696, 491, 1, 7871, 6.99, '2007-04-28 08:45:03.996577'); -INSERT INTO dvds.payment VALUES (27697, 491, 2, 10036, 2.99, '2007-04-30 17:15:46.996577'); -INSERT INTO dvds.payment VALUES (27698, 491, 2, 10178, 4.99, '2007-04-30 22:11:30.996577'); -INSERT INTO dvds.payment VALUES (27699, 492, 2, 4128, 8.99, '2007-04-07 06:03:51.996577'); -INSERT INTO dvds.payment VALUES (27700, 492, 1, 4142, 2.99, '2007-04-07 06:48:11.996577'); -INSERT INTO dvds.payment VALUES (27701, 492, 2, 4258, 6.99, '2007-04-07 12:49:25.996577'); -INSERT INTO dvds.payment VALUES (27702, 492, 2, 5325, 0.99, '2007-04-09 15:04:13.996577'); -INSERT INTO dvds.payment VALUES (27703, 492, 1, 5609, 0.99, '2007-04-10 03:38:12.996577'); -INSERT INTO dvds.payment VALUES (27704, 492, 1, 6257, 2.99, '2007-04-11 13:52:12.996577'); -INSERT INTO dvds.payment VALUES (27705, 492, 2, 7203, 2.99, '2007-04-27 07:29:49.996577'); -INSERT INTO dvds.payment VALUES (27706, 493, 2, 3586, 4.99, '2007-04-06 02:53:08.996577'); -INSERT INTO dvds.payment VALUES (27707, 493, 1, 3655, 5.99, '2007-04-06 06:21:20.996577'); -INSERT INTO dvds.payment VALUES (27708, 493, 1, 6549, 7.99, '2007-04-12 03:30:27.996577'); -INSERT INTO dvds.payment VALUES (27709, 493, 1, 6552, 4.99, '2007-04-12 03:33:32.996577'); -INSERT INTO dvds.payment VALUES (27710, 493, 1, 7026, 2.99, '2007-04-27 01:17:24.996577'); -INSERT INTO dvds.payment VALUES (27711, 493, 2, 7043, 7.99, '2007-04-27 01:52:49.996577'); -INSERT INTO dvds.payment VALUES (27712, 493, 1, 8298, 4.99, '2007-04-29 01:16:02.996577'); -INSERT INTO dvds.payment VALUES (27713, 493, 1, 8616, 2.99, '2007-04-29 12:07:35.996577'); -INSERT INTO dvds.payment VALUES (27714, 494, 1, 3511, 0.99, '2007-04-05 23:10:27.996577'); -INSERT INTO dvds.payment VALUES (27715, 494, 2, 3803, 2.99, '2007-04-06 13:35:21.996577'); -INSERT INTO dvds.payment VALUES (27716, 494, 2, 3913, 0.99, '2007-04-06 18:39:26.996577'); -INSERT INTO dvds.payment VALUES (27717, 494, 1, 4086, 3.99, '2007-04-07 03:54:32.996577'); -INSERT INTO dvds.payment VALUES (27718, 494, 2, 4397, 5.99, '2007-04-07 19:43:20.996577'); -INSERT INTO dvds.payment VALUES (27719, 494, 2, 4551, 7.99, '2007-04-08 03:04:47.996577'); -INSERT INTO dvds.payment VALUES (27720, 494, 2, 5083, 4.99, '2007-04-09 03:58:58.996577'); -INSERT INTO dvds.payment VALUES (27721, 494, 1, 5180, 2.99, '2007-04-09 08:35:19.996577'); -INSERT INTO dvds.payment VALUES (27722, 494, 2, 7258, 3.99, '2007-04-27 09:34:20.996577'); -INSERT INTO dvds.payment VALUES (27723, 494, 2, 7546, 8.99, '2007-04-27 20:18:35.996577'); -INSERT INTO dvds.payment VALUES (27724, 494, 2, 7737, 1.99, '2007-04-28 03:43:29.996577'); -INSERT INTO dvds.payment VALUES (27725, 494, 2, 8333, 2.99, '2007-04-29 02:45:06.996577'); -INSERT INTO dvds.payment VALUES (27726, 494, 2, 8895, 2.99, '2007-04-29 23:17:43.996577'); -INSERT INTO dvds.payment VALUES (27727, 494, 1, 8934, 4.99, '2007-04-30 01:05:31.996577'); -INSERT INTO dvds.payment VALUES (27728, 494, 2, 9012, 4.99, '2007-04-30 03:47:23.996577'); -INSERT INTO dvds.payment VALUES (27729, 494, 2, 9510, 7.99, '2007-04-30 22:52:43.996577'); -INSERT INTO dvds.payment VALUES (27730, 494, 1, 9799, 2.99, '2007-04-30 09:26:58.996577'); -INSERT INTO dvds.payment VALUES (27731, 494, 2, 9943, 7.99, '2007-04-30 14:05:55.996577'); -INSERT INTO dvds.payment VALUES (27732, 495, 2, 3966, 2.99, '2007-04-06 21:07:15.996577'); -INSERT INTO dvds.payment VALUES (27733, 495, 2, 5484, 7.99, '2007-04-09 22:23:03.996577'); -INSERT INTO dvds.payment VALUES (27734, 495, 2, 6426, 7.99, '2007-04-11 22:25:04.996577'); -INSERT INTO dvds.payment VALUES (27735, 495, 2, 7191, 2.99, '2007-04-27 07:04:41.996577'); -INSERT INTO dvds.payment VALUES (27736, 495, 1, 8151, 0.99, '2007-04-28 19:19:18.996577'); -INSERT INTO dvds.payment VALUES (27737, 495, 1, 8383, 1.99, '2007-04-29 04:05:13.996577'); -INSERT INTO dvds.payment VALUES (27738, 495, 1, 8451, 5.99, '2007-04-29 06:13:22.996577'); -INSERT INTO dvds.payment VALUES (27739, 495, 1, 8672, 5.99, '2007-04-29 14:18:14.996577'); -INSERT INTO dvds.payment VALUES (27740, 495, 1, 9387, 9.99, '2007-04-30 17:55:31.996577'); -INSERT INTO dvds.payment VALUES (27741, 495, 1, 9741, 4.99, '2007-04-30 07:37:48.996577'); -INSERT INTO dvds.payment VALUES (27742, 495, 2, 10065, 4.99, '2007-04-30 17:56:00.996577'); -INSERT INTO dvds.payment VALUES (27743, 496, 2, 3569, 3.99, '2007-04-06 01:45:49.996577'); -INSERT INTO dvds.payment VALUES (27744, 496, 1, 4070, 2.99, '2007-04-07 03:05:35.996577'); -INSERT INTO dvds.payment VALUES (27745, 496, 1, 4261, 4.99, '2007-04-07 12:52:22.996577'); -INSERT INTO dvds.payment VALUES (27746, 496, 1, 4269, 0.99, '2007-04-07 13:06:59.996577'); -INSERT INTO dvds.payment VALUES (27747, 496, 1, 5559, 5.99, '2007-04-10 01:41:33.996577'); -INSERT INTO dvds.payment VALUES (27748, 496, 2, 5949, 4.99, '2007-04-10 21:41:26.996577'); -INSERT INTO dvds.payment VALUES (27749, 496, 1, 7133, 2.99, '2007-04-27 04:57:49.996577'); -INSERT INTO dvds.payment VALUES (27750, 496, 2, 8221, 2.99, '2007-04-28 22:15:45.996577'); -INSERT INTO dvds.payment VALUES (27751, 497, 1, 3696, 2.99, '2007-04-06 08:33:21.996577'); -INSERT INTO dvds.payment VALUES (27752, 497, 2, 4218, 7.99, '2007-04-07 10:38:50.996577'); -INSERT INTO dvds.payment VALUES (27753, 497, 1, 4516, 4.99, '2007-04-08 01:12:07.996577'); -INSERT INTO dvds.payment VALUES (27754, 497, 1, 4578, 0.99, '2007-04-08 04:28:43.996577'); -INSERT INTO dvds.payment VALUES (27755, 497, 2, 4795, 0.99, '2007-04-08 15:01:20.996577'); -INSERT INTO dvds.payment VALUES (27756, 497, 1, 5030, 4.99, '2007-04-09 01:04:09.996577'); -INSERT INTO dvds.payment VALUES (27757, 497, 1, 5239, 4.99, '2007-04-09 11:41:01.996577'); -INSERT INTO dvds.payment VALUES (27758, 497, 2, 7603, 2.99, '2007-04-27 22:23:10.996577'); -INSERT INTO dvds.payment VALUES (27759, 497, 2, 8011, 2.99, '2007-04-28 13:55:05.996577'); -INSERT INTO dvds.payment VALUES (27760, 497, 1, 8150, 6.99, '2007-04-28 19:19:07.996577'); -INSERT INTO dvds.payment VALUES (27761, 497, 2, 8813, 6.99, '2007-04-29 20:16:21.996577'); -INSERT INTO dvds.payment VALUES (27762, 497, 2, 8867, 4.99, '2007-04-29 22:30:44.996577'); -INSERT INTO dvds.payment VALUES (27763, 497, 1, 9273, 9.99, '2007-04-30 13:34:02.996577'); -INSERT INTO dvds.payment VALUES (27764, 497, 2, 9850, 4.99, '2007-04-30 11:15:18.996577'); -INSERT INTO dvds.payment VALUES (27765, 498, 2, 3828, 0.99, '2007-04-06 14:25:56.996577'); -INSERT INTO dvds.payment VALUES (27766, 498, 2, 3856, 2.99, '2007-04-06 15:33:12.996577'); -INSERT INTO dvds.payment VALUES (27767, 498, 1, 4311, 4.99, '2007-04-07 15:59:40.996577'); -INSERT INTO dvds.payment VALUES (27768, 498, 2, 4972, 2.99, '2007-04-08 22:24:35.996577'); -INSERT INTO dvds.payment VALUES (27769, 498, 1, 5286, 2.99, '2007-04-09 13:40:07.996577'); -INSERT INTO dvds.payment VALUES (27770, 498, 2, 5884, 0.99, '2007-04-10 18:00:04.996577'); -INSERT INTO dvds.payment VALUES (27771, 498, 1, 6058, 2.99, '2007-04-11 02:32:17.996577'); -INSERT INTO dvds.payment VALUES (27772, 498, 1, 6088, 1.99, '2007-04-11 04:09:01.996577'); -INSERT INTO dvds.payment VALUES (27773, 498, 1, 7285, 4.99, '2007-04-27 10:42:32.996577'); -INSERT INTO dvds.payment VALUES (27774, 498, 1, 7286, 6.99, '2007-04-27 10:52:15.996577'); -INSERT INTO dvds.payment VALUES (27775, 498, 1, 7341, 4.99, '2007-04-27 12:52:21.996577'); -INSERT INTO dvds.payment VALUES (27776, 498, 2, 8020, 4.99, '2007-04-28 14:11:58.996577'); -INSERT INTO dvds.payment VALUES (27777, 498, 1, 8229, 2.99, '2007-04-28 22:37:34.996577'); -INSERT INTO dvds.payment VALUES (27778, 498, 2, 9021, 0.99, '2007-04-30 04:02:50.996577'); -INSERT INTO dvds.payment VALUES (27779, 498, 2, 9689, 4.99, '2007-04-30 05:28:34.996577'); -INSERT INTO dvds.payment VALUES (27780, 499, 1, 3794, 4.99, '2007-04-06 13:03:52.996577'); -INSERT INTO dvds.payment VALUES (27781, 499, 1, 5022, 2.99, '2007-04-09 00:39:20.996577'); -INSERT INTO dvds.payment VALUES (27782, 499, 2, 5392, 2.99, '2007-04-09 18:00:56.996577'); -INSERT INTO dvds.payment VALUES (27783, 499, 2, 5427, 3.99, '2007-04-09 19:40:52.996577'); -INSERT INTO dvds.payment VALUES (27784, 499, 1, 5956, 4.99, '2007-04-10 21:51:34.996577'); -INSERT INTO dvds.payment VALUES (27785, 499, 2, 6723, 4.99, '2007-04-12 12:13:23.996577'); -INSERT INTO dvds.payment VALUES (27786, 499, 1, 7800, 0.99, '2007-04-28 06:19:25.996577'); -INSERT INTO dvds.payment VALUES (27787, 499, 1, 7831, 0.99, '2007-04-28 07:12:47.996577'); -INSERT INTO dvds.payment VALUES (27788, 499, 1, 7898, 6.99, '2007-04-28 09:36:48.996577'); -INSERT INTO dvds.payment VALUES (27789, 499, 2, 8130, 4.99, '2007-04-28 18:16:41.996577'); -INSERT INTO dvds.payment VALUES (27790, 499, 1, 8770, 3.99, '2007-04-29 18:22:16.996577'); -INSERT INTO dvds.payment VALUES (27791, 499, 1, 9588, 0.99, '2007-04-30 01:41:39.996577'); -INSERT INTO dvds.payment VALUES (27792, 500, 2, 3926, 4.99, '2007-04-06 19:11:01.996577'); -INSERT INTO dvds.payment VALUES (27793, 500, 1, 4561, 0.99, '2007-04-08 03:31:09.996577'); -INSERT INTO dvds.payment VALUES (27794, 500, 2, 4790, 4.99, '2007-04-08 14:53:53.996577'); -INSERT INTO dvds.payment VALUES (27795, 500, 2, 6018, 4.99, '2007-04-11 00:35:02.996577'); -INSERT INTO dvds.payment VALUES (27796, 500, 2, 6187, 2.99, '2007-04-11 09:57:17.996577'); -INSERT INTO dvds.payment VALUES (27797, 500, 2, 6801, 3.99, '2007-04-12 15:37:34.996577'); -INSERT INTO dvds.payment VALUES (27798, 500, 1, 7857, 0.99, '2007-04-28 08:18:06.996577'); -INSERT INTO dvds.payment VALUES (27799, 500, 1, 7925, 2.99, '2007-04-28 10:38:28.996577'); -INSERT INTO dvds.payment VALUES (27800, 500, 1, 8538, 6.99, '2007-04-29 09:13:43.996577'); -INSERT INTO dvds.payment VALUES (27801, 500, 1, 8925, 0.99, '2007-04-30 00:37:40.996577'); -INSERT INTO dvds.payment VALUES (27802, 500, 2, 9290, 3.99, '2007-04-30 14:27:34.996577'); -INSERT INTO dvds.payment VALUES (27803, 501, 2, 3541, 6.99, '2007-04-06 00:18:37.996577'); -INSERT INTO dvds.payment VALUES (27804, 501, 2, 3723, 6.99, '2007-04-06 09:40:28.996577'); -INSERT INTO dvds.payment VALUES (27805, 501, 2, 4769, 2.99, '2007-04-08 13:57:42.996577'); -INSERT INTO dvds.payment VALUES (27806, 501, 2, 5520, 1.99, '2007-04-09 23:59:07.996577'); -INSERT INTO dvds.payment VALUES (27807, 501, 2, 6095, 7.99, '2007-04-11 04:35:07.996577'); -INSERT INTO dvds.payment VALUES (27808, 501, 1, 7456, 0.99, '2007-04-27 17:03:19.996577'); -INSERT INTO dvds.payment VALUES (27809, 501, 1, 8021, 2.99, '2007-04-28 14:13:50.996577'); -INSERT INTO dvds.payment VALUES (27810, 501, 2, 8529, 2.99, '2007-04-29 08:52:57.996577'); -INSERT INTO dvds.payment VALUES (27811, 501, 1, 9359, 2.99, '2007-04-30 17:07:54.996577'); -INSERT INTO dvds.payment VALUES (27812, 502, 2, 3614, 2.99, '2007-04-06 04:14:31.996577'); -INSERT INTO dvds.payment VALUES (27813, 502, 1, 4606, 2.99, '2007-04-08 05:34:16.996577'); -INSERT INTO dvds.payment VALUES (27814, 502, 2, 5368, 5.99, '2007-04-09 17:10:25.996577'); -INSERT INTO dvds.payment VALUES (27815, 502, 2, 5662, 2.99, '2007-04-10 06:27:50.996577'); -INSERT INTO dvds.payment VALUES (27816, 502, 2, 6414, 7.99, '2007-04-11 21:54:39.996577'); -INSERT INTO dvds.payment VALUES (27817, 502, 1, 6760, 8.99, '2007-04-12 13:44:26.996577'); -INSERT INTO dvds.payment VALUES (27818, 502, 2, 6828, 2.99, '2007-04-12 17:07:17.996577'); -INSERT INTO dvds.payment VALUES (27819, 502, 2, 6924, 8.99, '2007-04-26 21:20:19.996577'); -INSERT INTO dvds.payment VALUES (27820, 502, 2, 7213, 3.99, '2007-04-27 07:50:55.996577'); -INSERT INTO dvds.payment VALUES (27821, 502, 1, 7255, 4.99, '2007-04-27 09:18:20.996577'); -INSERT INTO dvds.payment VALUES (27822, 502, 1, 7757, 4.99, '2007-04-28 04:51:26.996577'); -INSERT INTO dvds.payment VALUES (27823, 502, 1, 7884, 4.99, '2007-04-28 09:05:50.996577'); -INSERT INTO dvds.payment VALUES (27824, 502, 2, 8034, 4.99, '2007-04-28 14:48:52.996577'); -INSERT INTO dvds.payment VALUES (27825, 502, 2, 9232, 0.99, '2007-04-30 12:11:26.996577'); -INSERT INTO dvds.payment VALUES (27826, 502, 1, 9599, 4.99, '2007-04-30 02:00:32.996577'); -INSERT INTO dvds.payment VALUES (27827, 503, 2, 3935, 6.99, '2007-04-06 19:36:55.996577'); -INSERT INTO dvds.payment VALUES (27828, 503, 2, 4570, 2.99, '2007-04-08 04:02:25.996577'); -INSERT INTO dvds.payment VALUES (27829, 503, 2, 5465, 2.99, '2007-04-09 21:29:39.996577'); -INSERT INTO dvds.payment VALUES (27830, 503, 1, 5925, 6.99, '2007-04-10 20:09:53.996577'); -INSERT INTO dvds.payment VALUES (27831, 503, 1, 6166, 4.99, '2007-04-11 08:47:31.996577'); -INSERT INTO dvds.payment VALUES (27832, 503, 1, 6529, 2.99, '2007-04-12 02:59:30.996577'); -INSERT INTO dvds.payment VALUES (27833, 503, 2, 6950, 4.99, '2007-04-26 22:13:59.996577'); -INSERT INTO dvds.payment VALUES (27834, 503, 1, 8178, 2.99, '2007-04-28 20:22:57.996577'); -INSERT INTO dvds.payment VALUES (27835, 503, 2, 9725, 0.99, '2007-04-30 07:03:44.996577'); -INSERT INTO dvds.payment VALUES (27836, 503, 1, 9974, 4.99, '2007-04-30 15:19:37.996577'); -INSERT INTO dvds.payment VALUES (27837, 504, 2, 3712, 9.99, '2007-04-06 09:16:01.996577'); -INSERT INTO dvds.payment VALUES (27838, 504, 1, 3713, 6.99, '2007-04-06 09:17:56.996577'); -INSERT INTO dvds.payment VALUES (27839, 504, 1, 4329, 5.99, '2007-04-07 16:32:42.996577'); -INSERT INTO dvds.payment VALUES (27840, 504, 1, 4757, 0.99, '2007-04-08 13:05:17.996577'); -INSERT INTO dvds.payment VALUES (27841, 504, 2, 5153, 6.99, '2007-04-09 07:03:31.996577'); -INSERT INTO dvds.payment VALUES (27842, 504, 2, 7342, 3.99, '2007-04-27 12:53:43.996577'); -INSERT INTO dvds.payment VALUES (27843, 504, 1, 7567, 2.99, '2007-04-27 21:06:31.996577'); -INSERT INTO dvds.payment VALUES (27844, 504, 2, 7807, 2.99, '2007-04-28 06:26:53.996577'); -INSERT INTO dvds.payment VALUES (27845, 504, 2, 7875, 1.99, '2007-04-28 08:52:14.996577'); -INSERT INTO dvds.payment VALUES (27846, 504, 2, 7944, 4.99, '2007-04-28 11:19:48.996577'); -INSERT INTO dvds.payment VALUES (27847, 504, 1, 8393, 9.99, '2007-04-29 04:30:37.996577'); -INSERT INTO dvds.payment VALUES (27848, 505, 2, 4008, 5.99, '2007-04-06 22:55:09.996577'); -INSERT INTO dvds.payment VALUES (27849, 505, 1, 4507, 6.99, '2007-04-08 00:51:11.996577'); -INSERT INTO dvds.payment VALUES (27850, 505, 2, 5976, 9.99, '2007-04-10 22:45:01.996577'); -INSERT INTO dvds.payment VALUES (27851, 505, 2, 6292, 4.99, '2007-04-11 15:51:59.996577'); -INSERT INTO dvds.payment VALUES (27852, 505, 1, 6441, 0.99, '2007-04-11 22:55:34.996577'); -INSERT INTO dvds.payment VALUES (27853, 505, 1, 7784, 4.99, '2007-04-28 05:43:58.996577'); -INSERT INTO dvds.payment VALUES (27854, 505, 2, 10219, 5.99, '2007-04-30 23:38:59.996577'); -INSERT INTO dvds.payment VALUES (27855, 506, 2, 4594, 7.99, '2007-04-08 05:08:32.996577'); -INSERT INTO dvds.payment VALUES (27856, 506, 2, 4640, 6.99, '2007-04-08 07:28:00.996577'); -INSERT INTO dvds.payment VALUES (27857, 506, 2, 4806, 8.99, '2007-04-08 15:29:28.996577'); -INSERT INTO dvds.payment VALUES (27858, 506, 2, 5985, 0.99, '2007-04-10 23:20:24.996577'); -INSERT INTO dvds.payment VALUES (27859, 506, 1, 6783, 2.99, '2007-04-12 14:56:22.996577'); -INSERT INTO dvds.payment VALUES (27860, 506, 1, 7020, 0.99, '2007-04-27 00:52:53.996577'); -INSERT INTO dvds.payment VALUES (27861, 506, 2, 8096, 9.99, '2007-04-28 17:01:12.996577'); -INSERT INTO dvds.payment VALUES (27862, 506, 2, 8506, 0.99, '2007-04-29 07:52:18.996577'); -INSERT INTO dvds.payment VALUES (27863, 506, 2, 9654, 3.99, '2007-04-30 04:26:08.996577'); -INSERT INTO dvds.payment VALUES (27864, 506, 2, 9972, 2.99, '2007-04-30 15:11:09.996577'); -INSERT INTO dvds.payment VALUES (27865, 507, 1, 3660, 4.99, '2007-04-06 06:35:55.996577'); -INSERT INTO dvds.payment VALUES (27866, 507, 1, 3880, 2.99, '2007-04-06 17:01:15.996577'); -INSERT INTO dvds.payment VALUES (27867, 507, 2, 4440, 0.99, '2007-04-07 21:29:24.996577'); -INSERT INTO dvds.payment VALUES (27868, 507, 2, 4455, 2.99, '2007-04-07 22:12:12.996577'); -INSERT INTO dvds.payment VALUES (27869, 507, 2, 4744, 0.99, '2007-04-08 12:12:23.996577'); -INSERT INTO dvds.payment VALUES (27870, 507, 2, 4901, 2.99, '2007-04-08 19:13:17.996577'); -INSERT INTO dvds.payment VALUES (27871, 507, 1, 5962, 0.99, '2007-04-10 22:13:48.996577'); -INSERT INTO dvds.payment VALUES (27872, 507, 1, 6351, 6.99, '2007-04-11 19:00:10.996577'); -INSERT INTO dvds.payment VALUES (27873, 507, 1, 6396, 1.99, '2007-04-11 20:59:34.996577'); -INSERT INTO dvds.payment VALUES (27874, 507, 1, 6891, 2.99, '2007-04-12 19:36:01.996577'); -INSERT INTO dvds.payment VALUES (27875, 507, 2, 7770, 5.99, '2007-04-28 05:18:01.996577'); -INSERT INTO dvds.payment VALUES (27876, 507, 1, 7970, 5.99, '2007-04-28 12:27:04.996577'); -INSERT INTO dvds.payment VALUES (27877, 507, 2, 8369, 2.99, '2007-04-29 03:44:08.996577'); -INSERT INTO dvds.payment VALUES (27878, 507, 2, 8976, 2.99, '2007-04-30 02:40:58.996577'); -INSERT INTO dvds.payment VALUES (27879, 507, 1, 9003, 2.99, '2007-04-30 03:31:18.996577'); -INSERT INTO dvds.payment VALUES (27880, 508, 2, 5657, 9.99, '2007-04-10 06:02:09.996577'); -INSERT INTO dvds.payment VALUES (27881, 508, 2, 5978, 6.99, '2007-04-10 22:45:20.996577'); -INSERT INTO dvds.payment VALUES (27882, 508, 1, 6101, 4.99, '2007-04-11 05:18:59.996577'); -INSERT INTO dvds.payment VALUES (27883, 508, 2, 6646, 0.99, '2007-04-12 09:10:00.996577'); -INSERT INTO dvds.payment VALUES (27884, 508, 2, 6929, 8.99, '2007-04-26 21:27:45.996577'); -INSERT INTO dvds.payment VALUES (27885, 508, 1, 7283, 5.99, '2007-04-27 10:31:07.996577'); -INSERT INTO dvds.payment VALUES (27886, 508, 2, 7322, 3.99, '2007-04-27 12:05:52.996577'); -INSERT INTO dvds.payment VALUES (27887, 508, 2, 7327, 7.99, '2007-04-27 12:21:52.996577'); -INSERT INTO dvds.payment VALUES (27888, 508, 2, 7668, 2.99, '2007-04-28 01:09:57.996577'); -INSERT INTO dvds.payment VALUES (27889, 508, 2, 7676, 4.99, '2007-04-28 01:23:53.996577'); -INSERT INTO dvds.payment VALUES (27890, 508, 2, 8191, 4.99, '2007-04-28 21:15:40.996577'); -INSERT INTO dvds.payment VALUES (27891, 508, 2, 9694, 5.99, '2007-04-30 05:41:42.996577'); -INSERT INTO dvds.payment VALUES (27892, 508, 1, 9706, 2.99, '2007-04-30 06:11:45.996577'); -INSERT INTO dvds.payment VALUES (27893, 508, 2, 10128, 2.99, '2007-04-30 20:08:30.996577'); -INSERT INTO dvds.payment VALUES (27894, 509, 2, 4139, 1.99, '2007-04-07 06:46:01.996577'); -INSERT INTO dvds.payment VALUES (27895, 509, 2, 4266, 4.99, '2007-04-07 13:03:16.996577'); -INSERT INTO dvds.payment VALUES (27896, 509, 2, 4832, 2.99, '2007-04-08 16:35:31.996577'); -INSERT INTO dvds.payment VALUES (27897, 509, 2, 5008, 2.99, '2007-04-09 00:00:08.996577'); -INSERT INTO dvds.payment VALUES (27898, 509, 1, 6591, 5.99, '2007-04-12 05:42:12.996577'); -INSERT INTO dvds.payment VALUES (27899, 509, 1, 7848, 6.99, '2007-04-28 07:52:57.996577'); -INSERT INTO dvds.payment VALUES (27900, 509, 1, 8114, 8.99, '2007-04-28 17:42:32.996577'); -INSERT INTO dvds.payment VALUES (27901, 509, 1, 8214, 5.99, '2007-04-28 22:06:23.996577'); -INSERT INTO dvds.payment VALUES (27902, 509, 2, 8240, 0.99, '2007-04-28 23:01:58.996577'); -INSERT INTO dvds.payment VALUES (27903, 509, 1, 10189, 4.99, '2007-04-30 22:53:26.996577'); -INSERT INTO dvds.payment VALUES (27904, 510, 2, 3744, 2.99, '2007-04-06 10:38:28.996577'); -INSERT INTO dvds.payment VALUES (27905, 510, 1, 4014, 4.99, '2007-04-06 23:27:20.996577'); -INSERT INTO dvds.payment VALUES (27906, 510, 2, 5851, 4.99, '2007-04-10 16:09:13.996577'); -INSERT INTO dvds.payment VALUES (27907, 510, 1, 6531, 1.99, '2007-04-12 03:03:50.996577'); -INSERT INTO dvds.payment VALUES (27908, 510, 1, 7457, 2.99, '2007-04-27 17:03:43.996577'); -INSERT INTO dvds.payment VALUES (27909, 510, 1, 7678, 8.99, '2007-04-28 01:26:42.996577'); -INSERT INTO dvds.payment VALUES (27910, 510, 2, 7794, 9.99, '2007-04-28 05:56:29.996577'); -INSERT INTO dvds.payment VALUES (27911, 510, 2, 8763, 3.99, '2007-04-29 18:06:50.996577'); -INSERT INTO dvds.payment VALUES (27912, 510, 1, 8926, 4.99, '2007-04-30 00:38:57.996577'); -INSERT INTO dvds.payment VALUES (27913, 510, 1, 10131, 0.99, '2007-04-30 20:13:54.996577'); -INSERT INTO dvds.payment VALUES (27914, 511, 2, 3600, 4.99, '2007-04-06 03:48:08.996577'); -INSERT INTO dvds.payment VALUES (27915, 511, 1, 3852, 0.99, '2007-04-06 15:26:15.996577'); -INSERT INTO dvds.payment VALUES (27916, 511, 1, 4482, 4.99, '2007-04-07 23:29:44.996577'); -INSERT INTO dvds.payment VALUES (27917, 511, 2, 5164, 3.99, '2007-04-09 07:31:40.996577'); -INSERT INTO dvds.payment VALUES (27918, 511, 1, 5601, 0.99, '2007-04-10 03:25:21.996577'); -INSERT INTO dvds.payment VALUES (27919, 511, 2, 6040, 0.99, '2007-04-11 01:42:52.996577'); -INSERT INTO dvds.payment VALUES (27920, 511, 1, 6320, 0.99, '2007-04-11 17:19:21.996577'); -INSERT INTO dvds.payment VALUES (27921, 511, 1, 8026, 4.99, '2007-04-28 14:34:04.996577'); -INSERT INTO dvds.payment VALUES (27922, 511, 1, 9095, 0.99, '2007-04-30 07:07:02.996577'); -INSERT INTO dvds.payment VALUES (27923, 511, 1, 9143, 6.99, '2007-04-30 08:50:37.996577'); -INSERT INTO dvds.payment VALUES (27924, 511, 1, 9760, 4.99, '2007-04-30 07:57:59.996577'); -INSERT INTO dvds.payment VALUES (27925, 512, 1, 4752, 5.99, '2007-04-08 12:43:46.996577'); -INSERT INTO dvds.payment VALUES (27926, 512, 1, 4799, 0.99, '2007-04-08 15:17:53.996577'); -INSERT INTO dvds.payment VALUES (27927, 512, 1, 5064, 6.99, '2007-04-09 03:07:17.996577'); -INSERT INTO dvds.payment VALUES (27928, 512, 2, 5813, 3.99, '2007-04-10 14:03:03.996577'); -INSERT INTO dvds.payment VALUES (27929, 512, 1, 7219, 2.99, '2007-04-27 08:04:02.996577'); -INSERT INTO dvds.payment VALUES (27930, 512, 1, 7507, 0.99, '2007-04-27 19:00:14.996577'); -INSERT INTO dvds.payment VALUES (27931, 512, 1, 7715, 6.99, '2007-04-28 03:01:04.996577'); -INSERT INTO dvds.payment VALUES (27932, 512, 2, 8868, 4.99, '2007-04-29 22:30:52.996577'); -INSERT INTO dvds.payment VALUES (27933, 512, 1, 9055, 2.99, '2007-04-30 05:41:33.996577'); -INSERT INTO dvds.payment VALUES (27934, 513, 2, 3872, 0.99, '2007-04-06 16:28:45.996577'); -INSERT INTO dvds.payment VALUES (27935, 513, 2, 4055, 2.99, '2007-04-07 02:17:39.996577'); -INSERT INTO dvds.payment VALUES (27936, 513, 2, 4178, 4.99, '2007-04-07 08:42:57.996577'); -INSERT INTO dvds.payment VALUES (27937, 513, 2, 4220, 4.99, '2007-04-07 10:41:02.996577'); -INSERT INTO dvds.payment VALUES (27938, 513, 1, 5741, 7.99, '2007-04-10 10:24:06.996577'); -INSERT INTO dvds.payment VALUES (27939, 513, 1, 6027, 4.99, '2007-04-11 00:54:55.996577'); -INSERT INTO dvds.payment VALUES (27940, 513, 1, 7655, 0.99, '2007-04-28 00:29:37.996577'); -INSERT INTO dvds.payment VALUES (27941, 513, 2, 8320, 4.99, '2007-04-29 02:18:24.996577'); -INSERT INTO dvds.payment VALUES (27942, 513, 1, 8350, 4.99, '2007-04-29 03:19:05.996577'); -INSERT INTO dvds.payment VALUES (27943, 513, 2, 8683, 9.99, '2007-04-29 14:44:09.996577'); -INSERT INTO dvds.payment VALUES (27944, 513, 1, 8798, 5.99, '2007-04-29 19:44:04.996577'); -INSERT INTO dvds.payment VALUES (27945, 513, 2, 9862, 2.99, '2007-04-30 11:33:29.996577'); -INSERT INTO dvds.payment VALUES (27946, 513, 1, 10012, 3.99, '2007-04-30 16:34:32.996577'); -INSERT INTO dvds.payment VALUES (27947, 514, 2, 3668, 5.99, '2007-04-06 07:05:14.996577'); -INSERT INTO dvds.payment VALUES (27948, 514, 2, 3860, 2.99, '2007-04-06 15:48:50.996577'); -INSERT INTO dvds.payment VALUES (27949, 514, 1, 7791, 4.99, '2007-04-28 05:51:17.996577'); -INSERT INTO dvds.payment VALUES (27950, 514, 1, 9038, 3.99, '2007-04-30 04:52:01.996577'); -INSERT INTO dvds.payment VALUES (27951, 515, 2, 3782, 0.99, '2007-04-06 12:25:29.996577'); -INSERT INTO dvds.payment VALUES (27952, 515, 2, 4111, 6.99, '2007-04-07 05:16:22.996577'); -INSERT INTO dvds.payment VALUES (27953, 515, 2, 5216, 0.99, '2007-04-09 10:23:24.996577'); -INSERT INTO dvds.payment VALUES (27954, 515, 2, 5546, 2.99, '2007-04-10 01:19:03.996577'); -INSERT INTO dvds.payment VALUES (27955, 515, 2, 5697, 4.99, '2007-04-10 08:13:10.996577'); -INSERT INTO dvds.payment VALUES (27956, 515, 2, 7429, 3.99, '2007-04-27 15:53:16.996577'); -INSERT INTO dvds.payment VALUES (27957, 515, 1, 8706, 4.99, '2007-04-29 15:47:41.996577'); -INSERT INTO dvds.payment VALUES (27958, 515, 1, 10159, 4.99, '2007-04-30 21:22:56.996577'); -INSERT INTO dvds.payment VALUES (27959, 516, 2, 5780, 3.99, '2007-04-10 12:14:49.996577'); -INSERT INTO dvds.payment VALUES (27960, 516, 2, 6677, 6.99, '2007-04-12 10:26:40.996577'); -INSERT INTO dvds.payment VALUES (27961, 516, 1, 6858, 6.99, '2007-04-12 18:22:17.996577'); -INSERT INTO dvds.payment VALUES (27962, 516, 1, 7628, 4.99, '2007-04-27 23:26:30.996577'); -INSERT INTO dvds.payment VALUES (27963, 516, 1, 7882, 4.99, '2007-04-28 09:02:08.996577'); -INSERT INTO dvds.payment VALUES (27964, 516, 2, 8396, 4.99, '2007-04-29 04:35:26.996577'); -INSERT INTO dvds.payment VALUES (27965, 516, 2, 8534, 5.99, '2007-04-29 08:58:39.996577'); -INSERT INTO dvds.payment VALUES (27966, 516, 2, 8585, 2.99, '2007-04-29 10:42:44.996577'); -INSERT INTO dvds.payment VALUES (27967, 516, 2, 9243, 4.99, '2007-04-30 12:34:53.996577'); -INSERT INTO dvds.payment VALUES (27968, 517, 2, 4094, 2.99, '2007-04-07 04:28:47.996577'); -INSERT INTO dvds.payment VALUES (27969, 517, 1, 4109, 4.99, '2007-04-07 05:08:09.996577'); -INSERT INTO dvds.payment VALUES (27970, 517, 1, 4369, 4.99, '2007-04-07 18:30:04.996577'); -INSERT INTO dvds.payment VALUES (27971, 517, 2, 4374, 4.99, '2007-04-07 18:42:24.996577'); -INSERT INTO dvds.payment VALUES (27972, 517, 2, 4934, 0.99, '2007-04-08 20:47:08.996577'); -INSERT INTO dvds.payment VALUES (27973, 517, 1, 4993, 2.99, '2007-04-08 23:18:13.996577'); -INSERT INTO dvds.payment VALUES (27974, 517, 1, 5206, 7.99, '2007-04-09 09:39:27.996577'); -INSERT INTO dvds.payment VALUES (27975, 517, 2, 5974, 5.99, '2007-04-10 22:39:03.996577'); -INSERT INTO dvds.payment VALUES (27976, 517, 2, 6594, 4.99, '2007-04-12 05:54:09.996577'); -INSERT INTO dvds.payment VALUES (27977, 517, 2, 6903, 0.99, '2007-04-12 20:26:41.996577'); -INSERT INTO dvds.payment VALUES (27978, 517, 2, 7988, 3.99, '2007-04-28 13:05:44.996577'); -INSERT INTO dvds.payment VALUES (27979, 517, 1, 10063, 4.99, '2007-04-30 17:53:39.996577'); -INSERT INTO dvds.payment VALUES (27980, 518, 1, 3652, 0.99, '2007-04-06 06:12:56.996577'); -INSERT INTO dvds.payment VALUES (27981, 518, 2, 4029, 7.99, '2007-04-07 00:48:10.996577'); -INSERT INTO dvds.payment VALUES (27982, 518, 2, 4661, 4.99, '2007-04-08 08:23:32.996577'); -INSERT INTO dvds.payment VALUES (27983, 518, 2, 4948, 6.99, '2007-04-08 21:22:47.996577'); -INSERT INTO dvds.payment VALUES (27984, 518, 1, 6652, 2.99, '2007-04-12 09:28:04.996577'); -INSERT INTO dvds.payment VALUES (27985, 518, 1, 6957, 2.99, '2007-04-26 22:28:26.996577'); -INSERT INTO dvds.payment VALUES (27986, 518, 2, 7038, 3.99, '2007-04-27 01:35:55.996577'); -INSERT INTO dvds.payment VALUES (27987, 518, 2, 7154, 4.99, '2007-04-27 05:44:43.996577'); -INSERT INTO dvds.payment VALUES (27988, 518, 2, 7382, 2.99, '2007-04-27 14:11:41.996577'); -INSERT INTO dvds.payment VALUES (27989, 518, 1, 7657, 2.99, '2007-04-28 00:37:26.996577'); -INSERT INTO dvds.payment VALUES (27990, 518, 2, 7839, 6.99, '2007-04-28 07:29:39.996577'); -INSERT INTO dvds.payment VALUES (27991, 518, 1, 8107, 3.99, '2007-04-28 17:31:42.996577'); -INSERT INTO dvds.payment VALUES (27992, 518, 1, 8397, 2.99, '2007-04-29 04:38:01.996577'); -INSERT INTO dvds.payment VALUES (27993, 519, 2, 4564, 0.99, '2007-04-08 03:38:04.996577'); -INSERT INTO dvds.payment VALUES (27994, 519, 2, 4773, 2.99, '2007-04-08 14:10:05.996577'); -INSERT INTO dvds.payment VALUES (27995, 519, 2, 5236, 0.99, '2007-04-09 11:24:55.996577'); -INSERT INTO dvds.payment VALUES (27996, 519, 2, 5547, 5.99, '2007-04-10 01:21:13.996577'); -INSERT INTO dvds.payment VALUES (27997, 519, 2, 6063, 0.99, '2007-04-11 02:45:17.996577'); -INSERT INTO dvds.payment VALUES (27998, 519, 1, 6599, 3.99, '2007-04-12 06:09:40.996577'); -INSERT INTO dvds.payment VALUES (27999, 519, 1, 9417, 6.99, '2007-04-30 19:23:21.996577'); -INSERT INTO dvds.payment VALUES (28000, 519, 2, 9441, 4.99, '2007-04-30 20:11:54.996577'); -INSERT INTO dvds.payment VALUES (28001, 519, 2, 9534, 7.99, '2007-04-30 23:46:53.996577'); -INSERT INTO dvds.payment VALUES (28002, 519, 2, 9645, 0.99, '2007-04-30 04:11:15.996577'); -INSERT INTO dvds.payment VALUES (28003, 519, 2, 9886, 7.99, '2007-04-30 12:28:39.996577'); -INSERT INTO dvds.payment VALUES (28004, 519, 1, 9905, 0.99, '2007-04-30 13:05:29.996577'); -INSERT INTO dvds.payment VALUES (28005, 519, 1, 10097, 5.99, '2007-04-30 19:08:04.996577'); -INSERT INTO dvds.payment VALUES (28006, 520, 2, 3482, 4.99, '2007-04-05 21:41:48.996577'); -INSERT INTO dvds.payment VALUES (28007, 520, 1, 3499, 7.99, '2007-04-05 22:32:46.996577'); -INSERT INTO dvds.payment VALUES (28008, 520, 2, 4346, 2.99, '2007-04-07 17:27:11.996577'); -INSERT INTO dvds.payment VALUES (28009, 520, 2, 5799, 4.99, '2007-04-10 13:22:01.996577'); -INSERT INTO dvds.payment VALUES (28010, 520, 1, 5802, 10.99, '2007-04-10 13:30:43.996577'); -INSERT INTO dvds.payment VALUES (28011, 520, 1, 5853, 3.99, '2007-04-10 16:13:39.996577'); -INSERT INTO dvds.payment VALUES (28012, 520, 1, 6029, 2.99, '2007-04-11 01:05:12.996577'); -INSERT INTO dvds.payment VALUES (28013, 520, 2, 7198, 5.99, '2007-04-27 07:18:33.996577'); -INSERT INTO dvds.payment VALUES (28014, 520, 1, 7720, 4.99, '2007-04-28 03:10:10.996577'); -INSERT INTO dvds.payment VALUES (28015, 520, 1, 7936, 0.99, '2007-04-28 11:01:47.996577'); -INSERT INTO dvds.payment VALUES (28016, 520, 1, 8294, 2.99, '2007-04-29 01:01:07.996577'); -INSERT INTO dvds.payment VALUES (28017, 520, 2, 8435, 2.99, '2007-04-29 05:48:42.996577'); -INSERT INTO dvds.payment VALUES (28018, 520, 1, 9803, 2.99, '2007-04-30 09:34:28.996577'); -INSERT INTO dvds.payment VALUES (28019, 520, 1, 10072, 0.99, '2007-04-30 18:19:03.996577'); -INSERT INTO dvds.payment VALUES (28020, 521, 2, 4284, 0.99, '2007-04-07 14:00:23.996577'); -INSERT INTO dvds.payment VALUES (28021, 521, 2, 4439, 2.99, '2007-04-07 21:25:56.996577'); -INSERT INTO dvds.payment VALUES (28022, 521, 1, 5276, 2.99, '2007-04-09 13:03:39.996577'); -INSERT INTO dvds.payment VALUES (28023, 521, 2, 5458, 4.99, '2007-04-09 21:04:15.996577'); -INSERT INTO dvds.payment VALUES (28024, 521, 2, 5580, 6.99, '2007-04-10 02:34:15.996577'); -INSERT INTO dvds.payment VALUES (28025, 521, 2, 5686, 0.99, '2007-04-10 07:34:29.996577'); -INSERT INTO dvds.payment VALUES (28026, 521, 1, 7478, 1.99, '2007-04-27 17:44:28.996577'); -INSERT INTO dvds.payment VALUES (28027, 521, 1, 9556, 7.99, '2007-04-30 00:41:56.996577'); -INSERT INTO dvds.payment VALUES (28028, 521, 2, 9937, 1.99, '2007-04-30 13:56:36.996577'); -INSERT INTO dvds.payment VALUES (28029, 522, 1, 3594, 0.99, '2007-04-06 03:11:13.996577'); -INSERT INTO dvds.payment VALUES (28030, 522, 2, 4078, 4.99, '2007-04-07 03:33:31.996577'); -INSERT INTO dvds.payment VALUES (28031, 522, 2, 4563, 9.99, '2007-04-08 03:37:21.996577'); -INSERT INTO dvds.payment VALUES (28032, 522, 2, 4701, 4.99, '2007-04-08 10:07:14.996577'); -INSERT INTO dvds.payment VALUES (28033, 522, 2, 5271, 6.99, '2007-04-09 12:53:27.996577'); -INSERT INTO dvds.payment VALUES (28034, 522, 2, 5514, 6.99, '2007-04-09 23:38:08.996577'); -INSERT INTO dvds.payment VALUES (28035, 522, 2, 5532, 4.99, '2007-04-10 00:45:57.996577'); -INSERT INTO dvds.payment VALUES (28036, 522, 2, 5936, 0.99, '2007-04-10 20:42:56.996577'); -INSERT INTO dvds.payment VALUES (28037, 522, 2, 7262, 4.99, '2007-04-27 09:44:02.996577'); -INSERT INTO dvds.payment VALUES (28038, 522, 1, 7955, 2.99, '2007-04-28 12:00:02.996577'); -INSERT INTO dvds.payment VALUES (28039, 522, 2, 8181, 4.99, '2007-04-28 20:47:04.996577'); -INSERT INTO dvds.payment VALUES (28040, 522, 1, 8642, 6.99, '2007-04-29 13:06:43.996577'); -INSERT INTO dvds.payment VALUES (28041, 522, 1, 8966, 2.99, '2007-04-30 02:22:38.996577'); -INSERT INTO dvds.payment VALUES (28042, 522, 1, 9047, 7.99, '2007-04-30 05:24:59.996577'); -INSERT INTO dvds.payment VALUES (28043, 522, 2, 9227, 7.99, '2007-04-30 12:04:39.996577'); -INSERT INTO dvds.payment VALUES (28044, 522, 1, 9335, 4.99, '2007-04-30 16:29:19.996577'); -INSERT INTO dvds.payment VALUES (28045, 522, 1, 9412, 5.99, '2007-04-30 19:12:36.996577'); -INSERT INTO dvds.payment VALUES (28046, 522, 2, 9533, 5.99, '2007-04-30 23:46:36.996577'); -INSERT INTO dvds.payment VALUES (28047, 522, 2, 10223, 0.99, '2007-04-30 23:51:41.996577'); -INSERT INTO dvds.payment VALUES (28048, 523, 1, 4605, 4.99, '2007-04-08 05:28:40.996577'); -INSERT INTO dvds.payment VALUES (28049, 523, 2, 5155, 2.99, '2007-04-09 07:15:20.996577'); -INSERT INTO dvds.payment VALUES (28050, 523, 1, 5287, 6.99, '2007-04-09 13:40:20.996577'); -INSERT INTO dvds.payment VALUES (28051, 523, 2, 5932, 2.99, '2007-04-10 20:33:41.996577'); -INSERT INTO dvds.payment VALUES (28052, 523, 2, 6675, 4.99, '2007-04-12 10:21:32.996577'); -INSERT INTO dvds.payment VALUES (28053, 523, 2, 7642, 1.99, '2007-04-27 23:45:17.996577'); -INSERT INTO dvds.payment VALUES (28054, 523, 2, 8141, 0.99, '2007-04-28 18:49:45.996577'); -INSERT INTO dvds.payment VALUES (28055, 523, 1, 8372, 5.99, '2007-04-29 03:46:34.996577'); -INSERT INTO dvds.payment VALUES (28056, 523, 1, 9071, 2.99, '2007-04-30 06:09:24.996577'); -INSERT INTO dvds.payment VALUES (28057, 523, 2, 9667, 6.99, '2007-04-30 04:52:18.996577'); -INSERT INTO dvds.payment VALUES (28058, 524, 1, 4366, 5.99, '2007-04-07 18:17:02.996577'); -INSERT INTO dvds.payment VALUES (28059, 524, 2, 5037, 4.99, '2007-04-09 01:27:36.996577'); -INSERT INTO dvds.payment VALUES (28060, 524, 2, 6161, 4.99, '2007-04-11 08:40:20.996577'); -INSERT INTO dvds.payment VALUES (28061, 524, 1, 6240, 6.99, '2007-04-11 13:01:07.996577'); -INSERT INTO dvds.payment VALUES (28062, 524, 2, 6745, 4.99, '2007-04-12 12:59:17.996577'); -INSERT INTO dvds.payment VALUES (28063, 524, 2, 7014, 8.99, '2007-04-27 00:43:06.996577'); -INSERT INTO dvds.payment VALUES (28064, 524, 1, 7040, 4.99, '2007-04-27 01:45:45.996577'); -INSERT INTO dvds.payment VALUES (28065, 524, 1, 8507, 6.99, '2007-04-29 07:58:10.996577'); -INSERT INTO dvds.payment VALUES (28066, 525, 1, 3993, 6.99, '2007-04-06 22:05:32.996577'); -INSERT INTO dvds.payment VALUES (28067, 525, 1, 5841, 2.99, '2007-04-10 15:39:57.996577'); -INSERT INTO dvds.payment VALUES (28068, 525, 2, 6098, 7.99, '2007-04-11 04:51:54.996577'); -INSERT INTO dvds.payment VALUES (28069, 525, 2, 6388, 6.99, '2007-04-11 20:45:42.996577'); -INSERT INTO dvds.payment VALUES (28070, 525, 1, 6689, 1.99, '2007-04-12 10:50:39.996577'); -INSERT INTO dvds.payment VALUES (28071, 525, 2, 7337, 4.99, '2007-04-27 12:40:30.996577'); -INSERT INTO dvds.payment VALUES (28072, 525, 2, 7591, 4.99, '2007-04-27 21:54:20.996577'); -INSERT INTO dvds.payment VALUES (28073, 525, 1, 8007, 0.99, '2007-04-28 13:50:53.996577'); -INSERT INTO dvds.payment VALUES (28074, 525, 1, 8960, 4.99, '2007-04-30 02:04:57.996577'); -INSERT INTO dvds.payment VALUES (28075, 525, 2, 9507, 5.99, '2007-04-30 22:50:55.996577'); -INSERT INTO dvds.payment VALUES (28076, 525, 1, 9702, 0.99, '2007-04-30 06:02:33.996577'); -INSERT INTO dvds.payment VALUES (28077, 526, 1, 3619, 1.99, '2007-04-06 04:28:10.996577'); -INSERT INTO dvds.payment VALUES (28078, 526, 2, 3905, 5.99, '2007-04-06 18:02:00.996577'); -INSERT INTO dvds.payment VALUES (28079, 526, 1, 4423, 6.99, '2007-04-07 20:39:54.996577'); -INSERT INTO dvds.payment VALUES (28080, 526, 2, 5056, 2.99, '2007-04-09 02:42:11.996577'); -INSERT INTO dvds.payment VALUES (28081, 526, 2, 5121, 3.99, '2007-04-09 05:46:57.996577'); -INSERT INTO dvds.payment VALUES (28082, 526, 1, 6316, 7.99, '2007-04-11 17:13:18.996577'); -INSERT INTO dvds.payment VALUES (28083, 526, 1, 6404, 4.99, '2007-04-11 21:18:16.996577'); -INSERT INTO dvds.payment VALUES (28084, 526, 2, 6650, 2.99, '2007-04-12 09:25:36.996577'); -INSERT INTO dvds.payment VALUES (28085, 526, 1, 6671, 3.99, '2007-04-12 10:17:14.996577'); -INSERT INTO dvds.payment VALUES (28086, 526, 2, 7270, 7.99, '2007-04-27 09:57:28.996577'); -INSERT INTO dvds.payment VALUES (28087, 526, 2, 7343, 0.99, '2007-04-27 12:55:39.996577'); -INSERT INTO dvds.payment VALUES (28088, 526, 2, 7399, 1.99, '2007-04-27 14:44:28.996577'); -INSERT INTO dvds.payment VALUES (28089, 526, 2, 7543, 5.99, '2007-04-27 20:12:54.996577'); -INSERT INTO dvds.payment VALUES (28090, 526, 2, 7883, 2.99, '2007-04-28 09:05:46.996577'); -INSERT INTO dvds.payment VALUES (28091, 526, 1, 8053, 4.99, '2007-04-28 15:28:07.996577'); -INSERT INTO dvds.payment VALUES (28092, 526, 1, 8232, 4.99, '2007-04-28 22:43:03.996577'); -INSERT INTO dvds.payment VALUES (28093, 526, 1, 8441, 2.99, '2007-04-29 06:01:31.996577'); -INSERT INTO dvds.payment VALUES (28094, 526, 2, 9577, 6.99, '2007-04-30 01:21:59.996577'); -INSERT INTO dvds.payment VALUES (28095, 526, 2, 10020, 4.99, '2007-04-30 16:49:34.996577'); -INSERT INTO dvds.payment VALUES (28096, 526, 2, 10199, 2.99, '2007-04-30 23:07:21.996577'); -INSERT INTO dvds.payment VALUES (28097, 527, 1, 4888, 0.99, '2007-04-08 18:32:53.996577'); -INSERT INTO dvds.payment VALUES (28098, 527, 1, 5365, 0.99, '2007-04-09 16:55:26.996577'); -INSERT INTO dvds.payment VALUES (28099, 527, 2, 6003, 3.99, '2007-04-10 23:56:59.996577'); -INSERT INTO dvds.payment VALUES (28100, 527, 2, 6011, 4.99, '2007-04-11 00:23:14.996577'); -INSERT INTO dvds.payment VALUES (28101, 527, 1, 6050, 2.99, '2007-04-11 02:02:55.996577'); -INSERT INTO dvds.payment VALUES (28102, 527, 2, 6975, 1.99, '2007-04-26 23:08:20.996577'); -INSERT INTO dvds.payment VALUES (28103, 527, 1, 7506, 8.99, '2007-04-27 18:57:00.996577'); -INSERT INTO dvds.payment VALUES (28104, 527, 1, 8854, 0.99, '2007-04-29 22:08:33.996577'); -INSERT INTO dvds.payment VALUES (28105, 527, 2, 9750, 0.99, '2007-04-30 07:48:12.996577'); -INSERT INTO dvds.payment VALUES (28106, 528, 2, 3654, 4.99, '2007-04-06 06:13:57.996577'); -INSERT INTO dvds.payment VALUES (28107, 528, 1, 3664, 0.99, '2007-04-06 06:44:23.996577'); -INSERT INTO dvds.payment VALUES (28108, 528, 2, 4050, 9.99, '2007-04-07 02:03:59.996577'); -INSERT INTO dvds.payment VALUES (28109, 528, 1, 4593, 5.99, '2007-04-08 05:06:38.996577'); -INSERT INTO dvds.payment VALUES (28110, 528, 2, 5215, 3.99, '2007-04-09 10:16:24.996577'); -INSERT INTO dvds.payment VALUES (28111, 528, 2, 6561, 0.99, '2007-04-12 03:52:28.996577'); -INSERT INTO dvds.payment VALUES (28112, 528, 1, 7569, 7.99, '2007-04-27 21:07:19.996577'); -INSERT INTO dvds.payment VALUES (28113, 528, 2, 8112, 4.99, '2007-04-28 17:39:33.996577'); -INSERT INTO dvds.payment VALUES (28114, 528, 1, 8727, 3.99, '2007-04-29 16:38:23.996577'); -INSERT INTO dvds.payment VALUES (28115, 528, 2, 9488, 8.99, '2007-04-30 22:11:08.996577'); -INSERT INTO dvds.payment VALUES (28116, 528, 1, 10084, 3.99, '2007-04-30 18:39:55.996577'); -INSERT INTO dvds.payment VALUES (28117, 529, 2, 4045, 0.99, '2007-04-07 01:54:40.996577'); -INSERT INTO dvds.payment VALUES (28118, 529, 2, 4254, 0.99, '2007-04-07 12:42:18.996577'); -INSERT INTO dvds.payment VALUES (28119, 529, 2, 4444, 5.99, '2007-04-07 21:36:10.996577'); -INSERT INTO dvds.payment VALUES (28120, 529, 1, 4553, 0.99, '2007-04-08 03:12:07.996577'); -INSERT INTO dvds.payment VALUES (28121, 529, 1, 5993, 4.99, '2007-04-10 23:35:07.996577'); -INSERT INTO dvds.payment VALUES (28122, 529, 2, 6538, 6.99, '2007-04-12 03:18:52.996577'); -INSERT INTO dvds.payment VALUES (28123, 529, 2, 6541, 5.99, '2007-04-12 03:22:07.996577'); -INSERT INTO dvds.payment VALUES (28124, 529, 1, 6908, 7.99, '2007-04-12 20:37:12.996577'); -INSERT INTO dvds.payment VALUES (28125, 529, 1, 7128, 3.99, '2007-04-27 04:43:02.996577'); -INSERT INTO dvds.payment VALUES (28126, 529, 2, 8708, 2.99, '2007-04-29 15:52:39.996577'); -INSERT INTO dvds.payment VALUES (28127, 529, 1, 8979, 5.99, '2007-04-30 02:48:51.996577'); -INSERT INTO dvds.payment VALUES (28128, 529, 2, 9310, 4.99, '2007-04-30 15:25:35.996577'); -INSERT INTO dvds.payment VALUES (28129, 529, 2, 9375, 0.99, '2007-04-30 17:38:43.996577'); -INSERT INTO dvds.payment VALUES (28130, 530, 2, 3669, 2.99, '2007-04-06 07:06:55.996577'); -INSERT INTO dvds.payment VALUES (28131, 530, 2, 3887, 4.99, '2007-04-06 17:15:00.996577'); -INSERT INTO dvds.payment VALUES (28132, 530, 2, 5663, 0.99, '2007-04-10 06:29:59.996577'); -INSERT INTO dvds.payment VALUES (28133, 530, 1, 7031, 3.99, '2007-04-27 01:30:33.996577'); -INSERT INTO dvds.payment VALUES (28134, 530, 2, 7075, 1.99, '2007-04-27 02:40:06.996577'); -INSERT INTO dvds.payment VALUES (28135, 530, 1, 7218, 4.99, '2007-04-27 08:02:50.996577'); -INSERT INTO dvds.payment VALUES (28136, 530, 2, 8208, 4.99, '2007-04-28 21:55:01.996577'); -INSERT INTO dvds.payment VALUES (28137, 530, 1, 8736, 0.99, '2007-04-29 16:59:41.996577'); -INSERT INTO dvds.payment VALUES (28138, 530, 1, 9914, 4.99, '2007-04-30 13:19:45.996577'); -INSERT INTO dvds.payment VALUES (28139, 530, 2, 10211, 3.99, '2007-04-30 23:29:42.996577'); -INSERT INTO dvds.payment VALUES (28140, 531, 2, 3921, 5.99, '2007-04-06 18:58:14.996577'); -INSERT INTO dvds.payment VALUES (28141, 531, 1, 5587, 5.99, '2007-04-10 02:45:51.996577'); -INSERT INTO dvds.payment VALUES (28142, 531, 2, 5850, 0.99, '2007-04-10 16:04:53.996577'); -INSERT INTO dvds.payment VALUES (28143, 531, 2, 5904, 4.99, '2007-04-10 19:08:10.996577'); -INSERT INTO dvds.payment VALUES (28144, 531, 1, 6756, 4.99, '2007-04-12 13:36:54.996577'); -INSERT INTO dvds.payment VALUES (28145, 531, 1, 6876, 4.99, '2007-04-12 19:01:16.996577'); -INSERT INTO dvds.payment VALUES (28146, 531, 2, 7204, 2.99, '2007-04-27 07:30:57.996577'); -INSERT INTO dvds.payment VALUES (28147, 531, 1, 7391, 6.99, '2007-04-27 14:28:26.996577'); -INSERT INTO dvds.payment VALUES (28148, 531, 2, 7444, 2.99, '2007-04-27 16:17:42.996577'); -INSERT INTO dvds.payment VALUES (28149, 531, 2, 7753, 6.99, '2007-04-28 04:37:45.996577'); -INSERT INTO dvds.payment VALUES (28150, 531, 2, 8359, 5.99, '2007-04-29 03:30:38.996577'); -INSERT INTO dvds.payment VALUES (28151, 531, 2, 8860, 4.99, '2007-04-29 22:14:23.996577'); -INSERT INTO dvds.payment VALUES (28152, 531, 2, 8943, 0.99, '2007-04-30 01:35:14.996577'); -INSERT INTO dvds.payment VALUES (28153, 531, 2, 9107, 4.99, '2007-04-30 07:21:11.996577'); -INSERT INTO dvds.payment VALUES (28154, 532, 1, 4336, 2.99, '2007-04-07 17:03:02.996577'); -INSERT INTO dvds.payment VALUES (28155, 532, 2, 4962, 4.99, '2007-04-08 22:04:39.996577'); -INSERT INTO dvds.payment VALUES (28156, 532, 2, 5190, 2.99, '2007-04-09 08:53:50.996577'); -INSERT INTO dvds.payment VALUES (28157, 532, 1, 5253, 7.99, '2007-04-09 12:09:43.996577'); -INSERT INTO dvds.payment VALUES (28158, 532, 2, 5278, 4.99, '2007-04-09 13:12:49.996577'); -INSERT INTO dvds.payment VALUES (28159, 532, 2, 5805, 8.99, '2007-04-10 13:37:07.996577'); -INSERT INTO dvds.payment VALUES (28160, 532, 1, 5887, 2.99, '2007-04-10 18:14:13.996577'); -INSERT INTO dvds.payment VALUES (28161, 532, 2, 6345, 7.99, '2007-04-11 18:33:44.996577'); -INSERT INTO dvds.payment VALUES (28162, 532, 2, 6598, 4.99, '2007-04-12 06:06:51.996577'); -INSERT INTO dvds.payment VALUES (28163, 532, 1, 6730, 3.99, '2007-04-12 12:26:51.996577'); -INSERT INTO dvds.payment VALUES (28164, 532, 1, 7192, 4.99, '2007-04-27 07:05:21.996577'); -INSERT INTO dvds.payment VALUES (28165, 532, 2, 7572, 2.99, '2007-04-27 21:12:55.996577'); -INSERT INTO dvds.payment VALUES (28166, 532, 1, 8273, 5.99, '2007-04-29 00:01:42.996577'); -INSERT INTO dvds.payment VALUES (28167, 532, 1, 9843, 2.99, '2007-04-30 10:53:54.996577'); -INSERT INTO dvds.payment VALUES (28168, 533, 1, 4112, 8.99, '2007-04-07 05:17:35.996577'); -INSERT INTO dvds.payment VALUES (28169, 533, 1, 4788, 4.99, '2007-04-08 14:46:01.996577'); -INSERT INTO dvds.payment VALUES (28170, 533, 2, 6781, 2.99, '2007-04-12 14:50:13.996577'); -INSERT INTO dvds.payment VALUES (28171, 533, 2, 6834, 0.99, '2007-04-12 17:22:03.996577'); -INSERT INTO dvds.payment VALUES (28172, 533, 2, 6837, 9.99, '2007-04-12 17:28:11.996577'); -INSERT INTO dvds.payment VALUES (28173, 533, 2, 7555, 4.99, '2007-04-27 20:45:31.996577'); -INSERT INTO dvds.payment VALUES (28174, 533, 1, 8093, 8.99, '2007-04-28 16:57:42.996577'); -INSERT INTO dvds.payment VALUES (28175, 533, 2, 8104, 2.99, '2007-04-28 17:28:02.996577'); -INSERT INTO dvds.payment VALUES (28176, 533, 2, 8250, 2.99, '2007-04-28 23:17:41.996577'); -INSERT INTO dvds.payment VALUES (28177, 533, 1, 8471, 2.99, '2007-04-29 07:00:37.996577'); -INSERT INTO dvds.payment VALUES (28178, 533, 1, 8676, 1.99, '2007-04-29 14:27:32.996577'); -INSERT INTO dvds.payment VALUES (28179, 533, 2, 8786, 1.99, '2007-04-29 19:08:15.996577'); -INSERT INTO dvds.payment VALUES (28180, 533, 2, 10090, 3.99, '2007-04-30 18:50:27.996577'); -INSERT INTO dvds.payment VALUES (28181, 534, 1, 3735, 2.99, '2007-04-06 10:10:30.996577'); -INSERT INTO dvds.payment VALUES (28182, 534, 2, 4998, 4.99, '2007-04-08 23:35:47.996577'); -INSERT INTO dvds.payment VALUES (28183, 534, 2, 7113, 2.99, '2007-04-27 04:09:46.996577'); -INSERT INTO dvds.payment VALUES (28184, 534, 1, 7662, 2.99, '2007-04-28 00:44:34.996577'); -INSERT INTO dvds.payment VALUES (28185, 534, 2, 8633, 0.99, '2007-04-29 12:48:19.996577'); -INSERT INTO dvds.payment VALUES (28186, 534, 1, 9456, 5.99, '2007-04-30 20:50:42.996577'); -INSERT INTO dvds.payment VALUES (28187, 534, 2, 9464, 4.99, '2007-04-30 20:59:57.996577'); -INSERT INTO dvds.payment VALUES (28188, 535, 1, 4331, 4.99, '2007-04-07 16:50:56.996577'); -INSERT INTO dvds.payment VALUES (28189, 535, 1, 4718, 6.99, '2007-04-08 11:00:34.996577'); -INSERT INTO dvds.payment VALUES (28190, 535, 1, 4743, 2.99, '2007-04-08 12:11:02.996577'); -INSERT INTO dvds.payment VALUES (28191, 535, 2, 4914, 6.99, '2007-04-08 19:59:19.996577'); -INSERT INTO dvds.payment VALUES (28192, 535, 1, 5588, 0.99, '2007-04-10 02:49:36.996577'); -INSERT INTO dvds.payment VALUES (28193, 535, 2, 5890, 8.99, '2007-04-10 18:28:51.996577'); -INSERT INTO dvds.payment VALUES (28194, 535, 1, 6504, 2.99, '2007-04-12 01:47:40.996577'); -INSERT INTO dvds.payment VALUES (28195, 535, 1, 8395, 2.99, '2007-04-29 04:31:56.996577'); -INSERT INTO dvds.payment VALUES (28196, 535, 1, 8645, 4.99, '2007-04-29 13:16:11.996577'); -INSERT INTO dvds.payment VALUES (28197, 535, 2, 9440, 0.99, '2007-04-30 20:08:41.996577'); -INSERT INTO dvds.payment VALUES (28198, 535, 1, 9524, 4.99, '2007-04-30 23:29:32.996577'); -INSERT INTO dvds.payment VALUES (28199, 536, 1, 3483, 4.99, '2007-04-05 21:42:17.996577'); -INSERT INTO dvds.payment VALUES (28200, 536, 1, 3514, 0.99, '2007-04-05 23:15:20.996577'); -INSERT INTO dvds.payment VALUES (28201, 536, 1, 4448, 2.99, '2007-04-07 21:45:38.996577'); -INSERT INTO dvds.payment VALUES (28202, 536, 2, 5196, 0.99, '2007-04-09 09:12:00.996577'); -INSERT INTO dvds.payment VALUES (28203, 536, 1, 6400, 5.99, '2007-04-11 21:12:10.996577'); -INSERT INTO dvds.payment VALUES (28204, 536, 1, 7065, 4.99, '2007-04-27 02:22:09.996577'); -INSERT INTO dvds.payment VALUES (28205, 536, 2, 8535, 4.99, '2007-04-29 09:00:59.996577'); -INSERT INTO dvds.payment VALUES (28206, 536, 1, 8679, 4.99, '2007-04-29 14:36:13.996577'); -INSERT INTO dvds.payment VALUES (28207, 536, 1, 8958, 2.99, '2007-04-30 02:02:52.996577'); -INSERT INTO dvds.payment VALUES (28208, 536, 1, 9411, 8.99, '2007-04-30 19:06:48.996577'); -INSERT INTO dvds.payment VALUES (28209, 536, 1, 9727, 4.99, '2007-04-30 07:07:39.996577'); -INSERT INTO dvds.payment VALUES (28210, 536, 2, 10019, 3.99, '2007-04-30 16:49:22.996577'); -INSERT INTO dvds.payment VALUES (28211, 537, 1, 3555, 0.99, '2007-04-06 01:14:01.996577'); -INSERT INTO dvds.payment VALUES (28212, 537, 2, 3853, 0.99, '2007-04-06 15:27:46.996577'); -INSERT INTO dvds.payment VALUES (28213, 537, 1, 5630, 2.99, '2007-04-10 04:36:40.996577'); -INSERT INTO dvds.payment VALUES (28214, 537, 2, 5877, 5.99, '2007-04-10 17:37:17.996577'); -INSERT INTO dvds.payment VALUES (28215, 537, 2, 6310, 2.99, '2007-04-11 16:42:31.996577'); -INSERT INTO dvds.payment VALUES (28216, 537, 1, 6409, 4.99, '2007-04-11 21:34:15.996577'); -INSERT INTO dvds.payment VALUES (28217, 537, 1, 6746, 0.99, '2007-04-12 13:01:27.996577'); -INSERT INTO dvds.payment VALUES (28218, 537, 1, 7179, 2.99, '2007-04-27 06:38:55.996577'); -INSERT INTO dvds.payment VALUES (28219, 537, 2, 7810, 4.99, '2007-04-28 06:29:04.996577'); -INSERT INTO dvds.payment VALUES (28220, 537, 2, 8126, 4.99, '2007-04-28 18:01:07.996577'); -INSERT INTO dvds.payment VALUES (28221, 537, 2, 8256, 4.99, '2007-04-28 23:31:08.996577'); -INSERT INTO dvds.payment VALUES (28222, 537, 1, 9967, 2.99, '2007-04-30 14:59:43.996577'); -INSERT INTO dvds.payment VALUES (28223, 538, 2, 3554, 4.99, '2007-04-06 01:05:36.996577'); -INSERT INTO dvds.payment VALUES (28224, 538, 2, 5135, 8.99, '2007-04-09 06:21:48.996577'); -INSERT INTO dvds.payment VALUES (28225, 538, 1, 5369, 4.99, '2007-04-09 17:10:42.996577'); -INSERT INTO dvds.payment VALUES (28226, 538, 1, 5486, 2.99, '2007-04-09 22:26:10.996577'); -INSERT INTO dvds.payment VALUES (28227, 538, 1, 5898, 2.99, '2007-04-10 18:46:35.996577'); -INSERT INTO dvds.payment VALUES (28228, 538, 2, 6130, 2.99, '2007-04-11 06:48:22.996577'); -INSERT INTO dvds.payment VALUES (28229, 538, 1, 6332, 0.99, '2007-04-11 17:47:32.996577'); -INSERT INTO dvds.payment VALUES (28230, 538, 2, 6936, 0.99, '2007-04-26 21:42:00.996577'); -INSERT INTO dvds.payment VALUES (28231, 538, 1, 7694, 0.99, '2007-04-28 02:07:51.996577'); -INSERT INTO dvds.payment VALUES (28232, 538, 1, 8765, 0.99, '2007-04-29 18:08:34.996577'); -INSERT INTO dvds.payment VALUES (28233, 538, 1, 9307, 0.99, '2007-04-30 15:21:09.996577'); -INSERT INTO dvds.payment VALUES (28234, 538, 1, 9643, 4.99, '2007-04-30 04:04:14.996577'); -INSERT INTO dvds.payment VALUES (28235, 538, 2, 9897, 4.99, '2007-04-30 12:40:23.996577'); -INSERT INTO dvds.payment VALUES (28236, 538, 2, 9939, 8.99, '2007-04-30 13:57:26.996577'); -INSERT INTO dvds.payment VALUES (28237, 539, 1, 4035, 2.99, '2007-04-07 01:13:28.996577'); -INSERT INTO dvds.payment VALUES (28238, 539, 1, 4247, 0.99, '2007-04-07 12:20:20.996577'); -INSERT INTO dvds.payment VALUES (28239, 539, 2, 5086, 4.99, '2007-04-09 04:08:30.996577'); -INSERT INTO dvds.payment VALUES (28240, 539, 2, 5139, 7.99, '2007-04-09 06:30:17.996577'); -INSERT INTO dvds.payment VALUES (28241, 539, 2, 5493, 2.99, '2007-04-09 22:40:10.996577'); -INSERT INTO dvds.payment VALUES (28242, 539, 2, 6874, 5.99, '2007-04-12 18:49:19.996577'); -INSERT INTO dvds.payment VALUES (28243, 539, 1, 7781, 2.99, '2007-04-28 05:41:46.996577'); -INSERT INTO dvds.payment VALUES (28244, 539, 2, 8247, 6.99, '2007-04-28 23:10:04.996577'); -INSERT INTO dvds.payment VALUES (28245, 539, 2, 8761, 5.99, '2007-04-29 17:55:13.996577'); -INSERT INTO dvds.payment VALUES (28246, 539, 2, 9250, 0.99, '2007-04-30 12:46:42.996577'); -INSERT INTO dvds.payment VALUES (28247, 539, 1, 9777, 7.99, '2007-04-30 08:29:32.996577'); -INSERT INTO dvds.payment VALUES (28248, 539, 1, 9796, 4.99, '2007-04-30 09:21:09.996577'); -INSERT INTO dvds.payment VALUES (28249, 540, 2, 4628, 4.99, '2007-04-08 06:54:18.996577'); -INSERT INTO dvds.payment VALUES (28250, 540, 2, 4991, 4.99, '2007-04-08 23:17:29.996577'); -INSERT INTO dvds.payment VALUES (28251, 540, 1, 6103, 2.99, '2007-04-11 05:28:21.996577'); -INSERT INTO dvds.payment VALUES (28252, 540, 2, 6145, 7.99, '2007-04-11 07:35:27.996577'); -INSERT INTO dvds.payment VALUES (28253, 540, 2, 6182, 2.99, '2007-04-11 09:40:04.996577'); -INSERT INTO dvds.payment VALUES (28254, 540, 1, 6748, 6.99, '2007-04-12 13:07:53.996577'); -INSERT INTO dvds.payment VALUES (28255, 540, 1, 6919, 0.99, '2007-04-12 21:00:43.996577'); -INSERT INTO dvds.payment VALUES (28256, 540, 2, 9762, 4.99, '2007-04-30 08:01:20.996577'); -INSERT INTO dvds.payment VALUES (28257, 540, 2, 9815, 2.99, '2007-04-30 09:59:17.996577'); -INSERT INTO dvds.payment VALUES (28258, 541, 1, 5018, 2.99, '2007-04-09 00:29:31.996577'); -INSERT INTO dvds.payment VALUES (28259, 541, 2, 5197, 4.99, '2007-04-09 09:12:20.996577'); -INSERT INTO dvds.payment VALUES (28260, 541, 2, 6468, 7.99, '2007-04-11 23:55:35.996577'); -INSERT INTO dvds.payment VALUES (28261, 541, 2, 6718, 2.99, '2007-04-12 12:06:32.996577'); -INSERT INTO dvds.payment VALUES (28262, 541, 1, 8113, 8.99, '2007-04-28 17:42:26.996577'); -INSERT INTO dvds.payment VALUES (28263, 541, 1, 8322, 4.99, '2007-04-29 02:21:15.996577'); -INSERT INTO dvds.payment VALUES (28264, 541, 2, 9603, 0.99, '2007-04-30 02:12:09.996577'); -INSERT INTO dvds.payment VALUES (28265, 542, 2, 5293, 0.99, '2007-04-09 13:45:49.996577'); -INSERT INTO dvds.payment VALUES (28266, 542, 1, 5477, 6.99, '2007-04-09 22:12:15.996577'); -INSERT INTO dvds.payment VALUES (28267, 542, 2, 6077, 5.99, '2007-04-11 03:34:34.996577'); -INSERT INTO dvds.payment VALUES (28268, 542, 2, 6325, 5.99, '2007-04-11 17:34:27.996577'); -INSERT INTO dvds.payment VALUES (28269, 542, 1, 6887, 9.99, '2007-04-12 19:28:49.996577'); -INSERT INTO dvds.payment VALUES (28270, 542, 2, 7672, 8.99, '2007-04-28 01:18:07.996577'); -INSERT INTO dvds.payment VALUES (28271, 542, 1, 8533, 4.99, '2007-04-29 08:57:42.996577'); -INSERT INTO dvds.payment VALUES (28272, 542, 2, 8544, 3.99, '2007-04-29 09:30:34.996577'); -INSERT INTO dvds.payment VALUES (28273, 543, 1, 4887, 2.99, '2007-04-08 18:27:40.996577'); -INSERT INTO dvds.payment VALUES (28274, 543, 2, 5467, 4.99, '2007-04-09 21:34:13.996577'); -INSERT INTO dvds.payment VALUES (28275, 543, 2, 6013, 4.99, '2007-04-11 00:30:29.996577'); -INSERT INTO dvds.payment VALUES (28276, 543, 2, 7312, 2.99, '2007-04-27 11:31:40.996577'); -INSERT INTO dvds.payment VALUES (28277, 543, 1, 8580, 2.99, '2007-04-29 10:28:53.996577'); -INSERT INTO dvds.payment VALUES (28278, 543, 2, 8845, 4.99, '2007-04-29 21:34:39.996577'); -INSERT INTO dvds.payment VALUES (28279, 543, 1, 9505, 2.99, '2007-04-30 22:39:45.996577'); -INSERT INTO dvds.payment VALUES (28280, 543, 1, 9999, 0.99, '2007-04-30 16:09:19.996577'); -INSERT INTO dvds.payment VALUES (28281, 544, 1, 4395, 0.99, '2007-04-07 19:41:48.996577'); -INSERT INTO dvds.payment VALUES (28282, 544, 1, 4703, 2.99, '2007-04-08 10:13:22.996577'); -INSERT INTO dvds.payment VALUES (28283, 544, 2, 4847, 6.99, '2007-04-08 16:57:39.996577'); -INSERT INTO dvds.payment VALUES (28284, 544, 2, 8566, 2.99, '2007-04-29 10:04:12.996577'); -INSERT INTO dvds.payment VALUES (28285, 544, 1, 8937, 5.99, '2007-04-30 01:21:47.996577'); -INSERT INTO dvds.payment VALUES (28286, 544, 1, 8963, 9.99, '2007-04-30 02:14:52.996577'); -INSERT INTO dvds.payment VALUES (28287, 545, 2, 3693, 8.99, '2007-04-06 08:24:35.996577'); -INSERT INTO dvds.payment VALUES (28288, 545, 1, 3975, 5.99, '2007-04-06 21:28:35.996577'); -INSERT INTO dvds.payment VALUES (28289, 545, 1, 4597, 5.99, '2007-04-08 05:12:08.996577'); -INSERT INTO dvds.payment VALUES (28290, 545, 1, 5264, 0.99, '2007-04-09 12:39:54.996577'); -INSERT INTO dvds.payment VALUES (28291, 545, 1, 7078, 5.99, '2007-04-27 02:45:03.996577'); -INSERT INTO dvds.payment VALUES (28292, 545, 2, 8599, 3.99, '2007-04-29 11:27:18.996577'); -INSERT INTO dvds.payment VALUES (28293, 545, 2, 8848, 2.99, '2007-04-29 21:49:24.996577'); -INSERT INTO dvds.payment VALUES (28294, 545, 2, 9810, 2.99, '2007-04-30 09:51:07.996577'); -INSERT INTO dvds.payment VALUES (28295, 545, 2, 9942, 4.99, '2007-04-30 14:04:09.996577'); -INSERT INTO dvds.payment VALUES (28296, 546, 1, 3738, 4.99, '2007-04-06 10:19:23.996577'); -INSERT INTO dvds.payment VALUES (28297, 546, 2, 4664, 0.99, '2007-04-08 08:29:54.996577'); -INSERT INTO dvds.payment VALUES (28298, 546, 1, 4734, 0.99, '2007-04-08 11:40:38.996577'); -INSERT INTO dvds.payment VALUES (28299, 546, 1, 5629, 0.99, '2007-04-10 04:30:51.996577'); -INSERT INTO dvds.payment VALUES (28300, 546, 2, 6758, 9.99, '2007-04-12 13:42:15.996577'); -INSERT INTO dvds.payment VALUES (28301, 546, 1, 6786, 2.99, '2007-04-12 15:00:59.996577'); -INSERT INTO dvds.payment VALUES (28302, 546, 2, 6910, 6.99, '2007-04-12 20:39:47.996577'); -INSERT INTO dvds.payment VALUES (28303, 546, 1, 8532, 4.99, '2007-04-29 08:55:22.996577'); -INSERT INTO dvds.payment VALUES (28304, 546, 1, 9087, 4.99, '2007-04-30 06:48:13.996577'); -INSERT INTO dvds.payment VALUES (28305, 267, 1, 9308, 6.99, '2007-04-30 15:21:47.996577'); -INSERT INTO dvds.payment VALUES (28306, 546, 2, 9626, 1.99, '2007-04-30 03:06:07.996577'); -INSERT INTO dvds.payment VALUES (28307, 547, 2, 3679, 4.99, '2007-04-06 07:44:23.996577'); -INSERT INTO dvds.payment VALUES (28308, 547, 1, 3765, 4.99, '2007-04-06 11:30:13.996577'); -INSERT INTO dvds.payment VALUES (28309, 547, 2, 5327, 4.99, '2007-04-09 15:08:15.996577'); -INSERT INTO dvds.payment VALUES (28310, 547, 2, 5854, 4.99, '2007-04-10 16:16:00.996577'); -INSERT INTO dvds.payment VALUES (28311, 547, 1, 6605, 0.99, '2007-04-12 06:29:33.996577'); -INSERT INTO dvds.payment VALUES (28312, 547, 2, 7420, 4.99, '2007-04-27 15:38:05.996577'); -INSERT INTO dvds.payment VALUES (28313, 547, 2, 7547, 3.99, '2007-04-27 20:20:14.996577'); -INSERT INTO dvds.payment VALUES (28314, 547, 1, 7835, 4.99, '2007-04-28 07:18:05.996577'); -INSERT INTO dvds.payment VALUES (28315, 547, 1, 7859, 3.99, '2007-04-28 08:25:43.996577'); -INSERT INTO dvds.payment VALUES (28316, 547, 1, 8828, 2.99, '2007-04-29 21:01:20.996577'); -INSERT INTO dvds.payment VALUES (28317, 548, 1, 3686, 2.99, '2007-04-06 08:06:16.996577'); -INSERT INTO dvds.payment VALUES (28318, 548, 2, 3777, 2.99, '2007-04-06 12:05:14.996577'); -INSERT INTO dvds.payment VALUES (28319, 548, 1, 4155, 7.99, '2007-04-07 07:29:15.996577'); -INSERT INTO dvds.payment VALUES (28320, 548, 2, 5138, 4.99, '2007-04-09 06:29:12.996577'); -INSERT INTO dvds.payment VALUES (28321, 548, 2, 6490, 4.99, '2007-04-12 00:56:29.996577'); -INSERT INTO dvds.payment VALUES (28322, 548, 1, 9614, 5.99, '2007-04-30 02:27:57.996577'); -INSERT INTO dvds.payment VALUES (28323, 549, 2, 3523, 2.99, '2007-04-05 23:30:04.996577'); -INSERT INTO dvds.payment VALUES (28324, 549, 2, 3892, 4.99, '2007-04-06 17:27:24.996577'); -INSERT INTO dvds.payment VALUES (28325, 549, 1, 4447, 0.99, '2007-04-07 21:43:54.996577'); -INSERT INTO dvds.payment VALUES (28326, 549, 1, 7252, 7.99, '2007-04-27 09:13:54.996577'); -INSERT INTO dvds.payment VALUES (28327, 549, 2, 8239, 0.99, '2007-04-28 23:00:05.996577'); -INSERT INTO dvds.payment VALUES (28328, 549, 1, 8316, 4.99, '2007-04-29 02:07:15.996577'); -INSERT INTO dvds.payment VALUES (28329, 549, 2, 9445, 7.99, '2007-04-30 20:19:08.996577'); -INSERT INTO dvds.payment VALUES (28330, 549, 2, 9511, 9.99, '2007-04-30 22:53:31.996577'); -INSERT INTO dvds.payment VALUES (28331, 549, 2, 9887, 0.99, '2007-04-30 12:28:58.996577'); -INSERT INTO dvds.payment VALUES (28332, 550, 1, 3979, 4.99, '2007-04-06 21:33:01.996577'); -INSERT INTO dvds.payment VALUES (28333, 550, 1, 5727, 4.99, '2007-04-10 09:53:54.996577'); -INSERT INTO dvds.payment VALUES (28334, 550, 1, 6695, 2.99, '2007-04-12 11:08:05.996577'); -INSERT INTO dvds.payment VALUES (28335, 550, 1, 7030, 0.99, '2007-04-27 01:30:06.996577'); -INSERT INTO dvds.payment VALUES (28336, 550, 2, 7838, 2.99, '2007-04-28 07:28:47.996577'); -INSERT INTO dvds.payment VALUES (28337, 550, 1, 8628, 6.99, '2007-04-29 12:34:50.996577'); -INSERT INTO dvds.payment VALUES (28338, 550, 2, 8838, 2.99, '2007-04-29 21:20:49.996577'); -INSERT INTO dvds.payment VALUES (28339, 550, 1, 8959, 8.99, '2007-04-30 02:04:15.996577'); -INSERT INTO dvds.payment VALUES (28340, 550, 1, 9616, 2.99, '2007-04-30 02:33:27.996577'); -INSERT INTO dvds.payment VALUES (28341, 550, 1, 9748, 0.99, '2007-04-30 07:46:22.996577'); -INSERT INTO dvds.payment VALUES (28342, 550, 2, 10140, 4.99, '2007-04-30 20:31:46.996577'); -INSERT INTO dvds.payment VALUES (28343, 551, 2, 3996, 5.99, '2007-04-06 22:15:09.996577'); -INSERT INTO dvds.payment VALUES (28344, 551, 1, 5201, 1.99, '2007-04-09 09:21:19.996577'); -INSERT INTO dvds.payment VALUES (28345, 551, 2, 5528, 0.99, '2007-04-10 00:37:47.996577'); -INSERT INTO dvds.payment VALUES (28346, 551, 1, 6041, 0.99, '2007-04-11 01:43:24.996577'); -INSERT INTO dvds.payment VALUES (28347, 551, 2, 7095, 9.99, '2007-04-27 03:19:41.996577'); -INSERT INTO dvds.payment VALUES (28348, 551, 1, 8986, 0.99, '2007-04-30 03:05:46.996577'); -INSERT INTO dvds.payment VALUES (28349, 551, 1, 9287, 2.99, '2007-04-30 14:04:05.996577'); -INSERT INTO dvds.payment VALUES (28350, 551, 2, 9765, 4.99, '2007-04-30 08:13:06.996577'); -INSERT INTO dvds.payment VALUES (28351, 552, 1, 4477, 6.99, '2007-04-07 23:06:50.996577'); -INSERT INTO dvds.payment VALUES (28352, 552, 1, 5213, 7.99, '2007-04-09 10:08:09.996577'); -INSERT INTO dvds.payment VALUES (28353, 552, 2, 6189, 4.99, '2007-04-11 10:04:29.996577'); -INSERT INTO dvds.payment VALUES (28354, 552, 1, 7772, 2.99, '2007-04-28 05:27:35.996577'); -INSERT INTO dvds.payment VALUES (28355, 552, 1, 8085, 2.99, '2007-04-28 16:41:41.996577'); -INSERT INTO dvds.payment VALUES (28356, 552, 2, 8192, 2.99, '2007-04-28 21:17:37.996577'); -INSERT INTO dvds.payment VALUES (28357, 552, 2, 8614, 5.99, '2007-04-29 12:00:31.996577'); -INSERT INTO dvds.payment VALUES (28358, 552, 2, 8894, 4.99, '2007-04-29 23:16:57.996577'); -INSERT INTO dvds.payment VALUES (28359, 552, 1, 9342, 8.99, '2007-04-30 16:38:22.996577'); -INSERT INTO dvds.payment VALUES (28360, 553, 1, 3495, 6.99, '2007-04-05 22:18:30.996577'); -INSERT INTO dvds.payment VALUES (28361, 553, 2, 3793, 4.99, '2007-04-06 13:01:10.996577'); -INSERT INTO dvds.payment VALUES (28362, 553, 2, 3859, 2.99, '2007-04-06 15:46:41.996577'); -INSERT INTO dvds.payment VALUES (28363, 553, 1, 3890, 4.99, '2007-04-06 17:26:41.996577'); -INSERT INTO dvds.payment VALUES (28364, 553, 2, 3891, 4.99, '2007-04-06 17:26:51.996577'); -INSERT INTO dvds.payment VALUES (28365, 553, 2, 3942, 4.99, '2007-04-06 19:50:00.996577'); -INSERT INTO dvds.payment VALUES (28366, 553, 1, 4257, 4.99, '2007-04-07 12:47:07.996577'); -INSERT INTO dvds.payment VALUES (28367, 553, 2, 4662, 0.99, '2007-04-08 08:27:20.996577'); -INSERT INTO dvds.payment VALUES (28368, 553, 2, 4845, 4.99, '2007-04-08 16:56:46.996577'); -INSERT INTO dvds.payment VALUES (28369, 553, 2, 4941, 3.99, '2007-04-08 21:07:36.996577'); -INSERT INTO dvds.payment VALUES (28370, 553, 1, 6069, 2.99, '2007-04-11 03:13:25.996577'); -INSERT INTO dvds.payment VALUES (28371, 553, 2, 6657, 0.99, '2007-04-12 09:40:02.996577'); -INSERT INTO dvds.payment VALUES (28372, 553, 1, 6812, 6.99, '2007-04-12 16:31:51.996577'); -INSERT INTO dvds.payment VALUES (28373, 553, 1, 7890, 4.99, '2007-04-28 09:12:06.996577'); -INSERT INTO dvds.payment VALUES (28374, 553, 2, 9272, 4.99, '2007-04-30 13:33:48.996577'); -INSERT INTO dvds.payment VALUES (28375, 553, 2, 9601, 2.99, '2007-04-30 02:10:43.996577'); -INSERT INTO dvds.payment VALUES (28376, 554, 2, 4902, 4.99, '2007-04-08 19:17:56.996577'); -INSERT INTO dvds.payment VALUES (28377, 554, 1, 5527, 2.99, '2007-04-10 00:34:27.996577'); -INSERT INTO dvds.payment VALUES (28378, 554, 1, 5968, 5.99, '2007-04-10 22:31:37.996577'); -INSERT INTO dvds.payment VALUES (28379, 554, 1, 6144, 2.99, '2007-04-11 07:31:19.996577'); -INSERT INTO dvds.payment VALUES (28380, 555, 2, 4875, 2.99, '2007-04-08 17:52:43.996577'); -INSERT INTO dvds.payment VALUES (28381, 555, 1, 8161, 0.99, '2007-04-28 19:39:26.996577'); -INSERT INTO dvds.payment VALUES (28382, 555, 1, 8245, 3.99, '2007-04-28 23:05:35.996577'); -INSERT INTO dvds.payment VALUES (28383, 555, 1, 9299, 5.99, '2007-04-30 15:01:17.996577'); -INSERT INTO dvds.payment VALUES (28384, 555, 2, 9990, 7.99, '2007-04-30 15:52:47.996577'); -INSERT INTO dvds.payment VALUES (28385, 555, 2, 10076, 7.99, '2007-04-30 18:29:00.996577'); -INSERT INTO dvds.payment VALUES (28386, 556, 2, 4719, 2.99, '2007-04-08 11:01:26.996577'); -INSERT INTO dvds.payment VALUES (28387, 556, 2, 4839, 3.99, '2007-04-08 16:41:36.996577'); -INSERT INTO dvds.payment VALUES (28388, 556, 1, 4846, 0.99, '2007-04-08 16:57:31.996577'); -INSERT INTO dvds.payment VALUES (28389, 556, 2, 5722, 0.99, '2007-04-10 09:38:30.996577'); -INSERT INTO dvds.payment VALUES (28390, 556, 2, 6484, 2.99, '2007-04-12 00:32:36.996577'); -INSERT INTO dvds.payment VALUES (28391, 556, 1, 8909, 5.99, '2007-04-29 23:56:29.996577'); -INSERT INTO dvds.payment VALUES (28392, 556, 2, 10106, 4.99, '2007-04-30 19:29:13.996577'); -INSERT INTO dvds.payment VALUES (28393, 557, 1, 4651, 0.99, '2007-04-08 08:08:05.996577'); -INSERT INTO dvds.payment VALUES (28394, 557, 1, 4851, 1.99, '2007-04-08 17:08:31.996577'); -INSERT INTO dvds.payment VALUES (28395, 557, 1, 6459, 0.99, '2007-04-11 23:40:29.996577'); -INSERT INTO dvds.payment VALUES (28396, 557, 2, 6713, 3.99, '2007-04-12 11:56:02.996577'); -INSERT INTO dvds.payment VALUES (28397, 557, 2, 6823, 4.99, '2007-04-12 16:52:57.996577'); -INSERT INTO dvds.payment VALUES (28398, 557, 2, 6898, 0.99, '2007-04-12 20:07:30.996577'); -INSERT INTO dvds.payment VALUES (28399, 557, 1, 9336, 0.99, '2007-04-30 16:29:41.996577'); -INSERT INTO dvds.payment VALUES (28400, 557, 1, 9341, 2.99, '2007-04-30 16:36:24.996577'); -INSERT INTO dvds.payment VALUES (28401, 557, 2, 9366, 1.99, '2007-04-30 17:17:23.996577'); -INSERT INTO dvds.payment VALUES (28402, 557, 2, 9367, 6.99, '2007-04-30 17:18:24.996577'); -INSERT INTO dvds.payment VALUES (28403, 558, 1, 3731, 9.99, '2007-04-06 10:02:02.996577'); -INSERT INTO dvds.payment VALUES (28404, 558, 1, 3954, 0.99, '2007-04-06 20:26:10.996577'); -INSERT INTO dvds.payment VALUES (28405, 558, 1, 3990, 3.99, '2007-04-06 22:01:10.996577'); -INSERT INTO dvds.payment VALUES (28406, 558, 1, 4192, 5.99, '2007-04-07 09:25:32.996577'); -INSERT INTO dvds.payment VALUES (28407, 558, 1, 4932, 2.99, '2007-04-08 20:46:06.996577'); -INSERT INTO dvds.payment VALUES (28408, 558, 2, 5375, 6.99, '2007-04-09 17:21:21.996577'); -INSERT INTO dvds.payment VALUES (28409, 558, 1, 5492, 3.99, '2007-04-09 22:39:35.996577'); -INSERT INTO dvds.payment VALUES (28410, 558, 2, 6278, 7.99, '2007-04-11 14:48:28.996577'); -INSERT INTO dvds.payment VALUES (28411, 558, 2, 6479, 9.99, '2007-04-12 00:17:26.996577'); -INSERT INTO dvds.payment VALUES (28412, 558, 2, 6742, 4.99, '2007-04-12 12:53:57.996577'); -INSERT INTO dvds.payment VALUES (28413, 558, 1, 6757, 0.99, '2007-04-12 13:38:14.996577'); -INSERT INTO dvds.payment VALUES (28414, 558, 1, 7424, 0.99, '2007-04-27 15:42:45.996577'); -INSERT INTO dvds.payment VALUES (28415, 558, 1, 8523, 2.99, '2007-04-29 08:46:53.996577'); -INSERT INTO dvds.payment VALUES (28416, 558, 1, 8858, 4.99, '2007-04-29 22:13:01.996577'); -INSERT INTO dvds.payment VALUES (28417, 558, 1, 8889, 2.99, '2007-04-29 23:08:09.996577'); -INSERT INTO dvds.payment VALUES (28418, 559, 1, 3674, 5.99, '2007-04-06 07:31:39.996577'); -INSERT INTO dvds.payment VALUES (28419, 559, 1, 4120, 4.99, '2007-04-07 05:35:29.996577'); -INSERT INTO dvds.payment VALUES (28420, 559, 1, 4370, 7.99, '2007-04-07 18:34:02.996577'); -INSERT INTO dvds.payment VALUES (28421, 559, 2, 5396, 1.99, '2007-04-09 18:11:18.996577'); -INSERT INTO dvds.payment VALUES (28422, 559, 1, 6201, 4.99, '2007-04-11 10:46:33.996577'); -INSERT INTO dvds.payment VALUES (28423, 559, 1, 6915, 2.99, '2007-04-12 20:56:35.996577'); -INSERT INTO dvds.payment VALUES (28424, 559, 1, 7169, 1.99, '2007-04-27 06:20:05.996577'); -INSERT INTO dvds.payment VALUES (28425, 559, 1, 7680, 1.99, '2007-04-28 01:27:34.996577'); -INSERT INTO dvds.payment VALUES (28426, 559, 1, 8631, 1.99, '2007-04-29 12:36:32.996577'); -INSERT INTO dvds.payment VALUES (28427, 559, 2, 9134, 0.99, '2007-04-30 08:28:47.996577'); -INSERT INTO dvds.payment VALUES (28428, 559, 1, 9877, 2.99, '2007-04-30 12:10:23.996577'); -INSERT INTO dvds.payment VALUES (28429, 559, 2, 10146, 2.99, '2007-04-30 20:46:22.996577'); -INSERT INTO dvds.payment VALUES (28430, 560, 1, 3941, 4.99, '2007-04-06 19:49:03.996577'); -INSERT INTO dvds.payment VALUES (28431, 560, 1, 4298, 2.99, '2007-04-07 14:55:51.996577'); -INSERT INTO dvds.payment VALUES (28432, 560, 2, 4375, 9.99, '2007-04-07 18:48:55.996577'); -INSERT INTO dvds.payment VALUES (28433, 560, 1, 4453, 0.99, '2007-04-07 22:01:05.996577'); -INSERT INTO dvds.payment VALUES (28434, 560, 2, 5208, 2.99, '2007-04-09 09:45:22.996577'); -INSERT INTO dvds.payment VALUES (28435, 560, 1, 6410, 4.99, '2007-04-11 21:36:32.996577'); -INSERT INTO dvds.payment VALUES (28436, 560, 1, 6945, 2.99, '2007-04-26 22:03:55.996577'); -INSERT INTO dvds.payment VALUES (28437, 560, 2, 7202, 4.99, '2007-04-27 07:28:46.996577'); -INSERT INTO dvds.payment VALUES (28438, 560, 1, 7891, 3.99, '2007-04-28 09:12:22.996577'); -INSERT INTO dvds.payment VALUES (28439, 560, 1, 8753, 2.99, '2007-04-29 17:44:16.996577'); -INSERT INTO dvds.payment VALUES (28440, 560, 2, 8861, 5.99, '2007-04-29 22:15:55.996577'); -INSERT INTO dvds.payment VALUES (28441, 560, 2, 8906, 4.99, '2007-04-29 23:50:05.996577'); -INSERT INTO dvds.payment VALUES (28442, 560, 1, 9265, 0.99, '2007-04-30 13:23:51.996577'); -INSERT INTO dvds.payment VALUES (28443, 560, 2, 9895, 5.99, '2007-04-30 12:36:22.996577'); -INSERT INTO dvds.payment VALUES (28444, 561, 2, 6361, 2.99, '2007-04-11 19:37:40.996577'); -INSERT INTO dvds.payment VALUES (28445, 561, 1, 6435, 0.99, '2007-04-11 22:44:45.996577'); -INSERT INTO dvds.payment VALUES (28446, 561, 1, 6621, 0.99, '2007-04-12 07:25:56.996577'); -INSERT INTO dvds.payment VALUES (28447, 561, 1, 6843, 4.99, '2007-04-12 17:42:31.996577'); -INSERT INTO dvds.payment VALUES (28448, 561, 1, 7698, 0.99, '2007-04-28 02:12:40.996577'); -INSERT INTO dvds.payment VALUES (28449, 561, 1, 8504, 10.99, '2007-04-29 07:48:42.996577'); -INSERT INTO dvds.payment VALUES (28450, 561, 2, 9839, 7.99, '2007-04-30 10:49:42.996577'); -INSERT INTO dvds.payment VALUES (28451, 562, 2, 4732, 5.99, '2007-04-08 11:38:11.996577'); -INSERT INTO dvds.payment VALUES (28452, 562, 1, 4802, 4.99, '2007-04-08 15:23:43.996577'); -INSERT INTO dvds.payment VALUES (28453, 562, 2, 5360, 0.99, '2007-04-09 16:42:29.996577'); -INSERT INTO dvds.payment VALUES (28454, 562, 2, 6065, 6.99, '2007-04-11 02:54:17.996577'); -INSERT INTO dvds.payment VALUES (28455, 562, 1, 6607, 8.99, '2007-04-12 06:37:16.996577'); -INSERT INTO dvds.payment VALUES (28456, 562, 2, 7166, 3.99, '2007-04-27 06:05:22.996577'); -INSERT INTO dvds.payment VALUES (28457, 562, 1, 7430, 2.99, '2007-04-27 15:54:40.996577'); -INSERT INTO dvds.payment VALUES (28458, 562, 2, 7560, 2.99, '2007-04-27 20:48:43.996577'); -INSERT INTO dvds.payment VALUES (28459, 562, 2, 8132, 0.99, '2007-04-28 18:25:57.996577'); -INSERT INTO dvds.payment VALUES (28460, 563, 1, 4106, 1.99, '2007-04-07 05:02:01.996577'); -INSERT INTO dvds.payment VALUES (28461, 563, 2, 4436, 0.99, '2007-04-07 21:20:30.996577'); -INSERT INTO dvds.payment VALUES (28462, 563, 1, 4565, 3.99, '2007-04-08 03:40:54.996577'); -INSERT INTO dvds.payment VALUES (28463, 563, 2, 4629, 6.99, '2007-04-08 06:59:52.996577'); -INSERT INTO dvds.payment VALUES (28464, 563, 2, 4711, 2.99, '2007-04-08 10:35:24.996577'); -INSERT INTO dvds.payment VALUES (28465, 563, 2, 4776, 5.99, '2007-04-08 14:12:46.996577'); -INSERT INTO dvds.payment VALUES (28466, 563, 2, 4808, 3.99, '2007-04-08 15:31:15.996577'); -INSERT INTO dvds.payment VALUES (28467, 563, 2, 4825, 4.99, '2007-04-08 16:11:27.996577'); -INSERT INTO dvds.payment VALUES (28468, 563, 1, 4883, 0.99, '2007-04-08 18:15:24.996577'); -INSERT INTO dvds.payment VALUES (28469, 563, 1, 5406, 0.99, '2007-04-09 18:41:49.996577'); -INSERT INTO dvds.payment VALUES (28470, 563, 2, 6326, 2.99, '2007-04-11 17:35:21.996577'); -INSERT INTO dvds.payment VALUES (28471, 563, 2, 7612, 0.99, '2007-04-27 22:40:21.996577'); -INSERT INTO dvds.payment VALUES (28472, 563, 1, 8262, 1.99, '2007-04-28 23:39:44.996577'); -INSERT INTO dvds.payment VALUES (28473, 563, 1, 8610, 5.99, '2007-04-29 11:53:28.996577'); -INSERT INTO dvds.payment VALUES (28474, 563, 2, 8632, 6.99, '2007-04-29 12:39:51.996577'); -INSERT INTO dvds.payment VALUES (28475, 563, 2, 8812, 7.99, '2007-04-29 20:16:06.996577'); -INSERT INTO dvds.payment VALUES (28476, 564, 1, 4196, 2.99, '2007-04-07 09:34:59.996577'); -INSERT INTO dvds.payment VALUES (28477, 564, 2, 4385, 0.99, '2007-04-07 19:17:04.996577'); -INSERT INTO dvds.payment VALUES (28478, 564, 1, 6973, 2.99, '2007-04-26 23:00:30.996577'); -INSERT INTO dvds.payment VALUES (28479, 564, 2, 7470, 10.99, '2007-04-27 17:29:29.996577'); -INSERT INTO dvds.payment VALUES (28480, 564, 2, 8426, 4.99, '2007-04-29 05:36:14.996577'); -INSERT INTO dvds.payment VALUES (28481, 564, 1, 8874, 0.99, '2007-04-29 22:43:11.996577'); -INSERT INTO dvds.payment VALUES (28482, 564, 2, 9063, 3.99, '2007-04-30 05:53:00.996577'); -INSERT INTO dvds.payment VALUES (28483, 564, 2, 9929, 2.99, '2007-04-30 13:45:50.996577'); -INSERT INTO dvds.payment VALUES (28484, 564, 1, 10129, 6.99, '2007-04-30 20:10:01.996577'); -INSERT INTO dvds.payment VALUES (28485, 565, 2, 3470, 0.99, '2007-04-05 21:17:50.996577'); -INSERT INTO dvds.payment VALUES (28486, 565, 1, 3838, 2.99, '2007-04-06 14:58:09.996577'); -INSERT INTO dvds.payment VALUES (28487, 565, 1, 4413, 2.99, '2007-04-07 20:28:30.996577'); -INSERT INTO dvds.payment VALUES (28488, 565, 2, 5020, 0.99, '2007-04-09 00:36:22.996577'); -INSERT INTO dvds.payment VALUES (28489, 565, 1, 5124, 4.99, '2007-04-09 05:53:45.996577'); -INSERT INTO dvds.payment VALUES (28490, 565, 1, 6264, 2.99, '2007-04-11 14:11:01.996577'); -INSERT INTO dvds.payment VALUES (28491, 565, 1, 6627, 2.99, '2007-04-12 07:45:12.996577'); -INSERT INTO dvds.payment VALUES (28492, 565, 1, 6699, 0.99, '2007-04-12 11:13:47.996577'); -INSERT INTO dvds.payment VALUES (28493, 565, 2, 7242, 5.99, '2007-04-27 08:54:17.996577'); -INSERT INTO dvds.payment VALUES (28494, 565, 1, 9628, 2.99, '2007-04-30 03:19:37.996577'); -INSERT INTO dvds.payment VALUES (28495, 565, 1, 10025, 5.99, '2007-04-30 16:57:35.996577'); -INSERT INTO dvds.payment VALUES (28496, 566, 2, 3663, 4.99, '2007-04-06 06:44:13.996577'); -INSERT INTO dvds.payment VALUES (28497, 566, 1, 3943, 0.99, '2007-04-06 19:50:43.996577'); -INSERT INTO dvds.payment VALUES (28498, 566, 1, 3998, 3.99, '2007-04-06 22:17:46.996577'); -INSERT INTO dvds.payment VALUES (28499, 566, 1, 5079, 9.99, '2007-04-09 03:49:06.996577'); -INSERT INTO dvds.payment VALUES (28500, 566, 2, 6365, 2.99, '2007-04-11 19:46:06.996577'); -INSERT INTO dvds.payment VALUES (28501, 566, 1, 7677, 2.99, '2007-04-28 01:25:03.996577'); -INSERT INTO dvds.payment VALUES (28502, 566, 2, 7941, 0.99, '2007-04-28 11:15:46.996577'); -INSERT INTO dvds.payment VALUES (28503, 566, 2, 8118, 2.99, '2007-04-28 17:50:48.996577'); -INSERT INTO dvds.payment VALUES (28504, 566, 1, 8157, 6.99, '2007-04-28 19:35:11.996577'); -INSERT INTO dvds.payment VALUES (28505, 566, 1, 8257, 2.99, '2007-04-28 23:31:46.996577'); -INSERT INTO dvds.payment VALUES (28506, 566, 2, 8305, 1.99, '2007-04-29 01:37:13.996577'); -INSERT INTO dvds.payment VALUES (28507, 566, 2, 8660, 6.99, '2007-04-29 13:55:25.996577'); -INSERT INTO dvds.payment VALUES (28508, 566, 1, 8710, 0.99, '2007-04-29 15:54:29.996577'); -INSERT INTO dvds.payment VALUES (28509, 566, 1, 8797, 4.99, '2007-04-29 19:39:03.996577'); -INSERT INTO dvds.payment VALUES (28510, 566, 2, 9101, 4.99, '2007-04-30 07:15:39.996577'); -INSERT INTO dvds.payment VALUES (28511, 566, 2, 9470, 4.99, '2007-04-30 21:29:57.996577'); -INSERT INTO dvds.payment VALUES (28512, 566, 1, 9688, 3.99, '2007-04-30 05:24:34.996577'); -INSERT INTO dvds.payment VALUES (28513, 566, 2, 9915, 2.99, '2007-04-30 13:20:52.996577'); -INSERT INTO dvds.payment VALUES (28514, 567, 1, 3769, 5.99, '2007-04-06 11:39:59.996577'); -INSERT INTO dvds.payment VALUES (28515, 567, 2, 4457, 0.99, '2007-04-07 22:14:04.996577'); -INSERT INTO dvds.payment VALUES (28516, 567, 2, 4576, 0.99, '2007-04-08 04:19:45.996577'); -INSERT INTO dvds.payment VALUES (28517, 567, 1, 4949, 4.99, '2007-04-08 21:25:36.996577'); -INSERT INTO dvds.payment VALUES (28518, 567, 2, 6358, 2.99, '2007-04-11 19:31:38.996577'); -INSERT INTO dvds.payment VALUES (28519, 567, 2, 6551, 0.99, '2007-04-12 03:32:09.996577'); -INSERT INTO dvds.payment VALUES (28520, 567, 2, 7340, 2.99, '2007-04-27 12:46:36.996577'); -INSERT INTO dvds.payment VALUES (28521, 567, 1, 8201, 2.99, '2007-04-28 21:39:14.996577'); -INSERT INTO dvds.payment VALUES (28522, 567, 1, 8629, 2.99, '2007-04-29 12:35:01.996577'); -INSERT INTO dvds.payment VALUES (28523, 567, 1, 9279, 7.99, '2007-04-30 13:43:47.996577'); -INSERT INTO dvds.payment VALUES (28524, 567, 1, 9475, 6.99, '2007-04-30 21:34:59.996577'); -INSERT INTO dvds.payment VALUES (28525, 568, 1, 4322, 2.99, '2007-04-07 16:23:03.996577'); -INSERT INTO dvds.payment VALUES (28526, 568, 2, 5332, 2.99, '2007-04-09 15:27:49.996577'); -INSERT INTO dvds.payment VALUES (28527, 568, 1, 5622, 0.99, '2007-04-10 04:08:03.996577'); -INSERT INTO dvds.payment VALUES (28528, 568, 1, 5776, 4.99, '2007-04-10 12:03:48.996577'); -INSERT INTO dvds.payment VALUES (28529, 568, 2, 7068, 2.99, '2007-04-27 02:26:16.996577'); -INSERT INTO dvds.payment VALUES (28530, 568, 2, 8185, 0.99, '2007-04-28 20:52:15.996577'); -INSERT INTO dvds.payment VALUES (28531, 568, 2, 9583, 6.99, '2007-04-30 01:33:47.996577'); -INSERT INTO dvds.payment VALUES (28532, 568, 1, 9738, 0.99, '2007-04-30 07:32:40.996577'); -INSERT INTO dvds.payment VALUES (28533, 569, 1, 4204, 5.99, '2007-04-07 09:52:44.996577'); -INSERT INTO dvds.payment VALUES (28534, 569, 2, 5003, 0.99, '2007-04-08 23:47:29.996577'); -INSERT INTO dvds.payment VALUES (28535, 569, 2, 6046, 5.99, '2007-04-11 01:50:15.996577'); -INSERT INTO dvds.payment VALUES (28536, 569, 1, 8910, 2.99, '2007-04-29 23:58:14.996577'); -INSERT INTO dvds.payment VALUES (28537, 569, 2, 9220, 1.99, '2007-04-30 11:45:53.996577'); -INSERT INTO dvds.payment VALUES (28538, 569, 1, 9399, 4.99, '2007-04-30 18:43:16.996577'); -INSERT INTO dvds.payment VALUES (28539, 569, 2, 9960, 1.99, '2007-04-30 14:34:18.996577'); -INSERT INTO dvds.payment VALUES (28540, 569, 2, 10192, 2.99, '2007-04-30 23:01:26.996577'); -INSERT INTO dvds.payment VALUES (28541, 570, 2, 3984, 0.99, '2007-04-06 21:51:02.996577'); -INSERT INTO dvds.payment VALUES (28542, 570, 1, 4069, 0.99, '2007-04-07 03:03:32.996577'); -INSERT INTO dvds.payment VALUES (28543, 570, 1, 4698, 0.99, '2007-04-08 09:47:57.996577'); -INSERT INTO dvds.payment VALUES (28544, 570, 2, 5638, 4.99, '2007-04-10 05:01:15.996577'); -INSERT INTO dvds.payment VALUES (28545, 570, 1, 6253, 4.99, '2007-04-11 13:35:45.996577'); -INSERT INTO dvds.payment VALUES (28546, 570, 1, 6556, 0.99, '2007-04-12 03:38:42.996577'); -INSERT INTO dvds.payment VALUES (28547, 570, 2, 7174, 4.99, '2007-04-27 06:29:02.996577'); -INSERT INTO dvds.payment VALUES (28548, 570, 2, 8735, 4.99, '2007-04-29 16:57:20.996577'); -INSERT INTO dvds.payment VALUES (28549, 570, 1, 9385, 7.99, '2007-04-30 17:54:15.996577'); -INSERT INTO dvds.payment VALUES (28550, 570, 1, 9398, 0.99, '2007-04-30 18:37:26.996577'); -INSERT INTO dvds.payment VALUES (28551, 570, 2, 9432, 2.99, '2007-04-30 19:54:44.996577'); -INSERT INTO dvds.payment VALUES (28552, 570, 1, 9766, 4.99, '2007-04-30 08:14:55.996577'); -INSERT INTO dvds.payment VALUES (28553, 570, 1, 10004, 0.99, '2007-04-30 16:19:49.996577'); -INSERT INTO dvds.payment VALUES (28554, 570, 2, 10168, 2.99, '2007-04-30 21:53:50.996577'); -INSERT INTO dvds.payment VALUES (28555, 571, 2, 3616, 2.99, '2007-04-06 04:20:39.996577'); -INSERT INTO dvds.payment VALUES (28556, 571, 1, 4162, 4.99, '2007-04-07 07:45:52.996577'); -INSERT INTO dvds.payment VALUES (28557, 571, 2, 5789, 4.99, '2007-04-10 12:39:52.996577'); -INSERT INTO dvds.payment VALUES (28558, 571, 2, 6676, 8.99, '2007-04-12 10:22:06.996577'); -INSERT INTO dvds.payment VALUES (28559, 571, 1, 6792, 8.99, '2007-04-12 15:05:54.996577'); -INSERT INTO dvds.payment VALUES (28560, 571, 1, 8084, 5.99, '2007-04-28 16:40:24.996577'); -INSERT INTO dvds.payment VALUES (28561, 571, 1, 8638, 4.99, '2007-04-29 12:58:49.996577'); -INSERT INTO dvds.payment VALUES (28562, 571, 2, 9300, 1.99, '2007-04-30 15:01:38.996577'); -INSERT INTO dvds.payment VALUES (28563, 571, 1, 9408, 4.99, '2007-04-30 19:00:35.996577'); -INSERT INTO dvds.payment VALUES (28564, 572, 1, 4601, 2.99, '2007-04-08 05:17:36.996577'); -INSERT INTO dvds.payment VALUES (28565, 572, 1, 5595, 4.99, '2007-04-10 03:02:11.996577'); -INSERT INTO dvds.payment VALUES (28566, 572, 1, 5713, 6.99, '2007-04-10 09:14:41.996577'); -INSERT INTO dvds.payment VALUES (28567, 572, 2, 6108, 2.99, '2007-04-11 05:47:50.996577'); -INSERT INTO dvds.payment VALUES (28568, 572, 1, 7161, 4.99, '2007-04-27 05:54:58.996577'); -INSERT INTO dvds.payment VALUES (28569, 572, 1, 7345, 4.99, '2007-04-27 12:58:19.996577'); -INSERT INTO dvds.payment VALUES (28570, 572, 2, 7713, 6.99, '2007-04-28 03:00:40.996577'); -INSERT INTO dvds.payment VALUES (28571, 572, 2, 8342, 0.99, '2007-04-29 03:13:31.996577'); -INSERT INTO dvds.payment VALUES (28572, 572, 1, 8432, 0.99, '2007-04-29 05:41:59.996577'); -INSERT INTO dvds.payment VALUES (28573, 572, 1, 9081, 3.99, '2007-04-30 06:38:24.996577'); -INSERT INTO dvds.payment VALUES (28574, 572, 2, 9950, 5.99, '2007-04-30 14:18:48.996577'); -INSERT INTO dvds.payment VALUES (28575, 572, 2, 10204, 4.99, '2007-04-30 23:16:05.996577'); -INSERT INTO dvds.payment VALUES (28576, 573, 2, 3768, 0.99, '2007-04-06 11:35:56.996577'); -INSERT INTO dvds.payment VALUES (28577, 573, 1, 3930, 2.99, '2007-04-06 19:22:33.996577'); -INSERT INTO dvds.payment VALUES (28578, 573, 2, 4023, 4.99, '2007-04-07 00:23:51.996577'); -INSERT INTO dvds.payment VALUES (28579, 573, 1, 4085, 0.99, '2007-04-07 03:54:05.996577'); -INSERT INTO dvds.payment VALUES (28580, 573, 1, 4609, 0.99, '2007-04-08 05:50:55.996577'); -INSERT INTO dvds.payment VALUES (28581, 573, 1, 4770, 2.99, '2007-04-08 13:58:12.996577'); -INSERT INTO dvds.payment VALUES (28582, 573, 1, 5036, 5.99, '2007-04-09 01:27:07.996577'); -INSERT INTO dvds.payment VALUES (28583, 573, 2, 5522, 9.99, '2007-04-10 00:14:55.996577'); -INSERT INTO dvds.payment VALUES (28584, 573, 2, 5903, 2.99, '2007-04-10 19:07:30.996577'); -INSERT INTO dvds.payment VALUES (28585, 573, 1, 6693, 7.99, '2007-04-12 11:05:26.996577'); -INSERT INTO dvds.payment VALUES (28586, 573, 1, 8400, 4.99, '2007-04-29 04:52:22.996577'); -INSERT INTO dvds.payment VALUES (28587, 573, 2, 9837, 10.99, '2007-04-30 10:42:45.996577'); -INSERT INTO dvds.payment VALUES (28588, 573, 2, 9846, 4.99, '2007-04-30 10:58:38.996577'); -INSERT INTO dvds.payment VALUES (28589, 573, 2, 9963, 2.99, '2007-04-30 14:45:12.996577'); -INSERT INTO dvds.payment VALUES (28590, 573, 2, 9971, 5.99, '2007-04-30 15:10:42.996577'); -INSERT INTO dvds.payment VALUES (28591, 574, 1, 3583, 7.99, '2007-04-06 02:39:09.996577'); -INSERT INTO dvds.payment VALUES (28592, 574, 1, 4004, 4.99, '2007-04-06 22:49:17.996577'); -INSERT INTO dvds.payment VALUES (28593, 574, 1, 4212, 4.99, '2007-04-07 10:21:40.996577'); -INSERT INTO dvds.payment VALUES (28594, 574, 2, 4890, 2.99, '2007-04-08 18:34:04.996577'); -INSERT INTO dvds.payment VALUES (28595, 574, 2, 5010, 4.99, '2007-04-09 00:01:49.996577'); -INSERT INTO dvds.payment VALUES (28596, 574, 1, 5076, 3.99, '2007-04-09 03:41:48.996577'); -INSERT INTO dvds.payment VALUES (28597, 574, 1, 5077, 3.99, '2007-04-09 03:46:27.996577'); -INSERT INTO dvds.payment VALUES (28598, 574, 1, 5640, 2.99, '2007-04-10 05:06:26.996577'); -INSERT INTO dvds.payment VALUES (28599, 574, 1, 6523, 2.99, '2007-04-12 02:42:45.996577'); -INSERT INTO dvds.payment VALUES (28600, 574, 1, 7093, 1.99, '2007-04-27 03:15:26.996577'); -INSERT INTO dvds.payment VALUES (28601, 574, 1, 7134, 2.99, '2007-04-27 05:01:32.996577'); -INSERT INTO dvds.payment VALUES (28602, 574, 1, 7964, 2.99, '2007-04-28 12:18:24.996577'); -INSERT INTO dvds.payment VALUES (28603, 574, 1, 8303, 4.99, '2007-04-29 01:34:22.996577'); -INSERT INTO dvds.payment VALUES (28604, 574, 1, 9589, 7.99, '2007-04-30 01:41:55.996577'); -INSERT INTO dvds.payment VALUES (28605, 574, 1, 9759, 3.99, '2007-04-30 07:54:23.996577'); -INSERT INTO dvds.payment VALUES (28606, 575, 1, 3558, 6.99, '2007-04-06 01:17:32.996577'); -INSERT INTO dvds.payment VALUES (28607, 575, 2, 5875, 8.99, '2007-04-10 17:35:13.996577'); -INSERT INTO dvds.payment VALUES (28608, 575, 2, 6907, 2.99, '2007-04-12 20:32:15.996577'); -INSERT INTO dvds.payment VALUES (28609, 575, 1, 7083, 0.99, '2007-04-27 02:57:05.996577'); -INSERT INTO dvds.payment VALUES (28610, 575, 1, 7139, 2.99, '2007-04-27 05:20:47.996577'); -INSERT INTO dvds.payment VALUES (28611, 575, 2, 8711, 2.99, '2007-04-29 15:55:41.996577'); -INSERT INTO dvds.payment VALUES (28612, 575, 2, 8904, 0.99, '2007-04-29 23:36:59.996577'); -INSERT INTO dvds.payment VALUES (28613, 575, 2, 8989, 4.99, '2007-04-30 03:07:45.996577'); -INSERT INTO dvds.payment VALUES (28614, 575, 1, 9733, 4.99, '2007-04-30 07:26:01.996577'); -INSERT INTO dvds.payment VALUES (28615, 576, 1, 3877, 4.99, '2007-04-06 16:50:36.996577'); -INSERT INTO dvds.payment VALUES (28616, 576, 2, 3889, 0.99, '2007-04-06 17:24:51.996577'); -INSERT INTO dvds.payment VALUES (28617, 576, 2, 3934, 4.99, '2007-04-06 19:35:49.996577'); -INSERT INTO dvds.payment VALUES (28618, 576, 1, 4514, 4.99, '2007-04-08 01:09:51.996577'); -INSERT INTO dvds.payment VALUES (28619, 576, 2, 5597, 3.99, '2007-04-10 03:16:23.996577'); -INSERT INTO dvds.payment VALUES (28620, 576, 1, 5934, 4.99, '2007-04-10 20:36:25.996577'); -INSERT INTO dvds.payment VALUES (28621, 576, 2, 7319, 1.99, '2007-04-27 11:59:51.996577'); -INSERT INTO dvds.payment VALUES (28622, 576, 1, 7605, 3.99, '2007-04-27 22:25:27.996577'); -INSERT INTO dvds.payment VALUES (28623, 576, 1, 8907, 4.99, '2007-04-29 23:53:29.996577'); -INSERT INTO dvds.payment VALUES (28624, 576, 1, 9133, 5.99, '2007-04-30 08:27:26.996577'); -INSERT INTO dvds.payment VALUES (28625, 576, 2, 9548, 5.99, '2007-04-30 00:22:45.996577'); -INSERT INTO dvds.payment VALUES (28626, 576, 2, 9620, 8.99, '2007-04-30 02:47:44.996577'); -INSERT INTO dvds.payment VALUES (28627, 576, 2, 9962, 0.99, '2007-04-30 14:39:02.996577'); -INSERT INTO dvds.payment VALUES (28628, 576, 1, 9979, 2.99, '2007-04-30 15:28:33.996577'); -INSERT INTO dvds.payment VALUES (28629, 576, 1, 10000, 2.99, '2007-04-30 16:09:31.996577'); -INSERT INTO dvds.payment VALUES (28630, 267, 2, 9403, 4.99, '2007-04-30 18:47:19.996577'); -INSERT INTO dvds.payment VALUES (28631, 577, 2, 3599, 0.99, '2007-04-06 03:45:02.996577'); -INSERT INTO dvds.payment VALUES (28632, 577, 1, 3785, 7.99, '2007-04-06 12:28:39.996577'); -INSERT INTO dvds.payment VALUES (28633, 577, 1, 4922, 2.99, '2007-04-08 20:12:26.996577'); -INSERT INTO dvds.payment VALUES (28634, 577, 1, 6500, 2.99, '2007-04-12 01:39:49.996577'); -INSERT INTO dvds.payment VALUES (28635, 577, 2, 6534, 2.99, '2007-04-12 03:08:09.996577'); -INSERT INTO dvds.payment VALUES (28636, 577, 2, 7197, 0.99, '2007-04-27 07:17:58.996577'); -INSERT INTO dvds.payment VALUES (28637, 577, 1, 7371, 4.99, '2007-04-27 13:47:08.996577'); -INSERT INTO dvds.payment VALUES (28638, 577, 2, 7876, 8.99, '2007-04-28 08:52:48.996577'); -INSERT INTO dvds.payment VALUES (28639, 577, 1, 8043, 5.99, '2007-04-28 15:14:10.996577'); -INSERT INTO dvds.payment VALUES (28640, 577, 1, 8060, 6.99, '2007-04-28 15:38:28.996577'); -INSERT INTO dvds.payment VALUES (28641, 577, 2, 8671, 6.99, '2007-04-29 14:18:03.996577'); -INSERT INTO dvds.payment VALUES (28642, 578, 2, 4496, 4.99, '2007-04-08 00:12:45.996577'); -INSERT INTO dvds.payment VALUES (28643, 578, 1, 5377, 4.99, '2007-04-09 17:32:56.996577'); -INSERT INTO dvds.payment VALUES (28644, 578, 1, 5445, 0.99, '2007-04-09 20:28:07.996577'); -INSERT INTO dvds.payment VALUES (28645, 578, 2, 5876, 4.99, '2007-04-10 17:35:41.996577'); -INSERT INTO dvds.payment VALUES (28646, 578, 1, 6784, 4.99, '2007-04-12 14:57:15.996577'); -INSERT INTO dvds.payment VALUES (28647, 578, 1, 6830, 0.99, '2007-04-12 17:11:21.996577'); -INSERT INTO dvds.payment VALUES (28648, 578, 2, 7059, 5.99, '2007-04-27 02:19:28.996577'); -INSERT INTO dvds.payment VALUES (28649, 578, 1, 8179, 2.99, '2007-04-28 20:33:39.996577'); -INSERT INTO dvds.payment VALUES (28650, 578, 1, 8218, 2.99, '2007-04-28 22:14:07.996577'); -INSERT INTO dvds.payment VALUES (28651, 578, 2, 9970, 4.99, '2007-04-30 15:06:50.996577'); -INSERT INTO dvds.payment VALUES (28652, 578, 1, 10029, 6.99, '2007-04-30 17:06:13.996577'); -INSERT INTO dvds.payment VALUES (28653, 578, 2, 10182, 2.99, '2007-04-30 22:36:27.996577'); -INSERT INTO dvds.payment VALUES (28654, 579, 1, 4619, 9.99, '2007-04-08 06:29:35.996577'); -INSERT INTO dvds.payment VALUES (28655, 579, 1, 4933, 2.99, '2007-04-08 20:46:55.996577'); -INSERT INTO dvds.payment VALUES (28656, 579, 1, 6304, 4.99, '2007-04-11 16:30:42.996577'); -INSERT INTO dvds.payment VALUES (28657, 579, 2, 6814, 1.99, '2007-04-12 16:40:24.996577'); -INSERT INTO dvds.payment VALUES (28658, 579, 2, 6824, 6.99, '2007-04-12 16:55:12.996577'); -INSERT INTO dvds.payment VALUES (28659, 579, 2, 6969, 8.99, '2007-04-26 22:52:20.996577'); -INSERT INTO dvds.payment VALUES (28660, 579, 2, 7221, 2.99, '2007-04-27 08:06:01.996577'); -INSERT INTO dvds.payment VALUES (28661, 579, 1, 8354, 0.99, '2007-04-29 03:24:52.996577'); -INSERT INTO dvds.payment VALUES (28662, 579, 1, 8876, 0.99, '2007-04-29 22:43:35.996577'); -INSERT INTO dvds.payment VALUES (28663, 579, 1, 8996, 0.99, '2007-04-30 03:21:49.996577'); -INSERT INTO dvds.payment VALUES (28664, 579, 2, 9349, 9.99, '2007-04-30 16:48:34.996577'); -INSERT INTO dvds.payment VALUES (28665, 579, 2, 9553, 5.99, '2007-04-30 00:35:00.996577'); -INSERT INTO dvds.payment VALUES (28666, 579, 2, 9976, 2.99, '2007-04-30 15:26:15.996577'); -INSERT INTO dvds.payment VALUES (28667, 579, 2, 9997, 4.99, '2007-04-30 16:05:56.996577'); -INSERT INTO dvds.payment VALUES (28668, 580, 2, 3571, 1.99, '2007-04-06 02:00:57.996577'); -INSERT INTO dvds.payment VALUES (28669, 580, 2, 3867, 1.99, '2007-04-06 16:20:45.996577'); -INSERT INTO dvds.payment VALUES (28670, 580, 2, 4169, 1.99, '2007-04-07 08:07:44.996577'); -INSERT INTO dvds.payment VALUES (28671, 580, 2, 4590, 3.99, '2007-04-08 04:56:14.996577'); -INSERT INTO dvds.payment VALUES (28672, 580, 1, 5937, 6.99, '2007-04-10 20:44:34.996577'); -INSERT INTO dvds.payment VALUES (28673, 580, 1, 6089, 2.99, '2007-04-11 04:14:25.996577'); -INSERT INTO dvds.payment VALUES (28674, 580, 2, 6170, 2.99, '2007-04-11 08:57:47.996577'); -INSERT INTO dvds.payment VALUES (28675, 580, 1, 7620, 0.99, '2007-04-27 22:55:43.996577'); -INSERT INTO dvds.payment VALUES (28676, 580, 2, 8784, 4.99, '2007-04-29 19:04:03.996577'); -INSERT INTO dvds.payment VALUES (28677, 580, 1, 8839, 3.99, '2007-04-29 21:21:00.996577'); -INSERT INTO dvds.payment VALUES (28678, 580, 1, 9199, 0.99, '2007-04-30 11:06:26.996577'); -INSERT INTO dvds.payment VALUES (28679, 580, 1, 9239, 3.99, '2007-04-30 12:19:18.996577'); -INSERT INTO dvds.payment VALUES (28680, 580, 1, 9460, 5.99, '2007-04-30 20:54:05.996577'); -INSERT INTO dvds.payment VALUES (28681, 580, 2, 9604, 4.99, '2007-04-30 02:15:38.996577'); -INSERT INTO dvds.payment VALUES (28682, 580, 2, 9865, 0.99, '2007-04-30 11:39:11.996577'); -INSERT INTO dvds.payment VALUES (28683, 581, 2, 4210, 2.99, '2007-04-07 10:04:46.996577'); -INSERT INTO dvds.payment VALUES (28684, 581, 2, 4244, 2.99, '2007-04-07 12:10:24.996577'); -INSERT INTO dvds.payment VALUES (28685, 581, 1, 4338, 4.99, '2007-04-07 17:08:22.996577'); -INSERT INTO dvds.payment VALUES (28686, 581, 2, 4613, 0.99, '2007-04-08 06:13:15.996577'); -INSERT INTO dvds.payment VALUES (28687, 581, 1, 4669, 5.99, '2007-04-08 08:41:34.996577'); -INSERT INTO dvds.payment VALUES (28688, 581, 1, 4815, 8.99, '2007-04-08 15:41:17.996577'); -INSERT INTO dvds.payment VALUES (28689, 581, 1, 4833, 1.99, '2007-04-08 16:36:01.996577'); -INSERT INTO dvds.payment VALUES (28690, 581, 1, 5516, 4.99, '2007-04-09 23:42:18.996577'); -INSERT INTO dvds.payment VALUES (28691, 581, 1, 5707, 4.99, '2007-04-10 08:54:40.996577'); -INSERT INTO dvds.payment VALUES (28692, 581, 2, 5812, 2.99, '2007-04-10 13:56:22.996577'); -INSERT INTO dvds.payment VALUES (28693, 581, 2, 7048, 7.99, '2007-04-27 02:00:14.996577'); -INSERT INTO dvds.payment VALUES (28694, 581, 1, 7783, 2.99, '2007-04-28 05:43:09.996577'); -INSERT INTO dvds.payment VALUES (28695, 581, 1, 9278, 2.99, '2007-04-30 13:43:45.996577'); -INSERT INTO dvds.payment VALUES (28696, 581, 1, 9449, 1.99, '2007-04-30 20:31:00.996577'); -INSERT INTO dvds.payment VALUES (28697, 582, 1, 3767, 0.99, '2007-04-06 11:35:53.996577'); -INSERT INTO dvds.payment VALUES (28698, 582, 2, 6629, 5.99, '2007-04-12 07:47:01.996577'); -INSERT INTO dvds.payment VALUES (28699, 582, 2, 7126, 4.99, '2007-04-27 04:41:39.996577'); -INSERT INTO dvds.payment VALUES (28700, 582, 2, 7311, 6.99, '2007-04-27 11:31:20.996577'); -INSERT INTO dvds.payment VALUES (28701, 582, 2, 7412, 5.99, '2007-04-27 15:13:00.996577'); -INSERT INTO dvds.payment VALUES (28702, 582, 1, 7575, 2.99, '2007-04-27 21:22:18.996577'); -INSERT INTO dvds.payment VALUES (28703, 582, 2, 8308, 5.99, '2007-04-29 01:50:41.996577'); -INSERT INTO dvds.payment VALUES (28704, 582, 1, 8554, 2.99, '2007-04-29 09:44:55.996577'); -INSERT INTO dvds.payment VALUES (28705, 582, 1, 8778, 6.99, '2007-04-29 18:42:51.996577'); -INSERT INTO dvds.payment VALUES (28706, 582, 1, 9768, 9.99, '2007-04-30 08:17:07.996577'); -INSERT INTO dvds.payment VALUES (28707, 583, 1, 3779, 2.99, '2007-04-06 12:15:02.996577'); -INSERT INTO dvds.payment VALUES (28708, 583, 1, 3842, 4.99, '2007-04-06 15:02:58.996577'); -INSERT INTO dvds.payment VALUES (28709, 583, 2, 3991, 9.99, '2007-04-06 22:02:07.996577'); -INSERT INTO dvds.payment VALUES (28710, 583, 1, 4464, 4.99, '2007-04-07 22:35:44.996577'); -INSERT INTO dvds.payment VALUES (28711, 583, 1, 5462, 0.99, '2007-04-09 21:25:19.996577'); -INSERT INTO dvds.payment VALUES (28712, 583, 1, 5478, 5.99, '2007-04-09 22:13:41.996577'); -INSERT INTO dvds.payment VALUES (28713, 583, 2, 5747, 7.99, '2007-04-10 10:43:59.996577'); -INSERT INTO dvds.payment VALUES (28714, 583, 2, 6684, 6.99, '2007-04-12 10:43:08.996577'); -INSERT INTO dvds.payment VALUES (28715, 583, 1, 7401, 5.99, '2007-04-27 14:46:21.996577'); -INSERT INTO dvds.payment VALUES (28716, 583, 2, 8568, 7.99, '2007-04-29 10:06:48.996577'); -INSERT INTO dvds.payment VALUES (28717, 583, 1, 9550, 7.99, '2007-04-30 00:26:00.996577'); -INSERT INTO dvds.payment VALUES (28718, 583, 2, 9808, 1.99, '2007-04-30 09:45:48.996577'); -INSERT INTO dvds.payment VALUES (28719, 584, 2, 3741, 2.99, '2007-04-06 10:28:44.996577'); -INSERT INTO dvds.payment VALUES (28720, 584, 2, 3895, 7.99, '2007-04-06 17:32:50.996577'); -INSERT INTO dvds.payment VALUES (28721, 584, 1, 4410, 0.99, '2007-04-07 20:16:42.996577'); -INSERT INTO dvds.payment VALUES (28722, 584, 1, 4977, 0.99, '2007-04-08 22:44:16.996577'); -INSERT INTO dvds.payment VALUES (28723, 584, 2, 6954, 0.99, '2007-04-26 22:23:39.996577'); -INSERT INTO dvds.payment VALUES (28724, 584, 1, 7186, 2.99, '2007-04-27 06:54:38.996577'); -INSERT INTO dvds.payment VALUES (28725, 584, 1, 7372, 4.99, '2007-04-27 13:47:08.996577'); -INSERT INTO dvds.payment VALUES (28726, 584, 1, 7659, 4.99, '2007-04-28 00:38:11.996577'); -INSERT INTO dvds.payment VALUES (28727, 584, 2, 8879, 4.99, '2007-04-29 22:44:28.996577'); -INSERT INTO dvds.payment VALUES (28728, 584, 2, 9451, 3.99, '2007-04-30 20:38:43.996577'); -INSERT INTO dvds.payment VALUES (28729, 584, 1, 9719, 5.99, '2007-04-30 06:53:39.996577'); -INSERT INTO dvds.payment VALUES (28730, 584, 2, 10073, 2.99, '2007-04-30 18:21:41.996577'); -INSERT INTO dvds.payment VALUES (28731, 585, 2, 4156, 4.99, '2007-04-07 07:32:17.996577'); -INSERT INTO dvds.payment VALUES (28732, 585, 2, 4579, 4.99, '2007-04-08 04:30:22.996577'); -INSERT INTO dvds.payment VALUES (28733, 585, 1, 4684, 9.99, '2007-04-08 09:09:32.996577'); -INSERT INTO dvds.payment VALUES (28734, 585, 2, 5284, 2.99, '2007-04-09 13:36:47.996577'); -INSERT INTO dvds.payment VALUES (28735, 585, 2, 5950, 4.99, '2007-04-10 21:42:11.996577'); -INSERT INTO dvds.payment VALUES (28736, 585, 2, 6733, 6.99, '2007-04-12 12:32:27.996577'); -INSERT INTO dvds.payment VALUES (28737, 585, 1, 7131, 2.99, '2007-04-27 04:53:32.996577'); -INSERT INTO dvds.payment VALUES (28738, 585, 1, 7384, 4.99, '2007-04-27 14:18:11.996577'); -INSERT INTO dvds.payment VALUES (28739, 585, 2, 7409, 4.99, '2007-04-27 15:06:50.996577'); -INSERT INTO dvds.payment VALUES (28740, 585, 2, 8353, 2.99, '2007-04-29 03:20:36.996577'); -INSERT INTO dvds.payment VALUES (28741, 585, 2, 9407, 8.99, '2007-04-30 18:53:50.996577'); -INSERT INTO dvds.payment VALUES (28742, 585, 1, 9590, 3.99, '2007-04-30 01:45:42.996577'); -INSERT INTO dvds.payment VALUES (28743, 585, 1, 9860, 6.99, '2007-04-30 11:31:50.996577'); -INSERT INTO dvds.payment VALUES (28744, 586, 2, 3487, 6.99, '2007-04-05 21:59:02.996577'); -INSERT INTO dvds.payment VALUES (28745, 586, 2, 3733, 4.99, '2007-04-06 10:02:21.996577'); -INSERT INTO dvds.payment VALUES (28746, 586, 2, 5382, 2.99, '2007-04-09 17:41:23.996577'); -INSERT INTO dvds.payment VALUES (28747, 586, 1, 6679, 2.99, '2007-04-12 10:29:33.996577'); -INSERT INTO dvds.payment VALUES (28748, 586, 2, 9786, 2.99, '2007-04-30 08:53:47.996577'); -INSERT INTO dvds.payment VALUES (28749, 586, 2, 9896, 2.99, '2007-04-30 12:38:14.996577'); -INSERT INTO dvds.payment VALUES (28750, 587, 2, 3562, 2.99, '2007-04-06 01:23:02.996577'); -INSERT INTO dvds.payment VALUES (28751, 587, 2, 3969, 0.99, '2007-04-06 21:16:25.996577'); -INSERT INTO dvds.payment VALUES (28752, 587, 2, 5243, 3.99, '2007-04-09 11:50:34.996577'); -INSERT INTO dvds.payment VALUES (28753, 587, 1, 6639, 0.99, '2007-04-12 08:29:10.996577'); -INSERT INTO dvds.payment VALUES (28754, 587, 2, 6665, 6.99, '2007-04-12 09:57:40.996577'); -INSERT INTO dvds.payment VALUES (28755, 587, 1, 7501, 8.99, '2007-04-27 18:45:25.996577'); -INSERT INTO dvds.payment VALUES (28756, 587, 2, 8776, 5.99, '2007-04-29 18:35:32.996577'); -INSERT INTO dvds.payment VALUES (28757, 587, 2, 9720, 6.99, '2007-04-30 06:53:47.996577'); -INSERT INTO dvds.payment VALUES (28758, 587, 2, 9785, 4.99, '2007-04-30 08:50:41.996577'); -INSERT INTO dvds.payment VALUES (28759, 587, 2, 9909, 5.99, '2007-04-30 13:12:00.996577'); -INSERT INTO dvds.payment VALUES (28760, 588, 1, 3628, 4.99, '2007-04-06 04:48:09.996577'); -INSERT INTO dvds.payment VALUES (28761, 588, 1, 4101, 0.99, '2007-04-07 04:53:37.996577'); -INSERT INTO dvds.payment VALUES (28762, 588, 2, 4207, 5.99, '2007-04-07 10:01:11.996577'); -INSERT INTO dvds.payment VALUES (28763, 588, 2, 5203, 2.99, '2007-04-09 09:22:25.996577'); -INSERT INTO dvds.payment VALUES (28764, 588, 1, 5335, 4.99, '2007-04-09 15:29:15.996577'); -INSERT INTO dvds.payment VALUES (28765, 588, 1, 6368, 4.99, '2007-04-11 19:47:27.996577'); -INSERT INTO dvds.payment VALUES (28766, 588, 2, 7377, 2.99, '2007-04-27 13:59:54.996577'); -INSERT INTO dvds.payment VALUES (28767, 588, 2, 7903, 2.99, '2007-04-28 09:49:02.996577'); -INSERT INTO dvds.payment VALUES (28768, 588, 1, 8421, 4.99, '2007-04-29 05:29:13.996577'); -INSERT INTO dvds.payment VALUES (28769, 588, 1, 8429, 2.99, '2007-04-29 05:40:15.996577'); -INSERT INTO dvds.payment VALUES (28770, 588, 2, 8519, 2.99, '2007-04-29 08:38:09.996577'); -INSERT INTO dvds.payment VALUES (28771, 588, 1, 8769, 2.99, '2007-04-29 18:13:59.996577'); -INSERT INTO dvds.payment VALUES (28772, 588, 2, 9326, 2.99, '2007-04-30 15:58:29.996577'); -INSERT INTO dvds.payment VALUES (28773, 588, 2, 9370, 4.99, '2007-04-30 17:25:55.996577'); -INSERT INTO dvds.payment VALUES (28774, 589, 2, 4986, 2.99, '2007-04-08 23:12:59.996577'); -INSERT INTO dvds.payment VALUES (28775, 589, 1, 5951, 0.99, '2007-04-10 21:42:55.996577'); -INSERT INTO dvds.payment VALUES (28776, 589, 2, 6177, 4.99, '2007-04-11 09:22:15.996577'); -INSERT INTO dvds.payment VALUES (28777, 589, 2, 6247, 3.99, '2007-04-11 13:28:31.996577'); -INSERT INTO dvds.payment VALUES (28778, 589, 2, 7250, 0.99, '2007-04-27 09:12:35.996577'); -INSERT INTO dvds.payment VALUES (28779, 589, 2, 7431, 3.99, '2007-04-27 15:55:53.996577'); -INSERT INTO dvds.payment VALUES (28780, 589, 2, 7948, 9.99, '2007-04-28 11:34:42.996577'); -INSERT INTO dvds.payment VALUES (28781, 589, 2, 8056, 0.99, '2007-04-28 15:32:41.996577'); -INSERT INTO dvds.payment VALUES (28782, 589, 1, 8374, 3.99, '2007-04-29 03:52:28.996577'); -INSERT INTO dvds.payment VALUES (28783, 589, 1, 9153, 4.99, '2007-04-30 09:26:42.996577'); -INSERT INTO dvds.payment VALUES (28784, 590, 2, 4685, 4.99, '2007-04-08 09:13:39.996577'); -INSERT INTO dvds.payment VALUES (28785, 590, 1, 4710, 2.99, '2007-04-08 10:33:19.996577'); -INSERT INTO dvds.payment VALUES (28786, 590, 2, 4722, 4.99, '2007-04-08 11:10:53.996577'); -INSERT INTO dvds.payment VALUES (28787, 590, 1, 5165, 0.99, '2007-04-09 07:37:19.996577'); -INSERT INTO dvds.payment VALUES (28788, 590, 1, 5529, 2.99, '2007-04-10 00:39:39.996577'); -INSERT INTO dvds.payment VALUES (28789, 590, 1, 5991, 4.99, '2007-04-10 23:32:04.996577'); -INSERT INTO dvds.payment VALUES (28790, 590, 2, 6232, 4.99, '2007-04-11 12:36:53.996577'); -INSERT INTO dvds.payment VALUES (28791, 590, 2, 6492, 4.99, '2007-04-12 00:57:06.996577'); -INSERT INTO dvds.payment VALUES (28792, 590, 1, 7010, 4.99, '2007-04-27 00:24:27.996577'); -INSERT INTO dvds.payment VALUES (28793, 590, 2, 7665, 2.99, '2007-04-28 00:56:56.996577'); -INSERT INTO dvds.payment VALUES (28794, 590, 1, 8195, 5.99, '2007-04-28 21:21:24.996577'); -INSERT INTO dvds.payment VALUES (28795, 590, 1, 8801, 4.99, '2007-04-29 19:53:48.996577'); -INSERT INTO dvds.payment VALUES (28796, 590, 2, 9126, 0.99, '2007-04-30 08:12:41.996577'); -INSERT INTO dvds.payment VALUES (28797, 590, 1, 9884, 4.99, '2007-04-30 12:24:50.996577'); -INSERT INTO dvds.payment VALUES (28798, 591, 1, 3636, 0.99, '2007-04-06 05:32:18.996577'); -INSERT INTO dvds.payment VALUES (28799, 591, 2, 4383, 11.99, '2007-04-07 19:14:17.996577'); -INSERT INTO dvds.payment VALUES (28800, 591, 1, 4581, 6.99, '2007-04-08 04:33:32.996577'); -INSERT INTO dvds.payment VALUES (28801, 591, 1, 5704, 5.99, '2007-04-10 08:34:55.996577'); -INSERT INTO dvds.payment VALUES (28802, 591, 1, 5759, 6.99, '2007-04-10 11:11:48.996577'); -INSERT INTO dvds.payment VALUES (28803, 591, 1, 7118, 8.99, '2007-04-27 04:22:16.996577'); -INSERT INTO dvds.payment VALUES (28804, 591, 1, 7212, 2.99, '2007-04-27 07:49:48.996577'); -INSERT INTO dvds.payment VALUES (28805, 591, 2, 7511, 4.99, '2007-04-27 19:07:06.996577'); -INSERT INTO dvds.payment VALUES (28806, 591, 1, 7549, 3.99, '2007-04-27 20:21:47.996577'); -INSERT INTO dvds.payment VALUES (28807, 591, 2, 7741, 0.99, '2007-04-28 03:54:21.996577'); -INSERT INTO dvds.payment VALUES (28808, 591, 1, 7997, 4.99, '2007-04-28 13:30:51.996577'); -INSERT INTO dvds.payment VALUES (28809, 591, 1, 8149, 3.99, '2007-04-28 19:16:38.996577'); -INSERT INTO dvds.payment VALUES (28810, 591, 2, 8666, 5.99, '2007-04-29 14:08:04.996577'); -INSERT INTO dvds.payment VALUES (28811, 591, 2, 8819, 4.99, '2007-04-29 20:42:52.996577'); -INSERT INTO dvds.payment VALUES (28812, 591, 1, 9684, 0.99, '2007-04-30 05:16:59.996577'); -INSERT INTO dvds.payment VALUES (28813, 592, 2, 3560, 2.99, '2007-04-06 01:20:03.996577'); -INSERT INTO dvds.payment VALUES (28814, 592, 1, 3973, 11.99, '2007-04-06 21:26:57.996577'); -INSERT INTO dvds.payment VALUES (28815, 592, 1, 4129, 1.99, '2007-04-07 06:05:29.996577'); -INSERT INTO dvds.payment VALUES (28816, 592, 1, 4145, 9.99, '2007-04-07 06:55:05.996577'); -INSERT INTO dvds.payment VALUES (28817, 592, 1, 4460, 0.99, '2007-04-07 22:18:40.996577'); -INSERT INTO dvds.payment VALUES (28818, 592, 1, 4518, 2.99, '2007-04-08 01:17:02.996577'); -INSERT INTO dvds.payment VALUES (28819, 592, 1, 6937, 0.99, '2007-04-26 21:44:16.996577'); -INSERT INTO dvds.payment VALUES (28820, 592, 2, 7173, 0.99, '2007-04-27 06:27:50.996577'); -INSERT INTO dvds.payment VALUES (28821, 592, 1, 7278, 3.99, '2007-04-27 10:19:00.996577'); -INSERT INTO dvds.payment VALUES (28822, 592, 2, 7364, 4.99, '2007-04-27 13:27:06.996577'); -INSERT INTO dvds.payment VALUES (28823, 592, 1, 8730, 2.99, '2007-04-29 16:52:00.996577'); -INSERT INTO dvds.payment VALUES (28824, 592, 2, 8773, 0.99, '2007-04-29 18:24:00.996577'); -INSERT INTO dvds.payment VALUES (28825, 592, 1, 9268, 4.99, '2007-04-30 13:30:56.996577'); -INSERT INTO dvds.payment VALUES (28826, 592, 1, 9437, 3.99, '2007-04-30 20:04:30.996577'); -INSERT INTO dvds.payment VALUES (28827, 592, 2, 9666, 6.99, '2007-04-30 04:49:24.996577'); -INSERT INTO dvds.payment VALUES (28828, 593, 2, 3542, 2.99, '2007-04-06 00:20:08.996577'); -INSERT INTO dvds.payment VALUES (28829, 593, 2, 4075, 2.99, '2007-04-07 03:20:10.996577'); -INSERT INTO dvds.payment VALUES (28830, 593, 2, 4280, 3.99, '2007-04-07 13:37:57.996577'); -INSERT INTO dvds.payment VALUES (28831, 593, 2, 4623, 0.99, '2007-04-08 06:31:48.996577'); -INSERT INTO dvds.payment VALUES (28832, 593, 2, 4781, 4.99, '2007-04-08 14:35:21.996577'); -INSERT INTO dvds.payment VALUES (28833, 593, 2, 4867, 0.99, '2007-04-08 17:39:18.996577'); -INSERT INTO dvds.payment VALUES (28834, 593, 1, 6386, 2.99, '2007-04-11 20:43:23.996577'); -INSERT INTO dvds.payment VALUES (28835, 593, 1, 6731, 2.99, '2007-04-12 12:26:53.996577'); -INSERT INTO dvds.payment VALUES (28836, 593, 2, 7958, 4.99, '2007-04-28 12:03:00.996577'); -INSERT INTO dvds.payment VALUES (28837, 593, 1, 8497, 2.99, '2007-04-29 07:35:29.996577'); -INSERT INTO dvds.payment VALUES (28838, 593, 2, 9329, 6.99, '2007-04-30 16:11:04.996577'); -INSERT INTO dvds.payment VALUES (28839, 593, 1, 9483, 6.99, '2007-04-30 21:59:57.996577'); -INSERT INTO dvds.payment VALUES (28840, 594, 2, 3474, 0.99, '2007-04-05 21:28:19.996577'); -INSERT INTO dvds.payment VALUES (28841, 594, 1, 3546, 4.99, '2007-04-06 00:46:20.996577'); -INSERT INTO dvds.payment VALUES (28842, 594, 2, 3960, 2.99, '2007-04-06 20:37:19.996577'); -INSERT INTO dvds.payment VALUES (28843, 594, 1, 4037, 5.99, '2007-04-07 01:21:18.996577'); -INSERT INTO dvds.payment VALUES (28844, 594, 1, 4154, 3.99, '2007-04-07 07:26:49.996577'); -INSERT INTO dvds.payment VALUES (28845, 594, 2, 5386, 2.99, '2007-04-09 17:47:35.996577'); -INSERT INTO dvds.payment VALUES (28846, 594, 1, 6473, 6.99, '2007-04-12 00:04:06.996577'); -INSERT INTO dvds.payment VALUES (28847, 594, 1, 7533, 8.99, '2007-04-27 19:52:59.996577'); -INSERT INTO dvds.payment VALUES (28848, 594, 1, 8567, 1.99, '2007-04-29 10:05:56.996577'); -INSERT INTO dvds.payment VALUES (28849, 594, 1, 8603, 2.99, '2007-04-29 11:35:33.996577'); -INSERT INTO dvds.payment VALUES (28850, 594, 2, 8820, 5.99, '2007-04-29 20:43:22.996577'); -INSERT INTO dvds.payment VALUES (28851, 594, 1, 9545, 7.99, '2007-04-30 00:14:50.996577'); -INSERT INTO dvds.payment VALUES (28852, 594, 1, 9698, 3.99, '2007-04-30 05:53:01.996577'); -INSERT INTO dvds.payment VALUES (28853, 594, 2, 9802, 4.99, '2007-04-30 09:32:46.996577'); -INSERT INTO dvds.payment VALUES (28854, 595, 1, 3789, 9.99, '2007-04-06 12:30:52.996577'); -INSERT INTO dvds.payment VALUES (28855, 595, 1, 4017, 4.99, '2007-04-06 23:36:44.996577'); -INSERT INTO dvds.payment VALUES (28856, 595, 1, 4241, 4.99, '2007-04-07 12:07:26.996577'); -INSERT INTO dvds.payment VALUES (28857, 595, 2, 4775, 2.99, '2007-04-08 14:12:31.996577'); -INSERT INTO dvds.payment VALUES (28858, 595, 1, 5631, 1.99, '2007-04-10 04:44:11.996577'); -INSERT INTO dvds.payment VALUES (28859, 595, 1, 5952, 1.99, '2007-04-10 21:46:46.996577'); -INSERT INTO dvds.payment VALUES (28860, 595, 1, 6105, 6.99, '2007-04-11 05:31:45.996577'); -INSERT INTO dvds.payment VALUES (28861, 595, 1, 6704, 6.99, '2007-04-12 11:18:50.996577'); -INSERT INTO dvds.payment VALUES (28862, 595, 1, 7086, 4.99, '2007-04-27 03:08:12.996577'); -INSERT INTO dvds.payment VALUES (28863, 595, 2, 7307, 0.99, '2007-04-27 11:27:36.996577'); -INSERT INTO dvds.payment VALUES (28864, 595, 1, 7396, 4.99, '2007-04-27 14:32:19.996577'); -INSERT INTO dvds.payment VALUES (28865, 595, 2, 7490, 3.99, '2007-04-27 18:16:38.996577'); -INSERT INTO dvds.payment VALUES (28866, 595, 1, 9152, 2.99, '2007-04-30 09:19:53.996577'); -INSERT INTO dvds.payment VALUES (28867, 595, 2, 9223, 2.99, '2007-04-30 11:51:46.996577'); -INSERT INTO dvds.payment VALUES (28868, 595, 1, 9354, 4.99, '2007-04-30 17:01:17.996577'); -INSERT INTO dvds.payment VALUES (28869, 595, 2, 9497, 0.99, '2007-04-30 22:25:20.996577'); -INSERT INTO dvds.payment VALUES (28870, 595, 2, 9542, 4.99, '2007-04-30 00:10:14.996577'); -INSERT INTO dvds.payment VALUES (28871, 595, 1, 9631, 2.99, '2007-04-30 03:30:26.996577'); -INSERT INTO dvds.payment VALUES (28872, 595, 2, 9826, 10.99, '2007-04-30 10:20:12.996577'); -INSERT INTO dvds.payment VALUES (28873, 596, 2, 5742, 3.99, '2007-04-10 10:24:44.996577'); -INSERT INTO dvds.payment VALUES (28874, 596, 1, 6015, 2.99, '2007-04-11 00:32:38.996577'); -INSERT INTO dvds.payment VALUES (28875, 596, 1, 6017, 0.99, '2007-04-11 00:33:58.996577'); -INSERT INTO dvds.payment VALUES (28876, 596, 1, 6197, 4.99, '2007-04-11 10:38:17.996577'); -INSERT INTO dvds.payment VALUES (28877, 596, 2, 6883, 4.99, '2007-04-12 19:19:14.996577'); -INSERT INTO dvds.payment VALUES (28878, 596, 1, 10094, 3.99, '2007-04-30 18:59:44.996577'); -INSERT INTO dvds.payment VALUES (28879, 597, 1, 5093, 0.99, '2007-04-09 04:27:38.996577'); -INSERT INTO dvds.payment VALUES (28880, 597, 1, 5348, 4.99, '2007-04-09 16:02:37.996577'); -INSERT INTO dvds.payment VALUES (28881, 597, 2, 5732, 2.99, '2007-04-10 10:04:58.996577'); -INSERT INTO dvds.payment VALUES (28882, 597, 1, 6508, 2.99, '2007-04-12 02:03:16.996577'); -INSERT INTO dvds.payment VALUES (28883, 597, 2, 7968, 4.99, '2007-04-28 12:26:01.996577'); -INSERT INTO dvds.payment VALUES (28884, 597, 2, 8948, 4.99, '2007-04-30 01:44:44.996577'); -INSERT INTO dvds.payment VALUES (28885, 597, 2, 10021, 4.99, '2007-04-30 16:53:05.996577'); -INSERT INTO dvds.payment VALUES (28886, 597, 1, 10214, 0.99, '2007-04-30 23:32:41.996577'); -INSERT INTO dvds.payment VALUES (28887, 598, 1, 3648, 0.99, '2007-04-06 05:59:07.996577'); -INSERT INTO dvds.payment VALUES (28888, 598, 2, 3950, 6.99, '2007-04-06 20:17:10.996577'); -INSERT INTO dvds.payment VALUES (28889, 598, 1, 3972, 4.99, '2007-04-06 21:22:23.996577'); -INSERT INTO dvds.payment VALUES (28890, 598, 1, 4181, 4.99, '2007-04-07 08:56:20.996577'); -INSERT INTO dvds.payment VALUES (28891, 598, 2, 5688, 5.99, '2007-04-10 07:44:34.996577'); -INSERT INTO dvds.payment VALUES (28892, 598, 1, 6519, 4.99, '2007-04-12 02:29:02.996577'); -INSERT INTO dvds.payment VALUES (28893, 598, 2, 6528, 4.99, '2007-04-12 02:58:10.996577'); -INSERT INTO dvds.payment VALUES (28894, 598, 2, 6575, 0.99, '2007-04-12 04:41:19.996577'); -INSERT INTO dvds.payment VALUES (28895, 598, 2, 6660, 3.99, '2007-04-12 09:48:38.996577'); -INSERT INTO dvds.payment VALUES (28896, 598, 2, 7201, 6.99, '2007-04-27 07:26:06.996577'); -INSERT INTO dvds.payment VALUES (28897, 598, 2, 7354, 0.99, '2007-04-27 13:10:37.996577'); -INSERT INTO dvds.payment VALUES (28898, 598, 1, 7998, 0.99, '2007-04-28 13:37:14.996577'); -INSERT INTO dvds.payment VALUES (28899, 598, 2, 8436, 0.99, '2007-04-29 05:49:46.996577'); -INSERT INTO dvds.payment VALUES (28900, 598, 1, 8511, 5.99, '2007-04-29 08:11:08.996577'); -INSERT INTO dvds.payment VALUES (28901, 598, 1, 8939, 4.99, '2007-04-30 01:25:19.996577'); -INSERT INTO dvds.payment VALUES (28902, 598, 1, 10054, 4.99, '2007-04-30 17:44:18.996577'); -INSERT INTO dvds.payment VALUES (28903, 599, 1, 5065, 0.99, '2007-04-09 03:10:26.996577'); -INSERT INTO dvds.payment VALUES (28904, 599, 1, 5843, 2.99, '2007-04-10 15:42:53.996577'); -INSERT INTO dvds.payment VALUES (28905, 599, 2, 6800, 9.99, '2007-04-12 15:32:22.996577'); -INSERT INTO dvds.payment VALUES (28906, 599, 2, 6895, 2.99, '2007-04-12 19:52:25.996577'); -INSERT INTO dvds.payment VALUES (28907, 599, 1, 8965, 6.99, '2007-04-30 02:21:03.996577'); -INSERT INTO dvds.payment VALUES (28908, 599, 2, 9630, 2.99, '2007-04-30 03:25:33.996577'); -INSERT INTO dvds.payment VALUES (28909, 202, 1, 3861, 8.99, '2007-04-06 15:53:15.996577'); -INSERT INTO dvds.payment VALUES (28910, 599, 2, 9679, 2.99, '2007-04-30 05:09:45.996577'); -INSERT INTO dvds.payment VALUES (28911, 202, 2, 4567, 4.99, '2007-04-08 03:48:30.996577'); -INSERT INTO dvds.payment VALUES (28912, 202, 2, 5194, 2.99, '2007-04-09 09:00:00.996577'); -INSERT INTO dvds.payment VALUES (28913, 202, 1, 5297, 2.99, '2007-04-09 14:00:55.996577'); -INSERT INTO dvds.payment VALUES (28914, 202, 2, 5838, 2.99, '2007-04-10 15:33:22.996577'); -INSERT INTO dvds.payment VALUES (28915, 202, 1, 7613, 2.99, '2007-04-27 22:42:24.996577'); -INSERT INTO dvds.payment VALUES (28916, 202, 1, 8351, 2.99, '2007-04-29 03:19:19.996577'); -INSERT INTO dvds.payment VALUES (28917, 202, 1, 8779, 2.99, '2007-04-29 18:43:26.996577'); -INSERT INTO dvds.payment VALUES (28918, 202, 1, 8830, 2.99, '2007-04-29 21:03:01.996577'); -INSERT INTO dvds.payment VALUES (28919, 202, 2, 8930, 0.99, '2007-04-30 00:57:04.996577'); -INSERT INTO dvds.payment VALUES (28920, 202, 2, 9057, 2.99, '2007-04-30 05:42:44.996577'); -INSERT INTO dvds.payment VALUES (28921, 202, 2, 9467, 8.99, '2007-04-30 21:14:00.996577'); -INSERT INTO dvds.payment VALUES (28922, 202, 2, 9751, 4.99, '2007-04-30 07:49:16.996577'); -INSERT INTO dvds.payment VALUES (28923, 203, 2, 4136, 2.99, '2007-04-07 06:44:18.996577'); -INSERT INTO dvds.payment VALUES (28924, 203, 2, 5579, 5.99, '2007-04-10 02:32:55.996577'); -INSERT INTO dvds.payment VALUES (28925, 203, 2, 7787, 6.99, '2007-04-28 05:47:28.996577'); -INSERT INTO dvds.payment VALUES (28926, 203, 1, 8039, 0.99, '2007-04-28 15:03:42.996577'); -INSERT INTO dvds.payment VALUES (28927, 203, 1, 8463, 4.99, '2007-04-29 06:46:17.996577'); -INSERT INTO dvds.payment VALUES (28928, 203, 1, 8792, 7.99, '2007-04-29 19:24:40.996577'); -INSERT INTO dvds.payment VALUES (28929, 203, 2, 9015, 10.99, '2007-04-30 03:49:58.996577'); -INSERT INTO dvds.payment VALUES (28930, 204, 1, 4043, 0.99, '2007-04-07 01:38:16.996577'); -INSERT INTO dvds.payment VALUES (28931, 204, 1, 4979, 4.99, '2007-04-08 22:53:00.996577'); -INSERT INTO dvds.payment VALUES (28932, 204, 2, 5145, 0.99, '2007-04-09 06:41:51.996577'); -INSERT INTO dvds.payment VALUES (28933, 204, 1, 5619, 2.99, '2007-04-10 03:57:59.996577'); -INSERT INTO dvds.payment VALUES (28934, 204, 2, 6004, 4.99, '2007-04-11 00:02:51.996577'); -INSERT INTO dvds.payment VALUES (28935, 204, 2, 6225, 2.99, '2007-04-11 12:13:40.996577'); -INSERT INTO dvds.payment VALUES (28936, 204, 2, 6631, 0.99, '2007-04-12 08:00:09.996577'); -INSERT INTO dvds.payment VALUES (28937, 204, 1, 6694, 6.99, '2007-04-12 11:07:49.996577'); -INSERT INTO dvds.payment VALUES (28938, 204, 2, 6871, 2.99, '2007-04-12 18:42:15.996577'); -INSERT INTO dvds.payment VALUES (28939, 204, 1, 7392, 4.99, '2007-04-27 14:29:31.996577'); -INSERT INTO dvds.payment VALUES (28940, 204, 2, 9005, 0.99, '2007-04-30 03:33:24.996577'); -INSERT INTO dvds.payment VALUES (28941, 204, 1, 9394, 5.99, '2007-04-30 18:34:50.996577'); -INSERT INTO dvds.payment VALUES (28942, 204, 2, 9906, 4.99, '2007-04-30 13:06:38.996577'); -INSERT INTO dvds.payment VALUES (28943, 204, 2, 10042, 2.99, '2007-04-30 17:29:51.996577'); -INSERT INTO dvds.payment VALUES (28944, 205, 1, 3601, 7.99, '2007-04-06 03:48:51.996577'); -INSERT INTO dvds.payment VALUES (28945, 205, 2, 4230, 3.99, '2007-04-07 11:15:13.996577'); -INSERT INTO dvds.payment VALUES (28946, 205, 2, 4377, 7.99, '2007-04-07 18:57:23.996577'); -INSERT INTO dvds.payment VALUES (28947, 205, 1, 4729, 4.99, '2007-04-08 11:28:06.996577'); -INSERT INTO dvds.payment VALUES (28948, 205, 1, 7736, 2.99, '2007-04-28 03:40:30.996577'); -INSERT INTO dvds.payment VALUES (28949, 205, 2, 7976, 7.99, '2007-04-28 12:41:50.996577'); -INSERT INTO dvds.payment VALUES (28950, 205, 2, 8896, 4.99, '2007-04-29 23:19:47.996577'); -INSERT INTO dvds.payment VALUES (28951, 205, 2, 10086, 4.99, '2007-04-30 18:42:34.996577'); -INSERT INTO dvds.payment VALUES (28952, 206, 1, 3533, 5.99, '2007-04-05 23:55:10.996577'); -INSERT INTO dvds.payment VALUES (28953, 206, 2, 3831, 0.99, '2007-04-06 14:35:01.996577'); -INSERT INTO dvds.payment VALUES (28954, 206, 1, 3847, 4.99, '2007-04-06 15:13:07.996577'); -INSERT INTO dvds.payment VALUES (28955, 206, 2, 4068, 4.99, '2007-04-07 03:03:04.996577'); -INSERT INTO dvds.payment VALUES (28956, 206, 2, 4107, 4.99, '2007-04-07 05:04:58.996577'); -INSERT INTO dvds.payment VALUES (28957, 206, 2, 4823, 4.99, '2007-04-08 15:57:20.996577'); -INSERT INTO dvds.payment VALUES (28958, 206, 1, 6139, 3.99, '2007-04-11 07:07:59.996577'); -INSERT INTO dvds.payment VALUES (28959, 206, 1, 6420, 6.99, '2007-04-11 22:07:15.996577'); -INSERT INTO dvds.payment VALUES (28960, 206, 1, 7222, 4.99, '2007-04-27 08:07:09.996577'); -INSERT INTO dvds.payment VALUES (28961, 206, 2, 7541, 4.99, '2007-04-27 20:08:31.996577'); -INSERT INTO dvds.payment VALUES (28962, 206, 1, 8217, 5.99, '2007-04-28 22:12:39.996577'); -INSERT INTO dvds.payment VALUES (28963, 206, 1, 8549, 3.99, '2007-04-29 09:40:39.996577'); -INSERT INTO dvds.payment VALUES (28964, 206, 2, 9474, 2.99, '2007-04-30 21:34:10.996577'); -INSERT INTO dvds.payment VALUES (28965, 207, 2, 3584, 2.99, '2007-04-06 02:45:09.996577'); -INSERT INTO dvds.payment VALUES (28966, 207, 2, 3687, 9.99, '2007-04-06 08:06:59.996577'); -INSERT INTO dvds.payment VALUES (28967, 207, 1, 4018, 2.99, '2007-04-06 23:38:59.996577'); -INSERT INTO dvds.payment VALUES (28968, 207, 2, 4713, 5.99, '2007-04-08 10:40:59.996577'); -INSERT INTO dvds.payment VALUES (28969, 207, 1, 4816, 0.99, '2007-04-08 15:42:40.996577'); -INSERT INTO dvds.payment VALUES (28970, 207, 2, 5007, 0.99, '2007-04-08 23:54:48.996577'); -INSERT INTO dvds.payment VALUES (28971, 207, 1, 5258, 0.99, '2007-04-09 12:25:22.996577'); -INSERT INTO dvds.payment VALUES (28972, 207, 1, 5259, 4.99, '2007-04-09 12:31:16.996577'); -INSERT INTO dvds.payment VALUES (28973, 207, 2, 5939, 0.99, '2007-04-10 20:58:31.996577'); -INSERT INTO dvds.payment VALUES (28974, 207, 2, 6465, 5.99, '2007-04-11 23:45:37.996577'); -INSERT INTO dvds.payment VALUES (28975, 207, 1, 6537, 0.99, '2007-04-12 03:14:56.996577'); -INSERT INTO dvds.payment VALUES (28976, 207, 2, 7306, 5.99, '2007-04-27 11:25:52.996577'); -INSERT INTO dvds.payment VALUES (28977, 207, 1, 7540, 5.99, '2007-04-27 20:08:21.996577'); -INSERT INTO dvds.payment VALUES (28978, 207, 1, 8800, 5.99, '2007-04-29 19:47:25.996577'); -INSERT INTO dvds.payment VALUES (28979, 207, 2, 9652, 2.99, '2007-04-30 04:18:19.996577'); -INSERT INTO dvds.payment VALUES (28980, 208, 2, 3811, 2.99, '2007-04-06 13:49:03.996577'); -INSERT INTO dvds.payment VALUES (28981, 208, 1, 4354, 5.99, '2007-04-07 17:49:28.996577'); -INSERT INTO dvds.payment VALUES (28982, 208, 2, 4985, 4.99, '2007-04-08 23:04:28.996577'); -INSERT INTO dvds.payment VALUES (28983, 208, 1, 5117, 2.99, '2007-04-09 05:39:48.996577'); -INSERT INTO dvds.payment VALUES (28984, 208, 2, 5693, 2.99, '2007-04-10 08:04:09.996577'); -INSERT INTO dvds.payment VALUES (28985, 208, 2, 6306, 6.99, '2007-04-11 16:32:52.996577'); -INSERT INTO dvds.payment VALUES (28986, 208, 1, 6767, 1.99, '2007-04-12 14:15:21.996577'); -INSERT INTO dvds.payment VALUES (28987, 208, 1, 7315, 0.99, '2007-04-27 11:43:22.996577'); -INSERT INTO dvds.payment VALUES (28988, 208, 1, 7861, 2.99, '2007-04-28 08:30:27.996577'); -INSERT INTO dvds.payment VALUES (28989, 208, 2, 7984, 2.99, '2007-04-28 12:56:17.996577'); -INSERT INTO dvds.payment VALUES (28990, 208, 1, 8742, 1.99, '2007-04-29 17:24:38.996577'); -INSERT INTO dvds.payment VALUES (28991, 208, 2, 9298, 3.99, '2007-04-30 14:56:19.996577'); -INSERT INTO dvds.payment VALUES (28992, 208, 1, 9838, 4.99, '2007-04-30 10:47:15.996577'); -INSERT INTO dvds.payment VALUES (28993, 1, 2, 4526, 5.99, '2007-04-08 01:45:31.996577'); -INSERT INTO dvds.payment VALUES (28994, 1, 1, 4611, 5.99, '2007-04-08 06:02:22.996577'); -INSERT INTO dvds.payment VALUES (28995, 1, 1, 5244, 4.99, '2007-04-09 11:52:33.996577'); -INSERT INTO dvds.payment VALUES (28996, 1, 1, 5326, 4.99, '2007-04-09 15:06:27.996577'); -INSERT INTO dvds.payment VALUES (28997, 1, 1, 6163, 7.99, '2007-04-11 08:42:12.996577'); -INSERT INTO dvds.payment VALUES (28998, 1, 2, 7273, 2.99, '2007-04-27 09:59:48.996577'); -INSERT INTO dvds.payment VALUES (28999, 1, 1, 7841, 4.99, '2007-04-28 07:33:11.996577'); -INSERT INTO dvds.payment VALUES (29000, 1, 2, 8033, 4.99, '2007-04-28 14:46:49.996577'); -INSERT INTO dvds.payment VALUES (29001, 1, 1, 8074, 0.99, '2007-04-28 16:02:05.996577'); -INSERT INTO dvds.payment VALUES (29002, 1, 2, 8116, 0.99, '2007-04-28 17:48:33.996577'); -INSERT INTO dvds.payment VALUES (29003, 1, 2, 8326, 2.99, '2007-04-29 02:27:15.996577'); -INSERT INTO dvds.payment VALUES (29004, 1, 2, 9571, 2.99, '2007-04-30 01:10:44.996577'); -INSERT INTO dvds.payment VALUES (29005, 2, 1, 5636, 2.99, '2007-04-10 04:59:50.996577'); -INSERT INTO dvds.payment VALUES (29006, 2, 1, 5755, 6.99, '2007-04-10 11:07:22.996577'); -INSERT INTO dvds.payment VALUES (29007, 2, 2, 7346, 4.99, '2007-04-27 12:59:08.996577'); -INSERT INTO dvds.payment VALUES (29008, 2, 1, 7376, 5.99, '2007-04-27 13:51:28.996577'); -INSERT INTO dvds.payment VALUES (29009, 2, 2, 7459, 5.99, '2007-04-27 17:08:46.996577'); -INSERT INTO dvds.payment VALUES (29010, 2, 2, 8230, 5.99, '2007-04-28 22:41:25.996577'); -INSERT INTO dvds.payment VALUES (29011, 2, 1, 8598, 2.99, '2007-04-29 11:25:25.996577'); -INSERT INTO dvds.payment VALUES (29012, 2, 2, 8705, 5.99, '2007-04-29 15:42:55.996577'); -INSERT INTO dvds.payment VALUES (29013, 2, 1, 9031, 4.99, '2007-04-30 04:34:36.996577'); -INSERT INTO dvds.payment VALUES (29014, 2, 2, 9236, 10.99, '2007-04-30 12:16:09.996577'); -INSERT INTO dvds.payment VALUES (29015, 2, 2, 9248, 0.99, '2007-04-30 12:42:37.996577'); -INSERT INTO dvds.payment VALUES (29016, 2, 2, 9296, 6.99, '2007-04-30 14:49:39.996577'); -INSERT INTO dvds.payment VALUES (29017, 2, 2, 9465, 6.99, '2007-04-30 21:08:19.996577'); -INSERT INTO dvds.payment VALUES (29018, 2, 1, 10136, 2.99, '2007-04-30 20:27:22.996577'); -INSERT INTO dvds.payment VALUES (29019, 3, 1, 4180, 4.99, '2007-04-07 08:51:51.996577'); -INSERT INTO dvds.payment VALUES (29020, 3, 1, 4725, 4.99, '2007-04-08 11:15:37.996577'); -INSERT INTO dvds.payment VALUES (29021, 3, 1, 7096, 5.99, '2007-04-27 03:23:08.996577'); -INSERT INTO dvds.payment VALUES (29022, 3, 2, 7503, 10.99, '2007-04-27 18:51:38.996577'); -INSERT INTO dvds.payment VALUES (29023, 3, 2, 7703, 7.99, '2007-04-28 02:27:47.996577'); -INSERT INTO dvds.payment VALUES (29024, 3, 2, 7724, 6.99, '2007-04-28 03:14:56.996577'); -INSERT INTO dvds.payment VALUES (29025, 3, 1, 7911, 4.99, '2007-04-28 10:15:11.996577'); -INSERT INTO dvds.payment VALUES (29026, 3, 2, 8086, 4.99, '2007-04-28 16:45:40.996577'); -INSERT INTO dvds.payment VALUES (29027, 3, 1, 8545, 2.99, '2007-04-29 09:35:30.996577'); -INSERT INTO dvds.payment VALUES (29028, 3, 1, 9226, 1.99, '2007-04-30 11:59:46.996577'); -INSERT INTO dvds.payment VALUES (29029, 3, 2, 9443, 3.99, '2007-04-30 20:14:12.996577'); -INSERT INTO dvds.payment VALUES (29030, 3, 1, 9595, 2.99, '2007-04-30 01:56:24.996577'); -INSERT INTO dvds.payment VALUES (29031, 3, 2, 9816, 4.99, '2007-04-30 10:01:24.996577'); -INSERT INTO dvds.payment VALUES (29032, 4, 1, 7660, 2.99, '2007-04-28 00:38:36.996577'); -INSERT INTO dvds.payment VALUES (29033, 4, 2, 7718, 2.99, '2007-04-28 03:06:25.996577'); -INSERT INTO dvds.payment VALUES (29034, 4, 1, 8741, 3.99, '2007-04-29 17:13:23.996577'); -INSERT INTO dvds.payment VALUES (29035, 4, 1, 9100, 5.99, '2007-04-30 07:14:35.996577'); -INSERT INTO dvds.payment VALUES (29036, 4, 1, 9371, 5.99, '2007-04-30 17:26:26.996577'); -INSERT INTO dvds.payment VALUES (29037, 5, 2, 3677, 4.99, '2007-04-06 07:40:24.996577'); -INSERT INTO dvds.payment VALUES (29038, 5, 2, 4889, 2.99, '2007-04-08 18:33:09.996577'); -INSERT INTO dvds.payment VALUES (29039, 5, 1, 5016, 4.99, '2007-04-09 00:26:23.996577'); -INSERT INTO dvds.payment VALUES (29040, 5, 2, 5118, 5.99, '2007-04-09 05:42:18.996577'); -INSERT INTO dvds.payment VALUES (29041, 5, 2, 5156, 1.99, '2007-04-09 07:20:08.996577'); -INSERT INTO dvds.payment VALUES (29042, 5, 2, 5721, 0.99, '2007-04-10 09:38:01.996577'); -INSERT INTO dvds.payment VALUES (29043, 5, 1, 6042, 8.99, '2007-04-11 01:45:30.996577'); -INSERT INTO dvds.payment VALUES (29044, 5, 1, 6663, 3.99, '2007-04-12 09:56:01.996577'); -INSERT INTO dvds.payment VALUES (29045, 5, 2, 6685, 4.99, '2007-04-12 10:44:54.996577'); -INSERT INTO dvds.payment VALUES (29046, 5, 2, 7293, 0.99, '2007-04-27 11:05:54.996577'); -INSERT INTO dvds.payment VALUES (29047, 5, 2, 7652, 0.99, '2007-04-28 00:18:55.996577'); -INSERT INTO dvds.payment VALUES (29048, 5, 2, 7829, 3.99, '2007-04-28 07:12:05.996577'); -INSERT INTO dvds.payment VALUES (29049, 5, 1, 8263, 2.99, '2007-04-28 23:39:49.996577'); -INSERT INTO dvds.payment VALUES (29050, 5, 1, 8978, 1.99, '2007-04-30 02:42:54.996577'); -INSERT INTO dvds.payment VALUES (29051, 5, 1, 9493, 4.99, '2007-04-30 22:20:56.996577'); -INSERT INTO dvds.payment VALUES (29052, 5, 1, 9888, 3.99, '2007-04-30 12:29:19.996577'); -INSERT INTO dvds.payment VALUES (29053, 6, 2, 3983, 0.99, '2007-04-06 21:42:47.996577'); -INSERT INTO dvds.payment VALUES (29054, 6, 2, 4278, 2.99, '2007-04-07 13:21:50.996577'); -INSERT INTO dvds.payment VALUES (29055, 6, 1, 5553, 0.99, '2007-04-10 01:32:01.996577'); -INSERT INTO dvds.payment VALUES (29056, 6, 2, 6211, 5.99, '2007-04-11 11:07:27.996577'); -INSERT INTO dvds.payment VALUES (29057, 6, 1, 6248, 7.99, '2007-04-11 13:30:20.996577'); -INSERT INTO dvds.payment VALUES (29058, 6, 2, 6686, 0.99, '2007-04-12 10:47:04.996577'); -INSERT INTO dvds.payment VALUES (29059, 6, 2, 7099, 2.99, '2007-04-27 03:32:10.996577'); -INSERT INTO dvds.payment VALUES (29060, 6, 2, 7136, 2.99, '2007-04-27 05:06:51.996577'); -INSERT INTO dvds.payment VALUES (29061, 6, 1, 8101, 0.99, '2007-04-28 17:15:49.996577'); -INSERT INTO dvds.payment VALUES (29062, 7, 2, 3639, 5.99, '2007-04-06 05:37:43.996577'); -INSERT INTO dvds.payment VALUES (29063, 7, 2, 4238, 2.99, '2007-04-07 11:50:46.996577'); -INSERT INTO dvds.payment VALUES (29064, 7, 2, 4787, 5.99, '2007-04-08 14:44:30.996577'); -INSERT INTO dvds.payment VALUES (29065, 7, 1, 4856, 4.99, '2007-04-08 17:16:04.996577'); -INSERT INTO dvds.payment VALUES (29066, 7, 1, 5441, 8.99, '2007-04-09 20:20:31.996577'); -INSERT INTO dvds.payment VALUES (29067, 7, 1, 5921, 7.99, '2007-04-10 20:03:38.996577'); -INSERT INTO dvds.payment VALUES (29068, 7, 1, 6174, 1.99, '2007-04-11 09:04:54.996577'); -INSERT INTO dvds.payment VALUES (29069, 7, 1, 6295, 2.99, '2007-04-11 15:59:24.996577'); -INSERT INTO dvds.payment VALUES (29070, 7, 2, 6761, 3.99, '2007-04-12 13:46:08.996577'); -INSERT INTO dvds.payment VALUES (29071, 7, 2, 8422, 5.99, '2007-04-29 05:31:21.996577'); -INSERT INTO dvds.payment VALUES (29072, 7, 2, 9624, 7.99, '2007-04-30 02:58:29.996577'); -INSERT INTO dvds.payment VALUES (29073, 8, 1, 3475, 5.99, '2007-04-05 21:29:47.996577'); -INSERT INTO dvds.payment VALUES (29074, 8, 1, 4003, 0.99, '2007-04-06 22:37:28.996577'); -INSERT INTO dvds.payment VALUES (29075, 8, 2, 4175, 2.99, '2007-04-07 08:30:29.996577'); -INSERT INTO dvds.payment VALUES (29076, 8, 2, 4409, 3.99, '2007-04-07 20:15:55.996577'); -INSERT INTO dvds.payment VALUES (29077, 8, 1, 4503, 3.99, '2007-04-08 00:45:38.996577'); -INSERT INTO dvds.payment VALUES (29078, 8, 1, 5300, 2.99, '2007-04-09 14:09:12.996577'); -INSERT INTO dvds.payment VALUES (29079, 8, 2, 5341, 2.99, '2007-04-09 15:41:49.996577'); -INSERT INTO dvds.payment VALUES (29080, 8, 1, 6375, 4.99, '2007-04-11 20:08:12.996577'); -INSERT INTO dvds.payment VALUES (29081, 8, 1, 6647, 0.99, '2007-04-12 09:12:19.996577'); -INSERT INTO dvds.payment VALUES (29082, 8, 1, 8809, 1.99, '2007-04-29 20:11:15.996577'); -INSERT INTO dvds.payment VALUES (29083, 8, 2, 9629, 2.99, '2007-04-30 03:23:09.996577'); -INSERT INTO dvds.payment VALUES (29084, 8, 2, 10141, 0.99, '2007-04-30 20:36:55.996577'); -INSERT INTO dvds.payment VALUES (29085, 9, 1, 4454, 2.99, '2007-04-07 22:05:26.996577'); -INSERT INTO dvds.payment VALUES (29086, 9, 2, 4748, 0.99, '2007-04-08 12:28:04.996577'); -INSERT INTO dvds.payment VALUES (29087, 9, 1, 4796, 1.99, '2007-04-08 15:04:10.996577'); -INSERT INTO dvds.payment VALUES (29088, 9, 1, 5659, 2.99, '2007-04-10 06:14:06.996577'); -INSERT INTO dvds.payment VALUES (29089, 9, 2, 6019, 4.99, '2007-04-11 00:36:55.996577'); -INSERT INTO dvds.payment VALUES (29090, 9, 1, 6165, 5.99, '2007-04-11 08:45:55.996577'); -INSERT INTO dvds.payment VALUES (29091, 9, 2, 7616, 0.99, '2007-04-27 22:43:52.996577'); -INSERT INTO dvds.payment VALUES (29092, 9, 1, 7801, 2.99, '2007-04-28 06:20:22.996577'); -INSERT INTO dvds.payment VALUES (29093, 9, 1, 9043, 4.99, '2007-04-30 05:02:33.996577'); -INSERT INTO dvds.payment VALUES (29094, 10, 2, 3790, 3.99, '2007-04-06 12:42:11.996577'); -INSERT INTO dvds.payment VALUES (29095, 10, 2, 4042, 4.99, '2007-04-07 01:35:06.996577'); -INSERT INTO dvds.payment VALUES (29096, 10, 1, 4255, 1.99, '2007-04-07 12:42:39.996577'); -INSERT INTO dvds.payment VALUES (29097, 10, 1, 5038, 7.99, '2007-04-09 01:41:18.996577'); -INSERT INTO dvds.payment VALUES (29098, 10, 2, 5068, 2.99, '2007-04-09 03:21:44.996577'); -INSERT INTO dvds.payment VALUES (29099, 10, 1, 5444, 0.99, '2007-04-09 20:27:23.996577'); -INSERT INTO dvds.payment VALUES (29100, 10, 1, 5905, 2.99, '2007-04-10 19:09:35.996577'); -INSERT INTO dvds.payment VALUES (29101, 10, 1, 7738, 2.99, '2007-04-28 03:50:08.996577'); -INSERT INTO dvds.payment VALUES (29102, 10, 2, 8001, 6.99, '2007-04-28 13:39:21.996577'); -INSERT INTO dvds.payment VALUES (29103, 10, 2, 8188, 4.99, '2007-04-28 21:02:38.996577'); -INSERT INTO dvds.payment VALUES (29104, 10, 1, 9935, 4.99, '2007-04-30 13:55:33.996577'); -INSERT INTO dvds.payment VALUES (29105, 11, 2, 4608, 2.99, '2007-04-08 05:47:37.996577'); -INSERT INTO dvds.payment VALUES (29106, 11, 1, 4943, 4.99, '2007-04-08 21:11:31.996577'); -INSERT INTO dvds.payment VALUES (29107, 11, 2, 5835, 5.99, '2007-04-10 15:13:24.996577'); -INSERT INTO dvds.payment VALUES (29108, 11, 2, 6146, 6.99, '2007-04-11 07:38:25.996577'); -INSERT INTO dvds.payment VALUES (29109, 11, 1, 7314, 4.99, '2007-04-27 11:41:58.996577'); -INSERT INTO dvds.payment VALUES (29110, 11, 1, 8014, 4.99, '2007-04-28 14:00:33.996577'); -INSERT INTO dvds.payment VALUES (29111, 11, 2, 8100, 2.99, '2007-04-28 17:11:37.996577'); -INSERT INTO dvds.payment VALUES (29112, 11, 2, 8447, 1.99, '2007-04-29 06:06:40.996577'); -INSERT INTO dvds.payment VALUES (29113, 11, 1, 8715, 0.99, '2007-04-29 16:02:11.996577'); -INSERT INTO dvds.payment VALUES (29114, 11, 1, 8950, 9.99, '2007-04-30 01:45:39.996577'); -INSERT INTO dvds.payment VALUES (29115, 11, 2, 9292, 6.99, '2007-04-30 14:36:47.996577'); -INSERT INTO dvds.payment VALUES (29116, 12, 1, 3870, 3.99, '2007-04-06 16:26:20.996577'); -INSERT INTO dvds.payment VALUES (29117, 12, 1, 5071, 0.99, '2007-04-09 03:29:05.996577'); -INSERT INTO dvds.payment VALUES (29118, 12, 1, 5074, 0.99, '2007-04-09 03:34:50.996577'); -INSERT INTO dvds.payment VALUES (29119, 12, 2, 5111, 0.99, '2007-04-09 05:30:45.996577'); -INSERT INTO dvds.payment VALUES (29120, 12, 2, 5242, 3.99, '2007-04-09 11:48:51.996577'); -INSERT INTO dvds.payment VALUES (29121, 12, 1, 6773, 2.99, '2007-04-12 14:24:05.996577'); -INSERT INTO dvds.payment VALUES (29122, 12, 2, 7008, 0.99, '2007-04-27 00:12:29.996577'); -INSERT INTO dvds.payment VALUES (29123, 12, 2, 7279, 0.99, '2007-04-27 10:19:13.996577'); -INSERT INTO dvds.payment VALUES (29124, 12, 2, 8985, 0.99, '2007-04-30 03:03:17.996577'); -INSERT INTO dvds.payment VALUES (29125, 12, 2, 9166, 4.99, '2007-04-30 09:54:54.996577'); -INSERT INTO dvds.payment VALUES (29126, 12, 2, 9238, 5.99, '2007-04-30 12:18:09.996577'); -INSERT INTO dvds.payment VALUES (29127, 12, 1, 9627, 5.99, '2007-04-30 03:11:12.996577'); -INSERT INTO dvds.payment VALUES (29128, 12, 2, 9708, 5.99, '2007-04-30 06:13:59.996577'); -INSERT INTO dvds.payment VALUES (29129, 13, 2, 3946, 2.99, '2007-04-06 20:07:50.996577'); -INSERT INTO dvds.payment VALUES (29130, 13, 1, 6118, 8.99, '2007-04-11 06:11:34.996577'); -INSERT INTO dvds.payment VALUES (29131, 13, 1, 6568, 2.99, '2007-04-12 04:14:13.996577'); -INSERT INTO dvds.payment VALUES (29132, 13, 1, 6870, 0.99, '2007-04-12 18:42:11.996577'); -INSERT INTO dvds.payment VALUES (29133, 13, 1, 6897, 2.99, '2007-04-12 19:59:07.996577'); -INSERT INTO dvds.payment VALUES (29134, 13, 1, 7916, 2.99, '2007-04-28 10:18:19.996577'); -INSERT INTO dvds.payment VALUES (29135, 13, 1, 8277, 2.99, '2007-04-29 00:07:19.996577'); -INSERT INTO dvds.payment VALUES (29136, 13, 2, 8831, 11.99, '2007-04-29 21:06:07.996577'); -INSERT INTO dvds.payment VALUES (29137, 13, 2, 9260, 9.99, '2007-04-30 13:06:48.996577'); -INSERT INTO dvds.payment VALUES (29138, 13, 2, 9434, 0.99, '2007-04-30 19:58:07.996577'); -INSERT INTO dvds.payment VALUES (29139, 13, 1, 9664, 0.99, '2007-04-30 04:40:34.996577'); -INSERT INTO dvds.payment VALUES (29140, 13, 1, 9736, 7.99, '2007-04-30 07:27:06.996577'); -INSERT INTO dvds.payment VALUES (29141, 13, 1, 10003, 4.99, '2007-04-30 16:17:17.996577'); -INSERT INTO dvds.payment VALUES (29142, 14, 1, 3707, 2.99, '2007-04-06 08:50:15.996577'); -INSERT INTO dvds.payment VALUES (29143, 14, 1, 4952, 0.99, '2007-04-08 21:28:33.996577'); -INSERT INTO dvds.payment VALUES (29144, 14, 1, 5104, 0.99, '2007-04-09 05:05:33.996577'); -INSERT INTO dvds.payment VALUES (29145, 14, 2, 5317, 7.99, '2007-04-09 14:38:51.996577'); -INSERT INTO dvds.payment VALUES (29146, 14, 1, 5383, 4.99, '2007-04-09 17:42:58.996577'); -INSERT INTO dvds.payment VALUES (29147, 14, 1, 5565, 7.99, '2007-04-10 01:58:14.996577'); -INSERT INTO dvds.payment VALUES (29148, 14, 1, 8035, 6.99, '2007-04-28 14:51:27.996577'); -INSERT INTO dvds.payment VALUES (29149, 14, 1, 8042, 0.99, '2007-04-28 15:13:37.996577'); -INSERT INTO dvds.payment VALUES (29150, 14, 1, 8548, 3.99, '2007-04-29 09:39:59.996577'); -INSERT INTO dvds.payment VALUES (29151, 14, 2, 8836, 4.99, '2007-04-29 21:14:34.996577'); -INSERT INTO dvds.payment VALUES (29152, 14, 2, 9438, 4.99, '2007-04-30 20:04:41.996577'); -INSERT INTO dvds.payment VALUES (29153, 14, 1, 9592, 2.99, '2007-04-30 01:49:42.996577'); -INSERT INTO dvds.payment VALUES (29154, 15, 1, 3550, 7.99, '2007-04-06 00:57:47.996577'); -INSERT INTO dvds.payment VALUES (29155, 15, 1, 4127, 5.99, '2007-04-07 05:54:45.996577'); -INSERT INTO dvds.payment VALUES (29156, 15, 1, 5717, 2.99, '2007-04-10 09:30:29.996577'); -INSERT INTO dvds.payment VALUES (29157, 15, 2, 5975, 2.99, '2007-04-10 22:42:45.996577'); -INSERT INTO dvds.payment VALUES (29158, 15, 1, 7105, 4.99, '2007-04-27 03:44:03.996577'); -INSERT INTO dvds.payment VALUES (29159, 15, 1, 8193, 0.99, '2007-04-28 21:19:16.996577'); -INSERT INTO dvds.payment VALUES (29160, 15, 2, 8615, 6.99, '2007-04-29 12:04:27.996577'); -INSERT INTO dvds.payment VALUES (29161, 15, 2, 8927, 4.99, '2007-04-30 00:41:57.996577'); -INSERT INTO dvds.payment VALUES (29162, 15, 1, 9987, 2.99, '2007-04-30 15:51:01.996577'); -INSERT INTO dvds.payment VALUES (29163, 401, 1, 4591, 0.99, '2007-04-12 04:54:36.996577'); -INSERT INTO dvds.payment VALUES (29164, 16, 1, 3548, 0.99, '2007-04-06 00:52:05.996577'); -INSERT INTO dvds.payment VALUES (29165, 16, 2, 4219, 2.99, '2007-04-07 10:39:48.996577'); -INSERT INTO dvds.payment VALUES (29166, 16, 2, 4263, 3.99, '2007-04-07 12:53:10.996577'); -INSERT INTO dvds.payment VALUES (29167, 16, 2, 4517, 4.99, '2007-04-08 01:13:45.996577'); -INSERT INTO dvds.payment VALUES (29168, 16, 1, 6100, 4.99, '2007-04-11 05:08:57.996577'); -INSERT INTO dvds.payment VALUES (29169, 16, 2, 7489, 0.99, '2007-04-27 18:08:04.996577'); -INSERT INTO dvds.payment VALUES (29170, 16, 2, 7552, 2.99, '2007-04-27 20:32:07.996577'); -INSERT INTO dvds.payment VALUES (29171, 16, 2, 8452, 5.99, '2007-04-29 06:13:26.996577'); -INSERT INTO dvds.payment VALUES (29172, 16, 2, 9158, 0.99, '2007-04-30 09:40:29.996577'); -INSERT INTO dvds.payment VALUES (29173, 16, 2, 9610, 5.99, '2007-04-30 02:22:31.996577'); -INSERT INTO dvds.payment VALUES (29174, 17, 1, 5714, 3.99, '2007-04-10 09:15:23.996577'); -INSERT INTO dvds.payment VALUES (29175, 17, 1, 5883, 3.99, '2007-04-10 17:53:47.996577'); -INSERT INTO dvds.payment VALUES (29176, 17, 2, 6884, 1.99, '2007-04-12 19:21:07.996577'); -INSERT INTO dvds.payment VALUES (29177, 17, 2, 8076, 8.99, '2007-04-28 16:14:24.996577'); -INSERT INTO dvds.payment VALUES (29178, 17, 1, 8213, 2.99, '2007-04-28 22:05:59.996577'); -INSERT INTO dvds.payment VALUES (29179, 17, 2, 9092, 8.99, '2007-04-30 06:59:22.996577'); -INSERT INTO dvds.payment VALUES (29180, 17, 1, 9138, 2.99, '2007-04-30 08:40:18.996577'); -INSERT INTO dvds.payment VALUES (29181, 17, 2, 9382, 8.99, '2007-04-30 17:52:10.996577'); -INSERT INTO dvds.payment VALUES (29182, 17, 1, 9489, 0.99, '2007-04-30 22:11:58.996577'); -INSERT INTO dvds.payment VALUES (29183, 18, 2, 4672, 3.99, '2007-04-08 08:44:04.996577'); -INSERT INTO dvds.payment VALUES (29184, 18, 2, 4724, 3.99, '2007-04-08 11:14:56.996577'); -INSERT INTO dvds.payment VALUES (29185, 18, 2, 4923, 3.99, '2007-04-08 20:13:05.996577'); -INSERT INTO dvds.payment VALUES (29186, 18, 2, 6128, 2.99, '2007-04-11 06:43:34.996577'); -INSERT INTO dvds.payment VALUES (29187, 18, 1, 6846, 0.99, '2007-04-12 17:49:11.996577'); -INSERT INTO dvds.payment VALUES (29188, 18, 2, 8122, 2.99, '2007-04-28 17:56:03.996577'); -INSERT INTO dvds.payment VALUES (29189, 18, 1, 8555, 4.99, '2007-04-29 09:46:27.996577'); -INSERT INTO dvds.payment VALUES (29190, 18, 1, 9036, 4.99, '2007-04-30 04:47:04.996577'); -INSERT INTO dvds.payment VALUES (29191, 18, 2, 9114, 4.99, '2007-04-30 07:41:47.996577'); -INSERT INTO dvds.payment VALUES (29192, 19, 2, 3549, 4.99, '2007-04-06 00:53:21.996577'); -INSERT INTO dvds.payment VALUES (29193, 19, 2, 6495, 4.99, '2007-04-12 01:25:28.996577'); -INSERT INTO dvds.payment VALUES (29194, 19, 1, 9157, 5.99, '2007-04-30 09:34:49.996577'); -INSERT INTO dvds.payment VALUES (29195, 19, 1, 9256, 0.99, '2007-04-30 12:57:55.996577'); -INSERT INTO dvds.payment VALUES (29196, 19, 2, 10077, 9.99, '2007-04-30 18:29:32.996577'); -INSERT INTO dvds.payment VALUES (29197, 19, 1, 10176, 7.99, '2007-04-30 22:09:01.996577'); -INSERT INTO dvds.payment VALUES (29198, 20, 2, 4011, 3.99, '2007-04-06 23:16:51.996577'); -INSERT INTO dvds.payment VALUES (29199, 20, 1, 4407, 2.99, '2007-04-07 20:08:11.996577'); -INSERT INTO dvds.payment VALUES (29200, 20, 1, 5718, 2.99, '2007-04-10 09:31:46.996577'); -INSERT INTO dvds.payment VALUES (29201, 20, 1, 6254, 2.99, '2007-04-11 13:38:44.996577'); -INSERT INTO dvds.payment VALUES (29202, 20, 2, 6267, 6.99, '2007-04-11 14:21:26.996577'); -INSERT INTO dvds.payment VALUES (29203, 20, 2, 7217, 4.99, '2007-04-27 08:00:10.996577'); -INSERT INTO dvds.payment VALUES (29204, 20, 2, 7864, 5.99, '2007-04-28 08:34:36.996577'); -INSERT INTO dvds.payment VALUES (29205, 20, 2, 8127, 2.99, '2007-04-28 18:13:45.996577'); -INSERT INTO dvds.payment VALUES (29206, 20, 2, 9075, 4.99, '2007-04-30 06:23:40.996577'); -INSERT INTO dvds.payment VALUES (29207, 20, 2, 9468, 3.99, '2007-04-30 21:22:18.996577'); -INSERT INTO dvds.payment VALUES (29208, 21, 2, 5107, 4.99, '2007-04-09 05:10:58.996577'); -INSERT INTO dvds.payment VALUES (29209, 21, 1, 5772, 3.99, '2007-04-10 11:56:06.996577'); -INSERT INTO dvds.payment VALUES (29210, 21, 1, 5961, 2.99, '2007-04-10 22:11:49.996577'); -INSERT INTO dvds.payment VALUES (29211, 21, 2, 6943, 1.99, '2007-04-26 21:56:39.996577'); -INSERT INTO dvds.payment VALUES (29212, 21, 1, 7994, 0.99, '2007-04-28 13:25:20.996577'); -INSERT INTO dvds.payment VALUES (29213, 21, 2, 8196, 6.99, '2007-04-28 21:24:37.996577'); -INSERT INTO dvds.payment VALUES (29214, 21, 2, 8862, 2.99, '2007-04-29 22:17:49.996577'); -INSERT INTO dvds.payment VALUES (29215, 21, 2, 9149, 0.99, '2007-04-30 09:13:38.996577'); -INSERT INTO dvds.payment VALUES (29216, 21, 1, 9699, 5.99, '2007-04-30 05:57:51.996577'); -INSERT INTO dvds.payment VALUES (29217, 22, 2, 4215, 2.99, '2007-04-07 10:29:18.996577'); -INSERT INTO dvds.payment VALUES (29218, 22, 1, 5294, 6.99, '2007-04-09 13:52:08.996577'); -INSERT INTO dvds.payment VALUES (29219, 22, 1, 5815, 2.99, '2007-04-10 14:16:45.996577'); -INSERT INTO dvds.payment VALUES (29220, 22, 1, 7087, 4.99, '2007-04-27 03:10:34.996577'); -INSERT INTO dvds.payment VALUES (29221, 22, 1, 7705, 7.99, '2007-04-28 02:31:24.996577'); -INSERT INTO dvds.payment VALUES (29222, 22, 2, 9410, 0.99, '2007-04-30 19:06:31.996577'); -INSERT INTO dvds.payment VALUES (29223, 22, 1, 9580, 4.99, '2007-04-30 01:29:37.996577'); -INSERT INTO dvds.payment VALUES (29224, 23, 2, 3736, 3.99, '2007-04-06 10:12:10.996577'); -INSERT INTO dvds.payment VALUES (29225, 23, 2, 3781, 2.99, '2007-04-06 12:22:07.996577'); -INSERT INTO dvds.payment VALUES (29226, 23, 2, 4853, 2.99, '2007-04-08 17:11:44.996577'); -INSERT INTO dvds.payment VALUES (29227, 23, 1, 6213, 2.99, '2007-04-11 11:11:33.996577'); -INSERT INTO dvds.payment VALUES (29228, 23, 1, 6238, 2.99, '2007-04-11 12:48:44.996577'); -INSERT INTO dvds.payment VALUES (29229, 23, 2, 6917, 5.99, '2007-04-12 20:58:41.996577'); -INSERT INTO dvds.payment VALUES (29230, 23, 1, 7155, 7.99, '2007-04-27 05:47:12.996577'); -INSERT INTO dvds.payment VALUES (29231, 23, 1, 8015, 2.99, '2007-04-28 14:01:29.996577'); -INSERT INTO dvds.payment VALUES (29232, 23, 2, 8718, 0.99, '2007-04-29 16:09:40.996577'); -INSERT INTO dvds.payment VALUES (29233, 23, 2, 9209, 5.99, '2007-04-30 11:24:02.996577'); -INSERT INTO dvds.payment VALUES (29234, 23, 2, 9255, 9.99, '2007-04-30 12:55:12.996577'); -INSERT INTO dvds.payment VALUES (29235, 23, 2, 9718, 3.99, '2007-04-30 06:53:29.996577'); -INSERT INTO dvds.payment VALUES (29236, 23, 1, 10132, 6.99, '2007-04-30 20:18:50.996577'); -INSERT INTO dvds.payment VALUES (29237, 24, 2, 3649, 7.99, '2007-04-06 06:01:08.996577'); -INSERT INTO dvds.payment VALUES (29238, 24, 2, 4378, 2.99, '2007-04-07 18:57:34.996577'); -INSERT INTO dvds.payment VALUES (29239, 24, 1, 5310, 0.99, '2007-04-09 14:29:00.996577'); -INSERT INTO dvds.payment VALUES (29240, 24, 2, 5648, 0.99, '2007-04-10 05:37:47.996577'); -INSERT INTO dvds.payment VALUES (29241, 24, 1, 6855, 4.99, '2007-04-12 18:14:55.996577'); -INSERT INTO dvds.payment VALUES (29242, 24, 1, 7266, 1.99, '2007-04-27 09:50:43.996577'); -INSERT INTO dvds.payment VALUES (29243, 24, 1, 8947, 4.99, '2007-04-30 01:44:03.996577'); -INSERT INTO dvds.payment VALUES (29244, 24, 1, 9723, 0.99, '2007-04-30 06:59:44.996577'); -INSERT INTO dvds.payment VALUES (29245, 24, 2, 9925, 0.99, '2007-04-30 13:37:13.996577'); -INSERT INTO dvds.payment VALUES (29246, 25, 1, 4282, 2.99, '2007-04-07 13:54:57.996577'); -INSERT INTO dvds.payment VALUES (29247, 25, 1, 4319, 0.99, '2007-04-07 16:18:53.996577'); -INSERT INTO dvds.payment VALUES (29248, 25, 2, 4404, 2.99, '2007-04-07 20:00:19.996577'); -INSERT INTO dvds.payment VALUES (29249, 25, 1, 5881, 2.99, '2007-04-10 17:48:09.996577'); -INSERT INTO dvds.payment VALUES (29250, 25, 1, 6653, 4.99, '2007-04-12 09:34:43.996577'); -INSERT INTO dvds.payment VALUES (29251, 25, 2, 6905, 2.99, '2007-04-12 20:30:44.996577'); -INSERT INTO dvds.payment VALUES (29252, 25, 2, 8667, 2.99, '2007-04-29 14:09:23.996577'); -INSERT INTO dvds.payment VALUES (29253, 25, 2, 8878, 0.99, '2007-04-29 22:44:23.996577'); -INSERT INTO dvds.payment VALUES (29254, 25, 1, 9140, 8.99, '2007-04-30 08:40:27.996577'); -INSERT INTO dvds.payment VALUES (29255, 25, 2, 9334, 2.99, '2007-04-30 16:25:04.996577'); -INSERT INTO dvds.payment VALUES (29256, 25, 2, 9922, 2.99, '2007-04-30 13:28:03.996577'); -INSERT INTO dvds.payment VALUES (29257, 25, 2, 10103, 2.99, '2007-04-30 19:17:39.996577'); -INSERT INTO dvds.payment VALUES (29258, 26, 1, 4065, 2.99, '2007-04-07 03:00:54.996577'); -INSERT INTO dvds.payment VALUES (29259, 26, 1, 4274, 4.99, '2007-04-07 13:10:30.996577'); -INSERT INTO dvds.payment VALUES (29260, 26, 1, 4382, 4.99, '2007-04-07 19:09:29.996577'); -INSERT INTO dvds.payment VALUES (29261, 26, 2, 4402, 0.99, '2007-04-07 19:57:12.996577'); -INSERT INTO dvds.payment VALUES (29262, 26, 1, 4431, 6.99, '2007-04-07 21:07:28.996577'); -INSERT INTO dvds.payment VALUES (29263, 26, 1, 4536, 3.99, '2007-04-08 02:11:48.996577'); -INSERT INTO dvds.payment VALUES (29264, 26, 1, 4641, 6.99, '2007-04-08 07:38:12.996577'); -INSERT INTO dvds.payment VALUES (29265, 26, 1, 5437, 2.99, '2007-04-09 20:00:55.996577'); -INSERT INTO dvds.payment VALUES (29266, 26, 1, 6149, 1.99, '2007-04-11 07:47:57.996577'); -INSERT INTO dvds.payment VALUES (29267, 26, 2, 6243, 2.99, '2007-04-11 13:21:51.996577'); -INSERT INTO dvds.payment VALUES (29268, 26, 2, 7328, 0.99, '2007-04-27 12:23:44.996577'); -INSERT INTO dvds.payment VALUES (29269, 26, 1, 8241, 4.99, '2007-04-28 23:02:02.996577'); -INSERT INTO dvds.payment VALUES (29270, 26, 1, 9484, 0.99, '2007-04-30 22:00:06.996577'); -INSERT INTO dvds.payment VALUES (29271, 27, 2, 4038, 0.99, '2007-04-07 01:21:19.996577'); -INSERT INTO dvds.payment VALUES (29272, 27, 1, 4510, 5.99, '2007-04-08 01:03:17.996577'); -INSERT INTO dvds.payment VALUES (29273, 27, 1, 5552, 0.99, '2007-04-10 01:29:45.996577'); -INSERT INTO dvds.payment VALUES (29274, 27, 1, 5736, 4.99, '2007-04-10 10:14:14.996577'); -INSERT INTO dvds.payment VALUES (29275, 27, 2, 6115, 0.99, '2007-04-11 06:05:16.996577'); -INSERT INTO dvds.payment VALUES (29276, 27, 2, 6562, 5.99, '2007-04-12 03:54:52.996577'); -INSERT INTO dvds.payment VALUES (29277, 27, 2, 6658, 4.99, '2007-04-12 09:41:47.996577'); -INSERT INTO dvds.payment VALUES (29278, 27, 1, 7927, 1.99, '2007-04-28 10:42:08.996577'); -INSERT INTO dvds.payment VALUES (29279, 27, 2, 9244, 0.99, '2007-04-30 12:35:19.996577'); -INSERT INTO dvds.payment VALUES (29280, 27, 2, 9636, 5.99, '2007-04-30 03:41:25.996577'); -INSERT INTO dvds.payment VALUES (29281, 27, 1, 9673, 7.99, '2007-04-30 05:03:21.996577'); -INSERT INTO dvds.payment VALUES (29282, 27, 1, 9908, 4.99, '2007-04-30 13:08:18.996577'); -INSERT INTO dvds.payment VALUES (29283, 28, 1, 3845, 0.99, '2007-04-06 15:06:40.996577'); -INSERT INTO dvds.payment VALUES (29284, 28, 2, 4704, 0.99, '2007-04-08 10:14:01.996577'); -INSERT INTO dvds.payment VALUES (29285, 28, 2, 4951, 4.99, '2007-04-08 21:26:47.996577'); -INSERT INTO dvds.payment VALUES (29286, 28, 2, 5653, 2.99, '2007-04-10 05:49:53.996577'); -INSERT INTO dvds.payment VALUES (29287, 28, 1, 5817, 5.99, '2007-04-10 14:17:38.996577'); -INSERT INTO dvds.payment VALUES (29288, 28, 2, 6032, 0.99, '2007-04-11 01:17:27.996577'); -INSERT INTO dvds.payment VALUES (29289, 28, 2, 6476, 0.99, '2007-04-12 00:06:14.996577'); -INSERT INTO dvds.payment VALUES (29290, 28, 1, 7580, 9.99, '2007-04-27 21:36:06.996577'); -INSERT INTO dvds.payment VALUES (29291, 28, 1, 8464, 4.99, '2007-04-29 06:46:46.996577'); -INSERT INTO dvds.payment VALUES (29292, 28, 1, 8901, 2.99, '2007-04-29 23:35:38.996577'); -INSERT INTO dvds.payment VALUES (29293, 28, 2, 9544, 2.99, '2007-04-30 00:13:17.996577'); -INSERT INTO dvds.payment VALUES (29294, 28, 2, 9593, 4.99, '2007-04-30 01:50:56.996577'); -INSERT INTO dvds.payment VALUES (29295, 28, 2, 9705, 4.99, '2007-04-30 06:08:59.996577'); -INSERT INTO dvds.payment VALUES (29296, 28, 2, 10116, 2.99, '2007-04-30 19:42:28.996577'); -INSERT INTO dvds.payment VALUES (29297, 29, 2, 4262, 6.99, '2007-04-07 12:52:56.996577'); -INSERT INTO dvds.payment VALUES (29298, 29, 1, 4313, 0.99, '2007-04-07 16:05:22.996577'); -INSERT INTO dvds.payment VALUES (29299, 29, 2, 4535, 0.99, '2007-04-08 02:09:12.996577'); -INSERT INTO dvds.payment VALUES (29300, 29, 2, 5442, 10.99, '2007-04-09 20:23:45.996577'); -INSERT INTO dvds.payment VALUES (29301, 29, 1, 5857, 1.99, '2007-04-10 16:27:55.996577'); -INSERT INTO dvds.payment VALUES (29302, 29, 2, 7237, 3.99, '2007-04-27 08:41:02.996577'); -INSERT INTO dvds.payment VALUES (29303, 29, 1, 7451, 6.99, '2007-04-27 16:47:07.996577'); -INSERT INTO dvds.payment VALUES (29304, 29, 1, 7453, 0.99, '2007-04-27 16:55:39.996577'); -INSERT INTO dvds.payment VALUES (29305, 29, 2, 8673, 2.99, '2007-04-29 14:18:40.996577'); -INSERT INTO dvds.payment VALUES (29306, 29, 2, 9392, 4.99, '2007-04-30 18:18:39.996577'); -INSERT INTO dvds.payment VALUES (29307, 29, 1, 9946, 4.99, '2007-04-30 14:17:20.996577'); -INSERT INTO dvds.payment VALUES (29308, 30, 1, 3964, 4.99, '2007-04-06 20:51:28.996577'); -INSERT INTO dvds.payment VALUES (29309, 30, 2, 4471, 2.99, '2007-04-07 22:49:55.996577'); -INSERT INTO dvds.payment VALUES (29310, 30, 2, 4642, 2.99, '2007-04-08 07:41:54.996577'); -INSERT INTO dvds.payment VALUES (29311, 30, 2, 5028, 5.99, '2007-04-09 01:03:11.996577'); -INSERT INTO dvds.payment VALUES (29312, 30, 1, 5108, 9.99, '2007-04-09 05:12:56.996577'); -INSERT INTO dvds.payment VALUES (29313, 30, 1, 5289, 0.99, '2007-04-09 13:42:34.996577'); -INSERT INTO dvds.payment VALUES (29314, 30, 2, 5972, 7.99, '2007-04-10 22:37:20.996577'); -INSERT INTO dvds.payment VALUES (29315, 30, 1, 6249, 0.99, '2007-04-11 13:30:28.996577'); -INSERT INTO dvds.payment VALUES (29316, 30, 2, 6359, 2.99, '2007-04-11 19:34:43.996577'); -INSERT INTO dvds.payment VALUES (29317, 30, 2, 7394, 2.99, '2007-04-27 14:31:34.996577'); -INSERT INTO dvds.payment VALUES (29318, 30, 2, 7769, 4.99, '2007-04-28 05:13:49.996577'); -INSERT INTO dvds.payment VALUES (29319, 30, 1, 8030, 4.99, '2007-04-28 14:41:19.996577'); -INSERT INTO dvds.payment VALUES (29320, 30, 2, 8038, 4.99, '2007-04-28 15:01:21.996577'); -INSERT INTO dvds.payment VALUES (29321, 30, 1, 8083, 4.99, '2007-04-28 16:38:14.996577'); -INSERT INTO dvds.payment VALUES (29322, 30, 1, 8641, 2.99, '2007-04-29 13:05:56.996577'); -INSERT INTO dvds.payment VALUES (29323, 30, 2, 9309, 2.99, '2007-04-30 15:24:19.996577'); -INSERT INTO dvds.payment VALUES (29324, 30, 2, 9551, 0.99, '2007-04-30 00:33:24.996577'); -INSERT INTO dvds.payment VALUES (29325, 30, 1, 9641, 0.99, '2007-04-30 04:02:14.996577'); -INSERT INTO dvds.payment VALUES (29326, 30, 1, 9998, 2.99, '2007-04-30 16:09:01.996577'); -INSERT INTO dvds.payment VALUES (29327, 31, 1, 3701, 4.99, '2007-04-06 08:41:11.996577'); -INSERT INTO dvds.payment VALUES (29328, 31, 2, 3967, 4.99, '2007-04-06 21:13:36.996577'); -INSERT INTO dvds.payment VALUES (29329, 31, 1, 4122, 6.99, '2007-04-07 05:44:01.996577'); -INSERT INTO dvds.payment VALUES (29330, 31, 2, 4738, 9.99, '2007-04-08 11:53:24.996577'); -INSERT INTO dvds.payment VALUES (29331, 31, 1, 6208, 3.99, '2007-04-11 11:03:22.996577'); -INSERT INTO dvds.payment VALUES (29332, 31, 2, 6580, 4.99, '2007-04-12 04:54:36.996577'); -INSERT INTO dvds.payment VALUES (29333, 31, 1, 7000, 1.99, '2007-04-26 23:51:50.996577'); -INSERT INTO dvds.payment VALUES (29334, 31, 2, 7138, 3.99, '2007-04-27 05:15:39.996577'); -INSERT INTO dvds.payment VALUES (29335, 31, 2, 7178, 2.99, '2007-04-27 06:37:51.996577'); -INSERT INTO dvds.payment VALUES (29336, 31, 2, 7464, 2.99, '2007-04-27 17:18:08.996577'); -INSERT INTO dvds.payment VALUES (29337, 31, 2, 8997, 0.99, '2007-04-30 03:22:22.996577'); -INSERT INTO dvds.payment VALUES (29338, 32, 1, 3500, 2.99, '2007-04-05 22:39:39.996577'); -INSERT INTO dvds.payment VALUES (29339, 32, 1, 4434, 2.99, '2007-04-07 21:17:00.996577'); -INSERT INTO dvds.payment VALUES (29340, 32, 2, 4771, 2.99, '2007-04-08 14:01:58.996577'); -INSERT INTO dvds.payment VALUES (29341, 32, 2, 4899, 0.99, '2007-04-08 19:05:37.996577'); -INSERT INTO dvds.payment VALUES (29342, 32, 1, 5307, 9.99, '2007-04-09 14:25:41.996577'); -INSERT INTO dvds.payment VALUES (29343, 32, 1, 5767, 0.99, '2007-04-10 11:41:44.996577'); -INSERT INTO dvds.payment VALUES (29344, 32, 1, 5954, 2.99, '2007-04-10 21:50:27.996577'); -INSERT INTO dvds.payment VALUES (29345, 32, 1, 6122, 3.99, '2007-04-11 06:26:33.996577'); -INSERT INTO dvds.payment VALUES (29346, 32, 2, 6450, 2.99, '2007-04-11 23:17:31.996577'); -INSERT INTO dvds.payment VALUES (29347, 32, 1, 7084, 6.99, '2007-04-27 03:02:33.996577'); -INSERT INTO dvds.payment VALUES (29348, 32, 1, 7589, 5.99, '2007-04-27 21:52:02.996577'); -INSERT INTO dvds.payment VALUES (29349, 32, 1, 7793, 2.99, '2007-04-28 05:54:40.996577'); -INSERT INTO dvds.payment VALUES (29350, 32, 2, 8390, 5.99, '2007-04-29 04:20:52.996577'); -INSERT INTO dvds.payment VALUES (29351, 32, 2, 8453, 2.99, '2007-04-29 06:14:55.996577'); -INSERT INTO dvds.payment VALUES (29352, 32, 2, 8914, 2.99, '2007-04-30 00:10:29.996577'); -INSERT INTO dvds.payment VALUES (29353, 33, 1, 4095, 5.99, '2007-04-07 04:30:14.996577'); -INSERT INTO dvds.payment VALUES (29354, 33, 1, 5421, 0.99, '2007-04-09 19:17:38.996577'); -INSERT INTO dvds.payment VALUES (29355, 33, 1, 5723, 4.99, '2007-04-10 09:43:14.996577'); -INSERT INTO dvds.payment VALUES (29356, 33, 2, 6280, 0.99, '2007-04-11 15:04:43.996577'); -INSERT INTO dvds.payment VALUES (29357, 33, 1, 7992, 4.99, '2007-04-28 13:21:32.996577'); -INSERT INTO dvds.payment VALUES (29358, 33, 1, 9040, 4.99, '2007-04-30 05:00:11.996577'); -INSERT INTO dvds.payment VALUES (29359, 33, 2, 9085, 4.99, '2007-04-30 06:45:50.996577'); -INSERT INTO dvds.payment VALUES (29360, 33, 1, 9254, 1.99, '2007-04-30 12:54:37.996577'); -INSERT INTO dvds.payment VALUES (29361, 34, 2, 3508, 3.99, '2007-04-05 22:52:51.996577'); -INSERT INTO dvds.payment VALUES (29362, 34, 1, 3911, 2.99, '2007-04-06 18:37:37.996577'); -INSERT INTO dvds.payment VALUES (29363, 34, 1, 5188, 4.99, '2007-04-09 08:50:57.996577'); -INSERT INTO dvds.payment VALUES (29364, 34, 2, 5643, 4.99, '2007-04-10 05:17:26.996577'); -INSERT INTO dvds.payment VALUES (29365, 34, 2, 5918, 5.99, '2007-04-10 20:00:32.996577'); -INSERT INTO dvds.payment VALUES (29366, 34, 2, 7015, 2.99, '2007-04-27 00:43:27.996577'); -INSERT INTO dvds.payment VALUES (29367, 34, 2, 7124, 2.99, '2007-04-27 04:37:56.996577'); -INSERT INTO dvds.payment VALUES (29368, 34, 1, 7532, 0.99, '2007-04-27 19:49:18.996577'); -INSERT INTO dvds.payment VALUES (29369, 34, 1, 9160, 3.99, '2007-04-30 09:45:59.996577'); -INSERT INTO dvds.payment VALUES (29370, 35, 2, 3597, 2.99, '2007-04-06 03:32:25.996577'); -INSERT INTO dvds.payment VALUES (29371, 35, 2, 4098, 4.99, '2007-04-07 04:43:17.996577'); -INSERT INTO dvds.payment VALUES (29372, 35, 2, 4990, 0.99, '2007-04-08 23:17:15.996577'); -INSERT INTO dvds.payment VALUES (29373, 35, 1, 5013, 2.99, '2007-04-09 00:15:11.996577'); -INSERT INTO dvds.payment VALUES (29374, 35, 2, 5323, 0.99, '2007-04-09 15:02:33.996577'); -INSERT INTO dvds.payment VALUES (29375, 35, 1, 5916, 5.99, '2007-04-10 19:54:57.996577'); -INSERT INTO dvds.payment VALUES (29376, 35, 1, 5963, 0.99, '2007-04-10 22:15:34.996577'); -INSERT INTO dvds.payment VALUES (29377, 35, 1, 6147, 5.99, '2007-04-11 07:41:34.996577'); -INSERT INTO dvds.payment VALUES (29378, 35, 1, 6401, 4.99, '2007-04-11 21:13:00.996577'); -INSERT INTO dvds.payment VALUES (29379, 35, 1, 6565, 4.99, '2007-04-12 04:08:16.996577'); -INSERT INTO dvds.payment VALUES (29380, 35, 1, 6572, 4.99, '2007-04-12 04:25:04.996577'); -INSERT INTO dvds.payment VALUES (29381, 35, 1, 7140, 4.99, '2007-04-27 05:22:38.996577'); -INSERT INTO dvds.payment VALUES (29382, 35, 1, 8822, 6.99, '2007-04-29 20:48:47.996577'); -INSERT INTO dvds.payment VALUES (29383, 35, 1, 8971, 5.99, '2007-04-30 02:32:24.996577'); -INSERT INTO dvds.payment VALUES (29384, 35, 2, 9033, 2.99, '2007-04-30 04:36:08.996577'); -INSERT INTO dvds.payment VALUES (29385, 35, 1, 9579, 6.99, '2007-04-30 01:27:46.996577'); -INSERT INTO dvds.payment VALUES (29386, 36, 2, 4135, 0.99, '2007-04-07 06:43:29.996577'); -INSERT INTO dvds.payment VALUES (29387, 36, 2, 4560, 4.99, '2007-04-08 03:27:14.996577'); -INSERT INTO dvds.payment VALUES (29388, 36, 2, 4762, 4.99, '2007-04-08 13:23:08.996577'); -INSERT INTO dvds.payment VALUES (29389, 36, 1, 5403, 0.99, '2007-04-09 18:35:35.996577'); -INSERT INTO dvds.payment VALUES (29390, 36, 2, 6030, 0.99, '2007-04-11 01:06:17.996577'); -INSERT INTO dvds.payment VALUES (29391, 36, 1, 7205, 6.99, '2007-04-27 07:34:39.996577'); -INSERT INTO dvds.payment VALUES (29392, 36, 1, 7647, 0.99, '2007-04-28 00:03:43.996577'); -INSERT INTO dvds.payment VALUES (29393, 36, 2, 7919, 6.99, '2007-04-28 10:28:11.996577'); -INSERT INTO dvds.payment VALUES (29394, 36, 2, 8099, 0.99, '2007-04-28 17:03:38.996577'); -INSERT INTO dvds.payment VALUES (29395, 36, 1, 8391, 2.99, '2007-04-29 04:21:16.996577'); -INSERT INTO dvds.payment VALUES (29396, 36, 1, 8952, 4.99, '2007-04-30 01:49:04.996577'); -INSERT INTO dvds.payment VALUES (29397, 36, 1, 9369, 2.99, '2007-04-30 17:20:45.996577'); -INSERT INTO dvds.payment VALUES (29398, 36, 2, 9805, 0.99, '2007-04-30 09:39:36.996577'); -INSERT INTO dvds.payment VALUES (29399, 37, 2, 3472, 7.99, '2007-04-05 21:24:59.996577'); -INSERT INTO dvds.payment VALUES (29400, 37, 1, 3734, 5.99, '2007-04-06 10:08:53.996577'); -INSERT INTO dvds.payment VALUES (29401, 37, 1, 5425, 5.99, '2007-04-09 19:30:52.996577'); -INSERT INTO dvds.payment VALUES (29402, 37, 2, 7939, 0.99, '2007-04-28 11:14:13.996577'); -INSERT INTO dvds.payment VALUES (29403, 37, 1, 8419, 9.99, '2007-04-29 05:23:14.996577'); -INSERT INTO dvds.payment VALUES (29404, 37, 1, 9567, 5.99, '2007-04-30 01:04:37.996577'); -INSERT INTO dvds.payment VALUES (29405, 38, 1, 4202, 5.99, '2007-04-07 09:52:14.996577'); -INSERT INTO dvds.payment VALUES (29406, 38, 2, 4228, 1.99, '2007-04-07 11:10:28.996577'); -INSERT INTO dvds.payment VALUES (29407, 38, 1, 4300, 4.99, '2007-04-07 15:04:42.996577'); -INSERT INTO dvds.payment VALUES (29408, 38, 2, 4644, 4.99, '2007-04-08 07:42:55.996577'); -INSERT INTO dvds.payment VALUES (29409, 38, 1, 5273, 2.99, '2007-04-09 12:59:50.996577'); -INSERT INTO dvds.payment VALUES (29410, 38, 2, 5460, 2.99, '2007-04-09 21:14:40.996577'); -INSERT INTO dvds.payment VALUES (29411, 38, 1, 5822, 2.99, '2007-04-10 14:39:05.996577'); -INSERT INTO dvds.payment VALUES (29412, 38, 1, 6864, 5.99, '2007-04-12 18:27:51.996577'); -INSERT INTO dvds.payment VALUES (29413, 38, 1, 6961, 0.99, '2007-04-26 22:39:15.996577'); -INSERT INTO dvds.payment VALUES (29414, 38, 2, 7158, 4.99, '2007-04-27 05:52:24.996577'); -INSERT INTO dvds.payment VALUES (29415, 38, 2, 7163, 5.99, '2007-04-27 06:04:37.996577'); -INSERT INTO dvds.payment VALUES (29416, 38, 2, 7321, 5.99, '2007-04-27 12:02:04.996577'); -INSERT INTO dvds.payment VALUES (29417, 38, 1, 7795, 0.99, '2007-04-28 05:56:42.996577'); -INSERT INTO dvds.payment VALUES (29418, 38, 2, 8924, 3.99, '2007-04-30 00:37:24.996577'); -INSERT INTO dvds.payment VALUES (29419, 38, 2, 9216, 0.99, '2007-04-30 11:39:45.996577'); -INSERT INTO dvds.payment VALUES (29420, 38, 1, 9284, 0.99, '2007-04-30 13:53:45.996577'); -INSERT INTO dvds.payment VALUES (29421, 38, 1, 9621, 4.99, '2007-04-30 02:49:34.996577'); -INSERT INTO dvds.payment VALUES (29422, 38, 2, 10111, 2.99, '2007-04-30 19:36:59.996577'); -INSERT INTO dvds.payment VALUES (29423, 39, 1, 4419, 5.99, '2007-04-07 20:34:50.996577'); -INSERT INTO dvds.payment VALUES (29424, 39, 2, 4695, 8.99, '2007-04-08 09:36:25.996577'); -INSERT INTO dvds.payment VALUES (29425, 39, 2, 4712, 6.99, '2007-04-08 10:39:16.996577'); -INSERT INTO dvds.payment VALUES (29426, 39, 2, 4727, 7.99, '2007-04-08 11:22:41.996577'); -INSERT INTO dvds.payment VALUES (29427, 39, 1, 5451, 4.99, '2007-04-09 20:50:36.996577'); -INSERT INTO dvds.payment VALUES (29428, 39, 2, 5515, 2.99, '2007-04-09 23:41:10.996577'); -INSERT INTO dvds.payment VALUES (29429, 39, 1, 6045, 2.99, '2007-04-11 01:49:31.996577'); -INSERT INTO dvds.payment VALUES (29430, 39, 2, 8307, 6.99, '2007-04-29 01:47:00.996577'); -INSERT INTO dvds.payment VALUES (29431, 39, 2, 8366, 1.99, '2007-04-29 03:39:40.996577'); -INSERT INTO dvds.payment VALUES (29432, 39, 2, 8723, 7.99, '2007-04-29 16:32:13.996577'); -INSERT INTO dvds.payment VALUES (29433, 39, 1, 8805, 2.99, '2007-04-29 19:58:24.996577'); -INSERT INTO dvds.payment VALUES (29434, 39, 1, 9431, 1.99, '2007-04-30 19:52:48.996577'); -INSERT INTO dvds.payment VALUES (29435, 39, 1, 9656, 4.99, '2007-04-30 04:28:47.996577'); -INSERT INTO dvds.payment VALUES (29436, 39, 2, 10052, 4.99, '2007-04-30 17:43:39.996577'); -INSERT INTO dvds.payment VALUES (29437, 39, 1, 10126, 0.99, '2007-04-30 20:04:33.996577'); -INSERT INTO dvds.payment VALUES (29438, 40, 2, 5001, 1.99, '2007-04-08 23:45:30.996577'); -INSERT INTO dvds.payment VALUES (29439, 40, 2, 5777, 2.99, '2007-04-10 12:07:07.996577'); -INSERT INTO dvds.payment VALUES (29440, 40, 1, 5869, 5.99, '2007-04-10 17:08:35.996577'); -INSERT INTO dvds.payment VALUES (29441, 40, 1, 6502, 0.99, '2007-04-12 01:44:11.996577'); -INSERT INTO dvds.payment VALUES (29442, 40, 2, 7684, 0.99, '2007-04-28 01:40:20.996577'); -INSERT INTO dvds.payment VALUES (29443, 40, 2, 8031, 0.99, '2007-04-28 14:44:15.996577'); -INSERT INTO dvds.payment VALUES (29444, 40, 2, 8170, 3.99, '2007-04-28 20:00:55.996577'); -INSERT INTO dvds.payment VALUES (29445, 40, 1, 9050, 8.99, '2007-04-30 05:28:21.996577'); -INSERT INTO dvds.payment VALUES (29446, 40, 2, 9700, 4.99, '2007-04-30 05:58:25.996577'); -INSERT INTO dvds.payment VALUES (29447, 40, 2, 9961, 6.99, '2007-04-30 14:36:16.996577'); -INSERT INTO dvds.payment VALUES (29448, 40, 1, 9975, 1.99, '2007-04-30 15:22:09.996577'); -INSERT INTO dvds.payment VALUES (29449, 41, 2, 3827, 2.99, '2007-04-06 14:20:29.996577'); -INSERT INTO dvds.payment VALUES (29450, 41, 2, 4294, 9.99, '2007-04-07 14:24:49.996577'); -INSERT INTO dvds.payment VALUES (29451, 41, 1, 4543, 4.99, '2007-04-08 02:35:21.996577'); -INSERT INTO dvds.payment VALUES (29452, 41, 1, 4575, 2.99, '2007-04-08 04:17:40.996577'); -INSERT INTO dvds.payment VALUES (29453, 41, 1, 6976, 4.99, '2007-04-26 23:08:27.996577'); -INSERT INTO dvds.payment VALUES (29454, 41, 2, 7153, 4.99, '2007-04-27 05:44:04.996577'); -INSERT INTO dvds.payment VALUES (29455, 41, 1, 7517, 1.99, '2007-04-27 19:25:33.996577'); -INSERT INTO dvds.payment VALUES (29456, 41, 2, 8008, 6.99, '2007-04-28 13:54:21.996577'); -INSERT INTO dvds.payment VALUES (29457, 41, 1, 8098, 0.99, '2007-04-28 17:02:46.996577'); -INSERT INTO dvds.payment VALUES (29458, 41, 1, 8134, 6.99, '2007-04-28 18:29:49.996577'); -INSERT INTO dvds.payment VALUES (29459, 41, 2, 8225, 2.99, '2007-04-28 22:27:55.996577'); -INSERT INTO dvds.payment VALUES (29460, 41, 1, 8712, 2.99, '2007-04-29 15:58:32.996577'); -INSERT INTO dvds.payment VALUES (29461, 41, 2, 9313, 5.99, '2007-04-30 15:28:09.996577'); -INSERT INTO dvds.payment VALUES (29462, 41, 1, 10064, 2.99, '2007-04-30 17:55:28.996577'); -INSERT INTO dvds.payment VALUES (29463, 41, 1, 10170, 7.99, '2007-04-30 21:55:57.996577'); -INSERT INTO dvds.payment VALUES (29464, 42, 2, 4391, 2.99, '2007-04-07 19:38:04.996577'); -INSERT INTO dvds.payment VALUES (29465, 42, 2, 5199, 4.99, '2007-04-09 09:19:22.996577'); -INSERT INTO dvds.payment VALUES (29466, 42, 2, 5517, 5.99, '2007-04-09 23:43:26.996577'); -INSERT INTO dvds.payment VALUES (29467, 42, 2, 5652, 3.99, '2007-04-10 05:47:24.996577'); -INSERT INTO dvds.payment VALUES (29468, 42, 1, 6179, 2.99, '2007-04-11 09:28:25.996577'); -INSERT INTO dvds.payment VALUES (29469, 42, 1, 6799, 2.99, '2007-04-12 15:20:39.996577'); -INSERT INTO dvds.payment VALUES (29470, 42, 1, 6925, 0.99, '2007-04-26 21:20:58.996577'); -INSERT INTO dvds.payment VALUES (29471, 42, 1, 7405, 3.99, '2007-04-27 14:53:37.996577'); -INSERT INTO dvds.payment VALUES (29472, 42, 1, 8049, 0.99, '2007-04-28 15:20:24.996577'); -INSERT INTO dvds.payment VALUES (29473, 42, 1, 8095, 6.99, '2007-04-28 17:01:06.996577'); -INSERT INTO dvds.payment VALUES (29474, 42, 1, 8166, 2.99, '2007-04-28 19:51:59.996577'); -INSERT INTO dvds.payment VALUES (29475, 42, 1, 8499, 3.99, '2007-04-29 07:39:07.996577'); -INSERT INTO dvds.payment VALUES (29476, 42, 2, 8785, 2.99, '2007-04-29 19:04:52.996577'); -INSERT INTO dvds.payment VALUES (29477, 42, 2, 8852, 3.99, '2007-04-29 21:58:29.996577'); -INSERT INTO dvds.payment VALUES (29478, 42, 2, 8915, 3.99, '2007-04-30 00:10:35.996577'); -INSERT INTO dvds.payment VALUES (29479, 42, 2, 10060, 6.99, '2007-04-30 17:51:26.996577'); -INSERT INTO dvds.payment VALUES (29480, 43, 2, 3683, 1.99, '2007-04-06 07:54:22.996577'); -INSERT INTO dvds.payment VALUES (29481, 43, 1, 4498, 2.99, '2007-04-08 00:36:16.996577'); -INSERT INTO dvds.payment VALUES (29482, 43, 1, 5162, 4.99, '2007-04-09 07:28:37.996577'); -INSERT INTO dvds.payment VALUES (29483, 43, 1, 5401, 4.99, '2007-04-09 18:27:36.996577'); -INSERT INTO dvds.payment VALUES (29484, 43, 1, 5831, 2.99, '2007-04-10 15:02:28.996577'); -INSERT INTO dvds.payment VALUES (29485, 43, 2, 5941, 4.99, '2007-04-10 21:09:13.996577'); -INSERT INTO dvds.payment VALUES (29486, 43, 1, 6474, 3.99, '2007-04-12 00:05:12.996577'); -INSERT INTO dvds.payment VALUES (29487, 43, 2, 6680, 0.99, '2007-04-12 10:30:22.996577'); -INSERT INTO dvds.payment VALUES (29488, 43, 1, 7348, 4.99, '2007-04-27 13:00:58.996577'); -INSERT INTO dvds.payment VALUES (29489, 43, 2, 7868, 4.99, '2007-04-28 08:37:21.996577'); -INSERT INTO dvds.payment VALUES (29490, 43, 2, 8376, 4.99, '2007-04-29 03:53:58.996577'); -INSERT INTO dvds.payment VALUES (29491, 43, 1, 9204, 4.99, '2007-04-30 11:12:24.996577'); -INSERT INTO dvds.payment VALUES (29492, 44, 2, 4390, 0.99, '2007-04-07 19:27:32.996577'); -INSERT INTO dvds.payment VALUES (29493, 44, 2, 4723, 9.99, '2007-04-08 11:13:25.996577'); -INSERT INTO dvds.payment VALUES (29494, 44, 1, 5551, 3.99, '2007-04-10 01:29:35.996577'); -INSERT INTO dvds.payment VALUES (29495, 44, 1, 5787, 8.99, '2007-04-10 12:37:15.996577'); -INSERT INTO dvds.payment VALUES (29496, 44, 2, 5849, 6.99, '2007-04-10 16:00:59.996577'); -INSERT INTO dvds.payment VALUES (29497, 44, 2, 5909, 4.99, '2007-04-10 19:14:39.996577'); -INSERT INTO dvds.payment VALUES (29498, 44, 1, 7514, 0.99, '2007-04-27 19:20:15.996577'); -INSERT INTO dvds.payment VALUES (29499, 44, 2, 7526, 6.99, '2007-04-27 19:42:13.996577'); -INSERT INTO dvds.payment VALUES (29500, 44, 2, 8775, 4.99, '2007-04-29 18:34:04.996577'); -INSERT INTO dvds.payment VALUES (29501, 44, 1, 8866, 4.99, '2007-04-29 22:26:45.996577'); -INSERT INTO dvds.payment VALUES (29502, 45, 1, 4843, 0.99, '2007-04-08 16:55:54.996577'); -INSERT INTO dvds.payment VALUES (29503, 45, 1, 5181, 6.99, '2007-04-09 08:35:53.996577'); -INSERT INTO dvds.payment VALUES (29504, 45, 1, 5405, 7.99, '2007-04-09 18:40:15.996577'); -INSERT INTO dvds.payment VALUES (29505, 45, 1, 5637, 0.99, '2007-04-10 05:00:03.996577'); -INSERT INTO dvds.payment VALUES (29506, 45, 2, 6001, 0.99, '2007-04-10 23:53:10.996577'); -INSERT INTO dvds.payment VALUES (29507, 45, 2, 6002, 2.99, '2007-04-10 23:56:15.996577'); -INSERT INTO dvds.payment VALUES (29508, 45, 1, 6966, 9.99, '2007-04-26 22:44:01.996577'); -INSERT INTO dvds.payment VALUES (29509, 45, 1, 7436, 2.99, '2007-04-27 16:07:38.996577'); -INSERT INTO dvds.payment VALUES (29510, 45, 1, 7961, 3.99, '2007-04-28 12:15:47.996577'); -INSERT INTO dvds.payment VALUES (29511, 46, 2, 3855, 2.99, '2007-04-06 15:32:14.996577'); -INSERT INTO dvds.payment VALUES (29512, 46, 1, 3916, 4.99, '2007-04-06 18:47:16.996577'); -INSERT INTO dvds.payment VALUES (29513, 46, 2, 5698, 4.99, '2007-04-10 08:15:26.996577'); -INSERT INTO dvds.payment VALUES (29514, 46, 1, 7336, 0.99, '2007-04-27 12:40:11.996577'); -INSERT INTO dvds.payment VALUES (29515, 46, 2, 8152, 3.99, '2007-04-28 19:21:31.996577'); -INSERT INTO dvds.payment VALUES (29516, 46, 2, 9045, 8.99, '2007-04-30 05:05:23.996577'); -INSERT INTO dvds.payment VALUES (29517, 46, 2, 9806, 2.99, '2007-04-30 09:42:15.996577'); -INSERT INTO dvds.payment VALUES (29518, 46, 1, 10088, 2.99, '2007-04-30 18:44:47.996577'); -INSERT INTO dvds.payment VALUES (29519, 47, 1, 3631, 4.99, '2007-04-06 05:05:19.996577'); -INSERT INTO dvds.payment VALUES (29520, 47, 2, 4064, 5.99, '2007-04-07 02:57:46.996577'); -INSERT INTO dvds.payment VALUES (29521, 47, 1, 5174, 0.99, '2007-04-09 08:00:25.996577'); -INSERT INTO dvds.payment VALUES (29522, 47, 2, 6153, 9.99, '2007-04-11 07:59:30.996577'); -INSERT INTO dvds.payment VALUES (29523, 47, 2, 6164, 0.99, '2007-04-11 08:44:49.996577'); -INSERT INTO dvds.payment VALUES (29524, 47, 1, 6337, 3.99, '2007-04-11 17:59:13.996577'); -INSERT INTO dvds.payment VALUES (29525, 47, 2, 8159, 4.99, '2007-04-28 19:37:54.996577'); -INSERT INTO dvds.payment VALUES (29526, 47, 2, 8402, 6.99, '2007-04-29 04:54:11.996577'); -INSERT INTO dvds.payment VALUES (29527, 47, 1, 8863, 3.99, '2007-04-29 22:20:27.996577'); -INSERT INTO dvds.payment VALUES (29528, 47, 2, 9274, 4.99, '2007-04-30 13:35:30.996577'); -INSERT INTO dvds.payment VALUES (29529, 48, 2, 3758, 4.99, '2007-04-06 11:11:37.996577'); -INSERT INTO dvds.payment VALUES (29530, 48, 1, 4367, 2.99, '2007-04-07 18:20:27.996577'); -INSERT INTO dvds.payment VALUES (29531, 48, 2, 5148, 6.99, '2007-04-09 06:51:12.996577'); -INSERT INTO dvds.payment VALUES (29532, 48, 2, 6498, 3.99, '2007-04-12 01:34:04.996577'); -INSERT INTO dvds.payment VALUES (29533, 48, 1, 7920, 2.99, '2007-04-28 10:29:45.996577'); -INSERT INTO dvds.payment VALUES (29534, 48, 1, 8716, 6.99, '2007-04-29 16:07:35.996577'); -INSERT INTO dvds.payment VALUES (29535, 48, 1, 9402, 7.99, '2007-04-30 18:46:53.996577'); -INSERT INTO dvds.payment VALUES (29536, 48, 2, 9742, 7.99, '2007-04-30 07:38:46.996577'); -INSERT INTO dvds.payment VALUES (29537, 49, 2, 3575, 4.99, '2007-04-06 02:04:45.996577'); -INSERT INTO dvds.payment VALUES (29538, 49, 2, 3615, 0.99, '2007-04-06 04:16:13.996577'); -INSERT INTO dvds.payment VALUES (29539, 49, 1, 5491, 2.99, '2007-04-09 22:38:11.996577'); -INSERT INTO dvds.payment VALUES (29540, 49, 1, 6214, 4.99, '2007-04-11 11:18:14.996577'); -INSERT INTO dvds.payment VALUES (29541, 49, 1, 6279, 6.99, '2007-04-11 14:54:33.996577'); -INSERT INTO dvds.payment VALUES (29542, 49, 1, 6521, 7.99, '2007-04-12 02:34:37.996577'); -INSERT INTO dvds.payment VALUES (29543, 49, 2, 6759, 4.99, '2007-04-12 13:43:14.996577'); -INSERT INTO dvds.payment VALUES (29544, 49, 2, 7209, 4.99, '2007-04-27 07:45:19.996577'); -INSERT INTO dvds.payment VALUES (29545, 49, 2, 7742, 8.99, '2007-04-28 04:01:42.996577'); -INSERT INTO dvds.payment VALUES (29546, 49, 2, 8553, 10.99, '2007-04-29 09:44:02.996577'); -INSERT INTO dvds.payment VALUES (29547, 49, 2, 9006, 0.99, '2007-04-30 03:34:58.996577'); -INSERT INTO dvds.payment VALUES (29548, 49, 1, 9851, 4.99, '2007-04-30 11:18:50.996577'); -INSERT INTO dvds.payment VALUES (29549, 49, 1, 10144, 4.99, '2007-04-30 20:42:18.996577'); -INSERT INTO dvds.payment VALUES (29550, 50, 2, 4149, 2.99, '2007-04-07 07:08:43.996577'); -INSERT INTO dvds.payment VALUES (29551, 50, 2, 5290, 4.99, '2007-04-09 13:43:13.996577'); -INSERT INTO dvds.payment VALUES (29552, 50, 2, 5641, 4.99, '2007-04-10 05:12:09.996577'); -INSERT INTO dvds.payment VALUES (29553, 50, 2, 5681, 9.99, '2007-04-10 07:17:05.996577'); -INSERT INTO dvds.payment VALUES (29554, 50, 1, 5928, 6.99, '2007-04-10 20:26:56.996577'); -INSERT INTO dvds.payment VALUES (29555, 50, 2, 6634, 0.99, '2007-04-12 08:05:44.996577'); -INSERT INTO dvds.payment VALUES (29556, 50, 1, 6667, 8.99, '2007-04-12 10:04:48.996577'); -INSERT INTO dvds.payment VALUES (29557, 50, 1, 7383, 4.99, '2007-04-27 14:15:19.996577'); -INSERT INTO dvds.payment VALUES (29558, 50, 1, 8089, 0.99, '2007-04-28 16:55:13.996577'); -INSERT INTO dvds.payment VALUES (29559, 50, 1, 8261, 0.99, '2007-04-28 23:39:31.996577'); -INSERT INTO dvds.payment VALUES (29560, 50, 1, 8619, 5.99, '2007-04-29 12:18:34.996577'); -INSERT INTO dvds.payment VALUES (29561, 50, 2, 9179, 0.99, '2007-04-30 10:31:07.996577'); -INSERT INTO dvds.payment VALUES (29562, 50, 1, 9615, 4.99, '2007-04-30 02:28:22.996577'); -INSERT INTO dvds.payment VALUES (29563, 50, 2, 9691, 10.99, '2007-04-30 05:38:21.996577'); -INSERT INTO dvds.payment VALUES (29564, 50, 2, 10046, 2.99, '2007-04-30 17:35:37.996577'); -INSERT INTO dvds.payment VALUES (29565, 50, 2, 10165, 0.99, '2007-04-30 21:49:49.996577'); -INSERT INTO dvds.payment VALUES (29566, 50, 2, 10180, 6.99, '2007-04-30 22:26:09.996577'); -INSERT INTO dvds.payment VALUES (29567, 51, 1, 3525, 9.99, '2007-04-05 23:31:05.996577'); -INSERT INTO dvds.payment VALUES (29568, 51, 1, 5230, 2.99, '2007-04-09 10:58:49.996577'); -INSERT INTO dvds.payment VALUES (29569, 51, 2, 5304, 5.99, '2007-04-09 14:16:32.996577'); -INSERT INTO dvds.payment VALUES (29570, 51, 1, 5473, 7.99, '2007-04-09 21:47:37.996577'); -INSERT INTO dvds.payment VALUES (29571, 51, 1, 5606, 4.99, '2007-04-10 03:36:21.996577'); -INSERT INTO dvds.payment VALUES (29572, 51, 1, 7207, 5.99, '2007-04-27 07:41:52.996577'); -INSERT INTO dvds.payment VALUES (29573, 51, 1, 7398, 6.99, '2007-04-27 14:35:48.996577'); -INSERT INTO dvds.payment VALUES (29574, 51, 1, 7636, 5.99, '2007-04-27 23:37:02.996577'); -INSERT INTO dvds.payment VALUES (29575, 51, 1, 8495, 4.99, '2007-04-29 07:33:32.996577'); -INSERT INTO dvds.payment VALUES (29576, 51, 1, 8693, 0.99, '2007-04-29 15:12:39.996577'); -INSERT INTO dvds.payment VALUES (29577, 51, 1, 8880, 0.99, '2007-04-29 22:45:21.996577'); -INSERT INTO dvds.payment VALUES (29578, 51, 2, 9649, 0.99, '2007-04-30 04:15:20.996577'); -INSERT INTO dvds.payment VALUES (29579, 52, 1, 3997, 1.99, '2007-04-06 22:15:18.996577'); -INSERT INTO dvds.payment VALUES (29580, 52, 1, 5308, 0.99, '2007-04-09 14:27:04.996577'); -INSERT INTO dvds.payment VALUES (29581, 52, 2, 5313, 3.99, '2007-04-09 14:33:11.996577'); -INSERT INTO dvds.payment VALUES (29582, 52, 1, 5607, 2.99, '2007-04-10 03:36:36.996577'); -INSERT INTO dvds.payment VALUES (29583, 52, 1, 6394, 7.99, '2007-04-11 20:57:41.996577'); -INSERT INTO dvds.payment VALUES (29584, 52, 2, 7284, 0.99, '2007-04-27 10:40:30.996577'); -INSERT INTO dvds.payment VALUES (29585, 52, 2, 7438, 5.99, '2007-04-27 16:09:06.996577'); -INSERT INTO dvds.payment VALUES (29586, 52, 2, 7627, 4.99, '2007-04-27 23:25:13.996577'); -INSERT INTO dvds.payment VALUES (29587, 52, 1, 8686, 4.99, '2007-04-29 14:46:15.996577'); -INSERT INTO dvds.payment VALUES (29588, 52, 1, 9029, 4.99, '2007-04-30 04:31:37.996577'); -INSERT INTO dvds.payment VALUES (29589, 52, 2, 9749, 3.99, '2007-04-30 07:46:59.996577'); -INSERT INTO dvds.payment VALUES (29590, 52, 2, 9797, 4.99, '2007-04-30 09:22:10.996577'); -INSERT INTO dvds.payment VALUES (29591, 53, 2, 3591, 2.99, '2007-04-06 03:05:36.996577'); -INSERT INTO dvds.payment VALUES (29592, 53, 2, 3898, 4.99, '2007-04-06 17:41:03.996577'); -INSERT INTO dvds.payment VALUES (29593, 53, 2, 5185, 2.99, '2007-04-09 08:43:05.996577'); -INSERT INTO dvds.payment VALUES (29594, 53, 2, 7466, 2.99, '2007-04-27 17:19:43.996577'); -INSERT INTO dvds.payment VALUES (29595, 53, 1, 7699, 4.99, '2007-04-28 02:20:47.996577'); -INSERT INTO dvds.payment VALUES (29596, 53, 1, 9343, 4.99, '2007-04-30 16:41:39.996577'); -INSERT INTO dvds.payment VALUES (29597, 53, 1, 9928, 7.99, '2007-04-30 13:42:23.996577'); -INSERT INTO dvds.payment VALUES (29598, 54, 2, 4657, 4.99, '2007-04-08 08:19:28.996577'); -INSERT INTO dvds.payment VALUES (29599, 54, 2, 5055, 1.99, '2007-04-09 02:33:54.996577'); -INSERT INTO dvds.payment VALUES (29600, 54, 1, 5929, 2.99, '2007-04-10 20:27:55.996577'); -INSERT INTO dvds.payment VALUES (29601, 54, 1, 5992, 2.99, '2007-04-10 23:34:47.996577'); -INSERT INTO dvds.payment VALUES (29602, 54, 1, 6338, 7.99, '2007-04-11 18:08:07.996577'); -INSERT INTO dvds.payment VALUES (29603, 54, 2, 6560, 2.99, '2007-04-12 03:50:32.996577'); -INSERT INTO dvds.payment VALUES (29604, 54, 1, 6813, 0.99, '2007-04-12 16:32:16.996577'); -INSERT INTO dvds.payment VALUES (29605, 54, 2, 8992, 4.99, '2007-04-30 03:12:44.996577'); -INSERT INTO dvds.payment VALUES (29606, 55, 1, 4671, 4.99, '2007-04-08 08:43:58.996577'); -INSERT INTO dvds.payment VALUES (29607, 55, 2, 6314, 7.99, '2007-04-11 17:01:10.996577'); -INSERT INTO dvds.payment VALUES (29608, 55, 2, 7050, 4.99, '2007-04-27 02:01:43.996577'); -INSERT INTO dvds.payment VALUES (29609, 55, 2, 8288, 6.99, '2007-04-29 00:32:48.996577'); -INSERT INTO dvds.payment VALUES (29610, 55, 1, 9302, 2.99, '2007-04-30 15:03:23.996577'); -INSERT INTO dvds.payment VALUES (29611, 55, 2, 9596, 5.99, '2007-04-30 01:57:13.996577'); -INSERT INTO dvds.payment VALUES (29612, 55, 2, 9798, 2.99, '2007-04-30 09:23:44.996577'); -INSERT INTO dvds.payment VALUES (29613, 56, 1, 3718, 7.99, '2007-04-06 09:26:22.996577'); -INSERT INTO dvds.payment VALUES (29614, 56, 2, 3771, 2.99, '2007-04-06 11:48:00.996577'); -INSERT INTO dvds.payment VALUES (29615, 56, 1, 4097, 3.99, '2007-04-07 04:39:21.996577'); -INSERT INTO dvds.payment VALUES (29616, 56, 2, 4702, 4.99, '2007-04-08 10:10:02.996577'); -INSERT INTO dvds.payment VALUES (29617, 56, 1, 5142, 4.99, '2007-04-09 06:33:49.996577'); -INSERT INTO dvds.payment VALUES (29618, 56, 1, 7385, 2.99, '2007-04-27 14:18:12.996577'); -INSERT INTO dvds.payment VALUES (29619, 56, 1, 7696, 7.99, '2007-04-28 02:10:01.996577'); -INSERT INTO dvds.payment VALUES (29620, 56, 2, 7942, 0.99, '2007-04-28 11:18:10.996577'); -INSERT INTO dvds.payment VALUES (29621, 56, 1, 8285, 0.99, '2007-04-29 00:28:44.996577'); -INSERT INTO dvds.payment VALUES (29622, 57, 1, 3727, 4.99, '2007-04-06 09:45:09.996577'); -INSERT INTO dvds.payment VALUES (29623, 57, 2, 4226, 4.99, '2007-04-07 11:06:22.996577'); -INSERT INTO dvds.payment VALUES (29624, 57, 1, 5060, 4.99, '2007-04-09 02:56:29.996577'); -INSERT INTO dvds.payment VALUES (29625, 57, 1, 5694, 0.99, '2007-04-10 08:09:04.996577'); -INSERT INTO dvds.payment VALUES (29626, 57, 2, 5948, 2.99, '2007-04-10 21:40:34.996577'); -INSERT INTO dvds.payment VALUES (29627, 57, 2, 6482, 4.99, '2007-04-12 00:18:47.996577'); -INSERT INTO dvds.payment VALUES (29628, 57, 1, 6494, 1.99, '2007-04-12 01:11:17.996577'); -INSERT INTO dvds.payment VALUES (29629, 57, 2, 6649, 4.99, '2007-04-12 09:19:35.996577'); -INSERT INTO dvds.payment VALUES (29630, 57, 2, 8249, 5.99, '2007-04-28 23:17:10.996577'); -INSERT INTO dvds.payment VALUES (29631, 57, 1, 9086, 0.99, '2007-04-30 06:47:12.996577'); -INSERT INTO dvds.payment VALUES (29632, 57, 2, 9136, 0.99, '2007-04-30 08:35:46.996577'); -INSERT INTO dvds.payment VALUES (29633, 57, 1, 9211, 1.99, '2007-04-30 11:28:11.996577'); -INSERT INTO dvds.payment VALUES (29634, 57, 1, 9703, 0.99, '2007-04-30 06:03:18.996577'); -INSERT INTO dvds.payment VALUES (29635, 57, 2, 9812, 2.99, '2007-04-30 09:56:33.996577'); -INSERT INTO dvds.payment VALUES (29636, 57, 2, 10169, 4.99, '2007-04-30 21:55:39.996577'); -INSERT INTO dvds.payment VALUES (29637, 58, 1, 3685, 4.99, '2007-04-06 07:59:11.996577'); -INSERT INTO dvds.payment VALUES (29638, 58, 2, 4131, 4.99, '2007-04-07 06:21:44.996577'); -INSERT INTO dvds.payment VALUES (29639, 58, 2, 5439, 1.99, '2007-04-09 20:08:01.996577'); -INSERT INTO dvds.payment VALUES (29640, 58, 1, 7063, 9.99, '2007-04-27 02:20:53.996577'); -INSERT INTO dvds.payment VALUES (29641, 58, 2, 7487, 4.99, '2007-04-27 18:01:11.996577'); -INSERT INTO dvds.payment VALUES (29642, 58, 1, 8853, 0.99, '2007-04-29 22:02:47.996577'); -INSERT INTO dvds.payment VALUES (29643, 58, 2, 9561, 2.99, '2007-04-30 00:50:39.996577'); -INSERT INTO dvds.payment VALUES (29644, 58, 2, 10037, 2.99, '2007-04-30 17:16:34.996577'); -INSERT INTO dvds.payment VALUES (29645, 58, 1, 10068, 4.99, '2007-04-30 18:08:04.996577'); -INSERT INTO dvds.payment VALUES (29646, 59, 2, 4148, 2.99, '2007-04-07 07:05:24.996577'); -INSERT INTO dvds.payment VALUES (29647, 59, 1, 4384, 4.99, '2007-04-07 19:15:11.996577'); -INSERT INTO dvds.payment VALUES (29648, 59, 1, 4631, 4.99, '2007-04-08 07:06:48.996577'); -INSERT INTO dvds.payment VALUES (29649, 59, 1, 4891, 3.99, '2007-04-08 18:34:45.996577'); -INSERT INTO dvds.payment VALUES (29650, 59, 2, 5195, 8.99, '2007-04-09 09:07:57.996577'); -INSERT INTO dvds.payment VALUES (29651, 59, 1, 5207, 3.99, '2007-04-09 09:44:10.996577'); -INSERT INTO dvds.payment VALUES (29652, 59, 1, 5830, 4.99, '2007-04-10 15:02:26.996577'); -INSERT INTO dvds.payment VALUES (29653, 59, 1, 7991, 4.99, '2007-04-28 13:14:11.996577'); -INSERT INTO dvds.payment VALUES (29654, 59, 2, 8643, 4.99, '2007-04-29 13:13:49.996577'); -INSERT INTO dvds.payment VALUES (29655, 59, 1, 9469, 8.99, '2007-04-30 21:25:00.996577'); -INSERT INTO dvds.payment VALUES (29656, 59, 2, 9573, 6.99, '2007-04-30 01:14:04.996577'); -INSERT INTO dvds.payment VALUES (29657, 60, 2, 3473, 2.99, '2007-04-05 21:26:00.996577'); -INSERT INTO dvds.payment VALUES (29658, 60, 1, 3849, 2.99, '2007-04-06 15:18:09.996577'); -INSERT INTO dvds.payment VALUES (29659, 60, 1, 6282, 5.99, '2007-04-11 15:14:48.996577'); -INSERT INTO dvds.payment VALUES (29660, 60, 2, 7067, 0.99, '2007-04-27 02:23:36.996577'); -INSERT INTO dvds.payment VALUES (29661, 60, 1, 7331, 3.99, '2007-04-27 12:26:16.996577'); -INSERT INTO dvds.payment VALUES (29662, 60, 1, 7494, 0.99, '2007-04-27 18:24:57.996577'); -INSERT INTO dvds.payment VALUES (29663, 60, 1, 9356, 4.99, '2007-04-30 17:04:50.996577'); -INSERT INTO dvds.payment VALUES (29664, 60, 1, 9761, 4.99, '2007-04-30 08:00:20.996577'); -INSERT INTO dvds.payment VALUES (29665, 61, 1, 7027, 7.99, '2007-04-27 01:18:41.996577'); -INSERT INTO dvds.payment VALUES (29666, 61, 2, 7071, 1.99, '2007-04-27 02:29:41.996577'); -INSERT INTO dvds.payment VALUES (29667, 61, 2, 8029, 6.99, '2007-04-28 14:39:47.996577'); -INSERT INTO dvds.payment VALUES (29668, 61, 2, 8075, 4.99, '2007-04-28 16:05:54.996577'); -INSERT INTO dvds.payment VALUES (29669, 61, 1, 8651, 3.99, '2007-04-29 13:30:44.996577'); -INSERT INTO dvds.payment VALUES (29670, 61, 2, 9597, 6.99, '2007-04-30 01:57:33.996577'); -INSERT INTO dvds.payment VALUES (29671, 62, 2, 3843, 2.99, '2007-04-06 15:04:06.996577'); -INSERT INTO dvds.payment VALUES (29672, 62, 2, 4159, 4.99, '2007-04-07 07:39:23.996577'); -INSERT INTO dvds.payment VALUES (29673, 62, 2, 5292, 2.99, '2007-04-09 13:45:20.996577'); -INSERT INTO dvds.payment VALUES (29674, 62, 2, 8360, 4.99, '2007-04-29 03:36:26.996577'); -INSERT INTO dvds.payment VALUES (29675, 62, 2, 10080, 0.99, '2007-04-30 18:35:36.996577'); -INSERT INTO dvds.payment VALUES (29676, 63, 2, 3923, 8.99, '2007-04-06 19:02:36.996577'); -INSERT INTO dvds.payment VALUES (29677, 63, 1, 4587, 4.99, '2007-04-08 04:44:52.996577'); -INSERT INTO dvds.payment VALUES (29678, 63, 1, 5585, 6.99, '2007-04-10 02:44:09.996577'); -INSERT INTO dvds.payment VALUES (29679, 63, 2, 5788, 4.99, '2007-04-10 12:38:48.996577'); -INSERT INTO dvds.payment VALUES (29680, 63, 2, 5832, 4.99, '2007-04-10 15:03:14.996577'); -INSERT INTO dvds.payment VALUES (29681, 63, 2, 6769, 3.99, '2007-04-12 14:17:20.996577'); -INSERT INTO dvds.payment VALUES (29682, 63, 2, 6847, 8.99, '2007-04-12 17:51:03.996577'); -INSERT INTO dvds.payment VALUES (29683, 63, 2, 8311, 5.99, '2007-04-29 01:54:33.996577'); -INSERT INTO dvds.payment VALUES (29684, 63, 2, 9007, 0.99, '2007-04-30 03:37:58.996577'); -INSERT INTO dvds.payment VALUES (29685, 63, 1, 9546, 4.99, '2007-04-30 00:16:06.996577'); -INSERT INTO dvds.payment VALUES (29686, 63, 2, 9549, 3.99, '2007-04-30 00:25:30.996577'); -INSERT INTO dvds.payment VALUES (29687, 63, 1, 9795, 0.99, '2007-04-30 09:15:45.996577'); -INSERT INTO dvds.payment VALUES (29688, 63, 2, 9938, 2.99, '2007-04-30 13:57:13.996577'); -INSERT INTO dvds.payment VALUES (29689, 63, 2, 10148, 0.99, '2007-04-30 20:47:42.996577'); -INSERT INTO dvds.payment VALUES (29690, 64, 2, 3982, 0.99, '2007-04-06 21:42:42.996577'); -INSERT INTO dvds.payment VALUES (29691, 64, 1, 4288, 4.99, '2007-04-07 14:06:51.996577'); -INSERT INTO dvds.payment VALUES (29692, 64, 1, 4690, 1.99, '2007-04-08 09:32:28.996577'); -INSERT INTO dvds.payment VALUES (29693, 64, 2, 4819, 5.99, '2007-04-08 15:47:41.996577'); -INSERT INTO dvds.payment VALUES (29694, 64, 2, 4971, 5.99, '2007-04-08 22:23:15.996577'); -INSERT INTO dvds.payment VALUES (29695, 64, 1, 5114, 3.99, '2007-04-09 05:35:31.996577'); -INSERT INTO dvds.payment VALUES (29696, 64, 2, 5279, 2.99, '2007-04-09 13:15:02.996577'); -INSERT INTO dvds.payment VALUES (29697, 64, 1, 5432, 0.99, '2007-04-09 19:49:51.996577'); -INSERT INTO dvds.payment VALUES (29698, 64, 2, 6372, 2.99, '2007-04-11 20:03:32.996577'); -INSERT INTO dvds.payment VALUES (29699, 64, 2, 6457, 0.99, '2007-04-11 23:35:01.996577'); -INSERT INTO dvds.payment VALUES (29700, 64, 2, 6698, 1.99, '2007-04-12 11:13:26.996577'); -INSERT INTO dvds.payment VALUES (29701, 64, 2, 6744, 0.99, '2007-04-12 12:58:54.996577'); -INSERT INTO dvds.payment VALUES (29702, 64, 2, 7045, 0.99, '2007-04-27 01:56:01.996577'); -INSERT INTO dvds.payment VALUES (29703, 64, 1, 7082, 2.99, '2007-04-27 02:55:58.996577'); -INSERT INTO dvds.payment VALUES (29704, 64, 1, 7476, 1.99, '2007-04-27 17:37:22.996577'); -INSERT INTO dvds.payment VALUES (29705, 64, 2, 8602, 4.99, '2007-04-29 11:32:53.996577'); -INSERT INTO dvds.payment VALUES (29706, 64, 1, 9832, 2.99, '2007-04-30 10:30:15.996577'); -INSERT INTO dvds.payment VALUES (29707, 64, 1, 9880, 6.99, '2007-04-30 12:17:28.996577'); -INSERT INTO dvds.payment VALUES (29708, 64, 1, 9924, 3.99, '2007-04-30 13:33:23.996577'); -INSERT INTO dvds.payment VALUES (29709, 64, 2, 10185, 0.99, '2007-04-30 22:40:37.996577'); -INSERT INTO dvds.payment VALUES (29710, 65, 1, 3535, 4.99, '2007-04-06 00:01:12.996577'); -INSERT INTO dvds.payment VALUES (29711, 65, 1, 4240, 4.99, '2007-04-07 12:01:38.996577'); -INSERT INTO dvds.payment VALUES (29712, 65, 2, 4635, 3.99, '2007-04-08 07:11:06.996577'); -INSERT INTO dvds.payment VALUES (29713, 65, 1, 5735, 3.99, '2007-04-10 10:07:41.996577'); -INSERT INTO dvds.payment VALUES (29714, 65, 2, 6527, 0.99, '2007-04-12 02:51:32.996577'); -INSERT INTO dvds.payment VALUES (29715, 65, 1, 7877, 6.99, '2007-04-28 08:54:02.996577'); -INSERT INTO dvds.payment VALUES (29716, 65, 2, 8392, 1.99, '2007-04-29 04:28:53.996577'); -INSERT INTO dvds.payment VALUES (29717, 65, 2, 8404, 5.99, '2007-04-29 04:55:27.996577'); -INSERT INTO dvds.payment VALUES (29718, 65, 1, 9293, 3.99, '2007-04-30 14:40:54.996577'); -INSERT INTO dvds.payment VALUES (29719, 66, 1, 3573, 4.99, '2007-04-06 02:02:14.996577'); -INSERT INTO dvds.payment VALUES (29720, 66, 2, 3757, 2.99, '2007-04-06 11:10:52.996577'); -INSERT INTO dvds.payment VALUES (29721, 66, 2, 4088, 2.99, '2007-04-07 04:00:21.996577'); -INSERT INTO dvds.payment VALUES (29722, 66, 1, 4108, 4.99, '2007-04-07 05:06:57.996577'); -INSERT INTO dvds.payment VALUES (29723, 66, 2, 4165, 6.99, '2007-04-07 07:51:53.996577'); -INSERT INTO dvds.payment VALUES (29724, 66, 2, 4911, 5.99, '2007-04-08 19:48:52.996577'); -INSERT INTO dvds.payment VALUES (29725, 66, 2, 5915, 0.99, '2007-04-10 19:40:42.996577'); -INSERT INTO dvds.payment VALUES (29726, 66, 1, 6290, 8.99, '2007-04-11 15:41:08.996577'); -INSERT INTO dvds.payment VALUES (29727, 66, 2, 6348, 5.99, '2007-04-11 18:49:44.996577'); -INSERT INTO dvds.payment VALUES (29728, 66, 1, 6402, 3.99, '2007-04-11 21:14:36.996577'); -INSERT INTO dvds.payment VALUES (29729, 66, 1, 6995, 2.99, '2007-04-26 23:40:39.996577'); -INSERT INTO dvds.payment VALUES (29730, 66, 1, 7872, 2.99, '2007-04-28 08:46:42.996577'); -INSERT INTO dvds.payment VALUES (29731, 66, 1, 9091, 5.99, '2007-04-30 06:59:11.996577'); -INSERT INTO dvds.payment VALUES (29732, 67, 2, 4090, 4.99, '2007-04-07 04:15:59.996577'); -INSERT INTO dvds.payment VALUES (29733, 67, 2, 5399, 2.99, '2007-04-09 18:21:10.996577'); -INSERT INTO dvds.payment VALUES (29734, 67, 2, 5510, 2.99, '2007-04-09 23:27:03.996577'); -INSERT INTO dvds.payment VALUES (29735, 67, 1, 6137, 2.99, '2007-04-11 07:02:46.996577'); -INSERT INTO dvds.payment VALUES (29736, 67, 2, 7277, 5.99, '2007-04-27 10:17:03.996577'); -INSERT INTO dvds.payment VALUES (29737, 67, 2, 7895, 0.99, '2007-04-28 09:25:41.996577'); -INSERT INTO dvds.payment VALUES (29738, 67, 2, 8563, 1.99, '2007-04-29 10:01:24.996577'); -INSERT INTO dvds.payment VALUES (29739, 67, 1, 9640, 7.99, '2007-04-30 04:01:51.996577'); -INSERT INTO dvds.payment VALUES (29740, 68, 1, 3598, 0.99, '2007-04-06 03:39:30.996577'); -INSERT INTO dvds.payment VALUES (29741, 68, 2, 3801, 4.99, '2007-04-06 13:34:16.996577'); -INSERT INTO dvds.payment VALUES (29742, 68, 1, 3864, 0.99, '2007-04-06 16:10:08.996577'); -INSERT INTO dvds.payment VALUES (29743, 68, 2, 4555, 6.99, '2007-04-08 03:17:02.996577'); -INSERT INTO dvds.payment VALUES (29744, 68, 1, 4925, 3.99, '2007-04-08 20:24:26.996577'); -INSERT INTO dvds.payment VALUES (29745, 68, 1, 6512, 4.99, '2007-04-12 02:11:15.996577'); -INSERT INTO dvds.payment VALUES (29746, 68, 2, 9339, 3.99, '2007-04-30 16:31:54.996577'); -INSERT INTO dvds.payment VALUES (29747, 68, 1, 9538, 3.99, '2007-04-30 23:53:48.996577'); -INSERT INTO dvds.payment VALUES (29748, 68, 2, 9642, 4.99, '2007-04-30 04:02:23.996577'); -INSERT INTO dvds.payment VALUES (29749, 68, 1, 10115, 7.99, '2007-04-30 19:42:13.996577'); -INSERT INTO dvds.payment VALUES (29750, 69, 1, 3883, 8.99, '2007-04-06 17:08:04.996577'); -INSERT INTO dvds.payment VALUES (29751, 69, 1, 4265, 0.99, '2007-04-07 12:56:17.996577'); -INSERT INTO dvds.payment VALUES (29752, 69, 1, 4427, 0.99, '2007-04-07 20:57:17.996577'); -INSERT INTO dvds.payment VALUES (29753, 69, 2, 5569, 3.99, '2007-04-10 02:06:58.996577'); -INSERT INTO dvds.payment VALUES (29754, 69, 2, 6297, 4.99, '2007-04-11 16:05:48.996577'); -INSERT INTO dvds.payment VALUES (29755, 69, 1, 6385, 6.99, '2007-04-11 20:35:58.996577'); -INSERT INTO dvds.payment VALUES (29756, 69, 2, 6785, 6.99, '2007-04-12 14:59:23.996577'); -INSERT INTO dvds.payment VALUES (29757, 69, 2, 8649, 6.99, '2007-04-29 13:25:59.996577'); -INSERT INTO dvds.payment VALUES (29758, 69, 2, 9193, 2.99, '2007-04-30 10:57:08.996577'); -INSERT INTO dvds.payment VALUES (29759, 69, 1, 9612, 2.99, '2007-04-30 02:26:57.996577'); -INSERT INTO dvds.payment VALUES (29760, 69, 2, 10074, 0.99, '2007-04-30 18:25:42.996577'); -INSERT INTO dvds.payment VALUES (29761, 70, 1, 4061, 0.99, '2007-04-07 02:42:01.996577'); -INSERT INTO dvds.payment VALUES (29762, 70, 1, 5927, 5.99, '2007-04-10 20:25:40.996577'); -INSERT INTO dvds.payment VALUES (29763, 70, 2, 7036, 4.99, '2007-04-27 01:34:38.996577'); -INSERT INTO dvds.payment VALUES (29764, 70, 2, 7421, 7.99, '2007-04-27 15:38:31.996577'); -INSERT INTO dvds.payment VALUES (29765, 70, 1, 7714, 2.99, '2007-04-28 03:00:56.996577'); -INSERT INTO dvds.payment VALUES (29766, 70, 2, 8550, 0.99, '2007-04-29 09:41:03.996577'); -INSERT INTO dvds.payment VALUES (29767, 70, 1, 8747, 2.99, '2007-04-29 17:36:23.996577'); -INSERT INTO dvds.payment VALUES (29768, 71, 2, 4614, 4.99, '2007-04-08 06:13:43.996577'); -INSERT INTO dvds.payment VALUES (29769, 71, 2, 5281, 1.99, '2007-04-09 13:23:33.996577'); -INSERT INTO dvds.payment VALUES (29770, 71, 2, 5358, 3.99, '2007-04-09 16:37:47.996577'); -INSERT INTO dvds.payment VALUES (29771, 71, 1, 5543, 8.99, '2007-04-10 01:16:29.996577'); -INSERT INTO dvds.payment VALUES (29772, 71, 1, 5770, 4.99, '2007-04-10 11:49:54.996577'); -INSERT INTO dvds.payment VALUES (29773, 71, 2, 5814, 4.99, '2007-04-10 14:15:16.996577'); -INSERT INTO dvds.payment VALUES (29774, 71, 2, 6020, 0.99, '2007-04-11 00:37:21.996577'); -INSERT INTO dvds.payment VALUES (29775, 71, 1, 6739, 5.99, '2007-04-12 12:50:34.996577'); -INSERT INTO dvds.payment VALUES (29776, 71, 2, 7160, 0.99, '2007-04-27 05:54:32.996577'); -INSERT INTO dvds.payment VALUES (29777, 71, 1, 7550, 4.99, '2007-04-27 20:23:33.996577'); -INSERT INTO dvds.payment VALUES (29778, 71, 2, 7982, 4.99, '2007-04-28 12:48:25.996577'); -INSERT INTO dvds.payment VALUES (29779, 71, 2, 8128, 2.99, '2007-04-28 18:14:32.996577'); -INSERT INTO dvds.payment VALUES (29780, 71, 1, 8293, 2.99, '2007-04-29 00:59:16.996577'); -INSERT INTO dvds.payment VALUES (29781, 71, 1, 8574, 1.99, '2007-04-29 10:20:19.996577'); -INSERT INTO dvds.payment VALUES (29782, 71, 1, 8668, 4.99, '2007-04-29 14:09:57.996577'); -INSERT INTO dvds.payment VALUES (29783, 71, 1, 8783, 3.99, '2007-04-29 18:59:54.996577'); -INSERT INTO dvds.payment VALUES (29784, 71, 1, 8789, 4.99, '2007-04-29 19:15:53.996577'); -INSERT INTO dvds.payment VALUES (29785, 71, 1, 8956, 0.99, '2007-04-30 02:00:55.996577'); -INSERT INTO dvds.payment VALUES (29786, 72, 1, 3700, 0.99, '2007-04-06 08:40:45.996577'); -INSERT INTO dvds.payment VALUES (29787, 72, 2, 5223, 4.99, '2007-04-09 10:34:29.996577'); -INSERT INTO dvds.payment VALUES (29788, 72, 1, 5302, 4.99, '2007-04-09 14:11:02.996577'); -INSERT INTO dvds.payment VALUES (29789, 72, 1, 5424, 0.99, '2007-04-09 19:27:35.996577'); -INSERT INTO dvds.payment VALUES (29790, 72, 1, 5840, 4.99, '2007-04-10 15:37:35.996577'); -INSERT INTO dvds.payment VALUES (29791, 72, 2, 6081, 0.99, '2007-04-11 03:39:35.996577'); -INSERT INTO dvds.payment VALUES (29792, 72, 2, 8228, 4.99, '2007-04-28 22:37:24.996577'); -INSERT INTO dvds.payment VALUES (29793, 72, 1, 9027, 2.99, '2007-04-30 04:26:53.996577'); -INSERT INTO dvds.payment VALUES (29794, 72, 2, 9420, 5.99, '2007-04-30 19:33:44.996577'); -INSERT INTO dvds.payment VALUES (29795, 72, 2, 9648, 4.99, '2007-04-30 04:14:29.996577'); -INSERT INTO dvds.payment VALUES (29796, 73, 2, 4327, 2.99, '2007-04-07 16:30:05.996577'); -INSERT INTO dvds.payment VALUES (29797, 73, 1, 4789, 4.99, '2007-04-08 14:50:27.996577'); -INSERT INTO dvds.payment VALUES (29798, 73, 2, 5021, 4.99, '2007-04-09 00:38:07.996577'); -INSERT INTO dvds.payment VALUES (29799, 73, 1, 6514, 9.99, '2007-04-12 02:16:10.996577'); -INSERT INTO dvds.payment VALUES (29800, 73, 1, 6645, 2.99, '2007-04-12 09:08:21.996577'); -INSERT INTO dvds.payment VALUES (29801, 73, 1, 7590, 4.99, '2007-04-27 21:52:50.996577'); -INSERT INTO dvds.payment VALUES (29802, 73, 1, 7683, 4.99, '2007-04-28 01:39:55.996577'); -INSERT INTO dvds.payment VALUES (29803, 73, 1, 8377, 4.99, '2007-04-29 03:56:06.996577'); -INSERT INTO dvds.payment VALUES (29804, 73, 1, 9212, 2.99, '2007-04-30 11:31:39.996577'); -INSERT INTO dvds.payment VALUES (29805, 73, 1, 9776, 2.99, '2007-04-30 08:29:29.996577'); -INSERT INTO dvds.payment VALUES (29806, 74, 2, 3819, 3.99, '2007-04-06 14:03:32.996577'); -INSERT INTO dvds.payment VALUES (29807, 74, 1, 5530, 2.99, '2007-04-10 00:42:15.996577'); -INSERT INTO dvds.payment VALUES (29808, 74, 2, 5603, 2.99, '2007-04-10 03:33:20.996577'); -INSERT INTO dvds.payment VALUES (29809, 74, 2, 5917, 4.99, '2007-04-10 19:58:48.996577'); -INSERT INTO dvds.payment VALUES (29810, 74, 1, 6241, 7.99, '2007-04-11 13:09:14.996577'); -INSERT INTO dvds.payment VALUES (29811, 74, 1, 6475, 2.99, '2007-04-12 00:05:23.996577'); -INSERT INTO dvds.payment VALUES (29812, 74, 1, 7304, 6.99, '2007-04-27 11:25:22.996577'); -INSERT INTO dvds.payment VALUES (29813, 74, 2, 8796, 5.99, '2007-04-29 19:37:37.996577'); -INSERT INTO dvds.payment VALUES (29814, 74, 2, 9112, 4.99, '2007-04-30 07:34:57.996577'); -INSERT INTO dvds.payment VALUES (29815, 74, 2, 10051, 3.99, '2007-04-30 17:42:46.996577'); -INSERT INTO dvds.payment VALUES (29816, 75, 1, 3711, 0.99, '2007-04-06 09:14:41.996577'); -INSERT INTO dvds.payment VALUES (29817, 75, 2, 4179, 2.99, '2007-04-07 08:45:41.996577'); -INSERT INTO dvds.payment VALUES (29818, 75, 2, 4511, 0.99, '2007-04-08 01:04:47.996577'); -INSERT INTO dvds.payment VALUES (29819, 75, 1, 4639, 5.99, '2007-04-08 07:25:47.996577'); -INSERT INTO dvds.payment VALUES (29820, 75, 2, 5260, 2.99, '2007-04-09 12:34:11.996577'); -INSERT INTO dvds.payment VALUES (29821, 75, 2, 6052, 0.99, '2007-04-11 02:19:53.996577'); -INSERT INTO dvds.payment VALUES (29822, 75, 1, 6092, 3.99, '2007-04-11 04:19:57.996577'); -INSERT INTO dvds.payment VALUES (29823, 75, 1, 6486, 0.99, '2007-04-12 00:38:02.996577'); -INSERT INTO dvds.payment VALUES (29824, 75, 2, 6530, 0.99, '2007-04-12 03:01:45.996577'); -INSERT INTO dvds.payment VALUES (29825, 75, 2, 6852, 2.99, '2007-04-12 18:02:15.996577'); -INSERT INTO dvds.payment VALUES (29826, 75, 1, 7052, 2.99, '2007-04-27 02:05:04.996577'); -INSERT INTO dvds.payment VALUES (29827, 75, 1, 7454, 4.99, '2007-04-27 16:55:52.996577'); -INSERT INTO dvds.payment VALUES (29828, 75, 1, 7843, 0.99, '2007-04-28 07:38:48.996577'); -INSERT INTO dvds.payment VALUES (29829, 75, 2, 7897, 2.99, '2007-04-28 09:30:17.996577'); -INSERT INTO dvds.payment VALUES (29830, 75, 2, 8202, 1.99, '2007-04-28 21:40:11.996577'); -INSERT INTO dvds.payment VALUES (29831, 75, 1, 8823, 6.99, '2007-04-29 20:50:38.996577'); -INSERT INTO dvds.payment VALUES (29832, 75, 2, 9168, 5.99, '2007-04-30 09:59:43.996577'); -INSERT INTO dvds.payment VALUES (29833, 75, 2, 9442, 4.99, '2007-04-30 20:12:57.996577'); -INSERT INTO dvds.payment VALUES (29834, 75, 2, 9501, 4.99, '2007-04-30 22:27:47.996577'); -INSERT INTO dvds.payment VALUES (29835, 75, 1, 9783, 9.99, '2007-04-30 08:44:12.996577'); -INSERT INTO dvds.payment VALUES (29836, 76, 2, 4099, 4.99, '2007-04-07 04:48:59.996577'); -INSERT INTO dvds.payment VALUES (29837, 76, 2, 5571, 0.99, '2007-04-10 02:16:46.996577'); -INSERT INTO dvds.payment VALUES (29838, 76, 2, 6789, 0.99, '2007-04-12 15:03:06.996577'); -INSERT INTO dvds.payment VALUES (29839, 76, 2, 8253, 6.99, '2007-04-28 23:25:32.996577'); -INSERT INTO dvds.payment VALUES (29840, 76, 2, 8357, 2.99, '2007-04-29 03:28:10.996577'); -INSERT INTO dvds.payment VALUES (29841, 76, 2, 8405, 3.99, '2007-04-29 04:56:45.996577'); -INSERT INTO dvds.payment VALUES (29842, 76, 1, 8935, 0.99, '2007-04-30 01:07:11.996577'); -INSERT INTO dvds.payment VALUES (29843, 76, 2, 9312, 2.99, '2007-04-30 15:27:43.996577'); -INSERT INTO dvds.payment VALUES (29844, 76, 2, 10082, 0.99, '2007-04-30 18:37:58.996577'); -INSERT INTO dvds.payment VALUES (29845, 77, 2, 4928, 0.99, '2007-04-08 20:34:07.996577'); -INSERT INTO dvds.payment VALUES (29846, 77, 2, 6168, 0.99, '2007-04-11 08:50:04.996577'); -INSERT INTO dvds.payment VALUES (29847, 77, 2, 6390, 2.99, '2007-04-11 20:47:49.996577'); -INSERT INTO dvds.payment VALUES (29848, 77, 1, 7406, 3.99, '2007-04-27 14:54:11.996577'); -INSERT INTO dvds.payment VALUES (29849, 77, 1, 7710, 0.99, '2007-04-28 02:52:33.996577'); -INSERT INTO dvds.payment VALUES (29850, 77, 2, 8942, 4.99, '2007-04-30 01:29:33.996577'); -INSERT INTO dvds.payment VALUES (29851, 77, 1, 9811, 0.99, '2007-04-30 09:52:11.996577'); -INSERT INTO dvds.payment VALUES (29852, 77, 2, 10184, 4.99, '2007-04-30 22:37:59.996577'); -INSERT INTO dvds.payment VALUES (29853, 78, 1, 3593, 4.99, '2007-04-06 03:08:18.996577'); -INSERT INTO dvds.payment VALUES (29854, 78, 2, 4227, 5.99, '2007-04-07 11:10:02.996577'); -INSERT INTO dvds.payment VALUES (29855, 78, 2, 4627, 2.99, '2007-04-08 06:53:05.996577'); -INSERT INTO dvds.payment VALUES (29856, 78, 2, 4778, 0.99, '2007-04-08 14:20:17.996577'); -INSERT INTO dvds.payment VALUES (29857, 78, 1, 5078, 1.99, '2007-04-09 03:48:50.996577'); -INSERT INTO dvds.payment VALUES (29858, 78, 2, 5604, 0.99, '2007-04-10 03:33:26.996577'); -INSERT INTO dvds.payment VALUES (29859, 78, 1, 6005, 0.99, '2007-04-11 00:05:08.996577'); -INSERT INTO dvds.payment VALUES (29860, 78, 1, 6344, 4.99, '2007-04-11 18:33:09.996577'); -INSERT INTO dvds.payment VALUES (29861, 78, 2, 7200, 1.99, '2007-04-27 07:26:04.996577'); -INSERT INTO dvds.payment VALUES (29862, 78, 2, 7747, 4.99, '2007-04-28 04:18:37.996577'); -INSERT INTO dvds.payment VALUES (29863, 78, 2, 7926, 3.99, '2007-04-28 10:41:28.996577'); -INSERT INTO dvds.payment VALUES (29864, 78, 1, 7957, 6.99, '2007-04-28 12:02:34.996577'); -INSERT INTO dvds.payment VALUES (29865, 78, 2, 8920, 4.99, '2007-04-30 00:27:50.996577'); -INSERT INTO dvds.payment VALUES (29866, 78, 1, 9068, 5.99, '2007-04-30 06:00:11.996577'); -INSERT INTO dvds.payment VALUES (29867, 79, 1, 3641, 0.99, '2007-04-06 05:45:35.996577'); -INSERT INTO dvds.payment VALUES (29868, 79, 1, 3748, 2.99, '2007-04-06 10:39:48.996577'); -INSERT INTO dvds.payment VALUES (29869, 79, 2, 4049, 4.99, '2007-04-07 02:03:19.996577'); -INSERT INTO dvds.payment VALUES (29870, 79, 1, 4530, 4.99, '2007-04-08 01:55:31.996577'); -INSERT INTO dvds.payment VALUES (29871, 79, 2, 4736, 4.99, '2007-04-08 11:51:21.996577'); -INSERT INTO dvds.payment VALUES (29872, 79, 2, 5205, 2.99, '2007-04-09 09:25:03.996577'); -INSERT INTO dvds.payment VALUES (29873, 79, 1, 5555, 2.99, '2007-04-10 01:37:21.996577'); -INSERT INTO dvds.payment VALUES (29874, 79, 2, 6162, 5.99, '2007-04-11 08:40:56.996577'); -INSERT INTO dvds.payment VALUES (29875, 79, 1, 7220, 9.99, '2007-04-27 08:04:20.996577'); -INSERT INTO dvds.payment VALUES (29876, 79, 1, 8849, 2.99, '2007-04-29 21:49:27.996577'); -INSERT INTO dvds.payment VALUES (29877, 79, 1, 9814, 1.99, '2007-04-30 09:58:12.996577'); -INSERT INTO dvds.payment VALUES (29878, 79, 2, 9845, 6.99, '2007-04-30 10:56:31.996577'); -INSERT INTO dvds.payment VALUES (29879, 79, 1, 9989, 0.99, '2007-04-30 15:51:05.996577'); -INSERT INTO dvds.payment VALUES (29880, 80, 2, 3623, 4.99, '2007-04-06 04:33:49.996577'); -INSERT INTO dvds.payment VALUES (29881, 80, 2, 4268, 8.99, '2007-04-07 13:04:31.996577'); -INSERT INTO dvds.payment VALUES (29882, 80, 2, 4299, 3.99, '2007-04-07 15:02:14.996577'); -INSERT INTO dvds.payment VALUES (29883, 80, 1, 4688, 5.99, '2007-04-08 09:31:55.996577'); -INSERT INTO dvds.payment VALUES (29884, 80, 2, 5420, 3.99, '2007-04-09 19:17:08.996577'); -INSERT INTO dvds.payment VALUES (29885, 80, 2, 5452, 4.99, '2007-04-09 20:51:47.996577'); -INSERT INTO dvds.payment VALUES (29886, 80, 1, 6199, 5.99, '2007-04-11 10:44:29.996577'); -INSERT INTO dvds.payment VALUES (29887, 80, 2, 6417, 6.99, '2007-04-11 22:03:37.996577'); -INSERT INTO dvds.payment VALUES (29888, 80, 2, 6707, 1.99, '2007-04-12 11:36:21.996577'); -INSERT INTO dvds.payment VALUES (29889, 80, 2, 7558, 0.99, '2007-04-27 20:47:34.996577'); -INSERT INTO dvds.payment VALUES (29890, 80, 1, 8509, 5.99, '2007-04-29 08:06:45.996577'); -INSERT INTO dvds.payment VALUES (29891, 80, 1, 8884, 6.99, '2007-04-29 22:54:48.996577'); -INSERT INTO dvds.payment VALUES (29892, 81, 1, 3879, 2.99, '2007-04-06 16:59:46.996577'); -INSERT INTO dvds.payment VALUES (29893, 81, 2, 4983, 9.99, '2007-04-08 23:02:42.996577'); -INSERT INTO dvds.payment VALUES (29894, 81, 1, 5468, 0.99, '2007-04-09 21:34:35.996577'); -INSERT INTO dvds.payment VALUES (29895, 81, 2, 7130, 4.99, '2007-04-27 04:52:02.996577'); -INSERT INTO dvds.payment VALUES (29896, 81, 1, 7709, 0.99, '2007-04-28 02:50:40.996577'); -INSERT INTO dvds.payment VALUES (29897, 81, 2, 9454, 3.99, '2007-04-30 20:48:35.996577'); -INSERT INTO dvds.payment VALUES (29898, 82, 1, 3680, 2.99, '2007-04-06 07:44:36.996577'); -INSERT INTO dvds.payment VALUES (29899, 82, 1, 4598, 6.99, '2007-04-08 05:14:52.996577'); -INSERT INTO dvds.payment VALUES (29900, 82, 2, 5746, 4.99, '2007-04-10 10:43:38.996577'); -INSERT INTO dvds.payment VALUES (29901, 82, 2, 6082, 6.99, '2007-04-11 03:41:07.996577'); -INSERT INTO dvds.payment VALUES (29902, 82, 2, 6708, 6.99, '2007-04-12 11:39:21.996577'); -INSERT INTO dvds.payment VALUES (29903, 82, 2, 7733, 9.99, '2007-04-28 03:33:13.996577'); -INSERT INTO dvds.payment VALUES (29904, 82, 2, 7873, 0.99, '2007-04-28 08:48:12.996577'); -INSERT INTO dvds.payment VALUES (29905, 82, 1, 8487, 4.99, '2007-04-29 07:22:15.996577'); -INSERT INTO dvds.payment VALUES (29906, 82, 2, 9277, 3.99, '2007-04-30 13:42:11.996577'); -INSERT INTO dvds.payment VALUES (29907, 82, 1, 9305, 8.99, '2007-04-30 15:14:22.996577'); -INSERT INTO dvds.payment VALUES (29908, 82, 1, 9447, 6.99, '2007-04-30 20:22:48.996577'); -INSERT INTO dvds.payment VALUES (29909, 83, 2, 3722, 6.99, '2007-04-06 09:38:53.996577'); -INSERT INTO dvds.payment VALUES (29910, 83, 1, 3754, 2.99, '2007-04-06 11:04:10.996577'); -INSERT INTO dvds.payment VALUES (29911, 83, 1, 5218, 0.99, '2007-04-09 10:25:38.996577'); -INSERT INTO dvds.payment VALUES (29912, 83, 2, 5394, 6.99, '2007-04-09 18:04:41.996577'); -INSERT INTO dvds.payment VALUES (29913, 83, 2, 6194, 2.99, '2007-04-11 10:19:26.996577'); -INSERT INTO dvds.payment VALUES (29914, 83, 2, 6861, 2.99, '2007-04-12 18:25:18.996577'); -INSERT INTO dvds.payment VALUES (29915, 83, 2, 7721, 0.99, '2007-04-28 03:11:24.996577'); -INSERT INTO dvds.payment VALUES (29916, 83, 2, 8729, 4.99, '2007-04-29 16:51:28.996577'); -INSERT INTO dvds.payment VALUES (29917, 83, 1, 9867, 1.99, '2007-04-30 11:45:30.996577'); -INSERT INTO dvds.payment VALUES (29918, 84, 2, 4079, 6.99, '2007-04-07 03:34:53.996577'); -INSERT INTO dvds.payment VALUES (29919, 84, 2, 4838, 6.99, '2007-04-08 16:39:26.996577'); -INSERT INTO dvds.payment VALUES (29920, 84, 1, 5221, 5.99, '2007-04-09 10:30:49.996577'); -INSERT INTO dvds.payment VALUES (29921, 84, 1, 5237, 0.99, '2007-04-09 11:25:24.996577'); -INSERT INTO dvds.payment VALUES (29922, 84, 1, 5971, 5.99, '2007-04-10 22:34:24.996577'); -INSERT INTO dvds.payment VALUES (29923, 84, 2, 6259, 2.99, '2007-04-11 13:54:18.996577'); -INSERT INTO dvds.payment VALUES (29924, 84, 2, 6415, 9.99, '2007-04-11 21:56:18.996577'); -INSERT INTO dvds.payment VALUES (29925, 84, 1, 7854, 2.99, '2007-04-28 08:10:57.996577'); -INSERT INTO dvds.payment VALUES (29926, 84, 2, 8019, 4.99, '2007-04-28 14:06:09.996577'); -INSERT INTO dvds.payment VALUES (29927, 84, 1, 8654, 8.99, '2007-04-29 13:32:53.996577'); -INSERT INTO dvds.payment VALUES (29928, 84, 2, 9074, 2.99, '2007-04-30 06:18:36.996577'); -INSERT INTO dvds.payment VALUES (29929, 84, 2, 9680, 4.99, '2007-04-30 05:10:12.996577'); -INSERT INTO dvds.payment VALUES (29930, 85, 2, 4451, 0.99, '2007-04-07 21:58:20.996577'); -INSERT INTO dvds.payment VALUES (29931, 85, 1, 4705, 2.99, '2007-04-08 10:19:04.996577'); -INSERT INTO dvds.payment VALUES (29932, 85, 1, 5051, 4.99, '2007-04-09 02:26:19.996577'); -INSERT INTO dvds.payment VALUES (29933, 85, 1, 5519, 0.99, '2007-04-09 23:46:58.996577'); -INSERT INTO dvds.payment VALUES (29934, 85, 2, 7906, 0.99, '2007-04-28 10:00:08.996577'); -INSERT INTO dvds.payment VALUES (29935, 85, 2, 9427, 7.99, '2007-04-30 19:44:59.996577'); -INSERT INTO dvds.payment VALUES (29936, 85, 2, 9957, 4.99, '2007-04-30 14:32:21.996577'); -INSERT INTO dvds.payment VALUES (29937, 85, 1, 9985, 2.99, '2007-04-30 15:43:13.996577'); -INSERT INTO dvds.payment VALUES (29938, 86, 1, 3611, 0.99, '2007-04-06 04:05:44.996577'); -INSERT INTO dvds.payment VALUES (29939, 86, 2, 3945, 4.99, '2007-04-06 20:03:26.996577'); -INSERT INTO dvds.payment VALUES (29940, 86, 1, 4235, 2.99, '2007-04-07 11:34:18.996577'); -INSERT INTO dvds.payment VALUES (29941, 86, 1, 4571, 9.99, '2007-04-08 04:03:07.996577'); -INSERT INTO dvds.payment VALUES (29942, 86, 2, 5295, 0.99, '2007-04-09 13:53:32.996577'); -INSERT INTO dvds.payment VALUES (29943, 86, 1, 5752, 8.99, '2007-04-10 10:56:04.996577'); -INSERT INTO dvds.payment VALUES (29944, 86, 2, 6872, 7.99, '2007-04-12 18:43:30.996577'); -INSERT INTO dvds.payment VALUES (29945, 86, 1, 7231, 2.99, '2007-04-27 08:30:17.996577'); -INSERT INTO dvds.payment VALUES (29946, 86, 1, 7874, 10.99, '2007-04-28 08:50:18.996577'); -INSERT INTO dvds.payment VALUES (29947, 86, 2, 8803, 5.99, '2007-04-29 19:54:50.996577'); -INSERT INTO dvds.payment VALUES (29948, 86, 1, 8850, 2.99, '2007-04-29 21:52:46.996577'); -INSERT INTO dvds.payment VALUES (29949, 86, 2, 9376, 4.99, '2007-04-30 17:40:15.996577'); -INSERT INTO dvds.payment VALUES (29950, 87, 1, 5084, 7.99, '2007-04-09 04:01:53.996577'); -INSERT INTO dvds.payment VALUES (29951, 87, 1, 5628, 3.99, '2007-04-10 04:25:06.996577'); -INSERT INTO dvds.payment VALUES (29952, 87, 2, 5700, 4.99, '2007-04-10 08:18:08.996577'); -INSERT INTO dvds.payment VALUES (29953, 87, 1, 6638, 4.99, '2007-04-12 08:26:28.996577'); -INSERT INTO dvds.payment VALUES (29954, 87, 2, 7599, 2.99, '2007-04-27 22:07:12.996577'); -INSERT INTO dvds.payment VALUES (29955, 87, 2, 8187, 7.99, '2007-04-28 21:02:19.996577'); -INSERT INTO dvds.payment VALUES (29956, 87, 1, 8286, 5.99, '2007-04-29 00:31:12.996577'); -INSERT INTO dvds.payment VALUES (29957, 87, 2, 8323, 4.99, '2007-04-29 02:21:25.996577'); -INSERT INTO dvds.payment VALUES (29958, 87, 2, 9060, 0.99, '2007-04-30 05:49:02.996577'); -INSERT INTO dvds.payment VALUES (29959, 87, 1, 9348, 2.99, '2007-04-30 16:45:35.996577'); -INSERT INTO dvds.payment VALUES (29960, 87, 2, 9364, 8.99, '2007-04-30 17:13:10.996577'); -INSERT INTO dvds.payment VALUES (29961, 87, 2, 10205, 4.99, '2007-04-30 23:16:50.996577'); -INSERT INTO dvds.payment VALUES (29962, 88, 2, 3524, 0.99, '2007-04-05 23:30:17.996577'); -INSERT INTO dvds.payment VALUES (29963, 88, 2, 3620, 0.99, '2007-04-06 04:30:16.996577'); -INSERT INTO dvds.payment VALUES (29964, 88, 2, 3673, 5.99, '2007-04-06 07:30:35.996577'); -INSERT INTO dvds.payment VALUES (29965, 88, 1, 3846, 5.99, '2007-04-06 15:11:36.996577'); -INSERT INTO dvds.payment VALUES (29966, 88, 1, 6643, 1.99, '2007-04-12 09:07:48.996577'); -INSERT INTO dvds.payment VALUES (29967, 88, 1, 6916, 4.99, '2007-04-12 20:57:44.996577'); -INSERT INTO dvds.payment VALUES (29968, 88, 1, 7088, 5.99, '2007-04-27 03:10:54.996577'); -INSERT INTO dvds.payment VALUES (29969, 88, 1, 7621, 8.99, '2007-04-27 23:02:32.996577'); -INSERT INTO dvds.payment VALUES (29970, 88, 1, 8296, 2.99, '2007-04-29 01:11:51.996577'); -INSERT INTO dvds.payment VALUES (29971, 88, 2, 8526, 2.99, '2007-04-29 08:49:14.996577'); -INSERT INTO dvds.payment VALUES (29972, 88, 1, 8692, 2.99, '2007-04-29 15:12:05.996577'); -INSERT INTO dvds.payment VALUES (29973, 89, 2, 4152, 4.99, '2007-04-07 07:18:59.996577'); -INSERT INTO dvds.payment VALUES (29974, 89, 1, 4488, 0.99, '2007-04-07 23:50:49.996577'); -INSERT INTO dvds.payment VALUES (29975, 89, 1, 4764, 8.99, '2007-04-08 13:29:51.996577'); -INSERT INTO dvds.payment VALUES (29976, 89, 2, 5144, 7.99, '2007-04-09 06:38:19.996577'); -INSERT INTO dvds.payment VALUES (29977, 89, 2, 5436, 2.99, '2007-04-09 19:59:37.996577'); -INSERT INTO dvds.payment VALUES (29978, 89, 1, 5483, 2.99, '2007-04-09 22:22:35.996577'); -INSERT INTO dvds.payment VALUES (29979, 89, 1, 6772, 2.99, '2007-04-12 14:24:01.996577'); -INSERT INTO dvds.payment VALUES (29980, 89, 2, 7370, 7.99, '2007-04-27 13:44:19.996577'); -INSERT INTO dvds.payment VALUES (29981, 89, 2, 7729, 4.99, '2007-04-28 03:26:23.996577'); -INSERT INTO dvds.payment VALUES (29982, 89, 2, 7995, 4.99, '2007-04-28 13:28:35.996577'); -INSERT INTO dvds.payment VALUES (29983, 89, 1, 8003, 2.99, '2007-04-28 13:39:53.996577'); -INSERT INTO dvds.payment VALUES (29984, 89, 2, 8070, 2.99, '2007-04-28 15:55:22.996577'); -INSERT INTO dvds.payment VALUES (29985, 89, 2, 8972, 0.99, '2007-04-30 02:34:51.996577'); -INSERT INTO dvds.payment VALUES (29986, 89, 1, 9328, 2.99, '2007-04-30 16:00:37.996577'); -INSERT INTO dvds.payment VALUES (29987, 89, 2, 9646, 2.99, '2007-04-30 04:11:54.996577'); -INSERT INTO dvds.payment VALUES (29988, 89, 2, 9767, 0.99, '2007-04-30 08:15:15.996577'); -INSERT INTO dvds.payment VALUES (29989, 89, 2, 10164, 4.99, '2007-04-30 21:46:23.996577'); -INSERT INTO dvds.payment VALUES (29990, 90, 2, 3729, 3.99, '2007-04-06 09:58:55.996577'); -INSERT INTO dvds.payment VALUES (29991, 90, 2, 4371, 4.99, '2007-04-07 18:35:11.996577'); -INSERT INTO dvds.payment VALUES (29992, 90, 2, 5272, 0.99, '2007-04-09 12:54:27.996577'); -INSERT INTO dvds.payment VALUES (29993, 90, 2, 5539, 3.99, '2007-04-10 01:11:24.996577'); -INSERT INTO dvds.payment VALUES (29994, 90, 2, 7035, 5.99, '2007-04-27 01:34:35.996577'); -INSERT INTO dvds.payment VALUES (29995, 90, 2, 7058, 1.99, '2007-04-27 02:19:12.996577'); -INSERT INTO dvds.payment VALUES (29996, 90, 1, 7428, 5.99, '2007-04-27 15:50:18.996577'); -INSERT INTO dvds.payment VALUES (29997, 90, 1, 7946, 6.99, '2007-04-28 11:29:48.996577'); -INSERT INTO dvds.payment VALUES (29998, 90, 1, 8024, 2.99, '2007-04-28 14:24:06.996577'); -INSERT INTO dvds.payment VALUES (29999, 90, 1, 8408, 0.99, '2007-04-29 05:09:06.996577'); -INSERT INTO dvds.payment VALUES (30000, 90, 2, 8870, 9.99, '2007-04-29 22:36:34.996577'); -INSERT INTO dvds.payment VALUES (30001, 90, 2, 9337, 2.99, '2007-04-30 16:30:51.996577'); -INSERT INTO dvds.payment VALUES (30002, 90, 2, 10206, 7.99, '2007-04-30 23:21:06.996577'); -INSERT INTO dvds.payment VALUES (30003, 91, 2, 3802, 0.99, '2007-04-06 13:34:35.996577'); -INSERT INTO dvds.payment VALUES (30004, 91, 2, 4103, 2.99, '2007-04-07 04:53:54.996577'); -INSERT INTO dvds.payment VALUES (30005, 91, 1, 4245, 4.99, '2007-04-07 12:16:59.996577'); -INSERT INTO dvds.payment VALUES (30006, 91, 1, 4321, 4.99, '2007-04-07 16:21:04.996577'); -INSERT INTO dvds.payment VALUES (30007, 91, 1, 4673, 4.99, '2007-04-08 08:44:26.996577'); -INSERT INTO dvds.payment VALUES (30008, 91, 2, 5025, 4.99, '2007-04-09 00:56:50.996577'); -INSERT INTO dvds.payment VALUES (30009, 91, 2, 5187, 1.99, '2007-04-09 08:48:17.996577'); -INSERT INTO dvds.payment VALUES (30010, 91, 2, 5701, 0.99, '2007-04-10 08:24:50.996577'); -INSERT INTO dvds.payment VALUES (30011, 91, 1, 6078, 4.99, '2007-04-11 03:35:18.996577'); -INSERT INTO dvds.payment VALUES (30012, 91, 1, 6178, 2.99, '2007-04-11 09:27:35.996577'); -INSERT INTO dvds.payment VALUES (30013, 91, 2, 6860, 2.99, '2007-04-12 18:22:43.996577'); -INSERT INTO dvds.payment VALUES (30014, 91, 2, 7143, 0.99, '2007-04-27 05:24:57.996577'); -INSERT INTO dvds.payment VALUES (30015, 91, 2, 7637, 0.99, '2007-04-27 23:40:51.996577'); -INSERT INTO dvds.payment VALUES (30016, 91, 1, 7966, 4.99, '2007-04-28 12:22:20.996577'); -INSERT INTO dvds.payment VALUES (30017, 91, 1, 8313, 0.99, '2007-04-29 02:02:47.996577'); -INSERT INTO dvds.payment VALUES (30018, 91, 2, 8873, 0.99, '2007-04-29 22:42:58.996577'); -INSERT INTO dvds.payment VALUES (30019, 91, 2, 9228, 2.99, '2007-04-30 12:05:23.996577'); -INSERT INTO dvds.payment VALUES (30020, 91, 2, 9396, 4.99, '2007-04-30 18:35:50.996577'); -INSERT INTO dvds.payment VALUES (30021, 91, 2, 10008, 4.99, '2007-04-30 16:28:02.996577'); -INSERT INTO dvds.payment VALUES (30022, 92, 2, 3595, 8.99, '2007-04-06 03:28:15.996577'); -INSERT INTO dvds.payment VALUES (30023, 92, 2, 3716, 7.99, '2007-04-06 09:20:58.996577'); -INSERT INTO dvds.payment VALUES (30024, 92, 1, 4360, 2.99, '2007-04-07 17:59:38.996577'); -INSERT INTO dvds.payment VALUES (30025, 92, 2, 4828, 4.99, '2007-04-08 16:20:55.996577'); -INSERT INTO dvds.payment VALUES (30026, 92, 2, 5497, 5.99, '2007-04-09 22:51:49.996577'); -INSERT INTO dvds.payment VALUES (30027, 92, 2, 5620, 7.99, '2007-04-10 03:59:18.996577'); -INSERT INTO dvds.payment VALUES (30028, 92, 1, 5792, 6.99, '2007-04-10 12:50:45.996577'); -INSERT INTO dvds.payment VALUES (30029, 92, 2, 5919, 2.99, '2007-04-10 20:00:40.996577'); -INSERT INTO dvds.payment VALUES (30030, 92, 1, 6158, 0.99, '2007-04-11 08:18:50.996577'); -INSERT INTO dvds.payment VALUES (30031, 92, 2, 6277, 6.99, '2007-04-11 14:47:27.996577'); -INSERT INTO dvds.payment VALUES (30032, 92, 1, 7073, 4.99, '2007-04-27 02:31:52.996577'); -INSERT INTO dvds.payment VALUES (30033, 92, 1, 7832, 1.99, '2007-04-28 07:14:37.996577'); -INSERT INTO dvds.payment VALUES (30034, 92, 1, 8494, 4.99, '2007-04-29 07:32:58.996577'); -INSERT INTO dvds.payment VALUES (30035, 92, 1, 8938, 4.99, '2007-04-30 01:24:34.996577'); -INSERT INTO dvds.payment VALUES (30036, 92, 1, 9240, 4.99, '2007-04-30 12:26:20.996577'); -INSERT INTO dvds.payment VALUES (30037, 93, 1, 4733, 2.99, '2007-04-08 11:40:33.996577'); -INSERT INTO dvds.payment VALUES (30038, 93, 2, 5130, 4.99, '2007-04-09 05:58:11.996577'); -INSERT INTO dvds.payment VALUES (30039, 93, 2, 6287, 4.99, '2007-04-11 15:28:30.996577'); -INSERT INTO dvds.payment VALUES (30040, 93, 1, 6586, 4.99, '2007-04-12 05:24:50.996577'); -INSERT INTO dvds.payment VALUES (30041, 93, 1, 7301, 2.99, '2007-04-27 11:18:49.996577'); -INSERT INTO dvds.payment VALUES (30042, 93, 1, 8233, 0.99, '2007-04-28 22:44:49.996577'); -INSERT INTO dvds.payment VALUES (30043, 94, 2, 4044, 0.99, '2007-04-07 01:50:49.996577'); -INSERT INTO dvds.payment VALUES (30044, 94, 1, 4287, 8.99, '2007-04-07 14:05:57.996577'); -INSERT INTO dvds.payment VALUES (30045, 94, 2, 5719, 4.99, '2007-04-10 09:36:06.996577'); -INSERT INTO dvds.payment VALUES (30046, 94, 2, 5970, 4.99, '2007-04-10 22:33:16.996577'); -INSERT INTO dvds.payment VALUES (30047, 94, 2, 7809, 2.99, '2007-04-28 06:28:12.996577'); -INSERT INTO dvds.payment VALUES (30048, 94, 2, 7979, 0.99, '2007-04-28 12:44:56.996577'); -INSERT INTO dvds.payment VALUES (30049, 94, 1, 9605, 4.99, '2007-04-30 02:18:33.996577'); -INSERT INTO dvds.payment VALUES (30050, 95, 1, 3633, 1.99, '2007-04-06 05:11:52.996577'); -INSERT INTO dvds.payment VALUES (30051, 95, 2, 4000, 4.99, '2007-04-06 22:27:03.996577'); -INSERT INTO dvds.payment VALUES (30052, 95, 1, 4835, 5.99, '2007-04-08 16:36:39.996577'); -INSERT INTO dvds.payment VALUES (30053, 95, 2, 7245, 5.99, '2007-04-27 08:57:32.996577'); -INSERT INTO dvds.payment VALUES (30054, 95, 1, 7471, 4.99, '2007-04-27 17:30:45.996577'); -INSERT INTO dvds.payment VALUES (30055, 95, 1, 9222, 6.99, '2007-04-30 11:49:34.996577'); -INSERT INTO dvds.payment VALUES (30056, 95, 1, 9695, 6.99, '2007-04-30 05:41:56.996577'); -INSERT INTO dvds.payment VALUES (30057, 95, 1, 9951, 4.99, '2007-04-30 14:19:42.996577'); -INSERT INTO dvds.payment VALUES (30058, 95, 1, 10130, 0.99, '2007-04-30 20:12:56.996577'); -INSERT INTO dvds.payment VALUES (30059, 96, 1, 3720, 2.99, '2007-04-06 09:35:23.996577'); -INSERT INTO dvds.payment VALUES (30060, 96, 2, 3742, 2.99, '2007-04-06 10:30:04.996577'); -INSERT INTO dvds.payment VALUES (30061, 96, 1, 4961, 4.99, '2007-04-08 22:04:19.996577'); -INSERT INTO dvds.payment VALUES (30062, 96, 1, 5558, 0.99, '2007-04-10 01:40:34.996577'); -INSERT INTO dvds.payment VALUES (30063, 96, 1, 5678, 4.99, '2007-04-10 07:11:08.996577'); -INSERT INTO dvds.payment VALUES (30064, 96, 1, 5696, 2.99, '2007-04-10 08:12:58.996577'); -INSERT INTO dvds.payment VALUES (30065, 96, 2, 8125, 4.99, '2007-04-28 18:00:14.996577'); -INSERT INTO dvds.payment VALUES (30066, 96, 1, 8437, 6.99, '2007-04-29 05:52:09.996577'); -INSERT INTO dvds.payment VALUES (30067, 96, 2, 9093, 3.99, '2007-04-30 07:01:50.996577'); -INSERT INTO dvds.payment VALUES (30068, 96, 1, 9315, 4.99, '2007-04-30 15:33:55.996577'); -INSERT INTO dvds.payment VALUES (30069, 96, 1, 9662, 3.99, '2007-04-30 04:38:19.996577'); -INSERT INTO dvds.payment VALUES (30070, 96, 2, 10031, 4.99, '2007-04-30 17:08:41.996577'); -INSERT INTO dvds.payment VALUES (30071, 97, 1, 3540, 2.99, '2007-04-06 00:15:46.996577'); -INSERT INTO dvds.payment VALUES (30072, 97, 2, 3565, 0.99, '2007-04-06 01:31:24.996577'); -INSERT INTO dvds.payment VALUES (30073, 97, 2, 3818, 4.99, '2007-04-06 14:01:57.996577'); -INSERT INTO dvds.payment VALUES (30074, 97, 2, 4312, 4.99, '2007-04-07 16:03:25.996577'); -INSERT INTO dvds.payment VALUES (30075, 97, 1, 4508, 4.99, '2007-04-08 00:57:07.996577'); -INSERT INTO dvds.payment VALUES (30076, 97, 2, 5454, 4.99, '2007-04-09 20:52:51.996577'); -INSERT INTO dvds.payment VALUES (30077, 97, 1, 6544, 0.99, '2007-04-12 03:24:41.996577'); -INSERT INTO dvds.payment VALUES (30078, 97, 1, 6726, 0.99, '2007-04-12 12:16:40.996577'); -INSERT INTO dvds.payment VALUES (30079, 97, 2, 7182, 5.99, '2007-04-27 06:44:04.996577'); -INSERT INTO dvds.payment VALUES (30080, 97, 2, 7924, 0.99, '2007-04-28 10:37:19.996577'); -INSERT INTO dvds.payment VALUES (30081, 97, 2, 8438, 2.99, '2007-04-29 05:54:08.996577'); -INSERT INTO dvds.payment VALUES (30082, 97, 1, 9591, 4.99, '2007-04-30 01:47:54.996577'); -INSERT INTO dvds.payment VALUES (30083, 98, 2, 3682, 7.99, '2007-04-06 07:51:14.996577'); -INSERT INTO dvds.payment VALUES (30084, 98, 1, 4549, 4.99, '2007-04-08 02:53:29.996577'); -INSERT INTO dvds.payment VALUES (30085, 98, 2, 6951, 2.99, '2007-04-26 22:15:57.996577'); -INSERT INTO dvds.payment VALUES (30086, 98, 2, 7120, 3.99, '2007-04-27 04:25:05.996577'); -INSERT INTO dvds.payment VALUES (30087, 98, 1, 7530, 0.99, '2007-04-27 19:47:24.996577'); -INSERT INTO dvds.payment VALUES (30088, 98, 1, 8324, 5.99, '2007-04-29 02:24:31.996577'); -INSERT INTO dvds.payment VALUES (30089, 98, 2, 8622, 4.99, '2007-04-29 12:21:54.996577'); -INSERT INTO dvds.payment VALUES (30090, 98, 2, 8818, 5.99, '2007-04-29 20:42:30.996577'); -INSERT INTO dvds.payment VALUES (30091, 98, 1, 9753, 2.99, '2007-04-30 07:51:04.996577'); -INSERT INTO dvds.payment VALUES (30092, 99, 2, 3780, 6.99, '2007-04-06 12:20:28.996577'); -INSERT INTO dvds.payment VALUES (30093, 99, 2, 4170, 2.99, '2007-04-07 08:13:02.996577'); -INSERT INTO dvds.payment VALUES (30094, 99, 2, 4344, 4.99, '2007-04-07 17:19:13.996577'); -INSERT INTO dvds.payment VALUES (30095, 99, 1, 4589, 0.99, '2007-04-08 04:54:30.996577'); -INSERT INTO dvds.payment VALUES (30096, 99, 2, 4800, 4.99, '2007-04-08 15:19:34.996577'); -INSERT INTO dvds.payment VALUES (30097, 99, 2, 4954, 2.99, '2007-04-08 21:42:42.996577'); -INSERT INTO dvds.payment VALUES (30098, 99, 2, 5035, 2.99, '2007-04-09 01:20:00.996577'); -INSERT INTO dvds.payment VALUES (30099, 99, 1, 5748, 2.99, '2007-04-10 10:48:25.996577'); -INSERT INTO dvds.payment VALUES (30100, 99, 1, 6289, 2.99, '2007-04-11 15:35:05.996577'); -INSERT INTO dvds.payment VALUES (30101, 99, 1, 6370, 3.99, '2007-04-11 19:56:58.996577'); -INSERT INTO dvds.payment VALUES (30102, 99, 2, 6662, 4.99, '2007-04-12 09:49:32.996577'); -INSERT INTO dvds.payment VALUES (30103, 99, 1, 7039, 4.99, '2007-04-27 01:40:14.996577'); -INSERT INTO dvds.payment VALUES (30104, 99, 1, 8072, 0.99, '2007-04-28 15:56:25.996577'); -INSERT INTO dvds.payment VALUES (30105, 99, 2, 8242, 7.99, '2007-04-28 23:02:53.996577'); -INSERT INTO dvds.payment VALUES (30106, 99, 2, 8514, 0.99, '2007-04-29 08:21:59.996577'); -INSERT INTO dvds.payment VALUES (30107, 100, 2, 3602, 5.99, '2007-04-06 03:51:36.996577'); -INSERT INTO dvds.payment VALUES (30108, 100, 1, 3800, 8.99, '2007-04-06 13:29:53.996577'); -INSERT INTO dvds.payment VALUES (30109, 100, 1, 4209, 2.99, '2007-04-07 10:03:34.996577'); -INSERT INTO dvds.payment VALUES (30110, 100, 1, 4970, 8.99, '2007-04-08 22:22:55.996577'); -INSERT INTO dvds.payment VALUES (30111, 100, 2, 4980, 6.99, '2007-04-08 22:55:25.996577'); -INSERT INTO dvds.payment VALUES (30112, 100, 2, 5238, 4.99, '2007-04-09 11:39:40.996577'); -INSERT INTO dvds.payment VALUES (30113, 100, 2, 5355, 6.99, '2007-04-09 16:35:43.996577'); -INSERT INTO dvds.payment VALUES (30114, 100, 1, 6655, 4.99, '2007-04-12 09:36:58.996577'); -INSERT INTO dvds.payment VALUES (30115, 100, 2, 7819, 4.99, '2007-04-28 06:55:40.996577'); -INSERT INTO dvds.payment VALUES (30116, 100, 1, 7921, 1.99, '2007-04-28 10:31:12.996577'); -INSERT INTO dvds.payment VALUES (30117, 100, 2, 8203, 0.99, '2007-04-28 21:43:22.996577'); -INSERT INTO dvds.payment VALUES (30118, 100, 2, 9048, 5.99, '2007-04-30 05:25:33.996577'); -INSERT INTO dvds.payment VALUES (30119, 100, 1, 9271, 4.99, '2007-04-30 13:32:57.996577'); -INSERT INTO dvds.payment VALUES (30120, 101, 1, 4975, 2.99, '2007-04-08 22:31:12.996577'); -INSERT INTO dvds.payment VALUES (30121, 101, 2, 5100, 2.99, '2007-04-09 04:44:29.996577'); -INSERT INTO dvds.payment VALUES (30122, 101, 1, 5132, 5.99, '2007-04-09 06:08:58.996577'); -INSERT INTO dvds.payment VALUES (30123, 101, 2, 5198, 2.99, '2007-04-09 09:17:36.996577'); -INSERT INTO dvds.payment VALUES (30124, 101, 1, 5757, 2.99, '2007-04-10 11:08:43.996577'); -INSERT INTO dvds.payment VALUES (30125, 101, 2, 6433, 5.99, '2007-04-11 22:40:28.996577'); -INSERT INTO dvds.payment VALUES (30126, 101, 2, 7112, 5.99, '2007-04-27 04:07:08.996577'); -INSERT INTO dvds.payment VALUES (30127, 101, 2, 7866, 8.99, '2007-04-28 08:36:27.996577'); -INSERT INTO dvds.payment VALUES (30128, 101, 1, 8301, 0.99, '2007-04-29 01:28:34.996577'); -INSERT INTO dvds.payment VALUES (30129, 101, 2, 8825, 1.99, '2007-04-29 20:52:42.996577'); -INSERT INTO dvds.payment VALUES (30130, 101, 2, 8833, 4.99, '2007-04-29 21:08:02.996577'); -INSERT INTO dvds.payment VALUES (30131, 101, 2, 9965, 6.99, '2007-04-30 14:47:58.996577'); -INSERT INTO dvds.payment VALUES (30132, 101, 2, 10218, 0.99, '2007-04-30 23:38:10.996577'); -INSERT INTO dvds.payment VALUES (30133, 102, 2, 3520, 1.99, '2007-04-05 23:26:53.996577'); -INSERT INTO dvds.payment VALUES (30134, 102, 2, 3630, 1.99, '2007-04-06 04:55:41.996577'); -INSERT INTO dvds.payment VALUES (30135, 102, 2, 3665, 4.99, '2007-04-06 06:51:34.996577'); -INSERT INTO dvds.payment VALUES (30136, 102, 1, 4089, 6.99, '2007-04-07 04:14:25.996577'); -INSERT INTO dvds.payment VALUES (30137, 102, 2, 4777, 3.99, '2007-04-08 14:17:00.996577'); -INSERT INTO dvds.payment VALUES (30138, 102, 1, 4997, 6.99, '2007-04-08 23:34:29.996577'); -INSERT INTO dvds.payment VALUES (30139, 102, 1, 5009, 5.99, '2007-04-09 00:00:43.996577'); -INSERT INTO dvds.payment VALUES (30140, 102, 1, 5109, 4.99, '2007-04-09 05:17:15.996577'); -INSERT INTO dvds.payment VALUES (30141, 102, 2, 5509, 5.99, '2007-04-09 23:23:12.996577'); -INSERT INTO dvds.payment VALUES (30142, 102, 1, 5716, 2.99, '2007-04-10 09:27:49.996577'); -INSERT INTO dvds.payment VALUES (30143, 102, 2, 6434, 5.99, '2007-04-11 22:42:51.996577'); -INSERT INTO dvds.payment VALUES (30144, 102, 2, 7119, 0.99, '2007-04-27 04:23:58.996577'); -INSERT INTO dvds.payment VALUES (30145, 102, 2, 7247, 0.99, '2007-04-27 09:01:24.996577'); -INSERT INTO dvds.payment VALUES (30146, 102, 2, 7439, 6.99, '2007-04-27 16:10:57.996577'); -INSERT INTO dvds.payment VALUES (30147, 102, 1, 8186, 0.99, '2007-04-28 20:58:53.996577'); -INSERT INTO dvds.payment VALUES (30148, 102, 1, 8664, 5.99, '2007-04-29 14:04:53.996577'); -INSERT INTO dvds.payment VALUES (30149, 102, 2, 9151, 3.99, '2007-04-30 09:19:19.996577'); -INSERT INTO dvds.payment VALUES (30150, 102, 1, 9192, 2.99, '2007-04-30 10:54:52.996577'); -INSERT INTO dvds.payment VALUES (30151, 102, 2, 9295, 0.99, '2007-04-30 14:47:05.996577'); -INSERT INTO dvds.payment VALUES (30152, 102, 2, 9617, 2.99, '2007-04-30 02:44:04.996577'); -INSERT INTO dvds.payment VALUES (30153, 102, 1, 9780, 4.99, '2007-04-30 08:38:48.996577'); -INSERT INTO dvds.payment VALUES (30154, 103, 2, 3750, 6.99, '2007-04-06 10:47:54.996577'); -INSERT INTO dvds.payment VALUES (30155, 103, 1, 3850, 4.99, '2007-04-06 15:19:47.996577'); -INSERT INTO dvds.payment VALUES (30156, 103, 2, 4040, 6.99, '2007-04-07 01:31:06.996577'); -INSERT INTO dvds.payment VALUES (30157, 103, 1, 4213, 2.99, '2007-04-07 10:22:15.996577'); -INSERT INTO dvds.payment VALUES (30158, 103, 1, 4357, 1.99, '2007-04-07 17:53:05.996577'); -INSERT INTO dvds.payment VALUES (30159, 103, 2, 4872, 4.99, '2007-04-08 17:51:42.996577'); -INSERT INTO dvds.payment VALUES (30160, 103, 2, 5163, 4.99, '2007-04-09 07:28:54.996577'); -INSERT INTO dvds.payment VALUES (30161, 103, 1, 6525, 5.99, '2007-04-12 02:45:41.996577'); -INSERT INTO dvds.payment VALUES (30162, 103, 2, 6697, 6.99, '2007-04-12 11:13:23.996577'); -INSERT INTO dvds.payment VALUES (30163, 103, 2, 6949, 2.99, '2007-04-26 22:12:38.996577'); -INSERT INTO dvds.payment VALUES (30164, 103, 1, 7310, 0.99, '2007-04-27 11:29:21.996577'); -INSERT INTO dvds.payment VALUES (30165, 103, 2, 7472, 6.99, '2007-04-27 17:32:45.996577'); -INSERT INTO dvds.payment VALUES (30166, 103, 1, 8302, 0.99, '2007-04-29 01:29:50.996577'); -INSERT INTO dvds.payment VALUES (30167, 103, 1, 8520, 4.99, '2007-04-29 08:38:28.996577'); -INSERT INTO dvds.payment VALUES (30168, 103, 2, 9390, 4.99, '2007-04-30 18:10:33.996577'); -INSERT INTO dvds.payment VALUES (30169, 104, 2, 4012, 4.99, '2007-04-06 23:24:35.996577'); -INSERT INTO dvds.payment VALUES (30170, 104, 2, 4438, 6.99, '2007-04-07 21:24:43.996577'); -INSERT INTO dvds.payment VALUES (30171, 104, 2, 4520, 4.99, '2007-04-08 01:22:12.996577'); -INSERT INTO dvds.payment VALUES (30172, 104, 1, 4529, 7.99, '2007-04-08 01:54:46.996577'); -INSERT INTO dvds.payment VALUES (30173, 104, 1, 4917, 2.99, '2007-04-08 20:00:56.996577'); -INSERT INTO dvds.payment VALUES (30174, 104, 1, 5376, 1.99, '2007-04-09 17:22:34.996577'); -INSERT INTO dvds.payment VALUES (30175, 104, 2, 7107, 2.99, '2007-04-27 03:50:30.996577'); -INSERT INTO dvds.payment VALUES (30176, 104, 1, 8413, 1.99, '2007-04-29 05:16:05.996577'); -INSERT INTO dvds.payment VALUES (30177, 104, 1, 9090, 3.99, '2007-04-30 06:53:08.996577'); -INSERT INTO dvds.payment VALUES (30178, 104, 2, 9996, 5.99, '2007-04-30 16:00:29.996577'); -INSERT INTO dvds.payment VALUES (30179, 105, 2, 5261, 4.99, '2007-04-09 12:35:22.996577'); -INSERT INTO dvds.payment VALUES (30180, 105, 1, 5429, 4.99, '2007-04-09 19:42:29.996577'); -INSERT INTO dvds.payment VALUES (30181, 105, 2, 5542, 2.99, '2007-04-10 01:14:19.996577'); -INSERT INTO dvds.payment VALUES (30182, 105, 2, 5677, 4.99, '2007-04-10 07:09:54.996577'); -INSERT INTO dvds.payment VALUES (30183, 105, 2, 6546, 4.99, '2007-04-12 03:25:43.996577'); -INSERT INTO dvds.payment VALUES (30184, 105, 1, 7442, 2.99, '2007-04-27 16:15:26.996577'); -INSERT INTO dvds.payment VALUES (30185, 105, 2, 8980, 2.99, '2007-04-30 02:50:41.996577'); -INSERT INTO dvds.payment VALUES (30186, 105, 2, 9124, 3.99, '2007-04-30 08:11:38.996577'); -INSERT INTO dvds.payment VALUES (30187, 105, 2, 9198, 5.99, '2007-04-30 11:05:34.996577'); -INSERT INTO dvds.payment VALUES (30188, 105, 2, 9210, 9.99, '2007-04-30 11:25:10.996577'); -INSERT INTO dvds.payment VALUES (30189, 106, 1, 4229, 4.99, '2007-04-07 11:11:49.996577'); -INSERT INTO dvds.payment VALUES (30190, 106, 2, 4277, 2.99, '2007-04-07 13:20:38.996577'); -INSERT INTO dvds.payment VALUES (30191, 106, 1, 4665, 3.99, '2007-04-08 08:32:50.996577'); -INSERT INTO dvds.payment VALUES (30192, 106, 2, 5453, 3.99, '2007-04-09 20:52:37.996577'); -INSERT INTO dvds.payment VALUES (30193, 106, 2, 6992, 0.99, '2007-04-26 23:33:11.996577'); -INSERT INTO dvds.payment VALUES (30194, 106, 1, 7224, 3.99, '2007-04-27 08:12:52.996577'); -INSERT INTO dvds.payment VALUES (30195, 106, 1, 7483, 4.99, '2007-04-27 17:53:26.996577'); -INSERT INTO dvds.payment VALUES (30196, 106, 1, 8115, 4.99, '2007-04-28 17:42:43.996577'); -INSERT INTO dvds.payment VALUES (30197, 106, 2, 9072, 2.99, '2007-04-30 06:14:15.996577'); -INSERT INTO dvds.payment VALUES (30198, 106, 2, 9747, 7.99, '2007-04-30 07:45:23.996577'); -INSERT INTO dvds.payment VALUES (30199, 106, 2, 10213, 8.99, '2007-04-30 23:31:44.996577'); -INSERT INTO dvds.payment VALUES (30200, 107, 2, 3824, 6.99, '2007-04-06 14:11:41.996577'); -INSERT INTO dvds.payment VALUES (30201, 107, 2, 5311, 4.99, '2007-04-09 14:31:20.996577'); -INSERT INTO dvds.payment VALUES (30202, 107, 2, 5575, 2.99, '2007-04-10 02:24:16.996577'); -INSERT INTO dvds.payment VALUES (30203, 107, 2, 5798, 3.99, '2007-04-10 13:13:35.996577'); -INSERT INTO dvds.payment VALUES (30204, 107, 2, 6131, 2.99, '2007-04-11 06:50:31.996577'); -INSERT INTO dvds.payment VALUES (30205, 107, 2, 6133, 0.99, '2007-04-11 06:53:48.996577'); -INSERT INTO dvds.payment VALUES (30206, 107, 1, 6811, 5.99, '2007-04-12 16:22:59.996577'); -INSERT INTO dvds.payment VALUES (30207, 107, 2, 6934, 6.99, '2007-04-26 21:39:29.996577'); -INSERT INTO dvds.payment VALUES (30208, 107, 2, 7447, 4.99, '2007-04-27 16:30:34.996577'); -INSERT INTO dvds.payment VALUES (30209, 107, 1, 7600, 7.99, '2007-04-27 22:09:44.996577'); -INSERT INTO dvds.payment VALUES (30210, 107, 1, 8162, 4.99, '2007-04-28 19:40:12.996577'); -INSERT INTO dvds.payment VALUES (30211, 107, 2, 8704, 1.99, '2007-04-29 15:42:11.996577'); -INSERT INTO dvds.payment VALUES (30212, 107, 1, 9155, 2.99, '2007-04-30 09:28:26.996577'); -INSERT INTO dvds.payment VALUES (30213, 107, 2, 9351, 2.99, '2007-04-30 16:56:56.996577'); -INSERT INTO dvds.payment VALUES (30214, 108, 1, 3875, 0.99, '2007-04-06 16:44:05.996577'); -INSERT INTO dvds.payment VALUES (30215, 108, 2, 4082, 2.99, '2007-04-07 03:40:19.996577'); -INSERT INTO dvds.payment VALUES (30216, 108, 1, 4303, 1.99, '2007-04-07 15:25:58.996577'); -INSERT INTO dvds.payment VALUES (30217, 108, 1, 4650, 4.99, '2007-04-08 08:00:34.996577'); -INSERT INTO dvds.payment VALUES (30218, 108, 1, 4754, 0.99, '2007-04-08 12:48:27.996577'); -INSERT INTO dvds.payment VALUES (30219, 108, 2, 5274, 6.99, '2007-04-09 13:02:35.996577'); -INSERT INTO dvds.payment VALUES (30220, 108, 1, 5661, 5.99, '2007-04-10 06:22:17.996577'); -INSERT INTO dvds.payment VALUES (30221, 108, 2, 5806, 4.99, '2007-04-10 13:40:20.996577'); -INSERT INTO dvds.payment VALUES (30222, 108, 1, 6841, 0.99, '2007-04-12 17:32:50.996577'); -INSERT INTO dvds.payment VALUES (30223, 108, 2, 8329, 5.99, '2007-04-29 02:34:59.996577'); -INSERT INTO dvds.payment VALUES (30224, 108, 2, 8587, 4.99, '2007-04-29 10:47:06.996577'); -INSERT INTO dvds.payment VALUES (30225, 108, 1, 8846, 4.99, '2007-04-29 21:38:54.996577'); -INSERT INTO dvds.payment VALUES (30226, 108, 2, 9755, 4.99, '2007-04-30 07:53:21.996577'); -INSERT INTO dvds.payment VALUES (30227, 109, 1, 4921, 4.99, '2007-04-08 20:11:47.996577'); -INSERT INTO dvds.payment VALUES (30228, 109, 1, 5027, 2.99, '2007-04-09 01:01:03.996577'); -INSERT INTO dvds.payment VALUES (30229, 109, 2, 5296, 2.99, '2007-04-09 13:54:53.996577'); -INSERT INTO dvds.payment VALUES (30230, 109, 2, 6920, 6.99, '2007-04-12 21:01:24.996577'); -INSERT INTO dvds.payment VALUES (30231, 109, 2, 7145, 0.99, '2007-04-27 05:29:26.996577'); -INSERT INTO dvds.payment VALUES (30232, 109, 1, 8006, 3.99, '2007-04-28 13:44:07.996577'); -INSERT INTO dvds.payment VALUES (30233, 109, 1, 9230, 0.99, '2007-04-30 12:08:08.996577'); -INSERT INTO dvds.payment VALUES (30234, 109, 1, 9871, 2.99, '2007-04-30 11:54:12.996577'); -INSERT INTO dvds.payment VALUES (30235, 110, 1, 3587, 4.99, '2007-04-06 02:56:18.996577'); -INSERT INTO dvds.payment VALUES (30236, 110, 1, 4317, 2.99, '2007-04-07 16:13:15.996577'); -INSERT INTO dvds.payment VALUES (30237, 110, 2, 4827, 4.99, '2007-04-08 16:14:56.996577'); -INSERT INTO dvds.payment VALUES (30238, 110, 1, 6160, 4.99, '2007-04-11 08:36:39.996577'); -INSERT INTO dvds.payment VALUES (30239, 110, 1, 7474, 0.99, '2007-04-27 17:35:43.996577'); -INSERT INTO dvds.payment VALUES (30240, 110, 2, 7542, 0.99, '2007-04-27 20:11:30.996577'); -INSERT INTO dvds.payment VALUES (30241, 110, 1, 7570, 2.99, '2007-04-27 21:08:32.996577'); -INSERT INTO dvds.payment VALUES (30242, 111, 2, 3485, 1.99, '2007-04-05 21:54:20.996577'); -INSERT INTO dvds.payment VALUES (30243, 111, 1, 3551, 3.99, '2007-04-06 01:02:14.996577'); -INSERT INTO dvds.payment VALUES (30244, 111, 2, 3963, 9.99, '2007-04-06 20:47:43.996577'); -INSERT INTO dvds.payment VALUES (30245, 111, 1, 4249, 4.99, '2007-04-07 12:33:43.996577'); -INSERT INTO dvds.payment VALUES (30246, 111, 2, 4286, 0.99, '2007-04-07 14:05:10.996577'); -INSERT INTO dvds.payment VALUES (30247, 111, 1, 6896, 2.99, '2007-04-12 19:54:03.996577'); -INSERT INTO dvds.payment VALUES (30248, 111, 2, 8525, 0.99, '2007-04-29 08:48:45.996577'); -INSERT INTO dvds.payment VALUES (30249, 111, 2, 9933, 0.99, '2007-04-30 13:53:12.996577'); -INSERT INTO dvds.payment VALUES (30250, 111, 2, 10039, 2.99, '2007-04-30 17:19:06.996577'); -INSERT INTO dvds.payment VALUES (30251, 112, 1, 5351, 4.99, '2007-04-09 16:09:18.996577'); -INSERT INTO dvds.payment VALUES (30252, 112, 1, 5385, 2.99, '2007-04-09 17:46:37.996577'); -INSERT INTO dvds.payment VALUES (30253, 112, 2, 6550, 2.99, '2007-04-12 03:31:40.996577'); -INSERT INTO dvds.payment VALUES (30254, 112, 2, 7691, 4.99, '2007-04-28 01:58:35.996577'); -INSERT INTO dvds.payment VALUES (30255, 112, 2, 7761, 4.99, '2007-04-28 05:00:11.996577'); -INSERT INTO dvds.payment VALUES (30256, 112, 1, 9217, 4.99, '2007-04-30 11:42:21.996577'); -INSERT INTO dvds.payment VALUES (30257, 112, 2, 9321, 6.99, '2007-04-30 15:48:10.996577'); -INSERT INTO dvds.payment VALUES (30258, 112, 2, 9609, 4.99, '2007-04-30 02:21:50.996577'); -INSERT INTO dvds.payment VALUES (30259, 112, 1, 9830, 5.99, '2007-04-30 10:27:31.996577'); -INSERT INTO dvds.payment VALUES (30260, 112, 2, 9911, 3.99, '2007-04-30 13:16:27.996577'); -INSERT INTO dvds.payment VALUES (30261, 112, 1, 10038, 2.99, '2007-04-30 17:17:38.996577'); -INSERT INTO dvds.payment VALUES (30262, 113, 2, 3657, 5.99, '2007-04-06 06:23:56.996577'); -INSERT INTO dvds.payment VALUES (30263, 113, 1, 4333, 2.99, '2007-04-07 17:00:16.996577'); -INSERT INTO dvds.payment VALUES (30264, 113, 2, 5189, 2.99, '2007-04-09 08:51:47.996577'); -INSERT INTO dvds.payment VALUES (30265, 113, 2, 5324, 2.99, '2007-04-09 15:02:44.996577'); -INSERT INTO dvds.payment VALUES (30266, 113, 2, 5655, 4.99, '2007-04-10 05:59:32.996577'); -INSERT INTO dvds.payment VALUES (30267, 113, 1, 5774, 5.99, '2007-04-10 12:00:22.996577'); -INSERT INTO dvds.payment VALUES (30268, 113, 1, 6025, 0.99, '2007-04-11 00:46:39.996577'); -INSERT INTO dvds.payment VALUES (30269, 113, 1, 6836, 0.99, '2007-04-12 17:26:31.996577'); -INSERT INTO dvds.payment VALUES (30270, 113, 2, 7468, 5.99, '2007-04-27 17:20:53.996577'); -INSERT INTO dvds.payment VALUES (30271, 113, 2, 7587, 2.99, '2007-04-27 21:51:29.996577'); -INSERT INTO dvds.payment VALUES (30272, 113, 2, 9221, 6.99, '2007-04-30 11:48:32.996577'); -INSERT INTO dvds.payment VALUES (30273, 113, 2, 10181, 4.99, '2007-04-30 22:29:10.996577'); -INSERT INTO dvds.payment VALUES (30274, 114, 1, 3484, 4.99, '2007-04-05 21:51:37.996577'); -INSERT INTO dvds.payment VALUES (30275, 114, 1, 3924, 2.99, '2007-04-06 19:06:28.996577'); -INSERT INTO dvds.payment VALUES (30276, 114, 1, 4025, 0.99, '2007-04-07 00:41:50.996577'); -INSERT INTO dvds.payment VALUES (30277, 114, 1, 5418, 0.99, '2007-04-09 19:10:01.996577'); -INSERT INTO dvds.payment VALUES (30278, 114, 2, 5624, 4.99, '2007-04-10 04:11:42.996577'); -INSERT INTO dvds.payment VALUES (30279, 114, 1, 5625, 2.99, '2007-04-10 04:12:28.996577'); -INSERT INTO dvds.payment VALUES (30280, 114, 1, 6188, 2.99, '2007-04-11 10:00:13.996577'); -INSERT INTO dvds.payment VALUES (30281, 114, 1, 6754, 4.99, '2007-04-12 13:27:50.996577'); -INSERT INTO dvds.payment VALUES (30282, 114, 2, 7316, 2.99, '2007-04-27 11:47:29.996577'); -INSERT INTO dvds.payment VALUES (30283, 114, 2, 7462, 2.99, '2007-04-27 17:16:13.996577'); -INSERT INTO dvds.payment VALUES (30284, 114, 2, 7565, 2.99, '2007-04-27 21:02:25.996577'); -INSERT INTO dvds.payment VALUES (30285, 114, 2, 7938, 5.99, '2007-04-28 11:07:37.996577'); -INSERT INTO dvds.payment VALUES (30286, 114, 2, 8496, 4.99, '2007-04-29 07:33:59.996577'); -INSERT INTO dvds.payment VALUES (30287, 114, 1, 8590, 10.99, '2007-04-29 11:00:46.996577'); -INSERT INTO dvds.payment VALUES (30288, 114, 1, 9717, 4.99, '2007-04-30 06:53:07.996577'); -INSERT INTO dvds.payment VALUES (30289, 115, 2, 3544, 0.99, '2007-04-06 00:34:58.996577'); -INSERT INTO dvds.payment VALUES (30290, 115, 1, 3624, 0.99, '2007-04-06 04:34:53.996577'); -INSERT INTO dvds.payment VALUES (30291, 115, 1, 4780, 1.99, '2007-04-08 14:35:17.996577'); -INSERT INTO dvds.payment VALUES (30292, 115, 1, 5245, 4.99, '2007-04-09 11:52:40.996577'); -INSERT INTO dvds.payment VALUES (30293, 115, 1, 6080, 2.99, '2007-04-11 03:36:37.996577'); -INSERT INTO dvds.payment VALUES (30294, 115, 2, 6113, 2.99, '2007-04-11 05:59:34.996577'); -INSERT INTO dvds.payment VALUES (30295, 115, 1, 6373, 0.99, '2007-04-11 20:03:46.996577'); -INSERT INTO dvds.payment VALUES (30296, 115, 1, 6574, 5.99, '2007-04-12 04:32:48.996577'); -INSERT INTO dvds.payment VALUES (30297, 115, 1, 6798, 6.99, '2007-04-12 15:17:37.996577'); -INSERT INTO dvds.payment VALUES (30298, 115, 2, 7355, 1.99, '2007-04-27 13:14:25.996577'); -INSERT INTO dvds.payment VALUES (30299, 115, 2, 7465, 4.99, '2007-04-27 17:18:56.996577'); -INSERT INTO dvds.payment VALUES (30300, 115, 1, 7983, 4.99, '2007-04-28 12:51:27.996577'); -INSERT INTO dvds.payment VALUES (30301, 115, 1, 8594, 4.99, '2007-04-29 11:10:39.996577'); -INSERT INTO dvds.payment VALUES (30302, 115, 2, 9578, 0.99, '2007-04-30 01:22:57.996577'); -INSERT INTO dvds.payment VALUES (30303, 115, 2, 10022, 3.99, '2007-04-30 16:53:56.996577'); -INSERT INTO dvds.payment VALUES (30304, 116, 2, 3908, 6.99, '2007-04-06 18:15:52.996577'); -INSERT INTO dvds.payment VALUES (30305, 116, 2, 3940, 2.99, '2007-04-06 19:45:25.996577'); -INSERT INTO dvds.payment VALUES (30306, 116, 1, 4027, 0.99, '2007-04-07 00:47:27.996577'); -INSERT INTO dvds.payment VALUES (30307, 116, 2, 4737, 4.99, '2007-04-08 11:52:19.996577'); -INSERT INTO dvds.payment VALUES (30308, 116, 2, 5169, 2.99, '2007-04-09 07:50:51.996577'); -INSERT INTO dvds.payment VALUES (30309, 116, 1, 6557, 4.99, '2007-04-12 03:40:29.996577'); -INSERT INTO dvds.payment VALUES (30310, 116, 1, 7238, 0.99, '2007-04-27 08:42:07.996577'); -INSERT INTO dvds.payment VALUES (30311, 116, 2, 7763, 5.99, '2007-04-28 05:03:42.996577'); -INSERT INTO dvds.payment VALUES (30312, 116, 2, 9245, 6.99, '2007-04-30 12:36:16.996577'); -INSERT INTO dvds.payment VALUES (30313, 116, 1, 9562, 3.99, '2007-04-30 00:51:46.996577'); -INSERT INTO dvds.payment VALUES (30314, 117, 2, 5506, 5.99, '2007-04-09 23:14:14.996577'); -INSERT INTO dvds.payment VALUES (30315, 117, 1, 5673, 0.99, '2007-04-10 06:50:20.996577'); -INSERT INTO dvds.payment VALUES (30316, 117, 1, 6093, 9.99, '2007-04-11 04:21:16.996577'); -INSERT INTO dvds.payment VALUES (30317, 117, 1, 6449, 6.99, '2007-04-11 23:17:24.996577'); -INSERT INTO dvds.payment VALUES (30318, 117, 1, 8687, 2.99, '2007-04-29 14:47:43.996577'); -INSERT INTO dvds.payment VALUES (30319, 118, 1, 4966, 0.99, '2007-04-08 22:15:51.996577'); -INSERT INTO dvds.payment VALUES (30320, 118, 1, 5829, 1.99, '2007-04-10 14:58:07.996577'); -INSERT INTO dvds.payment VALUES (30321, 118, 1, 6377, 0.99, '2007-04-11 20:09:42.996577'); -INSERT INTO dvds.payment VALUES (30322, 118, 1, 6507, 1.99, '2007-04-12 02:01:38.996577'); -INSERT INTO dvds.payment VALUES (30323, 118, 1, 7196, 2.99, '2007-04-27 07:17:34.996577'); -INSERT INTO dvds.payment VALUES (30324, 118, 1, 7850, 4.99, '2007-04-28 07:59:39.996577'); -INSERT INTO dvds.payment VALUES (30325, 118, 2, 7956, 4.99, '2007-04-28 12:00:43.996577'); -INSERT INTO dvds.payment VALUES (30326, 118, 1, 8314, 3.99, '2007-04-29 02:03:30.996577'); -INSERT INTO dvds.payment VALUES (30327, 118, 2, 8760, 7.99, '2007-04-29 17:51:06.996577'); -INSERT INTO dvds.payment VALUES (30328, 118, 1, 8881, 4.99, '2007-04-29 22:50:57.996577'); -INSERT INTO dvds.payment VALUES (30329, 118, 2, 10045, 1.99, '2007-04-30 17:33:01.996577'); -INSERT INTO dvds.payment VALUES (30330, 119, 2, 4840, 8.99, '2007-04-08 16:46:42.996577'); -INSERT INTO dvds.payment VALUES (30331, 119, 1, 5176, 5.99, '2007-04-09 08:07:57.996577'); -INSERT INTO dvds.payment VALUES (30332, 119, 1, 5268, 0.99, '2007-04-09 12:51:09.996577'); -INSERT INTO dvds.payment VALUES (30333, 119, 1, 6079, 7.99, '2007-04-11 03:35:40.996577'); -INSERT INTO dvds.payment VALUES (30334, 119, 2, 6330, 0.99, '2007-04-11 17:44:08.996577'); -INSERT INTO dvds.payment VALUES (30335, 119, 2, 8140, 4.99, '2007-04-28 18:46:16.996577'); -INSERT INTO dvds.payment VALUES (30336, 119, 1, 8183, 5.99, '2007-04-28 20:49:33.996577'); -INSERT INTO dvds.payment VALUES (30337, 119, 1, 8304, 4.99, '2007-04-29 01:36:56.996577'); -INSERT INTO dvds.payment VALUES (30338, 119, 2, 9028, 2.99, '2007-04-30 04:29:01.996577'); -INSERT INTO dvds.payment VALUES (30339, 119, 1, 10101, 0.99, '2007-04-30 19:15:55.996577'); -INSERT INTO dvds.payment VALUES (30340, 120, 1, 4001, 5.99, '2007-04-06 22:35:26.996577'); -INSERT INTO dvds.payment VALUES (30341, 120, 2, 4272, 3.99, '2007-04-07 13:07:46.996577'); -INSERT INTO dvds.payment VALUES (30342, 120, 2, 4342, 0.99, '2007-04-07 17:15:29.996577'); -INSERT INTO dvds.payment VALUES (30343, 120, 2, 4666, 9.99, '2007-04-08 08:33:28.996577'); -INSERT INTO dvds.payment VALUES (30344, 120, 1, 4942, 1.99, '2007-04-08 21:11:13.996577'); -INSERT INTO dvds.payment VALUES (30345, 120, 2, 5288, 1.99, '2007-04-09 13:41:33.996577'); -INSERT INTO dvds.payment VALUES (30346, 120, 2, 6503, 0.99, '2007-04-12 01:46:33.996577'); -INSERT INTO dvds.payment VALUES (30347, 120, 1, 6989, 4.99, '2007-04-26 23:29:00.996577'); -INSERT INTO dvds.payment VALUES (30348, 120, 2, 8046, 0.99, '2007-04-28 15:18:07.996577'); -INSERT INTO dvds.payment VALUES (30349, 120, 2, 8756, 1.99, '2007-04-29 17:47:23.996577'); -INSERT INTO dvds.payment VALUES (30350, 120, 1, 8998, 6.99, '2007-04-30 03:22:40.996577'); -INSERT INTO dvds.payment VALUES (30351, 120, 2, 9907, 6.99, '2007-04-30 13:08:16.996577'); -INSERT INTO dvds.payment VALUES (30352, 120, 2, 10161, 0.99, '2007-04-30 21:38:07.996577'); -INSERT INTO dvds.payment VALUES (30353, 121, 2, 5670, 0.99, '2007-04-10 06:43:18.996577'); -INSERT INTO dvds.payment VALUES (30354, 121, 2, 6780, 4.99, '2007-04-12 14:46:38.996577'); -INSERT INTO dvds.payment VALUES (30355, 121, 2, 7114, 0.99, '2007-04-27 04:10:39.996577'); -INSERT INTO dvds.payment VALUES (30356, 121, 1, 7185, 0.99, '2007-04-27 06:52:20.996577'); -INSERT INTO dvds.payment VALUES (30357, 121, 2, 7298, 2.99, '2007-04-27 11:13:40.996577'); -INSERT INTO dvds.payment VALUES (30358, 121, 1, 8370, 6.99, '2007-04-29 03:44:47.996577'); -INSERT INTO dvds.payment VALUES (30359, 121, 2, 8788, 1.99, '2007-04-29 19:15:10.996577'); -INSERT INTO dvds.payment VALUES (30360, 121, 2, 8875, 2.99, '2007-04-29 22:43:35.996577'); -INSERT INTO dvds.payment VALUES (30361, 121, 2, 8969, 8.99, '2007-04-30 02:28:45.996577'); -INSERT INTO dvds.payment VALUES (30362, 122, 1, 3778, 2.99, '2007-04-06 12:13:14.996577'); -INSERT INTO dvds.payment VALUES (30363, 122, 2, 3986, 4.99, '2007-04-06 21:53:39.996577'); -INSERT INTO dvds.payment VALUES (30364, 122, 1, 4239, 7.99, '2007-04-07 11:51:43.996577'); -INSERT INTO dvds.payment VALUES (30365, 122, 1, 4568, 4.99, '2007-04-08 03:52:25.996577'); -INSERT INTO dvds.payment VALUES (30366, 122, 2, 5235, 6.99, '2007-04-09 11:22:51.996577'); -INSERT INTO dvds.payment VALUES (30367, 122, 2, 6231, 0.99, '2007-04-11 12:31:02.996577'); -INSERT INTO dvds.payment VALUES (30368, 122, 1, 6427, 0.99, '2007-04-11 22:26:00.996577'); -INSERT INTO dvds.payment VALUES (30369, 122, 1, 6436, 0.99, '2007-04-11 22:47:08.996577'); -INSERT INTO dvds.payment VALUES (30370, 122, 2, 6974, 7.99, '2007-04-26 23:07:42.996577'); -INSERT INTO dvds.payment VALUES (30371, 122, 1, 7267, 2.99, '2007-04-27 09:51:21.996577'); -INSERT INTO dvds.payment VALUES (30372, 122, 2, 7950, 4.99, '2007-04-28 11:49:26.996577'); -INSERT INTO dvds.payment VALUES (30373, 122, 1, 8077, 2.99, '2007-04-28 16:23:01.996577'); -INSERT INTO dvds.payment VALUES (30374, 122, 2, 8177, 0.99, '2007-04-28 20:12:20.996577'); -INSERT INTO dvds.payment VALUES (30375, 122, 1, 8772, 5.99, '2007-04-29 18:23:51.996577'); -INSERT INTO dvds.payment VALUES (30376, 122, 2, 9910, 4.99, '2007-04-30 13:16:23.996577'); -INSERT INTO dvds.payment VALUES (30377, 123, 1, 4442, 3.99, '2007-04-07 21:33:56.996577'); -INSERT INTO dvds.payment VALUES (30378, 123, 1, 4860, 8.99, '2007-04-08 17:22:33.996577'); -INSERT INTO dvds.payment VALUES (30379, 123, 2, 7535, 4.99, '2007-04-27 20:01:05.996577'); -INSERT INTO dvds.payment VALUES (30380, 123, 1, 7727, 2.99, '2007-04-28 03:21:09.996577'); -INSERT INTO dvds.payment VALUES (30381, 123, 2, 7768, 0.99, '2007-04-28 05:12:29.996577'); -INSERT INTO dvds.payment VALUES (30382, 123, 1, 7852, 2.99, '2007-04-28 08:02:55.996577'); -INSERT INTO dvds.payment VALUES (30383, 123, 1, 7969, 5.99, '2007-04-28 12:26:03.996577'); -INSERT INTO dvds.payment VALUES (30384, 123, 2, 8699, 4.99, '2007-04-29 15:21:26.996577'); -INSERT INTO dvds.payment VALUES (30385, 123, 2, 9529, 4.99, '2007-04-30 23:33:52.996577'); -INSERT INTO dvds.payment VALUES (30386, 123, 1, 10066, 4.99, '2007-04-30 17:58:27.996577'); -INSERT INTO dvds.payment VALUES (30387, 124, 1, 4341, 7.99, '2007-04-07 17:12:49.996577'); -INSERT INTO dvds.payment VALUES (30388, 124, 2, 4709, 2.99, '2007-04-08 10:33:00.996577'); -INSERT INTO dvds.payment VALUES (30389, 124, 1, 5566, 2.99, '2007-04-10 01:58:43.996577'); -INSERT INTO dvds.payment VALUES (30390, 124, 1, 6411, 2.99, '2007-04-11 21:39:16.996577'); -INSERT INTO dvds.payment VALUES (30391, 124, 1, 7519, 6.99, '2007-04-27 19:30:07.996577'); -INSERT INTO dvds.payment VALUES (30392, 124, 2, 7700, 8.99, '2007-04-28 02:22:40.996577'); -INSERT INTO dvds.payment VALUES (30393, 124, 2, 8524, 0.99, '2007-04-29 08:48:33.996577'); -INSERT INTO dvds.payment VALUES (30394, 124, 1, 9986, 3.99, '2007-04-30 15:45:16.996577'); -INSERT INTO dvds.payment VALUES (30395, 125, 1, 3617, 4.99, '2007-04-06 04:26:32.996577'); -INSERT INTO dvds.payment VALUES (30396, 125, 1, 5200, 2.99, '2007-04-09 09:20:35.996577'); -INSERT INTO dvds.payment VALUES (30397, 125, 2, 5523, 7.99, '2007-04-10 00:16:21.996577'); -INSERT INTO dvds.payment VALUES (30398, 125, 1, 6055, 0.99, '2007-04-11 02:27:34.996577'); -INSERT INTO dvds.payment VALUES (30399, 125, 2, 6268, 6.99, '2007-04-11 14:24:00.996577'); -INSERT INTO dvds.payment VALUES (30400, 125, 1, 7323, 4.99, '2007-04-27 12:08:06.996577'); -INSERT INTO dvds.payment VALUES (30401, 125, 2, 7879, 0.99, '2007-04-28 08:56:12.996577'); -INSERT INTO dvds.payment VALUES (30402, 125, 2, 7922, 0.99, '2007-04-28 10:33:51.996577'); -INSERT INTO dvds.payment VALUES (30403, 125, 2, 8375, 2.99, '2007-04-29 03:53:56.996577'); -INSERT INTO dvds.payment VALUES (30404, 125, 1, 8433, 2.99, '2007-04-29 05:47:42.996577'); -INSERT INTO dvds.payment VALUES (30405, 125, 1, 8832, 4.99, '2007-04-29 21:06:15.996577'); -INSERT INTO dvds.payment VALUES (30406, 125, 1, 9129, 9.99, '2007-04-30 08:19:47.996577'); -INSERT INTO dvds.payment VALUES (30407, 125, 1, 9496, 4.99, '2007-04-30 22:23:46.996577'); -INSERT INTO dvds.payment VALUES (30408, 125, 2, 9504, 0.99, '2007-04-30 22:37:33.996577'); -INSERT INTO dvds.payment VALUES (30409, 125, 1, 9722, 4.99, '2007-04-30 06:58:14.996577'); -INSERT INTO dvds.payment VALUES (30410, 125, 2, 9734, 2.99, '2007-04-30 07:26:11.996577'); -INSERT INTO dvds.payment VALUES (30411, 126, 2, 3502, 5.99, '2007-04-05 22:43:32.996577'); -INSERT INTO dvds.payment VALUES (30412, 126, 1, 3725, 4.99, '2007-04-06 09:43:30.996577'); -INSERT INTO dvds.payment VALUES (30413, 126, 1, 3804, 7.99, '2007-04-06 13:36:34.996577'); -INSERT INTO dvds.payment VALUES (30414, 126, 1, 4691, 0.99, '2007-04-08 09:33:19.996577'); -INSERT INTO dvds.payment VALUES (30415, 126, 2, 4730, 2.99, '2007-04-08 11:28:15.996577'); -INSERT INTO dvds.payment VALUES (30416, 126, 2, 5137, 0.99, '2007-04-09 06:29:00.996577'); -INSERT INTO dvds.payment VALUES (30417, 126, 1, 5865, 0.99, '2007-04-10 16:59:31.996577'); -INSERT INTO dvds.payment VALUES (30418, 126, 1, 6747, 0.99, '2007-04-12 13:01:47.996577'); -INSERT INTO dvds.payment VALUES (30419, 126, 2, 6755, 6.99, '2007-04-12 13:36:15.996577'); -INSERT INTO dvds.payment VALUES (30420, 126, 1, 7962, 0.99, '2007-04-28 12:16:35.996577'); -INSERT INTO dvds.payment VALUES (30421, 126, 1, 8091, 2.99, '2007-04-28 16:55:55.996577'); -INSERT INTO dvds.payment VALUES (30422, 126, 1, 9492, 6.99, '2007-04-30 22:20:47.996577'); -INSERT INTO dvds.payment VALUES (30423, 126, 2, 10032, 4.99, '2007-04-30 17:10:21.996577'); -INSERT INTO dvds.payment VALUES (30424, 127, 1, 4652, 5.99, '2007-04-08 08:16:17.996577'); -INSERT INTO dvds.payment VALUES (30425, 127, 2, 4811, 5.99, '2007-04-08 15:32:50.996577'); -INSERT INTO dvds.payment VALUES (30426, 127, 2, 5499, 2.99, '2007-04-09 22:56:11.996577'); -INSERT INTO dvds.payment VALUES (30427, 127, 2, 5983, 2.99, '2007-04-10 23:02:37.996577'); -INSERT INTO dvds.payment VALUES (30428, 127, 1, 7912, 4.99, '2007-04-28 10:15:24.996577'); -INSERT INTO dvds.payment VALUES (30429, 127, 2, 8209, 6.99, '2007-04-28 21:57:54.996577'); -INSERT INTO dvds.payment VALUES (30430, 127, 1, 9859, 6.99, '2007-04-30 11:31:21.996577'); -INSERT INTO dvds.payment VALUES (30431, 127, 1, 10197, 2.99, '2007-04-30 23:03:51.996577'); -INSERT INTO dvds.payment VALUES (30432, 128, 1, 3751, 0.99, '2007-04-06 10:52:07.996577'); -INSERT INTO dvds.payment VALUES (30433, 128, 2, 3995, 5.99, '2007-04-06 22:11:29.996577'); -INSERT INTO dvds.payment VALUES (30434, 128, 1, 5270, 2.99, '2007-04-09 12:52:12.996577'); -INSERT INTO dvds.payment VALUES (30435, 128, 1, 5647, 4.99, '2007-04-10 05:37:06.996577'); -INSERT INTO dvds.payment VALUES (30436, 128, 2, 5997, 4.99, '2007-04-10 23:48:16.996577'); -INSERT INTO dvds.payment VALUES (30437, 128, 2, 6186, 2.99, '2007-04-11 09:55:07.996577'); -INSERT INTO dvds.payment VALUES (30438, 128, 2, 6481, 6.99, '2007-04-12 00:18:41.996577'); -INSERT INTO dvds.payment VALUES (30439, 128, 2, 6687, 2.99, '2007-04-12 10:47:49.996577'); -INSERT INTO dvds.payment VALUES (30440, 128, 2, 7582, 4.99, '2007-04-27 21:43:40.996577'); -INSERT INTO dvds.payment VALUES (30441, 128, 2, 8415, 2.99, '2007-04-29 05:20:53.996577'); -INSERT INTO dvds.payment VALUES (30442, 128, 2, 9215, 5.99, '2007-04-30 11:39:37.996577'); -INSERT INTO dvds.payment VALUES (30443, 128, 2, 9234, 2.99, '2007-04-30 12:14:20.996577'); -INSERT INTO dvds.payment VALUES (30444, 128, 1, 9433, 5.99, '2007-04-30 19:56:43.996577'); -INSERT INTO dvds.payment VALUES (30445, 128, 2, 9858, 2.99, '2007-04-30 11:30:33.996577'); -INSERT INTO dvds.payment VALUES (30446, 128, 1, 9952, 3.99, '2007-04-30 14:21:03.996577'); -INSERT INTO dvds.payment VALUES (30447, 128, 1, 10011, 2.99, '2007-04-30 16:31:07.996577'); -INSERT INTO dvds.payment VALUES (30448, 129, 1, 3689, 0.99, '2007-04-06 08:11:27.996577'); -INSERT INTO dvds.payment VALUES (30449, 129, 2, 3900, 4.99, '2007-04-06 17:49:54.996577'); -INSERT INTO dvds.payment VALUES (30450, 129, 2, 3936, 0.99, '2007-04-06 19:43:29.996577'); -INSERT INTO dvds.payment VALUES (30451, 129, 2, 4256, 2.99, '2007-04-07 12:43:02.996577'); -INSERT INTO dvds.payment VALUES (30452, 129, 1, 4602, 0.99, '2007-04-08 05:21:06.996577'); -INSERT INTO dvds.payment VALUES (30453, 129, 1, 4896, 2.99, '2007-04-08 18:51:41.996577'); -INSERT INTO dvds.payment VALUES (30454, 129, 1, 4996, 0.99, '2007-04-08 23:28:12.996577'); -INSERT INTO dvds.payment VALUES (30455, 129, 1, 5127, 0.99, '2007-04-09 05:54:13.996577'); -INSERT INTO dvds.payment VALUES (30456, 129, 2, 5350, 4.99, '2007-04-09 16:07:56.996577'); -INSERT INTO dvds.payment VALUES (30457, 129, 1, 8339, 4.99, '2007-04-29 03:09:39.996577'); -INSERT INTO dvds.payment VALUES (30458, 129, 1, 8345, 2.99, '2007-04-29 03:16:03.996577'); -INSERT INTO dvds.payment VALUES (30459, 129, 2, 9823, 4.99, '2007-04-30 10:17:26.996577'); -INSERT INTO dvds.payment VALUES (30460, 129, 1, 9983, 7.99, '2007-04-30 15:38:02.996577'); -INSERT INTO dvds.payment VALUES (30461, 129, 1, 10024, 7.99, '2007-04-30 16:55:02.996577'); -INSERT INTO dvds.payment VALUES (30462, 129, 2, 10167, 5.99, '2007-04-30 21:52:57.996577'); -INSERT INTO dvds.payment VALUES (30463, 130, 2, 4339, 4.99, '2007-04-07 17:10:08.996577'); -INSERT INTO dvds.payment VALUES (30464, 130, 2, 4485, 4.99, '2007-04-07 23:36:20.996577'); -INSERT INTO dvds.payment VALUES (30465, 130, 1, 6353, 3.99, '2007-04-11 19:17:22.996577'); -INSERT INTO dvds.payment VALUES (30466, 130, 1, 7181, 4.99, '2007-04-27 06:43:00.996577'); -INSERT INTO dvds.payment VALUES (30467, 130, 1, 7728, 0.99, '2007-04-28 03:24:59.996577'); -INSERT INTO dvds.payment VALUES (30468, 130, 1, 9452, 0.99, '2007-04-30 20:47:42.996577'); -INSERT INTO dvds.payment VALUES (30469, 130, 2, 9637, 4.99, '2007-04-30 03:47:20.996577'); -INSERT INTO dvds.payment VALUES (30470, 130, 2, 9724, 5.99, '2007-04-30 07:01:34.996577'); -INSERT INTO dvds.payment VALUES (30471, 131, 1, 3515, 2.99, '2007-04-05 23:17:21.996577'); -INSERT INTO dvds.payment VALUES (30472, 131, 1, 5233, 4.99, '2007-04-09 11:12:52.996577'); -INSERT INTO dvds.payment VALUES (30473, 131, 1, 5395, 4.99, '2007-04-09 18:11:03.996577'); -INSERT INTO dvds.payment VALUES (30474, 131, 1, 5610, 2.99, '2007-04-10 03:38:18.996577'); -INSERT INTO dvds.payment VALUES (30475, 131, 2, 5726, 2.99, '2007-04-10 09:50:34.996577'); -INSERT INTO dvds.payment VALUES (30476, 131, 1, 5874, 3.99, '2007-04-10 17:31:17.996577'); -INSERT INTO dvds.payment VALUES (30477, 131, 1, 7557, 2.99, '2007-04-27 20:46:45.996577'); -INSERT INTO dvds.payment VALUES (30478, 131, 2, 8071, 0.99, '2007-04-28 15:56:14.996577'); -INSERT INTO dvds.payment VALUES (30479, 131, 1, 8267, 6.99, '2007-04-28 23:49:28.996577'); -INSERT INTO dvds.payment VALUES (30480, 131, 1, 8570, 8.99, '2007-04-29 10:08:34.996577'); -INSERT INTO dvds.payment VALUES (30481, 131, 1, 9323, 3.99, '2007-04-30 15:50:10.996577'); -INSERT INTO dvds.payment VALUES (30482, 131, 1, 10179, 2.99, '2007-04-30 22:18:20.996577'); -INSERT INTO dvds.payment VALUES (30483, 132, 1, 3706, 0.99, '2007-04-06 08:46:27.996577'); -INSERT INTO dvds.payment VALUES (30484, 132, 2, 3825, 2.99, '2007-04-06 14:18:29.996577'); -INSERT INTO dvds.payment VALUES (30485, 132, 1, 4168, 4.99, '2007-04-07 08:05:50.996577'); -INSERT INTO dvds.payment VALUES (30486, 132, 1, 4534, 4.99, '2007-04-08 02:05:21.996577'); -INSERT INTO dvds.payment VALUES (30487, 132, 1, 4557, 5.99, '2007-04-08 03:17:41.996577'); -INSERT INTO dvds.payment VALUES (30488, 132, 2, 4903, 0.99, '2007-04-08 19:18:31.996577'); -INSERT INTO dvds.payment VALUES (30489, 132, 1, 5391, 2.99, '2007-04-09 17:57:00.996577'); -INSERT INTO dvds.payment VALUES (30490, 132, 2, 5684, 5.99, '2007-04-10 07:27:29.996577'); -INSERT INTO dvds.payment VALUES (30491, 132, 1, 5703, 0.99, '2007-04-10 08:32:41.996577'); -INSERT INTO dvds.payment VALUES (30492, 132, 2, 5715, 1.99, '2007-04-10 09:16:29.996577'); -INSERT INTO dvds.payment VALUES (30493, 132, 1, 6239, 6.99, '2007-04-11 12:49:14.996577'); -INSERT INTO dvds.payment VALUES (30494, 132, 1, 6978, 1.99, '2007-04-26 23:16:06.996577'); -INSERT INTO dvds.payment VALUES (30495, 132, 2, 7432, 0.99, '2007-04-27 16:00:06.996577'); -INSERT INTO dvds.payment VALUES (30496, 132, 1, 7631, 1.99, '2007-04-27 23:29:41.996577'); -INSERT INTO dvds.payment VALUES (30497, 133, 2, 4506, 6.99, '2007-04-08 00:50:44.996577'); -INSERT INTO dvds.payment VALUES (30498, 133, 2, 4566, 2.99, '2007-04-08 03:47:16.996577'); -INSERT INTO dvds.payment VALUES (30499, 133, 1, 4681, 6.99, '2007-04-08 09:04:29.996577'); -INSERT INTO dvds.payment VALUES (30500, 133, 2, 4829, 2.99, '2007-04-08 16:22:44.996577'); -INSERT INTO dvds.payment VALUES (30501, 133, 2, 5063, 2.99, '2007-04-09 03:05:57.996577'); -INSERT INTO dvds.payment VALUES (30502, 133, 1, 6157, 4.99, '2007-04-11 08:16:42.996577'); -INSERT INTO dvds.payment VALUES (30503, 133, 1, 6609, 3.99, '2007-04-12 06:48:07.996577'); -INSERT INTO dvds.payment VALUES (30504, 133, 1, 7177, 2.99, '2007-04-27 06:36:05.996577'); -INSERT INTO dvds.payment VALUES (30505, 133, 1, 7400, 0.99, '2007-04-27 14:45:03.996577'); -INSERT INTO dvds.payment VALUES (30506, 133, 2, 8389, 6.99, '2007-04-29 04:18:35.996577'); -INSERT INTO dvds.payment VALUES (30507, 133, 2, 9139, 2.99, '2007-04-30 08:40:18.996577'); -INSERT INTO dvds.payment VALUES (30508, 133, 1, 9175, 0.99, '2007-04-30 10:16:14.996577'); -INSERT INTO dvds.payment VALUES (30509, 133, 2, 9671, 0.99, '2007-04-30 05:02:07.996577'); -INSERT INTO dvds.payment VALUES (30510, 134, 1, 5315, 4.99, '2007-04-09 14:37:45.996577'); -INSERT INTO dvds.payment VALUES (30511, 134, 2, 6226, 2.99, '2007-04-11 12:16:37.996577'); -INSERT INTO dvds.payment VALUES (30512, 134, 1, 6659, 0.99, '2007-04-12 09:46:31.996577'); -INSERT INTO dvds.payment VALUES (30513, 134, 2, 7516, 2.99, '2007-04-27 19:23:54.996577'); -INSERT INTO dvds.payment VALUES (30514, 134, 2, 7965, 4.99, '2007-04-28 12:21:23.996577'); -INSERT INTO dvds.payment VALUES (30515, 134, 2, 8650, 1.99, '2007-04-29 13:27:30.996577'); -INSERT INTO dvds.payment VALUES (30516, 135, 1, 4102, 0.99, '2007-04-07 04:53:45.996577'); -INSERT INTO dvds.payment VALUES (30517, 135, 2, 5054, 7.99, '2007-04-09 02:29:28.996577'); -INSERT INTO dvds.payment VALUES (30518, 135, 1, 5541, 0.99, '2007-04-10 01:12:53.996577'); -INSERT INTO dvds.payment VALUES (30519, 135, 1, 6117, 3.99, '2007-04-11 06:08:04.996577'); -INSERT INTO dvds.payment VALUES (30520, 135, 1, 6461, 3.99, '2007-04-11 23:42:29.996577'); -INSERT INTO dvds.payment VALUES (30521, 135, 1, 6817, 3.99, '2007-04-12 16:48:23.996577'); -INSERT INTO dvds.payment VALUES (30522, 135, 2, 7297, 4.99, '2007-04-27 11:08:14.996577'); -INSERT INTO dvds.payment VALUES (30523, 135, 1, 7437, 0.99, '2007-04-27 16:07:44.996577'); -INSERT INTO dvds.payment VALUES (30524, 135, 1, 7554, 7.99, '2007-04-27 20:41:07.996577'); -INSERT INTO dvds.payment VALUES (30525, 135, 1, 7734, 0.99, '2007-04-28 03:37:10.996577'); -INSERT INTO dvds.payment VALUES (30526, 135, 1, 8315, 0.99, '2007-04-29 02:05:33.996577'); -INSERT INTO dvds.payment VALUES (30527, 135, 2, 8885, 7.99, '2007-04-29 23:04:52.996577'); -INSERT INTO dvds.payment VALUES (30528, 135, 1, 8987, 6.99, '2007-04-30 03:06:02.996577'); -INSERT INTO dvds.payment VALUES (30529, 135, 2, 10091, 4.99, '2007-04-30 18:51:39.996577'); -INSERT INTO dvds.payment VALUES (30530, 136, 1, 4927, 0.99, '2007-04-08 20:34:01.996577'); -INSERT INTO dvds.payment VALUES (30531, 136, 1, 5627, 3.99, '2007-04-10 04:19:38.996577'); -INSERT INTO dvds.payment VALUES (30532, 136, 2, 6142, 3.99, '2007-04-11 07:22:35.996577'); -INSERT INTO dvds.payment VALUES (30533, 136, 1, 6585, 8.99, '2007-04-12 05:19:18.996577'); -INSERT INTO dvds.payment VALUES (30534, 136, 2, 9319, 0.99, '2007-04-30 15:43:53.996577'); -INSERT INTO dvds.payment VALUES (30535, 136, 2, 9764, 5.99, '2007-04-30 08:11:24.996577'); -INSERT INTO dvds.payment VALUES (30536, 137, 2, 3589, 4.99, '2007-04-06 02:58:44.996577'); -INSERT INTO dvds.payment VALUES (30537, 137, 2, 3676, 5.99, '2007-04-06 07:39:03.996577'); -INSERT INTO dvds.payment VALUES (30538, 137, 2, 3874, 6.99, '2007-04-06 16:34:38.996577'); -INSERT INTO dvds.payment VALUES (30539, 137, 1, 4332, 6.99, '2007-04-07 16:53:52.996577'); -INSERT INTO dvds.payment VALUES (30540, 137, 2, 4474, 3.99, '2007-04-07 22:55:22.996577'); -INSERT INTO dvds.payment VALUES (30541, 137, 1, 5106, 2.99, '2007-04-09 05:08:50.996577'); -INSERT INTO dvds.payment VALUES (30542, 137, 1, 5443, 3.99, '2007-04-09 20:24:35.996577'); -INSERT INTO dvds.payment VALUES (30543, 137, 1, 5804, 2.99, '2007-04-10 13:34:57.996577'); -INSERT INTO dvds.payment VALUES (30544, 137, 1, 6039, 6.99, '2007-04-11 01:40:45.996577'); -INSERT INTO dvds.payment VALUES (30545, 137, 2, 6200, 0.99, '2007-04-11 10:45:08.996577'); -INSERT INTO dvds.payment VALUES (30546, 137, 1, 8028, 8.99, '2007-04-28 14:39:41.996577'); -INSERT INTO dvds.payment VALUES (30547, 137, 1, 8106, 4.99, '2007-04-28 17:31:12.996577'); -INSERT INTO dvds.payment VALUES (30548, 137, 2, 8954, 2.99, '2007-04-30 01:54:17.996577'); -INSERT INTO dvds.payment VALUES (30549, 137, 1, 9002, 4.99, '2007-04-30 03:30:47.996577'); -INSERT INTO dvds.payment VALUES (30550, 137, 2, 9200, 4.99, '2007-04-30 11:08:18.996577'); -INSERT INTO dvds.payment VALUES (30551, 137, 2, 9466, 7.99, '2007-04-30 21:13:02.996577'); -INSERT INTO dvds.payment VALUES (30552, 137, 1, 9709, 4.99, '2007-04-30 06:33:21.996577'); -INSERT INTO dvds.payment VALUES (30553, 137, 1, 9789, 2.99, '2007-04-30 08:58:51.996577'); -INSERT INTO dvds.payment VALUES (30554, 137, 1, 10175, 6.99, '2007-04-30 22:08:37.996577'); -INSERT INTO dvds.payment VALUES (30555, 138, 2, 3481, 2.99, '2007-04-05 21:41:33.996577'); -INSERT INTO dvds.payment VALUES (30556, 138, 1, 5378, 0.99, '2007-04-09 17:34:22.996577'); -INSERT INTO dvds.payment VALUES (30557, 138, 1, 5600, 1.99, '2007-04-10 03:24:11.996577'); -INSERT INTO dvds.payment VALUES (30558, 138, 1, 5679, 4.99, '2007-04-10 07:12:28.996577'); -INSERT INTO dvds.payment VALUES (30559, 138, 1, 6458, 2.99, '2007-04-11 23:37:18.996577'); -INSERT INTO dvds.payment VALUES (30560, 138, 1, 6892, 0.99, '2007-04-12 19:38:30.996577'); -INSERT INTO dvds.payment VALUES (30561, 138, 1, 7208, 2.99, '2007-04-27 07:44:54.996577'); -INSERT INTO dvds.payment VALUES (30562, 138, 1, 7754, 2.99, '2007-04-28 04:39:21.996577'); -INSERT INTO dvds.payment VALUES (30563, 138, 2, 8123, 4.99, '2007-04-28 17:56:49.996577'); -INSERT INTO dvds.payment VALUES (30564, 138, 2, 8160, 3.99, '2007-04-28 19:38:56.996577'); -INSERT INTO dvds.payment VALUES (30565, 138, 1, 8424, 3.99, '2007-04-29 05:34:29.996577'); -INSERT INTO dvds.payment VALUES (30566, 138, 2, 9259, 1.99, '2007-04-30 13:06:10.996577'); -INSERT INTO dvds.payment VALUES (30567, 138, 1, 9619, 0.99, '2007-04-30 02:45:28.996577'); -INSERT INTO dvds.payment VALUES (30568, 138, 1, 9947, 9.99, '2007-04-30 14:18:06.996577'); -INSERT INTO dvds.payment VALUES (30569, 138, 1, 10110, 0.99, '2007-04-30 19:34:38.996577'); -INSERT INTO dvds.payment VALUES (30570, 138, 2, 10190, 4.99, '2007-04-30 22:56:19.996577'); -INSERT INTO dvds.payment VALUES (30571, 139, 2, 4660, 0.99, '2007-04-08 08:23:13.996577'); -INSERT INTO dvds.payment VALUES (30572, 139, 2, 4663, 2.99, '2007-04-08 08:27:44.996577'); -INSERT INTO dvds.payment VALUES (30573, 139, 2, 5092, 2.99, '2007-04-09 04:26:05.996577'); -INSERT INTO dvds.payment VALUES (30574, 139, 2, 5265, 7.99, '2007-04-09 12:43:27.996577'); -INSERT INTO dvds.payment VALUES (30575, 139, 1, 5390, 6.99, '2007-04-09 17:54:48.996577'); -INSERT INTO dvds.payment VALUES (30576, 139, 1, 5494, 6.99, '2007-04-09 22:43:26.996577'); -INSERT INTO dvds.payment VALUES (30577, 139, 1, 6496, 6.99, '2007-04-12 01:26:05.996577'); -INSERT INTO dvds.payment VALUES (30578, 139, 2, 6740, 0.99, '2007-04-12 12:50:34.996577'); -INSERT INTO dvds.payment VALUES (30579, 139, 1, 7369, 0.99, '2007-04-27 13:36:24.996577'); -INSERT INTO dvds.payment VALUES (30580, 139, 2, 7767, 5.99, '2007-04-28 05:10:28.996577'); -INSERT INTO dvds.payment VALUES (30581, 139, 2, 9415, 2.99, '2007-04-30 19:16:57.996577'); -INSERT INTO dvds.payment VALUES (30582, 139, 2, 9920, 4.99, '2007-04-30 13:25:39.996577'); -INSERT INTO dvds.payment VALUES (30583, 140, 1, 6286, 4.99, '2007-04-11 15:24:01.996577'); -INSERT INTO dvds.payment VALUES (30584, 140, 1, 6407, 9.99, '2007-04-11 21:30:45.996577'); -INSERT INTO dvds.payment VALUES (30585, 140, 2, 6571, 0.99, '2007-04-12 04:20:13.996577'); -INSERT INTO dvds.payment VALUES (30586, 140, 1, 6918, 2.99, '2007-04-12 20:58:55.996577'); -INSERT INTO dvds.payment VALUES (30587, 140, 1, 7170, 4.99, '2007-04-27 06:26:52.996577'); -INSERT INTO dvds.payment VALUES (30588, 140, 1, 9094, 4.99, '2007-04-30 07:03:36.996577'); -INSERT INTO dvds.payment VALUES (30589, 140, 1, 9404, 0.99, '2007-04-30 18:50:01.996577'); -INSERT INTO dvds.payment VALUES (30590, 141, 1, 4057, 1.99, '2007-04-07 02:28:46.996577'); -INSERT INTO dvds.payment VALUES (30591, 141, 2, 4297, 0.99, '2007-04-07 14:52:35.996577'); -INSERT INTO dvds.payment VALUES (30592, 141, 1, 4656, 5.99, '2007-04-08 08:18:36.996577'); -INSERT INTO dvds.payment VALUES (30593, 141, 2, 5062, 2.99, '2007-04-09 03:05:15.996577'); -INSERT INTO dvds.payment VALUES (30594, 141, 1, 5769, 0.99, '2007-04-10 11:46:24.996577'); -INSERT INTO dvds.payment VALUES (30595, 141, 2, 6979, 4.99, '2007-04-26 23:18:19.996577'); -INSERT INTO dvds.payment VALUES (30596, 141, 2, 7878, 2.99, '2007-04-28 08:55:36.996577'); -INSERT INTO dvds.payment VALUES (30597, 141, 1, 8434, 4.99, '2007-04-29 05:48:40.996577'); -INSERT INTO dvds.payment VALUES (30598, 141, 2, 9073, 7.99, '2007-04-30 06:18:22.996577'); -INSERT INTO dvds.payment VALUES (30599, 141, 1, 9584, 4.99, '2007-04-30 01:34:14.996577'); -INSERT INTO dvds.payment VALUES (30600, 141, 2, 9683, 2.99, '2007-04-30 05:15:39.996577'); -INSERT INTO dvds.payment VALUES (30601, 142, 2, 3492, 2.99, '2007-04-05 22:13:03.996577'); -INSERT INTO dvds.payment VALUES (30602, 142, 2, 4497, 4.99, '2007-04-08 00:19:58.996577'); -INSERT INTO dvds.payment VALUES (30603, 142, 1, 4531, 4.99, '2007-04-08 01:56:25.996577'); -INSERT INTO dvds.payment VALUES (30604, 142, 1, 6522, 0.99, '2007-04-12 02:40:24.996577'); -INSERT INTO dvds.payment VALUES (30605, 142, 1, 7764, 2.99, '2007-04-28 05:08:31.996577'); -INSERT INTO dvds.payment VALUES (30606, 142, 2, 8513, 2.99, '2007-04-29 08:21:25.996577'); -INSERT INTO dvds.payment VALUES (30607, 142, 2, 8623, 4.99, '2007-04-29 12:23:37.996577'); -INSERT INTO dvds.payment VALUES (30608, 142, 1, 9020, 7.99, '2007-04-30 03:59:53.996577'); -INSERT INTO dvds.payment VALUES (30609, 142, 1, 9131, 2.99, '2007-04-30 08:24:23.996577'); -INSERT INTO dvds.payment VALUES (30610, 142, 1, 9419, 5.99, '2007-04-30 19:33:25.996577'); -INSERT INTO dvds.payment VALUES (30611, 143, 1, 4031, 7.99, '2007-04-07 01:00:33.996577'); -INSERT INTO dvds.payment VALUES (30612, 143, 2, 4221, 0.99, '2007-04-07 10:47:23.996577'); -INSERT INTO dvds.payment VALUES (30613, 143, 1, 4585, 7.99, '2007-04-08 04:40:24.996577'); -INSERT INTO dvds.payment VALUES (30614, 143, 2, 6076, 6.99, '2007-04-11 03:33:56.996577'); -INSERT INTO dvds.payment VALUES (30615, 143, 2, 6207, 4.99, '2007-04-11 11:02:50.996577'); -INSERT INTO dvds.payment VALUES (30616, 143, 1, 8312, 0.99, '2007-04-29 02:01:04.996577'); -INSERT INTO dvds.payment VALUES (30617, 143, 1, 8335, 0.99, '2007-04-29 02:46:51.996577'); -INSERT INTO dvds.payment VALUES (30618, 143, 2, 9889, 1.99, '2007-04-30 12:31:16.996577'); -INSERT INTO dvds.payment VALUES (30619, 143, 1, 10118, 0.99, '2007-04-30 19:44:57.996577'); -INSERT INTO dvds.payment VALUES (30620, 144, 1, 4726, 6.99, '2007-04-08 11:19:20.996577'); -INSERT INTO dvds.payment VALUES (30621, 144, 2, 4818, 3.99, '2007-04-08 15:46:48.996577'); -INSERT INTO dvds.payment VALUES (30622, 144, 2, 5049, 0.99, '2007-04-09 02:22:38.996577'); -INSERT INTO dvds.payment VALUES (30623, 144, 2, 5374, 8.99, '2007-04-09 17:20:34.996577'); -INSERT INTO dvds.payment VALUES (30624, 144, 2, 5408, 7.99, '2007-04-09 18:45:17.996577'); -INSERT INTO dvds.payment VALUES (30625, 144, 2, 5526, 7.99, '2007-04-10 00:32:29.996577'); -INSERT INTO dvds.payment VALUES (30626, 144, 2, 6614, 7.99, '2007-04-12 07:02:15.996577'); -INSERT INTO dvds.payment VALUES (30627, 144, 2, 6791, 9.99, '2007-04-12 15:03:33.996577'); -INSERT INTO dvds.payment VALUES (30628, 144, 2, 7378, 5.99, '2007-04-27 13:59:59.996577'); -INSERT INTO dvds.payment VALUES (30629, 144, 2, 7566, 2.99, '2007-04-27 21:03:11.996577'); -INSERT INTO dvds.payment VALUES (30630, 144, 1, 7830, 0.99, '2007-04-28 07:12:15.996577'); -INSERT INTO dvds.payment VALUES (30631, 144, 1, 7858, 3.99, '2007-04-28 08:18:44.996577'); -INSERT INTO dvds.payment VALUES (30632, 144, 2, 8459, 5.99, '2007-04-29 06:34:06.996577'); -INSERT INTO dvds.payment VALUES (30633, 144, 1, 8983, 0.99, '2007-04-30 02:59:34.996577'); -INSERT INTO dvds.payment VALUES (30634, 144, 1, 9034, 7.99, '2007-04-30 04:39:24.996577'); -INSERT INTO dvds.payment VALUES (30635, 144, 1, 9098, 3.99, '2007-04-30 07:12:47.996577'); -INSERT INTO dvds.payment VALUES (30636, 144, 2, 9174, 4.99, '2007-04-30 10:10:36.996577'); -INSERT INTO dvds.payment VALUES (30637, 144, 2, 9714, 0.99, '2007-04-30 06:43:58.996577'); -INSERT INTO dvds.payment VALUES (30638, 145, 1, 3647, 5.99, '2007-04-06 05:57:43.996577'); -INSERT INTO dvds.payment VALUES (30639, 145, 2, 4201, 8.99, '2007-04-07 09:48:17.996577'); -INSERT INTO dvds.payment VALUES (30640, 145, 1, 4364, 4.99, '2007-04-07 18:15:17.996577'); -INSERT INTO dvds.payment VALUES (30641, 145, 2, 4405, 6.99, '2007-04-07 20:01:42.996577'); -INSERT INTO dvds.payment VALUES (30642, 145, 1, 4470, 2.99, '2007-04-07 22:49:23.996577'); -INSERT INTO dvds.payment VALUES (30643, 145, 2, 4817, 2.99, '2007-04-08 15:45:57.996577'); -INSERT INTO dvds.payment VALUES (30644, 145, 2, 6056, 2.99, '2007-04-11 02:29:53.996577'); -INSERT INTO dvds.payment VALUES (30645, 145, 1, 6339, 1.99, '2007-04-11 18:13:58.996577'); -INSERT INTO dvds.payment VALUES (30646, 145, 2, 6378, 0.99, '2007-04-11 20:13:49.996577'); -INSERT INTO dvds.payment VALUES (30647, 145, 2, 7061, 2.99, '2007-04-27 02:19:36.996577'); -INSERT INTO dvds.payment VALUES (30648, 145, 1, 7529, 7.99, '2007-04-27 19:46:34.996577'); -INSERT INTO dvds.payment VALUES (30649, 145, 2, 7954, 0.99, '2007-04-28 11:53:31.996577'); -INSERT INTO dvds.payment VALUES (30650, 145, 1, 8380, 0.99, '2007-04-29 03:59:55.996577'); -INSERT INTO dvds.payment VALUES (30651, 145, 1, 9156, 2.99, '2007-04-30 09:33:21.996577'); -INSERT INTO dvds.payment VALUES (30652, 145, 2, 9576, 0.99, '2007-04-30 01:21:25.996577'); -INSERT INTO dvds.payment VALUES (30653, 146, 1, 4849, 6.99, '2007-04-08 17:03:00.996577'); -INSERT INTO dvds.payment VALUES (30654, 146, 2, 5000, 4.99, '2007-04-08 23:44:39.996577'); -INSERT INTO dvds.payment VALUES (30655, 146, 1, 6102, 7.99, '2007-04-11 05:21:35.996577'); -INSERT INTO dvds.payment VALUES (30656, 146, 2, 6184, 6.99, '2007-04-11 09:47:47.996577'); -INSERT INTO dvds.payment VALUES (30657, 146, 1, 6327, 4.99, '2007-04-11 17:35:55.996577'); -INSERT INTO dvds.payment VALUES (30658, 146, 1, 6990, 0.99, '2007-04-26 23:31:12.996577'); -INSERT INTO dvds.payment VALUES (30659, 146, 2, 8246, 3.99, '2007-04-28 23:07:07.996577'); -INSERT INTO dvds.payment VALUES (30660, 147, 2, 3919, 7.99, '2007-04-06 18:54:47.996577'); -INSERT INTO dvds.payment VALUES (30661, 147, 2, 3956, 2.99, '2007-04-06 20:30:17.996577'); -INSERT INTO dvds.payment VALUES (30662, 147, 2, 4792, 0.99, '2007-04-08 14:58:04.996577'); -INSERT INTO dvds.payment VALUES (30663, 147, 2, 5044, 0.99, '2007-04-09 01:58:51.996577'); -INSERT INTO dvds.payment VALUES (30664, 147, 1, 5567, 2.99, '2007-04-10 02:05:12.996577'); -INSERT INTO dvds.payment VALUES (30665, 147, 1, 5844, 0.99, '2007-04-10 15:43:09.996577'); -INSERT INTO dvds.payment VALUES (30666, 147, 2, 6343, 0.99, '2007-04-11 18:20:01.996577'); -INSERT INTO dvds.payment VALUES (30667, 147, 2, 6469, 4.99, '2007-04-11 23:57:53.996577'); -INSERT INTO dvds.payment VALUES (30668, 147, 2, 6753, 2.99, '2007-04-12 13:24:08.996577'); -INSERT INTO dvds.payment VALUES (30669, 147, 2, 7044, 0.99, '2007-04-27 01:55:55.996577'); -INSERT INTO dvds.payment VALUES (30670, 147, 1, 7723, 0.99, '2007-04-28 03:14:03.996577'); -INSERT INTO dvds.payment VALUES (30671, 147, 1, 8893, 2.99, '2007-04-29 23:16:45.996577'); -INSERT INTO dvds.payment VALUES (30672, 147, 2, 9772, 0.99, '2007-04-30 08:24:33.996577'); -INSERT INTO dvds.payment VALUES (30673, 148, 1, 3653, 0.99, '2007-04-06 06:13:39.996577'); -INSERT INTO dvds.payment VALUES (30674, 148, 1, 4080, 0.99, '2007-04-07 03:38:20.996577'); -INSERT INTO dvds.payment VALUES (30675, 148, 1, 4746, 2.99, '2007-04-08 12:16:21.996577'); -INSERT INTO dvds.payment VALUES (30676, 148, 1, 4950, 2.99, '2007-04-08 21:26:33.996577'); -INSERT INTO dvds.payment VALUES (30677, 148, 1, 5034, 4.99, '2007-04-09 01:16:41.996577'); -INSERT INTO dvds.payment VALUES (30678, 148, 1, 5372, 4.99, '2007-04-09 17:17:05.996577'); -INSERT INTO dvds.payment VALUES (30679, 148, 1, 6169, 1.99, '2007-04-11 08:54:22.996577'); -INSERT INTO dvds.payment VALUES (30680, 148, 1, 6640, 8.99, '2007-04-12 08:55:45.996577'); -INSERT INTO dvds.payment VALUES (30681, 148, 2, 6793, 10.99, '2007-04-12 15:06:21.996577'); -INSERT INTO dvds.payment VALUES (30682, 148, 1, 7656, 0.99, '2007-04-28 00:35:45.996577'); -INSERT INTO dvds.payment VALUES (30683, 148, 2, 7693, 4.99, '2007-04-28 01:59:48.996577'); -INSERT INTO dvds.payment VALUES (30684, 148, 1, 7865, 9.99, '2007-04-28 08:35:30.996577'); -INSERT INTO dvds.payment VALUES (30685, 148, 2, 8111, 4.99, '2007-04-28 17:38:29.996577'); -INSERT INTO dvds.payment VALUES (30686, 148, 2, 8331, 3.99, '2007-04-29 02:41:55.996577'); -INSERT INTO dvds.payment VALUES (30687, 148, 1, 8394, 4.99, '2007-04-29 04:30:40.996577'); -INSERT INTO dvds.payment VALUES (30688, 148, 2, 8578, 4.99, '2007-04-29 10:26:40.996577'); -INSERT INTO dvds.payment VALUES (30689, 148, 2, 8626, 4.99, '2007-04-29 12:31:46.996577'); -INSERT INTO dvds.payment VALUES (30690, 148, 1, 9023, 5.99, '2007-04-30 04:05:06.996577'); -INSERT INTO dvds.payment VALUES (30691, 148, 1, 9106, 2.99, '2007-04-30 07:21:00.996577'); -INSERT INTO dvds.payment VALUES (30692, 148, 1, 9530, 1.99, '2007-04-30 23:37:32.996577'); -INSERT INTO dvds.payment VALUES (30693, 148, 1, 9594, 4.99, '2007-04-30 01:52:18.996577'); -INSERT INTO dvds.payment VALUES (30694, 148, 2, 10067, 4.99, '2007-04-30 18:06:24.996577'); -INSERT INTO dvds.payment VALUES (30695, 149, 1, 3894, 2.99, '2007-04-06 17:30:05.996577'); -INSERT INTO dvds.payment VALUES (30696, 149, 1, 3939, 6.99, '2007-04-06 19:44:58.996577'); -INSERT INTO dvds.payment VALUES (30697, 149, 1, 4766, 3.99, '2007-04-08 13:44:30.996577'); -INSERT INTO dvds.payment VALUES (30698, 149, 1, 4837, 0.99, '2007-04-08 16:37:38.996577'); -INSERT INTO dvds.payment VALUES (30699, 149, 1, 5091, 2.99, '2007-04-09 04:21:20.996577'); -INSERT INTO dvds.payment VALUES (30700, 149, 1, 5298, 10.99, '2007-04-09 14:04:43.996577'); -INSERT INTO dvds.payment VALUES (30701, 149, 1, 6356, 4.99, '2007-04-11 19:26:14.996577'); -INSERT INTO dvds.payment VALUES (30702, 149, 2, 6940, 5.99, '2007-04-26 21:47:01.996577'); -INSERT INTO dvds.payment VALUES (30703, 149, 2, 7559, 4.99, '2007-04-27 20:48:29.996577'); -INSERT INTO dvds.payment VALUES (30704, 149, 1, 7989, 6.99, '2007-04-28 13:07:31.996577'); -INSERT INTO dvds.payment VALUES (30705, 149, 2, 10154, 2.99, '2007-04-30 20:59:15.996577'); -INSERT INTO dvds.payment VALUES (30706, 150, 1, 4271, 6.99, '2007-04-07 13:07:18.996577'); -INSERT INTO dvds.payment VALUES (30707, 150, 1, 6633, 2.99, '2007-04-12 08:04:08.996577'); -INSERT INTO dvds.payment VALUES (30708, 150, 2, 7690, 4.99, '2007-04-28 01:54:47.996577'); -INSERT INTO dvds.payment VALUES (30709, 150, 1, 9121, 2.99, '2007-04-30 08:04:52.996577'); -INSERT INTO dvds.payment VALUES (30710, 151, 1, 4376, 2.99, '2007-04-07 18:52:59.996577'); -INSERT INTO dvds.payment VALUES (30711, 151, 2, 6720, 0.99, '2007-04-12 12:09:42.996577'); -INSERT INTO dvds.payment VALUES (30712, 151, 2, 6768, 3.99, '2007-04-12 14:16:17.996577'); -INSERT INTO dvds.payment VALUES (30713, 151, 2, 6854, 0.99, '2007-04-12 18:07:23.996577'); -INSERT INTO dvds.payment VALUES (30714, 151, 1, 7189, 0.99, '2007-04-27 07:03:28.996577'); -INSERT INTO dvds.payment VALUES (30715, 151, 2, 7332, 3.99, '2007-04-27 12:27:23.996577'); -INSERT INTO dvds.payment VALUES (30716, 151, 1, 9253, 4.99, '2007-04-30 12:48:38.996577'); -INSERT INTO dvds.payment VALUES (30717, 151, 1, 9890, 4.99, '2007-04-30 12:33:10.996577'); -INSERT INTO dvds.payment VALUES (30718, 151, 1, 9969, 2.99, '2007-04-30 15:06:38.996577'); -INSERT INTO dvds.payment VALUES (30719, 151, 1, 10078, 2.99, '2007-04-30 18:30:28.996577'); -INSERT INTO dvds.payment VALUES (30720, 152, 2, 3577, 2.99, '2007-04-06 02:09:02.996577'); -INSERT INTO dvds.payment VALUES (30721, 152, 1, 3786, 7.99, '2007-04-06 12:29:07.996577'); -INSERT INTO dvds.payment VALUES (30722, 152, 1, 4974, 4.99, '2007-04-08 22:29:02.996577'); -INSERT INTO dvds.payment VALUES (30723, 152, 1, 6273, 0.99, '2007-04-11 14:37:07.996577'); -INSERT INTO dvds.payment VALUES (30724, 152, 1, 6612, 2.99, '2007-04-12 06:56:59.996577'); -INSERT INTO dvds.payment VALUES (30725, 152, 1, 9010, 5.99, '2007-04-30 03:40:30.996577'); -INSERT INTO dvds.payment VALUES (30726, 153, 1, 3795, 0.99, '2007-04-06 13:06:07.996577'); -INSERT INTO dvds.payment VALUES (30727, 153, 1, 3949, 0.99, '2007-04-06 20:15:02.996577'); -INSERT INTO dvds.payment VALUES (30728, 153, 1, 4194, 5.99, '2007-04-07 09:28:05.996577'); -INSERT INTO dvds.payment VALUES (30729, 153, 2, 4670, 5.99, '2007-04-08 08:42:44.996577'); -INSERT INTO dvds.payment VALUES (30730, 153, 2, 5676, 0.99, '2007-04-10 07:06:58.996577'); -INSERT INTO dvds.payment VALUES (30731, 153, 2, 5771, 0.99, '2007-04-10 11:55:11.996577'); -INSERT INTO dvds.payment VALUES (30732, 153, 2, 6818, 9.99, '2007-04-12 16:49:20.996577'); -INSERT INTO dvds.payment VALUES (30733, 153, 2, 7824, 7.99, '2007-04-28 07:03:13.996577'); -INSERT INTO dvds.payment VALUES (30734, 153, 2, 9936, 0.99, '2007-04-30 13:56:07.996577'); -INSERT INTO dvds.payment VALUES (30735, 153, 2, 10015, 4.99, '2007-04-30 16:39:43.996577'); -INSERT INTO dvds.payment VALUES (30736, 154, 2, 3806, 7.99, '2007-04-06 13:38:07.996577'); -INSERT INTO dvds.payment VALUES (30737, 154, 2, 3912, 0.99, '2007-04-06 18:38:29.996577'); -INSERT INTO dvds.payment VALUES (30738, 154, 2, 4132, 4.99, '2007-04-07 06:34:33.996577'); -INSERT INTO dvds.payment VALUES (30739, 154, 1, 4252, 2.99, '2007-04-07 12:41:31.996577'); -INSERT INTO dvds.payment VALUES (30740, 154, 1, 4850, 5.99, '2007-04-08 17:07:57.996577'); -INSERT INTO dvds.payment VALUES (30741, 154, 1, 5101, 0.99, '2007-04-09 04:49:55.996577'); -INSERT INTO dvds.payment VALUES (30742, 154, 2, 5760, 2.99, '2007-04-10 11:13:14.996577'); -INSERT INTO dvds.payment VALUES (30743, 154, 1, 6048, 0.99, '2007-04-11 02:00:49.996577'); -INSERT INTO dvds.payment VALUES (30744, 154, 2, 6993, 4.99, '2007-04-26 23:33:50.996577'); -INSERT INTO dvds.payment VALUES (30745, 154, 1, 7055, 4.99, '2007-04-27 02:14:08.996577'); -INSERT INTO dvds.payment VALUES (30746, 154, 1, 7156, 4.99, '2007-04-27 05:48:00.996577'); -INSERT INTO dvds.payment VALUES (30747, 154, 2, 7900, 1.99, '2007-04-28 09:39:59.996577'); -INSERT INTO dvds.payment VALUES (30748, 154, 2, 8334, 7.99, '2007-04-29 02:46:51.996577'); -INSERT INTO dvds.payment VALUES (30749, 154, 2, 9286, 2.99, '2007-04-30 14:00:54.996577'); -INSERT INTO dvds.payment VALUES (30750, 155, 1, 5128, 1.99, '2007-04-09 05:54:20.996577'); -INSERT INTO dvds.payment VALUES (30751, 155, 1, 6066, 5.99, '2007-04-11 03:01:08.996577'); -INSERT INTO dvds.payment VALUES (30752, 155, 1, 6085, 4.99, '2007-04-11 03:53:02.996577'); -INSERT INTO dvds.payment VALUES (30753, 155, 2, 6087, 4.99, '2007-04-11 03:57:48.996577'); -INSERT INTO dvds.payment VALUES (30754, 155, 1, 6443, 2.99, '2007-04-11 23:04:17.996577'); -INSERT INTO dvds.payment VALUES (30755, 155, 1, 7077, 3.99, '2007-04-27 02:41:28.996577'); -INSERT INTO dvds.payment VALUES (30756, 155, 1, 7492, 2.99, '2007-04-27 18:22:44.996577'); -INSERT INTO dvds.payment VALUES (30757, 155, 2, 7730, 5.99, '2007-04-28 03:28:14.996577'); -INSERT INTO dvds.payment VALUES (30758, 155, 2, 9781, 7.99, '2007-04-30 08:41:28.996577'); -INSERT INTO dvds.payment VALUES (30759, 155, 1, 10098, 0.99, '2007-04-30 19:09:43.996577'); -INSERT INTO dvds.payment VALUES (30760, 156, 2, 4394, 2.99, '2007-04-07 19:41:11.996577'); -INSERT INTO dvds.payment VALUES (30761, 156, 2, 5534, 4.99, '2007-04-10 00:55:15.996577'); -INSERT INTO dvds.payment VALUES (30762, 156, 1, 5828, 2.99, '2007-04-10 14:55:51.996577'); -INSERT INTO dvds.payment VALUES (30763, 156, 2, 5908, 0.99, '2007-04-10 19:12:40.996577'); -INSERT INTO dvds.payment VALUES (30764, 156, 2, 6540, 6.99, '2007-04-12 03:19:39.996577'); -INSERT INTO dvds.payment VALUES (30765, 156, 2, 7389, 2.99, '2007-04-27 14:24:41.996577'); -INSERT INTO dvds.payment VALUES (30766, 156, 2, 7822, 4.99, '2007-04-28 07:00:11.996577'); -INSERT INTO dvds.payment VALUES (30767, 156, 1, 9409, 6.99, '2007-04-30 19:02:19.996577'); -INSERT INTO dvds.payment VALUES (30768, 156, 1, 9696, 0.99, '2007-04-30 05:42:12.996577'); -INSERT INTO dvds.payment VALUES (30769, 157, 1, 3739, 0.99, '2007-04-06 10:22:44.996577'); -INSERT INTO dvds.payment VALUES (30770, 157, 1, 4253, 5.99, '2007-04-07 12:41:39.996577'); -INSERT INTO dvds.payment VALUES (30771, 157, 2, 4435, 3.99, '2007-04-07 21:19:30.996577'); -INSERT INTO dvds.payment VALUES (30772, 157, 1, 4919, 0.99, '2007-04-08 20:10:20.996577'); -INSERT INTO dvds.payment VALUES (30773, 157, 1, 5862, 4.99, '2007-04-10 16:49:14.996577'); -INSERT INTO dvds.payment VALUES (30774, 157, 1, 7110, 2.99, '2007-04-27 03:59:14.996577'); -INSERT INTO dvds.payment VALUES (30775, 157, 2, 7195, 2.99, '2007-04-27 07:15:27.996577'); -INSERT INTO dvds.payment VALUES (30776, 157, 2, 7499, 4.99, '2007-04-27 18:38:54.996577'); -INSERT INTO dvds.payment VALUES (30777, 157, 2, 8163, 0.99, '2007-04-28 19:40:14.996577'); -INSERT INTO dvds.payment VALUES (30778, 157, 2, 8337, 0.99, '2007-04-29 03:00:21.996577'); -INSERT INTO dvds.payment VALUES (30779, 157, 2, 8347, 0.99, '2007-04-29 03:17:51.996577'); -INSERT INTO dvds.payment VALUES (30780, 157, 2, 8576, 4.99, '2007-04-29 10:23:27.996577'); -INSERT INTO dvds.payment VALUES (30781, 157, 1, 8707, 0.99, '2007-04-29 15:50:24.996577'); -INSERT INTO dvds.payment VALUES (30782, 157, 1, 8827, 4.99, '2007-04-29 20:59:50.996577'); -INSERT INTO dvds.payment VALUES (30783, 157, 2, 9237, 2.99, '2007-04-30 12:16:43.996577'); -INSERT INTO dvds.payment VALUES (30784, 157, 2, 9264, 4.99, '2007-04-30 13:20:02.996577'); -INSERT INTO dvds.payment VALUES (30785, 157, 1, 9958, 2.99, '2007-04-30 14:32:22.996577'); -INSERT INTO dvds.payment VALUES (30786, 157, 1, 10203, 4.99, '2007-04-30 23:13:53.996577'); -INSERT INTO dvds.payment VALUES (30787, 158, 1, 4117, 8.99, '2007-04-07 05:26:40.996577'); -INSERT INTO dvds.payment VALUES (30788, 158, 1, 5672, 2.99, '2007-04-10 06:48:04.996577'); -INSERT INTO dvds.payment VALUES (30789, 158, 1, 5988, 4.99, '2007-04-10 23:24:04.996577'); -INSERT INTO dvds.payment VALUES (30790, 158, 1, 6416, 2.99, '2007-04-11 21:57:40.996577'); -INSERT INTO dvds.payment VALUES (30791, 158, 2, 6901, 5.99, '2007-04-12 20:14:59.996577'); -INSERT INTO dvds.payment VALUES (30792, 158, 2, 7159, 2.99, '2007-04-27 05:52:26.996577'); -INSERT INTO dvds.payment VALUES (30793, 158, 1, 7732, 0.99, '2007-04-28 03:31:58.996577'); -INSERT INTO dvds.payment VALUES (30794, 158, 2, 7952, 2.99, '2007-04-28 11:52:15.996577'); -INSERT INTO dvds.payment VALUES (30795, 158, 1, 8750, 2.99, '2007-04-29 17:42:47.996577'); -INSERT INTO dvds.payment VALUES (30796, 158, 1, 8957, 1.99, '2007-04-30 02:02:36.996577'); -INSERT INTO dvds.payment VALUES (30797, 158, 1, 9393, 2.99, '2007-04-30 18:33:14.996577'); -INSERT INTO dvds.payment VALUES (30798, 158, 1, 9713, 1.99, '2007-04-30 06:41:54.996577'); -INSERT INTO dvds.payment VALUES (30799, 158, 1, 9801, 2.99, '2007-04-30 09:31:39.996577'); -INSERT INTO dvds.payment VALUES (30800, 159, 2, 3914, 5.99, '2007-04-06 18:39:36.996577'); -INSERT INTO dvds.payment VALUES (30801, 159, 2, 4273, 4.99, '2007-04-07 13:08:48.996577'); -INSERT INTO dvds.payment VALUES (30802, 159, 2, 5656, 0.99, '2007-04-10 05:59:33.996577'); -INSERT INTO dvds.payment VALUES (30803, 159, 2, 6885, 4.99, '2007-04-12 19:24:30.996577'); -INSERT INTO dvds.payment VALUES (30804, 159, 2, 8212, 2.99, '2007-04-28 22:05:49.996577'); -INSERT INTO dvds.payment VALUES (30805, 159, 1, 8470, 0.99, '2007-04-29 06:57:16.996577'); -INSERT INTO dvds.payment VALUES (30806, 159, 2, 9022, 3.99, '2007-04-30 04:03:11.996577'); -INSERT INTO dvds.payment VALUES (30807, 159, 2, 9132, 0.99, '2007-04-30 08:24:26.996577'); -INSERT INTO dvds.payment VALUES (30808, 159, 1, 9559, 7.99, '2007-04-30 00:44:19.996577'); -INSERT INTO dvds.payment VALUES (30809, 159, 1, 9917, 4.99, '2007-04-30 13:23:37.996577'); -INSERT INTO dvds.payment VALUES (30810, 160, 1, 4842, 0.99, '2007-04-08 16:49:56.996577'); -INSERT INTO dvds.payment VALUES (30811, 160, 1, 4908, 5.99, '2007-04-08 19:34:10.996577'); -INSERT INTO dvds.payment VALUES (30812, 160, 2, 6364, 6.99, '2007-04-11 19:43:14.996577'); -INSERT INTO dvds.payment VALUES (30813, 160, 2, 6448, 1.99, '2007-04-11 23:14:25.996577'); -INSERT INTO dvds.payment VALUES (30814, 160, 2, 7500, 0.99, '2007-04-27 18:44:29.996577'); -INSERT INTO dvds.payment VALUES (30815, 160, 1, 8184, 4.99, '2007-04-28 20:51:01.996577'); -INSERT INTO dvds.payment VALUES (30816, 160, 1, 9681, 0.99, '2007-04-30 05:10:35.996577'); -INSERT INTO dvds.payment VALUES (30817, 160, 2, 9758, 2.99, '2007-04-30 07:54:04.996577'); -INSERT INTO dvds.payment VALUES (30818, 160, 2, 10089, 2.99, '2007-04-30 18:45:35.996577'); -INSERT INTO dvds.payment VALUES (30819, 161, 1, 3948, 4.99, '2007-04-06 20:14:19.996577'); -INSERT INTO dvds.payment VALUES (30820, 161, 2, 4187, 0.99, '2007-04-07 09:09:57.996577'); -INSERT INTO dvds.payment VALUES (30821, 161, 2, 4248, 6.99, '2007-04-07 12:27:46.996577'); -INSERT INTO dvds.payment VALUES (30822, 161, 1, 4490, 2.99, '2007-04-07 23:54:58.996577'); -INSERT INTO dvds.payment VALUES (30823, 161, 2, 5349, 6.99, '2007-04-09 16:04:01.996577'); -INSERT INTO dvds.payment VALUES (30824, 161, 2, 6873, 4.99, '2007-04-12 18:49:16.996577'); -INSERT INTO dvds.payment VALUES (30825, 161, 1, 7003, 2.99, '2007-04-27 00:00:32.996577'); -INSERT INTO dvds.payment VALUES (30826, 161, 2, 8774, 4.99, '2007-04-29 18:33:30.996577'); -INSERT INTO dvds.payment VALUES (30827, 161, 1, 9135, 4.99, '2007-04-30 08:35:19.996577'); -INSERT INTO dvds.payment VALUES (30828, 161, 2, 9421, 0.99, '2007-04-30 19:36:58.996577'); -INSERT INTO dvds.payment VALUES (30829, 162, 2, 4982, 2.99, '2007-04-08 22:59:18.996577'); -INSERT INTO dvds.payment VALUES (30830, 162, 2, 8478, 4.99, '2007-04-29 07:09:02.996577'); -INSERT INTO dvds.payment VALUES (30831, 162, 1, 8582, 4.99, '2007-04-29 10:31:53.996577'); -INSERT INTO dvds.payment VALUES (30832, 162, 2, 9167, 4.99, '2007-04-30 09:59:03.996577'); -INSERT INTO dvds.payment VALUES (30833, 162, 1, 9726, 7.99, '2007-04-30 07:05:33.996577'); -INSERT INTO dvds.payment VALUES (30834, 162, 1, 9775, 0.99, '2007-04-30 08:28:26.996577'); -INSERT INTO dvds.payment VALUES (30835, 162, 2, 10093, 5.99, '2007-04-30 18:58:58.996577'); -INSERT INTO dvds.payment VALUES (30836, 163, 2, 3915, 3.99, '2007-04-06 18:45:12.996577'); -INSERT INTO dvds.payment VALUES (30837, 163, 1, 4126, 1.99, '2007-04-07 05:52:37.996577'); -INSERT INTO dvds.payment VALUES (30838, 163, 2, 5549, 4.99, '2007-04-10 01:26:55.996577'); -INSERT INTO dvds.payment VALUES (30839, 163, 1, 5574, 10.99, '2007-04-10 02:23:04.996577'); -INSERT INTO dvds.payment VALUES (30840, 163, 1, 6109, 0.99, '2007-04-11 05:49:23.996577'); -INSERT INTO dvds.payment VALUES (30841, 163, 1, 6831, 1.99, '2007-04-12 17:12:30.996577'); -INSERT INTO dvds.payment VALUES (30842, 163, 1, 7303, 1.99, '2007-04-27 11:23:05.996577'); -INSERT INTO dvds.payment VALUES (30843, 163, 1, 7403, 2.99, '2007-04-27 14:50:35.996577'); -INSERT INTO dvds.payment VALUES (30844, 163, 2, 8040, 0.99, '2007-04-28 15:08:09.996577'); -INSERT INTO dvds.payment VALUES (30845, 163, 2, 8063, 4.99, '2007-04-28 15:43:37.996577'); -INSERT INTO dvds.payment VALUES (30846, 163, 2, 8403, 4.99, '2007-04-29 04:55:05.996577'); -INSERT INTO dvds.payment VALUES (30847, 164, 2, 4548, 4.99, '2007-04-08 02:50:20.996577'); -INSERT INTO dvds.payment VALUES (30848, 164, 1, 5895, 3.99, '2007-04-10 18:41:45.996577'); -INSERT INTO dvds.payment VALUES (30849, 164, 1, 6393, 0.99, '2007-04-11 20:56:38.996577'); -INSERT INTO dvds.payment VALUES (30850, 164, 2, 6558, 2.99, '2007-04-12 03:44:33.996577'); -INSERT INTO dvds.payment VALUES (30851, 164, 1, 6637, 4.99, '2007-04-12 08:26:05.996577'); -INSERT INTO dvds.payment VALUES (30852, 164, 2, 6702, 0.99, '2007-04-12 11:16:29.996577'); -INSERT INTO dvds.payment VALUES (30853, 164, 1, 6980, 3.99, '2007-04-26 23:18:56.996577'); -INSERT INTO dvds.payment VALUES (30854, 164, 1, 7227, 6.99, '2007-04-27 08:22:09.996577'); -INSERT INTO dvds.payment VALUES (30855, 164, 2, 8135, 3.99, '2007-04-28 18:31:51.996577'); -INSERT INTO dvds.payment VALUES (30856, 164, 2, 8824, 4.99, '2007-04-29 20:51:24.996577'); -INSERT INTO dvds.payment VALUES (30857, 165, 2, 3531, 4.99, '2007-04-05 23:52:34.996577'); -INSERT INTO dvds.payment VALUES (30858, 165, 1, 3784, 5.99, '2007-04-06 12:26:22.996577'); -INSERT INTO dvds.payment VALUES (30859, 165, 2, 4304, 0.99, '2007-04-07 15:29:45.996577'); -INSERT INTO dvds.payment VALUES (30860, 165, 2, 4945, 2.99, '2007-04-08 21:13:28.996577'); -INSERT INTO dvds.payment VALUES (30861, 165, 1, 5472, 4.99, '2007-04-09 21:45:06.996577'); -INSERT INTO dvds.payment VALUES (30862, 165, 2, 5658, 4.99, '2007-04-10 06:02:34.996577'); -INSERT INTO dvds.payment VALUES (30863, 165, 2, 5901, 6.99, '2007-04-10 18:50:38.996577'); -INSERT INTO dvds.payment VALUES (30864, 165, 1, 5973, 0.99, '2007-04-10 22:37:43.996577'); -INSERT INTO dvds.payment VALUES (30865, 165, 1, 7074, 2.99, '2007-04-27 02:34:50.996577'); -INSERT INTO dvds.payment VALUES (30866, 165, 1, 8608, 0.99, '2007-04-29 11:47:18.996577'); -INSERT INTO dvds.payment VALUES (30867, 165, 2, 9182, 7.99, '2007-04-30 10:35:24.996577'); -INSERT INTO dvds.payment VALUES (30868, 165, 2, 9685, 4.99, '2007-04-30 05:17:44.996577'); -INSERT INTO dvds.payment VALUES (30869, 166, 2, 3606, 2.99, '2007-04-06 03:56:28.996577'); -INSERT INTO dvds.payment VALUES (30870, 166, 1, 3642, 2.99, '2007-04-06 05:46:46.996577'); -INSERT INTO dvds.payment VALUES (30871, 166, 2, 4389, 6.99, '2007-04-07 19:27:24.996577'); -INSERT INTO dvds.payment VALUES (30872, 166, 1, 4658, 0.99, '2007-04-08 08:19:37.996577'); -INSERT INTO dvds.payment VALUES (30873, 166, 1, 5184, 4.99, '2007-04-09 08:43:00.996577'); -INSERT INTO dvds.payment VALUES (30874, 166, 2, 5380, 4.99, '2007-04-09 17:37:10.996577'); -INSERT INTO dvds.payment VALUES (30875, 166, 1, 5646, 2.99, '2007-04-10 05:36:35.996577'); -INSERT INTO dvds.payment VALUES (30876, 166, 1, 5855, 7.99, '2007-04-10 16:22:32.996577'); -INSERT INTO dvds.payment VALUES (30877, 166, 2, 6237, 0.99, '2007-04-11 12:47:38.996577'); -INSERT INTO dvds.payment VALUES (30878, 166, 2, 6882, 2.99, '2007-04-12 19:19:05.996577'); -INSERT INTO dvds.payment VALUES (30879, 166, 1, 7581, 2.99, '2007-04-27 21:43:01.996577'); -INSERT INTO dvds.payment VALUES (30880, 166, 1, 8052, 5.99, '2007-04-28 15:25:57.996577'); -INSERT INTO dvds.payment VALUES (30881, 166, 1, 9009, 8.99, '2007-04-30 03:40:27.996577'); -INSERT INTO dvds.payment VALUES (30882, 167, 2, 3518, 4.99, '2007-04-05 23:24:29.996577'); -INSERT INTO dvds.payment VALUES (30883, 167, 2, 4493, 0.99, '2007-04-08 00:08:50.996577'); -INSERT INTO dvds.payment VALUES (30884, 167, 2, 5131, 0.99, '2007-04-09 06:03:29.996577'); -INSERT INTO dvds.payment VALUES (30885, 167, 1, 5178, 4.99, '2007-04-09 08:28:18.996577'); -INSERT INTO dvds.payment VALUES (30886, 167, 1, 5191, 0.99, '2007-04-09 08:55:14.996577'); -INSERT INTO dvds.payment VALUES (30887, 167, 1, 5413, 4.99, '2007-04-09 18:57:08.996577'); -INSERT INTO dvds.payment VALUES (30888, 167, 1, 5781, 2.99, '2007-04-10 12:17:56.996577'); -INSERT INTO dvds.payment VALUES (30889, 167, 2, 6269, 4.99, '2007-04-11 14:27:09.996577'); -INSERT INTO dvds.payment VALUES (30890, 167, 1, 7608, 4.99, '2007-04-27 22:37:02.996577'); -INSERT INTO dvds.payment VALUES (30891, 167, 1, 8092, 2.99, '2007-04-28 16:56:33.996577'); -INSERT INTO dvds.payment VALUES (30892, 167, 2, 8227, 4.99, '2007-04-28 22:30:48.996577'); -INSERT INTO dvds.payment VALUES (30893, 167, 1, 8318, 2.99, '2007-04-29 02:12:56.996577'); -INSERT INTO dvds.payment VALUES (30894, 167, 1, 8793, 0.99, '2007-04-29 19:25:48.996577'); -INSERT INTO dvds.payment VALUES (30895, 167, 2, 8864, 0.99, '2007-04-29 22:20:38.996577'); -INSERT INTO dvds.payment VALUES (30896, 167, 2, 9563, 4.99, '2007-04-30 00:57:05.996577'); -INSERT INTO dvds.payment VALUES (30897, 168, 1, 3530, 2.99, '2007-04-05 23:51:11.996577'); -INSERT INTO dvds.payment VALUES (30898, 168, 1, 4308, 5.99, '2007-04-07 15:57:42.996577'); -INSERT INTO dvds.payment VALUES (30899, 168, 2, 4363, 5.99, '2007-04-07 18:11:54.996577'); -INSERT INTO dvds.payment VALUES (30900, 168, 2, 4953, 2.99, '2007-04-08 21:38:14.996577'); -INSERT INTO dvds.payment VALUES (30901, 168, 1, 5459, 0.99, '2007-04-09 21:12:22.996577'); -INSERT INTO dvds.payment VALUES (30902, 168, 1, 5907, 5.99, '2007-04-10 19:10:07.996577'); -INSERT INTO dvds.payment VALUES (30903, 168, 1, 6334, 5.99, '2007-04-11 17:49:10.996577'); -INSERT INTO dvds.payment VALUES (30904, 168, 2, 6444, 0.99, '2007-04-11 23:04:28.996577'); -INSERT INTO dvds.payment VALUES (30905, 168, 2, 6809, 3.99, '2007-04-12 16:20:20.996577'); -INSERT INTO dvds.payment VALUES (30906, 168, 2, 8352, 1.99, '2007-04-29 03:20:27.996577'); -INSERT INTO dvds.payment VALUES (30907, 168, 1, 8527, 1.99, '2007-04-29 08:49:26.996577'); -INSERT INTO dvds.payment VALUES (30908, 168, 2, 8659, 6.99, '2007-04-29 13:54:57.996577'); -INSERT INTO dvds.payment VALUES (30909, 168, 2, 8883, 1.99, '2007-04-29 22:53:14.996577'); -INSERT INTO dvds.payment VALUES (30910, 168, 2, 9197, 4.99, '2007-04-30 11:00:02.996577'); -INSERT INTO dvds.payment VALUES (30911, 168, 1, 9418, 4.99, '2007-04-30 19:29:18.996577'); -INSERT INTO dvds.payment VALUES (30912, 168, 2, 9857, 6.99, '2007-04-30 11:29:19.996577'); -INSERT INTO dvds.payment VALUES (30913, 168, 2, 9899, 4.99, '2007-04-30 12:41:02.996577'); -INSERT INTO dvds.payment VALUES (30914, 169, 1, 3493, 8.99, '2007-04-05 22:14:45.996577'); -INSERT INTO dvds.payment VALUES (30915, 169, 1, 4687, 4.99, '2007-04-08 09:22:45.996577'); -INSERT INTO dvds.payment VALUES (30916, 169, 1, 5066, 2.99, '2007-04-09 03:17:16.996577'); -INSERT INTO dvds.payment VALUES (30917, 169, 1, 6143, 3.99, '2007-04-11 07:31:03.996577'); -INSERT INTO dvds.payment VALUES (30918, 169, 2, 6453, 4.99, '2007-04-11 23:28:19.996577'); -INSERT INTO dvds.payment VALUES (30919, 169, 2, 6488, 9.99, '2007-04-12 00:48:35.996577'); -INSERT INTO dvds.payment VALUES (30920, 169, 2, 7187, 6.99, '2007-04-27 06:56:24.996577'); -INSERT INTO dvds.payment VALUES (30921, 169, 1, 7597, 0.99, '2007-04-27 22:04:15.996577'); -INSERT INTO dvds.payment VALUES (30922, 169, 2, 8558, 4.99, '2007-04-29 09:53:15.996577'); -INSERT INTO dvds.payment VALUES (30923, 169, 2, 9203, 0.99, '2007-04-30 11:12:06.996577'); -INSERT INTO dvds.payment VALUES (30924, 170, 2, 3651, 4.99, '2007-04-06 06:08:57.996577'); -INSERT INTO dvds.payment VALUES (30925, 170, 1, 3749, 4.99, '2007-04-06 10:46:29.996577'); -INSERT INTO dvds.payment VALUES (30926, 170, 2, 4113, 4.99, '2007-04-07 05:18:18.996577'); -INSERT INTO dvds.payment VALUES (30927, 170, 2, 4468, 0.99, '2007-04-07 22:46:25.996577'); -INSERT INTO dvds.payment VALUES (30928, 170, 2, 5075, 0.99, '2007-04-09 03:40:33.996577'); -INSERT INTO dvds.payment VALUES (30929, 170, 1, 5573, 4.99, '2007-04-10 02:19:13.996577'); -INSERT INTO dvds.payment VALUES (30930, 170, 2, 5685, 7.99, '2007-04-10 07:30:04.996577'); -INSERT INTO dvds.payment VALUES (30931, 170, 2, 5808, 2.99, '2007-04-10 13:45:59.996577'); -INSERT INTO dvds.payment VALUES (30932, 170, 1, 7999, 7.99, '2007-04-28 13:38:40.996577'); -INSERT INTO dvds.payment VALUES (30933, 170, 2, 9517, 2.99, '2007-04-30 23:09:49.996577'); -INSERT INTO dvds.payment VALUES (30934, 170, 1, 9817, 2.99, '2007-04-30 10:01:57.996577'); -INSERT INTO dvds.payment VALUES (30935, 170, 1, 10102, 9.99, '2007-04-30 19:17:36.996577'); -INSERT INTO dvds.payment VALUES (30936, 171, 1, 3621, 0.99, '2007-04-06 04:32:21.996577'); -INSERT INTO dvds.payment VALUES (30937, 171, 2, 3745, 2.99, '2007-04-06 10:38:58.996577'); -INSERT INTO dvds.payment VALUES (30938, 171, 1, 5660, 5.99, '2007-04-10 06:14:38.996577'); -INSERT INTO dvds.payment VALUES (30939, 171, 1, 5986, 4.99, '2007-04-10 23:23:22.996577'); -INSERT INTO dvds.payment VALUES (30940, 171, 1, 6766, 2.99, '2007-04-12 14:00:27.996577'); -INSERT INTO dvds.payment VALUES (30941, 171, 2, 6774, 0.99, '2007-04-12 14:24:34.996577'); -INSERT INTO dvds.payment VALUES (30942, 171, 1, 7037, 3.99, '2007-04-27 01:35:10.996577'); -INSERT INTO dvds.payment VALUES (30943, 171, 2, 9066, 4.99, '2007-04-30 05:57:20.996577'); -INSERT INTO dvds.payment VALUES (30944, 171, 2, 9084, 5.99, '2007-04-30 06:42:55.996577'); -INSERT INTO dvds.payment VALUES (30945, 172, 1, 4820, 5.99, '2007-04-08 15:53:49.996577'); -INSERT INTO dvds.payment VALUES (30946, 172, 1, 4821, 4.99, '2007-04-08 15:56:34.996577'); -INSERT INTO dvds.payment VALUES (30947, 172, 2, 4878, 6.99, '2007-04-08 18:02:15.996577'); -INSERT INTO dvds.payment VALUES (30948, 172, 2, 6246, 7.99, '2007-04-11 13:26:17.996577'); -INSERT INTO dvds.payment VALUES (30949, 172, 1, 6380, 0.99, '2007-04-11 20:24:06.996577'); -INSERT INTO dvds.payment VALUES (30950, 172, 1, 6875, 5.99, '2007-04-12 18:51:31.996577'); -INSERT INTO dvds.payment VALUES (30951, 172, 1, 7122, 6.99, '2007-04-27 04:31:44.996577'); -INSERT INTO dvds.payment VALUES (30952, 172, 1, 7135, 2.99, '2007-04-27 05:02:58.996577'); -INSERT INTO dvds.payment VALUES (30953, 172, 1, 7194, 3.99, '2007-04-27 07:08:24.996577'); -INSERT INTO dvds.payment VALUES (30954, 172, 2, 7261, 2.99, '2007-04-27 09:43:27.996577'); -INSERT INTO dvds.payment VALUES (30955, 172, 1, 7638, 4.99, '2007-04-27 23:41:52.996577'); -INSERT INTO dvds.payment VALUES (30956, 172, 2, 8944, 6.99, '2007-04-30 01:40:10.996577'); -INSERT INTO dvds.payment VALUES (30957, 172, 1, 9118, 2.99, '2007-04-30 07:52:44.996577'); -INSERT INTO dvds.payment VALUES (30958, 172, 2, 9218, 5.99, '2007-04-30 11:43:01.996577'); -INSERT INTO dvds.payment VALUES (30959, 173, 2, 3717, 0.99, '2007-04-06 09:22:00.996577'); -INSERT INTO dvds.payment VALUES (30960, 173, 1, 4904, 7.99, '2007-04-08 19:21:53.996577'); -INSERT INTO dvds.payment VALUES (30961, 173, 2, 5430, 2.99, '2007-04-09 19:48:20.996577'); -INSERT INTO dvds.payment VALUES (30962, 173, 2, 5485, 4.99, '2007-04-09 22:23:51.996577'); -INSERT INTO dvds.payment VALUES (30963, 173, 1, 5488, 2.99, '2007-04-09 22:30:32.996577'); -INSERT INTO dvds.payment VALUES (30964, 173, 2, 5531, 2.99, '2007-04-10 00:42:25.996577'); -INSERT INTO dvds.payment VALUES (30965, 173, 1, 5615, 3.99, '2007-04-10 03:47:17.996577'); -INSERT INTO dvds.payment VALUES (30966, 173, 2, 6021, 4.99, '2007-04-11 00:38:44.996577'); -INSERT INTO dvds.payment VALUES (30967, 173, 1, 7644, 0.99, '2007-04-27 23:55:59.996577'); -INSERT INTO dvds.payment VALUES (30968, 173, 2, 8299, 2.99, '2007-04-29 01:24:26.996577'); -INSERT INTO dvds.payment VALUES (30969, 173, 2, 8808, 4.99, '2007-04-29 20:07:33.996577'); -INSERT INTO dvds.payment VALUES (30970, 173, 2, 8829, 8.99, '2007-04-29 21:02:00.996577'); -INSERT INTO dvds.payment VALUES (30971, 173, 1, 9097, 4.99, '2007-04-30 07:09:01.996577'); -INSERT INTO dvds.payment VALUES (30972, 173, 2, 9512, 2.99, '2007-04-30 22:54:56.996577'); -INSERT INTO dvds.payment VALUES (30973, 174, 2, 4803, 1.99, '2007-04-08 15:25:00.996577'); -INSERT INTO dvds.payment VALUES (30974, 174, 2, 5414, 4.99, '2007-04-09 18:58:02.996577'); -INSERT INTO dvds.payment VALUES (30975, 174, 1, 6909, 4.99, '2007-04-12 20:37:56.996577'); -INSERT INTO dvds.payment VALUES (30976, 174, 2, 8348, 7.99, '2007-04-29 03:17:52.996577'); -INSERT INTO dvds.payment VALUES (30977, 174, 1, 8754, 4.99, '2007-04-29 17:46:56.996577'); -INSERT INTO dvds.payment VALUES (30978, 174, 1, 9301, 4.99, '2007-04-30 15:02:55.996577'); -INSERT INTO dvds.payment VALUES (30979, 174, 1, 9847, 2.99, '2007-04-30 11:02:09.996577'); -INSERT INTO dvds.payment VALUES (30980, 175, 1, 3625, 4.99, '2007-04-06 04:41:18.996577'); -INSERT INTO dvds.payment VALUES (30981, 175, 2, 4167, 5.99, '2007-04-07 08:05:34.996577'); -INSERT INTO dvds.payment VALUES (30982, 175, 1, 5232, 1.99, '2007-04-09 11:03:34.996577'); -INSERT INTO dvds.payment VALUES (30983, 175, 2, 6865, 7.99, '2007-04-12 18:31:06.996577'); -INSERT INTO dvds.payment VALUES (30984, 175, 1, 7448, 2.99, '2007-04-27 16:34:56.996577'); -INSERT INTO dvds.payment VALUES (30985, 175, 1, 7771, 0.99, '2007-04-28 05:20:38.996577'); -INSERT INTO dvds.payment VALUES (30986, 175, 1, 8244, 2.99, '2007-04-28 23:04:00.996577'); -INSERT INTO dvds.payment VALUES (30987, 175, 1, 8264, 4.99, '2007-04-28 23:47:16.996577'); -INSERT INTO dvds.payment VALUES (30988, 175, 1, 8440, 3.99, '2007-04-29 05:59:52.996577'); -INSERT INTO dvds.payment VALUES (30989, 175, 1, 8817, 4.99, '2007-04-29 20:37:34.996577'); -INSERT INTO dvds.payment VALUES (30990, 175, 2, 9941, 4.99, '2007-04-30 13:59:51.996577'); -INSERT INTO dvds.payment VALUES (30991, 176, 1, 3643, 4.99, '2007-04-06 05:48:34.996577'); -INSERT INTO dvds.payment VALUES (30992, 176, 2, 3931, 6.99, '2007-04-06 19:32:12.996577'); -INSERT INTO dvds.payment VALUES (30993, 176, 2, 4121, 3.99, '2007-04-07 05:42:16.996577'); -INSERT INTO dvds.payment VALUES (30994, 176, 1, 6035, 2.99, '2007-04-11 01:30:11.996577'); -INSERT INTO dvds.payment VALUES (30995, 176, 1, 6354, 6.99, '2007-04-11 19:22:53.996577'); -INSERT INTO dvds.payment VALUES (30996, 176, 1, 7017, 4.99, '2007-04-27 00:44:29.996577'); -INSERT INTO dvds.payment VALUES (30997, 176, 1, 7025, 2.99, '2007-04-27 01:08:55.996577'); -INSERT INTO dvds.payment VALUES (30998, 176, 1, 7210, 2.99, '2007-04-27 07:47:31.996577'); -INSERT INTO dvds.payment VALUES (30999, 176, 2, 7521, 2.99, '2007-04-27 19:33:08.996577'); -INSERT INTO dvds.payment VALUES (31000, 176, 1, 7751, 5.99, '2007-04-28 04:24:39.996577'); -INSERT INTO dvds.payment VALUES (31001, 176, 1, 8279, 2.99, '2007-04-29 00:12:03.996577'); -INSERT INTO dvds.payment VALUES (31002, 176, 2, 9145, 6.99, '2007-04-30 08:56:21.996577'); -INSERT INTO dvds.payment VALUES (31003, 177, 1, 4760, 0.99, '2007-04-08 13:16:33.996577'); -INSERT INTO dvds.payment VALUES (31004, 177, 2, 6217, 9.99, '2007-04-11 11:42:11.996577'); -INSERT INTO dvds.payment VALUES (31005, 177, 1, 6284, 2.99, '2007-04-11 15:20:05.996577'); -INSERT INTO dvds.payment VALUES (31006, 177, 1, 7493, 3.99, '2007-04-27 18:24:12.996577'); -INSERT INTO dvds.payment VALUES (31007, 177, 2, 7674, 1.99, '2007-04-28 01:22:56.996577'); -INSERT INTO dvds.payment VALUES (31008, 177, 1, 8139, 0.99, '2007-04-28 18:44:56.996577'); -INSERT INTO dvds.payment VALUES (31009, 177, 2, 9190, 1.99, '2007-04-30 10:52:43.996577'); -INSERT INTO dvds.payment VALUES (31010, 178, 1, 4915, 2.99, '2007-04-08 19:59:48.996577'); -INSERT INTO dvds.payment VALUES (31011, 178, 1, 5015, 2.99, '2007-04-09 00:22:50.996577'); -INSERT INTO dvds.payment VALUES (31012, 178, 1, 5057, 4.99, '2007-04-09 02:48:55.996577'); -INSERT INTO dvds.payment VALUES (31013, 178, 1, 5094, 10.99, '2007-04-09 04:28:13.996577'); -INSERT INTO dvds.payment VALUES (31014, 178, 1, 5984, 2.99, '2007-04-10 23:13:02.996577'); -INSERT INTO dvds.payment VALUES (31015, 178, 2, 6347, 4.99, '2007-04-11 18:47:19.996577'); -INSERT INTO dvds.payment VALUES (31016, 178, 1, 6554, 5.99, '2007-04-12 03:35:52.996577'); -INSERT INTO dvds.payment VALUES (31017, 178, 1, 6566, 6.99, '2007-04-12 04:11:19.996577'); -INSERT INTO dvds.payment VALUES (31018, 178, 2, 6606, 2.99, '2007-04-12 06:32:06.996577'); -INSERT INTO dvds.payment VALUES (31019, 178, 1, 7959, 4.99, '2007-04-28 12:11:46.996577'); -INSERT INTO dvds.payment VALUES (31020, 178, 2, 8069, 0.99, '2007-04-28 15:52:12.996577'); -INSERT INTO dvds.payment VALUES (31021, 178, 1, 8287, 3.99, '2007-04-29 00:32:24.996577'); -INSERT INTO dvds.payment VALUES (31022, 178, 2, 8388, 5.99, '2007-04-29 04:16:41.996577'); -INSERT INTO dvds.payment VALUES (31023, 178, 2, 8696, 4.99, '2007-04-29 15:13:44.996577'); -INSERT INTO dvds.payment VALUES (31024, 178, 2, 9004, 4.99, '2007-04-30 03:32:53.996577'); -INSERT INTO dvds.payment VALUES (31025, 178, 1, 9311, 7.99, '2007-04-30 15:26:57.996577'); -INSERT INTO dvds.payment VALUES (31026, 178, 2, 9879, 4.99, '2007-04-30 12:13:58.996577'); -INSERT INTO dvds.payment VALUES (31027, 178, 2, 10125, 0.99, '2007-04-30 20:01:29.996577'); -INSERT INTO dvds.payment VALUES (31028, 179, 1, 3671, 6.99, '2007-04-06 07:29:55.996577'); -INSERT INTO dvds.payment VALUES (31029, 179, 1, 3844, 0.99, '2007-04-06 15:06:24.996577'); -INSERT INTO dvds.payment VALUES (31030, 179, 1, 4618, 2.99, '2007-04-08 06:28:46.996577'); -INSERT INTO dvds.payment VALUES (31031, 179, 2, 6071, 6.99, '2007-04-11 03:18:29.996577'); -INSERT INTO dvds.payment VALUES (31032, 179, 1, 6616, 7.99, '2007-04-12 07:05:56.996577'); -INSERT INTO dvds.payment VALUES (31033, 179, 1, 6806, 2.99, '2007-04-12 16:00:09.996577'); -INSERT INTO dvds.payment VALUES (31034, 179, 1, 7028, 6.99, '2007-04-27 01:22:51.996577'); -INSERT INTO dvds.payment VALUES (31035, 179, 1, 7054, 4.99, '2007-04-27 02:11:54.996577'); -INSERT INTO dvds.payment VALUES (31036, 179, 1, 7609, 4.99, '2007-04-27 22:39:26.996577'); -INSERT INTO dvds.payment VALUES (31037, 179, 1, 8573, 2.99, '2007-04-29 10:19:51.996577'); -INSERT INTO dvds.payment VALUES (31038, 179, 1, 8731, 8.99, '2007-04-29 16:52:23.996577'); -INSERT INTO dvds.payment VALUES (31039, 179, 2, 9491, 4.99, '2007-04-30 22:13:49.996577'); -INSERT INTO dvds.payment VALUES (31040, 179, 2, 9893, 0.99, '2007-04-30 12:35:47.996577'); -INSERT INTO dvds.payment VALUES (31041, 179, 1, 10156, 4.99, '2007-04-30 21:04:26.996577'); -INSERT INTO dvds.payment VALUES (31042, 180, 2, 4826, 7.99, '2007-04-08 16:12:51.996577'); -INSERT INTO dvds.payment VALUES (31043, 180, 1, 4924, 9.99, '2007-04-08 20:23:51.996577'); -INSERT INTO dvds.payment VALUES (31044, 180, 2, 5384, 0.99, '2007-04-09 17:46:12.996577'); -INSERT INTO dvds.payment VALUES (31045, 180, 2, 5773, 0.99, '2007-04-10 11:59:35.996577'); -INSERT INTO dvds.payment VALUES (31046, 180, 1, 5860, 3.99, '2007-04-10 16:37:15.996577'); -INSERT INTO dvds.payment VALUES (31047, 180, 1, 7274, 2.99, '2007-04-27 10:04:00.996577'); -INSERT INTO dvds.payment VALUES (31048, 180, 2, 8540, 2.99, '2007-04-29 09:21:17.996577'); -INSERT INTO dvds.payment VALUES (31049, 180, 2, 8720, 5.99, '2007-04-29 16:16:58.996577'); -INSERT INTO dvds.payment VALUES (31050, 180, 1, 9373, 0.99, '2007-04-30 17:34:02.996577'); -INSERT INTO dvds.payment VALUES (31051, 180, 2, 9995, 3.99, '2007-04-30 15:59:13.996577'); -INSERT INTO dvds.payment VALUES (31052, 181, 1, 3862, 6.99, '2007-04-06 16:03:48.996577'); -INSERT INTO dvds.payment VALUES (31053, 181, 2, 4428, 4.99, '2007-04-07 20:58:06.996577'); -INSERT INTO dvds.payment VALUES (31054, 181, 2, 6477, 4.99, '2007-04-12 00:07:08.996577'); -INSERT INTO dvds.payment VALUES (31055, 181, 1, 6946, 8.99, '2007-04-26 22:08:33.996577'); -INSERT INTO dvds.payment VALUES (31056, 181, 1, 7393, 0.99, '2007-04-27 14:31:18.996577'); -INSERT INTO dvds.payment VALUES (31057, 181, 1, 7632, 4.99, '2007-04-27 23:31:06.996577'); -INSERT INTO dvds.payment VALUES (31058, 181, 1, 8593, 5.99, '2007-04-29 11:06:40.996577'); -INSERT INTO dvds.payment VALUES (31059, 181, 1, 8601, 9.99, '2007-04-29 11:31:57.996577'); -INSERT INTO dvds.payment VALUES (31060, 181, 2, 9214, 4.99, '2007-04-30 11:38:40.996577'); -INSERT INTO dvds.payment VALUES (31061, 181, 2, 9235, 5.99, '2007-04-30 12:15:43.996577'); -INSERT INTO dvds.payment VALUES (31062, 181, 1, 9357, 8.99, '2007-04-30 17:05:26.996577'); -INSERT INTO dvds.payment VALUES (31063, 181, 1, 9844, 4.99, '2007-04-30 10:54:57.996577'); -INSERT INTO dvds.payment VALUES (31064, 182, 1, 3509, 2.99, '2007-04-05 22:53:23.996577'); -INSERT INTO dvds.payment VALUES (31065, 182, 1, 3697, 6.99, '2007-04-06 08:35:48.996577'); -INSERT INTO dvds.payment VALUES (31066, 182, 1, 4174, 2.99, '2007-04-07 08:28:15.996577'); -INSERT INTO dvds.payment VALUES (31067, 182, 1, 4349, 0.99, '2007-04-07 17:31:03.996577'); -INSERT INTO dvds.payment VALUES (31068, 182, 2, 4513, 1.99, '2007-04-08 01:08:25.996577'); -INSERT INTO dvds.payment VALUES (31069, 182, 2, 4591, 3.99, '2007-04-08 04:58:09.996577'); -INSERT INTO dvds.payment VALUES (31070, 182, 2, 4784, 0.99, '2007-04-08 14:38:22.996577'); -INSERT INTO dvds.payment VALUES (31071, 182, 1, 5521, 2.99, '2007-04-09 23:59:48.996577'); -INSERT INTO dvds.payment VALUES (31072, 182, 2, 7229, 0.99, '2007-04-27 08:29:20.996577'); -INSERT INTO dvds.payment VALUES (31073, 182, 2, 7863, 0.99, '2007-04-28 08:34:12.996577'); -INSERT INTO dvds.payment VALUES (31074, 182, 2, 7880, 4.99, '2007-04-28 08:59:03.996577'); -INSERT INTO dvds.payment VALUES (31075, 182, 2, 8048, 8.99, '2007-04-28 15:18:52.996577'); -INSERT INTO dvds.payment VALUES (31076, 183, 1, 3869, 2.99, '2007-04-06 16:25:12.996577'); -INSERT INTO dvds.payment VALUES (31077, 183, 2, 4134, 0.99, '2007-04-07 06:42:50.996577'); -INSERT INTO dvds.payment VALUES (31078, 183, 2, 4157, 2.99, '2007-04-07 07:32:52.996577'); -INSERT INTO dvds.payment VALUES (31079, 183, 1, 5069, 1.99, '2007-04-09 03:24:56.996577'); -INSERT INTO dvds.payment VALUES (31080, 183, 2, 5756, 0.99, '2007-04-10 11:07:54.996577'); -INSERT INTO dvds.payment VALUES (31081, 183, 1, 6472, 4.99, '2007-04-12 00:01:51.996577'); -INSERT INTO dvds.payment VALUES (31082, 183, 1, 6569, 4.99, '2007-04-12 04:16:06.996577'); -INSERT INTO dvds.payment VALUES (31083, 183, 2, 7359, 0.99, '2007-04-27 13:19:30.996577'); -INSERT INTO dvds.payment VALUES (31084, 183, 2, 9672, 5.99, '2007-04-30 05:02:32.996577'); -INSERT INTO dvds.payment VALUES (31085, 183, 1, 9818, 4.99, '2007-04-30 10:02:58.996577'); -INSERT INTO dvds.payment VALUES (31086, 183, 2, 9931, 2.99, '2007-04-30 13:46:45.996577'); -INSERT INTO dvds.payment VALUES (31087, 184, 1, 4314, 0.99, '2007-04-07 16:06:57.996577'); -INSERT INTO dvds.payment VALUES (31088, 184, 2, 4882, 6.99, '2007-04-08 18:10:29.996577'); -INSERT INTO dvds.payment VALUES (31089, 184, 1, 5891, 0.99, '2007-04-10 18:29:43.996577'); -INSERT INTO dvds.payment VALUES (31090, 184, 2, 6493, 2.99, '2007-04-12 01:09:07.996577'); -INSERT INTO dvds.payment VALUES (31091, 184, 2, 6700, 6.99, '2007-04-12 11:15:48.996577'); -INSERT INTO dvds.payment VALUES (31092, 184, 2, 7051, 4.99, '2007-04-27 02:03:03.996577'); -INSERT INTO dvds.payment VALUES (31093, 184, 2, 7686, 6.99, '2007-04-28 01:47:49.996577'); -INSERT INTO dvds.payment VALUES (31094, 184, 1, 8892, 4.99, '2007-04-29 23:15:29.996577'); -INSERT INTO dvds.payment VALUES (31095, 184, 1, 9162, 0.99, '2007-04-30 09:50:22.996577'); -INSERT INTO dvds.payment VALUES (31096, 185, 1, 4186, 9.99, '2007-04-07 09:00:51.996577'); -INSERT INTO dvds.payment VALUES (31097, 185, 1, 4524, 2.99, '2007-04-08 01:39:14.996577'); -INSERT INTO dvds.payment VALUES (31098, 185, 2, 4822, 7.99, '2007-04-08 15:57:13.996577'); -INSERT INTO dvds.payment VALUES (31099, 185, 2, 6106, 2.99, '2007-04-11 05:33:32.996577'); -INSERT INTO dvds.payment VALUES (31100, 185, 1, 6418, 1.99, '2007-04-11 22:04:53.996577'); -INSERT INTO dvds.payment VALUES (31101, 185, 1, 6965, 2.99, '2007-04-26 22:43:44.996577'); -INSERT INTO dvds.payment VALUES (31102, 185, 1, 7066, 4.99, '2007-04-27 02:22:18.996577'); -INSERT INTO dvds.payment VALUES (31103, 185, 1, 8200, 2.99, '2007-04-28 21:39:12.996577'); -INSERT INTO dvds.payment VALUES (31104, 185, 2, 8442, 0.99, '2007-04-29 06:01:33.996577'); -INSERT INTO dvds.payment VALUES (31105, 185, 1, 8684, 8.99, '2007-04-29 14:44:59.996577'); -INSERT INTO dvds.payment VALUES (31106, 185, 2, 9246, 0.99, '2007-04-30 12:40:57.996577'); -INSERT INTO dvds.payment VALUES (31107, 185, 2, 9473, 2.99, '2007-04-30 21:32:39.996577'); -INSERT INTO dvds.payment VALUES (31108, 186, 2, 6067, 4.99, '2007-04-11 03:03:15.996577'); -INSERT INTO dvds.payment VALUES (31109, 186, 2, 7739, 0.99, '2007-04-28 03:50:17.996577'); -INSERT INTO dvds.payment VALUES (31110, 186, 1, 7915, 3.99, '2007-04-28 10:18:12.996577'); -INSERT INTO dvds.payment VALUES (31111, 186, 1, 8483, 4.99, '2007-04-29 07:18:44.996577'); -INSERT INTO dvds.payment VALUES (31112, 186, 2, 8872, 0.99, '2007-04-29 22:42:20.996577'); -INSERT INTO dvds.payment VALUES (31113, 186, 2, 9303, 2.99, '2007-04-30 15:04:25.996577'); -INSERT INTO dvds.payment VALUES (31114, 186, 2, 9360, 5.99, '2007-04-30 17:08:09.996577'); -INSERT INTO dvds.payment VALUES (31115, 186, 1, 10104, 1.99, '2007-04-30 19:17:40.996577'); -INSERT INTO dvds.payment VALUES (31116, 187, 2, 3709, 10.99, '2007-04-06 08:55:22.996577'); -INSERT INTO dvds.payment VALUES (31117, 187, 1, 4429, 4.99, '2007-04-07 21:01:13.996577'); -INSERT INTO dvds.payment VALUES (31118, 187, 2, 5366, 0.99, '2007-04-09 16:57:03.996577'); -INSERT INTO dvds.payment VALUES (31119, 187, 1, 5738, 8.99, '2007-04-10 10:19:17.996577'); -INSERT INTO dvds.payment VALUES (31120, 187, 2, 5833, 6.99, '2007-04-10 15:07:50.996577'); -INSERT INTO dvds.payment VALUES (31121, 187, 1, 6057, 3.99, '2007-04-11 02:32:06.996577'); -INSERT INTO dvds.payment VALUES (31122, 187, 2, 6428, 2.99, '2007-04-11 22:30:17.996577'); -INSERT INTO dvds.payment VALUES (31123, 187, 2, 7289, 4.99, '2007-04-27 10:55:17.996577'); -INSERT INTO dvds.payment VALUES (31124, 187, 2, 7844, 7.99, '2007-04-28 07:44:45.996577'); -INSERT INTO dvds.payment VALUES (31125, 187, 2, 7967, 7.99, '2007-04-28 12:25:17.996577'); -INSERT INTO dvds.payment VALUES (31126, 187, 1, 9241, 2.99, '2007-04-30 12:27:07.996577'); -INSERT INTO dvds.payment VALUES (31127, 188, 2, 3848, 3.99, '2007-04-06 15:15:58.996577'); -INSERT INTO dvds.payment VALUES (31128, 188, 2, 4150, 2.99, '2007-04-07 07:11:48.996577'); -INSERT INTO dvds.payment VALUES (31129, 188, 2, 5356, 2.99, '2007-04-09 16:36:54.996577'); -INSERT INTO dvds.payment VALUES (31130, 188, 2, 5729, 5.99, '2007-04-10 09:55:51.996577'); -INSERT INTO dvds.payment VALUES (31131, 188, 2, 6555, 4.99, '2007-04-12 03:36:42.996577'); -INSERT INTO dvds.payment VALUES (31132, 188, 2, 7042, 0.99, '2007-04-27 01:48:44.996577'); -INSERT INTO dvds.payment VALUES (31133, 188, 1, 7556, 4.99, '2007-04-27 20:45:43.996577'); -INSERT INTO dvds.payment VALUES (31134, 188, 2, 9613, 4.99, '2007-04-30 02:27:19.996577'); -INSERT INTO dvds.payment VALUES (31135, 189, 1, 3763, 0.99, '2007-04-06 11:24:57.996577'); -INSERT INTO dvds.payment VALUES (31136, 189, 2, 3813, 4.99, '2007-04-06 13:52:00.996577'); -INSERT INTO dvds.payment VALUES (31137, 189, 2, 4203, 0.99, '2007-04-07 09:52:40.996577'); -INSERT INTO dvds.payment VALUES (31138, 189, 1, 6193, 5.99, '2007-04-11 10:15:23.996577'); -INSERT INTO dvds.payment VALUES (31139, 189, 1, 7469, 4.99, '2007-04-27 17:26:06.996577'); -INSERT INTO dvds.payment VALUES (31140, 189, 1, 7675, 4.99, '2007-04-28 01:23:46.996577'); -INSERT INTO dvds.payment VALUES (31141, 189, 2, 7790, 2.99, '2007-04-28 05:51:01.996577'); -INSERT INTO dvds.payment VALUES (31142, 189, 2, 9171, 5.99, '2007-04-30 10:04:50.996577'); -INSERT INTO dvds.payment VALUES (31143, 189, 2, 9386, 0.99, '2007-04-30 17:54:47.996577'); -INSERT INTO dvds.payment VALUES (31144, 189, 1, 9506, 4.99, '2007-04-30 22:47:27.996577'); -INSERT INTO dvds.payment VALUES (31145, 190, 2, 4005, 5.99, '2007-04-06 22:50:52.996577'); -INSERT INTO dvds.payment VALUES (31146, 190, 1, 4140, 2.99, '2007-04-07 06:47:36.996577'); -INSERT INTO dvds.payment VALUES (31147, 190, 2, 6867, 3.99, '2007-04-12 18:35:13.996577'); -INSERT INTO dvds.payment VALUES (31148, 190, 1, 7175, 4.99, '2007-04-27 06:31:48.996577'); -INSERT INTO dvds.payment VALUES (31149, 190, 1, 7386, 5.99, '2007-04-27 14:20:36.996577'); -INSERT INTO dvds.payment VALUES (31150, 190, 2, 7404, 2.99, '2007-04-27 14:53:09.996577'); -INSERT INTO dvds.payment VALUES (31151, 190, 1, 8498, 0.99, '2007-04-29 07:36:04.996577'); -INSERT INTO dvds.payment VALUES (31152, 191, 1, 5338, 2.99, '2007-04-09 15:35:33.996577'); -INSERT INTO dvds.payment VALUES (31153, 191, 2, 5397, 5.99, '2007-04-09 18:12:17.996577'); -INSERT INTO dvds.payment VALUES (31154, 191, 1, 5924, 5.99, '2007-04-10 20:09:49.996577'); -INSERT INTO dvds.payment VALUES (31155, 191, 1, 7150, 6.99, '2007-04-27 05:39:40.996577'); -INSERT INTO dvds.payment VALUES (31156, 191, 1, 7450, 3.99, '2007-04-27 16:47:01.996577'); -INSERT INTO dvds.payment VALUES (31157, 191, 1, 7520, 2.99, '2007-04-27 19:30:28.996577'); -INSERT INTO dvds.payment VALUES (31158, 191, 2, 8583, 0.99, '2007-04-29 10:33:16.996577'); -INSERT INTO dvds.payment VALUES (31159, 191, 1, 9297, 4.99, '2007-04-30 14:54:55.996577'); -INSERT INTO dvds.payment VALUES (31160, 191, 1, 9964, 4.99, '2007-04-30 14:46:05.996577'); -INSERT INTO dvds.payment VALUES (31161, 192, 1, 3902, 2.99, '2007-04-06 17:53:44.996577'); -INSERT INTO dvds.payment VALUES (31162, 192, 1, 4469, 4.99, '2007-04-07 22:46:58.996577'); -INSERT INTO dvds.payment VALUES (31163, 192, 1, 5400, 2.99, '2007-04-09 18:25:06.996577'); -INSERT INTO dvds.payment VALUES (31164, 192, 2, 6223, 0.99, '2007-04-11 11:55:35.996577'); -INSERT INTO dvds.payment VALUES (31165, 192, 2, 6691, 0.99, '2007-04-12 10:55:04.996577'); -INSERT INTO dvds.payment VALUES (31166, 192, 2, 7147, 2.99, '2007-04-27 05:31:00.996577'); -INSERT INTO dvds.payment VALUES (31167, 192, 2, 8051, 0.99, '2007-04-28 15:24:42.996577'); -INSERT INTO dvds.payment VALUES (31168, 192, 2, 8292, 7.99, '2007-04-29 00:58:02.996577'); -INSERT INTO dvds.payment VALUES (31169, 192, 1, 9462, 7.99, '2007-04-30 20:59:10.996577'); -INSERT INTO dvds.payment VALUES (31170, 192, 1, 9831, 2.99, '2007-04-30 10:27:58.996577'); -INSERT INTO dvds.payment VALUES (31171, 193, 1, 4892, 6.99, '2007-04-08 18:34:51.996577'); -INSERT INTO dvds.payment VALUES (31172, 193, 1, 8211, 2.99, '2007-04-28 22:02:48.996577'); -INSERT INTO dvds.payment VALUES (31173, 193, 1, 8379, 4.99, '2007-04-29 03:58:06.996577'); -INSERT INTO dvds.payment VALUES (31174, 193, 1, 8431, 4.99, '2007-04-29 05:41:14.996577'); -INSERT INTO dvds.payment VALUES (31175, 193, 1, 9079, 2.99, '2007-04-30 06:30:26.996577'); -INSERT INTO dvds.payment VALUES (31176, 193, 1, 9575, 4.99, '2007-04-30 01:20:19.996577'); -INSERT INTO dvds.payment VALUES (31177, 194, 2, 4231, 7.99, '2007-04-07 11:16:45.996577'); -INSERT INTO dvds.payment VALUES (31178, 194, 2, 5146, 2.99, '2007-04-09 06:43:24.996577'); -INSERT INTO dvds.payment VALUES (31179, 194, 1, 5291, 2.99, '2007-04-09 13:43:28.996577'); -INSERT INTO dvds.payment VALUES (31180, 194, 2, 5894, 3.99, '2007-04-10 18:38:00.996577'); -INSERT INTO dvds.payment VALUES (31181, 194, 1, 9064, 7.99, '2007-04-30 05:53:21.996577'); -INSERT INTO dvds.payment VALUES (31182, 195, 1, 4234, 6.99, '2007-04-07 11:30:01.996577'); -INSERT INTO dvds.payment VALUES (31183, 195, 1, 4315, 2.99, '2007-04-07 16:08:52.996577'); -INSERT INTO dvds.payment VALUES (31184, 195, 1, 5228, 4.99, '2007-04-09 10:54:27.996577'); -INSERT INTO dvds.payment VALUES (31185, 195, 1, 5536, 0.99, '2007-04-10 00:58:08.996577'); -INSERT INTO dvds.payment VALUES (31186, 195, 2, 6175, 4.99, '2007-04-11 09:13:03.996577'); -INSERT INTO dvds.payment VALUES (31187, 195, 1, 7349, 2.99, '2007-04-27 13:01:26.996577'); -INSERT INTO dvds.payment VALUES (31188, 195, 2, 8280, 4.99, '2007-04-29 00:14:17.996577'); -INSERT INTO dvds.payment VALUES (31189, 195, 2, 8479, 0.99, '2007-04-29 07:10:30.996577'); -INSERT INTO dvds.payment VALUES (31190, 195, 2, 9188, 6.99, '2007-04-30 10:48:20.996577'); -INSERT INTO dvds.payment VALUES (31191, 195, 1, 9870, 5.99, '2007-04-30 11:51:17.996577'); -INSERT INTO dvds.payment VALUES (31192, 195, 1, 9994, 4.99, '2007-04-30 15:58:57.996577'); -INSERT INTO dvds.payment VALUES (31193, 196, 1, 4879, 2.99, '2007-04-08 18:03:21.996577'); -INSERT INTO dvds.payment VALUES (31194, 196, 2, 4999, 4.99, '2007-04-08 23:41:23.996577'); -INSERT INTO dvds.payment VALUES (31195, 196, 2, 5143, 4.99, '2007-04-09 06:35:33.996577'); -INSERT INTO dvds.payment VALUES (31196, 196, 2, 5353, 3.99, '2007-04-09 16:32:55.996577'); -INSERT INTO dvds.payment VALUES (31197, 196, 2, 5768, 4.99, '2007-04-10 11:43:52.996577'); -INSERT INTO dvds.payment VALUES (31198, 196, 2, 6857, 4.99, '2007-04-12 18:21:56.996577'); -INSERT INTO dvds.payment VALUES (31199, 196, 2, 7666, 3.99, '2007-04-28 01:03:38.996577'); -INSERT INTO dvds.payment VALUES (31200, 196, 2, 8266, 0.99, '2007-04-28 23:48:42.996577'); -INSERT INTO dvds.payment VALUES (31201, 196, 2, 8472, 1.99, '2007-04-29 07:04:48.996577'); -INSERT INTO dvds.payment VALUES (31202, 196, 2, 8700, 0.99, '2007-04-29 15:24:27.996577'); -INSERT INTO dvds.payment VALUES (31203, 196, 1, 9346, 5.99, '2007-04-30 16:42:18.996577'); -INSERT INTO dvds.payment VALUES (31204, 196, 1, 9721, 6.99, '2007-04-30 06:57:12.996577'); -INSERT INTO dvds.payment VALUES (31205, 196, 1, 9804, 4.99, '2007-04-30 09:36:05.996577'); -INSERT INTO dvds.payment VALUES (31206, 196, 2, 10122, 10.99, '2007-04-30 19:57:54.996577'); -INSERT INTO dvds.payment VALUES (31207, 196, 1, 10191, 4.99, '2007-04-30 22:57:04.996577'); -INSERT INTO dvds.payment VALUES (31208, 197, 1, 4486, 8.99, '2007-04-07 23:37:35.996577'); -INSERT INTO dvds.payment VALUES (31209, 197, 2, 4739, 4.99, '2007-04-08 11:54:23.996577'); -INSERT INTO dvds.payment VALUES (31210, 197, 2, 5182, 6.99, '2007-04-09 08:36:36.996577'); -INSERT INTO dvds.payment VALUES (31211, 197, 2, 5344, 0.99, '2007-04-09 15:55:31.996577'); -INSERT INTO dvds.payment VALUES (31212, 197, 1, 8165, 2.99, '2007-04-28 19:51:32.996577'); -INSERT INTO dvds.payment VALUES (31213, 197, 2, 9378, 4.99, '2007-04-30 17:41:20.996577'); -INSERT INTO dvds.payment VALUES (31214, 197, 1, 9476, 0.99, '2007-04-30 21:35:06.996577'); -INSERT INTO dvds.payment VALUES (31215, 197, 2, 9585, 4.99, '2007-04-30 01:34:21.996577'); -INSERT INTO dvds.payment VALUES (31216, 198, 2, 3770, 2.99, '2007-04-06 11:42:54.996577'); -INSERT INTO dvds.payment VALUES (31217, 198, 2, 4588, 2.99, '2007-04-08 04:46:27.996577'); -INSERT INTO dvds.payment VALUES (31218, 198, 2, 4750, 0.99, '2007-04-08 12:35:29.996577'); -INSERT INTO dvds.payment VALUES (31219, 198, 2, 5794, 4.99, '2007-04-10 13:03:19.996577'); -INSERT INTO dvds.payment VALUES (31220, 198, 2, 6567, 4.99, '2007-04-12 04:11:35.996577'); -INSERT INTO dvds.payment VALUES (31221, 198, 1, 6819, 4.99, '2007-04-12 16:49:27.996577'); -INSERT INTO dvds.payment VALUES (31222, 198, 2, 6889, 4.99, '2007-04-12 19:29:48.996577'); -INSERT INTO dvds.payment VALUES (31223, 198, 1, 7287, 0.99, '2007-04-27 10:52:38.996577'); -INSERT INTO dvds.payment VALUES (31224, 198, 1, 7441, 5.99, '2007-04-27 16:15:19.996577'); -INSERT INTO dvds.payment VALUES (31225, 198, 1, 7583, 2.99, '2007-04-27 21:43:48.996577'); -INSERT INTO dvds.payment VALUES (31226, 198, 2, 7622, 0.99, '2007-04-27 23:06:00.996577'); -INSERT INTO dvds.payment VALUES (31227, 198, 1, 8145, 5.99, '2007-04-28 19:03:07.996577'); -INSERT INTO dvds.payment VALUES (31228, 198, 2, 9389, 0.99, '2007-04-30 17:56:25.996577'); -INSERT INTO dvds.payment VALUES (31229, 198, 1, 10112, 4.99, '2007-04-30 19:37:22.996577'); -INSERT INTO dvds.payment VALUES (31230, 198, 1, 10147, 2.99, '2007-04-30 20:47:09.996577'); -INSERT INTO dvds.payment VALUES (31231, 199, 1, 4499, 2.99, '2007-04-08 00:37:14.996577'); -INSERT INTO dvds.payment VALUES (31232, 199, 2, 4580, 8.99, '2007-04-08 04:32:49.996577'); -INSERT INTO dvds.payment VALUES (31233, 199, 1, 4976, 4.99, '2007-04-08 22:31:56.996577'); -INSERT INTO dvds.payment VALUES (31234, 199, 2, 5398, 2.99, '2007-04-09 18:13:24.996577'); -INSERT INTO dvds.payment VALUES (31235, 199, 2, 5680, 5.99, '2007-04-10 07:16:02.996577'); -INSERT INTO dvds.payment VALUES (31236, 199, 2, 6668, 2.99, '2007-04-12 10:06:11.996577'); -INSERT INTO dvds.payment VALUES (31237, 199, 2, 6782, 4.99, '2007-04-12 14:51:51.996577'); -INSERT INTO dvds.payment VALUES (31238, 199, 1, 7782, 4.99, '2007-04-28 05:42:06.996577'); -INSERT INTO dvds.payment VALUES (31239, 199, 1, 8709, 0.99, '2007-04-29 15:54:20.996577'); -INSERT INTO dvds.payment VALUES (31240, 199, 1, 9752, 2.99, '2007-04-30 07:50:28.996577'); -INSERT INTO dvds.payment VALUES (31241, 199, 2, 9894, 4.99, '2007-04-30 12:36:10.996577'); -INSERT INTO dvds.payment VALUES (31242, 199, 1, 9959, 4.99, '2007-04-30 14:32:48.996577'); -INSERT INTO dvds.payment VALUES (31243, 199, 1, 10196, 2.99, '2007-04-30 23:03:17.996577'); -INSERT INTO dvds.payment VALUES (31244, 200, 1, 3580, 4.99, '2007-04-06 02:17:10.996577'); -INSERT INTO dvds.payment VALUES (31245, 200, 1, 5110, 2.99, '2007-04-09 05:25:51.996577'); -INSERT INTO dvds.payment VALUES (31246, 200, 1, 6123, 0.99, '2007-04-11 06:30:53.996577'); -INSERT INTO dvds.payment VALUES (31247, 200, 2, 6167, 2.99, '2007-04-11 08:49:47.996577'); -INSERT INTO dvds.payment VALUES (31248, 200, 1, 6181, 4.99, '2007-04-11 09:38:37.996577'); -INSERT INTO dvds.payment VALUES (31249, 200, 1, 6947, 3.99, '2007-04-26 22:10:29.996577'); -INSERT INTO dvds.payment VALUES (31250, 200, 1, 7574, 2.99, '2007-04-27 21:21:26.996577'); -INSERT INTO dvds.payment VALUES (31251, 200, 2, 8368, 3.99, '2007-04-29 03:44:07.996577'); -INSERT INTO dvds.payment VALUES (31252, 200, 2, 8462, 2.99, '2007-04-29 06:44:08.996577'); -INSERT INTO dvds.payment VALUES (31253, 200, 1, 9527, 6.99, '2007-04-30 23:30:50.996577'); -INSERT INTO dvds.payment VALUES (31254, 201, 2, 3528, 4.99, '2007-04-05 23:41:53.996577'); -INSERT INTO dvds.payment VALUES (31255, 201, 2, 3708, 6.99, '2007-04-06 08:51:53.996577'); -INSERT INTO dvds.payment VALUES (31256, 201, 1, 7106, 0.99, '2007-04-27 03:49:50.996577'); -INSERT INTO dvds.payment VALUES (31257, 201, 2, 7606, 2.99, '2007-04-27 22:30:41.996577'); -INSERT INTO dvds.payment VALUES (31258, 201, 2, 9355, 0.99, '2007-04-30 17:03:51.996577'); -INSERT INTO dvds.payment VALUES (31259, 209, 2, 3504, 2.99, '2007-04-05 22:46:55.996577'); -INSERT INTO dvds.payment VALUES (31260, 209, 2, 4071, 5.99, '2007-04-07 03:05:52.996577'); -INSERT INTO dvds.payment VALUES (31261, 209, 1, 4309, 5.99, '2007-04-07 15:58:07.996577'); -INSERT INTO dvds.payment VALUES (31262, 209, 2, 4810, 4.99, '2007-04-08 15:32:32.996577'); -INSERT INTO dvds.payment VALUES (31263, 209, 1, 4907, 4.99, '2007-04-08 19:30:07.996577'); -INSERT INTO dvds.payment VALUES (31264, 209, 2, 5170, 3.99, '2007-04-09 07:52:45.996577'); -INSERT INTO dvds.payment VALUES (31265, 209, 2, 5219, 5.99, '2007-04-09 10:26:21.996577'); -INSERT INTO dvds.payment VALUES (31266, 209, 1, 6210, 0.99, '2007-04-11 11:05:09.996577'); -INSERT INTO dvds.payment VALUES (31267, 209, 1, 7116, 6.99, '2007-04-27 04:15:09.996577'); -INSERT INTO dvds.payment VALUES (31268, 209, 1, 7269, 3.99, '2007-04-27 09:52:13.996577'); -INSERT INTO dvds.payment VALUES (31269, 209, 1, 7505, 4.99, '2007-04-27 18:56:29.996577'); -INSERT INTO dvds.payment VALUES (31270, 209, 2, 7752, 5.99, '2007-04-28 04:29:26.996577'); -INSERT INTO dvds.payment VALUES (31271, 209, 1, 8067, 4.99, '2007-04-28 15:48:43.996577'); -INSERT INTO dvds.payment VALUES (31272, 209, 2, 8759, 8.99, '2007-04-29 17:51:03.996577'); -INSERT INTO dvds.payment VALUES (31273, 209, 2, 8816, 2.99, '2007-04-29 20:21:26.996577'); -INSERT INTO dvds.payment VALUES (31274, 209, 2, 9054, 6.99, '2007-04-30 05:40:10.996577'); -INSERT INTO dvds.payment VALUES (31275, 209, 1, 9923, 0.99, '2007-04-30 13:28:41.996577'); -INSERT INTO dvds.payment VALUES (31276, 210, 2, 3563, 4.99, '2007-04-06 01:25:27.996577'); -INSERT INTO dvds.payment VALUES (31277, 210, 2, 3884, 4.99, '2007-04-06 17:09:59.996577'); -INSERT INTO dvds.payment VALUES (31278, 210, 2, 4270, 0.99, '2007-04-07 13:07:07.996577'); -INSERT INTO dvds.payment VALUES (31279, 210, 1, 4306, 2.99, '2007-04-07 15:40:58.996577'); -INSERT INTO dvds.payment VALUES (31280, 210, 1, 4334, 0.99, '2007-04-07 17:00:30.996577'); -INSERT INTO dvds.payment VALUES (31281, 210, 2, 4388, 7.99, '2007-04-07 19:26:29.996577'); -INSERT INTO dvds.payment VALUES (31282, 210, 1, 4620, 5.99, '2007-04-08 06:30:10.996577'); -INSERT INTO dvds.payment VALUES (31283, 210, 1, 4871, 6.99, '2007-04-08 17:48:18.996577'); -INSERT INTO dvds.payment VALUES (31284, 210, 1, 4893, 4.99, '2007-04-08 18:48:21.996577'); -INSERT INTO dvds.payment VALUES (31285, 210, 1, 4989, 3.99, '2007-04-08 23:15:22.996577'); -INSERT INTO dvds.payment VALUES (31286, 210, 2, 5957, 0.99, '2007-04-10 21:52:28.996577'); -INSERT INTO dvds.payment VALUES (31287, 210, 2, 6227, 4.99, '2007-04-11 12:25:12.996577'); -INSERT INTO dvds.payment VALUES (31288, 210, 1, 6564, 1.99, '2007-04-12 04:03:10.996577'); -INSERT INTO dvds.payment VALUES (31289, 210, 1, 7743, 5.99, '2007-04-28 04:04:39.996577'); -INSERT INTO dvds.payment VALUES (31290, 210, 2, 7909, 0.99, '2007-04-28 10:06:34.996577'); -INSERT INTO dvds.payment VALUES (31291, 210, 2, 8336, 8.99, '2007-04-29 02:49:08.996577'); -INSERT INTO dvds.payment VALUES (31292, 210, 2, 8678, 3.99, '2007-04-29 14:32:26.996577'); -INSERT INTO dvds.payment VALUES (31293, 210, 2, 8738, 0.99, '2007-04-29 17:01:13.996577'); -INSERT INTO dvds.payment VALUES (31294, 211, 2, 3937, 8.99, '2007-04-06 19:44:04.996577'); -INSERT INTO dvds.payment VALUES (31295, 211, 2, 4060, 2.99, '2007-04-07 02:38:39.996577'); -INSERT INTO dvds.payment VALUES (31296, 211, 2, 4441, 5.99, '2007-04-07 21:32:49.996577'); -INSERT INTO dvds.payment VALUES (31297, 211, 2, 4479, 2.99, '2007-04-07 23:21:01.996577'); -INSERT INTO dvds.payment VALUES (31298, 211, 1, 4857, 2.99, '2007-04-08 17:20:33.996577'); -INSERT INTO dvds.payment VALUES (31299, 211, 1, 5668, 5.99, '2007-04-10 06:39:31.996577'); -INSERT INTO dvds.payment VALUES (31300, 211, 2, 5699, 3.99, '2007-04-10 08:16:30.996577'); -INSERT INTO dvds.payment VALUES (31301, 211, 2, 5785, 4.99, '2007-04-10 12:34:29.996577'); -INSERT INTO dvds.payment VALUES (31302, 211, 2, 6438, 0.99, '2007-04-11 22:51:27.996577'); -INSERT INTO dvds.payment VALUES (31303, 211, 1, 6628, 4.99, '2007-04-12 07:46:34.996577'); -INSERT INTO dvds.payment VALUES (31304, 211, 1, 6722, 1.99, '2007-04-12 12:12:29.996577'); -INSERT INTO dvds.payment VALUES (31305, 211, 2, 7484, 0.99, '2007-04-27 17:56:43.996577'); -INSERT INTO dvds.payment VALUES (31306, 211, 1, 7975, 2.99, '2007-04-28 12:41:13.996577'); -INSERT INTO dvds.payment VALUES (31307, 211, 2, 8961, 6.99, '2007-04-30 02:12:01.996577'); -INSERT INTO dvds.payment VALUES (31308, 211, 1, 9111, 3.99, '2007-04-30 07:34:10.996577'); -INSERT INTO dvds.payment VALUES (31309, 211, 1, 9953, 0.99, '2007-04-30 14:25:01.996577'); -INSERT INTO dvds.payment VALUES (31310, 212, 2, 4708, 10.99, '2007-04-08 10:27:45.996577'); -INSERT INTO dvds.payment VALUES (31311, 212, 2, 4798, 3.99, '2007-04-08 15:13:42.996577'); -INSERT INTO dvds.payment VALUES (31312, 212, 2, 4916, 6.99, '2007-04-08 20:00:43.996577'); -INSERT INTO dvds.payment VALUES (31313, 212, 1, 5115, 6.99, '2007-04-09 05:35:44.996577'); -INSERT INTO dvds.payment VALUES (31314, 212, 2, 7828, 2.99, '2007-04-28 07:09:12.996577'); -INSERT INTO dvds.payment VALUES (31315, 212, 2, 8000, 4.99, '2007-04-28 13:38:51.996577'); -INSERT INTO dvds.payment VALUES (31316, 212, 1, 8940, 3.99, '2007-04-30 01:25:52.996577'); -INSERT INTO dvds.payment VALUES (31317, 213, 2, 3989, 4.99, '2007-04-06 21:59:20.996577'); -INSERT INTO dvds.payment VALUES (31318, 213, 2, 4236, 4.99, '2007-04-07 11:40:33.996577'); -INSERT INTO dvds.payment VALUES (31319, 213, 1, 4655, 8.99, '2007-04-08 08:17:48.996577'); -INSERT INTO dvds.payment VALUES (31320, 213, 2, 5159, 4.99, '2007-04-09 07:24:18.996577'); -INSERT INTO dvds.payment VALUES (31321, 213, 1, 5431, 0.99, '2007-04-09 19:49:37.996577'); -INSERT INTO dvds.payment VALUES (31322, 213, 2, 6725, 2.99, '2007-04-12 12:15:43.996577'); -INSERT INTO dvds.payment VALUES (31323, 213, 2, 7528, 0.99, '2007-04-27 19:43:51.996577'); -INSERT INTO dvds.payment VALUES (31324, 213, 2, 8444, 2.99, '2007-04-29 06:04:39.996577'); -INSERT INTO dvds.payment VALUES (31325, 213, 2, 8542, 4.99, '2007-04-29 09:30:16.996577'); -INSERT INTO dvds.payment VALUES (31326, 213, 2, 9150, 6.99, '2007-04-30 09:17:58.996577'); -INSERT INTO dvds.payment VALUES (31327, 213, 2, 9340, 2.99, '2007-04-30 16:35:42.996577'); -INSERT INTO dvds.payment VALUES (31328, 213, 1, 9477, 4.99, '2007-04-30 21:35:48.996577'); -INSERT INTO dvds.payment VALUES (31329, 214, 2, 4211, 0.99, '2007-04-07 10:19:07.996577'); -INSERT INTO dvds.payment VALUES (31330, 214, 1, 4783, 3.99, '2007-04-08 14:37:50.996577'); -INSERT INTO dvds.payment VALUES (31331, 214, 2, 4984, 3.99, '2007-04-08 23:03:57.996577'); -INSERT INTO dvds.payment VALUES (31332, 214, 2, 5172, 2.99, '2007-04-09 07:59:53.996577'); -INSERT INTO dvds.payment VALUES (31333, 214, 1, 6602, 7.99, '2007-04-12 06:18:50.996577'); -INSERT INTO dvds.payment VALUES (31334, 214, 2, 7417, 4.99, '2007-04-27 15:26:59.996577'); -INSERT INTO dvds.payment VALUES (31335, 214, 2, 7826, 5.99, '2007-04-28 07:04:17.996577'); -INSERT INTO dvds.payment VALUES (31336, 214, 1, 8663, 4.99, '2007-04-29 14:01:44.996577'); -INSERT INTO dvds.payment VALUES (31337, 215, 2, 4940, 8.99, '2007-04-08 21:04:32.996577'); -INSERT INTO dvds.payment VALUES (31338, 215, 1, 5886, 2.99, '2007-04-10 18:04:51.996577'); -INSERT INTO dvds.payment VALUES (31339, 215, 2, 5967, 8.99, '2007-04-10 22:30:45.996577'); -INSERT INTO dvds.payment VALUES (31340, 215, 1, 7180, 1.99, '2007-04-27 06:43:00.996577'); -INSERT INTO dvds.payment VALUES (31341, 215, 2, 9046, 2.99, '2007-04-30 05:15:21.996577'); -INSERT INTO dvds.payment VALUES (31342, 215, 1, 9518, 0.99, '2007-04-30 23:11:52.996577'); -INSERT INTO dvds.payment VALUES (31343, 215, 2, 9611, 4.99, '2007-04-30 02:23:09.996577'); -INSERT INTO dvds.payment VALUES (31344, 216, 2, 4161, 2.99, '2007-04-07 07:43:37.996577'); -INSERT INTO dvds.payment VALUES (31345, 216, 1, 6008, 6.99, '2007-04-11 00:19:55.996577'); -INSERT INTO dvds.payment VALUES (31346, 216, 2, 6349, 7.99, '2007-04-11 18:53:31.996577'); -INSERT INTO dvds.payment VALUES (31347, 216, 1, 8068, 4.99, '2007-04-28 15:50:54.996577'); -INSERT INTO dvds.payment VALUES (31348, 216, 2, 8859, 8.99, '2007-04-29 22:13:09.996577'); -INSERT INTO dvds.payment VALUES (31349, 216, 1, 9096, 0.99, '2007-04-30 07:07:49.996577'); -INSERT INTO dvds.payment VALUES (31350, 217, 2, 5576, 2.99, '2007-04-10 02:25:31.996577'); -INSERT INTO dvds.payment VALUES (31351, 217, 2, 5762, 3.99, '2007-04-10 11:16:27.996577'); -INSERT INTO dvds.payment VALUES (31352, 217, 2, 6570, 4.99, '2007-04-12 04:18:57.996577'); -INSERT INTO dvds.payment VALUES (31353, 217, 2, 7104, 2.99, '2007-04-27 03:43:51.996577'); -INSERT INTO dvds.payment VALUES (31354, 217, 2, 8332, 4.99, '2007-04-29 02:44:26.996577'); -INSERT INTO dvds.payment VALUES (31355, 217, 1, 9159, 0.99, '2007-04-30 09:45:03.996577'); -INSERT INTO dvds.payment VALUES (31356, 217, 2, 9317, 2.99, '2007-04-30 15:42:03.996577'); -INSERT INTO dvds.payment VALUES (31357, 217, 2, 9632, 6.99, '2007-04-30 03:30:49.996577'); -INSERT INTO dvds.payment VALUES (31358, 217, 2, 9745, 2.99, '2007-04-30 07:44:40.996577'); -INSERT INTO dvds.payment VALUES (31359, 218, 1, 4898, 6.99, '2007-04-08 19:00:09.996577'); -INSERT INTO dvds.payment VALUES (31360, 218, 1, 5226, 0.99, '2007-04-09 10:39:10.996577'); -INSERT INTO dvds.payment VALUES (31361, 218, 2, 5737, 0.99, '2007-04-10 10:18:30.996577'); -INSERT INTO dvds.payment VALUES (31362, 218, 2, 7090, 4.99, '2007-04-27 03:12:19.996577'); -INSERT INTO dvds.payment VALUES (31363, 218, 1, 7236, 8.99, '2007-04-27 08:38:05.996577'); -INSERT INTO dvds.payment VALUES (31364, 218, 2, 9018, 6.99, '2007-04-30 03:57:06.996577'); -INSERT INTO dvds.payment VALUES (31365, 218, 2, 9902, 6.99, '2007-04-30 12:52:59.996577'); -INSERT INTO dvds.payment VALUES (31366, 218, 1, 10114, 0.99, '2007-04-30 19:41:24.996577'); -INSERT INTO dvds.payment VALUES (31367, 219, 2, 4678, 0.99, '2007-04-08 08:59:06.996577'); -INSERT INTO dvds.payment VALUES (31368, 219, 2, 4910, 7.99, '2007-04-08 19:42:22.996577'); -INSERT INTO dvds.payment VALUES (31369, 219, 2, 5123, 0.99, '2007-04-09 05:48:56.996577'); -INSERT INTO dvds.payment VALUES (31370, 219, 2, 5416, 4.99, '2007-04-09 19:02:16.996577'); -INSERT INTO dvds.payment VALUES (31371, 219, 2, 5475, 4.99, '2007-04-09 22:00:04.996577'); -INSERT INTO dvds.payment VALUES (31372, 219, 2, 5739, 7.99, '2007-04-10 10:20:16.996577'); -INSERT INTO dvds.payment VALUES (31373, 219, 2, 6172, 4.99, '2007-04-11 09:00:35.996577'); -INSERT INTO dvds.payment VALUES (31374, 219, 1, 6209, 2.99, '2007-04-11 11:04:31.996577'); -INSERT INTO dvds.payment VALUES (31375, 219, 2, 6501, 1.99, '2007-04-12 01:40:21.996577'); -INSERT INTO dvds.payment VALUES (31376, 219, 2, 7335, 2.99, '2007-04-27 12:35:16.996577'); -INSERT INTO dvds.payment VALUES (31377, 219, 1, 7726, 5.99, '2007-04-28 03:20:45.996577'); -INSERT INTO dvds.payment VALUES (31378, 219, 1, 8430, 0.99, '2007-04-29 05:40:43.996577'); -INSERT INTO dvds.payment VALUES (31379, 219, 2, 8536, 4.99, '2007-04-29 09:05:49.996577'); -INSERT INTO dvds.payment VALUES (31380, 219, 1, 8652, 6.99, '2007-04-29 13:31:20.996577'); -INSERT INTO dvds.payment VALUES (31381, 219, 1, 9712, 4.99, '2007-04-30 06:41:37.996577'); -INSERT INTO dvds.payment VALUES (31382, 220, 2, 4918, 2.99, '2007-04-08 20:05:57.996577'); -INSERT INTO dvds.payment VALUES (31383, 220, 2, 5613, 2.99, '2007-04-10 03:44:09.996577'); -INSERT INTO dvds.payment VALUES (31384, 220, 2, 5847, 2.99, '2007-04-10 15:56:08.996577'); -INSERT INTO dvds.payment VALUES (31385, 220, 2, 5859, 0.99, '2007-04-10 16:30:28.996577'); -INSERT INTO dvds.payment VALUES (31386, 220, 2, 6412, 0.99, '2007-04-11 21:47:47.996577'); -INSERT INTO dvds.payment VALUES (31387, 220, 2, 6832, 8.99, '2007-04-12 17:20:07.996577'); -INSERT INTO dvds.payment VALUES (31388, 220, 2, 7750, 9.99, '2007-04-28 04:23:56.996577'); -INSERT INTO dvds.payment VALUES (31389, 220, 1, 8065, 2.99, '2007-04-28 15:44:14.996577'); -INSERT INTO dvds.payment VALUES (31390, 220, 1, 8398, 4.99, '2007-04-29 04:41:06.996577'); -INSERT INTO dvds.payment VALUES (31391, 220, 2, 9384, 7.99, '2007-04-30 17:54:01.996577'); -INSERT INTO dvds.payment VALUES (31392, 220, 2, 9455, 10.99, '2007-04-30 20:48:55.996577'); -INSERT INTO dvds.payment VALUES (31393, 220, 1, 10099, 2.99, '2007-04-30 19:15:40.996577'); -INSERT INTO dvds.payment VALUES (31394, 221, 1, 4293, 4.99, '2007-04-07 14:22:13.996577'); -INSERT INTO dvds.payment VALUES (31395, 221, 2, 4649, 4.99, '2007-04-08 08:00:31.996577'); -INSERT INTO dvds.payment VALUES (31396, 221, 1, 4693, 6.99, '2007-04-08 09:36:02.996577'); -INSERT INTO dvds.payment VALUES (31397, 221, 1, 5058, 5.99, '2007-04-09 02:49:01.996577'); -INSERT INTO dvds.payment VALUES (31398, 221, 2, 5920, 5.99, '2007-04-10 20:02:24.996577'); -INSERT INTO dvds.payment VALUES (31399, 221, 1, 7101, 2.99, '2007-04-27 03:35:00.996577'); -INSERT INTO dvds.payment VALUES (31400, 221, 1, 7129, 0.99, '2007-04-27 04:46:27.996577'); -INSERT INTO dvds.payment VALUES (31401, 221, 2, 7531, 8.99, '2007-04-27 19:48:00.996577'); -INSERT INTO dvds.payment VALUES (31402, 221, 2, 8486, 0.99, '2007-04-29 07:22:04.996577'); -INSERT INTO dvds.payment VALUES (31403, 221, 1, 9320, 6.99, '2007-04-30 15:45:05.996577'); -INSERT INTO dvds.payment VALUES (31404, 221, 1, 9453, 7.99, '2007-04-30 20:48:30.996577'); -INSERT INTO dvds.payment VALUES (31405, 221, 2, 9853, 0.99, '2007-04-30 11:26:46.996577'); -INSERT INTO dvds.payment VALUES (31406, 222, 2, 5209, 8.99, '2007-04-09 09:51:05.996577'); -INSERT INTO dvds.payment VALUES (31407, 222, 1, 5266, 3.99, '2007-04-09 12:46:06.996577'); -INSERT INTO dvds.payment VALUES (31408, 222, 2, 5592, 6.99, '2007-04-10 02:54:39.996577'); -INSERT INTO dvds.payment VALUES (31409, 222, 2, 5635, 5.99, '2007-04-10 04:57:05.996577'); -INSERT INTO dvds.payment VALUES (31410, 222, 2, 6129, 2.99, '2007-04-11 06:43:35.996577'); -INSERT INTO dvds.payment VALUES (31411, 222, 1, 6497, 0.99, '2007-04-12 01:32:55.996577'); -INSERT INTO dvds.payment VALUES (31412, 222, 2, 7786, 0.99, '2007-04-28 05:46:52.996577'); -INSERT INTO dvds.payment VALUES (31413, 222, 1, 8300, 1.99, '2007-04-29 01:26:25.996577'); -INSERT INTO dvds.payment VALUES (31414, 222, 2, 8597, 6.99, '2007-04-29 11:24:21.996577'); -INSERT INTO dvds.payment VALUES (31415, 222, 1, 8787, 4.99, '2007-04-29 19:12:15.996577'); -INSERT INTO dvds.payment VALUES (31416, 222, 2, 10043, 1.99, '2007-04-30 17:30:33.996577'); -INSERT INTO dvds.payment VALUES (31417, 223, 1, 3513, 5.99, '2007-04-05 23:14:23.996577'); -INSERT INTO dvds.payment VALUES (31418, 223, 1, 3705, 0.99, '2007-04-06 08:46:25.996577'); -INSERT INTO dvds.payment VALUES (31419, 223, 1, 4874, 4.99, '2007-04-08 17:52:04.996577'); -INSERT INTO dvds.payment VALUES (31420, 223, 2, 5996, 2.99, '2007-04-10 23:46:59.996577'); -INSERT INTO dvds.payment VALUES (31421, 223, 2, 7085, 5.99, '2007-04-27 03:04:10.996577'); -INSERT INTO dvds.payment VALUES (31422, 223, 2, 8362, 3.99, '2007-04-29 03:37:37.996577'); -INSERT INTO dvds.payment VALUES (31423, 223, 2, 10053, 7.99, '2007-04-30 17:44:05.996577'); -INSERT INTO dvds.payment VALUES (31424, 224, 1, 4118, 2.99, '2007-04-07 05:31:56.996577'); -INSERT INTO dvds.payment VALUES (31425, 224, 2, 4411, 3.99, '2007-04-07 20:23:24.996577'); -INSERT INTO dvds.payment VALUES (31426, 224, 1, 4697, 2.99, '2007-04-08 09:47:40.996577'); -INSERT INTO dvds.payment VALUES (31427, 224, 1, 6031, 4.99, '2007-04-11 01:10:40.996577'); -INSERT INTO dvds.payment VALUES (31428, 224, 2, 6999, 2.99, '2007-04-26 23:49:45.996577'); -INSERT INTO dvds.payment VALUES (31429, 224, 2, 8255, 0.99, '2007-04-28 23:30:56.996577'); -INSERT INTO dvds.payment VALUES (31430, 224, 2, 8439, 2.99, '2007-04-29 05:57:09.996577'); -INSERT INTO dvds.payment VALUES (31431, 224, 1, 8605, 4.99, '2007-04-29 11:42:00.996577'); -INSERT INTO dvds.payment VALUES (31432, 224, 1, 9181, 0.99, '2007-04-30 10:34:24.996577'); -INSERT INTO dvds.payment VALUES (31433, 225, 2, 3574, 4.99, '2007-04-06 02:04:27.996577'); -INSERT INTO dvds.payment VALUES (31434, 225, 1, 4345, 7.99, '2007-04-07 17:21:23.996577'); -INSERT INTO dvds.payment VALUES (31435, 225, 1, 4824, 7.99, '2007-04-08 16:06:05.996577'); -INSERT INTO dvds.payment VALUES (31436, 225, 2, 4955, 2.99, '2007-04-08 21:44:47.996577'); -INSERT INTO dvds.payment VALUES (31437, 225, 1, 5067, 4.99, '2007-04-09 03:21:01.996577'); -INSERT INTO dvds.payment VALUES (31438, 225, 1, 6159, 2.99, '2007-04-11 08:24:00.996577'); -INSERT INTO dvds.payment VALUES (31439, 225, 1, 6317, 2.99, '2007-04-11 17:16:07.996577'); -INSERT INTO dvds.payment VALUES (31440, 225, 2, 6350, 2.99, '2007-04-11 18:58:41.996577'); -INSERT INTO dvds.payment VALUES (31441, 225, 1, 6526, 3.99, '2007-04-12 02:49:46.996577'); -INSERT INTO dvds.payment VALUES (31442, 225, 2, 6532, 2.99, '2007-04-12 03:06:58.996577'); -INSERT INTO dvds.payment VALUES (31443, 225, 2, 7347, 4.99, '2007-04-27 12:59:50.996577'); -INSERT INTO dvds.payment VALUES (31444, 225, 1, 7524, 6.99, '2007-04-27 19:40:10.996577'); -INSERT INTO dvds.payment VALUES (31445, 225, 1, 8054, 7.99, '2007-04-28 15:30:44.996577'); -INSERT INTO dvds.payment VALUES (31446, 225, 2, 8110, 4.99, '2007-04-28 17:36:11.996577'); -INSERT INTO dvds.payment VALUES (31447, 225, 1, 9980, 4.99, '2007-04-30 15:30:26.996577'); -INSERT INTO dvds.payment VALUES (31448, 225, 2, 9993, 2.99, '2007-04-30 15:58:46.996577'); -INSERT INTO dvds.payment VALUES (31449, 225, 2, 10138, 2.99, '2007-04-30 20:30:35.996577'); -INSERT INTO dvds.payment VALUES (31450, 226, 1, 3721, 4.99, '2007-04-06 09:38:35.996577'); -INSERT INTO dvds.payment VALUES (31451, 226, 1, 4324, 4.99, '2007-04-07 16:26:22.996577'); -INSERT INTO dvds.payment VALUES (31452, 226, 1, 5282, 2.99, '2007-04-09 13:29:49.996577'); -INSERT INTO dvds.payment VALUES (31453, 226, 1, 5419, 2.99, '2007-04-09 19:16:02.996577'); -INSERT INTO dvds.payment VALUES (31454, 226, 1, 6712, 9.99, '2007-04-12 11:53:13.996577'); -INSERT INTO dvds.payment VALUES (31455, 226, 2, 7288, 5.99, '2007-04-27 10:53:25.996577'); -INSERT INTO dvds.payment VALUES (31456, 226, 1, 7329, 3.99, '2007-04-27 12:24:00.996577'); -INSERT INTO dvds.payment VALUES (31457, 226, 2, 8600, 2.99, '2007-04-29 11:29:45.996577'); -INSERT INTO dvds.payment VALUES (31458, 226, 1, 8627, 2.99, '2007-04-29 12:33:38.996577'); -INSERT INTO dvds.payment VALUES (31459, 227, 1, 3576, 5.99, '2007-04-06 02:08:27.996577'); -INSERT INTO dvds.payment VALUES (31460, 227, 2, 4340, 2.99, '2007-04-07 17:10:12.996577'); -INSERT INTO dvds.payment VALUES (31461, 227, 2, 4459, 4.99, '2007-04-07 22:17:18.996577'); -INSERT INTO dvds.payment VALUES (31462, 227, 1, 4680, 2.99, '2007-04-08 09:03:54.996577'); -INSERT INTO dvds.payment VALUES (31463, 227, 1, 5046, 3.99, '2007-04-09 02:03:23.996577'); -INSERT INTO dvds.payment VALUES (31464, 227, 1, 7132, 7.99, '2007-04-27 04:57:00.996577'); -INSERT INTO dvds.payment VALUES (31465, 227, 1, 8219, 2.99, '2007-04-28 22:14:57.996577'); -INSERT INTO dvds.payment VALUES (31466, 227, 1, 8234, 0.99, '2007-04-28 22:47:46.996577'); -INSERT INTO dvds.payment VALUES (31467, 227, 1, 8384, 0.99, '2007-04-29 04:07:09.996577'); -INSERT INTO dvds.payment VALUES (31468, 227, 2, 8417, 4.99, '2007-04-29 05:22:02.996577'); -INSERT INTO dvds.payment VALUES (31469, 227, 1, 8936, 2.99, '2007-04-30 01:15:39.996577'); -INSERT INTO dvds.payment VALUES (31470, 227, 2, 9521, 2.99, '2007-04-30 23:20:50.996577'); -INSERT INTO dvds.payment VALUES (31471, 228, 2, 3538, 0.99, '2007-04-06 00:05:33.996577'); -INSERT INTO dvds.payment VALUES (31472, 228, 2, 3710, 8.99, '2007-04-06 08:57:19.996577'); -INSERT INTO dvds.payment VALUES (31473, 228, 1, 3715, 6.99, '2007-04-06 09:20:14.996577'); -INSERT INTO dvds.payment VALUES (31474, 228, 2, 3796, 0.99, '2007-04-06 13:13:48.996577'); -INSERT INTO dvds.payment VALUES (31475, 228, 1, 4217, 3.99, '2007-04-07 10:37:25.996577'); -INSERT INTO dvds.payment VALUES (31476, 228, 1, 4636, 4.99, '2007-04-08 07:12:58.996577'); -INSERT INTO dvds.payment VALUES (31477, 228, 1, 4909, 0.99, '2007-04-08 19:35:50.996577'); -INSERT INTO dvds.payment VALUES (31478, 228, 1, 5151, 2.99, '2007-04-09 06:59:29.996577'); -INSERT INTO dvds.payment VALUES (31479, 228, 1, 5320, 4.99, '2007-04-09 14:51:58.996577'); -INSERT INTO dvds.payment VALUES (31480, 228, 2, 5902, 0.99, '2007-04-10 18:59:50.996577'); -INSERT INTO dvds.payment VALUES (31481, 228, 2, 6141, 1.99, '2007-04-11 07:20:42.996577'); -INSERT INTO dvds.payment VALUES (31482, 228, 1, 6948, 2.99, '2007-04-26 22:12:15.996577'); -INSERT INTO dvds.payment VALUES (31483, 228, 2, 7509, 8.99, '2007-04-27 19:05:45.996577'); -INSERT INTO dvds.payment VALUES (31484, 228, 1, 7601, 0.99, '2007-04-27 22:16:41.996577'); -INSERT INTO dvds.payment VALUES (31485, 228, 1, 8147, 2.99, '2007-04-28 19:06:22.996577'); -INSERT INTO dvds.payment VALUES (31486, 229, 2, 3933, 4.99, '2007-04-06 19:35:03.996577'); -INSERT INTO dvds.payment VALUES (31487, 229, 2, 4458, 2.99, '2007-04-07 22:16:13.996577'); -INSERT INTO dvds.payment VALUES (31488, 229, 1, 4515, 4.99, '2007-04-08 01:10:29.996577'); -INSERT INTO dvds.payment VALUES (31489, 229, 2, 4694, 0.99, '2007-04-08 09:36:03.996577'); -INSERT INTO dvds.payment VALUES (31490, 229, 1, 5623, 2.99, '2007-04-10 04:10:04.996577'); -INSERT INTO dvds.payment VALUES (31491, 229, 2, 6155, 4.99, '2007-04-11 08:13:57.996577'); -INSERT INTO dvds.payment VALUES (31492, 229, 2, 6578, 4.99, '2007-04-12 04:44:07.996577'); -INSERT INTO dvds.payment VALUES (31493, 229, 1, 6880, 2.99, '2007-04-12 19:10:01.996577'); -INSERT INTO dvds.payment VALUES (31494, 229, 2, 7305, 0.99, '2007-04-27 11:25:32.996577'); -INSERT INTO dvds.payment VALUES (31495, 229, 2, 7308, 5.99, '2007-04-27 11:28:51.996577'); -INSERT INTO dvds.payment VALUES (31496, 229, 2, 7629, 0.99, '2007-04-27 23:28:35.996577'); -INSERT INTO dvds.payment VALUES (31497, 229, 2, 7640, 7.99, '2007-04-27 23:43:15.996577'); -INSERT INTO dvds.payment VALUES (31498, 229, 2, 9913, 3.99, '2007-04-30 13:19:30.996577'); -INSERT INTO dvds.payment VALUES (31499, 230, 1, 4509, 3.99, '2007-04-08 01:01:04.996577'); -INSERT INTO dvds.payment VALUES (31500, 230, 1, 4935, 0.99, '2007-04-08 20:49:22.996577'); -INSERT INTO dvds.payment VALUES (31501, 230, 1, 5045, 4.99, '2007-04-09 02:01:58.996577'); -INSERT INTO dvds.payment VALUES (31502, 230, 1, 5061, 0.99, '2007-04-09 02:59:16.996577'); -INSERT INTO dvds.payment VALUES (31503, 230, 2, 5269, 2.99, '2007-04-09 12:51:31.996577'); -INSERT INTO dvds.payment VALUES (31504, 230, 2, 6126, 4.99, '2007-04-11 06:35:22.996577'); -INSERT INTO dvds.payment VALUES (31505, 230, 1, 6251, 2.99, '2007-04-11 13:34:46.996577'); -INSERT INTO dvds.payment VALUES (31506, 230, 2, 7333, 4.99, '2007-04-27 12:27:37.996577'); -INSERT INTO dvds.payment VALUES (31507, 230, 2, 7390, 4.99, '2007-04-27 14:27:45.996577'); -INSERT INTO dvds.payment VALUES (31508, 230, 2, 8032, 4.99, '2007-04-28 14:45:26.996577'); -INSERT INTO dvds.payment VALUES (31509, 230, 2, 8653, 0.99, '2007-04-29 13:32:49.996577'); -INSERT INTO dvds.payment VALUES (31510, 230, 1, 8815, 2.99, '2007-04-29 20:19:52.996577'); -INSERT INTO dvds.payment VALUES (31511, 230, 2, 9778, 3.99, '2007-04-30 08:30:30.996577'); -INSERT INTO dvds.payment VALUES (31512, 230, 2, 10050, 3.99, '2007-04-30 17:41:55.996577'); -INSERT INTO dvds.payment VALUES (31513, 230, 1, 10057, 9.99, '2007-04-30 17:48:44.996577'); -INSERT INTO dvds.payment VALUES (31514, 231, 2, 3561, 9.99, '2007-04-06 01:22:59.996577'); -INSERT INTO dvds.payment VALUES (31515, 231, 1, 3839, 2.99, '2007-04-06 14:58:56.996577'); -INSERT INTO dvds.payment VALUES (31516, 231, 2, 4289, 0.99, '2007-04-07 14:14:24.996577'); -INSERT INTO dvds.payment VALUES (31517, 231, 2, 4969, 0.99, '2007-04-08 22:19:52.996577'); -INSERT INTO dvds.payment VALUES (31518, 231, 1, 5096, 2.99, '2007-04-09 04:36:49.996577'); -INSERT INTO dvds.payment VALUES (31519, 231, 1, 5560, 5.99, '2007-04-10 01:41:50.996577'); -INSERT INTO dvds.payment VALUES (31520, 231, 1, 6862, 0.99, '2007-04-12 18:26:35.996577'); -INSERT INTO dvds.payment VALUES (31521, 231, 1, 6877, 1.99, '2007-04-12 19:01:24.996577'); -INSERT INTO dvds.payment VALUES (31522, 231, 1, 8556, 0.99, '2007-04-29 09:46:53.996577'); -INSERT INTO dvds.payment VALUES (31523, 231, 2, 8949, 5.99, '2007-04-30 01:45:28.996577'); -INSERT INTO dvds.payment VALUES (31524, 231, 2, 9711, 2.99, '2007-04-30 06:35:07.996577'); -INSERT INTO dvds.payment VALUES (31525, 232, 2, 6234, 5.99, '2007-04-11 12:44:36.996577'); -INSERT INTO dvds.payment VALUES (31526, 232, 1, 6309, 2.99, '2007-04-11 16:41:50.996577'); -INSERT INTO dvds.payment VALUES (31527, 232, 1, 7123, 5.99, '2007-04-27 04:37:14.996577'); -INSERT INTO dvds.payment VALUES (31528, 232, 2, 7653, 4.99, '2007-04-28 00:26:56.996577'); -INSERT INTO dvds.payment VALUES (31529, 232, 2, 7707, 0.99, '2007-04-28 02:36:13.996577'); -INSERT INTO dvds.payment VALUES (31530, 232, 1, 7749, 2.99, '2007-04-28 04:22:02.996577'); -INSERT INTO dvds.payment VALUES (31531, 232, 1, 7990, 2.99, '2007-04-28 13:11:34.996577'); -INSERT INTO dvds.payment VALUES (31532, 232, 1, 8306, 2.99, '2007-04-29 01:40:52.996577'); -INSERT INTO dvds.payment VALUES (31533, 232, 2, 8401, 4.99, '2007-04-29 04:53:34.996577'); -INSERT INTO dvds.payment VALUES (31534, 232, 2, 8655, 4.99, '2007-04-29 13:33:08.996577'); -INSERT INTO dvds.payment VALUES (31535, 232, 2, 9270, 0.99, '2007-04-30 13:31:42.996577'); -INSERT INTO dvds.payment VALUES (31536, 232, 2, 9330, 10.99, '2007-04-30 16:12:50.996577'); -INSERT INTO dvds.payment VALUES (31537, 232, 2, 9365, 2.99, '2007-04-30 17:14:28.996577'); -INSERT INTO dvds.payment VALUES (31538, 232, 2, 10157, 2.99, '2007-04-30 21:07:14.996577'); -INSERT INTO dvds.payment VALUES (31539, 233, 1, 3832, 2.99, '2007-04-06 14:40:49.996577'); -INSERT INTO dvds.payment VALUES (31540, 233, 1, 4015, 5.99, '2007-04-06 23:28:12.996577'); -INSERT INTO dvds.payment VALUES (31541, 233, 1, 4885, 4.99, '2007-04-08 18:19:43.996577'); -INSERT INTO dvds.payment VALUES (31542, 233, 2, 5267, 5.99, '2007-04-09 12:49:36.996577'); -INSERT INTO dvds.payment VALUES (31543, 233, 1, 5846, 2.99, '2007-04-10 15:53:50.996577'); -INSERT INTO dvds.payment VALUES (31544, 233, 1, 6319, 4.99, '2007-04-11 17:19:11.996577'); -INSERT INTO dvds.payment VALUES (31545, 233, 1, 6794, 2.99, '2007-04-12 15:06:49.996577'); -INSERT INTO dvds.payment VALUES (31546, 233, 1, 7056, 8.99, '2007-04-27 02:14:53.996577'); -INSERT INTO dvds.payment VALUES (31547, 233, 2, 7387, 4.99, '2007-04-27 14:22:45.996577'); -INSERT INTO dvds.payment VALUES (31548, 233, 2, 8385, 5.99, '2007-04-29 04:07:42.996577'); -INSERT INTO dvds.payment VALUES (31549, 233, 2, 8530, 2.99, '2007-04-29 08:54:40.996577'); -INSERT INTO dvds.payment VALUES (31550, 233, 2, 8596, 0.99, '2007-04-29 11:17:20.996577'); -INSERT INTO dvds.payment VALUES (31551, 233, 1, 9574, 0.99, '2007-04-30 01:17:46.996577'); -INSERT INTO dvds.payment VALUES (31552, 234, 2, 4686, 0.99, '2007-04-08 09:22:05.996577'); -INSERT INTO dvds.payment VALUES (31553, 234, 1, 4721, 7.99, '2007-04-08 11:07:57.996577'); -INSERT INTO dvds.payment VALUES (31554, 234, 2, 10133, 5.99, '2007-04-30 20:23:33.996577'); -INSERT INTO dvds.payment VALUES (31555, 235, 2, 3581, 2.99, '2007-04-06 02:26:01.996577'); -INSERT INTO dvds.payment VALUES (31556, 235, 1, 3752, 6.99, '2007-04-06 10:58:38.996577'); -INSERT INTO dvds.payment VALUES (31557, 235, 1, 3968, 4.99, '2007-04-06 21:15:35.996577'); -INSERT INTO dvds.payment VALUES (31558, 235, 2, 4592, 2.99, '2007-04-08 04:59:54.996577'); -INSERT INTO dvds.payment VALUES (31559, 235, 1, 5790, 4.99, '2007-04-10 12:43:47.996577'); -INSERT INTO dvds.payment VALUES (31560, 235, 1, 6047, 2.99, '2007-04-11 01:55:27.996577'); -INSERT INTO dvds.payment VALUES (31561, 235, 2, 6352, 4.99, '2007-04-11 19:02:39.996577'); -INSERT INTO dvds.payment VALUES (31562, 235, 2, 6466, 4.99, '2007-04-11 23:49:29.996577'); -INSERT INTO dvds.payment VALUES (31563, 235, 1, 8120, 0.99, '2007-04-28 17:52:50.996577'); -INSERT INTO dvds.payment VALUES (31564, 235, 2, 8446, 6.99, '2007-04-29 06:06:36.996577'); -INSERT INTO dvds.payment VALUES (31565, 235, 2, 8781, 0.99, '2007-04-29 18:48:42.996577'); -INSERT INTO dvds.payment VALUES (31566, 235, 1, 9019, 5.99, '2007-04-30 03:57:19.996577'); -INSERT INTO dvds.payment VALUES (31567, 235, 2, 9519, 6.99, '2007-04-30 23:14:23.996577'); -INSERT INTO dvds.payment VALUES (31568, 235, 1, 9587, 3.99, '2007-04-30 01:38:56.996577'); -INSERT INTO dvds.payment VALUES (31569, 235, 2, 10155, 0.99, '2007-04-30 21:00:09.996577'); -INSERT INTO dvds.payment VALUES (31570, 236, 1, 3645, 0.99, '2007-04-06 05:50:35.996577'); -INSERT INTO dvds.payment VALUES (31571, 236, 2, 3857, 4.99, '2007-04-06 15:36:20.996577'); -INSERT INTO dvds.payment VALUES (31572, 236, 2, 4749, 4.99, '2007-04-08 12:34:24.996577'); -INSERT INTO dvds.payment VALUES (31573, 236, 1, 4959, 0.99, '2007-04-08 21:50:49.996577'); -INSERT INTO dvds.payment VALUES (31574, 236, 1, 5404, 2.99, '2007-04-09 18:39:09.996577'); -INSERT INTO dvds.payment VALUES (31575, 236, 1, 5545, 3.99, '2007-04-10 01:18:55.996577'); -INSERT INTO dvds.payment VALUES (31576, 236, 2, 5938, 3.99, '2007-04-10 20:46:08.996577'); -INSERT INTO dvds.payment VALUES (31577, 236, 2, 6049, 0.99, '2007-04-11 02:00:58.996577'); -INSERT INTO dvds.payment VALUES (31578, 236, 2, 6281, 4.99, '2007-04-11 15:06:42.996577'); -INSERT INTO dvds.payment VALUES (31579, 236, 1, 6303, 2.99, '2007-04-11 16:24:09.996577'); -INSERT INTO dvds.payment VALUES (31580, 236, 2, 6996, 4.99, '2007-04-26 23:42:11.996577'); -INSERT INTO dvds.payment VALUES (31581, 236, 2, 7047, 4.99, '2007-04-27 01:59:37.996577'); -INSERT INTO dvds.payment VALUES (31582, 236, 2, 7253, 0.99, '2007-04-27 09:15:03.996577'); -INSERT INTO dvds.payment VALUES (31583, 236, 1, 7780, 5.99, '2007-04-28 05:40:21.996577'); -INSERT INTO dvds.payment VALUES (31584, 236, 1, 7792, 4.99, '2007-04-28 05:52:28.996577'); -INSERT INTO dvds.payment VALUES (31585, 236, 2, 7798, 2.99, '2007-04-28 06:10:25.996577'); -INSERT INTO dvds.payment VALUES (31586, 236, 1, 8657, 2.99, '2007-04-29 13:37:51.996577'); -INSERT INTO dvds.payment VALUES (31587, 236, 1, 9011, 5.99, '2007-04-30 03:44:55.996577'); -INSERT INTO dvds.payment VALUES (31588, 236, 1, 9934, 2.99, '2007-04-30 13:53:52.996577'); -INSERT INTO dvds.payment VALUES (31589, 236, 2, 10137, 4.99, '2007-04-30 20:30:07.996577'); -INSERT INTO dvds.payment VALUES (31590, 237, 1, 4844, 4.99, '2007-04-08 16:56:39.996577'); -INSERT INTO dvds.payment VALUES (31591, 237, 2, 6053, 4.99, '2007-04-11 02:20:25.996577'); -INSERT INTO dvds.payment VALUES (31592, 237, 1, 7193, 2.99, '2007-04-27 07:05:26.996577'); -INSERT INTO dvds.payment VALUES (31593, 237, 2, 7330, 3.99, '2007-04-27 12:25:12.996577'); -INSERT INTO dvds.payment VALUES (31594, 237, 1, 7812, 4.99, '2007-04-28 06:35:18.996577'); -INSERT INTO dvds.payment VALUES (31595, 237, 2, 7951, 8.99, '2007-04-28 11:49:42.996577'); -INSERT INTO dvds.payment VALUES (31596, 237, 2, 8102, 2.99, '2007-04-28 17:18:09.996577'); -INSERT INTO dvds.payment VALUES (31597, 237, 2, 8748, 2.99, '2007-04-29 17:37:03.996577'); -INSERT INTO dvds.payment VALUES (31598, 237, 2, 8799, 6.99, '2007-04-29 19:45:13.996577'); -INSERT INTO dvds.payment VALUES (31599, 237, 1, 8835, 3.99, '2007-04-29 21:13:01.996577'); -INSERT INTO dvds.payment VALUES (31600, 237, 1, 9276, 5.99, '2007-04-30 13:37:54.996577'); -INSERT INTO dvds.payment VALUES (31601, 237, 1, 9661, 4.99, '2007-04-30 04:35:03.996577'); -INSERT INTO dvds.payment VALUES (31602, 237, 2, 9715, 1.99, '2007-04-30 06:45:24.996577'); -INSERT INTO dvds.payment VALUES (31603, 237, 2, 10056, 0.99, '2007-04-30 17:47:39.996577'); -INSERT INTO dvds.payment VALUES (31604, 237, 2, 10058, 2.99, '2007-04-30 17:48:47.996577'); -INSERT INTO dvds.payment VALUES (31605, 238, 1, 4143, 0.99, '2007-04-07 06:50:33.996577'); -INSERT INTO dvds.payment VALUES (31606, 238, 1, 5616, 5.99, '2007-04-10 03:49:37.996577'); -INSERT INTO dvds.payment VALUES (31607, 238, 2, 6403, 0.99, '2007-04-11 21:14:51.996577'); -INSERT INTO dvds.payment VALUES (31608, 238, 2, 7243, 4.99, '2007-04-27 08:54:37.996577'); -INSERT INTO dvds.payment VALUES (31609, 238, 1, 8310, 8.99, '2007-04-29 01:54:22.996577'); -INSERT INTO dvds.payment VALUES (31610, 238, 1, 8382, 6.99, '2007-04-29 04:01:47.996577'); -INSERT INTO dvds.payment VALUES (31611, 238, 1, 8465, 0.99, '2007-04-29 06:49:15.996577'); -INSERT INTO dvds.payment VALUES (31612, 238, 1, 9065, 4.99, '2007-04-30 05:53:35.996577'); -INSERT INTO dvds.payment VALUES (31613, 238, 2, 9841, 7.99, '2007-04-30 10:52:45.996577'); -INSERT INTO dvds.payment VALUES (31614, 239, 2, 3547, 0.99, '2007-04-06 00:46:32.996577'); -INSERT INTO dvds.payment VALUES (31615, 239, 1, 3552, 5.99, '2007-04-06 01:02:35.996577'); -INSERT INTO dvds.payment VALUES (31616, 239, 2, 4920, 7.99, '2007-04-08 20:10:36.996577'); -INSERT INTO dvds.payment VALUES (31617, 239, 2, 5651, 4.99, '2007-04-10 05:45:39.996577'); -INSERT INTO dvds.payment VALUES (31618, 239, 1, 5960, 0.99, '2007-04-10 22:07:00.996577'); -INSERT INTO dvds.payment VALUES (31619, 239, 1, 6573, 0.99, '2007-04-12 04:32:06.996577'); -INSERT INTO dvds.payment VALUES (31620, 239, 2, 7012, 8.99, '2007-04-27 00:29:29.996577'); -INSERT INTO dvds.payment VALUES (31621, 239, 1, 7426, 0.99, '2007-04-27 15:48:12.996577'); -INSERT INTO dvds.payment VALUES (31622, 239, 2, 7491, 2.99, '2007-04-27 18:21:49.996577'); -INSERT INTO dvds.payment VALUES (31623, 239, 1, 8457, 6.99, '2007-04-29 06:27:29.996577'); -INSERT INTO dvds.payment VALUES (31624, 239, 2, 9676, 0.99, '2007-04-30 05:07:39.996577'); -INSERT INTO dvds.payment VALUES (31625, 239, 1, 9863, 5.99, '2007-04-30 11:33:55.996577'); -INSERT INTO dvds.payment VALUES (31626, 240, 2, 4305, 4.99, '2007-04-07 15:35:37.996577'); -INSERT INTO dvds.payment VALUES (31627, 240, 2, 5262, 4.99, '2007-04-09 12:36:27.996577'); -INSERT INTO dvds.payment VALUES (31628, 240, 1, 5596, 0.99, '2007-04-10 03:11:40.996577'); -INSERT INTO dvds.payment VALUES (31629, 240, 1, 6272, 0.99, '2007-04-11 14:32:15.996577'); -INSERT INTO dvds.payment VALUES (31630, 240, 2, 6470, 0.99, '2007-04-11 23:58:07.996577'); -INSERT INTO dvds.payment VALUES (31631, 240, 1, 6956, 4.99, '2007-04-26 22:24:23.996577'); -INSERT INTO dvds.payment VALUES (31632, 240, 1, 7001, 4.99, '2007-04-26 23:54:00.996577'); -INSERT INTO dvds.payment VALUES (31633, 240, 1, 7467, 8.99, '2007-04-27 17:20:20.996577'); -INSERT INTO dvds.payment VALUES (31634, 240, 2, 7481, 4.99, '2007-04-27 17:48:51.996577'); -INSERT INTO dvds.payment VALUES (31635, 240, 1, 7870, 4.99, '2007-04-28 08:44:29.996577'); -INSERT INTO dvds.payment VALUES (31636, 240, 2, 8503, 3.99, '2007-04-29 07:45:16.996577'); -INSERT INTO dvds.payment VALUES (31637, 240, 2, 8905, 5.99, '2007-04-29 23:39:37.996577'); -INSERT INTO dvds.payment VALUES (31638, 241, 2, 3822, 0.99, '2007-04-06 14:09:41.996577'); -INSERT INTO dvds.payment VALUES (31639, 241, 1, 4731, 0.99, '2007-04-08 11:36:44.996577'); -INSERT INTO dvds.payment VALUES (31640, 241, 2, 5017, 2.99, '2007-04-09 00:28:42.996577'); -INSERT INTO dvds.payment VALUES (31641, 241, 1, 5211, 0.99, '2007-04-09 09:55:16.996577'); -INSERT INTO dvds.payment VALUES (31642, 241, 1, 5438, 4.99, '2007-04-09 20:02:58.996577'); -INSERT INTO dvds.payment VALUES (31643, 241, 2, 5525, 3.99, '2007-04-10 00:31:34.996577'); -INSERT INTO dvds.payment VALUES (31644, 241, 1, 5981, 4.99, '2007-04-10 22:47:30.996577'); -INSERT INTO dvds.payment VALUES (31645, 241, 2, 6090, 6.99, '2007-04-11 04:15:34.996577'); -INSERT INTO dvds.payment VALUES (31646, 241, 2, 6245, 2.99, '2007-04-11 13:25:23.996577'); -INSERT INTO dvds.payment VALUES (31647, 241, 1, 7320, 0.99, '2007-04-27 12:02:01.996577'); -INSERT INTO dvds.payment VALUES (31648, 241, 1, 7434, 2.99, '2007-04-27 16:03:06.996577'); -INSERT INTO dvds.payment VALUES (31649, 241, 1, 7860, 2.99, '2007-04-28 08:26:28.996577'); -INSERT INTO dvds.payment VALUES (31650, 241, 1, 9500, 6.99, '2007-04-30 22:27:02.996577'); -INSERT INTO dvds.payment VALUES (31651, 241, 1, 9528, 3.99, '2007-04-30 23:33:30.996577'); -INSERT INTO dvds.payment VALUES (31652, 241, 1, 9944, 5.99, '2007-04-30 14:13:09.996577'); -INSERT INTO dvds.payment VALUES (31653, 242, 1, 3471, 4.99, '2007-04-05 21:20:10.996577'); -INSERT INTO dvds.payment VALUES (31654, 242, 2, 3604, 0.99, '2007-04-06 03:53:48.996577'); -INSERT INTO dvds.payment VALUES (31655, 242, 1, 4426, 4.99, '2007-04-07 20:56:58.996577'); -INSERT INTO dvds.payment VALUES (31656, 242, 2, 4895, 1.99, '2007-04-08 18:50:31.996577'); -INSERT INTO dvds.payment VALUES (31657, 242, 2, 5666, 5.99, '2007-04-10 06:38:55.996577'); -INSERT INTO dvds.payment VALUES (31658, 242, 2, 7149, 3.99, '2007-04-27 05:39:06.996577'); -INSERT INTO dvds.payment VALUES (31659, 242, 1, 8491, 4.99, '2007-04-29 07:30:39.996577'); -INSERT INTO dvds.payment VALUES (31660, 242, 1, 9423, 3.99, '2007-04-30 19:38:40.996577'); -INSERT INTO dvds.payment VALUES (31661, 242, 1, 9730, 6.99, '2007-04-30 07:18:34.996577'); -INSERT INTO dvds.payment VALUES (31662, 243, 2, 3854, 5.99, '2007-04-06 15:30:59.996577'); -INSERT INTO dvds.payment VALUES (31663, 243, 1, 3965, 4.99, '2007-04-06 21:04:46.996577'); -INSERT INTO dvds.payment VALUES (31664, 243, 1, 4831, 0.99, '2007-04-08 16:28:40.996577'); -INSERT INTO dvds.payment VALUES (31665, 243, 1, 5502, 0.99, '2007-04-09 23:02:41.996577'); -INSERT INTO dvds.payment VALUES (31666, 243, 2, 6038, 3.99, '2007-04-11 01:39:03.996577'); -INSERT INTO dvds.payment VALUES (31667, 243, 2, 6820, 2.99, '2007-04-12 16:49:56.996577'); -INSERT INTO dvds.payment VALUES (31668, 243, 2, 7022, 2.99, '2007-04-27 00:59:41.996577'); -INSERT INTO dvds.payment VALUES (31669, 243, 2, 7165, 0.99, '2007-04-27 06:05:12.996577'); -INSERT INTO dvds.payment VALUES (31670, 243, 1, 8834, 4.99, '2007-04-29 21:10:14.996577'); -INSERT INTO dvds.payment VALUES (31671, 243, 2, 9035, 2.99, '2007-04-30 04:44:33.996577'); -INSERT INTO dvds.payment VALUES (31672, 243, 2, 9514, 4.99, '2007-04-30 22:58:10.996577'); -INSERT INTO dvds.payment VALUES (31673, 243, 2, 9675, 2.99, '2007-04-30 05:05:33.996577'); -INSERT INTO dvds.payment VALUES (31674, 243, 2, 9988, 5.99, '2007-04-30 15:51:02.996577'); -INSERT INTO dvds.payment VALUES (31675, 244, 1, 4814, 4.99, '2007-04-08 15:39:35.996577'); -INSERT INTO dvds.payment VALUES (31676, 244, 2, 5387, 4.99, '2007-04-09 17:53:40.996577'); -INSERT INTO dvds.payment VALUES (31677, 244, 2, 5461, 0.99, '2007-04-09 21:16:30.996577'); -INSERT INTO dvds.payment VALUES (31678, 244, 2, 5692, 0.99, '2007-04-10 08:00:48.996577'); -INSERT INTO dvds.payment VALUES (31679, 244, 1, 5779, 4.99, '2007-04-10 12:14:20.996577'); -INSERT INTO dvds.payment VALUES (31680, 244, 1, 5803, 3.99, '2007-04-10 13:34:08.996577'); -INSERT INTO dvds.payment VALUES (31681, 244, 2, 6374, 4.99, '2007-04-11 20:04:36.996577'); -INSERT INTO dvds.payment VALUES (31682, 244, 2, 6608, 2.99, '2007-04-12 06:45:16.996577'); -INSERT INTO dvds.payment VALUES (31683, 244, 2, 6683, 2.99, '2007-04-12 10:42:31.996577'); -INSERT INTO dvds.payment VALUES (31684, 244, 2, 8454, 0.99, '2007-04-29 06:17:30.996577'); -INSERT INTO dvds.payment VALUES (31685, 244, 2, 8844, 5.99, '2007-04-29 21:33:34.996577'); -INSERT INTO dvds.payment VALUES (31686, 244, 1, 10001, 4.99, '2007-04-30 16:14:44.996577'); -INSERT INTO dvds.payment VALUES (31687, 244, 2, 10047, 4.99, '2007-04-30 17:36:09.996577'); -INSERT INTO dvds.payment VALUES (31688, 244, 1, 10152, 5.99, '2007-04-30 20:56:31.996577'); -INSERT INTO dvds.payment VALUES (31689, 245, 1, 3634, 2.99, '2007-04-06 05:19:40.996577'); -INSERT INTO dvds.payment VALUES (31690, 245, 2, 5321, 2.99, '2007-04-09 14:54:59.996577'); -INSERT INTO dvds.payment VALUES (31691, 245, 1, 5764, 4.99, '2007-04-10 11:26:42.996577'); -INSERT INTO dvds.payment VALUES (31692, 245, 2, 6242, 2.99, '2007-04-11 13:13:30.996577'); -INSERT INTO dvds.payment VALUES (31693, 245, 1, 6795, 5.99, '2007-04-12 15:09:26.996577'); -INSERT INTO dvds.payment VALUES (31694, 245, 2, 6962, 0.99, '2007-04-26 22:39:24.996577'); -INSERT INTO dvds.payment VALUES (31695, 245, 1, 7230, 4.99, '2007-04-27 08:30:07.996577'); -INSERT INTO dvds.payment VALUES (31696, 245, 2, 7233, 5.99, '2007-04-27 08:37:02.996577'); -INSERT INTO dvds.payment VALUES (31697, 245, 1, 7358, 0.99, '2007-04-27 13:18:10.996577'); -INSERT INTO dvds.payment VALUES (31698, 245, 2, 7397, 4.99, '2007-04-27 14:33:26.996577'); -INSERT INTO dvds.payment VALUES (31699, 245, 2, 8701, 6.99, '2007-04-29 15:31:01.996577'); -INSERT INTO dvds.payment VALUES (31700, 245, 1, 8811, 10.99, '2007-04-29 20:14:47.996577'); -INSERT INTO dvds.payment VALUES (31701, 245, 2, 9088, 0.99, '2007-04-30 06:49:28.996577'); -INSERT INTO dvds.payment VALUES (31702, 245, 2, 9169, 4.99, '2007-04-30 10:03:26.996577'); -INSERT INTO dvds.payment VALUES (31703, 245, 1, 9813, 6.99, '2007-04-30 09:57:49.996577'); -INSERT INTO dvds.payment VALUES (31704, 245, 1, 10087, 3.99, '2007-04-30 18:43:48.996577'); -INSERT INTO dvds.payment VALUES (31705, 246, 1, 4092, 7.99, '2007-04-07 04:22:44.996577'); -INSERT INTO dvds.payment VALUES (31706, 246, 2, 4905, 4.99, '2007-04-08 19:24:26.996577'); -INSERT INTO dvds.payment VALUES (31707, 246, 2, 4994, 2.99, '2007-04-08 23:22:39.996577'); -INSERT INTO dvds.payment VALUES (31708, 246, 2, 5347, 0.99, '2007-04-09 15:59:58.996577'); -INSERT INTO dvds.payment VALUES (31709, 246, 1, 6688, 4.99, '2007-04-12 10:50:38.996577'); -INSERT INTO dvds.payment VALUES (31710, 246, 2, 9525, 5.99, '2007-04-30 23:30:44.996577'); -INSERT INTO dvds.payment VALUES (31711, 246, 2, 10208, 4.99, '2007-04-30 23:23:17.996577'); -INSERT INTO dvds.payment VALUES (31712, 247, 2, 3955, 2.99, '2007-04-06 20:26:34.996577'); -INSERT INTO dvds.payment VALUES (31713, 247, 2, 4198, 6.99, '2007-04-07 09:36:37.996577'); -INSERT INTO dvds.payment VALUES (31714, 247, 1, 4492, 2.99, '2007-04-08 00:00:30.996577'); -INSERT INTO dvds.payment VALUES (31715, 247, 2, 4995, 2.99, '2007-04-08 23:26:12.996577'); -INSERT INTO dvds.payment VALUES (31716, 247, 1, 5328, 6.99, '2007-04-09 15:16:55.996577'); -INSERT INTO dvds.payment VALUES (31717, 247, 1, 5842, 4.99, '2007-04-10 15:40:03.996577'); -INSERT INTO dvds.payment VALUES (31718, 247, 1, 7963, 5.99, '2007-04-28 12:17:04.996577'); -INSERT INTO dvds.payment VALUES (31719, 248, 1, 3910, 0.99, '2007-04-06 18:33:44.996577'); -INSERT INTO dvds.payment VALUES (31720, 248, 2, 4541, 4.99, '2007-04-08 02:32:45.996577'); -INSERT INTO dvds.payment VALUES (31721, 248, 1, 4841, 0.99, '2007-04-08 16:46:49.996577'); -INSERT INTO dvds.payment VALUES (31722, 248, 1, 5370, 2.99, '2007-04-09 17:11:45.996577'); -INSERT INTO dvds.payment VALUES (31723, 248, 2, 6617, 2.99, '2007-04-12 07:08:22.996577'); -INSERT INTO dvds.payment VALUES (31724, 248, 2, 7778, 5.99, '2007-04-28 05:38:37.996577'); -INSERT INTO dvds.payment VALUES (31725, 249, 1, 4352, 9.99, '2007-04-07 17:44:24.996577'); -INSERT INTO dvds.payment VALUES (31726, 249, 1, 5011, 4.99, '2007-04-09 00:13:06.996577'); -INSERT INTO dvds.payment VALUES (31727, 249, 1, 5275, 4.99, '2007-04-09 13:02:44.996577'); -INSERT INTO dvds.payment VALUES (31728, 249, 2, 5639, 3.99, '2007-04-10 05:02:05.996577'); -INSERT INTO dvds.payment VALUES (31729, 249, 2, 6670, 7.99, '2007-04-12 10:12:59.996577'); -INSERT INTO dvds.payment VALUES (31730, 249, 1, 7544, 7.99, '2007-04-27 20:16:03.996577'); -INSERT INTO dvds.payment VALUES (31731, 249, 1, 7804, 2.99, '2007-04-28 06:24:26.996577'); -INSERT INTO dvds.payment VALUES (31732, 249, 2, 7881, 4.99, '2007-04-28 09:01:48.996577'); -INSERT INTO dvds.payment VALUES (31733, 250, 1, 3635, 4.99, '2007-04-06 05:24:02.996577'); -INSERT INTO dvds.payment VALUES (31734, 250, 1, 3951, 3.99, '2007-04-06 20:19:07.996577'); -INSERT INTO dvds.payment VALUES (31735, 250, 1, 5479, 2.99, '2007-04-09 22:15:59.996577'); -INSERT INTO dvds.payment VALUES (31736, 250, 1, 5540, 0.99, '2007-04-10 01:12:47.996577'); -INSERT INTO dvds.payment VALUES (31737, 250, 1, 5998, 2.99, '2007-04-10 23:49:12.996577'); -INSERT INTO dvds.payment VALUES (31738, 250, 1, 8579, 2.99, '2007-04-29 10:27:48.996577'); -INSERT INTO dvds.payment VALUES (31739, 250, 2, 9099, 0.99, '2007-04-30 07:14:14.996577'); -INSERT INTO dvds.payment VALUES (31740, 251, 1, 3799, 4.99, '2007-04-06 13:28:40.996577'); -INSERT INTO dvds.payment VALUES (31741, 251, 2, 4026, 3.99, '2007-04-07 00:44:14.996577'); -INSERT INTO dvds.payment VALUES (31742, 251, 2, 4848, 2.99, '2007-04-08 16:58:42.996577'); -INSERT INTO dvds.payment VALUES (31743, 251, 2, 5012, 2.99, '2007-04-09 00:13:30.996577'); -INSERT INTO dvds.payment VALUES (31744, 251, 2, 5979, 2.99, '2007-04-10 22:45:35.996577'); -INSERT INTO dvds.payment VALUES (31745, 251, 2, 6413, 6.99, '2007-04-11 21:54:37.996577'); -INSERT INTO dvds.payment VALUES (31746, 251, 2, 7338, 8.99, '2007-04-27 12:42:00.996577'); -INSERT INTO dvds.payment VALUES (31747, 251, 2, 8443, 2.99, '2007-04-29 06:01:38.996577'); -INSERT INTO dvds.payment VALUES (31748, 251, 2, 8982, 0.99, '2007-04-30 02:59:28.996577'); -INSERT INTO dvds.payment VALUES (31749, 251, 1, 9196, 2.99, '2007-04-30 10:58:45.996577'); -INSERT INTO dvds.payment VALUES (31750, 251, 1, 9892, 0.99, '2007-04-30 12:34:51.996577'); -INSERT INTO dvds.payment VALUES (31751, 252, 2, 4372, 0.99, '2007-04-07 18:37:27.996577'); -INSERT INTO dvds.payment VALUES (31752, 252, 2, 5554, 2.99, '2007-04-10 01:32:04.996577'); -INSERT INTO dvds.payment VALUES (31753, 252, 1, 6357, 0.99, '2007-04-11 19:27:17.996577'); -INSERT INTO dvds.payment VALUES (31754, 252, 2, 6369, 0.99, '2007-04-11 19:52:02.996577'); -INSERT INTO dvds.payment VALUES (31755, 252, 1, 7024, 4.99, '2007-04-27 01:05:06.996577'); -INSERT INTO dvds.payment VALUES (31756, 252, 2, 7121, 0.99, '2007-04-27 04:26:58.996577'); -INSERT INTO dvds.payment VALUES (31757, 252, 2, 7168, 0.99, '2007-04-27 06:19:37.996577'); -INSERT INTO dvds.payment VALUES (31758, 252, 1, 7670, 0.99, '2007-04-28 01:12:51.996577'); -INSERT INTO dvds.payment VALUES (31759, 252, 1, 8636, 5.99, '2007-04-29 12:52:39.996577'); -INSERT INTO dvds.payment VALUES (31760, 252, 1, 8899, 0.99, '2007-04-29 23:33:56.996577'); -INSERT INTO dvds.payment VALUES (31761, 253, 1, 3658, 7.99, '2007-04-06 06:29:34.996577'); -INSERT INTO dvds.payment VALUES (31762, 253, 1, 5505, 2.99, '2007-04-09 23:07:14.996577'); -INSERT INTO dvds.payment VALUES (31763, 253, 1, 5602, 4.99, '2007-04-10 03:30:48.996577'); -INSERT INTO dvds.payment VALUES (31764, 253, 2, 7689, 2.99, '2007-04-28 01:49:50.996577'); -INSERT INTO dvds.payment VALUES (31765, 253, 2, 7851, 0.99, '2007-04-28 08:00:24.996577'); -INSERT INTO dvds.payment VALUES (31766, 253, 2, 7887, 2.99, '2007-04-28 09:08:38.996577'); -INSERT INTO dvds.payment VALUES (31767, 253, 2, 8752, 2.99, '2007-04-29 17:43:33.996577'); -INSERT INTO dvds.payment VALUES (31768, 253, 2, 9606, 0.99, '2007-04-30 02:19:12.996577'); -INSERT INTO dvds.payment VALUES (31769, 253, 2, 9618, 6.99, '2007-04-30 02:44:40.996577'); -INSERT INTO dvds.payment VALUES (31770, 254, 1, 3882, 4.99, '2007-04-06 17:06:47.996577'); -INSERT INTO dvds.payment VALUES (31771, 254, 2, 5042, 2.99, '2007-04-09 01:48:56.996577'); -INSERT INTO dvds.payment VALUES (31772, 254, 1, 5072, 3.99, '2007-04-09 03:30:24.996577'); -INSERT INTO dvds.payment VALUES (31773, 254, 2, 5080, 2.99, '2007-04-09 03:52:21.996577'); -INSERT INTO dvds.payment VALUES (31774, 254, 1, 5537, 0.99, '2007-04-10 01:04:07.996577'); -INSERT INTO dvds.payment VALUES (31775, 254, 1, 5550, 5.99, '2007-04-10 01:27:01.996577'); -INSERT INTO dvds.payment VALUES (31776, 254, 1, 5826, 7.99, '2007-04-10 14:49:28.996577'); -INSERT INTO dvds.payment VALUES (31777, 254, 2, 5930, 4.99, '2007-04-10 20:27:58.996577'); -INSERT INTO dvds.payment VALUES (31778, 254, 2, 7011, 0.99, '2007-04-27 00:27:00.996577'); -INSERT INTO dvds.payment VALUES (31779, 254, 1, 7413, 4.99, '2007-04-27 15:14:06.996577'); -INSERT INTO dvds.payment VALUES (31780, 254, 2, 8216, 7.99, '2007-04-28 22:12:25.996577'); -INSERT INTO dvds.payment VALUES (31781, 254, 2, 8581, 4.99, '2007-04-29 10:30:32.996577'); -INSERT INTO dvds.payment VALUES (31782, 254, 2, 9494, 1.99, '2007-04-30 22:21:12.996577'); -INSERT INTO dvds.payment VALUES (31783, 255, 1, 4547, 0.99, '2007-04-08 02:48:45.996577'); -INSERT INTO dvds.payment VALUES (31784, 255, 1, 5706, 1.99, '2007-04-10 08:50:12.996577'); -INSERT INTO dvds.payment VALUES (31785, 255, 1, 5943, 0.99, '2007-04-10 21:16:39.996577'); -INSERT INTO dvds.payment VALUES (31786, 255, 2, 7475, 8.99, '2007-04-27 17:36:09.996577'); -INSERT INTO dvds.payment VALUES (31787, 255, 1, 7646, 2.99, '2007-04-28 00:00:11.996577'); -INSERT INTO dvds.payment VALUES (31788, 255, 1, 8562, 0.99, '2007-04-29 10:00:39.996577'); -INSERT INTO dvds.payment VALUES (31789, 255, 1, 9061, 6.99, '2007-04-30 05:50:18.996577'); -INSERT INTO dvds.payment VALUES (31790, 256, 1, 4130, 0.99, '2007-04-07 06:20:19.996577'); -INSERT INTO dvds.payment VALUES (31791, 256, 2, 4182, 0.99, '2007-04-07 08:56:26.996577'); -INSERT INTO dvds.payment VALUES (31792, 256, 1, 5179, 2.99, '2007-04-09 08:29:10.996577'); -INSERT INTO dvds.payment VALUES (31793, 256, 1, 6298, 0.99, '2007-04-11 16:10:59.996577'); -INSERT INTO dvds.payment VALUES (31794, 256, 1, 7661, 3.99, '2007-04-28 00:38:53.996577'); -INSERT INTO dvds.payment VALUES (31795, 256, 2, 9424, 2.99, '2007-04-30 19:39:22.996577'); -INSERT INTO dvds.payment VALUES (31796, 257, 2, 4462, 6.99, '2007-04-07 22:31:15.996577'); -INSERT INTO dvds.payment VALUES (31797, 257, 2, 4574, 4.99, '2007-04-08 04:08:08.996577'); -INSERT INTO dvds.payment VALUES (31798, 257, 1, 5495, 6.99, '2007-04-09 22:45:20.996577'); -INSERT INTO dvds.payment VALUES (31799, 257, 1, 5858, 4.99, '2007-04-10 16:28:33.996577'); -INSERT INTO dvds.payment VALUES (31800, 257, 1, 6422, 5.99, '2007-04-11 22:14:45.996577'); -INSERT INTO dvds.payment VALUES (31801, 257, 2, 6711, 5.99, '2007-04-12 11:52:06.996577'); -INSERT INTO dvds.payment VALUES (31802, 257, 2, 7007, 4.99, '2007-04-27 00:12:05.996577'); -INSERT INTO dvds.payment VALUES (31803, 257, 1, 7176, 2.99, '2007-04-27 06:32:54.996577'); -INSERT INTO dvds.payment VALUES (31804, 257, 1, 7496, 1.99, '2007-04-27 18:32:31.996577'); -INSERT INTO dvds.payment VALUES (31805, 257, 2, 7510, 2.99, '2007-04-27 19:06:23.996577'); -INSERT INTO dvds.payment VALUES (31806, 257, 2, 7518, 5.99, '2007-04-27 19:29:42.996577'); -INSERT INTO dvds.payment VALUES (31807, 257, 2, 8156, 3.99, '2007-04-28 19:27:30.996577'); -INSERT INTO dvds.payment VALUES (31808, 257, 2, 8252, 2.99, '2007-04-28 23:22:43.996577'); -INSERT INTO dvds.payment VALUES (31809, 257, 1, 8344, 4.99, '2007-04-29 03:13:51.996577'); -INSERT INTO dvds.payment VALUES (31810, 257, 1, 8640, 4.99, '2007-04-29 13:02:43.996577'); -INSERT INTO dvds.payment VALUES (31811, 257, 2, 8946, 6.99, '2007-04-30 01:43:19.996577'); -INSERT INTO dvds.payment VALUES (31812, 257, 1, 9800, 4.99, '2007-04-30 09:29:24.996577'); -INSERT INTO dvds.payment VALUES (31813, 257, 2, 10142, 4.99, '2007-04-30 20:39:20.996577'); -INSERT INTO dvds.payment VALUES (31814, 258, 2, 4408, 2.99, '2007-04-07 20:09:32.996577'); -INSERT INTO dvds.payment VALUES (31815, 258, 1, 4677, 5.99, '2007-04-08 08:59:02.996577'); -INSERT INTO dvds.payment VALUES (31816, 258, 2, 4897, 0.99, '2007-04-08 18:53:37.996577'); -INSERT INTO dvds.payment VALUES (31817, 258, 2, 5312, 5.99, '2007-04-09 14:31:35.996577'); -INSERT INTO dvds.payment VALUES (31818, 258, 1, 5674, 0.99, '2007-04-10 06:54:52.996577'); -INSERT INTO dvds.payment VALUES (31819, 258, 1, 5935, 9.99, '2007-04-10 20:39:30.996577'); -INSERT INTO dvds.payment VALUES (31820, 258, 2, 6012, 4.99, '2007-04-11 00:28:38.996577'); -INSERT INTO dvds.payment VALUES (31821, 258, 1, 7814, 2.99, '2007-04-28 06:38:14.996577'); -INSERT INTO dvds.payment VALUES (31822, 258, 1, 8675, 4.99, '2007-04-29 14:24:44.996577'); -INSERT INTO dvds.payment VALUES (31823, 258, 2, 9069, 4.99, '2007-04-30 06:08:25.996577'); -INSERT INTO dvds.payment VALUES (31824, 259, 2, 4199, 5.99, '2007-04-07 09:41:33.996577'); -INSERT INTO dvds.payment VALUES (31825, 259, 2, 4489, 4.99, '2007-04-07 23:52:24.996577'); -INSERT INTO dvds.payment VALUES (31826, 259, 1, 6074, 0.99, '2007-04-11 03:28:22.996577'); -INSERT INTO dvds.payment VALUES (31827, 259, 2, 6539, 3.99, '2007-04-12 03:19:15.996577'); -INSERT INTO dvds.payment VALUES (31828, 259, 2, 7188, 2.99, '2007-04-27 07:00:34.996577'); -INSERT INTO dvds.payment VALUES (31829, 259, 2, 7774, 7.99, '2007-04-28 05:31:51.996577'); -INSERT INTO dvds.payment VALUES (31830, 259, 1, 7817, 4.99, '2007-04-28 06:49:21.996577'); -INSERT INTO dvds.payment VALUES (31831, 259, 2, 9205, 6.99, '2007-04-30 11:15:06.996577'); -INSERT INTO dvds.payment VALUES (31832, 259, 1, 9282, 6.99, '2007-04-30 13:45:57.996577'); -INSERT INTO dvds.payment VALUES (31833, 259, 1, 9444, 7.99, '2007-04-30 20:17:10.996577'); -INSERT INTO dvds.payment VALUES (31834, 546, 1, 4591, 3.99, '2007-04-30 19:44:46.996577'); -INSERT INTO dvds.payment VALUES (31835, 260, 2, 4054, 0.99, '2007-04-07 02:10:33.996577'); -INSERT INTO dvds.payment VALUES (31836, 260, 2, 4741, 6.99, '2007-04-08 11:59:49.996577'); -INSERT INTO dvds.payment VALUES (31837, 260, 1, 4870, 2.99, '2007-04-08 17:43:11.996577'); -INSERT INTO dvds.payment VALUES (31838, 260, 2, 6328, 2.99, '2007-04-11 17:37:59.996577'); -INSERT INTO dvds.payment VALUES (31839, 260, 2, 7072, 0.99, '2007-04-27 02:30:59.996577'); -INSERT INTO dvds.payment VALUES (31840, 260, 1, 7268, 1.99, '2007-04-27 09:51:35.996577'); -INSERT INTO dvds.payment VALUES (31841, 260, 1, 7885, 7.99, '2007-04-28 09:06:07.996577'); -INSERT INTO dvds.payment VALUES (31842, 260, 1, 8475, 1.99, '2007-04-29 07:06:07.996577'); -INSERT INTO dvds.payment VALUES (31843, 260, 1, 8484, 2.99, '2007-04-29 07:20:25.996577'); -INSERT INTO dvds.payment VALUES (31844, 260, 1, 8717, 0.99, '2007-04-29 16:09:11.996577'); -INSERT INTO dvds.payment VALUES (31845, 260, 1, 8933, 0.99, '2007-04-30 01:04:32.996577'); -INSERT INTO dvds.payment VALUES (31846, 260, 2, 9176, 4.99, '2007-04-30 10:19:20.996577'); -INSERT INTO dvds.payment VALUES (31847, 261, 1, 5122, 3.99, '2007-04-09 05:48:01.996577'); -INSERT INTO dvds.payment VALUES (31848, 261, 1, 5449, 5.99, '2007-04-09 20:40:27.996577'); -INSERT INTO dvds.payment VALUES (31849, 261, 2, 6515, 2.99, '2007-04-12 02:18:58.996577'); -INSERT INTO dvds.payment VALUES (31850, 261, 1, 6743, 0.99, '2007-04-12 12:57:51.996577'); -INSERT INTO dvds.payment VALUES (31851, 261, 2, 9552, 4.99, '2007-04-30 00:33:58.996577'); -INSERT INTO dvds.payment VALUES (31852, 261, 1, 9842, 4.99, '2007-04-30 10:53:24.996577'); -INSERT INTO dvds.payment VALUES (31853, 261, 1, 9869, 4.99, '2007-04-30 11:50:20.996577'); -INSERT INTO dvds.payment VALUES (31854, 262, 1, 3521, 1.99, '2007-04-05 23:28:37.996577'); -INSERT INTO dvds.payment VALUES (31855, 262, 1, 3699, 3.99, '2007-04-06 08:39:51.996577'); -INSERT INTO dvds.payment VALUES (31856, 262, 1, 4501, 0.99, '2007-04-08 00:40:26.996577'); -INSERT INTO dvds.payment VALUES (31857, 262, 2, 5503, 0.99, '2007-04-09 23:04:03.996577'); -INSERT INTO dvds.payment VALUES (31858, 262, 1, 6291, 0.99, '2007-04-11 15:45:06.996577'); -INSERT INTO dvds.payment VALUES (31859, 262, 2, 6547, 7.99, '2007-04-12 03:26:12.996577'); -INSERT INTO dvds.payment VALUES (31860, 262, 1, 6724, 3.99, '2007-04-12 12:13:41.996577'); -INSERT INTO dvds.payment VALUES (31861, 262, 2, 6762, 7.99, '2007-04-12 13:53:59.996577'); -INSERT INTO dvds.payment VALUES (31862, 262, 1, 6805, 6.99, '2007-04-12 15:51:27.996577'); -INSERT INTO dvds.payment VALUES (31863, 262, 1, 6986, 4.99, '2007-04-26 23:27:31.996577'); -INSERT INTO dvds.payment VALUES (31864, 262, 1, 9105, 6.99, '2007-04-30 07:18:51.996577'); -INSERT INTO dvds.payment VALUES (31865, 263, 1, 3578, 4.99, '2007-04-06 02:15:31.996577'); -INSERT INTO dvds.payment VALUES (31866, 263, 2, 3773, 2.99, '2007-04-06 11:52:00.996577'); -INSERT INTO dvds.payment VALUES (31867, 263, 2, 4637, 0.99, '2007-04-08 07:18:20.996577'); -INSERT INTO dvds.payment VALUES (31868, 263, 2, 4682, 2.99, '2007-04-08 09:06:53.996577'); -INSERT INTO dvds.payment VALUES (31869, 263, 2, 5125, 2.99, '2007-04-09 05:53:54.996577'); -INSERT INTO dvds.payment VALUES (31870, 263, 2, 5254, 1.99, '2007-04-09 12:18:37.996577'); -INSERT INTO dvds.payment VALUES (31871, 263, 2, 6376, 4.99, '2007-04-11 20:08:49.996577'); -INSERT INTO dvds.payment VALUES (31872, 263, 1, 6483, 2.99, '2007-04-12 00:27:46.996577'); -INSERT INTO dvds.payment VALUES (31873, 263, 1, 6808, 1.99, '2007-04-12 16:05:08.996577'); -INSERT INTO dvds.payment VALUES (31874, 263, 2, 7291, 4.99, '2007-04-27 10:59:13.996577'); -INSERT INTO dvds.payment VALUES (31875, 263, 1, 7425, 4.99, '2007-04-27 15:47:01.996577'); -INSERT INTO dvds.payment VALUES (31876, 263, 1, 7706, 4.99, '2007-04-28 02:31:43.996577'); -INSERT INTO dvds.payment VALUES (31877, 263, 2, 7833, 1.99, '2007-04-28 07:14:40.996577'); -INSERT INTO dvds.payment VALUES (31878, 264, 1, 3618, 6.99, '2007-04-06 04:27:11.996577'); -INSERT INTO dvds.payment VALUES (31879, 264, 1, 4328, 4.99, '2007-04-07 16:31:43.996577'); -INSERT INTO dvds.payment VALUES (31880, 264, 1, 4539, 0.99, '2007-04-08 02:29:28.996577'); -INSERT INTO dvds.payment VALUES (31881, 264, 1, 6340, 8.99, '2007-04-11 18:14:31.996577'); -INSERT INTO dvds.payment VALUES (31882, 264, 2, 6391, 0.99, '2007-04-11 20:51:35.996577'); -INSERT INTO dvds.payment VALUES (31883, 264, 1, 6395, 2.99, '2007-04-11 20:57:55.996577'); -INSERT INTO dvds.payment VALUES (31884, 264, 1, 6543, 0.99, '2007-04-12 03:22:58.996577'); -INSERT INTO dvds.payment VALUES (31885, 264, 1, 7006, 8.99, '2007-04-27 00:10:46.996577'); -INSERT INTO dvds.payment VALUES (31886, 264, 2, 9380, 2.99, '2007-04-30 17:45:57.996577'); -INSERT INTO dvds.payment VALUES (31887, 264, 2, 9515, 0.99, '2007-04-30 23:03:31.996577'); -INSERT INTO dvds.payment VALUES (31888, 264, 1, 9861, 5.99, '2007-04-30 11:32:40.996577'); -INSERT INTO dvds.payment VALUES (31889, 264, 1, 9932, 5.99, '2007-04-30 13:48:14.996577'); -INSERT INTO dvds.payment VALUES (31890, 265, 1, 3823, 2.99, '2007-04-06 14:09:53.996577'); -INSERT INTO dvds.payment VALUES (31891, 265, 1, 4610, 0.99, '2007-04-08 05:56:31.996577'); -INSERT INTO dvds.payment VALUES (31892, 265, 1, 4797, 2.99, '2007-04-08 15:07:31.996577'); -INSERT INTO dvds.payment VALUES (31893, 265, 2, 5029, 7.99, '2007-04-09 01:03:58.996577'); -INSERT INTO dvds.payment VALUES (31894, 265, 1, 5417, 4.99, '2007-04-09 19:02:35.996577'); -INSERT INTO dvds.payment VALUES (31895, 265, 1, 5710, 9.99, '2007-04-10 09:01:18.996577'); -INSERT INTO dvds.payment VALUES (31896, 265, 1, 6068, 4.99, '2007-04-11 03:09:35.996577'); -INSERT INTO dvds.payment VALUES (31897, 265, 2, 6371, 4.99, '2007-04-11 20:00:17.996577'); -INSERT INTO dvds.payment VALUES (31898, 265, 2, 6553, 5.99, '2007-04-12 03:35:05.996577'); -INSERT INTO dvds.payment VALUES (31899, 265, 2, 6921, 6.99, '2007-04-12 21:07:29.996577'); -INSERT INTO dvds.payment VALUES (31900, 265, 2, 7414, 1.99, '2007-04-27 15:14:33.996577'); -INSERT INTO dvds.payment VALUES (31901, 265, 1, 7704, 2.99, '2007-04-28 02:30:39.996577'); -INSERT INTO dvds.payment VALUES (31902, 265, 1, 8278, 5.99, '2007-04-29 00:11:21.996577'); -INSERT INTO dvds.payment VALUES (31903, 265, 2, 8489, 2.99, '2007-04-29 07:26:29.996577'); -INSERT INTO dvds.payment VALUES (31904, 265, 2, 8665, 0.99, '2007-04-29 14:07:55.996577'); -INSERT INTO dvds.payment VALUES (31905, 265, 1, 9416, 2.99, '2007-04-30 19:21:11.996577'); -INSERT INTO dvds.payment VALUES (31906, 266, 2, 3585, 0.99, '2007-04-06 02:51:02.996577'); -INSERT INTO dvds.payment VALUES (31907, 266, 2, 5362, 5.99, '2007-04-09 16:44:34.996577'); -INSERT INTO dvds.payment VALUES (31908, 266, 1, 5577, 4.99, '2007-04-10 02:27:06.996577'); -INSERT INTO dvds.payment VALUES (31909, 266, 1, 8492, 2.99, '2007-04-29 07:32:43.996577'); -INSERT INTO dvds.payment VALUES (31910, 266, 2, 9109, 5.99, '2007-04-30 07:26:50.996577'); -INSERT INTO dvds.payment VALUES (31911, 267, 1, 3817, 2.99, '2007-04-06 14:00:11.996577'); -INSERT INTO dvds.payment VALUES (31912, 267, 1, 5340, 6.99, '2007-04-09 15:40:01.996577'); -INSERT INTO dvds.payment VALUES (31913, 267, 1, 6070, 0.99, '2007-04-11 03:16:08.996577'); -INSERT INTO dvds.payment VALUES (31914, 267, 1, 6706, 3.99, '2007-04-12 11:27:42.996577'); -INSERT INTO dvds.payment VALUES (31915, 267, 1, 8190, 4.99, '2007-04-28 21:15:32.996577'); -INSERT INTO dvds.payment VALUES (31916, 267, 1, 8572, 1.99, '2007-04-29 10:19:50.996577'); -INSERT INTO dvds.payment VALUES (31917, 267, 2, 12066, 7.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31918, 267, 2, 13713, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31919, 269, 1, 13025, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31920, 269, 2, 12610, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31921, 274, 1, 13486, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31922, 279, 2, 13538, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31923, 282, 2, 15430, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31924, 284, 1, 12064, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31925, 284, 2, 12959, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31926, 287, 2, 14204, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31927, 295, 2, 15735, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31928, 296, 1, 12009, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31929, 300, 1, 15695, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31930, 315, 2, 14426, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31931, 317, 1, 12574, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31932, 324, 2, 13965, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31933, 327, 1, 15297, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31934, 330, 2, 11709, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31935, 334, 1, 14219, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31936, 335, 2, 11541, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31937, 336, 1, 13022, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31938, 337, 2, 11847, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31939, 349, 1, 14915, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31940, 352, 2, 13578, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31941, 354, 1, 12759, 7.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31942, 354, 1, 11782, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31943, 355, 1, 14760, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31944, 359, 2, 15655, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31945, 361, 1, 13298, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31946, 361, 1, 14769, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31947, 366, 1, 13421, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31948, 369, 1, 13898, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31949, 373, 1, 11739, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31950, 374, 2, 15966, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31951, 388, 1, 12891, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31952, 394, 2, 13178, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31953, 405, 1, 12792, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31954, 410, 1, 12665, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31955, 411, 2, 13246, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31956, 412, 1, 15314, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31957, 417, 2, 13261, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31958, 421, 2, 15710, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31959, 422, 2, 15441, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31960, 424, 1, 15094, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31961, 431, 2, 13587, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31962, 438, 2, 12524, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31963, 440, 1, 13106, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31964, 441, 1, 14878, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31965, 448, 2, 14734, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31966, 448, 1, 13577, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31967, 450, 1, 14172, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31968, 452, 1, 14175, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31969, 457, 1, 12645, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31970, 457, 2, 14516, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31971, 472, 2, 14928, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31972, 474, 1, 11909, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31973, 476, 1, 13941, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31974, 479, 1, 12101, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31975, 493, 2, 14160, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31976, 495, 2, 13753, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31977, 496, 1, 13182, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31978, 497, 1, 12698, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31979, 505, 2, 15867, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31980, 508, 1, 14318, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31981, 512, 1, 12786, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31982, 516, 1, 12130, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31983, 516, 1, 12915, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31984, 521, 2, 11672, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31985, 525, 1, 14954, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31986, 527, 1, 14267, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31987, 530, 1, 13561, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31988, 532, 1, 14616, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31989, 533, 2, 14018, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31990, 534, 1, 14526, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31991, 537, 1, 13419, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31992, 548, 1, 13584, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31993, 550, 2, 11757, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31994, 557, 1, 14278, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31995, 560, 2, 12116, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31996, 560, 2, 14425, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31997, 561, 1, 14415, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31998, 568, 2, 14531, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (31999, 570, 1, 12716, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32000, 576, 2, 11942, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32001, 576, 1, 13464, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32002, 579, 2, 15794, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32003, 582, 2, 12127, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32004, 585, 2, 14604, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32005, 587, 1, 12144, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32006, 590, 2, 15458, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32007, 592, 2, 14606, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32008, 596, 1, 15423, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32009, 597, 1, 11652, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32010, 5, 2, 13209, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32011, 9, 1, 15813, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32012, 11, 1, 11646, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32013, 14, 1, 13780, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32014, 15, 1, 13798, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32015, 15, 2, 13968, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32016, 21, 1, 14933, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32017, 22, 1, 12222, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32018, 23, 2, 15532, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32019, 28, 2, 12938, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32020, 29, 2, 15577, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32021, 33, 1, 12277, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32022, 41, 1, 15875, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32023, 42, 1, 13351, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32024, 42, 1, 15407, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32025, 43, 2, 15644, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32026, 43, 1, 15745, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32027, 44, 2, 13428, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32028, 52, 1, 12001, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32029, 53, 2, 11657, 7.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32030, 53, 1, 14137, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32031, 56, 2, 15714, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32032, 58, 2, 15326, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32033, 60, 2, 12489, 9.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32034, 60, 2, 14741, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32035, 64, 2, 13333, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32036, 69, 2, 11995, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32037, 73, 2, 13108, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32038, 75, 2, 13534, 8.97, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32039, 75, 1, 14488, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32040, 75, 2, 15191, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32041, 80, 2, 12457, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32042, 83, 2, 11563, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32043, 87, 2, 12719, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32044, 91, 1, 12902, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32045, 94, 1, 15371, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32046, 99, 1, 11593, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32047, 100, 2, 15021, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32048, 101, 2, 12141, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32049, 107, 1, 13079, 1.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32050, 107, 1, 15497, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32051, 108, 1, 15294, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32052, 111, 2, 15542, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32053, 114, 2, 12506, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32054, 115, 2, 13056, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32055, 120, 1, 15780, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32056, 135, 1, 13390, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32057, 142, 1, 15454, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32058, 152, 2, 11848, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32059, 155, 2, 11496, 7.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32060, 155, 1, 12352, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32061, 162, 1, 14220, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32062, 163, 2, 11754, 7.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32063, 163, 1, 15282, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32064, 168, 1, 15894, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32065, 175, 2, 14060, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32066, 175, 2, 13161, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32067, 178, 1, 12897, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32068, 180, 1, 12901, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32069, 181, 2, 13008, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32070, 186, 1, 14216, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32071, 188, 1, 14503, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32072, 190, 2, 15167, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32073, 191, 1, 14361, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32074, 192, 1, 11611, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32075, 193, 2, 15729, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32076, 199, 2, 13952, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32077, 200, 2, 11866, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32078, 208, 1, 13719, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32079, 208, 1, 15717, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32080, 211, 2, 12746, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32081, 213, 2, 14374, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32082, 214, 2, 15645, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32083, 215, 2, 15862, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32084, 216, 1, 12970, 5.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32085, 216, 1, 11676, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32086, 219, 1, 11577, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32087, 227, 2, 13374, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32088, 228, 2, 12672, 3.98, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32089, 228, 1, 15234, 0.00, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32090, 229, 2, 13295, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32091, 234, 1, 15778, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32092, 236, 1, 12988, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32093, 244, 2, 12736, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32094, 245, 2, 12682, 2.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32095, 251, 1, 14107, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32096, 252, 2, 13756, 4.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32097, 263, 1, 15293, 0.99, '2007-05-14 13:44:29.996577'); -INSERT INTO dvds.payment VALUES (32098, 264, 2, 14243, 2.99, '2007-05-14 13:44:29.996577'); - - --- --- TOC entry 3334 (class 0 OID 16517) --- Dependencies: 224 --- Data for Name: rental; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11496, '2006-02-14 15:16:03', 2047, 155, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11541, '2006-02-14 15:16:03', 2026, 335, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12101, '2006-02-14 15:16:03', 1556, 479, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental VALUES (11563, '2006-02-14 15:16:03', 1545, 83, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11577, '2006-02-14 15:16:03', 4106, 219, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11593, '2006-02-14 15:16:03', 817, 99, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11611, '2006-02-14 15:16:03', 1857, 192, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11646, '2006-02-14 15:16:03', 478, 11, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11652, '2006-02-14 15:16:03', 1622, 597, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11657, '2006-02-14 15:16:03', 3043, 53, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13719, '2006-02-14 15:16:03', 3547, 208, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11672, '2006-02-14 15:16:03', 3947, 521, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11676, '2006-02-14 15:16:03', 4496, 216, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11709, '2006-02-14 15:16:03', 1720, 330, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11739, '2006-02-14 15:16:03', 4568, 373, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11754, '2006-02-14 15:16:03', 3747, 163, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11757, '2006-02-14 15:16:03', 1295, 550, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11782, '2006-02-14 15:16:03', 4098, 354, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11847, '2006-02-14 15:16:03', 1784, 337, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (11848, '2006-02-14 15:16:03', 3680, 152, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11866, '2006-02-14 15:16:03', 2758, 200, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11909, '2006-02-14 15:16:03', 871, 474, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11942, '2006-02-14 15:16:03', 4094, 576, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (11995, '2006-02-14 15:16:03', 3953, 69, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12001, '2006-02-14 15:16:03', 4158, 52, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12009, '2006-02-14 15:16:03', 2134, 296, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12064, '2006-02-14 15:16:03', 298, 284, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental VALUES (12066, '2006-02-14 15:16:03', 2474, 267, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12116, '2006-02-14 15:16:03', 3082, 560, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12127, '2006-02-14 15:16:03', 4218, 582, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12130, '2006-02-14 15:16:03', 1358, 516, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12141, '2006-02-14 15:16:03', 731, 101, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12144, '2006-02-14 15:16:03', 512, 587, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12222, '2006-02-14 15:16:03', 3949, 22, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12277, '2006-02-14 15:16:03', 407, 33, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12352, '2006-02-14 15:16:03', 643, 155, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12457, '2006-02-14 15:16:03', 2145, 80, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12489, '2006-02-14 15:16:03', 387, 60, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12506, '2006-02-14 15:16:03', 1132, 114, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12524, '2006-02-14 15:16:03', 857, 438, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12574, '2006-02-14 15:16:03', 177, 317, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12610, '2006-02-14 15:16:03', 3181, 269, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12645, '2006-02-14 15:16:03', 1658, 457, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12665, '2006-02-14 15:16:03', 1701, 410, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12672, '2006-02-14 15:16:03', 1722, 228, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12682, '2006-02-14 15:16:03', 1148, 245, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12698, '2006-02-14 15:16:03', 3657, 497, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12716, '2006-02-14 15:16:03', 858, 570, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12719, '2006-02-14 15:16:03', 1094, 87, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12736, '2006-02-14 15:16:03', 3591, 244, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12746, '2006-02-14 15:16:03', 1012, 211, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12759, '2006-02-14 15:16:03', 4193, 354, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12786, '2006-02-14 15:16:03', 97, 512, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12792, '2006-02-14 15:16:03', 1435, 405, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12891, '2006-02-14 15:16:03', 2764, 388, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12897, '2006-02-14 15:16:03', 1512, 178, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12901, '2006-02-14 15:16:03', 2799, 180, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (12902, '2006-02-14 15:16:03', 464, 91, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12915, '2006-02-14 15:16:03', 2651, 516, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12938, '2006-02-14 15:16:03', 3987, 28, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12959, '2006-02-14 15:16:03', 1540, 284, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12970, '2006-02-14 15:16:03', 3999, 216, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (12988, '2006-02-14 15:16:03', 81, 236, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13008, '2006-02-14 15:16:03', 1838, 181, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13022, '2006-02-14 15:16:03', 2266, 336, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13025, '2006-02-14 15:16:03', 4066, 269, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13056, '2006-02-14 15:16:03', 3751, 115, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13079, '2006-02-14 15:16:03', 733, 107, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13106, '2006-02-14 15:16:03', 3212, 440, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental VALUES (13108, '2006-02-14 15:16:03', 3630, 73, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13161, '2006-02-14 15:16:03', 986, 175, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13178, '2006-02-14 15:16:03', 693, 394, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13182, '2006-02-14 15:16:03', 364, 496, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13209, '2006-02-14 15:16:03', 1574, 5, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13246, '2006-02-14 15:16:03', 1849, 411, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13261, '2006-02-14 15:16:03', 3538, 417, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13295, '2006-02-14 15:16:03', 2408, 229, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13298, '2006-02-14 15:16:03', 2133, 361, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13333, '2006-02-14 15:16:03', 1092, 64, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13351, '2006-02-14 15:16:03', 4130, 42, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13374, '2006-02-14 15:16:03', 2721, 227, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13390, '2006-02-14 15:16:03', 2855, 135, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13419, '2006-02-14 15:16:03', 3507, 537, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental VALUES (13421, '2006-02-14 15:16:03', 9, 366, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13428, '2006-02-14 15:16:03', 106, 44, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13464, '2006-02-14 15:16:03', 4292, 576, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13486, '2006-02-14 15:16:03', 4460, 274, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13534, '2006-02-14 15:16:03', 2476, 75, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13538, '2006-02-14 15:16:03', 581, 279, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13561, '2006-02-14 15:16:03', 3202, 530, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13577, '2006-02-14 15:16:03', 3844, 448, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (13578, '2006-02-14 15:16:03', 4301, 352, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13584, '2006-02-14 15:16:03', 3966, 548, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13587, '2006-02-14 15:16:03', 2455, 431, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13713, '2006-02-14 15:16:03', 3075, 267, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13753, '2006-02-14 15:16:03', 3746, 495, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13756, '2006-02-14 15:16:03', 1146, 252, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13780, '2006-02-14 15:16:03', 1775, 14, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13798, '2006-02-14 15:16:03', 526, 15, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13898, '2006-02-14 15:16:03', 4007, 369, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13941, '2006-02-14 15:16:03', 2727, 476, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13952, '2006-02-14 15:16:03', 224, 199, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13965, '2006-02-14 15:16:03', 670, 324, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (13968, '2006-02-14 15:16:03', 3715, 15, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14018, '2006-02-14 15:16:03', 2136, 533, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14060, '2006-02-14 15:16:03', 3100, 175, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14098, '2005-08-21 00:30:32', 6, 554, NULL, 2, '2006-02-23 09:12:08'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14107, '2006-02-14 15:16:03', 3998, 251, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14137, '2006-02-14 15:16:03', 2346, 53, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14160, '2006-02-14 15:16:03', 2428, 493, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14172, '2006-02-14 15:16:03', 2158, 450, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14175, '2006-02-14 15:16:03', 2021, 452, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14204, '2006-02-14 15:16:03', 4334, 287, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14216, '2006-02-14 15:16:03', 3763, 186, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14219, '2006-02-14 15:16:03', 3718, 334, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (14220, '2006-02-14 15:16:03', 2618, 162, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14243, '2006-02-14 15:16:03', 1489, 264, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14267, '2006-02-14 15:16:03', 2199, 527, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14278, '2006-02-14 15:16:03', 2334, 557, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14318, '2006-02-14 15:16:03', 1042, 508, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14361, '2006-02-14 15:16:03', 1231, 191, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14374, '2006-02-14 15:16:03', 236, 213, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14415, '2006-02-14 15:16:03', 2670, 561, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14425, '2006-02-14 15:16:03', 2752, 560, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (14426, '2006-02-14 15:16:03', 2902, 315, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14488, '2006-02-14 15:16:03', 4202, 75, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14503, '2006-02-14 15:16:03', 2144, 188, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14516, '2006-02-14 15:16:03', 713, 457, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14526, '2006-02-14 15:16:03', 1799, 534, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14531, '2006-02-14 15:16:03', 4296, 568, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14604, '2006-02-14 15:16:03', 1024, 585, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental VALUES (14606, '2006-02-14 15:16:03', 2291, 592, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14616, '2006-02-14 15:16:03', 4537, 532, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14734, '2006-02-14 15:16:03', 1369, 448, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14741, '2006-02-14 15:16:03', 612, 60, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14760, '2006-02-14 15:16:03', 1367, 355, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14769, '2006-02-14 15:16:03', 1800, 361, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14878, '2006-02-14 15:16:03', 1202, 441, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14915, '2006-02-14 15:16:03', 112, 349, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14928, '2006-02-14 15:16:03', 4375, 472, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14933, '2006-02-14 15:16:03', 1186, 21, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (14954, '2006-02-14 15:16:03', 3608, 525, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15021, '2006-02-14 15:16:03', 418, 100, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15094, '2006-02-14 15:16:03', 922, 424, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15167, '2006-02-14 15:16:03', 973, 190, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15191, '2006-02-14 15:16:03', 3688, 75, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15234, '2006-02-14 15:16:03', 908, 228, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15282, '2006-02-14 15:16:03', 1932, 163, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15293, '2006-02-14 15:16:03', 1219, 263, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (15294, '2006-02-14 15:16:03', 70, 108, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15297, '2006-02-14 15:16:03', 3192, 327, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15314, '2006-02-14 15:16:03', 2754, 412, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15326, '2006-02-14 15:16:03', 3320, 58, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15371, '2006-02-14 15:16:03', 3672, 94, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15407, '2006-02-14 15:16:03', 3330, 42, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15423, '2006-02-14 15:16:03', 1786, 596, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15430, '2006-02-14 15:16:03', 4353, 282, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15441, '2006-02-14 15:16:03', 258, 422, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15454, '2006-02-14 15:16:03', 2946, 142, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15458, '2006-02-14 15:16:03', 25, 590, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15497, '2006-02-14 15:16:03', 363, 107, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15532, '2006-02-14 15:16:03', 1061, 23, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15542, '2006-02-14 15:16:03', 21, 111, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15577, '2006-02-14 15:16:03', 539, 29, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15644, '2006-02-14 15:16:03', 3139, 43, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (15645, '2006-02-14 15:16:03', 3838, 214, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15655, '2006-02-14 15:16:03', 604, 359, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15695, '2006-02-14 15:16:03', 2954, 300, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15710, '2006-02-14 15:16:03', 1020, 421, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15714, '2006-02-14 15:16:03', 2083, 56, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15717, '2006-02-14 15:16:03', 902, 208, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15729, '2006-02-14 15:16:03', 2699, 193, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15735, '2006-02-14 15:16:03', 3167, 295, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15745, '2006-02-14 15:16:03', 2737, 43, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15778, '2006-02-14 15:16:03', 1269, 234, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental VALUES (15780, '2006-02-14 15:16:03', 2911, 120, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15794, '2006-02-14 15:16:03', 3917, 579, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15813, '2006-02-14 15:16:03', 981, 9, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15862, '2006-02-14 15:16:03', 925, 215, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15867, '2006-02-14 15:16:03', 837, 505, NULL, 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15875, '2006-02-14 15:16:03', 3611, 41, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15894, '2006-02-14 15:16:03', 4416, 168, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (15966, '2006-02-14 15:16:03', 4472, 374, NULL, 1, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental 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 dvds.rental VALUES (16049, '2005-08-23 22:50:12', 2666, 393, '2005-08-30 01:01:12', 2, '2006-02-16 02:30:53'); -INSERT INTO dvds.rental VALUES (1, '2005-05-24 22:53:30', 367, 130, '2005-05-26 22:04:30', 1, '2006-02-15 21:30:53'); - - --- --- TOC entry 3336 (class 0 OID 16529) --- Dependencies: 227 --- Data for Name: staff; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.staff VALUES (1, 'Mike', 'Hillyer', 3, 'Mike.Hillyer@sakilastaff.com', 1, true, 'Mike', '8cb2237d0679ca88db6464eac60da96345513964', '2006-05-16 16:13:11.79328', '\x89504e470d0a5a0a'); -INSERT INTO dvds.staff VALUES (2, 'Jon', 'Stephens', 4, 'Jon.Stephens@sakilastaff.com', 2, true, 'Jon', '8cb2237d0679ca88db6464eac60da96345513964', '2006-05-16 16:13:11.79328', NULL); - - --- --- TOC entry 3338 (class 0 OID 16540) --- Dependencies: 229 --- Data for Name: store; Type: TABLE DATA; Schema: dvds; Owner: jet --- - -INSERT INTO dvds.store VALUES (1, 1, 1, '2006-02-15 09:57:12'); -INSERT INTO dvds.store VALUES (2, 2, 2, '2006-02-15 09:57:12'); - - --- --- TOC entry 3344 (class 0 OID 0) --- Dependencies: 199 --- Name: actor_actor_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.actor_actor_id_seq', 200, true); - - --- --- TOC entry 3345 (class 0 OID 0) --- Dependencies: 208 --- Name: address_address_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.address_address_id_seq', 605, true); - - --- --- TOC entry 3346 (class 0 OID 0) --- Dependencies: 201 --- Name: category_category_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.category_category_id_seq', 16, true); - - --- --- TOC entry 3347 (class 0 OID 0) --- Dependencies: 210 --- Name: city_city_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.city_city_id_seq', 600, true); - - --- --- TOC entry 3348 (class 0 OID 0) --- Dependencies: 212 --- Name: country_country_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.country_country_id_seq', 109, true); - - --- --- TOC entry 3349 (class 0 OID 0) --- Dependencies: 197 --- Name: customer_customer_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.customer_customer_id_seq', 599, true); - - --- --- TOC entry 3350 (class 0 OID 0) --- Dependencies: 203 --- Name: film_film_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.film_film_id_seq', 1000, true); - - --- --- TOC entry 3351 (class 0 OID 0) --- Dependencies: 216 --- Name: inventory_inventory_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.inventory_inventory_id_seq', 4581, true); - - --- --- TOC entry 3352 (class 0 OID 0) --- Dependencies: 218 --- Name: language_language_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.language_language_id_seq', 6, true); - - --- --- TOC entry 3353 (class 0 OID 0) --- Dependencies: 221 --- Name: payment_payment_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.payment_payment_id_seq', 32098, true); - - --- --- TOC entry 3354 (class 0 OID 0) --- Dependencies: 223 --- Name: rental_rental_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.rental_rental_id_seq', 16049, true); - - --- --- TOC entry 3355 (class 0 OID 0) --- Dependencies: 226 --- Name: staff_staff_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.staff_staff_id_seq', 2, true); - - --- --- TOC entry 3356 (class 0 OID 0) --- Dependencies: 228 --- Name: store_store_id_seq; Type: SEQUENCE SET; Schema: dvds; Owner: jet --- - -SELECT pg_catalog.setval('dvds.store_store_id_seq', 2, true); - - --- --- TOC entry 3110 (class 2606 OID 16556) --- Name: actor actor_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.actor - ADD CONSTRAINT actor_pkey PRIMARY KEY (actor_id); - - --- --- TOC entry 3125 (class 2606 OID 16558) --- Name: address address_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.address - ADD CONSTRAINT address_pkey PRIMARY KEY (address_id); - - --- --- TOC entry 3113 (class 2606 OID 16560) --- Name: category category_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.category - ADD CONSTRAINT category_pkey PRIMARY KEY (category_id); - - --- --- TOC entry 3128 (class 2606 OID 16562) --- Name: city city_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.city - ADD CONSTRAINT city_pkey PRIMARY KEY (city_id); - - --- --- TOC entry 3131 (class 2606 OID 16564) --- Name: country country_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.country - ADD CONSTRAINT country_pkey PRIMARY KEY (country_id); - - --- --- TOC entry 3105 (class 2606 OID 16566) --- Name: customer customer_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.customer - ADD CONSTRAINT customer_pkey PRIMARY KEY (customer_id); - - --- --- TOC entry 3120 (class 2606 OID 16568) --- Name: film_actor film_actor_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film_actor - ADD CONSTRAINT film_actor_pkey PRIMARY KEY (actor_id, film_id); - - --- --- TOC entry 3123 (class 2606 OID 16570) --- Name: film_category film_category_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film_category - ADD CONSTRAINT film_category_pkey PRIMARY KEY (film_id, category_id); - - --- --- TOC entry 3116 (class 2606 OID 16572) --- Name: film film_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film - ADD CONSTRAINT film_pkey PRIMARY KEY (film_id); - - --- --- TOC entry 3134 (class 2606 OID 16574) --- Name: inventory inventory_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.inventory - ADD CONSTRAINT inventory_pkey PRIMARY KEY (inventory_id); - - --- --- TOC entry 3136 (class 2606 OID 16576) --- Name: language language_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.language - ADD CONSTRAINT language_pkey PRIMARY KEY (language_id); - - --- --- TOC entry 3141 (class 2606 OID 16578) --- Name: payment payment_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.payment - ADD CONSTRAINT payment_pkey PRIMARY KEY (payment_id); - - --- --- TOC entry 3145 (class 2606 OID 16580) --- Name: rental rental_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.rental - ADD CONSTRAINT rental_pkey PRIMARY KEY (rental_id); - - --- --- TOC entry 3147 (class 2606 OID 16582) --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.staff - ADD CONSTRAINT staff_pkey PRIMARY KEY (staff_id); - - --- --- TOC entry 3150 (class 2606 OID 16584) --- Name: store store_pkey; Type: CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.store - ADD CONSTRAINT store_pkey PRIMARY KEY (store_id); - - --- --- TOC entry 3114 (class 1259 OID 16585) --- Name: film_fulltext_idx; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX film_fulltext_idx ON dvds.film USING gist (fulltext); - - --- --- TOC entry 3111 (class 1259 OID 16586) --- Name: idx_actor_last_name; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_actor_last_name ON dvds.actor USING btree (last_name); - - --- --- TOC entry 3106 (class 1259 OID 16587) --- Name: idx_fk_address_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_address_id ON dvds.customer USING btree (address_id); - - --- --- TOC entry 3126 (class 1259 OID 16588) --- Name: idx_fk_city_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_city_id ON dvds.address USING btree (city_id); - - --- --- TOC entry 3129 (class 1259 OID 16589) --- Name: idx_fk_country_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_country_id ON dvds.city USING btree (country_id); - - --- --- TOC entry 3137 (class 1259 OID 16590) --- Name: idx_fk_customer_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_customer_id ON dvds.payment USING btree (customer_id); - - --- --- TOC entry 3121 (class 1259 OID 16591) --- Name: idx_fk_film_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_film_id ON dvds.film_actor USING btree (film_id); - - --- --- TOC entry 3142 (class 1259 OID 16592) --- Name: idx_fk_inventory_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_inventory_id ON dvds.rental USING btree (inventory_id); - - --- --- TOC entry 3117 (class 1259 OID 16593) --- Name: idx_fk_language_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_language_id ON dvds.film USING btree (language_id); - - --- --- TOC entry 3138 (class 1259 OID 16594) --- Name: idx_fk_rental_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_rental_id ON dvds.payment USING btree (rental_id); - - --- --- TOC entry 3139 (class 1259 OID 16595) --- Name: idx_fk_staff_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_staff_id ON dvds.payment USING btree (staff_id); - - --- --- TOC entry 3107 (class 1259 OID 16596) --- Name: idx_fk_store_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_fk_store_id ON dvds.customer USING btree (store_id); - - --- --- TOC entry 3108 (class 1259 OID 16597) --- Name: idx_last_name; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_last_name ON dvds.customer USING btree (last_name); - - --- --- TOC entry 3132 (class 1259 OID 16598) --- Name: idx_store_id_film_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_store_id_film_id ON dvds.inventory USING btree (store_id, film_id); - - --- --- TOC entry 3118 (class 1259 OID 16599) --- Name: idx_title; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE INDEX idx_title ON dvds.film USING btree (title); - - --- --- TOC entry 3148 (class 1259 OID 16600) --- Name: idx_unq_manager_staff_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE UNIQUE INDEX idx_unq_manager_staff_id ON dvds.store USING btree (manager_staff_id); - - --- --- TOC entry 3143 (class 1259 OID 16601) --- Name: idx_unq_rental_rental_date_inventory_id_customer_id; Type: INDEX; Schema: dvds; Owner: jet --- - -CREATE UNIQUE INDEX idx_unq_rental_rental_date_inventory_id_customer_id ON dvds.rental USING btree (rental_date, inventory_id, customer_id); - - --- --- TOC entry 3171 (class 2620 OID 16602) --- Name: film film_fulltext_trigger; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER film_fulltext_trigger BEFORE INSERT OR UPDATE ON dvds.film FOR EACH ROW EXECUTE PROCEDURE tsvector_update_trigger('fulltext', 'pg_catalog.english', 'title', 'description'); - - --- --- TOC entry 3175 (class 2620 OID 16604) --- Name: address last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.address FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3170 (class 2620 OID 16605) --- Name: category last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.category FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3176 (class 2620 OID 16606) --- Name: city last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.city FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3177 (class 2620 OID 16607) --- Name: country last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.country FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3169 (class 2620 OID 16608) --- Name: customer last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.customer FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3172 (class 2620 OID 16609) --- Name: film last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.film FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3173 (class 2620 OID 16610) --- Name: film_actor last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.film_actor FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3174 (class 2620 OID 16611) --- Name: film_category last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.film_category FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3178 (class 2620 OID 16612) --- Name: inventory last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.inventory FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3179 (class 2620 OID 16613) --- Name: language last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.language FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3180 (class 2620 OID 16614) --- Name: rental last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.rental FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3181 (class 2620 OID 16615) --- Name: staff last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.staff FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3182 (class 2620 OID 16616) --- Name: store last_updated; Type: TRIGGER; Schema: dvds; Owner: jet --- - -CREATE TRIGGER last_updated BEFORE UPDATE ON dvds.store FOR EACH ROW EXECUTE PROCEDURE dvds.last_updated(); - - --- --- TOC entry 3151 (class 2606 OID 16617) --- Name: customer customer_address_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.customer - ADD CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES dvds.address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3153 (class 2606 OID 16622) --- Name: film_actor film_actor_actor_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film_actor - ADD CONSTRAINT film_actor_actor_id_fkey FOREIGN KEY (actor_id) REFERENCES dvds.actor(actor_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3154 (class 2606 OID 16627) --- Name: film_actor film_actor_film_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film_actor - ADD CONSTRAINT film_actor_film_id_fkey FOREIGN KEY (film_id) REFERENCES dvds.film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3155 (class 2606 OID 16632) --- Name: film_category film_category_category_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film_category - ADD CONSTRAINT film_category_category_id_fkey FOREIGN KEY (category_id) REFERENCES dvds.category(category_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3156 (class 2606 OID 16637) --- Name: film_category film_category_film_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film_category - ADD CONSTRAINT film_category_film_id_fkey FOREIGN KEY (film_id) REFERENCES dvds.film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3152 (class 2606 OID 16642) --- Name: film film_language_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.film - ADD CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES dvds.language(language_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3157 (class 2606 OID 16647) --- Name: address fk_address_city; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.address - ADD CONSTRAINT fk_address_city FOREIGN KEY (city_id) REFERENCES dvds.city(city_id); - - --- --- TOC entry 3158 (class 2606 OID 16652) --- Name: city fk_city; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.city - ADD CONSTRAINT fk_city FOREIGN KEY (country_id) REFERENCES dvds.country(country_id); - - --- --- TOC entry 3159 (class 2606 OID 16657) --- Name: inventory inventory_film_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.inventory - ADD CONSTRAINT inventory_film_id_fkey FOREIGN KEY (film_id) REFERENCES dvds.film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3160 (class 2606 OID 16662) --- Name: payment payment_customer_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.payment - ADD CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES dvds.customer(customer_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3161 (class 2606 OID 16667) --- Name: payment payment_rental_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.payment - ADD CONSTRAINT payment_rental_id_fkey FOREIGN KEY (rental_id) REFERENCES dvds.rental(rental_id) ON UPDATE CASCADE ON DELETE SET NULL; - - --- --- TOC entry 3162 (class 2606 OID 16672) --- Name: payment payment_staff_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.payment - ADD CONSTRAINT payment_staff_id_fkey FOREIGN KEY (staff_id) REFERENCES dvds.staff(staff_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3163 (class 2606 OID 16677) --- Name: rental rental_customer_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.rental - ADD CONSTRAINT rental_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES dvds.customer(customer_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3164 (class 2606 OID 16682) --- Name: rental rental_inventory_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.rental - ADD CONSTRAINT rental_inventory_id_fkey FOREIGN KEY (inventory_id) REFERENCES dvds.inventory(inventory_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3165 (class 2606 OID 16687) --- Name: rental rental_staff_id_key; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.rental - ADD CONSTRAINT rental_staff_id_key FOREIGN KEY (staff_id) REFERENCES dvds.staff(staff_id); - - --- --- TOC entry 3166 (class 2606 OID 16692) --- Name: staff staff_address_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.staff - ADD CONSTRAINT staff_address_id_fkey FOREIGN KEY (address_id) REFERENCES dvds.address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3167 (class 2606 OID 16697) --- Name: store store_address_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.store - ADD CONSTRAINT store_address_id_fkey FOREIGN KEY (address_id) REFERENCES dvds.address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- --- TOC entry 3168 (class 2606 OID 16702) --- Name: store store_manager_staff_id_fkey; Type: FK CONSTRAINT; Schema: dvds; Owner: jet --- - -ALTER TABLE ONLY dvds.store - ADD CONSTRAINT store_manager_staff_id_fkey FOREIGN KEY (manager_staff_id) REFERENCES dvds.staff(staff_id) ON UPDATE CASCADE ON DELETE RESTRICT; - - --- Completed on 2019-06-10 17:55:18 CEST - --- --- PostgreSQL database dump complete --- - diff --git a/tests/init/data/postgres/northwind.sql b/tests/init/data/postgres/northwind.sql deleted file mode 100644 index 8416b4e..0000000 --- a/tests/init/data/postgres/northwind.sql +++ /dev/null @@ -1,3916 +0,0 @@ --- --- PostgreSQL database dump --- - -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 default_tablespace = ''; - -SET default_with_oids = false; - -DROP SCHEMA IF EXISTS northwind CASCADE; - -CREATE SCHEMA northwind; - -SET search_path = northwind; - ---- ---- drop tables ---- - - -DROP TABLE IF EXISTS customer_customer_demo; -DROP TABLE IF EXISTS customer_demographics; -DROP TABLE IF EXISTS employee_territories; -DROP TABLE IF EXISTS order_details; -DROP TABLE IF EXISTS orders; -DROP TABLE IF EXISTS customers; -DROP TABLE IF EXISTS products; -DROP TABLE IF EXISTS shippers; -DROP TABLE IF EXISTS suppliers; -DROP TABLE IF EXISTS territories; -DROP TABLE IF EXISTS us_states; -DROP TABLE IF EXISTS categories; -DROP TABLE IF EXISTS region; -DROP TABLE IF EXISTS employees; - --- --- Name: categories; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE categories ( - category_id smallint NOT NULL, - category_name character varying(15) NOT NULL, - description text, - picture bytea -); - - --- --- Name: customer_customer_demo; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE customer_customer_demo ( - customer_id bpchar NOT NULL, - customer_type_id bpchar NOT NULL -); - - --- --- Name: customer_demographics; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE customer_demographics ( - customer_type_id bpchar NOT NULL, - customer_desc text -); - - --- --- Name: customers; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE customers ( - customer_id bpchar NOT NULL, - company_name character varying(40) NOT NULL, - contact_name character varying(30), - contact_title character varying(30), - address character varying(60), - city character varying(15), - region character varying(15), - postal_code character varying(10), - country character varying(15), - phone character varying(24), - fax character varying(24) -); - - --- --- Name: employees; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE employees ( - employee_id smallint NOT NULL, - last_name character varying(20) NOT NULL, - first_name character varying(10) NOT NULL, - title character varying(30), - title_of_courtesy character varying(25), - birth_date date, - hire_date date, - address character varying(60), - city character varying(15), - region character varying(15), - postal_code character varying(10), - country character varying(15), - home_phone character varying(24), - extension character varying(4), - photo bytea, - notes text, - reports_to smallint, - photo_path character varying(255) -); - - --- --- Name: employee_territories; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE employee_territories ( - employee_id smallint NOT NULL, - territory_id character varying(20) NOT NULL -); - - - - --- --- Name: order_details; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE order_details ( - order_id smallint NOT NULL, - product_id smallint NOT NULL, - unit_price real NOT NULL, - quantity smallint NOT NULL, - discount real NOT NULL -); - - --- --- Name: orders; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE orders ( - order_id smallint NOT NULL, - customer_id bpchar, - employee_id smallint, - order_date date, - required_date date, - shipped_date date, - ship_via smallint, - freight real, - ship_name character varying(40), - ship_address character varying(60), - ship_city character varying(15), - ship_region character varying(15), - ship_postal_code character varying(10), - ship_country character varying(15) -); - - --- --- Name: products; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE products ( - product_id smallint NOT NULL, - product_name character varying(40) NOT NULL, - supplier_id smallint, - category_id smallint, - quantity_per_unit character varying(20), - unit_price real, - units_in_stock smallint, - units_on_order smallint, - reorder_level smallint, - discontinued integer NOT NULL -); - - --- --- Name: region; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE region ( - region_id smallint NOT NULL, - region_description bpchar NOT NULL -); - - --- --- Name: shippers; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE shippers ( - shipper_id smallint NOT NULL, - company_name character varying(40) NOT NULL, - phone character varying(24) -); - - - --- --- Name: suppliers; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE suppliers ( - supplier_id smallint NOT NULL, - company_name character varying(40) NOT NULL, - contact_name character varying(30), - contact_title character varying(30), - address character varying(60), - city character varying(15), - region character varying(15), - postal_code character varying(10), - country character varying(15), - phone character varying(24), - fax character varying(24), - homepage text -); - - --- --- Name: territories; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE territories ( - territory_id character varying(20) NOT NULL, - territory_description bpchar NOT NULL, - region_id smallint NOT NULL -); - - --- --- Name: us_states; Type: TABLE; Schema: public; Owner: -; Tablespace: --- - -CREATE TABLE us_states ( - state_id smallint NOT NULL, - state_name character varying(100), - state_abbr character varying(2), - state_region character varying(50) -); - - --- --- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO categories VALUES (1, 'Beverages', 'Soft drinks, coffees, teas, beers, and ales', '\x'); -INSERT INTO categories VALUES (2, 'Condiments', 'Sweet and savory sauces, relishes, spreads, and seasonings', '\x'); -INSERT INTO categories VALUES (3, 'Confections', 'Desserts, candies, and sweet breads', '\x'); -INSERT INTO categories VALUES (4, 'Dairy Products', 'Cheeses', '\x'); -INSERT INTO categories VALUES (5, 'Grains/Cereals', 'Breads, crackers, pasta, and cereal', '\x'); -INSERT INTO categories VALUES (6, 'Meat/Poultry', 'Prepared meats', '\x'); -INSERT INTO categories VALUES (7, 'Produce', 'Dried fruit and bean curd', '\x'); -INSERT INTO categories VALUES (8, 'Seafood', 'Seaweed and fish', '\x'); - - --- --- Data for Name: customer_customer_demo; Type: TABLE DATA; Schema: public; Owner: - --- - - - --- --- Data for Name: customer_demographics; Type: TABLE DATA; Schema: public; Owner: - --- - - - --- --- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO customers VALUES ('ALFKI', 'Alfreds Futterkiste', 'Maria Anders', 'Sales Representative', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany', '030-0074321', '030-0076545'); -INSERT INTO customers VALUES ('ANATR', 'Ana Trujillo Emparedados y helados', 'Ana Trujillo', 'Owner', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico', '(5) 555-4729', '(5) 555-3745'); -INSERT INTO customers VALUES ('ANTON', 'Antonio Moreno Taquería', 'Antonio Moreno', 'Owner', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico', '(5) 555-3932', NULL); -INSERT INTO customers VALUES ('AROUT', 'Around the Horn', 'Thomas Hardy', 'Sales Representative', '120 Hanover Sq.', 'London', NULL, 'WA1 1DP', 'UK', '(171) 555-7788', '(171) 555-6750'); -INSERT INTO customers VALUES ('BERGS', 'Berglunds snabbköp', 'Christina Berglund', 'Order Administrator', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden', '0921-12 34 65', '0921-12 34 67'); -INSERT INTO customers VALUES ('BLAUS', 'Blauer See Delikatessen', 'Hanna Moos', 'Sales Representative', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany', '0621-08460', '0621-08924'); -INSERT INTO customers VALUES ('BLONP', 'Blondesddsl père et fils', 'Frédérique Citeaux', 'Marketing Manager', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France', '88.60.15.31', '88.60.15.32'); -INSERT INTO customers VALUES ('BOLID', 'Bólido Comidas preparadas', 'Martín Sommer', 'Owner', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain', '(91) 555 22 82', '(91) 555 91 99'); -INSERT INTO customers VALUES ('BONAP', 'Bon app''', 'Laurence Lebihan', 'Owner', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France', '91.24.45.40', '91.24.45.41'); -INSERT INTO customers VALUES ('BOTTM', 'Bottom-Dollar Markets', 'Elizabeth Lincoln', 'Accounting Manager', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada', '(604) 555-4729', '(604) 555-3745'); -INSERT INTO customers VALUES ('BSBEV', 'B''s Beverages', 'Victoria Ashworth', 'Sales Representative', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK', '(171) 555-1212', NULL); -INSERT INTO customers VALUES ('CACTU', 'Cactus Comidas para llevar', 'Patricio Simpson', 'Sales Agent', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5555', '(1) 135-4892'); -INSERT INTO customers VALUES ('CENTC', 'Centro comercial Moctezuma', 'Francisco Chang', 'Marketing Manager', 'Sierras de Granada 9993', 'México D.F.', NULL, '05022', 'Mexico', '(5) 555-3392', '(5) 555-7293'); -INSERT INTO customers VALUES ('CHOPS', 'Chop-suey Chinese', 'Yang Wang', 'Owner', 'Hauptstr. 29', 'Bern', NULL, '3012', 'Switzerland', '0452-076545', NULL); -INSERT INTO customers VALUES ('COMMI', 'Comércio Mineiro', 'Pedro Afonso', 'Sales Associate', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil', '(11) 555-7647', NULL); -INSERT INTO customers VALUES ('CONSH', 'Consolidated Holdings', 'Elizabeth Brown', 'Sales Representative', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK', '(171) 555-2282', '(171) 555-9199'); -INSERT INTO customers VALUES ('DRACD', 'Drachenblut Delikatessen', 'Sven Ottlieb', 'Order Administrator', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany', '0241-039123', '0241-059428'); -INSERT INTO customers VALUES ('DUMON', 'Du monde entier', 'Janine Labrune', 'Owner', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France', '40.67.88.88', '40.67.89.89'); -INSERT INTO customers VALUES ('EASTC', 'Eastern Connection', 'Ann Devon', 'Sales Agent', '35 King George', 'London', NULL, 'WX3 6FW', 'UK', '(171) 555-0297', '(171) 555-3373'); -INSERT INTO customers VALUES ('ERNSH', 'Ernst Handel', 'Roland Mendel', 'Sales Manager', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria', '7675-3425', '7675-3426'); -INSERT INTO customers VALUES ('FAMIA', 'Familia Arquibaldo', 'Aria Cruz', 'Marketing Assistant', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil', '(11) 555-9857', NULL); -INSERT INTO customers VALUES ('FISSA', 'FISSA Fabrica Inter. Salchichas S.A.', 'Diego Roel', 'Accounting Manager', 'C/ Moralzarzal, 86', 'Madrid', NULL, '28034', 'Spain', '(91) 555 94 44', '(91) 555 55 93'); -INSERT INTO customers VALUES ('FOLIG', 'Folies gourmandes', 'Martine Rancé', 'Assistant Sales Agent', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France', '20.16.10.16', '20.16.10.17'); -INSERT INTO customers VALUES ('FOLKO', 'Folk och fä HB', 'Maria Larsson', 'Owner', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden', '0695-34 67 21', NULL); -INSERT INTO customers VALUES ('FRANK', 'Frankenversand', 'Peter Franken', 'Marketing Manager', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany', '089-0877310', '089-0877451'); -INSERT INTO customers VALUES ('FRANR', 'France restauration', 'Carine Schmitt', 'Marketing Manager', '54, rue Royale', 'Nantes', NULL, '44000', 'France', '40.32.21.21', '40.32.21.20'); -INSERT INTO customers VALUES ('FRANS', 'Franchi S.p.A.', 'Paolo Accorti', 'Sales Representative', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy', '011-4988260', '011-4988261'); -INSERT INTO customers VALUES ('FURIB', 'Furia Bacalhau e Frutos do Mar', 'Lino Rodriguez', 'Sales Manager', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal', '(1) 354-2534', '(1) 354-2535'); -INSERT INTO customers VALUES ('GALED', 'Galería del gastrónomo', 'Eduardo Saavedra', 'Marketing Manager', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '08022', 'Spain', '(93) 203 4560', '(93) 203 4561'); -INSERT INTO customers VALUES ('GODOS', 'Godos Cocina Típica', 'José Pedro Freyre', 'Sales Manager', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain', '(95) 555 82 82', NULL); -INSERT INTO customers VALUES ('GOURL', 'Gourmet Lanchonetes', 'André Fonseca', 'Sales Associate', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil', '(11) 555-9482', NULL); -INSERT INTO customers VALUES ('GREAL', 'Great Lakes Food Market', 'Howard Snyder', 'Marketing Manager', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA', '(503) 555-7555', NULL); -INSERT INTO customers VALUES ('GROSR', 'GROSELLA-Restaurante', 'Manuel Pereira', 'Owner', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela', '(2) 283-2951', '(2) 283-3397'); -INSERT INTO customers VALUES ('HANAR', 'Hanari Carnes', 'Mario Pontes', 'Accounting Manager', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil', '(21) 555-0091', '(21) 555-8765'); -INSERT INTO customers VALUES ('HILAA', 'HILARION-Abastos', 'Carlos Hernández', 'Sales Representative', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela', '(5) 555-1340', '(5) 555-1948'); -INSERT INTO customers VALUES ('HUNGC', 'Hungry Coyote Import Store', 'Yoshi Latimer', 'Sales Representative', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA', '(503) 555-6874', '(503) 555-2376'); -INSERT INTO customers VALUES ('HUNGO', 'Hungry Owl All-Night Grocers', 'Patricia McKenna', 'Sales Associate', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland', '2967 542', '2967 3333'); -INSERT INTO customers VALUES ('ISLAT', 'Island Trading', 'Helen Bennett', 'Marketing Manager', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK', '(198) 555-8888', NULL); -INSERT INTO customers VALUES ('KOENE', 'Königlich Essen', 'Philip Cramer', 'Sales Associate', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany', '0555-09876', NULL); -INSERT INTO customers VALUES ('LACOR', 'La corne d''abondance', 'Daniel Tonini', 'Sales Representative', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France', '30.59.84.10', '30.59.85.11'); -INSERT INTO customers VALUES ('LAMAI', 'La maison d''Asie', 'Annette Roulet', 'Sales Manager', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France', '61.77.61.10', '61.77.61.11'); -INSERT INTO customers VALUES ('LAUGB', 'Laughing Bacchus Wine Cellars', 'Yoshi Tannamuri', 'Marketing Assistant', '1900 Oak St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada', '(604) 555-3392', '(604) 555-7293'); -INSERT INTO customers VALUES ('LAZYK', 'Lazy K Kountry Store', 'John Steel', 'Marketing Manager', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA', '(509) 555-7969', '(509) 555-6221'); -INSERT INTO customers VALUES ('LEHMS', 'Lehmanns Marktstand', 'Renate Messner', 'Sales Representative', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany', '069-0245984', '069-0245874'); -INSERT INTO customers VALUES ('LETSS', 'Let''s Stop N Shop', 'Jaime Yorres', 'Owner', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA', '(415) 555-5938', NULL); -INSERT INTO customers VALUES ('LILAS', 'LILA-Supermercado', 'Carlos González', 'Accounting Manager', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela', '(9) 331-6954', '(9) 331-7256'); -INSERT INTO customers VALUES ('LINOD', 'LINO-Delicateses', 'Felipe Izquierdo', 'Owner', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela', '(8) 34-56-12', '(8) 34-93-93'); -INSERT INTO customers VALUES ('LONEP', 'Lonesome Pine Restaurant', 'Fran Wilson', 'Sales Manager', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA', '(503) 555-9573', '(503) 555-9646'); -INSERT INTO customers VALUES ('MAGAA', 'Magazzini Alimentari Riuniti', 'Giovanni Rovelli', 'Marketing Manager', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy', '035-640230', '035-640231'); -INSERT INTO customers VALUES ('MAISD', 'Maison Dewey', 'Catherine Dewey', 'Sales Agent', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium', '(02) 201 24 67', '(02) 201 24 68'); -INSERT INTO customers VALUES ('MEREP', 'Mère Paillarde', 'Jean Fresnière', 'Marketing Assistant', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada', '(514) 555-8054', '(514) 555-8055'); -INSERT INTO customers VALUES ('MORGK', 'Morgenstern Gesundkost', 'Alexander Feuer', 'Marketing Assistant', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany', '0342-023176', NULL); -INSERT INTO customers VALUES ('NORTS', 'North/South', 'Simon Crowther', 'Sales Associate', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK', '(171) 555-7733', '(171) 555-2530'); -INSERT INTO customers VALUES ('OCEAN', 'Océano Atlántico Ltda.', 'Yvonne Moncada', 'Sales Agent', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5333', '(1) 135-5535'); -INSERT INTO customers VALUES ('OLDWO', 'Old World Delicatessen', 'Rene Phillips', 'Sales Representative', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA', '(907) 555-7584', '(907) 555-2880'); -INSERT INTO customers VALUES ('OTTIK', 'Ottilies Käseladen', 'Henriette Pfalzheim', 'Owner', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany', '0221-0644327', '0221-0765721'); -INSERT INTO customers VALUES ('PARIS', 'Paris spécialités', 'Marie Bertrand', 'Owner', '265, boulevard Charonne', 'Paris', NULL, '75012', 'France', '(1) 42.34.22.66', '(1) 42.34.22.77'); -INSERT INTO customers VALUES ('PERIC', 'Pericles Comidas clásicas', 'Guillermo Fernández', 'Sales Representative', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico', '(5) 552-3745', '(5) 545-3745'); -INSERT INTO customers VALUES ('PICCO', 'Piccolo und mehr', 'Georg Pipps', 'Sales Manager', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria', '6562-9722', '6562-9723'); -INSERT INTO customers VALUES ('PRINI', 'Princesa Isabel Vinhos', 'Isabel de Castro', 'Sales Representative', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal', '(1) 356-5634', NULL); -INSERT INTO customers VALUES ('QUEDE', 'Que Delícia', 'Bernardo Batista', 'Accounting Manager', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil', '(21) 555-4252', '(21) 555-4545'); -INSERT INTO customers VALUES ('QUEEN', 'Queen Cozinha', 'Lúcia Carvalho', 'Marketing Assistant', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil', '(11) 555-1189', NULL); -INSERT INTO customers VALUES ('QUICK', 'QUICK-Stop', 'Horst Kloss', 'Accounting Manager', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany', '0372-035188', NULL); -INSERT INTO customers VALUES ('RANCH', 'Rancho grande', 'Sergio Gutiérrez', 'Sales Representative', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 123-5555', '(1) 123-5556'); -INSERT INTO customers VALUES ('RATTC', 'Rattlesnake Canyon Grocery', 'Paula Wilson', 'Assistant Sales Representative', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA', '(505) 555-5939', '(505) 555-3620'); -INSERT INTO customers VALUES ('REGGC', 'Reggiani Caseifici', 'Maurizio Moroni', 'Sales Associate', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy', '0522-556721', '0522-556722'); -INSERT INTO customers VALUES ('RICAR', 'Ricardo Adocicados', 'Janete Limeira', 'Assistant Sales Agent', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil', '(21) 555-3412', NULL); -INSERT INTO customers VALUES ('RICSU', 'Richter Supermarkt', 'Michael Holz', 'Sales Manager', 'Grenzacherweg 237', 'Genève', NULL, '1203', 'Switzerland', '0897-034214', NULL); -INSERT INTO customers VALUES ('ROMEY', 'Romero y tomillo', 'Alejandra Camino', 'Accounting Manager', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain', '(91) 745 6200', '(91) 745 6210'); -INSERT INTO customers VALUES ('SANTG', 'Santé Gourmet', 'Jonas Bergulfsen', 'Owner', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway', '07-98 92 35', '07-98 92 47'); -INSERT INTO customers VALUES ('SAVEA', 'Save-a-lot Markets', 'Jose Pavarotti', 'Sales Representative', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA', '(208) 555-8097', NULL); -INSERT INTO customers VALUES ('SEVES', 'Seven Seas Imports', 'Hari Kumar', 'Sales Manager', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK', '(171) 555-1717', '(171) 555-5646'); -INSERT INTO customers VALUES ('SIMOB', 'Simons bistro', 'Jytte Petersen', 'Owner', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark', '31 12 34 56', '31 13 35 57'); -INSERT INTO customers VALUES ('SPECD', 'Spécialités du monde', 'Dominique Perrier', 'Marketing Manager', '25, rue Lauriston', 'Paris', NULL, '75016', 'France', '(1) 47.55.60.10', '(1) 47.55.60.20'); -INSERT INTO customers VALUES ('SPLIR', 'Split Rail Beer & Ale', 'Art Braunschweiger', 'Sales Manager', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA', '(307) 555-4680', '(307) 555-6525'); -INSERT INTO customers VALUES ('SUPRD', 'Suprêmes délices', 'Pascale Cartrain', 'Accounting Manager', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium', '(071) 23 67 22 20', '(071) 23 67 22 21'); -INSERT INTO customers VALUES ('THEBI', 'The Big Cheese', 'Liz Nixon', 'Marketing Manager', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA', '(503) 555-3612', NULL); -INSERT INTO customers VALUES ('THECR', 'The Cracker Box', 'Liu Wong', 'Marketing Assistant', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA', '(406) 555-5834', '(406) 555-8083'); -INSERT INTO customers VALUES ('TOMSP', 'Toms Spezialitäten', 'Karin Josephs', 'Marketing Manager', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany', '0251-031259', '0251-035695'); -INSERT INTO customers VALUES ('TORTU', 'Tortuga Restaurante', 'Miguel Angel Paolino', 'Owner', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico', '(5) 555-2933', NULL); -INSERT INTO customers VALUES ('TRADH', 'Tradição Hipermercados', 'Anabela Domingues', 'Sales Representative', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil', '(11) 555-2167', '(11) 555-2168'); -INSERT INTO customers VALUES ('TRAIH', 'Trail''s Head Gourmet Provisioners', 'Helvetius Nagy', 'Sales Associate', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA', '(206) 555-8257', '(206) 555-2174'); -INSERT INTO customers VALUES ('VAFFE', 'Vaffeljernet', 'Palle Ibsen', 'Sales Manager', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark', '86 21 32 43', '86 22 33 44'); -INSERT INTO customers VALUES ('VICTE', 'Victuailles en stock', 'Mary Saveley', 'Sales Agent', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France', '78.32.54.86', '78.32.54.87'); -INSERT INTO customers VALUES ('VINET', 'Vins et alcools Chevalier', 'Paul Henriot', 'Accounting Manager', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France', '26.47.15.10', '26.47.15.11'); -INSERT INTO customers VALUES ('WANDK', 'Die Wandernde Kuh', 'Rita Müller', 'Sales Representative', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany', '0711-020361', '0711-035428'); -INSERT INTO customers VALUES ('WARTH', 'Wartian Herkku', 'Pirkko Koskitalo', 'Accounting Manager', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland', '981-443655', '981-443655'); -INSERT INTO customers VALUES ('WELLI', 'Wellington Importadora', 'Paula Parente', 'Sales Manager', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil', '(14) 555-8122', NULL); -INSERT INTO customers VALUES ('WHITC', 'White Clover Markets', 'Karl Jablonski', 'Owner', '305 - 14th Ave. S. Suite 3B', 'Seattle', 'WA', '98128', 'USA', '(206) 555-4112', '(206) 555-4115'); -INSERT INTO customers VALUES ('WILMK', 'Wilman Kala', 'Matti Karttunen', 'Owner/Marketing Assistant', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland', '90-224 8858', '90-224 8858'); -INSERT INTO customers VALUES ('WOLZA', 'Wolski Zajazd', 'Zbyszek Piestrzeniewicz', 'Owner', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland', '(26) 642-7012', '(26) 642-7012'); - - --- --- Data for Name: employees; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO employees VALUES (1, 'Davolio', 'Nancy', 'Sales Representative', 'Ms.', '1948-12-08', '1992-05-01', '507 - 20th Ave. E.\nApt. 2A', 'Seattle', 'WA', '98122', 'USA', '(206) 555-9857', '5467', '\x', 'Education includes a BA in psychology from Colorado State University in 1970. She also completed The Art of the Cold Call. Nancy is a member of Toastmasters International.', 2, 'http://accweb/emmployees/davolio.bmp'); -INSERT INTO employees VALUES (2, 'Fuller', 'Andrew', 'Vice President, Sales', 'Dr.', '1952-02-19', '1992-08-14', '908 W. Capital Way', 'Tacoma', 'WA', '98401', 'USA', '(206) 555-9482', '3457', '\x', 'Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.', NULL, 'http://accweb/emmployees/fuller.bmp'); -INSERT INTO employees VALUES (3, 'Leverling', 'Janet', 'Sales Representative', 'Ms.', '1963-08-30', '1992-04-01', '722 Moss Bay Blvd.', 'Kirkland', 'WA', '98033', 'USA', '(206) 555-3412', '3355', '\x', 'Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.', 2, 'http://accweb/emmployees/leverling.bmp'); -INSERT INTO employees VALUES (4, 'Peacock', 'Margaret', 'Sales Representative', 'Mrs.', '1937-09-19', '1993-05-03', '4110 Old Redmond Rd.', 'Redmond', 'WA', '98052', 'USA', '(206) 555-8122', '5176', '\x', 'Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.', 2, 'http://accweb/emmployees/peacock.bmp'); -INSERT INTO employees VALUES (5, 'Buchanan', 'Steven', 'Sales Manager', 'Mr.', '1955-03-04', '1993-10-17', '14 Garrett Hill', 'London', NULL, 'SW1 8JR', 'UK', '(71) 555-4848', '3453', '\x', 'Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses Successful Telemarketing and International Sales Management. He is fluent in French.', 2, 'http://accweb/emmployees/buchanan.bmp'); -INSERT INTO employees VALUES (6, 'Suyama', 'Michael', 'Sales Representative', 'Mr.', '1963-07-02', '1993-10-17', 'Coventry House\nMiner Rd.', 'London', NULL, 'EC2 7JR', 'UK', '(71) 555-7773', '428', '\x', 'Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses Multi-Cultural Selling and Time Management for the Sales Professional. He is fluent in Japanese and can read and write French, Portuguese, and Spanish.', 5, 'http://accweb/emmployees/davolio.bmp'); -INSERT INTO employees VALUES (7, 'King', 'Robert', 'Sales Representative', 'Mr.', '1960-05-29', '1994-01-02', 'Edgeham Hollow\nWinchester Way', 'London', NULL, 'RG1 9SP', 'UK', '(71) 555-5598', '465', '\x', 'Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled Selling in Europe, he was transferred to the London office in March 1993.', 5, 'http://accweb/emmployees/davolio.bmp'); -INSERT INTO employees VALUES (8, 'Callahan', 'Laura', 'Inside Sales Coordinator', 'Ms.', '1958-01-09', '1994-03-05', '4726 - 11th Ave. N.E.', 'Seattle', 'WA', '98105', 'USA', '(206) 555-1189', '2344', '\x', 'Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.', 2, 'http://accweb/emmployees/davolio.bmp'); -INSERT INTO employees VALUES (9, 'Dodsworth', 'Anne', 'Sales Representative', 'Ms.', '1966-01-27', '1994-11-15', '7 Houndstooth Rd.', 'London', NULL, 'WG2 7LT', 'UK', '(71) 555-4444', '452', '\x', 'Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.', 5, 'http://accweb/emmployees/davolio.bmp'); - - --- --- Data for Name: employee_territories; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO employee_territories VALUES (1, '06897'); -INSERT INTO employee_territories VALUES (1, '19713'); -INSERT INTO employee_territories VALUES (2, '01581'); -INSERT INTO employee_territories VALUES (2, '01730'); -INSERT INTO employee_territories VALUES (2, '01833'); -INSERT INTO employee_territories VALUES (2, '02116'); -INSERT INTO employee_territories VALUES (2, '02139'); -INSERT INTO employee_territories VALUES (2, '02184'); -INSERT INTO employee_territories VALUES (2, '40222'); -INSERT INTO employee_territories VALUES (3, '30346'); -INSERT INTO employee_territories VALUES (3, '31406'); -INSERT INTO employee_territories VALUES (3, '32859'); -INSERT INTO employee_territories VALUES (3, '33607'); -INSERT INTO employee_territories VALUES (4, '20852'); -INSERT INTO employee_territories VALUES (4, '27403'); -INSERT INTO employee_territories VALUES (4, '27511'); -INSERT INTO employee_territories VALUES (5, '02903'); -INSERT INTO employee_territories VALUES (5, '07960'); -INSERT INTO employee_territories VALUES (5, '08837'); -INSERT INTO employee_territories VALUES (5, '10019'); -INSERT INTO employee_territories VALUES (5, '10038'); -INSERT INTO employee_territories VALUES (5, '11747'); -INSERT INTO employee_territories VALUES (5, '14450'); -INSERT INTO employee_territories VALUES (6, '85014'); -INSERT INTO employee_territories VALUES (6, '85251'); -INSERT INTO employee_territories VALUES (6, '98004'); -INSERT INTO employee_territories VALUES (6, '98052'); -INSERT INTO employee_territories VALUES (6, '98104'); -INSERT INTO employee_territories VALUES (7, '60179'); -INSERT INTO employee_territories VALUES (7, '60601'); -INSERT INTO employee_territories VALUES (7, '80202'); -INSERT INTO employee_territories VALUES (7, '80909'); -INSERT INTO employee_territories VALUES (7, '90405'); -INSERT INTO employee_territories VALUES (7, '94025'); -INSERT INTO employee_territories VALUES (7, '94105'); -INSERT INTO employee_territories VALUES (7, '95008'); -INSERT INTO employee_territories VALUES (7, '95054'); -INSERT INTO employee_territories VALUES (7, '95060'); -INSERT INTO employee_territories VALUES (8, '19428'); -INSERT INTO employee_territories VALUES (8, '44122'); -INSERT INTO employee_territories VALUES (8, '45839'); -INSERT INTO employee_territories VALUES (8, '53404'); -INSERT INTO employee_territories VALUES (9, '03049'); -INSERT INTO employee_territories VALUES (9, '03801'); -INSERT INTO employee_territories VALUES (9, '48075'); -INSERT INTO employee_territories VALUES (9, '48084'); -INSERT INTO employee_territories VALUES (9, '48304'); -INSERT INTO employee_territories VALUES (9, '55113'); -INSERT INTO employee_territories VALUES (9, '55439'); - - --- --- Data for Name: order_details; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO order_details VALUES (10248, 11, 14, 12, 0); -INSERT INTO order_details VALUES (10248, 42, 9.80000019, 10, 0); -INSERT INTO order_details VALUES (10248, 72, 34.7999992, 5, 0); -INSERT INTO order_details VALUES (10249, 14, 18.6000004, 9, 0); -INSERT INTO order_details VALUES (10249, 51, 42.4000015, 40, 0); -INSERT INTO order_details VALUES (10250, 41, 7.69999981, 10, 0); -INSERT INTO order_details VALUES (10250, 51, 42.4000015, 35, 0.150000006); -INSERT INTO order_details VALUES (10250, 65, 16.7999992, 15, 0.150000006); -INSERT INTO order_details VALUES (10251, 22, 16.7999992, 6, 0.0500000007); -INSERT INTO order_details VALUES (10251, 57, 15.6000004, 15, 0.0500000007); -INSERT INTO order_details VALUES (10251, 65, 16.7999992, 20, 0); -INSERT INTO order_details VALUES (10252, 20, 64.8000031, 40, 0.0500000007); -INSERT INTO order_details VALUES (10252, 33, 2, 25, 0.0500000007); -INSERT INTO order_details VALUES (10252, 60, 27.2000008, 40, 0); -INSERT INTO order_details VALUES (10253, 31, 10, 20, 0); -INSERT INTO order_details VALUES (10253, 39, 14.3999996, 42, 0); -INSERT INTO order_details VALUES (10253, 49, 16, 40, 0); -INSERT INTO order_details VALUES (10254, 24, 3.5999999, 15, 0.150000006); -INSERT INTO order_details VALUES (10254, 55, 19.2000008, 21, 0.150000006); -INSERT INTO order_details VALUES (10254, 74, 8, 21, 0); -INSERT INTO order_details VALUES (10255, 2, 15.1999998, 20, 0); -INSERT INTO order_details VALUES (10255, 16, 13.8999996, 35, 0); -INSERT INTO order_details VALUES (10255, 36, 15.1999998, 25, 0); -INSERT INTO order_details VALUES (10255, 59, 44, 30, 0); -INSERT INTO order_details VALUES (10256, 53, 26.2000008, 15, 0); -INSERT INTO order_details VALUES (10256, 77, 10.3999996, 12, 0); -INSERT INTO order_details VALUES (10257, 27, 35.0999985, 25, 0); -INSERT INTO order_details VALUES (10257, 39, 14.3999996, 6, 0); -INSERT INTO order_details VALUES (10257, 77, 10.3999996, 15, 0); -INSERT INTO order_details VALUES (10258, 2, 15.1999998, 50, 0.200000003); -INSERT INTO order_details VALUES (10258, 5, 17, 65, 0.200000003); -INSERT INTO order_details VALUES (10258, 32, 25.6000004, 6, 0.200000003); -INSERT INTO order_details VALUES (10259, 21, 8, 10, 0); -INSERT INTO order_details VALUES (10259, 37, 20.7999992, 1, 0); -INSERT INTO order_details VALUES (10260, 41, 7.69999981, 16, 0.25); -INSERT INTO order_details VALUES (10260, 57, 15.6000004, 50, 0); -INSERT INTO order_details VALUES (10260, 62, 39.4000015, 15, 0.25); -INSERT INTO order_details VALUES (10260, 70, 12, 21, 0.25); -INSERT INTO order_details VALUES (10261, 21, 8, 20, 0); -INSERT INTO order_details VALUES (10261, 35, 14.3999996, 20, 0); -INSERT INTO order_details VALUES (10262, 5, 17, 12, 0.200000003); -INSERT INTO order_details VALUES (10262, 7, 24, 15, 0); -INSERT INTO order_details VALUES (10262, 56, 30.3999996, 2, 0); -INSERT INTO order_details VALUES (10263, 16, 13.8999996, 60, 0.25); -INSERT INTO order_details VALUES (10263, 24, 3.5999999, 28, 0); -INSERT INTO order_details VALUES (10263, 30, 20.7000008, 60, 0.25); -INSERT INTO order_details VALUES (10263, 74, 8, 36, 0.25); -INSERT INTO order_details VALUES (10264, 2, 15.1999998, 35, 0); -INSERT INTO order_details VALUES (10264, 41, 7.69999981, 25, 0.150000006); -INSERT INTO order_details VALUES (10265, 17, 31.2000008, 30, 0); -INSERT INTO order_details VALUES (10265, 70, 12, 20, 0); -INSERT INTO order_details VALUES (10266, 12, 30.3999996, 12, 0.0500000007); -INSERT INTO order_details VALUES (10267, 40, 14.6999998, 50, 0); -INSERT INTO order_details VALUES (10267, 59, 44, 70, 0.150000006); -INSERT INTO order_details VALUES (10267, 76, 14.3999996, 15, 0.150000006); -INSERT INTO order_details VALUES (10268, 29, 99, 10, 0); -INSERT INTO order_details VALUES (10268, 72, 27.7999992, 4, 0); -INSERT INTO order_details VALUES (10269, 33, 2, 60, 0.0500000007); -INSERT INTO order_details VALUES (10269, 72, 27.7999992, 20, 0.0500000007); -INSERT INTO order_details VALUES (10270, 36, 15.1999998, 30, 0); -INSERT INTO order_details VALUES (10270, 43, 36.7999992, 25, 0); -INSERT INTO order_details VALUES (10271, 33, 2, 24, 0); -INSERT INTO order_details VALUES (10272, 20, 64.8000031, 6, 0); -INSERT INTO order_details VALUES (10272, 31, 10, 40, 0); -INSERT INTO order_details VALUES (10272, 72, 27.7999992, 24, 0); -INSERT INTO order_details VALUES (10273, 10, 24.7999992, 24, 0.0500000007); -INSERT INTO order_details VALUES (10273, 31, 10, 15, 0.0500000007); -INSERT INTO order_details VALUES (10273, 33, 2, 20, 0); -INSERT INTO order_details VALUES (10273, 40, 14.6999998, 60, 0.0500000007); -INSERT INTO order_details VALUES (10273, 76, 14.3999996, 33, 0.0500000007); -INSERT INTO order_details VALUES (10274, 71, 17.2000008, 20, 0); -INSERT INTO order_details VALUES (10274, 72, 27.7999992, 7, 0); -INSERT INTO order_details VALUES (10275, 24, 3.5999999, 12, 0.0500000007); -INSERT INTO order_details VALUES (10275, 59, 44, 6, 0.0500000007); -INSERT INTO order_details VALUES (10276, 10, 24.7999992, 15, 0); -INSERT INTO order_details VALUES (10276, 13, 4.80000019, 10, 0); -INSERT INTO order_details VALUES (10277, 28, 36.4000015, 20, 0); -INSERT INTO order_details VALUES (10277, 62, 39.4000015, 12, 0); -INSERT INTO order_details VALUES (10278, 44, 15.5, 16, 0); -INSERT INTO order_details VALUES (10278, 59, 44, 15, 0); -INSERT INTO order_details VALUES (10278, 63, 35.0999985, 8, 0); -INSERT INTO order_details VALUES (10278, 73, 12, 25, 0); -INSERT INTO order_details VALUES (10279, 17, 31.2000008, 15, 0.25); -INSERT INTO order_details VALUES (10280, 24, 3.5999999, 12, 0); -INSERT INTO order_details VALUES (10280, 55, 19.2000008, 20, 0); -INSERT INTO order_details VALUES (10280, 75, 6.19999981, 30, 0); -INSERT INTO order_details VALUES (10281, 19, 7.30000019, 1, 0); -INSERT INTO order_details VALUES (10281, 24, 3.5999999, 6, 0); -INSERT INTO order_details VALUES (10281, 35, 14.3999996, 4, 0); -INSERT INTO order_details VALUES (10282, 30, 20.7000008, 6, 0); -INSERT INTO order_details VALUES (10282, 57, 15.6000004, 2, 0); -INSERT INTO order_details VALUES (10283, 15, 12.3999996, 20, 0); -INSERT INTO order_details VALUES (10283, 19, 7.30000019, 18, 0); -INSERT INTO order_details VALUES (10283, 60, 27.2000008, 35, 0); -INSERT INTO order_details VALUES (10283, 72, 27.7999992, 3, 0); -INSERT INTO order_details VALUES (10284, 27, 35.0999985, 15, 0.25); -INSERT INTO order_details VALUES (10284, 44, 15.5, 21, 0); -INSERT INTO order_details VALUES (10284, 60, 27.2000008, 20, 0.25); -INSERT INTO order_details VALUES (10284, 67, 11.1999998, 5, 0.25); -INSERT INTO order_details VALUES (10285, 1, 14.3999996, 45, 0.200000003); -INSERT INTO order_details VALUES (10285, 40, 14.6999998, 40, 0.200000003); -INSERT INTO order_details VALUES (10285, 53, 26.2000008, 36, 0.200000003); -INSERT INTO order_details VALUES (10286, 35, 14.3999996, 100, 0); -INSERT INTO order_details VALUES (10286, 62, 39.4000015, 40, 0); -INSERT INTO order_details VALUES (10287, 16, 13.8999996, 40, 0.150000006); -INSERT INTO order_details VALUES (10287, 34, 11.1999998, 20, 0); -INSERT INTO order_details VALUES (10287, 46, 9.60000038, 15, 0.150000006); -INSERT INTO order_details VALUES (10288, 54, 5.9000001, 10, 0.100000001); -INSERT INTO order_details VALUES (10288, 68, 10, 3, 0.100000001); -INSERT INTO order_details VALUES (10289, 3, 8, 30, 0); -INSERT INTO order_details VALUES (10289, 64, 26.6000004, 9, 0); -INSERT INTO order_details VALUES (10290, 5, 17, 20, 0); -INSERT INTO order_details VALUES (10290, 29, 99, 15, 0); -INSERT INTO order_details VALUES (10290, 49, 16, 15, 0); -INSERT INTO order_details VALUES (10290, 77, 10.3999996, 10, 0); -INSERT INTO order_details VALUES (10291, 13, 4.80000019, 20, 0.100000001); -INSERT INTO order_details VALUES (10291, 44, 15.5, 24, 0.100000001); -INSERT INTO order_details VALUES (10291, 51, 42.4000015, 2, 0.100000001); -INSERT INTO order_details VALUES (10292, 20, 64.8000031, 20, 0); -INSERT INTO order_details VALUES (10293, 18, 50, 12, 0); -INSERT INTO order_details VALUES (10293, 24, 3.5999999, 10, 0); -INSERT INTO order_details VALUES (10293, 63, 35.0999985, 5, 0); -INSERT INTO order_details VALUES (10293, 75, 6.19999981, 6, 0); -INSERT INTO order_details VALUES (10294, 1, 14.3999996, 18, 0); -INSERT INTO order_details VALUES (10294, 17, 31.2000008, 15, 0); -INSERT INTO order_details VALUES (10294, 43, 36.7999992, 15, 0); -INSERT INTO order_details VALUES (10294, 60, 27.2000008, 21, 0); -INSERT INTO order_details VALUES (10294, 75, 6.19999981, 6, 0); -INSERT INTO order_details VALUES (10295, 56, 30.3999996, 4, 0); -INSERT INTO order_details VALUES (10296, 11, 16.7999992, 12, 0); -INSERT INTO order_details VALUES (10296, 16, 13.8999996, 30, 0); -INSERT INTO order_details VALUES (10296, 69, 28.7999992, 15, 0); -INSERT INTO order_details VALUES (10297, 39, 14.3999996, 60, 0); -INSERT INTO order_details VALUES (10297, 72, 27.7999992, 20, 0); -INSERT INTO order_details VALUES (10298, 2, 15.1999998, 40, 0); -INSERT INTO order_details VALUES (10298, 36, 15.1999998, 40, 0.25); -INSERT INTO order_details VALUES (10298, 59, 44, 30, 0.25); -INSERT INTO order_details VALUES (10298, 62, 39.4000015, 15, 0); -INSERT INTO order_details VALUES (10299, 19, 7.30000019, 15, 0); -INSERT INTO order_details VALUES (10299, 70, 12, 20, 0); -INSERT INTO order_details VALUES (10300, 66, 13.6000004, 30, 0); -INSERT INTO order_details VALUES (10300, 68, 10, 20, 0); -INSERT INTO order_details VALUES (10301, 40, 14.6999998, 10, 0); -INSERT INTO order_details VALUES (10301, 56, 30.3999996, 20, 0); -INSERT INTO order_details VALUES (10302, 17, 31.2000008, 40, 0); -INSERT INTO order_details VALUES (10302, 28, 36.4000015, 28, 0); -INSERT INTO order_details VALUES (10302, 43, 36.7999992, 12, 0); -INSERT INTO order_details VALUES (10303, 40, 14.6999998, 40, 0.100000001); -INSERT INTO order_details VALUES (10303, 65, 16.7999992, 30, 0.100000001); -INSERT INTO order_details VALUES (10303, 68, 10, 15, 0.100000001); -INSERT INTO order_details VALUES (10304, 49, 16, 30, 0); -INSERT INTO order_details VALUES (10304, 59, 44, 10, 0); -INSERT INTO order_details VALUES (10304, 71, 17.2000008, 2, 0); -INSERT INTO order_details VALUES (10305, 18, 50, 25, 0.100000001); -INSERT INTO order_details VALUES (10305, 29, 99, 25, 0.100000001); -INSERT INTO order_details VALUES (10305, 39, 14.3999996, 30, 0.100000001); -INSERT INTO order_details VALUES (10306, 30, 20.7000008, 10, 0); -INSERT INTO order_details VALUES (10306, 53, 26.2000008, 10, 0); -INSERT INTO order_details VALUES (10306, 54, 5.9000001, 5, 0); -INSERT INTO order_details VALUES (10307, 62, 39.4000015, 10, 0); -INSERT INTO order_details VALUES (10307, 68, 10, 3, 0); -INSERT INTO order_details VALUES (10308, 69, 28.7999992, 1, 0); -INSERT INTO order_details VALUES (10308, 70, 12, 5, 0); -INSERT INTO order_details VALUES (10309, 4, 17.6000004, 20, 0); -INSERT INTO order_details VALUES (10309, 6, 20, 30, 0); -INSERT INTO order_details VALUES (10309, 42, 11.1999998, 2, 0); -INSERT INTO order_details VALUES (10309, 43, 36.7999992, 20, 0); -INSERT INTO order_details VALUES (10309, 71, 17.2000008, 3, 0); -INSERT INTO order_details VALUES (10310, 16, 13.8999996, 10, 0); -INSERT INTO order_details VALUES (10310, 62, 39.4000015, 5, 0); -INSERT INTO order_details VALUES (10311, 42, 11.1999998, 6, 0); -INSERT INTO order_details VALUES (10311, 69, 28.7999992, 7, 0); -INSERT INTO order_details VALUES (10312, 28, 36.4000015, 4, 0); -INSERT INTO order_details VALUES (10312, 43, 36.7999992, 24, 0); -INSERT INTO order_details VALUES (10312, 53, 26.2000008, 20, 0); -INSERT INTO order_details VALUES (10312, 75, 6.19999981, 10, 0); -INSERT INTO order_details VALUES (10313, 36, 15.1999998, 12, 0); -INSERT INTO order_details VALUES (10314, 32, 25.6000004, 40, 0.100000001); -INSERT INTO order_details VALUES (10314, 58, 10.6000004, 30, 0.100000001); -INSERT INTO order_details VALUES (10314, 62, 39.4000015, 25, 0.100000001); -INSERT INTO order_details VALUES (10315, 34, 11.1999998, 14, 0); -INSERT INTO order_details VALUES (10315, 70, 12, 30, 0); -INSERT INTO order_details VALUES (10316, 41, 7.69999981, 10, 0); -INSERT INTO order_details VALUES (10316, 62, 39.4000015, 70, 0); -INSERT INTO order_details VALUES (10317, 1, 14.3999996, 20, 0); -INSERT INTO order_details VALUES (10318, 41, 7.69999981, 20, 0); -INSERT INTO order_details VALUES (10318, 76, 14.3999996, 6, 0); -INSERT INTO order_details VALUES (10319, 17, 31.2000008, 8, 0); -INSERT INTO order_details VALUES (10319, 28, 36.4000015, 14, 0); -INSERT INTO order_details VALUES (10319, 76, 14.3999996, 30, 0); -INSERT INTO order_details VALUES (10320, 71, 17.2000008, 30, 0); -INSERT INTO order_details VALUES (10321, 35, 14.3999996, 10, 0); -INSERT INTO order_details VALUES (10322, 52, 5.5999999, 20, 0); -INSERT INTO order_details VALUES (10323, 15, 12.3999996, 5, 0); -INSERT INTO order_details VALUES (10323, 25, 11.1999998, 4, 0); -INSERT INTO order_details VALUES (10323, 39, 14.3999996, 4, 0); -INSERT INTO order_details VALUES (10324, 16, 13.8999996, 21, 0.150000006); -INSERT INTO order_details VALUES (10324, 35, 14.3999996, 70, 0.150000006); -INSERT INTO order_details VALUES (10324, 46, 9.60000038, 30, 0); -INSERT INTO order_details VALUES (10324, 59, 44, 40, 0.150000006); -INSERT INTO order_details VALUES (10324, 63, 35.0999985, 80, 0.150000006); -INSERT INTO order_details VALUES (10325, 6, 20, 6, 0); -INSERT INTO order_details VALUES (10325, 13, 4.80000019, 12, 0); -INSERT INTO order_details VALUES (10325, 14, 18.6000004, 9, 0); -INSERT INTO order_details VALUES (10325, 31, 10, 4, 0); -INSERT INTO order_details VALUES (10325, 72, 27.7999992, 40, 0); -INSERT INTO order_details VALUES (10326, 4, 17.6000004, 24, 0); -INSERT INTO order_details VALUES (10326, 57, 15.6000004, 16, 0); -INSERT INTO order_details VALUES (10326, 75, 6.19999981, 50, 0); -INSERT INTO order_details VALUES (10327, 2, 15.1999998, 25, 0.200000003); -INSERT INTO order_details VALUES (10327, 11, 16.7999992, 50, 0.200000003); -INSERT INTO order_details VALUES (10327, 30, 20.7000008, 35, 0.200000003); -INSERT INTO order_details VALUES (10327, 58, 10.6000004, 30, 0.200000003); -INSERT INTO order_details VALUES (10328, 59, 44, 9, 0); -INSERT INTO order_details VALUES (10328, 65, 16.7999992, 40, 0); -INSERT INTO order_details VALUES (10328, 68, 10, 10, 0); -INSERT INTO order_details VALUES (10329, 19, 7.30000019, 10, 0.0500000007); -INSERT INTO order_details VALUES (10329, 30, 20.7000008, 8, 0.0500000007); -INSERT INTO order_details VALUES (10329, 38, 210.800003, 20, 0.0500000007); -INSERT INTO order_details VALUES (10329, 56, 30.3999996, 12, 0.0500000007); -INSERT INTO order_details VALUES (10330, 26, 24.8999996, 50, 0.150000006); -INSERT INTO order_details VALUES (10330, 72, 27.7999992, 25, 0.150000006); -INSERT INTO order_details VALUES (10331, 54, 5.9000001, 15, 0); -INSERT INTO order_details VALUES (10332, 18, 50, 40, 0.200000003); -INSERT INTO order_details VALUES (10332, 42, 11.1999998, 10, 0.200000003); -INSERT INTO order_details VALUES (10332, 47, 7.5999999, 16, 0.200000003); -INSERT INTO order_details VALUES (10333, 14, 18.6000004, 10, 0); -INSERT INTO order_details VALUES (10333, 21, 8, 10, 0.100000001); -INSERT INTO order_details VALUES (10333, 71, 17.2000008, 40, 0.100000001); -INSERT INTO order_details VALUES (10334, 52, 5.5999999, 8, 0); -INSERT INTO order_details VALUES (10334, 68, 10, 10, 0); -INSERT INTO order_details VALUES (10335, 2, 15.1999998, 7, 0.200000003); -INSERT INTO order_details VALUES (10335, 31, 10, 25, 0.200000003); -INSERT INTO order_details VALUES (10335, 32, 25.6000004, 6, 0.200000003); -INSERT INTO order_details VALUES (10335, 51, 42.4000015, 48, 0.200000003); -INSERT INTO order_details VALUES (10336, 4, 17.6000004, 18, 0.100000001); -INSERT INTO order_details VALUES (10337, 23, 7.19999981, 40, 0); -INSERT INTO order_details VALUES (10337, 26, 24.8999996, 24, 0); -INSERT INTO order_details VALUES (10337, 36, 15.1999998, 20, 0); -INSERT INTO order_details VALUES (10337, 37, 20.7999992, 28, 0); -INSERT INTO order_details VALUES (10337, 72, 27.7999992, 25, 0); -INSERT INTO order_details VALUES (10338, 17, 31.2000008, 20, 0); -INSERT INTO order_details VALUES (10338, 30, 20.7000008, 15, 0); -INSERT INTO order_details VALUES (10339, 4, 17.6000004, 10, 0); -INSERT INTO order_details VALUES (10339, 17, 31.2000008, 70, 0.0500000007); -INSERT INTO order_details VALUES (10339, 62, 39.4000015, 28, 0); -INSERT INTO order_details VALUES (10340, 18, 50, 20, 0.0500000007); -INSERT INTO order_details VALUES (10340, 41, 7.69999981, 12, 0.0500000007); -INSERT INTO order_details VALUES (10340, 43, 36.7999992, 40, 0.0500000007); -INSERT INTO order_details VALUES (10341, 33, 2, 8, 0); -INSERT INTO order_details VALUES (10341, 59, 44, 9, 0.150000006); -INSERT INTO order_details VALUES (10342, 2, 15.1999998, 24, 0.200000003); -INSERT INTO order_details VALUES (10342, 31, 10, 56, 0.200000003); -INSERT INTO order_details VALUES (10342, 36, 15.1999998, 40, 0.200000003); -INSERT INTO order_details VALUES (10342, 55, 19.2000008, 40, 0.200000003); -INSERT INTO order_details VALUES (10343, 64, 26.6000004, 50, 0); -INSERT INTO order_details VALUES (10343, 68, 10, 4, 0.0500000007); -INSERT INTO order_details VALUES (10343, 76, 14.3999996, 15, 0); -INSERT INTO order_details VALUES (10344, 4, 17.6000004, 35, 0); -INSERT INTO order_details VALUES (10344, 8, 32, 70, 0.25); -INSERT INTO order_details VALUES (10345, 8, 32, 70, 0); -INSERT INTO order_details VALUES (10345, 19, 7.30000019, 80, 0); -INSERT INTO order_details VALUES (10345, 42, 11.1999998, 9, 0); -INSERT INTO order_details VALUES (10346, 17, 31.2000008, 36, 0.100000001); -INSERT INTO order_details VALUES (10346, 56, 30.3999996, 20, 0); -INSERT INTO order_details VALUES (10347, 25, 11.1999998, 10, 0); -INSERT INTO order_details VALUES (10347, 39, 14.3999996, 50, 0.150000006); -INSERT INTO order_details VALUES (10347, 40, 14.6999998, 4, 0); -INSERT INTO order_details VALUES (10347, 75, 6.19999981, 6, 0.150000006); -INSERT INTO order_details VALUES (10348, 1, 14.3999996, 15, 0.150000006); -INSERT INTO order_details VALUES (10348, 23, 7.19999981, 25, 0); -INSERT INTO order_details VALUES (10349, 54, 5.9000001, 24, 0); -INSERT INTO order_details VALUES (10350, 50, 13, 15, 0.100000001); -INSERT INTO order_details VALUES (10350, 69, 28.7999992, 18, 0.100000001); -INSERT INTO order_details VALUES (10351, 38, 210.800003, 20, 0.0500000007); -INSERT INTO order_details VALUES (10351, 41, 7.69999981, 13, 0); -INSERT INTO order_details VALUES (10351, 44, 15.5, 77, 0.0500000007); -INSERT INTO order_details VALUES (10351, 65, 16.7999992, 10, 0.0500000007); -INSERT INTO order_details VALUES (10352, 24, 3.5999999, 10, 0); -INSERT INTO order_details VALUES (10352, 54, 5.9000001, 20, 0.150000006); -INSERT INTO order_details VALUES (10353, 11, 16.7999992, 12, 0.200000003); -INSERT INTO order_details VALUES (10353, 38, 210.800003, 50, 0.200000003); -INSERT INTO order_details VALUES (10354, 1, 14.3999996, 12, 0); -INSERT INTO order_details VALUES (10354, 29, 99, 4, 0); -INSERT INTO order_details VALUES (10355, 24, 3.5999999, 25, 0); -INSERT INTO order_details VALUES (10355, 57, 15.6000004, 25, 0); -INSERT INTO order_details VALUES (10356, 31, 10, 30, 0); -INSERT INTO order_details VALUES (10356, 55, 19.2000008, 12, 0); -INSERT INTO order_details VALUES (10356, 69, 28.7999992, 20, 0); -INSERT INTO order_details VALUES (10357, 10, 24.7999992, 30, 0.200000003); -INSERT INTO order_details VALUES (10357, 26, 24.8999996, 16, 0); -INSERT INTO order_details VALUES (10357, 60, 27.2000008, 8, 0.200000003); -INSERT INTO order_details VALUES (10358, 24, 3.5999999, 10, 0.0500000007); -INSERT INTO order_details VALUES (10358, 34, 11.1999998, 10, 0.0500000007); -INSERT INTO order_details VALUES (10358, 36, 15.1999998, 20, 0.0500000007); -INSERT INTO order_details VALUES (10359, 16, 13.8999996, 56, 0.0500000007); -INSERT INTO order_details VALUES (10359, 31, 10, 70, 0.0500000007); -INSERT INTO order_details VALUES (10359, 60, 27.2000008, 80, 0.0500000007); -INSERT INTO order_details VALUES (10360, 28, 36.4000015, 30, 0); -INSERT INTO order_details VALUES (10360, 29, 99, 35, 0); -INSERT INTO order_details VALUES (10360, 38, 210.800003, 10, 0); -INSERT INTO order_details VALUES (10360, 49, 16, 35, 0); -INSERT INTO order_details VALUES (10360, 54, 5.9000001, 28, 0); -INSERT INTO order_details VALUES (10361, 39, 14.3999996, 54, 0.100000001); -INSERT INTO order_details VALUES (10361, 60, 27.2000008, 55, 0.100000001); -INSERT INTO order_details VALUES (10362, 25, 11.1999998, 50, 0); -INSERT INTO order_details VALUES (10362, 51, 42.4000015, 20, 0); -INSERT INTO order_details VALUES (10362, 54, 5.9000001, 24, 0); -INSERT INTO order_details VALUES (10363, 31, 10, 20, 0); -INSERT INTO order_details VALUES (10363, 75, 6.19999981, 12, 0); -INSERT INTO order_details VALUES (10363, 76, 14.3999996, 12, 0); -INSERT INTO order_details VALUES (10364, 69, 28.7999992, 30, 0); -INSERT INTO order_details VALUES (10364, 71, 17.2000008, 5, 0); -INSERT INTO order_details VALUES (10365, 11, 16.7999992, 24, 0); -INSERT INTO order_details VALUES (10366, 65, 16.7999992, 5, 0); -INSERT INTO order_details VALUES (10366, 77, 10.3999996, 5, 0); -INSERT INTO order_details VALUES (10367, 34, 11.1999998, 36, 0); -INSERT INTO order_details VALUES (10367, 54, 5.9000001, 18, 0); -INSERT INTO order_details VALUES (10367, 65, 16.7999992, 15, 0); -INSERT INTO order_details VALUES (10367, 77, 10.3999996, 7, 0); -INSERT INTO order_details VALUES (10368, 21, 8, 5, 0.100000001); -INSERT INTO order_details VALUES (10368, 28, 36.4000015, 13, 0.100000001); -INSERT INTO order_details VALUES (10368, 57, 15.6000004, 25, 0); -INSERT INTO order_details VALUES (10368, 64, 26.6000004, 35, 0.100000001); -INSERT INTO order_details VALUES (10369, 29, 99, 20, 0); -INSERT INTO order_details VALUES (10369, 56, 30.3999996, 18, 0.25); -INSERT INTO order_details VALUES (10370, 1, 14.3999996, 15, 0.150000006); -INSERT INTO order_details VALUES (10370, 64, 26.6000004, 30, 0); -INSERT INTO order_details VALUES (10370, 74, 8, 20, 0.150000006); -INSERT INTO order_details VALUES (10371, 36, 15.1999998, 6, 0.200000003); -INSERT INTO order_details VALUES (10372, 20, 64.8000031, 12, 0.25); -INSERT INTO order_details VALUES (10372, 38, 210.800003, 40, 0.25); -INSERT INTO order_details VALUES (10372, 60, 27.2000008, 70, 0.25); -INSERT INTO order_details VALUES (10372, 72, 27.7999992, 42, 0.25); -INSERT INTO order_details VALUES (10373, 58, 10.6000004, 80, 0.200000003); -INSERT INTO order_details VALUES (10373, 71, 17.2000008, 50, 0.200000003); -INSERT INTO order_details VALUES (10374, 31, 10, 30, 0); -INSERT INTO order_details VALUES (10374, 58, 10.6000004, 15, 0); -INSERT INTO order_details VALUES (10375, 14, 18.6000004, 15, 0); -INSERT INTO order_details VALUES (10375, 54, 5.9000001, 10, 0); -INSERT INTO order_details VALUES (10376, 31, 10, 42, 0.0500000007); -INSERT INTO order_details VALUES (10377, 28, 36.4000015, 20, 0.150000006); -INSERT INTO order_details VALUES (10377, 39, 14.3999996, 20, 0.150000006); -INSERT INTO order_details VALUES (10378, 71, 17.2000008, 6, 0); -INSERT INTO order_details VALUES (10379, 41, 7.69999981, 8, 0.100000001); -INSERT INTO order_details VALUES (10379, 63, 35.0999985, 16, 0.100000001); -INSERT INTO order_details VALUES (10379, 65, 16.7999992, 20, 0.100000001); -INSERT INTO order_details VALUES (10380, 30, 20.7000008, 18, 0.100000001); -INSERT INTO order_details VALUES (10380, 53, 26.2000008, 20, 0.100000001); -INSERT INTO order_details VALUES (10380, 60, 27.2000008, 6, 0.100000001); -INSERT INTO order_details VALUES (10380, 70, 12, 30, 0); -INSERT INTO order_details VALUES (10381, 74, 8, 14, 0); -INSERT INTO order_details VALUES (10382, 5, 17, 32, 0); -INSERT INTO order_details VALUES (10382, 18, 50, 9, 0); -INSERT INTO order_details VALUES (10382, 29, 99, 14, 0); -INSERT INTO order_details VALUES (10382, 33, 2, 60, 0); -INSERT INTO order_details VALUES (10382, 74, 8, 50, 0); -INSERT INTO order_details VALUES (10383, 13, 4.80000019, 20, 0); -INSERT INTO order_details VALUES (10383, 50, 13, 15, 0); -INSERT INTO order_details VALUES (10383, 56, 30.3999996, 20, 0); -INSERT INTO order_details VALUES (10384, 20, 64.8000031, 28, 0); -INSERT INTO order_details VALUES (10384, 60, 27.2000008, 15, 0); -INSERT INTO order_details VALUES (10385, 7, 24, 10, 0.200000003); -INSERT INTO order_details VALUES (10385, 60, 27.2000008, 20, 0.200000003); -INSERT INTO order_details VALUES (10385, 68, 10, 8, 0.200000003); -INSERT INTO order_details VALUES (10386, 24, 3.5999999, 15, 0); -INSERT INTO order_details VALUES (10386, 34, 11.1999998, 10, 0); -INSERT INTO order_details VALUES (10387, 24, 3.5999999, 15, 0); -INSERT INTO order_details VALUES (10387, 28, 36.4000015, 6, 0); -INSERT INTO order_details VALUES (10387, 59, 44, 12, 0); -INSERT INTO order_details VALUES (10387, 71, 17.2000008, 15, 0); -INSERT INTO order_details VALUES (10388, 45, 7.5999999, 15, 0.200000003); -INSERT INTO order_details VALUES (10388, 52, 5.5999999, 20, 0.200000003); -INSERT INTO order_details VALUES (10388, 53, 26.2000008, 40, 0); -INSERT INTO order_details VALUES (10389, 10, 24.7999992, 16, 0); -INSERT INTO order_details VALUES (10389, 55, 19.2000008, 15, 0); -INSERT INTO order_details VALUES (10389, 62, 39.4000015, 20, 0); -INSERT INTO order_details VALUES (10389, 70, 12, 30, 0); -INSERT INTO order_details VALUES (10390, 31, 10, 60, 0.100000001); -INSERT INTO order_details VALUES (10390, 35, 14.3999996, 40, 0.100000001); -INSERT INTO order_details VALUES (10390, 46, 9.60000038, 45, 0); -INSERT INTO order_details VALUES (10390, 72, 27.7999992, 24, 0.100000001); -INSERT INTO order_details VALUES (10391, 13, 4.80000019, 18, 0); -INSERT INTO order_details VALUES (10392, 69, 28.7999992, 50, 0); -INSERT INTO order_details VALUES (10393, 2, 15.1999998, 25, 0.25); -INSERT INTO order_details VALUES (10393, 14, 18.6000004, 42, 0.25); -INSERT INTO order_details VALUES (10393, 25, 11.1999998, 7, 0.25); -INSERT INTO order_details VALUES (10393, 26, 24.8999996, 70, 0.25); -INSERT INTO order_details VALUES (10393, 31, 10, 32, 0); -INSERT INTO order_details VALUES (10394, 13, 4.80000019, 10, 0); -INSERT INTO order_details VALUES (10394, 62, 39.4000015, 10, 0); -INSERT INTO order_details VALUES (10395, 46, 9.60000038, 28, 0.100000001); -INSERT INTO order_details VALUES (10395, 53, 26.2000008, 70, 0.100000001); -INSERT INTO order_details VALUES (10395, 69, 28.7999992, 8, 0); -INSERT INTO order_details VALUES (10396, 23, 7.19999981, 40, 0); -INSERT INTO order_details VALUES (10396, 71, 17.2000008, 60, 0); -INSERT INTO order_details VALUES (10396, 72, 27.7999992, 21, 0); -INSERT INTO order_details VALUES (10397, 21, 8, 10, 0.150000006); -INSERT INTO order_details VALUES (10397, 51, 42.4000015, 18, 0.150000006); -INSERT INTO order_details VALUES (10398, 35, 14.3999996, 30, 0); -INSERT INTO order_details VALUES (10398, 55, 19.2000008, 120, 0.100000001); -INSERT INTO order_details VALUES (10399, 68, 10, 60, 0); -INSERT INTO order_details VALUES (10399, 71, 17.2000008, 30, 0); -INSERT INTO order_details VALUES (10399, 76, 14.3999996, 35, 0); -INSERT INTO order_details VALUES (10399, 77, 10.3999996, 14, 0); -INSERT INTO order_details VALUES (10400, 29, 99, 21, 0); -INSERT INTO order_details VALUES (10400, 35, 14.3999996, 35, 0); -INSERT INTO order_details VALUES (10400, 49, 16, 30, 0); -INSERT INTO order_details VALUES (10401, 30, 20.7000008, 18, 0); -INSERT INTO order_details VALUES (10401, 56, 30.3999996, 70, 0); -INSERT INTO order_details VALUES (10401, 65, 16.7999992, 20, 0); -INSERT INTO order_details VALUES (10401, 71, 17.2000008, 60, 0); -INSERT INTO order_details VALUES (10402, 23, 7.19999981, 60, 0); -INSERT INTO order_details VALUES (10402, 63, 35.0999985, 65, 0); -INSERT INTO order_details VALUES (10403, 16, 13.8999996, 21, 0.150000006); -INSERT INTO order_details VALUES (10403, 48, 10.1999998, 70, 0.150000006); -INSERT INTO order_details VALUES (10404, 26, 24.8999996, 30, 0.0500000007); -INSERT INTO order_details VALUES (10404, 42, 11.1999998, 40, 0.0500000007); -INSERT INTO order_details VALUES (10404, 49, 16, 30, 0.0500000007); -INSERT INTO order_details VALUES (10405, 3, 8, 50, 0); -INSERT INTO order_details VALUES (10406, 1, 14.3999996, 10, 0); -INSERT INTO order_details VALUES (10406, 21, 8, 30, 0.100000001); -INSERT INTO order_details VALUES (10406, 28, 36.4000015, 42, 0.100000001); -INSERT INTO order_details VALUES (10406, 36, 15.1999998, 5, 0.100000001); -INSERT INTO order_details VALUES (10406, 40, 14.6999998, 2, 0.100000001); -INSERT INTO order_details VALUES (10407, 11, 16.7999992, 30, 0); -INSERT INTO order_details VALUES (10407, 69, 28.7999992, 15, 0); -INSERT INTO order_details VALUES (10407, 71, 17.2000008, 15, 0); -INSERT INTO order_details VALUES (10408, 37, 20.7999992, 10, 0); -INSERT INTO order_details VALUES (10408, 54, 5.9000001, 6, 0); -INSERT INTO order_details VALUES (10408, 62, 39.4000015, 35, 0); -INSERT INTO order_details VALUES (10409, 14, 18.6000004, 12, 0); -INSERT INTO order_details VALUES (10409, 21, 8, 12, 0); -INSERT INTO order_details VALUES (10410, 33, 2, 49, 0); -INSERT INTO order_details VALUES (10410, 59, 44, 16, 0); -INSERT INTO order_details VALUES (10411, 41, 7.69999981, 25, 0.200000003); -INSERT INTO order_details VALUES (10411, 44, 15.5, 40, 0.200000003); -INSERT INTO order_details VALUES (10411, 59, 44, 9, 0.200000003); -INSERT INTO order_details VALUES (10412, 14, 18.6000004, 20, 0.100000001); -INSERT INTO order_details VALUES (10413, 1, 14.3999996, 24, 0); -INSERT INTO order_details VALUES (10413, 62, 39.4000015, 40, 0); -INSERT INTO order_details VALUES (10413, 76, 14.3999996, 14, 0); -INSERT INTO order_details VALUES (10414, 19, 7.30000019, 18, 0.0500000007); -INSERT INTO order_details VALUES (10414, 33, 2, 50, 0); -INSERT INTO order_details VALUES (10415, 17, 31.2000008, 2, 0); -INSERT INTO order_details VALUES (10415, 33, 2, 20, 0); -INSERT INTO order_details VALUES (10416, 19, 7.30000019, 20, 0); -INSERT INTO order_details VALUES (10416, 53, 26.2000008, 10, 0); -INSERT INTO order_details VALUES (10416, 57, 15.6000004, 20, 0); -INSERT INTO order_details VALUES (10417, 38, 210.800003, 50, 0); -INSERT INTO order_details VALUES (10417, 46, 9.60000038, 2, 0.25); -INSERT INTO order_details VALUES (10417, 68, 10, 36, 0.25); -INSERT INTO order_details VALUES (10417, 77, 10.3999996, 35, 0); -INSERT INTO order_details VALUES (10418, 2, 15.1999998, 60, 0); -INSERT INTO order_details VALUES (10418, 47, 7.5999999, 55, 0); -INSERT INTO order_details VALUES (10418, 61, 22.7999992, 16, 0); -INSERT INTO order_details VALUES (10418, 74, 8, 15, 0); -INSERT INTO order_details VALUES (10419, 60, 27.2000008, 60, 0.0500000007); -INSERT INTO order_details VALUES (10419, 69, 28.7999992, 20, 0.0500000007); -INSERT INTO order_details VALUES (10420, 9, 77.5999985, 20, 0.100000001); -INSERT INTO order_details VALUES (10420, 13, 4.80000019, 2, 0.100000001); -INSERT INTO order_details VALUES (10420, 70, 12, 8, 0.100000001); -INSERT INTO order_details VALUES (10420, 73, 12, 20, 0.100000001); -INSERT INTO order_details VALUES (10421, 19, 7.30000019, 4, 0.150000006); -INSERT INTO order_details VALUES (10421, 26, 24.8999996, 30, 0); -INSERT INTO order_details VALUES (10421, 53, 26.2000008, 15, 0.150000006); -INSERT INTO order_details VALUES (10421, 77, 10.3999996, 10, 0.150000006); -INSERT INTO order_details VALUES (10422, 26, 24.8999996, 2, 0); -INSERT INTO order_details VALUES (10423, 31, 10, 14, 0); -INSERT INTO order_details VALUES (10423, 59, 44, 20, 0); -INSERT INTO order_details VALUES (10424, 35, 14.3999996, 60, 0.200000003); -INSERT INTO order_details VALUES (10424, 38, 210.800003, 49, 0.200000003); -INSERT INTO order_details VALUES (10424, 68, 10, 30, 0.200000003); -INSERT INTO order_details VALUES (10425, 55, 19.2000008, 10, 0.25); -INSERT INTO order_details VALUES (10425, 76, 14.3999996, 20, 0.25); -INSERT INTO order_details VALUES (10426, 56, 30.3999996, 5, 0); -INSERT INTO order_details VALUES (10426, 64, 26.6000004, 7, 0); -INSERT INTO order_details VALUES (10427, 14, 18.6000004, 35, 0); -INSERT INTO order_details VALUES (10428, 46, 9.60000038, 20, 0); -INSERT INTO order_details VALUES (10429, 50, 13, 40, 0); -INSERT INTO order_details VALUES (10429, 63, 35.0999985, 35, 0.25); -INSERT INTO order_details VALUES (10430, 17, 31.2000008, 45, 0.200000003); -INSERT INTO order_details VALUES (10430, 21, 8, 50, 0); -INSERT INTO order_details VALUES (10430, 56, 30.3999996, 30, 0); -INSERT INTO order_details VALUES (10430, 59, 44, 70, 0.200000003); -INSERT INTO order_details VALUES (10431, 17, 31.2000008, 50, 0.25); -INSERT INTO order_details VALUES (10431, 40, 14.6999998, 50, 0.25); -INSERT INTO order_details VALUES (10431, 47, 7.5999999, 30, 0.25); -INSERT INTO order_details VALUES (10432, 26, 24.8999996, 10, 0); -INSERT INTO order_details VALUES (10432, 54, 5.9000001, 40, 0); -INSERT INTO order_details VALUES (10433, 56, 30.3999996, 28, 0); -INSERT INTO order_details VALUES (10434, 11, 16.7999992, 6, 0); -INSERT INTO order_details VALUES (10434, 76, 14.3999996, 18, 0.150000006); -INSERT INTO order_details VALUES (10435, 2, 15.1999998, 10, 0); -INSERT INTO order_details VALUES (10435, 22, 16.7999992, 12, 0); -INSERT INTO order_details VALUES (10435, 72, 27.7999992, 10, 0); -INSERT INTO order_details VALUES (10436, 46, 9.60000038, 5, 0); -INSERT INTO order_details VALUES (10436, 56, 30.3999996, 40, 0.100000001); -INSERT INTO order_details VALUES (10436, 64, 26.6000004, 30, 0.100000001); -INSERT INTO order_details VALUES (10436, 75, 6.19999981, 24, 0.100000001); -INSERT INTO order_details VALUES (10437, 53, 26.2000008, 15, 0); -INSERT INTO order_details VALUES (10438, 19, 7.30000019, 15, 0.200000003); -INSERT INTO order_details VALUES (10438, 34, 11.1999998, 20, 0.200000003); -INSERT INTO order_details VALUES (10438, 57, 15.6000004, 15, 0.200000003); -INSERT INTO order_details VALUES (10439, 12, 30.3999996, 15, 0); -INSERT INTO order_details VALUES (10439, 16, 13.8999996, 16, 0); -INSERT INTO order_details VALUES (10439, 64, 26.6000004, 6, 0); -INSERT INTO order_details VALUES (10439, 74, 8, 30, 0); -INSERT INTO order_details VALUES (10440, 2, 15.1999998, 45, 0.150000006); -INSERT INTO order_details VALUES (10440, 16, 13.8999996, 49, 0.150000006); -INSERT INTO order_details VALUES (10440, 29, 99, 24, 0.150000006); -INSERT INTO order_details VALUES (10440, 61, 22.7999992, 90, 0.150000006); -INSERT INTO order_details VALUES (10441, 27, 35.0999985, 50, 0); -INSERT INTO order_details VALUES (10442, 11, 16.7999992, 30, 0); -INSERT INTO order_details VALUES (10442, 54, 5.9000001, 80, 0); -INSERT INTO order_details VALUES (10442, 66, 13.6000004, 60, 0); -INSERT INTO order_details VALUES (10443, 11, 16.7999992, 6, 0.200000003); -INSERT INTO order_details VALUES (10443, 28, 36.4000015, 12, 0); -INSERT INTO order_details VALUES (10444, 17, 31.2000008, 10, 0); -INSERT INTO order_details VALUES (10444, 26, 24.8999996, 15, 0); -INSERT INTO order_details VALUES (10444, 35, 14.3999996, 8, 0); -INSERT INTO order_details VALUES (10444, 41, 7.69999981, 30, 0); -INSERT INTO order_details VALUES (10445, 39, 14.3999996, 6, 0); -INSERT INTO order_details VALUES (10445, 54, 5.9000001, 15, 0); -INSERT INTO order_details VALUES (10446, 19, 7.30000019, 12, 0.100000001); -INSERT INTO order_details VALUES (10446, 24, 3.5999999, 20, 0.100000001); -INSERT INTO order_details VALUES (10446, 31, 10, 3, 0.100000001); -INSERT INTO order_details VALUES (10446, 52, 5.5999999, 15, 0.100000001); -INSERT INTO order_details VALUES (10447, 19, 7.30000019, 40, 0); -INSERT INTO order_details VALUES (10447, 65, 16.7999992, 35, 0); -INSERT INTO order_details VALUES (10447, 71, 17.2000008, 2, 0); -INSERT INTO order_details VALUES (10448, 26, 24.8999996, 6, 0); -INSERT INTO order_details VALUES (10448, 40, 14.6999998, 20, 0); -INSERT INTO order_details VALUES (10449, 10, 24.7999992, 14, 0); -INSERT INTO order_details VALUES (10449, 52, 5.5999999, 20, 0); -INSERT INTO order_details VALUES (10449, 62, 39.4000015, 35, 0); -INSERT INTO order_details VALUES (10450, 10, 24.7999992, 20, 0.200000003); -INSERT INTO order_details VALUES (10450, 54, 5.9000001, 6, 0.200000003); -INSERT INTO order_details VALUES (10451, 55, 19.2000008, 120, 0.100000001); -INSERT INTO order_details VALUES (10451, 64, 26.6000004, 35, 0.100000001); -INSERT INTO order_details VALUES (10451, 65, 16.7999992, 28, 0.100000001); -INSERT INTO order_details VALUES (10451, 77, 10.3999996, 55, 0.100000001); -INSERT INTO order_details VALUES (10452, 28, 36.4000015, 15, 0); -INSERT INTO order_details VALUES (10452, 44, 15.5, 100, 0.0500000007); -INSERT INTO order_details VALUES (10453, 48, 10.1999998, 15, 0.100000001); -INSERT INTO order_details VALUES (10453, 70, 12, 25, 0.100000001); -INSERT INTO order_details VALUES (10454, 16, 13.8999996, 20, 0.200000003); -INSERT INTO order_details VALUES (10454, 33, 2, 20, 0.200000003); -INSERT INTO order_details VALUES (10454, 46, 9.60000038, 10, 0.200000003); -INSERT INTO order_details VALUES (10455, 39, 14.3999996, 20, 0); -INSERT INTO order_details VALUES (10455, 53, 26.2000008, 50, 0); -INSERT INTO order_details VALUES (10455, 61, 22.7999992, 25, 0); -INSERT INTO order_details VALUES (10455, 71, 17.2000008, 30, 0); -INSERT INTO order_details VALUES (10456, 21, 8, 40, 0.150000006); -INSERT INTO order_details VALUES (10456, 49, 16, 21, 0.150000006); -INSERT INTO order_details VALUES (10457, 59, 44, 36, 0); -INSERT INTO order_details VALUES (10458, 26, 24.8999996, 30, 0); -INSERT INTO order_details VALUES (10458, 28, 36.4000015, 30, 0); -INSERT INTO order_details VALUES (10458, 43, 36.7999992, 20, 0); -INSERT INTO order_details VALUES (10458, 56, 30.3999996, 15, 0); -INSERT INTO order_details VALUES (10458, 71, 17.2000008, 50, 0); -INSERT INTO order_details VALUES (10459, 7, 24, 16, 0.0500000007); -INSERT INTO order_details VALUES (10459, 46, 9.60000038, 20, 0.0500000007); -INSERT INTO order_details VALUES (10459, 72, 27.7999992, 40, 0); -INSERT INTO order_details VALUES (10460, 68, 10, 21, 0.25); -INSERT INTO order_details VALUES (10460, 75, 6.19999981, 4, 0.25); -INSERT INTO order_details VALUES (10461, 21, 8, 40, 0.25); -INSERT INTO order_details VALUES (10461, 30, 20.7000008, 28, 0.25); -INSERT INTO order_details VALUES (10461, 55, 19.2000008, 60, 0.25); -INSERT INTO order_details VALUES (10462, 13, 4.80000019, 1, 0); -INSERT INTO order_details VALUES (10462, 23, 7.19999981, 21, 0); -INSERT INTO order_details VALUES (10463, 19, 7.30000019, 21, 0); -INSERT INTO order_details VALUES (10463, 42, 11.1999998, 50, 0); -INSERT INTO order_details VALUES (10464, 4, 17.6000004, 16, 0.200000003); -INSERT INTO order_details VALUES (10464, 43, 36.7999992, 3, 0); -INSERT INTO order_details VALUES (10464, 56, 30.3999996, 30, 0.200000003); -INSERT INTO order_details VALUES (10464, 60, 27.2000008, 20, 0); -INSERT INTO order_details VALUES (10465, 24, 3.5999999, 25, 0); -INSERT INTO order_details VALUES (10465, 29, 99, 18, 0.100000001); -INSERT INTO order_details VALUES (10465, 40, 14.6999998, 20, 0); -INSERT INTO order_details VALUES (10465, 45, 7.5999999, 30, 0.100000001); -INSERT INTO order_details VALUES (10465, 50, 13, 25, 0); -INSERT INTO order_details VALUES (10466, 11, 16.7999992, 10, 0); -INSERT INTO order_details VALUES (10466, 46, 9.60000038, 5, 0); -INSERT INTO order_details VALUES (10467, 24, 3.5999999, 28, 0); -INSERT INTO order_details VALUES (10467, 25, 11.1999998, 12, 0); -INSERT INTO order_details VALUES (10468, 30, 20.7000008, 8, 0); -INSERT INTO order_details VALUES (10468, 43, 36.7999992, 15, 0); -INSERT INTO order_details VALUES (10469, 2, 15.1999998, 40, 0.150000006); -INSERT INTO order_details VALUES (10469, 16, 13.8999996, 35, 0.150000006); -INSERT INTO order_details VALUES (10469, 44, 15.5, 2, 0.150000006); -INSERT INTO order_details VALUES (10470, 18, 50, 30, 0); -INSERT INTO order_details VALUES (10470, 23, 7.19999981, 15, 0); -INSERT INTO order_details VALUES (10470, 64, 26.6000004, 8, 0); -INSERT INTO order_details VALUES (10471, 7, 24, 30, 0); -INSERT INTO order_details VALUES (10471, 56, 30.3999996, 20, 0); -INSERT INTO order_details VALUES (10472, 24, 3.5999999, 80, 0.0500000007); -INSERT INTO order_details VALUES (10472, 51, 42.4000015, 18, 0); -INSERT INTO order_details VALUES (10473, 33, 2, 12, 0); -INSERT INTO order_details VALUES (10473, 71, 17.2000008, 12, 0); -INSERT INTO order_details VALUES (10474, 14, 18.6000004, 12, 0); -INSERT INTO order_details VALUES (10474, 28, 36.4000015, 18, 0); -INSERT INTO order_details VALUES (10474, 40, 14.6999998, 21, 0); -INSERT INTO order_details VALUES (10474, 75, 6.19999981, 10, 0); -INSERT INTO order_details VALUES (10475, 31, 10, 35, 0.150000006); -INSERT INTO order_details VALUES (10475, 66, 13.6000004, 60, 0.150000006); -INSERT INTO order_details VALUES (10475, 76, 14.3999996, 42, 0.150000006); -INSERT INTO order_details VALUES (10476, 55, 19.2000008, 2, 0.0500000007); -INSERT INTO order_details VALUES (10476, 70, 12, 12, 0); -INSERT INTO order_details VALUES (10477, 1, 14.3999996, 15, 0); -INSERT INTO order_details VALUES (10477, 21, 8, 21, 0.25); -INSERT INTO order_details VALUES (10477, 39, 14.3999996, 20, 0.25); -INSERT INTO order_details VALUES (10478, 10, 24.7999992, 20, 0.0500000007); -INSERT INTO order_details VALUES (10479, 38, 210.800003, 30, 0); -INSERT INTO order_details VALUES (10479, 53, 26.2000008, 28, 0); -INSERT INTO order_details VALUES (10479, 59, 44, 60, 0); -INSERT INTO order_details VALUES (10479, 64, 26.6000004, 30, 0); -INSERT INTO order_details VALUES (10480, 47, 7.5999999, 30, 0); -INSERT INTO order_details VALUES (10480, 59, 44, 12, 0); -INSERT INTO order_details VALUES (10481, 49, 16, 24, 0); -INSERT INTO order_details VALUES (10481, 60, 27.2000008, 40, 0); -INSERT INTO order_details VALUES (10482, 40, 14.6999998, 10, 0); -INSERT INTO order_details VALUES (10483, 34, 11.1999998, 35, 0.0500000007); -INSERT INTO order_details VALUES (10483, 77, 10.3999996, 30, 0.0500000007); -INSERT INTO order_details VALUES (10484, 21, 8, 14, 0); -INSERT INTO order_details VALUES (10484, 40, 14.6999998, 10, 0); -INSERT INTO order_details VALUES (10484, 51, 42.4000015, 3, 0); -INSERT INTO order_details VALUES (10485, 2, 15.1999998, 20, 0.100000001); -INSERT INTO order_details VALUES (10485, 3, 8, 20, 0.100000001); -INSERT INTO order_details VALUES (10485, 55, 19.2000008, 30, 0.100000001); -INSERT INTO order_details VALUES (10485, 70, 12, 60, 0.100000001); -INSERT INTO order_details VALUES (10486, 11, 16.7999992, 5, 0); -INSERT INTO order_details VALUES (10486, 51, 42.4000015, 25, 0); -INSERT INTO order_details VALUES (10486, 74, 8, 16, 0); -INSERT INTO order_details VALUES (10487, 19, 7.30000019, 5, 0); -INSERT INTO order_details VALUES (10487, 26, 24.8999996, 30, 0); -INSERT INTO order_details VALUES (10487, 54, 5.9000001, 24, 0.25); -INSERT INTO order_details VALUES (10488, 59, 44, 30, 0); -INSERT INTO order_details VALUES (10488, 73, 12, 20, 0.200000003); -INSERT INTO order_details VALUES (10489, 11, 16.7999992, 15, 0.25); -INSERT INTO order_details VALUES (10489, 16, 13.8999996, 18, 0); -INSERT INTO order_details VALUES (10490, 59, 44, 60, 0); -INSERT INTO order_details VALUES (10490, 68, 10, 30, 0); -INSERT INTO order_details VALUES (10490, 75, 6.19999981, 36, 0); -INSERT INTO order_details VALUES (10491, 44, 15.5, 15, 0.150000006); -INSERT INTO order_details VALUES (10491, 77, 10.3999996, 7, 0.150000006); -INSERT INTO order_details VALUES (10492, 25, 11.1999998, 60, 0.0500000007); -INSERT INTO order_details VALUES (10492, 42, 11.1999998, 20, 0.0500000007); -INSERT INTO order_details VALUES (10493, 65, 16.7999992, 15, 0.100000001); -INSERT INTO order_details VALUES (10493, 66, 13.6000004, 10, 0.100000001); -INSERT INTO order_details VALUES (10493, 69, 28.7999992, 10, 0.100000001); -INSERT INTO order_details VALUES (10494, 56, 30.3999996, 30, 0); -INSERT INTO order_details VALUES (10495, 23, 7.19999981, 10, 0); -INSERT INTO order_details VALUES (10495, 41, 7.69999981, 20, 0); -INSERT INTO order_details VALUES (10495, 77, 10.3999996, 5, 0); -INSERT INTO order_details VALUES (10496, 31, 10, 20, 0.0500000007); -INSERT INTO order_details VALUES (10497, 56, 30.3999996, 14, 0); -INSERT INTO order_details VALUES (10497, 72, 27.7999992, 25, 0); -INSERT INTO order_details VALUES (10497, 77, 10.3999996, 25, 0); -INSERT INTO order_details VALUES (10498, 24, 4.5, 14, 0); -INSERT INTO order_details VALUES (10498, 40, 18.3999996, 5, 0); -INSERT INTO order_details VALUES (10498, 42, 14, 30, 0); -INSERT INTO order_details VALUES (10499, 28, 45.5999985, 20, 0); -INSERT INTO order_details VALUES (10499, 49, 20, 25, 0); -INSERT INTO order_details VALUES (10500, 15, 15.5, 12, 0.0500000007); -INSERT INTO order_details VALUES (10500, 28, 45.5999985, 8, 0.0500000007); -INSERT INTO order_details VALUES (10501, 54, 7.44999981, 20, 0); -INSERT INTO order_details VALUES (10502, 45, 9.5, 21, 0); -INSERT INTO order_details VALUES (10502, 53, 32.7999992, 6, 0); -INSERT INTO order_details VALUES (10502, 67, 14, 30, 0); -INSERT INTO order_details VALUES (10503, 14, 23.25, 70, 0); -INSERT INTO order_details VALUES (10503, 65, 21.0499992, 20, 0); -INSERT INTO order_details VALUES (10504, 2, 19, 12, 0); -INSERT INTO order_details VALUES (10504, 21, 10, 12, 0); -INSERT INTO order_details VALUES (10504, 53, 32.7999992, 10, 0); -INSERT INTO order_details VALUES (10504, 61, 28.5, 25, 0); -INSERT INTO order_details VALUES (10505, 62, 49.2999992, 3, 0); -INSERT INTO order_details VALUES (10506, 25, 14, 18, 0.100000001); -INSERT INTO order_details VALUES (10506, 70, 15, 14, 0.100000001); -INSERT INTO order_details VALUES (10507, 43, 46, 15, 0.150000006); -INSERT INTO order_details VALUES (10507, 48, 12.75, 15, 0.150000006); -INSERT INTO order_details VALUES (10508, 13, 6, 10, 0); -INSERT INTO order_details VALUES (10508, 39, 18, 10, 0); -INSERT INTO order_details VALUES (10509, 28, 45.5999985, 3, 0); -INSERT INTO order_details VALUES (10510, 29, 123.790001, 36, 0); -INSERT INTO order_details VALUES (10510, 75, 7.75, 36, 0.100000001); -INSERT INTO order_details VALUES (10511, 4, 22, 50, 0.150000006); -INSERT INTO order_details VALUES (10511, 7, 30, 50, 0.150000006); -INSERT INTO order_details VALUES (10511, 8, 40, 10, 0.150000006); -INSERT INTO order_details VALUES (10512, 24, 4.5, 10, 0.150000006); -INSERT INTO order_details VALUES (10512, 46, 12, 9, 0.150000006); -INSERT INTO order_details VALUES (10512, 47, 9.5, 6, 0.150000006); -INSERT INTO order_details VALUES (10512, 60, 34, 12, 0.150000006); -INSERT INTO order_details VALUES (10513, 21, 10, 40, 0.200000003); -INSERT INTO order_details VALUES (10513, 32, 32, 50, 0.200000003); -INSERT INTO order_details VALUES (10513, 61, 28.5, 15, 0.200000003); -INSERT INTO order_details VALUES (10514, 20, 81, 39, 0); -INSERT INTO order_details VALUES (10514, 28, 45.5999985, 35, 0); -INSERT INTO order_details VALUES (10514, 56, 38, 70, 0); -INSERT INTO order_details VALUES (10514, 65, 21.0499992, 39, 0); -INSERT INTO order_details VALUES (10514, 75, 7.75, 50, 0); -INSERT INTO order_details VALUES (10515, 9, 97, 16, 0.150000006); -INSERT INTO order_details VALUES (10515, 16, 17.4500008, 50, 0); -INSERT INTO order_details VALUES (10515, 27, 43.9000015, 120, 0); -INSERT INTO order_details VALUES (10515, 33, 2.5, 16, 0.150000006); -INSERT INTO order_details VALUES (10515, 60, 34, 84, 0.150000006); -INSERT INTO order_details VALUES (10516, 18, 62.5, 25, 0.100000001); -INSERT INTO order_details VALUES (10516, 41, 9.64999962, 80, 0.100000001); -INSERT INTO order_details VALUES (10516, 42, 14, 20, 0); -INSERT INTO order_details VALUES (10517, 52, 7, 6, 0); -INSERT INTO order_details VALUES (10517, 59, 55, 4, 0); -INSERT INTO order_details VALUES (10517, 70, 15, 6, 0); -INSERT INTO order_details VALUES (10518, 24, 4.5, 5, 0); -INSERT INTO order_details VALUES (10518, 38, 263.5, 15, 0); -INSERT INTO order_details VALUES (10518, 44, 19.4500008, 9, 0); -INSERT INTO order_details VALUES (10519, 10, 31, 16, 0.0500000007); -INSERT INTO order_details VALUES (10519, 56, 38, 40, 0); -INSERT INTO order_details VALUES (10519, 60, 34, 10, 0.0500000007); -INSERT INTO order_details VALUES (10520, 24, 4.5, 8, 0); -INSERT INTO order_details VALUES (10520, 53, 32.7999992, 5, 0); -INSERT INTO order_details VALUES (10521, 35, 18, 3, 0); -INSERT INTO order_details VALUES (10521, 41, 9.64999962, 10, 0); -INSERT INTO order_details VALUES (10521, 68, 12.5, 6, 0); -INSERT INTO order_details VALUES (10522, 1, 18, 40, 0.200000003); -INSERT INTO order_details VALUES (10522, 8, 40, 24, 0); -INSERT INTO order_details VALUES (10522, 30, 25.8899994, 20, 0.200000003); -INSERT INTO order_details VALUES (10522, 40, 18.3999996, 25, 0.200000003); -INSERT INTO order_details VALUES (10523, 17, 39, 25, 0.100000001); -INSERT INTO order_details VALUES (10523, 20, 81, 15, 0.100000001); -INSERT INTO order_details VALUES (10523, 37, 26, 18, 0.100000001); -INSERT INTO order_details VALUES (10523, 41, 9.64999962, 6, 0.100000001); -INSERT INTO order_details VALUES (10524, 10, 31, 2, 0); -INSERT INTO order_details VALUES (10524, 30, 25.8899994, 10, 0); -INSERT INTO order_details VALUES (10524, 43, 46, 60, 0); -INSERT INTO order_details VALUES (10524, 54, 7.44999981, 15, 0); -INSERT INTO order_details VALUES (10525, 36, 19, 30, 0); -INSERT INTO order_details VALUES (10525, 40, 18.3999996, 15, 0.100000001); -INSERT INTO order_details VALUES (10526, 1, 18, 8, 0.150000006); -INSERT INTO order_details VALUES (10526, 13, 6, 10, 0); -INSERT INTO order_details VALUES (10526, 56, 38, 30, 0.150000006); -INSERT INTO order_details VALUES (10527, 4, 22, 50, 0.100000001); -INSERT INTO order_details VALUES (10527, 36, 19, 30, 0.100000001); -INSERT INTO order_details VALUES (10528, 11, 21, 3, 0); -INSERT INTO order_details VALUES (10528, 33, 2.5, 8, 0.200000003); -INSERT INTO order_details VALUES (10528, 72, 34.7999992, 9, 0); -INSERT INTO order_details VALUES (10529, 55, 24, 14, 0); -INSERT INTO order_details VALUES (10529, 68, 12.5, 20, 0); -INSERT INTO order_details VALUES (10529, 69, 36, 10, 0); -INSERT INTO order_details VALUES (10530, 17, 39, 40, 0); -INSERT INTO order_details VALUES (10530, 43, 46, 25, 0); -INSERT INTO order_details VALUES (10530, 61, 28.5, 20, 0); -INSERT INTO order_details VALUES (10530, 76, 18, 50, 0); -INSERT INTO order_details VALUES (10531, 59, 55, 2, 0); -INSERT INTO order_details VALUES (10532, 30, 25.8899994, 15, 0); -INSERT INTO order_details VALUES (10532, 66, 17, 24, 0); -INSERT INTO order_details VALUES (10533, 4, 22, 50, 0.0500000007); -INSERT INTO order_details VALUES (10533, 72, 34.7999992, 24, 0); -INSERT INTO order_details VALUES (10533, 73, 15, 24, 0.0500000007); -INSERT INTO order_details VALUES (10534, 30, 25.8899994, 10, 0); -INSERT INTO order_details VALUES (10534, 40, 18.3999996, 10, 0.200000003); -INSERT INTO order_details VALUES (10534, 54, 7.44999981, 10, 0.200000003); -INSERT INTO order_details VALUES (10535, 11, 21, 50, 0.100000001); -INSERT INTO order_details VALUES (10535, 40, 18.3999996, 10, 0.100000001); -INSERT INTO order_details VALUES (10535, 57, 19.5, 5, 0.100000001); -INSERT INTO order_details VALUES (10535, 59, 55, 15, 0.100000001); -INSERT INTO order_details VALUES (10536, 12, 38, 15, 0.25); -INSERT INTO order_details VALUES (10536, 31, 12.5, 20, 0); -INSERT INTO order_details VALUES (10536, 33, 2.5, 30, 0); -INSERT INTO order_details VALUES (10536, 60, 34, 35, 0.25); -INSERT INTO order_details VALUES (10537, 31, 12.5, 30, 0); -INSERT INTO order_details VALUES (10537, 51, 53, 6, 0); -INSERT INTO order_details VALUES (10537, 58, 13.25, 20, 0); -INSERT INTO order_details VALUES (10537, 72, 34.7999992, 21, 0); -INSERT INTO order_details VALUES (10537, 73, 15, 9, 0); -INSERT INTO order_details VALUES (10538, 70, 15, 7, 0); -INSERT INTO order_details VALUES (10538, 72, 34.7999992, 1, 0); -INSERT INTO order_details VALUES (10539, 13, 6, 8, 0); -INSERT INTO order_details VALUES (10539, 21, 10, 15, 0); -INSERT INTO order_details VALUES (10539, 33, 2.5, 15, 0); -INSERT INTO order_details VALUES (10539, 49, 20, 6, 0); -INSERT INTO order_details VALUES (10540, 3, 10, 60, 0); -INSERT INTO order_details VALUES (10540, 26, 31.2299995, 40, 0); -INSERT INTO order_details VALUES (10540, 38, 263.5, 30, 0); -INSERT INTO order_details VALUES (10540, 68, 12.5, 35, 0); -INSERT INTO order_details VALUES (10541, 24, 4.5, 35, 0.100000001); -INSERT INTO order_details VALUES (10541, 38, 263.5, 4, 0.100000001); -INSERT INTO order_details VALUES (10541, 65, 21.0499992, 36, 0.100000001); -INSERT INTO order_details VALUES (10541, 71, 21.5, 9, 0.100000001); -INSERT INTO order_details VALUES (10542, 11, 21, 15, 0.0500000007); -INSERT INTO order_details VALUES (10542, 54, 7.44999981, 24, 0.0500000007); -INSERT INTO order_details VALUES (10543, 12, 38, 30, 0.150000006); -INSERT INTO order_details VALUES (10543, 23, 9, 70, 0.150000006); -INSERT INTO order_details VALUES (10544, 28, 45.5999985, 7, 0); -INSERT INTO order_details VALUES (10544, 67, 14, 7, 0); -INSERT INTO order_details VALUES (10545, 11, 21, 10, 0); -INSERT INTO order_details VALUES (10546, 7, 30, 10, 0); -INSERT INTO order_details VALUES (10546, 35, 18, 30, 0); -INSERT INTO order_details VALUES (10546, 62, 49.2999992, 40, 0); -INSERT INTO order_details VALUES (10547, 32, 32, 24, 0.150000006); -INSERT INTO order_details VALUES (10547, 36, 19, 60, 0); -INSERT INTO order_details VALUES (10548, 34, 14, 10, 0.25); -INSERT INTO order_details VALUES (10548, 41, 9.64999962, 14, 0); -INSERT INTO order_details VALUES (10549, 31, 12.5, 55, 0.150000006); -INSERT INTO order_details VALUES (10549, 45, 9.5, 100, 0.150000006); -INSERT INTO order_details VALUES (10549, 51, 53, 48, 0.150000006); -INSERT INTO order_details VALUES (10550, 17, 39, 8, 0.100000001); -INSERT INTO order_details VALUES (10550, 19, 9.19999981, 10, 0); -INSERT INTO order_details VALUES (10550, 21, 10, 6, 0.100000001); -INSERT INTO order_details VALUES (10550, 61, 28.5, 10, 0.100000001); -INSERT INTO order_details VALUES (10551, 16, 17.4500008, 40, 0.150000006); -INSERT INTO order_details VALUES (10551, 35, 18, 20, 0.150000006); -INSERT INTO order_details VALUES (10551, 44, 19.4500008, 40, 0); -INSERT INTO order_details VALUES (10552, 69, 36, 18, 0); -INSERT INTO order_details VALUES (10552, 75, 7.75, 30, 0); -INSERT INTO order_details VALUES (10553, 11, 21, 15, 0); -INSERT INTO order_details VALUES (10553, 16, 17.4500008, 14, 0); -INSERT INTO order_details VALUES (10553, 22, 21, 24, 0); -INSERT INTO order_details VALUES (10553, 31, 12.5, 30, 0); -INSERT INTO order_details VALUES (10553, 35, 18, 6, 0); -INSERT INTO order_details VALUES (10554, 16, 17.4500008, 30, 0.0500000007); -INSERT INTO order_details VALUES (10554, 23, 9, 20, 0.0500000007); -INSERT INTO order_details VALUES (10554, 62, 49.2999992, 20, 0.0500000007); -INSERT INTO order_details VALUES (10554, 77, 13, 10, 0.0500000007); -INSERT INTO order_details VALUES (10555, 14, 23.25, 30, 0.200000003); -INSERT INTO order_details VALUES (10555, 19, 9.19999981, 35, 0.200000003); -INSERT INTO order_details VALUES (10555, 24, 4.5, 18, 0.200000003); -INSERT INTO order_details VALUES (10555, 51, 53, 20, 0.200000003); -INSERT INTO order_details VALUES (10555, 56, 38, 40, 0.200000003); -INSERT INTO order_details VALUES (10556, 72, 34.7999992, 24, 0); -INSERT INTO order_details VALUES (10557, 64, 33.25, 30, 0); -INSERT INTO order_details VALUES (10557, 75, 7.75, 20, 0); -INSERT INTO order_details VALUES (10558, 47, 9.5, 25, 0); -INSERT INTO order_details VALUES (10558, 51, 53, 20, 0); -INSERT INTO order_details VALUES (10558, 52, 7, 30, 0); -INSERT INTO order_details VALUES (10558, 53, 32.7999992, 18, 0); -INSERT INTO order_details VALUES (10558, 73, 15, 3, 0); -INSERT INTO order_details VALUES (10559, 41, 9.64999962, 12, 0.0500000007); -INSERT INTO order_details VALUES (10559, 55, 24, 18, 0.0500000007); -INSERT INTO order_details VALUES (10560, 30, 25.8899994, 20, 0); -INSERT INTO order_details VALUES (10560, 62, 49.2999992, 15, 0.25); -INSERT INTO order_details VALUES (10561, 44, 19.4500008, 10, 0); -INSERT INTO order_details VALUES (10561, 51, 53, 50, 0); -INSERT INTO order_details VALUES (10562, 33, 2.5, 20, 0.100000001); -INSERT INTO order_details VALUES (10562, 62, 49.2999992, 10, 0.100000001); -INSERT INTO order_details VALUES (10563, 36, 19, 25, 0); -INSERT INTO order_details VALUES (10563, 52, 7, 70, 0); -INSERT INTO order_details VALUES (10564, 17, 39, 16, 0.0500000007); -INSERT INTO order_details VALUES (10564, 31, 12.5, 6, 0.0500000007); -INSERT INTO order_details VALUES (10564, 55, 24, 25, 0.0500000007); -INSERT INTO order_details VALUES (10565, 24, 4.5, 25, 0.100000001); -INSERT INTO order_details VALUES (10565, 64, 33.25, 18, 0.100000001); -INSERT INTO order_details VALUES (10566, 11, 21, 35, 0.150000006); -INSERT INTO order_details VALUES (10566, 18, 62.5, 18, 0.150000006); -INSERT INTO order_details VALUES (10566, 76, 18, 10, 0); -INSERT INTO order_details VALUES (10567, 31, 12.5, 60, 0.200000003); -INSERT INTO order_details VALUES (10567, 51, 53, 3, 0); -INSERT INTO order_details VALUES (10567, 59, 55, 40, 0.200000003); -INSERT INTO order_details VALUES (10568, 10, 31, 5, 0); -INSERT INTO order_details VALUES (10569, 31, 12.5, 35, 0.200000003); -INSERT INTO order_details VALUES (10569, 76, 18, 30, 0); -INSERT INTO order_details VALUES (10570, 11, 21, 15, 0.0500000007); -INSERT INTO order_details VALUES (10570, 56, 38, 60, 0.0500000007); -INSERT INTO order_details VALUES (10571, 14, 23.25, 11, 0.150000006); -INSERT INTO order_details VALUES (10571, 42, 14, 28, 0.150000006); -INSERT INTO order_details VALUES (10572, 16, 17.4500008, 12, 0.100000001); -INSERT INTO order_details VALUES (10572, 32, 32, 10, 0.100000001); -INSERT INTO order_details VALUES (10572, 40, 18.3999996, 50, 0); -INSERT INTO order_details VALUES (10572, 75, 7.75, 15, 0.100000001); -INSERT INTO order_details VALUES (10573, 17, 39, 18, 0); -INSERT INTO order_details VALUES (10573, 34, 14, 40, 0); -INSERT INTO order_details VALUES (10573, 53, 32.7999992, 25, 0); -INSERT INTO order_details VALUES (10574, 33, 2.5, 14, 0); -INSERT INTO order_details VALUES (10574, 40, 18.3999996, 2, 0); -INSERT INTO order_details VALUES (10574, 62, 49.2999992, 10, 0); -INSERT INTO order_details VALUES (10574, 64, 33.25, 6, 0); -INSERT INTO order_details VALUES (10575, 59, 55, 12, 0); -INSERT INTO order_details VALUES (10575, 63, 43.9000015, 6, 0); -INSERT INTO order_details VALUES (10575, 72, 34.7999992, 30, 0); -INSERT INTO order_details VALUES (10575, 76, 18, 10, 0); -INSERT INTO order_details VALUES (10576, 1, 18, 10, 0); -INSERT INTO order_details VALUES (10576, 31, 12.5, 20, 0); -INSERT INTO order_details VALUES (10576, 44, 19.4500008, 21, 0); -INSERT INTO order_details VALUES (10577, 39, 18, 10, 0); -INSERT INTO order_details VALUES (10577, 75, 7.75, 20, 0); -INSERT INTO order_details VALUES (10577, 77, 13, 18, 0); -INSERT INTO order_details VALUES (10578, 35, 18, 20, 0); -INSERT INTO order_details VALUES (10578, 57, 19.5, 6, 0); -INSERT INTO order_details VALUES (10579, 15, 15.5, 10, 0); -INSERT INTO order_details VALUES (10579, 75, 7.75, 21, 0); -INSERT INTO order_details VALUES (10580, 14, 23.25, 15, 0.0500000007); -INSERT INTO order_details VALUES (10580, 41, 9.64999962, 9, 0.0500000007); -INSERT INTO order_details VALUES (10580, 65, 21.0499992, 30, 0.0500000007); -INSERT INTO order_details VALUES (10581, 75, 7.75, 50, 0.200000003); -INSERT INTO order_details VALUES (10582, 57, 19.5, 4, 0); -INSERT INTO order_details VALUES (10582, 76, 18, 14, 0); -INSERT INTO order_details VALUES (10583, 29, 123.790001, 10, 0); -INSERT INTO order_details VALUES (10583, 60, 34, 24, 0.150000006); -INSERT INTO order_details VALUES (10583, 69, 36, 10, 0.150000006); -INSERT INTO order_details VALUES (10584, 31, 12.5, 50, 0.0500000007); -INSERT INTO order_details VALUES (10585, 47, 9.5, 15, 0); -INSERT INTO order_details VALUES (10586, 52, 7, 4, 0.150000006); -INSERT INTO order_details VALUES (10587, 26, 31.2299995, 6, 0); -INSERT INTO order_details VALUES (10587, 35, 18, 20, 0); -INSERT INTO order_details VALUES (10587, 77, 13, 20, 0); -INSERT INTO order_details VALUES (10588, 18, 62.5, 40, 0.200000003); -INSERT INTO order_details VALUES (10588, 42, 14, 100, 0.200000003); -INSERT INTO order_details VALUES (10589, 35, 18, 4, 0); -INSERT INTO order_details VALUES (10590, 1, 18, 20, 0); -INSERT INTO order_details VALUES (10590, 77, 13, 60, 0.0500000007); -INSERT INTO order_details VALUES (10591, 3, 10, 14, 0); -INSERT INTO order_details VALUES (10591, 7, 30, 10, 0); -INSERT INTO order_details VALUES (10591, 54, 7.44999981, 50, 0); -INSERT INTO order_details VALUES (10592, 15, 15.5, 25, 0.0500000007); -INSERT INTO order_details VALUES (10592, 26, 31.2299995, 5, 0.0500000007); -INSERT INTO order_details VALUES (10593, 20, 81, 21, 0.200000003); -INSERT INTO order_details VALUES (10593, 69, 36, 20, 0.200000003); -INSERT INTO order_details VALUES (10593, 76, 18, 4, 0.200000003); -INSERT INTO order_details VALUES (10594, 52, 7, 24, 0); -INSERT INTO order_details VALUES (10594, 58, 13.25, 30, 0); -INSERT INTO order_details VALUES (10595, 35, 18, 30, 0.25); -INSERT INTO order_details VALUES (10595, 61, 28.5, 120, 0.25); -INSERT INTO order_details VALUES (10595, 69, 36, 65, 0.25); -INSERT INTO order_details VALUES (10596, 56, 38, 5, 0.200000003); -INSERT INTO order_details VALUES (10596, 63, 43.9000015, 24, 0.200000003); -INSERT INTO order_details VALUES (10596, 75, 7.75, 30, 0.200000003); -INSERT INTO order_details VALUES (10597, 24, 4.5, 35, 0.200000003); -INSERT INTO order_details VALUES (10597, 57, 19.5, 20, 0); -INSERT INTO order_details VALUES (10597, 65, 21.0499992, 12, 0.200000003); -INSERT INTO order_details VALUES (10598, 27, 43.9000015, 50, 0); -INSERT INTO order_details VALUES (10598, 71, 21.5, 9, 0); -INSERT INTO order_details VALUES (10599, 62, 49.2999992, 10, 0); -INSERT INTO order_details VALUES (10600, 54, 7.44999981, 4, 0); -INSERT INTO order_details VALUES (10600, 73, 15, 30, 0); -INSERT INTO order_details VALUES (10601, 13, 6, 60, 0); -INSERT INTO order_details VALUES (10601, 59, 55, 35, 0); -INSERT INTO order_details VALUES (10602, 77, 13, 5, 0.25); -INSERT INTO order_details VALUES (10603, 22, 21, 48, 0); -INSERT INTO order_details VALUES (10603, 49, 20, 25, 0.0500000007); -INSERT INTO order_details VALUES (10604, 48, 12.75, 6, 0.100000001); -INSERT INTO order_details VALUES (10604, 76, 18, 10, 0.100000001); -INSERT INTO order_details VALUES (10605, 16, 17.4500008, 30, 0.0500000007); -INSERT INTO order_details VALUES (10605, 59, 55, 20, 0.0500000007); -INSERT INTO order_details VALUES (10605, 60, 34, 70, 0.0500000007); -INSERT INTO order_details VALUES (10605, 71, 21.5, 15, 0.0500000007); -INSERT INTO order_details VALUES (10606, 4, 22, 20, 0.200000003); -INSERT INTO order_details VALUES (10606, 55, 24, 20, 0.200000003); -INSERT INTO order_details VALUES (10606, 62, 49.2999992, 10, 0.200000003); -INSERT INTO order_details VALUES (10607, 7, 30, 45, 0); -INSERT INTO order_details VALUES (10607, 17, 39, 100, 0); -INSERT INTO order_details VALUES (10607, 33, 2.5, 14, 0); -INSERT INTO order_details VALUES (10607, 40, 18.3999996, 42, 0); -INSERT INTO order_details VALUES (10607, 72, 34.7999992, 12, 0); -INSERT INTO order_details VALUES (10608, 56, 38, 28, 0); -INSERT INTO order_details VALUES (10609, 1, 18, 3, 0); -INSERT INTO order_details VALUES (10609, 10, 31, 10, 0); -INSERT INTO order_details VALUES (10609, 21, 10, 6, 0); -INSERT INTO order_details VALUES (10610, 36, 19, 21, 0.25); -INSERT INTO order_details VALUES (10611, 1, 18, 6, 0); -INSERT INTO order_details VALUES (10611, 2, 19, 10, 0); -INSERT INTO order_details VALUES (10611, 60, 34, 15, 0); -INSERT INTO order_details VALUES (10612, 10, 31, 70, 0); -INSERT INTO order_details VALUES (10612, 36, 19, 55, 0); -INSERT INTO order_details VALUES (10612, 49, 20, 18, 0); -INSERT INTO order_details VALUES (10612, 60, 34, 40, 0); -INSERT INTO order_details VALUES (10612, 76, 18, 80, 0); -INSERT INTO order_details VALUES (10613, 13, 6, 8, 0.100000001); -INSERT INTO order_details VALUES (10613, 75, 7.75, 40, 0); -INSERT INTO order_details VALUES (10614, 11, 21, 14, 0); -INSERT INTO order_details VALUES (10614, 21, 10, 8, 0); -INSERT INTO order_details VALUES (10614, 39, 18, 5, 0); -INSERT INTO order_details VALUES (10615, 55, 24, 5, 0); -INSERT INTO order_details VALUES (10616, 38, 263.5, 15, 0.0500000007); -INSERT INTO order_details VALUES (10616, 56, 38, 14, 0); -INSERT INTO order_details VALUES (10616, 70, 15, 15, 0.0500000007); -INSERT INTO order_details VALUES (10616, 71, 21.5, 15, 0.0500000007); -INSERT INTO order_details VALUES (10617, 59, 55, 30, 0.150000006); -INSERT INTO order_details VALUES (10618, 6, 25, 70, 0); -INSERT INTO order_details VALUES (10618, 56, 38, 20, 0); -INSERT INTO order_details VALUES (10618, 68, 12.5, 15, 0); -INSERT INTO order_details VALUES (10619, 21, 10, 42, 0); -INSERT INTO order_details VALUES (10619, 22, 21, 40, 0); -INSERT INTO order_details VALUES (10620, 24, 4.5, 5, 0); -INSERT INTO order_details VALUES (10620, 52, 7, 5, 0); -INSERT INTO order_details VALUES (10621, 19, 9.19999981, 5, 0); -INSERT INTO order_details VALUES (10621, 23, 9, 10, 0); -INSERT INTO order_details VALUES (10621, 70, 15, 20, 0); -INSERT INTO order_details VALUES (10621, 71, 21.5, 15, 0); -INSERT INTO order_details VALUES (10622, 2, 19, 20, 0); -INSERT INTO order_details VALUES (10622, 68, 12.5, 18, 0.200000003); -INSERT INTO order_details VALUES (10623, 14, 23.25, 21, 0); -INSERT INTO order_details VALUES (10623, 19, 9.19999981, 15, 0.100000001); -INSERT INTO order_details VALUES (10623, 21, 10, 25, 0.100000001); -INSERT INTO order_details VALUES (10623, 24, 4.5, 3, 0); -INSERT INTO order_details VALUES (10623, 35, 18, 30, 0.100000001); -INSERT INTO order_details VALUES (10624, 28, 45.5999985, 10, 0); -INSERT INTO order_details VALUES (10624, 29, 123.790001, 6, 0); -INSERT INTO order_details VALUES (10624, 44, 19.4500008, 10, 0); -INSERT INTO order_details VALUES (10625, 14, 23.25, 3, 0); -INSERT INTO order_details VALUES (10625, 42, 14, 5, 0); -INSERT INTO order_details VALUES (10625, 60, 34, 10, 0); -INSERT INTO order_details VALUES (10626, 53, 32.7999992, 12, 0); -INSERT INTO order_details VALUES (10626, 60, 34, 20, 0); -INSERT INTO order_details VALUES (10626, 71, 21.5, 20, 0); -INSERT INTO order_details VALUES (10627, 62, 49.2999992, 15, 0); -INSERT INTO order_details VALUES (10627, 73, 15, 35, 0.150000006); -INSERT INTO order_details VALUES (10628, 1, 18, 25, 0); -INSERT INTO order_details VALUES (10629, 29, 123.790001, 20, 0); -INSERT INTO order_details VALUES (10629, 64, 33.25, 9, 0); -INSERT INTO order_details VALUES (10630, 55, 24, 12, 0.0500000007); -INSERT INTO order_details VALUES (10630, 76, 18, 35, 0); -INSERT INTO order_details VALUES (10631, 75, 7.75, 8, 0.100000001); -INSERT INTO order_details VALUES (10632, 2, 19, 30, 0.0500000007); -INSERT INTO order_details VALUES (10632, 33, 2.5, 20, 0.0500000007); -INSERT INTO order_details VALUES (10633, 12, 38, 36, 0.150000006); -INSERT INTO order_details VALUES (10633, 13, 6, 13, 0.150000006); -INSERT INTO order_details VALUES (10633, 26, 31.2299995, 35, 0.150000006); -INSERT INTO order_details VALUES (10633, 62, 49.2999992, 80, 0.150000006); -INSERT INTO order_details VALUES (10634, 7, 30, 35, 0); -INSERT INTO order_details VALUES (10634, 18, 62.5, 50, 0); -INSERT INTO order_details VALUES (10634, 51, 53, 15, 0); -INSERT INTO order_details VALUES (10634, 75, 7.75, 2, 0); -INSERT INTO order_details VALUES (10635, 4, 22, 10, 0.100000001); -INSERT INTO order_details VALUES (10635, 5, 21.3500004, 15, 0.100000001); -INSERT INTO order_details VALUES (10635, 22, 21, 40, 0); -INSERT INTO order_details VALUES (10636, 4, 22, 25, 0); -INSERT INTO order_details VALUES (10636, 58, 13.25, 6, 0); -INSERT INTO order_details VALUES (10637, 11, 21, 10, 0); -INSERT INTO order_details VALUES (10637, 50, 16.25, 25, 0.0500000007); -INSERT INTO order_details VALUES (10637, 56, 38, 60, 0.0500000007); -INSERT INTO order_details VALUES (10638, 45, 9.5, 20, 0); -INSERT INTO order_details VALUES (10638, 65, 21.0499992, 21, 0); -INSERT INTO order_details VALUES (10638, 72, 34.7999992, 60, 0); -INSERT INTO order_details VALUES (10639, 18, 62.5, 8, 0); -INSERT INTO order_details VALUES (10640, 69, 36, 20, 0.25); -INSERT INTO order_details VALUES (10640, 70, 15, 15, 0.25); -INSERT INTO order_details VALUES (10641, 2, 19, 50, 0); -INSERT INTO order_details VALUES (10641, 40, 18.3999996, 60, 0); -INSERT INTO order_details VALUES (10642, 21, 10, 30, 0.200000003); -INSERT INTO order_details VALUES (10642, 61, 28.5, 20, 0.200000003); -INSERT INTO order_details VALUES (10643, 28, 45.5999985, 15, 0.25); -INSERT INTO order_details VALUES (10643, 39, 18, 21, 0.25); -INSERT INTO order_details VALUES (10643, 46, 12, 2, 0.25); -INSERT INTO order_details VALUES (10644, 18, 62.5, 4, 0.100000001); -INSERT INTO order_details VALUES (10644, 43, 46, 20, 0); -INSERT INTO order_details VALUES (10644, 46, 12, 21, 0.100000001); -INSERT INTO order_details VALUES (10645, 18, 62.5, 20, 0); -INSERT INTO order_details VALUES (10645, 36, 19, 15, 0); -INSERT INTO order_details VALUES (10646, 1, 18, 15, 0.25); -INSERT INTO order_details VALUES (10646, 10, 31, 18, 0.25); -INSERT INTO order_details VALUES (10646, 71, 21.5, 30, 0.25); -INSERT INTO order_details VALUES (10646, 77, 13, 35, 0.25); -INSERT INTO order_details VALUES (10647, 19, 9.19999981, 30, 0); -INSERT INTO order_details VALUES (10647, 39, 18, 20, 0); -INSERT INTO order_details VALUES (10648, 22, 21, 15, 0); -INSERT INTO order_details VALUES (10648, 24, 4.5, 15, 0.150000006); -INSERT INTO order_details VALUES (10649, 28, 45.5999985, 20, 0); -INSERT INTO order_details VALUES (10649, 72, 34.7999992, 15, 0); -INSERT INTO order_details VALUES (10650, 30, 25.8899994, 30, 0); -INSERT INTO order_details VALUES (10650, 53, 32.7999992, 25, 0.0500000007); -INSERT INTO order_details VALUES (10650, 54, 7.44999981, 30, 0); -INSERT INTO order_details VALUES (10651, 19, 9.19999981, 12, 0.25); -INSERT INTO order_details VALUES (10651, 22, 21, 20, 0.25); -INSERT INTO order_details VALUES (10652, 30, 25.8899994, 2, 0.25); -INSERT INTO order_details VALUES (10652, 42, 14, 20, 0); -INSERT INTO order_details VALUES (10653, 16, 17.4500008, 30, 0.100000001); -INSERT INTO order_details VALUES (10653, 60, 34, 20, 0.100000001); -INSERT INTO order_details VALUES (10654, 4, 22, 12, 0.100000001); -INSERT INTO order_details VALUES (10654, 39, 18, 20, 0.100000001); -INSERT INTO order_details VALUES (10654, 54, 7.44999981, 6, 0.100000001); -INSERT INTO order_details VALUES (10655, 41, 9.64999962, 20, 0.200000003); -INSERT INTO order_details VALUES (10656, 14, 23.25, 3, 0.100000001); -INSERT INTO order_details VALUES (10656, 44, 19.4500008, 28, 0.100000001); -INSERT INTO order_details VALUES (10656, 47, 9.5, 6, 0.100000001); -INSERT INTO order_details VALUES (10657, 15, 15.5, 50, 0); -INSERT INTO order_details VALUES (10657, 41, 9.64999962, 24, 0); -INSERT INTO order_details VALUES (10657, 46, 12, 45, 0); -INSERT INTO order_details VALUES (10657, 47, 9.5, 10, 0); -INSERT INTO order_details VALUES (10657, 56, 38, 45, 0); -INSERT INTO order_details VALUES (10657, 60, 34, 30, 0); -INSERT INTO order_details VALUES (10658, 21, 10, 60, 0); -INSERT INTO order_details VALUES (10658, 40, 18.3999996, 70, 0.0500000007); -INSERT INTO order_details VALUES (10658, 60, 34, 55, 0.0500000007); -INSERT INTO order_details VALUES (10658, 77, 13, 70, 0.0500000007); -INSERT INTO order_details VALUES (10659, 31, 12.5, 20, 0.0500000007); -INSERT INTO order_details VALUES (10659, 40, 18.3999996, 24, 0.0500000007); -INSERT INTO order_details VALUES (10659, 70, 15, 40, 0.0500000007); -INSERT INTO order_details VALUES (10660, 20, 81, 21, 0); -INSERT INTO order_details VALUES (10661, 39, 18, 3, 0.200000003); -INSERT INTO order_details VALUES (10661, 58, 13.25, 49, 0.200000003); -INSERT INTO order_details VALUES (10662, 68, 12.5, 10, 0); -INSERT INTO order_details VALUES (10663, 40, 18.3999996, 30, 0.0500000007); -INSERT INTO order_details VALUES (10663, 42, 14, 30, 0.0500000007); -INSERT INTO order_details VALUES (10663, 51, 53, 20, 0.0500000007); -INSERT INTO order_details VALUES (10664, 10, 31, 24, 0.150000006); -INSERT INTO order_details VALUES (10664, 56, 38, 12, 0.150000006); -INSERT INTO order_details VALUES (10664, 65, 21.0499992, 15, 0.150000006); -INSERT INTO order_details VALUES (10665, 51, 53, 20, 0); -INSERT INTO order_details VALUES (10665, 59, 55, 1, 0); -INSERT INTO order_details VALUES (10665, 76, 18, 10, 0); -INSERT INTO order_details VALUES (10666, 29, 123.790001, 36, 0); -INSERT INTO order_details VALUES (10666, 65, 21.0499992, 10, 0); -INSERT INTO order_details VALUES (10667, 69, 36, 45, 0.200000003); -INSERT INTO order_details VALUES (10667, 71, 21.5, 14, 0.200000003); -INSERT INTO order_details VALUES (10668, 31, 12.5, 8, 0.100000001); -INSERT INTO order_details VALUES (10668, 55, 24, 4, 0.100000001); -INSERT INTO order_details VALUES (10668, 64, 33.25, 15, 0.100000001); -INSERT INTO order_details VALUES (10669, 36, 19, 30, 0); -INSERT INTO order_details VALUES (10670, 23, 9, 32, 0); -INSERT INTO order_details VALUES (10670, 46, 12, 60, 0); -INSERT INTO order_details VALUES (10670, 67, 14, 25, 0); -INSERT INTO order_details VALUES (10670, 73, 15, 50, 0); -INSERT INTO order_details VALUES (10670, 75, 7.75, 25, 0); -INSERT INTO order_details VALUES (10671, 16, 17.4500008, 10, 0); -INSERT INTO order_details VALUES (10671, 62, 49.2999992, 10, 0); -INSERT INTO order_details VALUES (10671, 65, 21.0499992, 12, 0); -INSERT INTO order_details VALUES (10672, 38, 263.5, 15, 0.100000001); -INSERT INTO order_details VALUES (10672, 71, 21.5, 12, 0); -INSERT INTO order_details VALUES (10673, 16, 17.4500008, 3, 0); -INSERT INTO order_details VALUES (10673, 42, 14, 6, 0); -INSERT INTO order_details VALUES (10673, 43, 46, 6, 0); -INSERT INTO order_details VALUES (10674, 23, 9, 5, 0); -INSERT INTO order_details VALUES (10675, 14, 23.25, 30, 0); -INSERT INTO order_details VALUES (10675, 53, 32.7999992, 10, 0); -INSERT INTO order_details VALUES (10675, 58, 13.25, 30, 0); -INSERT INTO order_details VALUES (10676, 10, 31, 2, 0); -INSERT INTO order_details VALUES (10676, 19, 9.19999981, 7, 0); -INSERT INTO order_details VALUES (10676, 44, 19.4500008, 21, 0); -INSERT INTO order_details VALUES (10677, 26, 31.2299995, 30, 0.150000006); -INSERT INTO order_details VALUES (10677, 33, 2.5, 8, 0.150000006); -INSERT INTO order_details VALUES (10678, 12, 38, 100, 0); -INSERT INTO order_details VALUES (10678, 33, 2.5, 30, 0); -INSERT INTO order_details VALUES (10678, 41, 9.64999962, 120, 0); -INSERT INTO order_details VALUES (10678, 54, 7.44999981, 30, 0); -INSERT INTO order_details VALUES (10679, 59, 55, 12, 0); -INSERT INTO order_details VALUES (10680, 16, 17.4500008, 50, 0.25); -INSERT INTO order_details VALUES (10680, 31, 12.5, 20, 0.25); -INSERT INTO order_details VALUES (10680, 42, 14, 40, 0.25); -INSERT INTO order_details VALUES (10681, 19, 9.19999981, 30, 0.100000001); -INSERT INTO order_details VALUES (10681, 21, 10, 12, 0.100000001); -INSERT INTO order_details VALUES (10681, 64, 33.25, 28, 0); -INSERT INTO order_details VALUES (10682, 33, 2.5, 30, 0); -INSERT INTO order_details VALUES (10682, 66, 17, 4, 0); -INSERT INTO order_details VALUES (10682, 75, 7.75, 30, 0); -INSERT INTO order_details VALUES (10683, 52, 7, 9, 0); -INSERT INTO order_details VALUES (10684, 40, 18.3999996, 20, 0); -INSERT INTO order_details VALUES (10684, 47, 9.5, 40, 0); -INSERT INTO order_details VALUES (10684, 60, 34, 30, 0); -INSERT INTO order_details VALUES (10685, 10, 31, 20, 0); -INSERT INTO order_details VALUES (10685, 41, 9.64999962, 4, 0); -INSERT INTO order_details VALUES (10685, 47, 9.5, 15, 0); -INSERT INTO order_details VALUES (10686, 17, 39, 30, 0.200000003); -INSERT INTO order_details VALUES (10686, 26, 31.2299995, 15, 0); -INSERT INTO order_details VALUES (10687, 9, 97, 50, 0.25); -INSERT INTO order_details VALUES (10687, 29, 123.790001, 10, 0); -INSERT INTO order_details VALUES (10687, 36, 19, 6, 0.25); -INSERT INTO order_details VALUES (10688, 10, 31, 18, 0.100000001); -INSERT INTO order_details VALUES (10688, 28, 45.5999985, 60, 0.100000001); -INSERT INTO order_details VALUES (10688, 34, 14, 14, 0); -INSERT INTO order_details VALUES (10689, 1, 18, 35, 0.25); -INSERT INTO order_details VALUES (10690, 56, 38, 20, 0.25); -INSERT INTO order_details VALUES (10690, 77, 13, 30, 0.25); -INSERT INTO order_details VALUES (10691, 1, 18, 30, 0); -INSERT INTO order_details VALUES (10691, 29, 123.790001, 40, 0); -INSERT INTO order_details VALUES (10691, 43, 46, 40, 0); -INSERT INTO order_details VALUES (10691, 44, 19.4500008, 24, 0); -INSERT INTO order_details VALUES (10691, 62, 49.2999992, 48, 0); -INSERT INTO order_details VALUES (10692, 63, 43.9000015, 20, 0); -INSERT INTO order_details VALUES (10693, 9, 97, 6, 0); -INSERT INTO order_details VALUES (10693, 54, 7.44999981, 60, 0.150000006); -INSERT INTO order_details VALUES (10693, 69, 36, 30, 0.150000006); -INSERT INTO order_details VALUES (10693, 73, 15, 15, 0.150000006); -INSERT INTO order_details VALUES (10694, 7, 30, 90, 0); -INSERT INTO order_details VALUES (10694, 59, 55, 25, 0); -INSERT INTO order_details VALUES (10694, 70, 15, 50, 0); -INSERT INTO order_details VALUES (10695, 8, 40, 10, 0); -INSERT INTO order_details VALUES (10695, 12, 38, 4, 0); -INSERT INTO order_details VALUES (10695, 24, 4.5, 20, 0); -INSERT INTO order_details VALUES (10696, 17, 39, 20, 0); -INSERT INTO order_details VALUES (10696, 46, 12, 18, 0); -INSERT INTO order_details VALUES (10697, 19, 9.19999981, 7, 0.25); -INSERT INTO order_details VALUES (10697, 35, 18, 9, 0.25); -INSERT INTO order_details VALUES (10697, 58, 13.25, 30, 0.25); -INSERT INTO order_details VALUES (10697, 70, 15, 30, 0.25); -INSERT INTO order_details VALUES (10698, 11, 21, 15, 0); -INSERT INTO order_details VALUES (10698, 17, 39, 8, 0.0500000007); -INSERT INTO order_details VALUES (10698, 29, 123.790001, 12, 0.0500000007); -INSERT INTO order_details VALUES (10698, 65, 21.0499992, 65, 0.0500000007); -INSERT INTO order_details VALUES (10698, 70, 15, 8, 0.0500000007); -INSERT INTO order_details VALUES (10699, 47, 9.5, 12, 0); -INSERT INTO order_details VALUES (10700, 1, 18, 5, 0.200000003); -INSERT INTO order_details VALUES (10700, 34, 14, 12, 0.200000003); -INSERT INTO order_details VALUES (10700, 68, 12.5, 40, 0.200000003); -INSERT INTO order_details VALUES (10700, 71, 21.5, 60, 0.200000003); -INSERT INTO order_details VALUES (10701, 59, 55, 42, 0.150000006); -INSERT INTO order_details VALUES (10701, 71, 21.5, 20, 0.150000006); -INSERT INTO order_details VALUES (10701, 76, 18, 35, 0.150000006); -INSERT INTO order_details VALUES (10702, 3, 10, 6, 0); -INSERT INTO order_details VALUES (10702, 76, 18, 15, 0); -INSERT INTO order_details VALUES (10703, 2, 19, 5, 0); -INSERT INTO order_details VALUES (10703, 59, 55, 35, 0); -INSERT INTO order_details VALUES (10703, 73, 15, 35, 0); -INSERT INTO order_details VALUES (10704, 4, 22, 6, 0); -INSERT INTO order_details VALUES (10704, 24, 4.5, 35, 0); -INSERT INTO order_details VALUES (10704, 48, 12.75, 24, 0); -INSERT INTO order_details VALUES (10705, 31, 12.5, 20, 0); -INSERT INTO order_details VALUES (10705, 32, 32, 4, 0); -INSERT INTO order_details VALUES (10706, 16, 17.4500008, 20, 0); -INSERT INTO order_details VALUES (10706, 43, 46, 24, 0); -INSERT INTO order_details VALUES (10706, 59, 55, 8, 0); -INSERT INTO order_details VALUES (10707, 55, 24, 21, 0); -INSERT INTO order_details VALUES (10707, 57, 19.5, 40, 0); -INSERT INTO order_details VALUES (10707, 70, 15, 28, 0.150000006); -INSERT INTO order_details VALUES (10708, 5, 21.3500004, 4, 0); -INSERT INTO order_details VALUES (10708, 36, 19, 5, 0); -INSERT INTO order_details VALUES (10709, 8, 40, 40, 0); -INSERT INTO order_details VALUES (10709, 51, 53, 28, 0); -INSERT INTO order_details VALUES (10709, 60, 34, 10, 0); -INSERT INTO order_details VALUES (10710, 19, 9.19999981, 5, 0); -INSERT INTO order_details VALUES (10710, 47, 9.5, 5, 0); -INSERT INTO order_details VALUES (10711, 19, 9.19999981, 12, 0); -INSERT INTO order_details VALUES (10711, 41, 9.64999962, 42, 0); -INSERT INTO order_details VALUES (10711, 53, 32.7999992, 120, 0); -INSERT INTO order_details VALUES (10712, 53, 32.7999992, 3, 0.0500000007); -INSERT INTO order_details VALUES (10712, 56, 38, 30, 0); -INSERT INTO order_details VALUES (10713, 10, 31, 18, 0); -INSERT INTO order_details VALUES (10713, 26, 31.2299995, 30, 0); -INSERT INTO order_details VALUES (10713, 45, 9.5, 110, 0); -INSERT INTO order_details VALUES (10713, 46, 12, 24, 0); -INSERT INTO order_details VALUES (10714, 2, 19, 30, 0.25); -INSERT INTO order_details VALUES (10714, 17, 39, 27, 0.25); -INSERT INTO order_details VALUES (10714, 47, 9.5, 50, 0.25); -INSERT INTO order_details VALUES (10714, 56, 38, 18, 0.25); -INSERT INTO order_details VALUES (10714, 58, 13.25, 12, 0.25); -INSERT INTO order_details VALUES (10715, 10, 31, 21, 0); -INSERT INTO order_details VALUES (10715, 71, 21.5, 30, 0); -INSERT INTO order_details VALUES (10716, 21, 10, 5, 0); -INSERT INTO order_details VALUES (10716, 51, 53, 7, 0); -INSERT INTO order_details VALUES (10716, 61, 28.5, 10, 0); -INSERT INTO order_details VALUES (10717, 21, 10, 32, 0.0500000007); -INSERT INTO order_details VALUES (10717, 54, 7.44999981, 15, 0); -INSERT INTO order_details VALUES (10717, 69, 36, 25, 0.0500000007); -INSERT INTO order_details VALUES (10718, 12, 38, 36, 0); -INSERT INTO order_details VALUES (10718, 16, 17.4500008, 20, 0); -INSERT INTO order_details VALUES (10718, 36, 19, 40, 0); -INSERT INTO order_details VALUES (10718, 62, 49.2999992, 20, 0); -INSERT INTO order_details VALUES (10719, 18, 62.5, 12, 0.25); -INSERT INTO order_details VALUES (10719, 30, 25.8899994, 3, 0.25); -INSERT INTO order_details VALUES (10719, 54, 7.44999981, 40, 0.25); -INSERT INTO order_details VALUES (10720, 35, 18, 21, 0); -INSERT INTO order_details VALUES (10720, 71, 21.5, 8, 0); -INSERT INTO order_details VALUES (10721, 44, 19.4500008, 50, 0.0500000007); -INSERT INTO order_details VALUES (10722, 2, 19, 3, 0); -INSERT INTO order_details VALUES (10722, 31, 12.5, 50, 0); -INSERT INTO order_details VALUES (10722, 68, 12.5, 45, 0); -INSERT INTO order_details VALUES (10722, 75, 7.75, 42, 0); -INSERT INTO order_details VALUES (10723, 26, 31.2299995, 15, 0); -INSERT INTO order_details VALUES (10724, 10, 31, 16, 0); -INSERT INTO order_details VALUES (10724, 61, 28.5, 5, 0); -INSERT INTO order_details VALUES (10725, 41, 9.64999962, 12, 0); -INSERT INTO order_details VALUES (10725, 52, 7, 4, 0); -INSERT INTO order_details VALUES (10725, 55, 24, 6, 0); -INSERT INTO order_details VALUES (10726, 4, 22, 25, 0); -INSERT INTO order_details VALUES (10726, 11, 21, 5, 0); -INSERT INTO order_details VALUES (10727, 17, 39, 20, 0.0500000007); -INSERT INTO order_details VALUES (10727, 56, 38, 10, 0.0500000007); -INSERT INTO order_details VALUES (10727, 59, 55, 10, 0.0500000007); -INSERT INTO order_details VALUES (10728, 30, 25.8899994, 15, 0); -INSERT INTO order_details VALUES (10728, 40, 18.3999996, 6, 0); -INSERT INTO order_details VALUES (10728, 55, 24, 12, 0); -INSERT INTO order_details VALUES (10728, 60, 34, 15, 0); -INSERT INTO order_details VALUES (10729, 1, 18, 50, 0); -INSERT INTO order_details VALUES (10729, 21, 10, 30, 0); -INSERT INTO order_details VALUES (10729, 50, 16.25, 40, 0); -INSERT INTO order_details VALUES (10730, 16, 17.4500008, 15, 0.0500000007); -INSERT INTO order_details VALUES (10730, 31, 12.5, 3, 0.0500000007); -INSERT INTO order_details VALUES (10730, 65, 21.0499992, 10, 0.0500000007); -INSERT INTO order_details VALUES (10731, 21, 10, 40, 0.0500000007); -INSERT INTO order_details VALUES (10731, 51, 53, 30, 0.0500000007); -INSERT INTO order_details VALUES (10732, 76, 18, 20, 0); -INSERT INTO order_details VALUES (10733, 14, 23.25, 16, 0); -INSERT INTO order_details VALUES (10733, 28, 45.5999985, 20, 0); -INSERT INTO order_details VALUES (10733, 52, 7, 25, 0); -INSERT INTO order_details VALUES (10734, 6, 25, 30, 0); -INSERT INTO order_details VALUES (10734, 30, 25.8899994, 15, 0); -INSERT INTO order_details VALUES (10734, 76, 18, 20, 0); -INSERT INTO order_details VALUES (10735, 61, 28.5, 20, 0.100000001); -INSERT INTO order_details VALUES (10735, 77, 13, 2, 0.100000001); -INSERT INTO order_details VALUES (10736, 65, 21.0499992, 40, 0); -INSERT INTO order_details VALUES (10736, 75, 7.75, 20, 0); -INSERT INTO order_details VALUES (10737, 13, 6, 4, 0); -INSERT INTO order_details VALUES (10737, 41, 9.64999962, 12, 0); -INSERT INTO order_details VALUES (10738, 16, 17.4500008, 3, 0); -INSERT INTO order_details VALUES (10739, 36, 19, 6, 0); -INSERT INTO order_details VALUES (10739, 52, 7, 18, 0); -INSERT INTO order_details VALUES (10740, 28, 45.5999985, 5, 0.200000003); -INSERT INTO order_details VALUES (10740, 35, 18, 35, 0.200000003); -INSERT INTO order_details VALUES (10740, 45, 9.5, 40, 0.200000003); -INSERT INTO order_details VALUES (10740, 56, 38, 14, 0.200000003); -INSERT INTO order_details VALUES (10741, 2, 19, 15, 0.200000003); -INSERT INTO order_details VALUES (10742, 3, 10, 20, 0); -INSERT INTO order_details VALUES (10742, 60, 34, 50, 0); -INSERT INTO order_details VALUES (10742, 72, 34.7999992, 35, 0); -INSERT INTO order_details VALUES (10743, 46, 12, 28, 0.0500000007); -INSERT INTO order_details VALUES (10744, 40, 18.3999996, 50, 0.200000003); -INSERT INTO order_details VALUES (10745, 18, 62.5, 24, 0); -INSERT INTO order_details VALUES (10745, 44, 19.4500008, 16, 0); -INSERT INTO order_details VALUES (10745, 59, 55, 45, 0); -INSERT INTO order_details VALUES (10745, 72, 34.7999992, 7, 0); -INSERT INTO order_details VALUES (10746, 13, 6, 6, 0); -INSERT INTO order_details VALUES (10746, 42, 14, 28, 0); -INSERT INTO order_details VALUES (10746, 62, 49.2999992, 9, 0); -INSERT INTO order_details VALUES (10746, 69, 36, 40, 0); -INSERT INTO order_details VALUES (10747, 31, 12.5, 8, 0); -INSERT INTO order_details VALUES (10747, 41, 9.64999962, 35, 0); -INSERT INTO order_details VALUES (10747, 63, 43.9000015, 9, 0); -INSERT INTO order_details VALUES (10747, 69, 36, 30, 0); -INSERT INTO order_details VALUES (10748, 23, 9, 44, 0); -INSERT INTO order_details VALUES (10748, 40, 18.3999996, 40, 0); -INSERT INTO order_details VALUES (10748, 56, 38, 28, 0); -INSERT INTO order_details VALUES (10749, 56, 38, 15, 0); -INSERT INTO order_details VALUES (10749, 59, 55, 6, 0); -INSERT INTO order_details VALUES (10749, 76, 18, 10, 0); -INSERT INTO order_details VALUES (10750, 14, 23.25, 5, 0.150000006); -INSERT INTO order_details VALUES (10750, 45, 9.5, 40, 0.150000006); -INSERT INTO order_details VALUES (10750, 59, 55, 25, 0.150000006); -INSERT INTO order_details VALUES (10751, 26, 31.2299995, 12, 0.100000001); -INSERT INTO order_details VALUES (10751, 30, 25.8899994, 30, 0); -INSERT INTO order_details VALUES (10751, 50, 16.25, 20, 0.100000001); -INSERT INTO order_details VALUES (10751, 73, 15, 15, 0); -INSERT INTO order_details VALUES (10752, 1, 18, 8, 0); -INSERT INTO order_details VALUES (10752, 69, 36, 3, 0); -INSERT INTO order_details VALUES (10753, 45, 9.5, 4, 0); -INSERT INTO order_details VALUES (10753, 74, 10, 5, 0); -INSERT INTO order_details VALUES (10754, 40, 18.3999996, 3, 0); -INSERT INTO order_details VALUES (10755, 47, 9.5, 30, 0.25); -INSERT INTO order_details VALUES (10755, 56, 38, 30, 0.25); -INSERT INTO order_details VALUES (10755, 57, 19.5, 14, 0.25); -INSERT INTO order_details VALUES (10755, 69, 36, 25, 0.25); -INSERT INTO order_details VALUES (10756, 18, 62.5, 21, 0.200000003); -INSERT INTO order_details VALUES (10756, 36, 19, 20, 0.200000003); -INSERT INTO order_details VALUES (10756, 68, 12.5, 6, 0.200000003); -INSERT INTO order_details VALUES (10756, 69, 36, 20, 0.200000003); -INSERT INTO order_details VALUES (10757, 34, 14, 30, 0); -INSERT INTO order_details VALUES (10757, 59, 55, 7, 0); -INSERT INTO order_details VALUES (10757, 62, 49.2999992, 30, 0); -INSERT INTO order_details VALUES (10757, 64, 33.25, 24, 0); -INSERT INTO order_details VALUES (10758, 26, 31.2299995, 20, 0); -INSERT INTO order_details VALUES (10758, 52, 7, 60, 0); -INSERT INTO order_details VALUES (10758, 70, 15, 40, 0); -INSERT INTO order_details VALUES (10759, 32, 32, 10, 0); -INSERT INTO order_details VALUES (10760, 25, 14, 12, 0.25); -INSERT INTO order_details VALUES (10760, 27, 43.9000015, 40, 0); -INSERT INTO order_details VALUES (10760, 43, 46, 30, 0.25); -INSERT INTO order_details VALUES (10761, 25, 14, 35, 0.25); -INSERT INTO order_details VALUES (10761, 75, 7.75, 18, 0); -INSERT INTO order_details VALUES (10762, 39, 18, 16, 0); -INSERT INTO order_details VALUES (10762, 47, 9.5, 30, 0); -INSERT INTO order_details VALUES (10762, 51, 53, 28, 0); -INSERT INTO order_details VALUES (10762, 56, 38, 60, 0); -INSERT INTO order_details VALUES (10763, 21, 10, 40, 0); -INSERT INTO order_details VALUES (10763, 22, 21, 6, 0); -INSERT INTO order_details VALUES (10763, 24, 4.5, 20, 0); -INSERT INTO order_details VALUES (10764, 3, 10, 20, 0.100000001); -INSERT INTO order_details VALUES (10764, 39, 18, 130, 0.100000001); -INSERT INTO order_details VALUES (10765, 65, 21.0499992, 80, 0.100000001); -INSERT INTO order_details VALUES (10766, 2, 19, 40, 0); -INSERT INTO order_details VALUES (10766, 7, 30, 35, 0); -INSERT INTO order_details VALUES (10766, 68, 12.5, 40, 0); -INSERT INTO order_details VALUES (10767, 42, 14, 2, 0); -INSERT INTO order_details VALUES (10768, 22, 21, 4, 0); -INSERT INTO order_details VALUES (10768, 31, 12.5, 50, 0); -INSERT INTO order_details VALUES (10768, 60, 34, 15, 0); -INSERT INTO order_details VALUES (10768, 71, 21.5, 12, 0); -INSERT INTO order_details VALUES (10769, 41, 9.64999962, 30, 0.0500000007); -INSERT INTO order_details VALUES (10769, 52, 7, 15, 0.0500000007); -INSERT INTO order_details VALUES (10769, 61, 28.5, 20, 0); -INSERT INTO order_details VALUES (10769, 62, 49.2999992, 15, 0); -INSERT INTO order_details VALUES (10770, 11, 21, 15, 0.25); -INSERT INTO order_details VALUES (10771, 71, 21.5, 16, 0); -INSERT INTO order_details VALUES (10772, 29, 123.790001, 18, 0); -INSERT INTO order_details VALUES (10772, 59, 55, 25, 0); -INSERT INTO order_details VALUES (10773, 17, 39, 33, 0); -INSERT INTO order_details VALUES (10773, 31, 12.5, 70, 0.200000003); -INSERT INTO order_details VALUES (10773, 75, 7.75, 7, 0.200000003); -INSERT INTO order_details VALUES (10774, 31, 12.5, 2, 0.25); -INSERT INTO order_details VALUES (10774, 66, 17, 50, 0); -INSERT INTO order_details VALUES (10775, 10, 31, 6, 0); -INSERT INTO order_details VALUES (10775, 67, 14, 3, 0); -INSERT INTO order_details VALUES (10776, 31, 12.5, 16, 0.0500000007); -INSERT INTO order_details VALUES (10776, 42, 14, 12, 0.0500000007); -INSERT INTO order_details VALUES (10776, 45, 9.5, 27, 0.0500000007); -INSERT INTO order_details VALUES (10776, 51, 53, 120, 0.0500000007); -INSERT INTO order_details VALUES (10777, 42, 14, 20, 0.200000003); -INSERT INTO order_details VALUES (10778, 41, 9.64999962, 10, 0); -INSERT INTO order_details VALUES (10779, 16, 17.4500008, 20, 0); -INSERT INTO order_details VALUES (10779, 62, 49.2999992, 20, 0); -INSERT INTO order_details VALUES (10780, 70, 15, 35, 0); -INSERT INTO order_details VALUES (10780, 77, 13, 15, 0); -INSERT INTO order_details VALUES (10781, 54, 7.44999981, 3, 0.200000003); -INSERT INTO order_details VALUES (10781, 56, 38, 20, 0.200000003); -INSERT INTO order_details VALUES (10781, 74, 10, 35, 0); -INSERT INTO order_details VALUES (10782, 31, 12.5, 1, 0); -INSERT INTO order_details VALUES (10783, 31, 12.5, 10, 0); -INSERT INTO order_details VALUES (10783, 38, 263.5, 5, 0); -INSERT INTO order_details VALUES (10784, 36, 19, 30, 0); -INSERT INTO order_details VALUES (10784, 39, 18, 2, 0.150000006); -INSERT INTO order_details VALUES (10784, 72, 34.7999992, 30, 0.150000006); -INSERT INTO order_details VALUES (10785, 10, 31, 10, 0); -INSERT INTO order_details VALUES (10785, 75, 7.75, 10, 0); -INSERT INTO order_details VALUES (10786, 8, 40, 30, 0.200000003); -INSERT INTO order_details VALUES (10786, 30, 25.8899994, 15, 0.200000003); -INSERT INTO order_details VALUES (10786, 75, 7.75, 42, 0.200000003); -INSERT INTO order_details VALUES (10787, 2, 19, 15, 0.0500000007); -INSERT INTO order_details VALUES (10787, 29, 123.790001, 20, 0.0500000007); -INSERT INTO order_details VALUES (10788, 19, 9.19999981, 50, 0.0500000007); -INSERT INTO order_details VALUES (10788, 75, 7.75, 40, 0.0500000007); -INSERT INTO order_details VALUES (10789, 18, 62.5, 30, 0); -INSERT INTO order_details VALUES (10789, 35, 18, 15, 0); -INSERT INTO order_details VALUES (10789, 63, 43.9000015, 30, 0); -INSERT INTO order_details VALUES (10789, 68, 12.5, 18, 0); -INSERT INTO order_details VALUES (10790, 7, 30, 3, 0.150000006); -INSERT INTO order_details VALUES (10790, 56, 38, 20, 0.150000006); -INSERT INTO order_details VALUES (10791, 29, 123.790001, 14, 0.0500000007); -INSERT INTO order_details VALUES (10791, 41, 9.64999962, 20, 0.0500000007); -INSERT INTO order_details VALUES (10792, 2, 19, 10, 0); -INSERT INTO order_details VALUES (10792, 54, 7.44999981, 3, 0); -INSERT INTO order_details VALUES (10792, 68, 12.5, 15, 0); -INSERT INTO order_details VALUES (10793, 41, 9.64999962, 14, 0); -INSERT INTO order_details VALUES (10793, 52, 7, 8, 0); -INSERT INTO order_details VALUES (10794, 14, 23.25, 15, 0.200000003); -INSERT INTO order_details VALUES (10794, 54, 7.44999981, 6, 0.200000003); -INSERT INTO order_details VALUES (10795, 16, 17.4500008, 65, 0); -INSERT INTO order_details VALUES (10795, 17, 39, 35, 0.25); -INSERT INTO order_details VALUES (10796, 26, 31.2299995, 21, 0.200000003); -INSERT INTO order_details VALUES (10796, 44, 19.4500008, 10, 0); -INSERT INTO order_details VALUES (10796, 64, 33.25, 35, 0.200000003); -INSERT INTO order_details VALUES (10796, 69, 36, 24, 0.200000003); -INSERT INTO order_details VALUES (10797, 11, 21, 20, 0); -INSERT INTO order_details VALUES (10798, 62, 49.2999992, 2, 0); -INSERT INTO order_details VALUES (10798, 72, 34.7999992, 10, 0); -INSERT INTO order_details VALUES (10799, 13, 6, 20, 0.150000006); -INSERT INTO order_details VALUES (10799, 24, 4.5, 20, 0.150000006); -INSERT INTO order_details VALUES (10799, 59, 55, 25, 0); -INSERT INTO order_details VALUES (10800, 11, 21, 50, 0.100000001); -INSERT INTO order_details VALUES (10800, 51, 53, 10, 0.100000001); -INSERT INTO order_details VALUES (10800, 54, 7.44999981, 7, 0.100000001); -INSERT INTO order_details VALUES (10801, 17, 39, 40, 0.25); -INSERT INTO order_details VALUES (10801, 29, 123.790001, 20, 0.25); -INSERT INTO order_details VALUES (10802, 30, 25.8899994, 25, 0.25); -INSERT INTO order_details VALUES (10802, 51, 53, 30, 0.25); -INSERT INTO order_details VALUES (10802, 55, 24, 60, 0.25); -INSERT INTO order_details VALUES (10802, 62, 49.2999992, 5, 0.25); -INSERT INTO order_details VALUES (10803, 19, 9.19999981, 24, 0.0500000007); -INSERT INTO order_details VALUES (10803, 25, 14, 15, 0.0500000007); -INSERT INTO order_details VALUES (10803, 59, 55, 15, 0.0500000007); -INSERT INTO order_details VALUES (10804, 10, 31, 36, 0); -INSERT INTO order_details VALUES (10804, 28, 45.5999985, 24, 0); -INSERT INTO order_details VALUES (10804, 49, 20, 4, 0.150000006); -INSERT INTO order_details VALUES (10805, 34, 14, 10, 0); -INSERT INTO order_details VALUES (10805, 38, 263.5, 10, 0); -INSERT INTO order_details VALUES (10806, 2, 19, 20, 0.25); -INSERT INTO order_details VALUES (10806, 65, 21.0499992, 2, 0); -INSERT INTO order_details VALUES (10806, 74, 10, 15, 0.25); -INSERT INTO order_details VALUES (10807, 40, 18.3999996, 1, 0); -INSERT INTO order_details VALUES (10808, 56, 38, 20, 0.150000006); -INSERT INTO order_details VALUES (10808, 76, 18, 50, 0.150000006); -INSERT INTO order_details VALUES (10809, 52, 7, 20, 0); -INSERT INTO order_details VALUES (10810, 13, 6, 7, 0); -INSERT INTO order_details VALUES (10810, 25, 14, 5, 0); -INSERT INTO order_details VALUES (10810, 70, 15, 5, 0); -INSERT INTO order_details VALUES (10811, 19, 9.19999981, 15, 0); -INSERT INTO order_details VALUES (10811, 23, 9, 18, 0); -INSERT INTO order_details VALUES (10811, 40, 18.3999996, 30, 0); -INSERT INTO order_details VALUES (10812, 31, 12.5, 16, 0.100000001); -INSERT INTO order_details VALUES (10812, 72, 34.7999992, 40, 0.100000001); -INSERT INTO order_details VALUES (10812, 77, 13, 20, 0); -INSERT INTO order_details VALUES (10813, 2, 19, 12, 0.200000003); -INSERT INTO order_details VALUES (10813, 46, 12, 35, 0); -INSERT INTO order_details VALUES (10814, 41, 9.64999962, 20, 0); -INSERT INTO order_details VALUES (10814, 43, 46, 20, 0.150000006); -INSERT INTO order_details VALUES (10814, 48, 12.75, 8, 0.150000006); -INSERT INTO order_details VALUES (10814, 61, 28.5, 30, 0.150000006); -INSERT INTO order_details VALUES (10815, 33, 2.5, 16, 0); -INSERT INTO order_details VALUES (10816, 38, 263.5, 30, 0.0500000007); -INSERT INTO order_details VALUES (10816, 62, 49.2999992, 20, 0.0500000007); -INSERT INTO order_details VALUES (10817, 26, 31.2299995, 40, 0.150000006); -INSERT INTO order_details VALUES (10817, 38, 263.5, 30, 0); -INSERT INTO order_details VALUES (10817, 40, 18.3999996, 60, 0.150000006); -INSERT INTO order_details VALUES (10817, 62, 49.2999992, 25, 0.150000006); -INSERT INTO order_details VALUES (10818, 32, 32, 20, 0); -INSERT INTO order_details VALUES (10818, 41, 9.64999962, 20, 0); -INSERT INTO order_details VALUES (10819, 43, 46, 7, 0); -INSERT INTO order_details VALUES (10819, 75, 7.75, 20, 0); -INSERT INTO order_details VALUES (10820, 56, 38, 30, 0); -INSERT INTO order_details VALUES (10821, 35, 18, 20, 0); -INSERT INTO order_details VALUES (10821, 51, 53, 6, 0); -INSERT INTO order_details VALUES (10822, 62, 49.2999992, 3, 0); -INSERT INTO order_details VALUES (10822, 70, 15, 6, 0); -INSERT INTO order_details VALUES (10823, 11, 21, 20, 0.100000001); -INSERT INTO order_details VALUES (10823, 57, 19.5, 15, 0); -INSERT INTO order_details VALUES (10823, 59, 55, 40, 0.100000001); -INSERT INTO order_details VALUES (10823, 77, 13, 15, 0.100000001); -INSERT INTO order_details VALUES (10824, 41, 9.64999962, 12, 0); -INSERT INTO order_details VALUES (10824, 70, 15, 9, 0); -INSERT INTO order_details VALUES (10825, 26, 31.2299995, 12, 0); -INSERT INTO order_details VALUES (10825, 53, 32.7999992, 20, 0); -INSERT INTO order_details VALUES (10826, 31, 12.5, 35, 0); -INSERT INTO order_details VALUES (10826, 57, 19.5, 15, 0); -INSERT INTO order_details VALUES (10827, 10, 31, 15, 0); -INSERT INTO order_details VALUES (10827, 39, 18, 21, 0); -INSERT INTO order_details VALUES (10828, 20, 81, 5, 0); -INSERT INTO order_details VALUES (10828, 38, 263.5, 2, 0); -INSERT INTO order_details VALUES (10829, 2, 19, 10, 0); -INSERT INTO order_details VALUES (10829, 8, 40, 20, 0); -INSERT INTO order_details VALUES (10829, 13, 6, 10, 0); -INSERT INTO order_details VALUES (10829, 60, 34, 21, 0); -INSERT INTO order_details VALUES (10830, 6, 25, 6, 0); -INSERT INTO order_details VALUES (10830, 39, 18, 28, 0); -INSERT INTO order_details VALUES (10830, 60, 34, 30, 0); -INSERT INTO order_details VALUES (10830, 68, 12.5, 24, 0); -INSERT INTO order_details VALUES (10831, 19, 9.19999981, 2, 0); -INSERT INTO order_details VALUES (10831, 35, 18, 8, 0); -INSERT INTO order_details VALUES (10831, 38, 263.5, 8, 0); -INSERT INTO order_details VALUES (10831, 43, 46, 9, 0); -INSERT INTO order_details VALUES (10832, 13, 6, 3, 0.200000003); -INSERT INTO order_details VALUES (10832, 25, 14, 10, 0.200000003); -INSERT INTO order_details VALUES (10832, 44, 19.4500008, 16, 0.200000003); -INSERT INTO order_details VALUES (10832, 64, 33.25, 3, 0); -INSERT INTO order_details VALUES (10833, 7, 30, 20, 0.100000001); -INSERT INTO order_details VALUES (10833, 31, 12.5, 9, 0.100000001); -INSERT INTO order_details VALUES (10833, 53, 32.7999992, 9, 0.100000001); -INSERT INTO order_details VALUES (10834, 29, 123.790001, 8, 0.0500000007); -INSERT INTO order_details VALUES (10834, 30, 25.8899994, 20, 0.0500000007); -INSERT INTO order_details VALUES (10835, 59, 55, 15, 0); -INSERT INTO order_details VALUES (10835, 77, 13, 2, 0.200000003); -INSERT INTO order_details VALUES (10836, 22, 21, 52, 0); -INSERT INTO order_details VALUES (10836, 35, 18, 6, 0); -INSERT INTO order_details VALUES (10836, 57, 19.5, 24, 0); -INSERT INTO order_details VALUES (10836, 60, 34, 60, 0); -INSERT INTO order_details VALUES (10836, 64, 33.25, 30, 0); -INSERT INTO order_details VALUES (10837, 13, 6, 6, 0); -INSERT INTO order_details VALUES (10837, 40, 18.3999996, 25, 0); -INSERT INTO order_details VALUES (10837, 47, 9.5, 40, 0.25); -INSERT INTO order_details VALUES (10837, 76, 18, 21, 0.25); -INSERT INTO order_details VALUES (10838, 1, 18, 4, 0.25); -INSERT INTO order_details VALUES (10838, 18, 62.5, 25, 0.25); -INSERT INTO order_details VALUES (10838, 36, 19, 50, 0.25); -INSERT INTO order_details VALUES (10839, 58, 13.25, 30, 0.100000001); -INSERT INTO order_details VALUES (10839, 72, 34.7999992, 15, 0.100000001); -INSERT INTO order_details VALUES (10840, 25, 14, 6, 0.200000003); -INSERT INTO order_details VALUES (10840, 39, 18, 10, 0.200000003); -INSERT INTO order_details VALUES (10841, 10, 31, 16, 0); -INSERT INTO order_details VALUES (10841, 56, 38, 30, 0); -INSERT INTO order_details VALUES (10841, 59, 55, 50, 0); -INSERT INTO order_details VALUES (10841, 77, 13, 15, 0); -INSERT INTO order_details VALUES (10842, 11, 21, 15, 0); -INSERT INTO order_details VALUES (10842, 43, 46, 5, 0); -INSERT INTO order_details VALUES (10842, 68, 12.5, 20, 0); -INSERT INTO order_details VALUES (10842, 70, 15, 12, 0); -INSERT INTO order_details VALUES (10843, 51, 53, 4, 0.25); -INSERT INTO order_details VALUES (10844, 22, 21, 35, 0); -INSERT INTO order_details VALUES (10845, 23, 9, 70, 0.100000001); -INSERT INTO order_details VALUES (10845, 35, 18, 25, 0.100000001); -INSERT INTO order_details VALUES (10845, 42, 14, 42, 0.100000001); -INSERT INTO order_details VALUES (10845, 58, 13.25, 60, 0.100000001); -INSERT INTO order_details VALUES (10845, 64, 33.25, 48, 0); -INSERT INTO order_details VALUES (10846, 4, 22, 21, 0); -INSERT INTO order_details VALUES (10846, 70, 15, 30, 0); -INSERT INTO order_details VALUES (10846, 74, 10, 20, 0); -INSERT INTO order_details VALUES (10847, 1, 18, 80, 0.200000003); -INSERT INTO order_details VALUES (10847, 19, 9.19999981, 12, 0.200000003); -INSERT INTO order_details VALUES (10847, 37, 26, 60, 0.200000003); -INSERT INTO order_details VALUES (10847, 45, 9.5, 36, 0.200000003); -INSERT INTO order_details VALUES (10847, 60, 34, 45, 0.200000003); -INSERT INTO order_details VALUES (10847, 71, 21.5, 55, 0.200000003); -INSERT INTO order_details VALUES (10848, 5, 21.3500004, 30, 0); -INSERT INTO order_details VALUES (10848, 9, 97, 3, 0); -INSERT INTO order_details VALUES (10849, 3, 10, 49, 0); -INSERT INTO order_details VALUES (10849, 26, 31.2299995, 18, 0.150000006); -INSERT INTO order_details VALUES (10850, 25, 14, 20, 0.150000006); -INSERT INTO order_details VALUES (10850, 33, 2.5, 4, 0.150000006); -INSERT INTO order_details VALUES (10850, 70, 15, 30, 0.150000006); -INSERT INTO order_details VALUES (10851, 2, 19, 5, 0.0500000007); -INSERT INTO order_details VALUES (10851, 25, 14, 10, 0.0500000007); -INSERT INTO order_details VALUES (10851, 57, 19.5, 10, 0.0500000007); -INSERT INTO order_details VALUES (10851, 59, 55, 42, 0.0500000007); -INSERT INTO order_details VALUES (10852, 2, 19, 15, 0); -INSERT INTO order_details VALUES (10852, 17, 39, 6, 0); -INSERT INTO order_details VALUES (10852, 62, 49.2999992, 50, 0); -INSERT INTO order_details VALUES (10853, 18, 62.5, 10, 0); -INSERT INTO order_details VALUES (10854, 10, 31, 100, 0.150000006); -INSERT INTO order_details VALUES (10854, 13, 6, 65, 0.150000006); -INSERT INTO order_details VALUES (10855, 16, 17.4500008, 50, 0); -INSERT INTO order_details VALUES (10855, 31, 12.5, 14, 0); -INSERT INTO order_details VALUES (10855, 56, 38, 24, 0); -INSERT INTO order_details VALUES (10855, 65, 21.0499992, 15, 0.150000006); -INSERT INTO order_details VALUES (10856, 2, 19, 20, 0); -INSERT INTO order_details VALUES (10856, 42, 14, 20, 0); -INSERT INTO order_details VALUES (10857, 3, 10, 30, 0); -INSERT INTO order_details VALUES (10857, 26, 31.2299995, 35, 0.25); -INSERT INTO order_details VALUES (10857, 29, 123.790001, 10, 0.25); -INSERT INTO order_details VALUES (10858, 7, 30, 5, 0); -INSERT INTO order_details VALUES (10858, 27, 43.9000015, 10, 0); -INSERT INTO order_details VALUES (10858, 70, 15, 4, 0); -INSERT INTO order_details VALUES (10859, 24, 4.5, 40, 0.25); -INSERT INTO order_details VALUES (10859, 54, 7.44999981, 35, 0.25); -INSERT INTO order_details VALUES (10859, 64, 33.25, 30, 0.25); -INSERT INTO order_details VALUES (10860, 51, 53, 3, 0); -INSERT INTO order_details VALUES (10860, 76, 18, 20, 0); -INSERT INTO order_details VALUES (10861, 17, 39, 42, 0); -INSERT INTO order_details VALUES (10861, 18, 62.5, 20, 0); -INSERT INTO order_details VALUES (10861, 21, 10, 40, 0); -INSERT INTO order_details VALUES (10861, 33, 2.5, 35, 0); -INSERT INTO order_details VALUES (10861, 62, 49.2999992, 3, 0); -INSERT INTO order_details VALUES (10862, 11, 21, 25, 0); -INSERT INTO order_details VALUES (10862, 52, 7, 8, 0); -INSERT INTO order_details VALUES (10863, 1, 18, 20, 0.150000006); -INSERT INTO order_details VALUES (10863, 58, 13.25, 12, 0.150000006); -INSERT INTO order_details VALUES (10864, 35, 18, 4, 0); -INSERT INTO order_details VALUES (10864, 67, 14, 15, 0); -INSERT INTO order_details VALUES (10865, 38, 263.5, 60, 0.0500000007); -INSERT INTO order_details VALUES (10865, 39, 18, 80, 0.0500000007); -INSERT INTO order_details VALUES (10866, 2, 19, 21, 0.25); -INSERT INTO order_details VALUES (10866, 24, 4.5, 6, 0.25); -INSERT INTO order_details VALUES (10866, 30, 25.8899994, 40, 0.25); -INSERT INTO order_details VALUES (10867, 53, 32.7999992, 3, 0); -INSERT INTO order_details VALUES (10868, 26, 31.2299995, 20, 0); -INSERT INTO order_details VALUES (10868, 35, 18, 30, 0); -INSERT INTO order_details VALUES (10868, 49, 20, 42, 0.100000001); -INSERT INTO order_details VALUES (10869, 1, 18, 40, 0); -INSERT INTO order_details VALUES (10869, 11, 21, 10, 0); -INSERT INTO order_details VALUES (10869, 23, 9, 50, 0); -INSERT INTO order_details VALUES (10869, 68, 12.5, 20, 0); -INSERT INTO order_details VALUES (10870, 35, 18, 3, 0); -INSERT INTO order_details VALUES (10870, 51, 53, 2, 0); -INSERT INTO order_details VALUES (10871, 6, 25, 50, 0.0500000007); -INSERT INTO order_details VALUES (10871, 16, 17.4500008, 12, 0.0500000007); -INSERT INTO order_details VALUES (10871, 17, 39, 16, 0.0500000007); -INSERT INTO order_details VALUES (10872, 55, 24, 10, 0.0500000007); -INSERT INTO order_details VALUES (10872, 62, 49.2999992, 20, 0.0500000007); -INSERT INTO order_details VALUES (10872, 64, 33.25, 15, 0.0500000007); -INSERT INTO order_details VALUES (10872, 65, 21.0499992, 21, 0.0500000007); -INSERT INTO order_details VALUES (10873, 21, 10, 20, 0); -INSERT INTO order_details VALUES (10873, 28, 45.5999985, 3, 0); -INSERT INTO order_details VALUES (10874, 10, 31, 10, 0); -INSERT INTO order_details VALUES (10875, 19, 9.19999981, 25, 0); -INSERT INTO order_details VALUES (10875, 47, 9.5, 21, 0.100000001); -INSERT INTO order_details VALUES (10875, 49, 20, 15, 0); -INSERT INTO order_details VALUES (10876, 46, 12, 21, 0); -INSERT INTO order_details VALUES (10876, 64, 33.25, 20, 0); -INSERT INTO order_details VALUES (10877, 16, 17.4500008, 30, 0.25); -INSERT INTO order_details VALUES (10877, 18, 62.5, 25, 0); -INSERT INTO order_details VALUES (10878, 20, 81, 20, 0.0500000007); -INSERT INTO order_details VALUES (10879, 40, 18.3999996, 12, 0); -INSERT INTO order_details VALUES (10879, 65, 21.0499992, 10, 0); -INSERT INTO order_details VALUES (10879, 76, 18, 10, 0); -INSERT INTO order_details VALUES (10880, 23, 9, 30, 0.200000003); -INSERT INTO order_details VALUES (10880, 61, 28.5, 30, 0.200000003); -INSERT INTO order_details VALUES (10880, 70, 15, 50, 0.200000003); -INSERT INTO order_details VALUES (10881, 73, 15, 10, 0); -INSERT INTO order_details VALUES (10882, 42, 14, 25, 0); -INSERT INTO order_details VALUES (10882, 49, 20, 20, 0.150000006); -INSERT INTO order_details VALUES (10882, 54, 7.44999981, 32, 0.150000006); -INSERT INTO order_details VALUES (10883, 24, 4.5, 8, 0); -INSERT INTO order_details VALUES (10884, 21, 10, 40, 0.0500000007); -INSERT INTO order_details VALUES (10884, 56, 38, 21, 0.0500000007); -INSERT INTO order_details VALUES (10884, 65, 21.0499992, 12, 0.0500000007); -INSERT INTO order_details VALUES (10885, 2, 19, 20, 0); -INSERT INTO order_details VALUES (10885, 24, 4.5, 12, 0); -INSERT INTO order_details VALUES (10885, 70, 15, 30, 0); -INSERT INTO order_details VALUES (10885, 77, 13, 25, 0); -INSERT INTO order_details VALUES (10886, 10, 31, 70, 0); -INSERT INTO order_details VALUES (10886, 31, 12.5, 35, 0); -INSERT INTO order_details VALUES (10886, 77, 13, 40, 0); -INSERT INTO order_details VALUES (10887, 25, 14, 5, 0); -INSERT INTO order_details VALUES (10888, 2, 19, 20, 0); -INSERT INTO order_details VALUES (10888, 68, 12.5, 18, 0); -INSERT INTO order_details VALUES (10889, 11, 21, 40, 0); -INSERT INTO order_details VALUES (10889, 38, 263.5, 40, 0); -INSERT INTO order_details VALUES (10890, 17, 39, 15, 0); -INSERT INTO order_details VALUES (10890, 34, 14, 10, 0); -INSERT INTO order_details VALUES (10890, 41, 9.64999962, 14, 0); -INSERT INTO order_details VALUES (10891, 30, 25.8899994, 15, 0.0500000007); -INSERT INTO order_details VALUES (10892, 59, 55, 40, 0.0500000007); -INSERT INTO order_details VALUES (10893, 8, 40, 30, 0); -INSERT INTO order_details VALUES (10893, 24, 4.5, 10, 0); -INSERT INTO order_details VALUES (10893, 29, 123.790001, 24, 0); -INSERT INTO order_details VALUES (10893, 30, 25.8899994, 35, 0); -INSERT INTO order_details VALUES (10893, 36, 19, 20, 0); -INSERT INTO order_details VALUES (10894, 13, 6, 28, 0.0500000007); -INSERT INTO order_details VALUES (10894, 69, 36, 50, 0.0500000007); -INSERT INTO order_details VALUES (10894, 75, 7.75, 120, 0.0500000007); -INSERT INTO order_details VALUES (10895, 24, 4.5, 110, 0); -INSERT INTO order_details VALUES (10895, 39, 18, 45, 0); -INSERT INTO order_details VALUES (10895, 40, 18.3999996, 91, 0); -INSERT INTO order_details VALUES (10895, 60, 34, 100, 0); -INSERT INTO order_details VALUES (10896, 45, 9.5, 15, 0); -INSERT INTO order_details VALUES (10896, 56, 38, 16, 0); -INSERT INTO order_details VALUES (10897, 29, 123.790001, 80, 0); -INSERT INTO order_details VALUES (10897, 30, 25.8899994, 36, 0); -INSERT INTO order_details VALUES (10898, 13, 6, 5, 0); -INSERT INTO order_details VALUES (10899, 39, 18, 8, 0.150000006); -INSERT INTO order_details VALUES (10900, 70, 15, 3, 0.25); -INSERT INTO order_details VALUES (10901, 41, 9.64999962, 30, 0); -INSERT INTO order_details VALUES (10901, 71, 21.5, 30, 0); -INSERT INTO order_details VALUES (10902, 55, 24, 30, 0.150000006); -INSERT INTO order_details VALUES (10902, 62, 49.2999992, 6, 0.150000006); -INSERT INTO order_details VALUES (10903, 13, 6, 40, 0); -INSERT INTO order_details VALUES (10903, 65, 21.0499992, 21, 0); -INSERT INTO order_details VALUES (10903, 68, 12.5, 20, 0); -INSERT INTO order_details VALUES (10904, 58, 13.25, 15, 0); -INSERT INTO order_details VALUES (10904, 62, 49.2999992, 35, 0); -INSERT INTO order_details VALUES (10905, 1, 18, 20, 0.0500000007); -INSERT INTO order_details VALUES (10906, 61, 28.5, 15, 0); -INSERT INTO order_details VALUES (10907, 75, 7.75, 14, 0); -INSERT INTO order_details VALUES (10908, 7, 30, 20, 0.0500000007); -INSERT INTO order_details VALUES (10908, 52, 7, 14, 0.0500000007); -INSERT INTO order_details VALUES (10909, 7, 30, 12, 0); -INSERT INTO order_details VALUES (10909, 16, 17.4500008, 15, 0); -INSERT INTO order_details VALUES (10909, 41, 9.64999962, 5, 0); -INSERT INTO order_details VALUES (10910, 19, 9.19999981, 12, 0); -INSERT INTO order_details VALUES (10910, 49, 20, 10, 0); -INSERT INTO order_details VALUES (10910, 61, 28.5, 5, 0); -INSERT INTO order_details VALUES (10911, 1, 18, 10, 0); -INSERT INTO order_details VALUES (10911, 17, 39, 12, 0); -INSERT INTO order_details VALUES (10911, 67, 14, 15, 0); -INSERT INTO order_details VALUES (10912, 11, 21, 40, 0.25); -INSERT INTO order_details VALUES (10912, 29, 123.790001, 60, 0.25); -INSERT INTO order_details VALUES (10913, 4, 22, 30, 0.25); -INSERT INTO order_details VALUES (10913, 33, 2.5, 40, 0.25); -INSERT INTO order_details VALUES (10913, 58, 13.25, 15, 0); -INSERT INTO order_details VALUES (10914, 71, 21.5, 25, 0); -INSERT INTO order_details VALUES (10915, 17, 39, 10, 0); -INSERT INTO order_details VALUES (10915, 33, 2.5, 30, 0); -INSERT INTO order_details VALUES (10915, 54, 7.44999981, 10, 0); -INSERT INTO order_details VALUES (10916, 16, 17.4500008, 6, 0); -INSERT INTO order_details VALUES (10916, 32, 32, 6, 0); -INSERT INTO order_details VALUES (10916, 57, 19.5, 20, 0); -INSERT INTO order_details VALUES (10917, 30, 25.8899994, 1, 0); -INSERT INTO order_details VALUES (10917, 60, 34, 10, 0); -INSERT INTO order_details VALUES (10918, 1, 18, 60, 0.25); -INSERT INTO order_details VALUES (10918, 60, 34, 25, 0.25); -INSERT INTO order_details VALUES (10919, 16, 17.4500008, 24, 0); -INSERT INTO order_details VALUES (10919, 25, 14, 24, 0); -INSERT INTO order_details VALUES (10919, 40, 18.3999996, 20, 0); -INSERT INTO order_details VALUES (10920, 50, 16.25, 24, 0); -INSERT INTO order_details VALUES (10921, 35, 18, 10, 0); -INSERT INTO order_details VALUES (10921, 63, 43.9000015, 40, 0); -INSERT INTO order_details VALUES (10922, 17, 39, 15, 0); -INSERT INTO order_details VALUES (10922, 24, 4.5, 35, 0); -INSERT INTO order_details VALUES (10923, 42, 14, 10, 0.200000003); -INSERT INTO order_details VALUES (10923, 43, 46, 10, 0.200000003); -INSERT INTO order_details VALUES (10923, 67, 14, 24, 0.200000003); -INSERT INTO order_details VALUES (10924, 10, 31, 20, 0.100000001); -INSERT INTO order_details VALUES (10924, 28, 45.5999985, 30, 0.100000001); -INSERT INTO order_details VALUES (10924, 75, 7.75, 6, 0); -INSERT INTO order_details VALUES (10925, 36, 19, 25, 0.150000006); -INSERT INTO order_details VALUES (10925, 52, 7, 12, 0.150000006); -INSERT INTO order_details VALUES (10926, 11, 21, 2, 0); -INSERT INTO order_details VALUES (10926, 13, 6, 10, 0); -INSERT INTO order_details VALUES (10926, 19, 9.19999981, 7, 0); -INSERT INTO order_details VALUES (10926, 72, 34.7999992, 10, 0); -INSERT INTO order_details VALUES (10927, 20, 81, 5, 0); -INSERT INTO order_details VALUES (10927, 52, 7, 5, 0); -INSERT INTO order_details VALUES (10927, 76, 18, 20, 0); -INSERT INTO order_details VALUES (10928, 47, 9.5, 5, 0); -INSERT INTO order_details VALUES (10928, 76, 18, 5, 0); -INSERT INTO order_details VALUES (10929, 21, 10, 60, 0); -INSERT INTO order_details VALUES (10929, 75, 7.75, 49, 0); -INSERT INTO order_details VALUES (10929, 77, 13, 15, 0); -INSERT INTO order_details VALUES (10930, 21, 10, 36, 0); -INSERT INTO order_details VALUES (10930, 27, 43.9000015, 25, 0); -INSERT INTO order_details VALUES (10930, 55, 24, 25, 0.200000003); -INSERT INTO order_details VALUES (10930, 58, 13.25, 30, 0.200000003); -INSERT INTO order_details VALUES (10931, 13, 6, 42, 0.150000006); -INSERT INTO order_details VALUES (10931, 57, 19.5, 30, 0); -INSERT INTO order_details VALUES (10932, 16, 17.4500008, 30, 0.100000001); -INSERT INTO order_details VALUES (10932, 62, 49.2999992, 14, 0.100000001); -INSERT INTO order_details VALUES (10932, 72, 34.7999992, 16, 0); -INSERT INTO order_details VALUES (10932, 75, 7.75, 20, 0.100000001); -INSERT INTO order_details VALUES (10933, 53, 32.7999992, 2, 0); -INSERT INTO order_details VALUES (10933, 61, 28.5, 30, 0); -INSERT INTO order_details VALUES (10934, 6, 25, 20, 0); -INSERT INTO order_details VALUES (10935, 1, 18, 21, 0); -INSERT INTO order_details VALUES (10935, 18, 62.5, 4, 0.25); -INSERT INTO order_details VALUES (10935, 23, 9, 8, 0.25); -INSERT INTO order_details VALUES (10936, 36, 19, 30, 0.200000003); -INSERT INTO order_details VALUES (10937, 28, 45.5999985, 8, 0); -INSERT INTO order_details VALUES (10937, 34, 14, 20, 0); -INSERT INTO order_details VALUES (10938, 13, 6, 20, 0.25); -INSERT INTO order_details VALUES (10938, 43, 46, 24, 0.25); -INSERT INTO order_details VALUES (10938, 60, 34, 49, 0.25); -INSERT INTO order_details VALUES (10938, 71, 21.5, 35, 0.25); -INSERT INTO order_details VALUES (10939, 2, 19, 10, 0.150000006); -INSERT INTO order_details VALUES (10939, 67, 14, 40, 0.150000006); -INSERT INTO order_details VALUES (10940, 7, 30, 8, 0); -INSERT INTO order_details VALUES (10940, 13, 6, 20, 0); -INSERT INTO order_details VALUES (10941, 31, 12.5, 44, 0.25); -INSERT INTO order_details VALUES (10941, 62, 49.2999992, 30, 0.25); -INSERT INTO order_details VALUES (10941, 68, 12.5, 80, 0.25); -INSERT INTO order_details VALUES (10941, 72, 34.7999992, 50, 0); -INSERT INTO order_details VALUES (10942, 49, 20, 28, 0); -INSERT INTO order_details VALUES (10943, 13, 6, 15, 0); -INSERT INTO order_details VALUES (10943, 22, 21, 21, 0); -INSERT INTO order_details VALUES (10943, 46, 12, 15, 0); -INSERT INTO order_details VALUES (10944, 11, 21, 5, 0.25); -INSERT INTO order_details VALUES (10944, 44, 19.4500008, 18, 0.25); -INSERT INTO order_details VALUES (10944, 56, 38, 18, 0); -INSERT INTO order_details VALUES (10945, 13, 6, 20, 0); -INSERT INTO order_details VALUES (10945, 31, 12.5, 10, 0); -INSERT INTO order_details VALUES (10946, 10, 31, 25, 0); -INSERT INTO order_details VALUES (10946, 24, 4.5, 25, 0); -INSERT INTO order_details VALUES (10946, 77, 13, 40, 0); -INSERT INTO order_details VALUES (10947, 59, 55, 4, 0); -INSERT INTO order_details VALUES (10948, 50, 16.25, 9, 0); -INSERT INTO order_details VALUES (10948, 51, 53, 40, 0); -INSERT INTO order_details VALUES (10948, 55, 24, 4, 0); -INSERT INTO order_details VALUES (10949, 6, 25, 12, 0); -INSERT INTO order_details VALUES (10949, 10, 31, 30, 0); -INSERT INTO order_details VALUES (10949, 17, 39, 6, 0); -INSERT INTO order_details VALUES (10949, 62, 49.2999992, 60, 0); -INSERT INTO order_details VALUES (10950, 4, 22, 5, 0); -INSERT INTO order_details VALUES (10951, 33, 2.5, 15, 0.0500000007); -INSERT INTO order_details VALUES (10951, 41, 9.64999962, 6, 0.0500000007); -INSERT INTO order_details VALUES (10951, 75, 7.75, 50, 0.0500000007); -INSERT INTO order_details VALUES (10952, 6, 25, 16, 0.0500000007); -INSERT INTO order_details VALUES (10952, 28, 45.5999985, 2, 0); -INSERT INTO order_details VALUES (10953, 20, 81, 50, 0.0500000007); -INSERT INTO order_details VALUES (10953, 31, 12.5, 50, 0.0500000007); -INSERT INTO order_details VALUES (10954, 16, 17.4500008, 28, 0.150000006); -INSERT INTO order_details VALUES (10954, 31, 12.5, 25, 0.150000006); -INSERT INTO order_details VALUES (10954, 45, 9.5, 30, 0); -INSERT INTO order_details VALUES (10954, 60, 34, 24, 0.150000006); -INSERT INTO order_details VALUES (10955, 75, 7.75, 12, 0.200000003); -INSERT INTO order_details VALUES (10956, 21, 10, 12, 0); -INSERT INTO order_details VALUES (10956, 47, 9.5, 14, 0); -INSERT INTO order_details VALUES (10956, 51, 53, 8, 0); -INSERT INTO order_details VALUES (10957, 30, 25.8899994, 30, 0); -INSERT INTO order_details VALUES (10957, 35, 18, 40, 0); -INSERT INTO order_details VALUES (10957, 64, 33.25, 8, 0); -INSERT INTO order_details VALUES (10958, 5, 21.3500004, 20, 0); -INSERT INTO order_details VALUES (10958, 7, 30, 6, 0); -INSERT INTO order_details VALUES (10958, 72, 34.7999992, 5, 0); -INSERT INTO order_details VALUES (10959, 75, 7.75, 20, 0.150000006); -INSERT INTO order_details VALUES (10960, 24, 4.5, 10, 0.25); -INSERT INTO order_details VALUES (10960, 41, 9.64999962, 24, 0); -INSERT INTO order_details VALUES (10961, 52, 7, 6, 0.0500000007); -INSERT INTO order_details VALUES (10961, 76, 18, 60, 0); -INSERT INTO order_details VALUES (10962, 7, 30, 45, 0); -INSERT INTO order_details VALUES (10962, 13, 6, 77, 0); -INSERT INTO order_details VALUES (10962, 53, 32.7999992, 20, 0); -INSERT INTO order_details VALUES (10962, 69, 36, 9, 0); -INSERT INTO order_details VALUES (10962, 76, 18, 44, 0); -INSERT INTO order_details VALUES (10963, 60, 34, 2, 0.150000006); -INSERT INTO order_details VALUES (10964, 18, 62.5, 6, 0); -INSERT INTO order_details VALUES (10964, 38, 263.5, 5, 0); -INSERT INTO order_details VALUES (10964, 69, 36, 10, 0); -INSERT INTO order_details VALUES (10965, 51, 53, 16, 0); -INSERT INTO order_details VALUES (10966, 37, 26, 8, 0); -INSERT INTO order_details VALUES (10966, 56, 38, 12, 0.150000006); -INSERT INTO order_details VALUES (10966, 62, 49.2999992, 12, 0.150000006); -INSERT INTO order_details VALUES (10967, 19, 9.19999981, 12, 0); -INSERT INTO order_details VALUES (10967, 49, 20, 40, 0); -INSERT INTO order_details VALUES (10968, 12, 38, 30, 0); -INSERT INTO order_details VALUES (10968, 24, 4.5, 30, 0); -INSERT INTO order_details VALUES (10968, 64, 33.25, 4, 0); -INSERT INTO order_details VALUES (10969, 46, 12, 9, 0); -INSERT INTO order_details VALUES (10970, 52, 7, 40, 0.200000003); -INSERT INTO order_details VALUES (10971, 29, 123.790001, 14, 0); -INSERT INTO order_details VALUES (10972, 17, 39, 6, 0); -INSERT INTO order_details VALUES (10972, 33, 2.5, 7, 0); -INSERT INTO order_details VALUES (10973, 26, 31.2299995, 5, 0); -INSERT INTO order_details VALUES (10973, 41, 9.64999962, 6, 0); -INSERT INTO order_details VALUES (10973, 75, 7.75, 10, 0); -INSERT INTO order_details VALUES (10974, 63, 43.9000015, 10, 0); -INSERT INTO order_details VALUES (10975, 8, 40, 16, 0); -INSERT INTO order_details VALUES (10975, 75, 7.75, 10, 0); -INSERT INTO order_details VALUES (10976, 28, 45.5999985, 20, 0); -INSERT INTO order_details VALUES (10977, 39, 18, 30, 0); -INSERT INTO order_details VALUES (10977, 47, 9.5, 30, 0); -INSERT INTO order_details VALUES (10977, 51, 53, 10, 0); -INSERT INTO order_details VALUES (10977, 63, 43.9000015, 20, 0); -INSERT INTO order_details VALUES (10978, 8, 40, 20, 0.150000006); -INSERT INTO order_details VALUES (10978, 21, 10, 40, 0.150000006); -INSERT INTO order_details VALUES (10978, 40, 18.3999996, 10, 0); -INSERT INTO order_details VALUES (10978, 44, 19.4500008, 6, 0.150000006); -INSERT INTO order_details VALUES (10979, 7, 30, 18, 0); -INSERT INTO order_details VALUES (10979, 12, 38, 20, 0); -INSERT INTO order_details VALUES (10979, 24, 4.5, 80, 0); -INSERT INTO order_details VALUES (10979, 27, 43.9000015, 30, 0); -INSERT INTO order_details VALUES (10979, 31, 12.5, 24, 0); -INSERT INTO order_details VALUES (10979, 63, 43.9000015, 35, 0); -INSERT INTO order_details VALUES (10980, 75, 7.75, 40, 0.200000003); -INSERT INTO order_details VALUES (10981, 38, 263.5, 60, 0); -INSERT INTO order_details VALUES (10982, 7, 30, 20, 0); -INSERT INTO order_details VALUES (10982, 43, 46, 9, 0); -INSERT INTO order_details VALUES (10983, 13, 6, 84, 0.150000006); -INSERT INTO order_details VALUES (10983, 57, 19.5, 15, 0); -INSERT INTO order_details VALUES (10984, 16, 17.4500008, 55, 0); -INSERT INTO order_details VALUES (10984, 24, 4.5, 20, 0); -INSERT INTO order_details VALUES (10984, 36, 19, 40, 0); -INSERT INTO order_details VALUES (10985, 16, 17.4500008, 36, 0.100000001); -INSERT INTO order_details VALUES (10985, 18, 62.5, 8, 0.100000001); -INSERT INTO order_details VALUES (10985, 32, 32, 35, 0.100000001); -INSERT INTO order_details VALUES (10986, 11, 21, 30, 0); -INSERT INTO order_details VALUES (10986, 20, 81, 15, 0); -INSERT INTO order_details VALUES (10986, 76, 18, 10, 0); -INSERT INTO order_details VALUES (10986, 77, 13, 15, 0); -INSERT INTO order_details VALUES (10987, 7, 30, 60, 0); -INSERT INTO order_details VALUES (10987, 43, 46, 6, 0); -INSERT INTO order_details VALUES (10987, 72, 34.7999992, 20, 0); -INSERT INTO order_details VALUES (10988, 7, 30, 60, 0); -INSERT INTO order_details VALUES (10988, 62, 49.2999992, 40, 0.100000001); -INSERT INTO order_details VALUES (10989, 6, 25, 40, 0); -INSERT INTO order_details VALUES (10989, 11, 21, 15, 0); -INSERT INTO order_details VALUES (10989, 41, 9.64999962, 4, 0); -INSERT INTO order_details VALUES (10990, 21, 10, 65, 0); -INSERT INTO order_details VALUES (10990, 34, 14, 60, 0.150000006); -INSERT INTO order_details VALUES (10990, 55, 24, 65, 0.150000006); -INSERT INTO order_details VALUES (10990, 61, 28.5, 66, 0.150000006); -INSERT INTO order_details VALUES (10991, 2, 19, 50, 0.200000003); -INSERT INTO order_details VALUES (10991, 70, 15, 20, 0.200000003); -INSERT INTO order_details VALUES (10991, 76, 18, 90, 0.200000003); -INSERT INTO order_details VALUES (10992, 72, 34.7999992, 2, 0); -INSERT INTO order_details VALUES (10993, 29, 123.790001, 50, 0.25); -INSERT INTO order_details VALUES (10993, 41, 9.64999962, 35, 0.25); -INSERT INTO order_details VALUES (10994, 59, 55, 18, 0.0500000007); -INSERT INTO order_details VALUES (10995, 51, 53, 20, 0); -INSERT INTO order_details VALUES (10995, 60, 34, 4, 0); -INSERT INTO order_details VALUES (10996, 42, 14, 40, 0); -INSERT INTO order_details VALUES (10997, 32, 32, 50, 0); -INSERT INTO order_details VALUES (10997, 46, 12, 20, 0.25); -INSERT INTO order_details VALUES (10997, 52, 7, 20, 0.25); -INSERT INTO order_details VALUES (10998, 24, 4.5, 12, 0); -INSERT INTO order_details VALUES (10998, 61, 28.5, 7, 0); -INSERT INTO order_details VALUES (10998, 74, 10, 20, 0); -INSERT INTO order_details VALUES (10998, 75, 7.75, 30, 0); -INSERT INTO order_details VALUES (10999, 41, 9.64999962, 20, 0.0500000007); -INSERT INTO order_details VALUES (10999, 51, 53, 15, 0.0500000007); -INSERT INTO order_details VALUES (10999, 77, 13, 21, 0.0500000007); -INSERT INTO order_details VALUES (11000, 4, 22, 25, 0.25); -INSERT INTO order_details VALUES (11000, 24, 4.5, 30, 0.25); -INSERT INTO order_details VALUES (11000, 77, 13, 30, 0); -INSERT INTO order_details VALUES (11001, 7, 30, 60, 0); -INSERT INTO order_details VALUES (11001, 22, 21, 25, 0); -INSERT INTO order_details VALUES (11001, 46, 12, 25, 0); -INSERT INTO order_details VALUES (11001, 55, 24, 6, 0); -INSERT INTO order_details VALUES (11002, 13, 6, 56, 0); -INSERT INTO order_details VALUES (11002, 35, 18, 15, 0.150000006); -INSERT INTO order_details VALUES (11002, 42, 14, 24, 0.150000006); -INSERT INTO order_details VALUES (11002, 55, 24, 40, 0); -INSERT INTO order_details VALUES (11003, 1, 18, 4, 0); -INSERT INTO order_details VALUES (11003, 40, 18.3999996, 10, 0); -INSERT INTO order_details VALUES (11003, 52, 7, 10, 0); -INSERT INTO order_details VALUES (11004, 26, 31.2299995, 6, 0); -INSERT INTO order_details VALUES (11004, 76, 18, 6, 0); -INSERT INTO order_details VALUES (11005, 1, 18, 2, 0); -INSERT INTO order_details VALUES (11005, 59, 55, 10, 0); -INSERT INTO order_details VALUES (11006, 1, 18, 8, 0); -INSERT INTO order_details VALUES (11006, 29, 123.790001, 2, 0.25); -INSERT INTO order_details VALUES (11007, 8, 40, 30, 0); -INSERT INTO order_details VALUES (11007, 29, 123.790001, 10, 0); -INSERT INTO order_details VALUES (11007, 42, 14, 14, 0); -INSERT INTO order_details VALUES (11008, 28, 45.5999985, 70, 0.0500000007); -INSERT INTO order_details VALUES (11008, 34, 14, 90, 0.0500000007); -INSERT INTO order_details VALUES (11008, 71, 21.5, 21, 0); -INSERT INTO order_details VALUES (11009, 24, 4.5, 12, 0); -INSERT INTO order_details VALUES (11009, 36, 19, 18, 0.25); -INSERT INTO order_details VALUES (11009, 60, 34, 9, 0); -INSERT INTO order_details VALUES (11010, 7, 30, 20, 0); -INSERT INTO order_details VALUES (11010, 24, 4.5, 10, 0); -INSERT INTO order_details VALUES (11011, 58, 13.25, 40, 0.0500000007); -INSERT INTO order_details VALUES (11011, 71, 21.5, 20, 0); -INSERT INTO order_details VALUES (11012, 19, 9.19999981, 50, 0.0500000007); -INSERT INTO order_details VALUES (11012, 60, 34, 36, 0.0500000007); -INSERT INTO order_details VALUES (11012, 71, 21.5, 60, 0.0500000007); -INSERT INTO order_details VALUES (11013, 23, 9, 10, 0); -INSERT INTO order_details VALUES (11013, 42, 14, 4, 0); -INSERT INTO order_details VALUES (11013, 45, 9.5, 20, 0); -INSERT INTO order_details VALUES (11013, 68, 12.5, 2, 0); -INSERT INTO order_details VALUES (11014, 41, 9.64999962, 28, 0.100000001); -INSERT INTO order_details VALUES (11015, 30, 25.8899994, 15, 0); -INSERT INTO order_details VALUES (11015, 77, 13, 18, 0); -INSERT INTO order_details VALUES (11016, 31, 12.5, 15, 0); -INSERT INTO order_details VALUES (11016, 36, 19, 16, 0); -INSERT INTO order_details VALUES (11017, 3, 10, 25, 0); -INSERT INTO order_details VALUES (11017, 59, 55, 110, 0); -INSERT INTO order_details VALUES (11017, 70, 15, 30, 0); -INSERT INTO order_details VALUES (11018, 12, 38, 20, 0); -INSERT INTO order_details VALUES (11018, 18, 62.5, 10, 0); -INSERT INTO order_details VALUES (11018, 56, 38, 5, 0); -INSERT INTO order_details VALUES (11019, 46, 12, 3, 0); -INSERT INTO order_details VALUES (11019, 49, 20, 2, 0); -INSERT INTO order_details VALUES (11020, 10, 31, 24, 0.150000006); -INSERT INTO order_details VALUES (11021, 2, 19, 11, 0.25); -INSERT INTO order_details VALUES (11021, 20, 81, 15, 0); -INSERT INTO order_details VALUES (11021, 26, 31.2299995, 63, 0); -INSERT INTO order_details VALUES (11021, 51, 53, 44, 0.25); -INSERT INTO order_details VALUES (11021, 72, 34.7999992, 35, 0); -INSERT INTO order_details VALUES (11022, 19, 9.19999981, 35, 0); -INSERT INTO order_details VALUES (11022, 69, 36, 30, 0); -INSERT INTO order_details VALUES (11023, 7, 30, 4, 0); -INSERT INTO order_details VALUES (11023, 43, 46, 30, 0); -INSERT INTO order_details VALUES (11024, 26, 31.2299995, 12, 0); -INSERT INTO order_details VALUES (11024, 33, 2.5, 30, 0); -INSERT INTO order_details VALUES (11024, 65, 21.0499992, 21, 0); -INSERT INTO order_details VALUES (11024, 71, 21.5, 50, 0); -INSERT INTO order_details VALUES (11025, 1, 18, 10, 0.100000001); -INSERT INTO order_details VALUES (11025, 13, 6, 20, 0.100000001); -INSERT INTO order_details VALUES (11026, 18, 62.5, 8, 0); -INSERT INTO order_details VALUES (11026, 51, 53, 10, 0); -INSERT INTO order_details VALUES (11027, 24, 4.5, 30, 0.25); -INSERT INTO order_details VALUES (11027, 62, 49.2999992, 21, 0.25); -INSERT INTO order_details VALUES (11028, 55, 24, 35, 0); -INSERT INTO order_details VALUES (11028, 59, 55, 24, 0); -INSERT INTO order_details VALUES (11029, 56, 38, 20, 0); -INSERT INTO order_details VALUES (11029, 63, 43.9000015, 12, 0); -INSERT INTO order_details VALUES (11030, 2, 19, 100, 0.25); -INSERT INTO order_details VALUES (11030, 5, 21.3500004, 70, 0); -INSERT INTO order_details VALUES (11030, 29, 123.790001, 60, 0.25); -INSERT INTO order_details VALUES (11030, 59, 55, 100, 0.25); -INSERT INTO order_details VALUES (11031, 1, 18, 45, 0); -INSERT INTO order_details VALUES (11031, 13, 6, 80, 0); -INSERT INTO order_details VALUES (11031, 24, 4.5, 21, 0); -INSERT INTO order_details VALUES (11031, 64, 33.25, 20, 0); -INSERT INTO order_details VALUES (11031, 71, 21.5, 16, 0); -INSERT INTO order_details VALUES (11032, 36, 19, 35, 0); -INSERT INTO order_details VALUES (11032, 38, 263.5, 25, 0); -INSERT INTO order_details VALUES (11032, 59, 55, 30, 0); -INSERT INTO order_details VALUES (11033, 53, 32.7999992, 70, 0.100000001); -INSERT INTO order_details VALUES (11033, 69, 36, 36, 0.100000001); -INSERT INTO order_details VALUES (11034, 21, 10, 15, 0.100000001); -INSERT INTO order_details VALUES (11034, 44, 19.4500008, 12, 0); -INSERT INTO order_details VALUES (11034, 61, 28.5, 6, 0); -INSERT INTO order_details VALUES (11035, 1, 18, 10, 0); -INSERT INTO order_details VALUES (11035, 35, 18, 60, 0); -INSERT INTO order_details VALUES (11035, 42, 14, 30, 0); -INSERT INTO order_details VALUES (11035, 54, 7.44999981, 10, 0); -INSERT INTO order_details VALUES (11036, 13, 6, 7, 0); -INSERT INTO order_details VALUES (11036, 59, 55, 30, 0); -INSERT INTO order_details VALUES (11037, 70, 15, 4, 0); -INSERT INTO order_details VALUES (11038, 40, 18.3999996, 5, 0.200000003); -INSERT INTO order_details VALUES (11038, 52, 7, 2, 0); -INSERT INTO order_details VALUES (11038, 71, 21.5, 30, 0); -INSERT INTO order_details VALUES (11039, 28, 45.5999985, 20, 0); -INSERT INTO order_details VALUES (11039, 35, 18, 24, 0); -INSERT INTO order_details VALUES (11039, 49, 20, 60, 0); -INSERT INTO order_details VALUES (11039, 57, 19.5, 28, 0); -INSERT INTO order_details VALUES (11040, 21, 10, 20, 0); -INSERT INTO order_details VALUES (11041, 2, 19, 30, 0.200000003); -INSERT INTO order_details VALUES (11041, 63, 43.9000015, 30, 0); -INSERT INTO order_details VALUES (11042, 44, 19.4500008, 15, 0); -INSERT INTO order_details VALUES (11042, 61, 28.5, 4, 0); -INSERT INTO order_details VALUES (11043, 11, 21, 10, 0); -INSERT INTO order_details VALUES (11044, 62, 49.2999992, 12, 0); -INSERT INTO order_details VALUES (11045, 33, 2.5, 15, 0); -INSERT INTO order_details VALUES (11045, 51, 53, 24, 0); -INSERT INTO order_details VALUES (11046, 12, 38, 20, 0.0500000007); -INSERT INTO order_details VALUES (11046, 32, 32, 15, 0.0500000007); -INSERT INTO order_details VALUES (11046, 35, 18, 18, 0.0500000007); -INSERT INTO order_details VALUES (11047, 1, 18, 25, 0.25); -INSERT INTO order_details VALUES (11047, 5, 21.3500004, 30, 0.25); -INSERT INTO order_details VALUES (11048, 68, 12.5, 42, 0); -INSERT INTO order_details VALUES (11049, 2, 19, 10, 0.200000003); -INSERT INTO order_details VALUES (11049, 12, 38, 4, 0.200000003); -INSERT INTO order_details VALUES (11050, 76, 18, 50, 0.100000001); -INSERT INTO order_details VALUES (11051, 24, 4.5, 10, 0.200000003); -INSERT INTO order_details VALUES (11052, 43, 46, 30, 0.200000003); -INSERT INTO order_details VALUES (11052, 61, 28.5, 10, 0.200000003); -INSERT INTO order_details VALUES (11053, 18, 62.5, 35, 0.200000003); -INSERT INTO order_details VALUES (11053, 32, 32, 20, 0); -INSERT INTO order_details VALUES (11053, 64, 33.25, 25, 0.200000003); -INSERT INTO order_details VALUES (11054, 33, 2.5, 10, 0); -INSERT INTO order_details VALUES (11054, 67, 14, 20, 0); -INSERT INTO order_details VALUES (11055, 24, 4.5, 15, 0); -INSERT INTO order_details VALUES (11055, 25, 14, 15, 0); -INSERT INTO order_details VALUES (11055, 51, 53, 20, 0); -INSERT INTO order_details VALUES (11055, 57, 19.5, 20, 0); -INSERT INTO order_details VALUES (11056, 7, 30, 40, 0); -INSERT INTO order_details VALUES (11056, 55, 24, 35, 0); -INSERT INTO order_details VALUES (11056, 60, 34, 50, 0); -INSERT INTO order_details VALUES (11057, 70, 15, 3, 0); -INSERT INTO order_details VALUES (11058, 21, 10, 3, 0); -INSERT INTO order_details VALUES (11058, 60, 34, 21, 0); -INSERT INTO order_details VALUES (11058, 61, 28.5, 4, 0); -INSERT INTO order_details VALUES (11059, 13, 6, 30, 0); -INSERT INTO order_details VALUES (11059, 17, 39, 12, 0); -INSERT INTO order_details VALUES (11059, 60, 34, 35, 0); -INSERT INTO order_details VALUES (11060, 60, 34, 4, 0); -INSERT INTO order_details VALUES (11060, 77, 13, 10, 0); -INSERT INTO order_details VALUES (11061, 60, 34, 15, 0); -INSERT INTO order_details VALUES (11062, 53, 32.7999992, 10, 0.200000003); -INSERT INTO order_details VALUES (11062, 70, 15, 12, 0.200000003); -INSERT INTO order_details VALUES (11063, 34, 14, 30, 0); -INSERT INTO order_details VALUES (11063, 40, 18.3999996, 40, 0.100000001); -INSERT INTO order_details VALUES (11063, 41, 9.64999962, 30, 0.100000001); -INSERT INTO order_details VALUES (11064, 17, 39, 77, 0.100000001); -INSERT INTO order_details VALUES (11064, 41, 9.64999962, 12, 0); -INSERT INTO order_details VALUES (11064, 53, 32.7999992, 25, 0.100000001); -INSERT INTO order_details VALUES (11064, 55, 24, 4, 0.100000001); -INSERT INTO order_details VALUES (11064, 68, 12.5, 55, 0); -INSERT INTO order_details VALUES (11065, 30, 25.8899994, 4, 0.25); -INSERT INTO order_details VALUES (11065, 54, 7.44999981, 20, 0.25); -INSERT INTO order_details VALUES (11066, 16, 17.4500008, 3, 0); -INSERT INTO order_details VALUES (11066, 19, 9.19999981, 42, 0); -INSERT INTO order_details VALUES (11066, 34, 14, 35, 0); -INSERT INTO order_details VALUES (11067, 41, 9.64999962, 9, 0); -INSERT INTO order_details VALUES (11068, 28, 45.5999985, 8, 0.150000006); -INSERT INTO order_details VALUES (11068, 43, 46, 36, 0.150000006); -INSERT INTO order_details VALUES (11068, 77, 13, 28, 0.150000006); -INSERT INTO order_details VALUES (11069, 39, 18, 20, 0); -INSERT INTO order_details VALUES (11070, 1, 18, 40, 0.150000006); -INSERT INTO order_details VALUES (11070, 2, 19, 20, 0.150000006); -INSERT INTO order_details VALUES (11070, 16, 17.4500008, 30, 0.150000006); -INSERT INTO order_details VALUES (11070, 31, 12.5, 20, 0); -INSERT INTO order_details VALUES (11071, 7, 30, 15, 0.0500000007); -INSERT INTO order_details VALUES (11071, 13, 6, 10, 0.0500000007); -INSERT INTO order_details VALUES (11072, 2, 19, 8, 0); -INSERT INTO order_details VALUES (11072, 41, 9.64999962, 40, 0); -INSERT INTO order_details VALUES (11072, 50, 16.25, 22, 0); -INSERT INTO order_details VALUES (11072, 64, 33.25, 130, 0); -INSERT INTO order_details VALUES (11073, 11, 21, 10, 0); -INSERT INTO order_details VALUES (11073, 24, 4.5, 20, 0); -INSERT INTO order_details VALUES (11074, 16, 17.4500008, 14, 0.0500000007); -INSERT INTO order_details VALUES (11075, 2, 19, 10, 0.150000006); -INSERT INTO order_details VALUES (11075, 46, 12, 30, 0.150000006); -INSERT INTO order_details VALUES (11075, 76, 18, 2, 0.150000006); -INSERT INTO order_details VALUES (11076, 6, 25, 20, 0.25); -INSERT INTO order_details VALUES (11076, 14, 23.25, 20, 0.25); -INSERT INTO order_details VALUES (11076, 19, 9.19999981, 10, 0.25); -INSERT INTO order_details VALUES (11077, 2, 19, 24, 0.200000003); -INSERT INTO order_details VALUES (11077, 3, 10, 4, 0); -INSERT INTO order_details VALUES (11077, 4, 22, 1, 0); -INSERT INTO order_details VALUES (11077, 6, 25, 1, 0.0199999996); -INSERT INTO order_details VALUES (11077, 7, 30, 1, 0.0500000007); -INSERT INTO order_details VALUES (11077, 8, 40, 2, 0.100000001); -INSERT INTO order_details VALUES (11077, 10, 31, 1, 0); -INSERT INTO order_details VALUES (11077, 12, 38, 2, 0.0500000007); -INSERT INTO order_details VALUES (11077, 13, 6, 4, 0); -INSERT INTO order_details VALUES (11077, 14, 23.25, 1, 0.0299999993); -INSERT INTO order_details VALUES (11077, 16, 17.4500008, 2, 0.0299999993); -INSERT INTO order_details VALUES (11077, 20, 81, 1, 0.0399999991); -INSERT INTO order_details VALUES (11077, 23, 9, 2, 0); -INSERT INTO order_details VALUES (11077, 32, 32, 1, 0); -INSERT INTO order_details VALUES (11077, 39, 18, 2, 0.0500000007); -INSERT INTO order_details VALUES (11077, 41, 9.64999962, 3, 0); -INSERT INTO order_details VALUES (11077, 46, 12, 3, 0.0199999996); -INSERT INTO order_details VALUES (11077, 52, 7, 2, 0); -INSERT INTO order_details VALUES (11077, 55, 24, 2, 0); -INSERT INTO order_details VALUES (11077, 60, 34, 2, 0.0599999987); -INSERT INTO order_details VALUES (11077, 64, 33.25, 2, 0.0299999993); -INSERT INTO order_details VALUES (11077, 66, 17, 1, 0); -INSERT INTO order_details VALUES (11077, 73, 15, 2, 0.00999999978); -INSERT INTO order_details VALUES (11077, 75, 7.75, 4, 0); -INSERT INTO order_details VALUES (11077, 77, 13, 2, 0); - - --- --- Data for Name: orders; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO orders VALUES (10248, 'VINET', 5, '1996-07-04', '1996-08-01', '1996-07-16', 3, 32.3800011, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); -INSERT INTO orders VALUES (10249, 'TOMSP', 6, '1996-07-05', '1996-08-16', '1996-07-10', 1, 11.6099997, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); -INSERT INTO orders VALUES (10250, 'HANAR', 4, '1996-07-08', '1996-08-05', '1996-07-12', 2, 65.8300018, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10251, 'VICTE', 3, '1996-07-08', '1996-08-05', '1996-07-15', 1, 41.3400002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10252, 'SUPRD', 4, '1996-07-09', '1996-08-06', '1996-07-11', 2, 51.2999992, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10253, 'HANAR', 3, '1996-07-10', '1996-07-24', '1996-07-16', 2, 58.1699982, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10254, 'CHOPS', 5, '1996-07-11', '1996-08-08', '1996-07-23', 2, 22.9799995, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (10255, 'RICSU', 9, '1996-07-12', '1996-08-09', '1996-07-15', 3, 148.330002, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10256, 'WELLI', 3, '1996-07-15', '1996-08-12', '1996-07-17', 2, 13.9700003, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10257, 'HILAA', 4, '1996-07-16', '1996-08-13', '1996-07-22', 3, 81.9100037, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10258, 'ERNSH', 1, '1996-07-17', '1996-08-14', '1996-07-23', 1, 140.509995, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10259, 'CENTC', 4, '1996-07-18', '1996-08-15', '1996-07-25', 3, 3.25, 'Centro comercial Moctezuma', 'Sierras de Granada 9993', 'México D.F.', NULL, '05022', 'Mexico'); -INSERT INTO orders VALUES (10260, 'OTTIK', 4, '1996-07-19', '1996-08-16', '1996-07-29', 1, 55.0900002, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10261, 'QUEDE', 4, '1996-07-19', '1996-08-16', '1996-07-30', 2, 3.04999995, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10262, 'RATTC', 8, '1996-07-22', '1996-08-19', '1996-07-25', 3, 48.2900009, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10263, 'ERNSH', 9, '1996-07-23', '1996-08-20', '1996-07-31', 3, 146.059998, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10264, 'FOLKO', 6, '1996-07-24', '1996-08-21', '1996-08-23', 3, 3.67000008, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10265, 'BLONP', 2, '1996-07-25', '1996-08-22', '1996-08-12', 1, 55.2799988, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10266, 'WARTH', 3, '1996-07-26', '1996-09-06', '1996-07-31', 3, 25.7299995, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10267, 'FRANK', 4, '1996-07-29', '1996-08-26', '1996-08-06', 1, 208.580002, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10268, 'GROSR', 8, '1996-07-30', '1996-08-27', '1996-08-02', 3, 66.2900009, 'GROSELLA-Restaurante', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela'); -INSERT INTO orders VALUES (10269, 'WHITC', 5, '1996-07-31', '1996-08-14', '1996-08-09', 1, 4.55999994, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10270, 'WARTH', 1, '1996-08-01', '1996-08-29', '1996-08-02', 1, 136.539993, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10271, 'SPLIR', 6, '1996-08-01', '1996-08-29', '1996-08-30', 2, 4.53999996, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10272, 'RATTC', 6, '1996-08-02', '1996-08-30', '1996-08-06', 2, 98.0299988, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10273, 'QUICK', 3, '1996-08-05', '1996-09-02', '1996-08-12', 3, 76.0699997, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10274, 'VINET', 6, '1996-08-06', '1996-09-03', '1996-08-16', 1, 6.01000023, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); -INSERT INTO orders VALUES (10275, 'MAGAA', 1, '1996-08-07', '1996-09-04', '1996-08-09', 1, 26.9300003, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10276, 'TORTU', 8, '1996-08-08', '1996-08-22', '1996-08-14', 3, 13.8400002, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10277, 'MORGK', 2, '1996-08-09', '1996-09-06', '1996-08-13', 3, 125.769997, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); -INSERT INTO orders VALUES (10278, 'BERGS', 8, '1996-08-12', '1996-09-09', '1996-08-16', 2, 92.6900024, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10279, 'LEHMS', 8, '1996-08-13', '1996-09-10', '1996-08-16', 2, 25.8299999, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10280, 'BERGS', 2, '1996-08-14', '1996-09-11', '1996-09-12', 1, 8.97999954, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10281, 'ROMEY', 4, '1996-08-14', '1996-08-28', '1996-08-21', 1, 2.94000006, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); -INSERT INTO orders VALUES (10282, 'ROMEY', 4, '1996-08-15', '1996-09-12', '1996-08-21', 1, 12.6899996, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); -INSERT INTO orders VALUES (10283, 'LILAS', 3, '1996-08-16', '1996-09-13', '1996-08-23', 3, 84.8099976, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10284, 'LEHMS', 4, '1996-08-19', '1996-09-16', '1996-08-27', 1, 76.5599976, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10285, 'QUICK', 1, '1996-08-20', '1996-09-17', '1996-08-26', 2, 76.8300018, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10286, 'QUICK', 8, '1996-08-21', '1996-09-18', '1996-08-30', 3, 229.240005, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10287, 'RICAR', 8, '1996-08-22', '1996-09-19', '1996-08-28', 3, 12.7600002, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10288, 'REGGC', 4, '1996-08-23', '1996-09-20', '1996-09-03', 1, 7.44999981, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10289, 'BSBEV', 7, '1996-08-26', '1996-09-23', '1996-08-28', 3, 22.7700005, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10290, 'COMMI', 8, '1996-08-27', '1996-09-24', '1996-09-03', 1, 79.6999969, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); -INSERT INTO orders VALUES (10291, 'QUEDE', 6, '1996-08-27', '1996-09-24', '1996-09-04', 2, 6.4000001, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10292, 'TRADH', 1, '1996-08-28', '1996-09-25', '1996-09-02', 2, 1.35000002, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); -INSERT INTO orders VALUES (10293, 'TORTU', 1, '1996-08-29', '1996-09-26', '1996-09-11', 3, 21.1800003, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10294, 'RATTC', 4, '1996-08-30', '1996-09-27', '1996-09-05', 2, 147.259995, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10295, 'VINET', 2, '1996-09-02', '1996-09-30', '1996-09-10', 2, 1.14999998, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); -INSERT INTO orders VALUES (10296, 'LILAS', 6, '1996-09-03', '1996-10-01', '1996-09-11', 1, 0.119999997, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10297, 'BLONP', 5, '1996-09-04', '1996-10-16', '1996-09-10', 2, 5.73999977, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10298, 'HUNGO', 6, '1996-09-05', '1996-10-03', '1996-09-11', 2, 168.220001, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10299, 'RICAR', 4, '1996-09-06', '1996-10-04', '1996-09-13', 2, 29.7600002, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10300, 'MAGAA', 2, '1996-09-09', '1996-10-07', '1996-09-18', 2, 17.6800003, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10301, 'WANDK', 8, '1996-09-09', '1996-10-07', '1996-09-17', 2, 45.0800018, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10302, 'SUPRD', 4, '1996-09-10', '1996-10-08', '1996-10-09', 2, 6.26999998, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10303, 'GODOS', 7, '1996-09-11', '1996-10-09', '1996-09-18', 2, 107.830002, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10304, 'TORTU', 1, '1996-09-12', '1996-10-10', '1996-09-17', 2, 63.7900009, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10305, 'OLDWO', 8, '1996-09-13', '1996-10-11', '1996-10-09', 3, 257.619995, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10306, 'ROMEY', 1, '1996-09-16', '1996-10-14', '1996-09-23', 3, 7.55999994, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); -INSERT INTO orders VALUES (10307, 'LONEP', 2, '1996-09-17', '1996-10-15', '1996-09-25', 2, 0.560000002, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10308, 'ANATR', 7, '1996-09-18', '1996-10-16', '1996-09-24', 3, 1.61000001, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); -INSERT INTO orders VALUES (10309, 'HUNGO', 3, '1996-09-19', '1996-10-17', '1996-10-23', 1, 47.2999992, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10310, 'THEBI', 8, '1996-09-20', '1996-10-18', '1996-09-27', 2, 17.5200005, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); -INSERT INTO orders VALUES (10311, 'DUMON', 1, '1996-09-20', '1996-10-04', '1996-09-26', 3, 24.6900005, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10312, 'WANDK', 2, '1996-09-23', '1996-10-21', '1996-10-03', 2, 40.2599983, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10313, 'QUICK', 2, '1996-09-24', '1996-10-22', '1996-10-04', 2, 1.96000004, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10314, 'RATTC', 1, '1996-09-25', '1996-10-23', '1996-10-04', 2, 74.1600037, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10315, 'ISLAT', 4, '1996-09-26', '1996-10-24', '1996-10-03', 2, 41.7599983, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10316, 'RATTC', 1, '1996-09-27', '1996-10-25', '1996-10-08', 3, 150.149994, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10317, 'LONEP', 6, '1996-09-30', '1996-10-28', '1996-10-10', 1, 12.6899996, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10318, 'ISLAT', 8, '1996-10-01', '1996-10-29', '1996-10-04', 2, 4.73000002, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10319, 'TORTU', 7, '1996-10-02', '1996-10-30', '1996-10-11', 3, 64.5, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10320, 'WARTH', 5, '1996-10-03', '1996-10-17', '1996-10-18', 3, 34.5699997, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10321, 'ISLAT', 3, '1996-10-03', '1996-10-31', '1996-10-11', 2, 3.43000007, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10322, 'PERIC', 7, '1996-10-04', '1996-11-01', '1996-10-23', 3, 0.400000006, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10323, 'KOENE', 4, '1996-10-07', '1996-11-04', '1996-10-14', 1, 4.88000011, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10324, 'SAVEA', 9, '1996-10-08', '1996-11-05', '1996-10-10', 1, 214.270004, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10325, 'KOENE', 1, '1996-10-09', '1996-10-23', '1996-10-14', 3, 64.8600006, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10326, 'BOLID', 4, '1996-10-10', '1996-11-07', '1996-10-14', 2, 77.9199982, 'Bólido Comidas preparadas', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain'); -INSERT INTO orders VALUES (10327, 'FOLKO', 2, '1996-10-11', '1996-11-08', '1996-10-14', 1, 63.3600006, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10328, 'FURIB', 4, '1996-10-14', '1996-11-11', '1996-10-17', 3, 87.0299988, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10329, 'SPLIR', 4, '1996-10-15', '1996-11-26', '1996-10-23', 2, 191.669998, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10330, 'LILAS', 3, '1996-10-16', '1996-11-13', '1996-10-28', 1, 12.75, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10331, 'BONAP', 9, '1996-10-16', '1996-11-27', '1996-10-21', 1, 10.1899996, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10332, 'MEREP', 3, '1996-10-17', '1996-11-28', '1996-10-21', 2, 52.8400002, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10333, 'WARTH', 5, '1996-10-18', '1996-11-15', '1996-10-25', 3, 0.589999974, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10334, 'VICTE', 8, '1996-10-21', '1996-11-18', '1996-10-28', 2, 8.56000042, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10335, 'HUNGO', 7, '1996-10-22', '1996-11-19', '1996-10-24', 2, 42.1100006, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10336, 'PRINI', 7, '1996-10-23', '1996-11-20', '1996-10-25', 2, 15.5100002, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); -INSERT INTO orders VALUES (10337, 'FRANK', 4, '1996-10-24', '1996-11-21', '1996-10-29', 3, 108.260002, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10338, 'OLDWO', 4, '1996-10-25', '1996-11-22', '1996-10-29', 3, 84.2099991, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10339, 'MEREP', 2, '1996-10-28', '1996-11-25', '1996-11-04', 2, 15.6599998, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10340, 'BONAP', 1, '1996-10-29', '1996-11-26', '1996-11-08', 3, 166.309998, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10341, 'SIMOB', 7, '1996-10-29', '1996-11-26', '1996-11-05', 3, 26.7800007, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (10342, 'FRANK', 4, '1996-10-30', '1996-11-13', '1996-11-04', 2, 54.8300018, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10343, 'LEHMS', 4, '1996-10-31', '1996-11-28', '1996-11-06', 1, 110.370003, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10344, 'WHITC', 4, '1996-11-01', '1996-11-29', '1996-11-05', 2, 23.2900009, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10345, 'QUICK', 2, '1996-11-04', '1996-12-02', '1996-11-11', 2, 249.059998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10346, 'RATTC', 3, '1996-11-05', '1996-12-17', '1996-11-08', 3, 142.080002, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10347, 'FAMIA', 4, '1996-11-06', '1996-12-04', '1996-11-08', 3, 3.0999999, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10348, 'WANDK', 4, '1996-11-07', '1996-12-05', '1996-11-15', 2, 0.779999971, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10349, 'SPLIR', 7, '1996-11-08', '1996-12-06', '1996-11-15', 1, 8.63000011, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10350, 'LAMAI', 6, '1996-11-11', '1996-12-09', '1996-12-03', 2, 64.1900024, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10351, 'ERNSH', 1, '1996-11-11', '1996-12-09', '1996-11-20', 1, 162.330002, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10352, 'FURIB', 3, '1996-11-12', '1996-11-26', '1996-11-18', 3, 1.29999995, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10353, 'PICCO', 7, '1996-11-13', '1996-12-11', '1996-11-25', 3, 360.630005, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10354, 'PERIC', 8, '1996-11-14', '1996-12-12', '1996-11-20', 3, 53.7999992, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10355, 'AROUT', 6, '1996-11-15', '1996-12-13', '1996-11-20', 1, 41.9500008, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10356, 'WANDK', 6, '1996-11-18', '1996-12-16', '1996-11-27', 2, 36.7099991, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10357, 'LILAS', 1, '1996-11-19', '1996-12-17', '1996-12-02', 3, 34.8800011, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10358, 'LAMAI', 5, '1996-11-20', '1996-12-18', '1996-11-27', 1, 19.6399994, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10359, 'SEVES', 5, '1996-11-21', '1996-12-19', '1996-11-26', 3, 288.429993, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10360, 'BLONP', 4, '1996-11-22', '1996-12-20', '1996-12-02', 3, 131.699997, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10361, 'QUICK', 1, '1996-11-22', '1996-12-20', '1996-12-03', 2, 183.169998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10362, 'BONAP', 3, '1996-11-25', '1996-12-23', '1996-11-28', 1, 96.0400009, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10363, 'DRACD', 4, '1996-11-26', '1996-12-24', '1996-12-04', 3, 30.5400009, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); -INSERT INTO orders VALUES (10364, 'EASTC', 1, '1996-11-26', '1997-01-07', '1996-12-04', 1, 71.9700012, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (10365, 'ANTON', 3, '1996-11-27', '1996-12-25', '1996-12-02', 2, 22, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10366, 'GALED', 8, '1996-11-28', '1997-01-09', '1996-12-30', 2, 10.1400003, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); -INSERT INTO orders VALUES (10367, 'VAFFE', 7, '1996-11-28', '1996-12-26', '1996-12-02', 3, 13.5500002, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10368, 'ERNSH', 2, '1996-11-29', '1996-12-27', '1996-12-02', 2, 101.949997, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10369, 'SPLIR', 8, '1996-12-02', '1996-12-30', '1996-12-09', 2, 195.679993, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10370, 'CHOPS', 6, '1996-12-03', '1996-12-31', '1996-12-27', 2, 1.16999996, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (10371, 'LAMAI', 1, '1996-12-03', '1996-12-31', '1996-12-24', 1, 0.449999988, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10372, 'QUEEN', 5, '1996-12-04', '1997-01-01', '1996-12-09', 2, 890.780029, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10373, 'HUNGO', 4, '1996-12-05', '1997-01-02', '1996-12-11', 3, 124.120003, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10374, 'WOLZA', 1, '1996-12-05', '1997-01-02', '1996-12-09', 3, 3.94000006, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (10375, 'HUNGC', 3, '1996-12-06', '1997-01-03', '1996-12-09', 2, 20.1200008, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); -INSERT INTO orders VALUES (10376, 'MEREP', 1, '1996-12-09', '1997-01-06', '1996-12-13', 2, 20.3899994, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10377, 'SEVES', 1, '1996-12-09', '1997-01-06', '1996-12-13', 3, 22.2099991, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10378, 'FOLKO', 5, '1996-12-10', '1997-01-07', '1996-12-19', 3, 5.44000006, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10379, 'QUEDE', 2, '1996-12-11', '1997-01-08', '1996-12-13', 1, 45.0299988, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10380, 'HUNGO', 8, '1996-12-12', '1997-01-09', '1997-01-16', 3, 35.0299988, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10381, 'LILAS', 3, '1996-12-12', '1997-01-09', '1996-12-13', 3, 7.98999977, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10382, 'ERNSH', 4, '1996-12-13', '1997-01-10', '1996-12-16', 1, 94.7699966, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10383, 'AROUT', 8, '1996-12-16', '1997-01-13', '1996-12-18', 3, 34.2400017, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10384, 'BERGS', 3, '1996-12-16', '1997-01-13', '1996-12-20', 3, 168.639999, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10385, 'SPLIR', 1, '1996-12-17', '1997-01-14', '1996-12-23', 2, 30.9599991, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10386, 'FAMIA', 9, '1996-12-18', '1997-01-01', '1996-12-25', 3, 13.9899998, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10387, 'SANTG', 1, '1996-12-18', '1997-01-15', '1996-12-20', 2, 93.6299973, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); -INSERT INTO orders VALUES (10388, 'SEVES', 2, '1996-12-19', '1997-01-16', '1996-12-20', 1, 34.8600006, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10389, 'BOTTM', 4, '1996-12-20', '1997-01-17', '1996-12-24', 2, 47.4199982, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10390, 'ERNSH', 6, '1996-12-23', '1997-01-20', '1996-12-26', 1, 126.379997, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10391, 'DRACD', 3, '1996-12-23', '1997-01-20', '1996-12-31', 3, 5.44999981, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); -INSERT INTO orders VALUES (10392, 'PICCO', 2, '1996-12-24', '1997-01-21', '1997-01-01', 3, 122.459999, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10393, 'SAVEA', 1, '1996-12-25', '1997-01-22', '1997-01-03', 3, 126.559998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10394, 'HUNGC', 1, '1996-12-25', '1997-01-22', '1997-01-03', 3, 30.3400002, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); -INSERT INTO orders VALUES (10395, 'HILAA', 6, '1996-12-26', '1997-01-23', '1997-01-03', 1, 184.410004, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10396, 'FRANK', 1, '1996-12-27', '1997-01-10', '1997-01-06', 3, 135.350006, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10397, 'PRINI', 5, '1996-12-27', '1997-01-24', '1997-01-02', 1, 60.2599983, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); -INSERT INTO orders VALUES (10398, 'SAVEA', 2, '1996-12-30', '1997-01-27', '1997-01-09', 3, 89.1600037, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10399, 'VAFFE', 8, '1996-12-31', '1997-01-14', '1997-01-08', 3, 27.3600006, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10400, 'EASTC', 1, '1997-01-01', '1997-01-29', '1997-01-16', 3, 83.9300003, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (10401, 'RATTC', 1, '1997-01-01', '1997-01-29', '1997-01-10', 1, 12.5100002, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10402, 'ERNSH', 8, '1997-01-02', '1997-02-13', '1997-01-10', 2, 67.8799973, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10403, 'ERNSH', 4, '1997-01-03', '1997-01-31', '1997-01-09', 3, 73.7900009, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10404, 'MAGAA', 2, '1997-01-03', '1997-01-31', '1997-01-08', 1, 155.970001, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10405, 'LINOD', 1, '1997-01-06', '1997-02-03', '1997-01-22', 1, 34.8199997, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10406, 'QUEEN', 7, '1997-01-07', '1997-02-18', '1997-01-13', 1, 108.040001, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10407, 'OTTIK', 2, '1997-01-07', '1997-02-04', '1997-01-30', 2, 91.4800034, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10408, 'FOLIG', 8, '1997-01-08', '1997-02-05', '1997-01-14', 1, 11.2600002, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); -INSERT INTO orders VALUES (10409, 'OCEAN', 3, '1997-01-09', '1997-02-06', '1997-01-14', 1, 29.8299999, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10410, 'BOTTM', 3, '1997-01-10', '1997-02-07', '1997-01-15', 3, 2.4000001, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10411, 'BOTTM', 9, '1997-01-10', '1997-02-07', '1997-01-21', 3, 23.6499996, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10412, 'WARTH', 8, '1997-01-13', '1997-02-10', '1997-01-15', 2, 3.76999998, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10413, 'LAMAI', 3, '1997-01-14', '1997-02-11', '1997-01-16', 2, 95.6600037, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10414, 'FAMIA', 2, '1997-01-14', '1997-02-11', '1997-01-17', 3, 21.4799995, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10415, 'HUNGC', 3, '1997-01-15', '1997-02-12', '1997-01-24', 1, 0.200000003, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); -INSERT INTO orders VALUES (10416, 'WARTH', 8, '1997-01-16', '1997-02-13', '1997-01-27', 3, 22.7199993, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10417, 'SIMOB', 4, '1997-01-16', '1997-02-13', '1997-01-28', 3, 70.2900009, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (10418, 'QUICK', 4, '1997-01-17', '1997-02-14', '1997-01-24', 1, 17.5499992, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10419, 'RICSU', 4, '1997-01-20', '1997-02-17', '1997-01-30', 2, 137.350006, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10420, 'WELLI', 3, '1997-01-21', '1997-02-18', '1997-01-27', 1, 44.1199989, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10421, 'QUEDE', 8, '1997-01-21', '1997-03-04', '1997-01-27', 1, 99.2300034, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10422, 'FRANS', 2, '1997-01-22', '1997-02-19', '1997-01-31', 1, 3.01999998, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); -INSERT INTO orders VALUES (10423, 'GOURL', 6, '1997-01-23', '1997-02-06', '1997-02-24', 3, 24.5, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10424, 'MEREP', 7, '1997-01-23', '1997-02-20', '1997-01-27', 2, 370.609985, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10425, 'LAMAI', 6, '1997-01-24', '1997-02-21', '1997-02-14', 2, 7.92999983, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10426, 'GALED', 4, '1997-01-27', '1997-02-24', '1997-02-06', 1, 18.6900005, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); -INSERT INTO orders VALUES (10427, 'PICCO', 4, '1997-01-27', '1997-02-24', '1997-03-03', 2, 31.2900009, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10428, 'REGGC', 7, '1997-01-28', '1997-02-25', '1997-02-04', 1, 11.0900002, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10429, 'HUNGO', 3, '1997-01-29', '1997-03-12', '1997-02-07', 2, 56.6300011, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10430, 'ERNSH', 4, '1997-01-30', '1997-02-13', '1997-02-03', 1, 458.779999, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10431, 'BOTTM', 4, '1997-01-30', '1997-02-13', '1997-02-07', 2, 44.1699982, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10432, 'SPLIR', 3, '1997-01-31', '1997-02-14', '1997-02-07', 2, 4.34000015, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10433, 'PRINI', 3, '1997-02-03', '1997-03-03', '1997-03-04', 3, 73.8300018, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); -INSERT INTO orders VALUES (10434, 'FOLKO', 3, '1997-02-03', '1997-03-03', '1997-02-13', 2, 17.9200001, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10435, 'CONSH', 8, '1997-02-04', '1997-03-18', '1997-02-07', 2, 9.21000004, 'Consolidated Holdings', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK'); -INSERT INTO orders VALUES (10436, 'BLONP', 3, '1997-02-05', '1997-03-05', '1997-02-11', 2, 156.660004, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10437, 'WARTH', 8, '1997-02-05', '1997-03-05', '1997-02-12', 1, 19.9699993, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10438, 'TOMSP', 3, '1997-02-06', '1997-03-06', '1997-02-14', 2, 8.23999977, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); -INSERT INTO orders VALUES (10439, 'MEREP', 6, '1997-02-07', '1997-03-07', '1997-02-10', 3, 4.07000017, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10440, 'SAVEA', 4, '1997-02-10', '1997-03-10', '1997-02-28', 2, 86.5299988, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10441, 'OLDWO', 3, '1997-02-10', '1997-03-24', '1997-03-14', 2, 73.0199966, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10442, 'ERNSH', 3, '1997-02-11', '1997-03-11', '1997-02-18', 2, 47.9399986, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10443, 'REGGC', 8, '1997-02-12', '1997-03-12', '1997-02-14', 1, 13.9499998, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10444, 'BERGS', 3, '1997-02-12', '1997-03-12', '1997-02-21', 3, 3.5, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10445, 'BERGS', 3, '1997-02-13', '1997-03-13', '1997-02-20', 1, 9.30000019, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10446, 'TOMSP', 6, '1997-02-14', '1997-03-14', '1997-02-19', 1, 14.6800003, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); -INSERT INTO orders VALUES (10447, 'RICAR', 4, '1997-02-14', '1997-03-14', '1997-03-07', 2, 68.6600037, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10448, 'RANCH', 4, '1997-02-17', '1997-03-17', '1997-02-24', 2, 38.8199997, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10449, 'BLONP', 3, '1997-02-18', '1997-03-18', '1997-02-27', 2, 53.2999992, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10450, 'VICTE', 8, '1997-02-19', '1997-03-19', '1997-03-11', 2, 7.23000002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10451, 'QUICK', 4, '1997-02-19', '1997-03-05', '1997-03-12', 3, 189.089996, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10452, 'SAVEA', 8, '1997-02-20', '1997-03-20', '1997-02-26', 1, 140.259995, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10453, 'AROUT', 1, '1997-02-21', '1997-03-21', '1997-02-26', 2, 25.3600006, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10454, 'LAMAI', 4, '1997-02-21', '1997-03-21', '1997-02-25', 3, 2.74000001, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10455, 'WARTH', 8, '1997-02-24', '1997-04-07', '1997-03-03', 2, 180.449997, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10456, 'KOENE', 8, '1997-02-25', '1997-04-08', '1997-02-28', 2, 8.11999989, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10457, 'KOENE', 2, '1997-02-25', '1997-03-25', '1997-03-03', 1, 11.5699997, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10458, 'SUPRD', 7, '1997-02-26', '1997-03-26', '1997-03-04', 3, 147.059998, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10459, 'VICTE', 4, '1997-02-27', '1997-03-27', '1997-02-28', 2, 25.0900002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10460, 'FOLKO', 8, '1997-02-28', '1997-03-28', '1997-03-03', 1, 16.2700005, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10461, 'LILAS', 1, '1997-02-28', '1997-03-28', '1997-03-05', 3, 148.610001, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10462, 'CONSH', 2, '1997-03-03', '1997-03-31', '1997-03-18', 1, 6.17000008, 'Consolidated Holdings', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK'); -INSERT INTO orders VALUES (10463, 'SUPRD', 5, '1997-03-04', '1997-04-01', '1997-03-06', 3, 14.7799997, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10464, 'FURIB', 4, '1997-03-04', '1997-04-01', '1997-03-14', 2, 89, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10465, 'VAFFE', 1, '1997-03-05', '1997-04-02', '1997-03-14', 3, 145.039993, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10466, 'COMMI', 4, '1997-03-06', '1997-04-03', '1997-03-13', 1, 11.9300003, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); -INSERT INTO orders VALUES (10467, 'MAGAA', 8, '1997-03-06', '1997-04-03', '1997-03-11', 2, 4.92999983, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10468, 'KOENE', 3, '1997-03-07', '1997-04-04', '1997-03-12', 3, 44.1199989, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10469, 'WHITC', 1, '1997-03-10', '1997-04-07', '1997-03-14', 1, 60.1800003, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10470, 'BONAP', 4, '1997-03-11', '1997-04-08', '1997-03-14', 2, 64.5599976, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10471, 'BSBEV', 2, '1997-03-11', '1997-04-08', '1997-03-18', 3, 45.5900002, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10472, 'SEVES', 8, '1997-03-12', '1997-04-09', '1997-03-19', 1, 4.19999981, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10473, 'ISLAT', 1, '1997-03-13', '1997-03-27', '1997-03-21', 3, 16.3700008, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10474, 'PERIC', 5, '1997-03-13', '1997-04-10', '1997-03-21', 2, 83.4899979, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10475, 'SUPRD', 9, '1997-03-14', '1997-04-11', '1997-04-04', 1, 68.5199966, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10476, 'HILAA', 8, '1997-03-17', '1997-04-14', '1997-03-24', 3, 4.40999985, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10477, 'PRINI', 5, '1997-03-17', '1997-04-14', '1997-03-25', 2, 13.0200005, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); -INSERT INTO orders VALUES (10478, 'VICTE', 2, '1997-03-18', '1997-04-01', '1997-03-26', 3, 4.80999994, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10479, 'RATTC', 3, '1997-03-19', '1997-04-16', '1997-03-21', 3, 708.950012, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10480, 'FOLIG', 6, '1997-03-20', '1997-04-17', '1997-03-24', 2, 1.35000002, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); -INSERT INTO orders VALUES (10481, 'RICAR', 8, '1997-03-20', '1997-04-17', '1997-03-25', 2, 64.3300018, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10482, 'LAZYK', 1, '1997-03-21', '1997-04-18', '1997-04-10', 3, 7.48000002, 'Lazy K Kountry Store', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA'); -INSERT INTO orders VALUES (10483, 'WHITC', 7, '1997-03-24', '1997-04-21', '1997-04-25', 2, 15.2799997, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10484, 'BSBEV', 3, '1997-03-24', '1997-04-21', '1997-04-01', 3, 6.88000011, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10485, 'LINOD', 4, '1997-03-25', '1997-04-08', '1997-03-31', 2, 64.4499969, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10486, 'HILAA', 1, '1997-03-26', '1997-04-23', '1997-04-02', 2, 30.5300007, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10487, 'QUEEN', 2, '1997-03-26', '1997-04-23', '1997-03-28', 2, 71.0699997, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10488, 'FRANK', 8, '1997-03-27', '1997-04-24', '1997-04-02', 2, 4.92999983, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10489, 'PICCO', 6, '1997-03-28', '1997-04-25', '1997-04-09', 2, 5.28999996, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10490, 'HILAA', 7, '1997-03-31', '1997-04-28', '1997-04-03', 2, 210.190002, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10491, 'FURIB', 8, '1997-03-31', '1997-04-28', '1997-04-08', 3, 16.9599991, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10492, 'BOTTM', 3, '1997-04-01', '1997-04-29', '1997-04-11', 1, 62.8899994, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10493, 'LAMAI', 4, '1997-04-02', '1997-04-30', '1997-04-10', 3, 10.6400003, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10494, 'COMMI', 4, '1997-04-02', '1997-04-30', '1997-04-09', 2, 65.9899979, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); -INSERT INTO orders VALUES (10495, 'LAUGB', 3, '1997-04-03', '1997-05-01', '1997-04-11', 3, 4.6500001, 'Laughing Bacchus Wine Cellars', '2319 Elm St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada'); -INSERT INTO orders VALUES (10496, 'TRADH', 7, '1997-04-04', '1997-05-02', '1997-04-07', 2, 46.7700005, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); -INSERT INTO orders VALUES (10497, 'LEHMS', 7, '1997-04-04', '1997-05-02', '1997-04-07', 1, 36.2099991, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10498, 'HILAA', 8, '1997-04-07', '1997-05-05', '1997-04-11', 2, 29.75, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10499, 'LILAS', 4, '1997-04-08', '1997-05-06', '1997-04-16', 2, 102.019997, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10500, 'LAMAI', 6, '1997-04-09', '1997-05-07', '1997-04-17', 1, 42.6800003, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10501, 'BLAUS', 9, '1997-04-09', '1997-05-07', '1997-04-16', 3, 8.85000038, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (10502, 'PERIC', 2, '1997-04-10', '1997-05-08', '1997-04-29', 1, 69.3199997, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10503, 'HUNGO', 6, '1997-04-11', '1997-05-09', '1997-04-16', 2, 16.7399998, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10504, 'WHITC', 4, '1997-04-11', '1997-05-09', '1997-04-18', 3, 59.1300011, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10505, 'MEREP', 3, '1997-04-14', '1997-05-12', '1997-04-21', 3, 7.13000011, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10506, 'KOENE', 9, '1997-04-15', '1997-05-13', '1997-05-02', 2, 21.1900005, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10507, 'ANTON', 7, '1997-04-15', '1997-05-13', '1997-04-22', 1, 47.4500008, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10508, 'OTTIK', 1, '1997-04-16', '1997-05-14', '1997-05-13', 2, 4.98999977, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10509, 'BLAUS', 4, '1997-04-17', '1997-05-15', '1997-04-29', 1, 0.150000006, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (10510, 'SAVEA', 6, '1997-04-18', '1997-05-16', '1997-04-28', 3, 367.630005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10511, 'BONAP', 4, '1997-04-18', '1997-05-16', '1997-04-21', 3, 350.640015, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10512, 'FAMIA', 7, '1997-04-21', '1997-05-19', '1997-04-24', 2, 3.52999997, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10513, 'WANDK', 7, '1997-04-22', '1997-06-03', '1997-04-28', 1, 105.650002, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10514, 'ERNSH', 3, '1997-04-22', '1997-05-20', '1997-05-16', 2, 789.950012, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10515, 'QUICK', 2, '1997-04-23', '1997-05-07', '1997-05-23', 1, 204.470001, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10516, 'HUNGO', 2, '1997-04-24', '1997-05-22', '1997-05-01', 3, 62.7799988, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10517, 'NORTS', 3, '1997-04-24', '1997-05-22', '1997-04-29', 3, 32.0699997, 'North/South', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK'); -INSERT INTO orders VALUES (10518, 'TORTU', 4, '1997-04-25', '1997-05-09', '1997-05-05', 2, 218.149994, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10519, 'CHOPS', 6, '1997-04-28', '1997-05-26', '1997-05-01', 3, 91.7600021, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (10520, 'SANTG', 7, '1997-04-29', '1997-05-27', '1997-05-01', 1, 13.3699999, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); -INSERT INTO orders VALUES (10521, 'CACTU', 8, '1997-04-29', '1997-05-27', '1997-05-02', 2, 17.2199993, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10522, 'LEHMS', 4, '1997-04-30', '1997-05-28', '1997-05-06', 1, 45.3300018, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10523, 'SEVES', 7, '1997-05-01', '1997-05-29', '1997-05-30', 2, 77.6299973, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10524, 'BERGS', 1, '1997-05-01', '1997-05-29', '1997-05-07', 2, 244.789993, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10525, 'BONAP', 1, '1997-05-02', '1997-05-30', '1997-05-23', 2, 11.0600004, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10526, 'WARTH', 4, '1997-05-05', '1997-06-02', '1997-05-15', 2, 58.5900002, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10527, 'QUICK', 7, '1997-05-05', '1997-06-02', '1997-05-07', 1, 41.9000015, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10528, 'GREAL', 6, '1997-05-06', '1997-05-20', '1997-05-09', 2, 3.3499999, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10529, 'MAISD', 5, '1997-05-07', '1997-06-04', '1997-05-09', 2, 66.6900024, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (10530, 'PICCO', 3, '1997-05-08', '1997-06-05', '1997-05-12', 2, 339.220001, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10531, 'OCEAN', 7, '1997-05-08', '1997-06-05', '1997-05-19', 1, 8.11999989, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10532, 'EASTC', 7, '1997-05-09', '1997-06-06', '1997-05-12', 3, 74.4599991, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (10533, 'FOLKO', 8, '1997-05-12', '1997-06-09', '1997-05-22', 1, 188.039993, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10534, 'LEHMS', 8, '1997-05-12', '1997-06-09', '1997-05-14', 2, 27.9400005, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10535, 'ANTON', 4, '1997-05-13', '1997-06-10', '1997-05-21', 1, 15.6400003, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10536, 'LEHMS', 3, '1997-05-14', '1997-06-11', '1997-06-06', 2, 58.8800011, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10537, 'RICSU', 1, '1997-05-14', '1997-05-28', '1997-05-19', 1, 78.8499985, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10538, 'BSBEV', 9, '1997-05-15', '1997-06-12', '1997-05-16', 3, 4.86999989, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10539, 'BSBEV', 6, '1997-05-16', '1997-06-13', '1997-05-23', 3, 12.3599997, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10540, 'QUICK', 3, '1997-05-19', '1997-06-16', '1997-06-13', 3, 1007.64001, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10541, 'HANAR', 2, '1997-05-19', '1997-06-16', '1997-05-29', 1, 68.6500015, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10542, 'KOENE', 1, '1997-05-20', '1997-06-17', '1997-05-26', 3, 10.9499998, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10543, 'LILAS', 8, '1997-05-21', '1997-06-18', '1997-05-23', 2, 48.1699982, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10544, 'LONEP', 4, '1997-05-21', '1997-06-18', '1997-05-30', 1, 24.9099998, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10545, 'LAZYK', 8, '1997-05-22', '1997-06-19', '1997-06-26', 2, 11.9200001, 'Lazy K Kountry Store', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA'); -INSERT INTO orders VALUES (10546, 'VICTE', 1, '1997-05-23', '1997-06-20', '1997-05-27', 3, 194.720001, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10547, 'SEVES', 3, '1997-05-23', '1997-06-20', '1997-06-02', 2, 178.429993, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10548, 'TOMSP', 3, '1997-05-26', '1997-06-23', '1997-06-02', 2, 1.42999995, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); -INSERT INTO orders VALUES (10549, 'QUICK', 5, '1997-05-27', '1997-06-10', '1997-05-30', 1, 171.240005, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10550, 'GODOS', 7, '1997-05-28', '1997-06-25', '1997-06-06', 3, 4.32000017, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10551, 'FURIB', 4, '1997-05-28', '1997-07-09', '1997-06-06', 3, 72.9499969, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10552, 'HILAA', 2, '1997-05-29', '1997-06-26', '1997-06-05', 1, 83.2200012, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10553, 'WARTH', 2, '1997-05-30', '1997-06-27', '1997-06-03', 2, 149.490005, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10554, 'OTTIK', 4, '1997-05-30', '1997-06-27', '1997-06-05', 3, 120.970001, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10555, 'SAVEA', 6, '1997-06-02', '1997-06-30', '1997-06-04', 3, 252.490005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10556, 'SIMOB', 2, '1997-06-03', '1997-07-15', '1997-06-13', 1, 9.80000019, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (10557, 'LEHMS', 9, '1997-06-03', '1997-06-17', '1997-06-06', 2, 96.7200012, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10558, 'AROUT', 1, '1997-06-04', '1997-07-02', '1997-06-10', 2, 72.9700012, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10559, 'BLONP', 6, '1997-06-05', '1997-07-03', '1997-06-13', 1, 8.05000019, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10560, 'FRANK', 8, '1997-06-06', '1997-07-04', '1997-06-09', 1, 36.6500015, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10561, 'FOLKO', 2, '1997-06-06', '1997-07-04', '1997-06-09', 2, 242.210007, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10562, 'REGGC', 1, '1997-06-09', '1997-07-07', '1997-06-12', 1, 22.9500008, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10563, 'RICAR', 2, '1997-06-10', '1997-07-22', '1997-06-24', 2, 60.4300003, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10564, 'RATTC', 4, '1997-06-10', '1997-07-08', '1997-06-16', 3, 13.75, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10565, 'MEREP', 8, '1997-06-11', '1997-07-09', '1997-06-18', 2, 7.1500001, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10566, 'BLONP', 9, '1997-06-12', '1997-07-10', '1997-06-18', 1, 88.4000015, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10567, 'HUNGO', 1, '1997-06-12', '1997-07-10', '1997-06-17', 1, 33.9700012, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10568, 'GALED', 3, '1997-06-13', '1997-07-11', '1997-07-09', 3, 6.53999996, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); -INSERT INTO orders VALUES (10569, 'RATTC', 5, '1997-06-16', '1997-07-14', '1997-07-11', 1, 58.9799995, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10570, 'MEREP', 3, '1997-06-17', '1997-07-15', '1997-06-19', 3, 188.990005, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10571, 'ERNSH', 8, '1997-06-17', '1997-07-29', '1997-07-04', 3, 26.0599995, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10572, 'BERGS', 3, '1997-06-18', '1997-07-16', '1997-06-25', 2, 116.43, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10573, 'ANTON', 7, '1997-06-19', '1997-07-17', '1997-06-20', 3, 84.8399963, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10574, 'TRAIH', 4, '1997-06-19', '1997-07-17', '1997-06-30', 2, 37.5999985, 'Trail''s Head Gourmet Provisioners', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA'); -INSERT INTO orders VALUES (10575, 'MORGK', 5, '1997-06-20', '1997-07-04', '1997-06-30', 1, 127.339996, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); -INSERT INTO orders VALUES (10576, 'TORTU', 3, '1997-06-23', '1997-07-07', '1997-06-30', 3, 18.5599995, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10577, 'TRAIH', 9, '1997-06-23', '1997-08-04', '1997-06-30', 2, 25.4099998, 'Trail''s Head Gourmet Provisioners', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA'); -INSERT INTO orders VALUES (10578, 'BSBEV', 4, '1997-06-24', '1997-07-22', '1997-07-25', 3, 29.6000004, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10579, 'LETSS', 1, '1997-06-25', '1997-07-23', '1997-07-04', 2, 13.7299995, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); -INSERT INTO orders VALUES (10580, 'OTTIK', 4, '1997-06-26', '1997-07-24', '1997-07-01', 3, 75.8899994, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10581, 'FAMIA', 3, '1997-06-26', '1997-07-24', '1997-07-02', 1, 3.00999999, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10582, 'BLAUS', 3, '1997-06-27', '1997-07-25', '1997-07-14', 2, 27.7099991, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (10583, 'WARTH', 2, '1997-06-30', '1997-07-28', '1997-07-04', 2, 7.28000021, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10584, 'BLONP', 4, '1997-06-30', '1997-07-28', '1997-07-04', 1, 59.1399994, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10585, 'WELLI', 7, '1997-07-01', '1997-07-29', '1997-07-10', 1, 13.4099998, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10586, 'REGGC', 9, '1997-07-02', '1997-07-30', '1997-07-09', 1, 0.479999989, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10587, 'QUEDE', 1, '1997-07-02', '1997-07-30', '1997-07-09', 1, 62.5200005, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10588, 'QUICK', 2, '1997-07-03', '1997-07-31', '1997-07-10', 3, 194.669998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10589, 'GREAL', 8, '1997-07-04', '1997-08-01', '1997-07-14', 2, 4.42000008, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10590, 'MEREP', 4, '1997-07-07', '1997-08-04', '1997-07-14', 3, 44.7700005, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10591, 'VAFFE', 1, '1997-07-07', '1997-07-21', '1997-07-16', 1, 55.9199982, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10592, 'LEHMS', 3, '1997-07-08', '1997-08-05', '1997-07-16', 1, 32.0999985, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10593, 'LEHMS', 7, '1997-07-09', '1997-08-06', '1997-08-13', 2, 174.199997, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10594, 'OLDWO', 3, '1997-07-09', '1997-08-06', '1997-07-16', 2, 5.23999977, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10595, 'ERNSH', 2, '1997-07-10', '1997-08-07', '1997-07-14', 1, 96.7799988, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10596, 'WHITC', 8, '1997-07-11', '1997-08-08', '1997-08-12', 1, 16.3400002, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10597, 'PICCO', 7, '1997-07-11', '1997-08-08', '1997-07-18', 3, 35.1199989, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10598, 'RATTC', 1, '1997-07-14', '1997-08-11', '1997-07-18', 3, 44.4199982, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10599, 'BSBEV', 6, '1997-07-15', '1997-08-26', '1997-07-21', 3, 29.9799995, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10600, 'HUNGC', 4, '1997-07-16', '1997-08-13', '1997-07-21', 1, 45.1300011, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); -INSERT INTO orders VALUES (10601, 'HILAA', 7, '1997-07-16', '1997-08-27', '1997-07-22', 1, 58.2999992, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10602, 'VAFFE', 8, '1997-07-17', '1997-08-14', '1997-07-22', 2, 2.92000008, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10603, 'SAVEA', 8, '1997-07-18', '1997-08-15', '1997-08-08', 2, 48.7700005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10604, 'FURIB', 1, '1997-07-18', '1997-08-15', '1997-07-29', 1, 7.46000004, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10605, 'MEREP', 1, '1997-07-21', '1997-08-18', '1997-07-29', 2, 379.130005, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10606, 'TRADH', 4, '1997-07-22', '1997-08-19', '1997-07-31', 3, 79.4000015, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); -INSERT INTO orders VALUES (10607, 'SAVEA', 5, '1997-07-22', '1997-08-19', '1997-07-25', 1, 200.240005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10608, 'TOMSP', 4, '1997-07-23', '1997-08-20', '1997-08-01', 2, 27.7900009, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); -INSERT INTO orders VALUES (10609, 'DUMON', 7, '1997-07-24', '1997-08-21', '1997-07-30', 2, 1.85000002, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10610, 'LAMAI', 8, '1997-07-25', '1997-08-22', '1997-08-06', 1, 26.7800007, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10611, 'WOLZA', 6, '1997-07-25', '1997-08-22', '1997-08-01', 2, 80.6500015, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (10612, 'SAVEA', 1, '1997-07-28', '1997-08-25', '1997-08-01', 2, 544.080017, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10613, 'HILAA', 4, '1997-07-29', '1997-08-26', '1997-08-01', 2, 8.10999966, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10614, 'BLAUS', 8, '1997-07-29', '1997-08-26', '1997-08-01', 3, 1.92999995, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (10615, 'WILMK', 2, '1997-07-30', '1997-08-27', '1997-08-06', 3, 0.75, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (10616, 'GREAL', 1, '1997-07-31', '1997-08-28', '1997-08-05', 2, 116.529999, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10617, 'GREAL', 4, '1997-07-31', '1997-08-28', '1997-08-04', 2, 18.5300007, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10618, 'MEREP', 1, '1997-08-01', '1997-09-12', '1997-08-08', 1, 154.679993, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10619, 'MEREP', 3, '1997-08-04', '1997-09-01', '1997-08-07', 3, 91.0500031, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10620, 'LAUGB', 2, '1997-08-05', '1997-09-02', '1997-08-14', 3, 0.939999998, 'Laughing Bacchus Wine Cellars', '2319 Elm St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada'); -INSERT INTO orders VALUES (10621, 'ISLAT', 4, '1997-08-05', '1997-09-02', '1997-08-11', 2, 23.7299995, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10622, 'RICAR', 4, '1997-08-06', '1997-09-03', '1997-08-11', 3, 50.9700012, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10623, 'FRANK', 8, '1997-08-07', '1997-09-04', '1997-08-12', 2, 97.1800003, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10624, 'THECR', 4, '1997-08-07', '1997-09-04', '1997-08-19', 2, 94.8000031, 'The Cracker Box', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA'); -INSERT INTO orders VALUES (10625, 'ANATR', 3, '1997-08-08', '1997-09-05', '1997-08-14', 1, 43.9000015, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); -INSERT INTO orders VALUES (10626, 'BERGS', 1, '1997-08-11', '1997-09-08', '1997-08-20', 2, 138.690002, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10627, 'SAVEA', 8, '1997-08-11', '1997-09-22', '1997-08-21', 3, 107.459999, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10628, 'BLONP', 4, '1997-08-12', '1997-09-09', '1997-08-20', 3, 30.3600006, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10629, 'GODOS', 4, '1997-08-12', '1997-09-09', '1997-08-20', 3, 85.4599991, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10630, 'KOENE', 1, '1997-08-13', '1997-09-10', '1997-08-19', 2, 32.3499985, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10631, 'LAMAI', 8, '1997-08-14', '1997-09-11', '1997-08-15', 1, 0.870000005, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10632, 'WANDK', 8, '1997-08-14', '1997-09-11', '1997-08-19', 1, 41.3800011, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10633, 'ERNSH', 7, '1997-08-15', '1997-09-12', '1997-08-18', 3, 477.899994, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10634, 'FOLIG', 4, '1997-08-15', '1997-09-12', '1997-08-21', 3, 487.380005, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); -INSERT INTO orders VALUES (10635, 'MAGAA', 8, '1997-08-18', '1997-09-15', '1997-08-21', 3, 47.4599991, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10636, 'WARTH', 4, '1997-08-19', '1997-09-16', '1997-08-26', 1, 1.14999998, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10637, 'QUEEN', 6, '1997-08-19', '1997-09-16', '1997-08-26', 1, 201.289993, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10638, 'LINOD', 3, '1997-08-20', '1997-09-17', '1997-09-01', 1, 158.440002, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10639, 'SANTG', 7, '1997-08-20', '1997-09-17', '1997-08-27', 3, 38.6399994, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); -INSERT INTO orders VALUES (10640, 'WANDK', 4, '1997-08-21', '1997-09-18', '1997-08-28', 1, 23.5499992, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10641, 'HILAA', 4, '1997-08-22', '1997-09-19', '1997-08-26', 2, 179.610001, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10642, 'SIMOB', 7, '1997-08-22', '1997-09-19', '1997-09-05', 3, 41.8899994, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (10643, 'ALFKI', 6, '1997-08-25', '1997-09-22', '1997-09-02', 1, 29.4599991, 'Alfreds Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); -INSERT INTO orders VALUES (10644, 'WELLI', 3, '1997-08-25', '1997-09-22', '1997-09-01', 2, 0.140000001, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10645, 'HANAR', 4, '1997-08-26', '1997-09-23', '1997-09-02', 1, 12.4099998, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10646, 'HUNGO', 9, '1997-08-27', '1997-10-08', '1997-09-03', 3, 142.330002, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10647, 'QUEDE', 4, '1997-08-27', '1997-09-10', '1997-09-03', 2, 45.5400009, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10648, 'RICAR', 5, '1997-08-28', '1997-10-09', '1997-09-09', 2, 14.25, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10649, 'MAISD', 5, '1997-08-28', '1997-09-25', '1997-08-29', 3, 6.19999981, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (10650, 'FAMIA', 5, '1997-08-29', '1997-09-26', '1997-09-03', 3, 176.809998, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10651, 'WANDK', 8, '1997-09-01', '1997-09-29', '1997-09-11', 2, 20.6000004, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10652, 'GOURL', 4, '1997-09-01', '1997-09-29', '1997-09-08', 2, 7.13999987, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10653, 'FRANK', 1, '1997-09-02', '1997-09-30', '1997-09-19', 1, 93.25, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10654, 'BERGS', 5, '1997-09-02', '1997-09-30', '1997-09-11', 1, 55.2599983, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10655, 'REGGC', 1, '1997-09-03', '1997-10-01', '1997-09-11', 2, 4.40999985, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10656, 'GREAL', 6, '1997-09-04', '1997-10-02', '1997-09-10', 1, 57.1500015, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10657, 'SAVEA', 2, '1997-09-04', '1997-10-02', '1997-09-15', 2, 352.690002, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10658, 'QUICK', 4, '1997-09-05', '1997-10-03', '1997-09-08', 1, 364.149994, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10659, 'QUEEN', 7, '1997-09-05', '1997-10-03', '1997-09-10', 2, 105.809998, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10660, 'HUNGC', 8, '1997-09-08', '1997-10-06', '1997-10-15', 1, 111.290001, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); -INSERT INTO orders VALUES (10661, 'HUNGO', 7, '1997-09-09', '1997-10-07', '1997-09-15', 3, 17.5499992, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10662, 'LONEP', 3, '1997-09-09', '1997-10-07', '1997-09-18', 2, 1.27999997, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10663, 'BONAP', 2, '1997-09-10', '1997-09-24', '1997-10-03', 2, 113.150002, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10664, 'FURIB', 1, '1997-09-10', '1997-10-08', '1997-09-19', 3, 1.26999998, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10665, 'LONEP', 1, '1997-09-11', '1997-10-09', '1997-09-17', 2, 26.3099995, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10666, 'RICSU', 7, '1997-09-12', '1997-10-10', '1997-09-22', 2, 232.419998, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10667, 'ERNSH', 7, '1997-09-12', '1997-10-10', '1997-09-19', 1, 78.0899963, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10668, 'WANDK', 1, '1997-09-15', '1997-10-13', '1997-09-23', 2, 47.2200012, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (10669, 'SIMOB', 2, '1997-09-15', '1997-10-13', '1997-09-22', 1, 24.3899994, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (10670, 'FRANK', 4, '1997-09-16', '1997-10-14', '1997-09-18', 1, 203.479996, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10671, 'FRANR', 1, '1997-09-17', '1997-10-15', '1997-09-24', 1, 30.3400002, 'France restauration', '54, rue Royale', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10672, 'BERGS', 9, '1997-09-17', '1997-10-01', '1997-09-26', 2, 95.75, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10673, 'WILMK', 2, '1997-09-18', '1997-10-16', '1997-09-19', 1, 22.7600002, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (10674, 'ISLAT', 4, '1997-09-18', '1997-10-16', '1997-09-30', 2, 0.899999976, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10675, 'FRANK', 5, '1997-09-19', '1997-10-17', '1997-09-23', 2, 31.8500004, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10676, 'TORTU', 2, '1997-09-22', '1997-10-20', '1997-09-29', 2, 2.00999999, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10677, 'ANTON', 1, '1997-09-22', '1997-10-20', '1997-09-26', 3, 4.03000021, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10678, 'SAVEA', 7, '1997-09-23', '1997-10-21', '1997-10-16', 3, 388.980011, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10679, 'BLONP', 8, '1997-09-23', '1997-10-21', '1997-09-30', 3, 27.9400005, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10680, 'OLDWO', 1, '1997-09-24', '1997-10-22', '1997-09-26', 1, 26.6100006, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10681, 'GREAL', 3, '1997-09-25', '1997-10-23', '1997-09-30', 3, 76.1299973, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10682, 'ANTON', 3, '1997-09-25', '1997-10-23', '1997-10-01', 2, 36.1300011, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10683, 'DUMON', 2, '1997-09-26', '1997-10-24', '1997-10-01', 1, 4.4000001, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10684, 'OTTIK', 3, '1997-09-26', '1997-10-24', '1997-09-30', 1, 145.630005, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10685, 'GOURL', 4, '1997-09-29', '1997-10-13', '1997-10-03', 2, 33.75, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10686, 'PICCO', 2, '1997-09-30', '1997-10-28', '1997-10-08', 1, 96.5, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10687, 'HUNGO', 9, '1997-09-30', '1997-10-28', '1997-10-30', 2, 296.429993, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10688, 'VAFFE', 4, '1997-10-01', '1997-10-15', '1997-10-07', 2, 299.089996, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10689, 'BERGS', 1, '1997-10-01', '1997-10-29', '1997-10-07', 2, 13.4200001, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10690, 'HANAR', 1, '1997-10-02', '1997-10-30', '1997-10-03', 1, 15.8000002, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10691, 'QUICK', 2, '1997-10-03', '1997-11-14', '1997-10-22', 2, 810.049988, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10692, 'ALFKI', 4, '1997-10-03', '1997-10-31', '1997-10-13', 2, 61.0200005, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); -INSERT INTO orders VALUES (10693, 'WHITC', 3, '1997-10-06', '1997-10-20', '1997-10-10', 3, 139.339996, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10694, 'QUICK', 8, '1997-10-06', '1997-11-03', '1997-10-09', 3, 398.359985, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10695, 'WILMK', 7, '1997-10-07', '1997-11-18', '1997-10-14', 1, 16.7199993, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (10696, 'WHITC', 8, '1997-10-08', '1997-11-19', '1997-10-14', 3, 102.550003, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10697, 'LINOD', 3, '1997-10-08', '1997-11-05', '1997-10-14', 1, 45.5200005, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10698, 'ERNSH', 4, '1997-10-09', '1997-11-06', '1997-10-17', 1, 272.470001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10699, 'MORGK', 3, '1997-10-09', '1997-11-06', '1997-10-13', 3, 0.579999983, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); -INSERT INTO orders VALUES (10700, 'SAVEA', 3, '1997-10-10', '1997-11-07', '1997-10-16', 1, 65.0999985, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10701, 'HUNGO', 6, '1997-10-13', '1997-10-27', '1997-10-15', 3, 220.309998, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10702, 'ALFKI', 4, '1997-10-13', '1997-11-24', '1997-10-21', 1, 23.9400005, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); -INSERT INTO orders VALUES (10703, 'FOLKO', 6, '1997-10-14', '1997-11-11', '1997-10-20', 2, 152.300003, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10704, 'QUEEN', 6, '1997-10-14', '1997-11-11', '1997-11-07', 1, 4.78000021, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10705, 'HILAA', 9, '1997-10-15', '1997-11-12', '1997-11-18', 2, 3.51999998, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10706, 'OLDWO', 8, '1997-10-16', '1997-11-13', '1997-10-21', 3, 135.630005, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10707, 'AROUT', 4, '1997-10-16', '1997-10-30', '1997-10-23', 3, 21.7399998, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10708, 'THEBI', 6, '1997-10-17', '1997-11-28', '1997-11-05', 2, 2.96000004, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); -INSERT INTO orders VALUES (10709, 'GOURL', 1, '1997-10-17', '1997-11-14', '1997-11-20', 3, 210.800003, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10710, 'FRANS', 1, '1997-10-20', '1997-11-17', '1997-10-23', 1, 4.98000002, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); -INSERT INTO orders VALUES (10711, 'SAVEA', 5, '1997-10-21', '1997-12-02', '1997-10-29', 2, 52.4099998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10712, 'HUNGO', 3, '1997-10-21', '1997-11-18', '1997-10-31', 1, 89.9300003, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10713, 'SAVEA', 1, '1997-10-22', '1997-11-19', '1997-10-24', 1, 167.050003, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10714, 'SAVEA', 5, '1997-10-22', '1997-11-19', '1997-10-27', 3, 24.4899998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10715, 'BONAP', 3, '1997-10-23', '1997-11-06', '1997-10-29', 1, 63.2000008, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10716, 'RANCH', 4, '1997-10-24', '1997-11-21', '1997-10-27', 2, 22.5699997, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10717, 'FRANK', 1, '1997-10-24', '1997-11-21', '1997-10-29', 2, 59.25, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10718, 'KOENE', 1, '1997-10-27', '1997-11-24', '1997-10-29', 3, 170.880005, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10719, 'LETSS', 8, '1997-10-27', '1997-11-24', '1997-11-05', 2, 51.4399986, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); -INSERT INTO orders VALUES (10720, 'QUEDE', 8, '1997-10-28', '1997-11-11', '1997-11-05', 2, 9.52999973, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10721, 'QUICK', 5, '1997-10-29', '1997-11-26', '1997-10-31', 3, 48.9199982, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10722, 'SAVEA', 8, '1997-10-29', '1997-12-10', '1997-11-04', 1, 74.5800018, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10723, 'WHITC', 3, '1997-10-30', '1997-11-27', '1997-11-25', 1, 21.7199993, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10724, 'MEREP', 8, '1997-10-30', '1997-12-11', '1997-11-05', 2, 57.75, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); -INSERT INTO orders VALUES (10725, 'FAMIA', 4, '1997-10-31', '1997-11-28', '1997-11-05', 3, 10.8299999, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); -INSERT INTO orders VALUES (10726, 'EASTC', 4, '1997-11-03', '1997-11-17', '1997-12-05', 1, 16.5599995, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (10727, 'REGGC', 2, '1997-11-03', '1997-12-01', '1997-12-05', 1, 89.9000015, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10728, 'QUEEN', 4, '1997-11-04', '1997-12-02', '1997-11-11', 2, 58.3300018, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10729, 'LINOD', 8, '1997-11-04', '1997-12-16', '1997-11-14', 3, 141.059998, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10730, 'BONAP', 5, '1997-11-05', '1997-12-03', '1997-11-14', 1, 20.1200008, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10731, 'CHOPS', 7, '1997-11-06', '1997-12-04', '1997-11-14', 1, 96.6500015, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (10732, 'BONAP', 3, '1997-11-06', '1997-12-04', '1997-11-07', 1, 16.9699993, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10733, 'BERGS', 1, '1997-11-07', '1997-12-05', '1997-11-10', 3, 110.110001, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10734, 'GOURL', 2, '1997-11-07', '1997-12-05', '1997-11-12', 3, 1.63, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10735, 'LETSS', 6, '1997-11-10', '1997-12-08', '1997-11-21', 2, 45.9700012, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); -INSERT INTO orders VALUES (10736, 'HUNGO', 9, '1997-11-11', '1997-12-09', '1997-11-21', 2, 44.0999985, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10737, 'VINET', 2, '1997-11-11', '1997-12-09', '1997-11-18', 2, 7.78999996, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); -INSERT INTO orders VALUES (10738, 'SPECD', 2, '1997-11-12', '1997-12-10', '1997-11-18', 1, 2.91000009, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); -INSERT INTO orders VALUES (10739, 'VINET', 3, '1997-11-12', '1997-12-10', '1997-11-17', 3, 11.0799999, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); -INSERT INTO orders VALUES (10740, 'WHITC', 4, '1997-11-13', '1997-12-11', '1997-11-25', 2, 81.8799973, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10741, 'AROUT', 4, '1997-11-14', '1997-11-28', '1997-11-18', 3, 10.96, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10742, 'BOTTM', 3, '1997-11-14', '1997-12-12', '1997-11-18', 3, 243.729996, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10743, 'AROUT', 1, '1997-11-17', '1997-12-15', '1997-11-21', 2, 23.7199993, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10744, 'VAFFE', 6, '1997-11-17', '1997-12-15', '1997-11-24', 1, 69.1900024, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10745, 'QUICK', 9, '1997-11-18', '1997-12-16', '1997-11-27', 1, 3.51999998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10746, 'CHOPS', 1, '1997-11-19', '1997-12-17', '1997-11-21', 3, 31.4300003, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (10747, 'PICCO', 6, '1997-11-19', '1997-12-17', '1997-11-26', 1, 117.330002, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10748, 'SAVEA', 3, '1997-11-20', '1997-12-18', '1997-11-28', 1, 232.550003, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10749, 'ISLAT', 4, '1997-11-20', '1997-12-18', '1997-12-19', 2, 61.5299988, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10750, 'WARTH', 9, '1997-11-21', '1997-12-19', '1997-11-24', 1, 79.3000031, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10751, 'RICSU', 3, '1997-11-24', '1997-12-22', '1997-12-03', 3, 130.789993, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10752, 'NORTS', 2, '1997-11-24', '1997-12-22', '1997-11-28', 3, 1.38999999, 'North/South', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK'); -INSERT INTO orders VALUES (10753, 'FRANS', 3, '1997-11-25', '1997-12-23', '1997-11-27', 1, 7.69999981, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); -INSERT INTO orders VALUES (10754, 'MAGAA', 6, '1997-11-25', '1997-12-23', '1997-11-27', 3, 2.38000011, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10755, 'BONAP', 4, '1997-11-26', '1997-12-24', '1997-11-28', 2, 16.7099991, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10756, 'SPLIR', 8, '1997-11-27', '1997-12-25', '1997-12-02', 2, 73.2099991, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10757, 'SAVEA', 6, '1997-11-27', '1997-12-25', '1997-12-15', 1, 8.18999958, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10758, 'RICSU', 3, '1997-11-28', '1997-12-26', '1997-12-04', 3, 138.169998, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10759, 'ANATR', 3, '1997-11-28', '1997-12-26', '1997-12-12', 3, 11.9899998, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); -INSERT INTO orders VALUES (10760, 'MAISD', 4, '1997-12-01', '1997-12-29', '1997-12-10', 1, 155.639999, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (10761, 'RATTC', 5, '1997-12-02', '1997-12-30', '1997-12-08', 2, 18.6599998, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10762, 'FOLKO', 3, '1997-12-02', '1997-12-30', '1997-12-09', 1, 328.73999, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10763, 'FOLIG', 3, '1997-12-03', '1997-12-31', '1997-12-08', 3, 37.3499985, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); -INSERT INTO orders VALUES (10764, 'ERNSH', 6, '1997-12-03', '1997-12-31', '1997-12-08', 3, 145.449997, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10765, 'QUICK', 3, '1997-12-04', '1998-01-01', '1997-12-09', 3, 42.7400017, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10766, 'OTTIK', 4, '1997-12-05', '1998-01-02', '1997-12-09', 1, 157.550003, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10767, 'SUPRD', 4, '1997-12-05', '1998-01-02', '1997-12-15', 3, 1.59000003, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10768, 'AROUT', 3, '1997-12-08', '1998-01-05', '1997-12-15', 2, 146.320007, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10769, 'VAFFE', 3, '1997-12-08', '1998-01-05', '1997-12-12', 1, 65.0599976, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10770, 'HANAR', 8, '1997-12-09', '1998-01-06', '1997-12-17', 3, 5.32000017, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10771, 'ERNSH', 9, '1997-12-10', '1998-01-07', '1998-01-02', 2, 11.1899996, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10772, 'LEHMS', 3, '1997-12-10', '1998-01-07', '1997-12-19', 2, 91.2799988, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10773, 'ERNSH', 1, '1997-12-11', '1998-01-08', '1997-12-16', 3, 96.4300003, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10774, 'FOLKO', 4, '1997-12-11', '1997-12-25', '1997-12-12', 1, 48.2000008, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10775, 'THECR', 7, '1997-12-12', '1998-01-09', '1997-12-26', 1, 20.25, 'The Cracker Box', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA'); -INSERT INTO orders VALUES (10776, 'ERNSH', 1, '1997-12-15', '1998-01-12', '1997-12-18', 3, 351.529999, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10777, 'GOURL', 7, '1997-12-15', '1997-12-29', '1998-01-21', 2, 3.00999999, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10778, 'BERGS', 3, '1997-12-16', '1998-01-13', '1997-12-24', 1, 6.78999996, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10779, 'MORGK', 3, '1997-12-16', '1998-01-13', '1998-01-14', 2, 58.1300011, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); -INSERT INTO orders VALUES (10780, 'LILAS', 2, '1997-12-16', '1997-12-30', '1997-12-25', 1, 42.1300011, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10781, 'WARTH', 2, '1997-12-17', '1998-01-14', '1997-12-19', 3, 73.1600037, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (10782, 'CACTU', 9, '1997-12-17', '1998-01-14', '1997-12-22', 3, 1.10000002, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10783, 'HANAR', 4, '1997-12-18', '1998-01-15', '1997-12-19', 2, 124.980003, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10784, 'MAGAA', 4, '1997-12-18', '1998-01-15', '1997-12-22', 3, 70.0899963, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10785, 'GROSR', 1, '1997-12-18', '1998-01-15', '1997-12-24', 3, 1.50999999, 'GROSELLA-Restaurante', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela'); -INSERT INTO orders VALUES (10786, 'QUEEN', 8, '1997-12-19', '1998-01-16', '1997-12-23', 1, 110.870003, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10787, 'LAMAI', 2, '1997-12-19', '1998-01-02', '1997-12-26', 1, 249.929993, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10788, 'QUICK', 1, '1997-12-22', '1998-01-19', '1998-01-19', 2, 42.7000008, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10789, 'FOLIG', 1, '1997-12-22', '1998-01-19', '1997-12-31', 2, 100.599998, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); -INSERT INTO orders VALUES (10790, 'GOURL', 6, '1997-12-22', '1998-01-19', '1997-12-26', 1, 28.2299995, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10791, 'FRANK', 6, '1997-12-23', '1998-01-20', '1998-01-01', 2, 16.8500004, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10792, 'WOLZA', 1, '1997-12-23', '1998-01-20', '1997-12-31', 3, 23.7900009, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (10793, 'AROUT', 3, '1997-12-24', '1998-01-21', '1998-01-08', 3, 4.51999998, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10794, 'QUEDE', 6, '1997-12-24', '1998-01-21', '1998-01-02', 1, 21.4899998, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10795, 'ERNSH', 8, '1997-12-24', '1998-01-21', '1998-01-20', 2, 126.660004, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10796, 'HILAA', 3, '1997-12-25', '1998-01-22', '1998-01-14', 1, 26.5200005, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10797, 'DRACD', 7, '1997-12-25', '1998-01-22', '1998-01-05', 2, 33.3499985, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); -INSERT INTO orders VALUES (10798, 'ISLAT', 2, '1997-12-26', '1998-01-23', '1998-01-05', 1, 2.32999992, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10799, 'KOENE', 9, '1997-12-26', '1998-02-06', '1998-01-05', 3, 30.7600002, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10800, 'SEVES', 1, '1997-12-26', '1998-01-23', '1998-01-05', 3, 137.440002, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10801, 'BOLID', 4, '1997-12-29', '1998-01-26', '1997-12-31', 2, 97.0899963, 'Bólido Comidas preparadas', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain'); -INSERT INTO orders VALUES (10802, 'SIMOB', 4, '1997-12-29', '1998-01-26', '1998-01-02', 2, 257.26001, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (10803, 'WELLI', 4, '1997-12-30', '1998-01-27', '1998-01-06', 1, 55.2299995, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10804, 'SEVES', 6, '1997-12-30', '1998-01-27', '1998-01-07', 2, 27.3299999, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10805, 'THEBI', 2, '1997-12-30', '1998-01-27', '1998-01-09', 3, 237.339996, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); -INSERT INTO orders VALUES (10806, 'VICTE', 3, '1997-12-31', '1998-01-28', '1998-01-05', 2, 22.1100006, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10807, 'FRANS', 4, '1997-12-31', '1998-01-28', '1998-01-30', 1, 1.36000001, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); -INSERT INTO orders VALUES (10808, 'OLDWO', 2, '1998-01-01', '1998-01-29', '1998-01-09', 3, 45.5299988, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10809, 'WELLI', 7, '1998-01-01', '1998-01-29', '1998-01-07', 1, 4.86999989, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10810, 'LAUGB', 2, '1998-01-01', '1998-01-29', '1998-01-07', 3, 4.32999992, 'Laughing Bacchus Wine Cellars', '2319 Elm St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada'); -INSERT INTO orders VALUES (10811, 'LINOD', 8, '1998-01-02', '1998-01-30', '1998-01-08', 1, 31.2199993, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10812, 'REGGC', 5, '1998-01-02', '1998-01-30', '1998-01-12', 1, 59.7799988, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10813, 'RICAR', 1, '1998-01-05', '1998-02-02', '1998-01-09', 1, 47.3800011, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10814, 'VICTE', 3, '1998-01-05', '1998-02-02', '1998-01-14', 3, 130.940002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10815, 'SAVEA', 2, '1998-01-05', '1998-02-02', '1998-01-14', 3, 14.6199999, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10816, 'GREAL', 4, '1998-01-06', '1998-02-03', '1998-02-04', 2, 719.780029, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10817, 'KOENE', 3, '1998-01-06', '1998-01-20', '1998-01-13', 2, 306.070007, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10818, 'MAGAA', 7, '1998-01-07', '1998-02-04', '1998-01-12', 3, 65.4800034, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10819, 'CACTU', 2, '1998-01-07', '1998-02-04', '1998-01-16', 3, 19.7600002, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10820, 'RATTC', 3, '1998-01-07', '1998-02-04', '1998-01-13', 2, 37.5200005, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10821, 'SPLIR', 1, '1998-01-08', '1998-02-05', '1998-01-15', 1, 36.6800003, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10822, 'TRAIH', 6, '1998-01-08', '1998-02-05', '1998-01-16', 3, 7, 'Trail''s Head Gourmet Provisioners', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA'); -INSERT INTO orders VALUES (10823, 'LILAS', 5, '1998-01-09', '1998-02-06', '1998-01-13', 2, 163.970001, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10824, 'FOLKO', 8, '1998-01-09', '1998-02-06', '1998-01-30', 1, 1.23000002, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10825, 'DRACD', 1, '1998-01-09', '1998-02-06', '1998-01-14', 1, 79.25, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); -INSERT INTO orders VALUES (10826, 'BLONP', 6, '1998-01-12', '1998-02-09', '1998-02-06', 1, 7.09000015, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); -INSERT INTO orders VALUES (10827, 'BONAP', 1, '1998-01-12', '1998-01-26', '1998-02-06', 2, 63.5400009, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10828, 'RANCH', 9, '1998-01-13', '1998-01-27', '1998-02-04', 1, 90.8499985, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10829, 'ISLAT', 9, '1998-01-13', '1998-02-10', '1998-01-23', 1, 154.720001, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10830, 'TRADH', 4, '1998-01-13', '1998-02-24', '1998-01-21', 2, 81.8300018, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); -INSERT INTO orders VALUES (10831, 'SANTG', 3, '1998-01-14', '1998-02-11', '1998-01-23', 2, 72.1900024, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); -INSERT INTO orders VALUES (10832, 'LAMAI', 2, '1998-01-14', '1998-02-11', '1998-01-19', 2, 43.2599983, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10833, 'OTTIK', 6, '1998-01-15', '1998-02-12', '1998-01-23', 2, 71.4899979, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (10834, 'TRADH', 1, '1998-01-15', '1998-02-12', '1998-01-19', 3, 29.7800007, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); -INSERT INTO orders VALUES (10835, 'ALFKI', 1, '1998-01-15', '1998-02-12', '1998-01-21', 3, 69.5299988, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); -INSERT INTO orders VALUES (10836, 'ERNSH', 7, '1998-01-16', '1998-02-13', '1998-01-21', 1, 411.880005, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10837, 'BERGS', 9, '1998-01-16', '1998-02-13', '1998-01-23', 3, 13.3199997, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10838, 'LINOD', 3, '1998-01-19', '1998-02-16', '1998-01-23', 3, 59.2799988, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10839, 'TRADH', 3, '1998-01-19', '1998-02-16', '1998-01-22', 3, 35.4300003, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); -INSERT INTO orders VALUES (10840, 'LINOD', 4, '1998-01-19', '1998-03-02', '1998-02-16', 2, 2.71000004, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10841, 'SUPRD', 5, '1998-01-20', '1998-02-17', '1998-01-29', 2, 424.299988, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10842, 'TORTU', 1, '1998-01-20', '1998-02-17', '1998-01-29', 3, 54.4199982, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10843, 'VICTE', 4, '1998-01-21', '1998-02-18', '1998-01-26', 2, 9.26000023, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10844, 'PICCO', 8, '1998-01-21', '1998-02-18', '1998-01-26', 2, 25.2199993, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (10845, 'QUICK', 8, '1998-01-21', '1998-02-04', '1998-01-30', 1, 212.979996, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10846, 'SUPRD', 2, '1998-01-22', '1998-03-05', '1998-01-23', 3, 56.4599991, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10847, 'SAVEA', 4, '1998-01-22', '1998-02-05', '1998-02-10', 3, 487.570007, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10848, 'CONSH', 7, '1998-01-23', '1998-02-20', '1998-01-29', 2, 38.2400017, 'Consolidated Holdings', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK'); -INSERT INTO orders VALUES (10849, 'KOENE', 9, '1998-01-23', '1998-02-20', '1998-01-30', 2, 0.560000002, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10850, 'VICTE', 1, '1998-01-23', '1998-03-06', '1998-01-30', 1, 49.1899986, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); -INSERT INTO orders VALUES (10851, 'RICAR', 5, '1998-01-26', '1998-02-23', '1998-02-02', 1, 160.550003, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10852, 'RATTC', 8, '1998-01-26', '1998-02-09', '1998-01-30', 1, 174.050003, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10853, 'BLAUS', 9, '1998-01-27', '1998-02-24', '1998-02-03', 2, 53.8300018, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (10854, 'ERNSH', 3, '1998-01-27', '1998-02-24', '1998-02-05', 2, 100.220001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10855, 'OLDWO', 3, '1998-01-27', '1998-02-24', '1998-02-04', 1, 170.970001, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10856, 'ANTON', 3, '1998-01-28', '1998-02-25', '1998-02-10', 2, 58.4300003, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); -INSERT INTO orders VALUES (10857, 'BERGS', 8, '1998-01-28', '1998-02-25', '1998-02-06', 2, 188.850006, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10858, 'LACOR', 2, '1998-01-29', '1998-02-26', '1998-02-03', 1, 52.5099983, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); -INSERT INTO orders VALUES (10859, 'FRANK', 1, '1998-01-29', '1998-02-26', '1998-02-02', 2, 76.0999985, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10860, 'FRANR', 3, '1998-01-29', '1998-02-26', '1998-02-04', 3, 19.2600002, 'France restauration', '54, rue Royale', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10861, 'WHITC', 4, '1998-01-30', '1998-02-27', '1998-02-17', 2, 14.9300003, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10862, 'LEHMS', 8, '1998-01-30', '1998-03-13', '1998-02-02', 2, 53.2299995, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10863, 'HILAA', 4, '1998-02-02', '1998-03-02', '1998-02-17', 2, 30.2600002, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10864, 'AROUT', 4, '1998-02-02', '1998-03-02', '1998-02-09', 2, 3.03999996, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10865, 'QUICK', 2, '1998-02-02', '1998-02-16', '1998-02-12', 1, 348.140015, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10866, 'BERGS', 5, '1998-02-03', '1998-03-03', '1998-02-12', 1, 109.110001, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10867, 'LONEP', 6, '1998-02-03', '1998-03-17', '1998-02-11', 1, 1.92999995, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10868, 'QUEEN', 7, '1998-02-04', '1998-03-04', '1998-02-23', 2, 191.270004, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10869, 'SEVES', 5, '1998-02-04', '1998-03-04', '1998-02-09', 1, 143.279999, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); -INSERT INTO orders VALUES (10870, 'WOLZA', 5, '1998-02-04', '1998-03-04', '1998-02-13', 3, 12.04, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (10871, 'BONAP', 9, '1998-02-05', '1998-03-05', '1998-02-10', 2, 112.269997, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10872, 'GODOS', 5, '1998-02-05', '1998-03-05', '1998-02-09', 2, 175.320007, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10873, 'WILMK', 4, '1998-02-06', '1998-03-06', '1998-02-09', 1, 0.819999993, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (10874, 'GODOS', 5, '1998-02-06', '1998-03-06', '1998-02-11', 2, 19.5799999, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10875, 'BERGS', 4, '1998-02-06', '1998-03-06', '1998-03-03', 2, 32.3699989, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10876, 'BONAP', 7, '1998-02-09', '1998-03-09', '1998-02-12', 3, 60.4199982, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10877, 'RICAR', 1, '1998-02-09', '1998-03-09', '1998-02-19', 1, 38.0600014, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (10878, 'QUICK', 4, '1998-02-10', '1998-03-10', '1998-02-12', 1, 46.6899986, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10879, 'WILMK', 3, '1998-02-10', '1998-03-10', '1998-02-12', 3, 8.5, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (10880, 'FOLKO', 7, '1998-02-10', '1998-03-24', '1998-02-18', 1, 88.0100021, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10881, 'CACTU', 4, '1998-02-11', '1998-03-11', '1998-02-18', 1, 2.83999991, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10882, 'SAVEA', 4, '1998-02-11', '1998-03-11', '1998-02-20', 3, 23.1000004, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10883, 'LONEP', 8, '1998-02-12', '1998-03-12', '1998-02-20', 3, 0.529999971, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (10884, 'LETSS', 4, '1998-02-12', '1998-03-12', '1998-02-13', 2, 90.9700012, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); -INSERT INTO orders VALUES (10885, 'SUPRD', 6, '1998-02-12', '1998-03-12', '1998-02-18', 3, 5.63999987, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10886, 'HANAR', 1, '1998-02-13', '1998-03-13', '1998-03-02', 1, 4.98999977, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10887, 'GALED', 8, '1998-02-13', '1998-03-13', '1998-02-16', 3, 1.25, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); -INSERT INTO orders VALUES (10888, 'GODOS', 1, '1998-02-16', '1998-03-16', '1998-02-23', 2, 51.8699989, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10889, 'RATTC', 9, '1998-02-16', '1998-03-16', '1998-02-23', 3, 280.609985, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10890, 'DUMON', 7, '1998-02-16', '1998-03-16', '1998-02-18', 1, 32.7599983, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10891, 'LEHMS', 7, '1998-02-17', '1998-03-17', '1998-02-19', 2, 20.3700008, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10892, 'MAISD', 4, '1998-02-17', '1998-03-17', '1998-02-19', 2, 120.269997, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (10893, 'KOENE', 9, '1998-02-18', '1998-03-18', '1998-02-20', 2, 77.7799988, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (10894, 'SAVEA', 1, '1998-02-18', '1998-03-18', '1998-02-20', 1, 116.129997, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10895, 'ERNSH', 3, '1998-02-18', '1998-03-18', '1998-02-23', 1, 162.75, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10896, 'MAISD', 7, '1998-02-19', '1998-03-19', '1998-02-27', 3, 32.4500008, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (10897, 'HUNGO', 3, '1998-02-19', '1998-03-19', '1998-02-25', 2, 603.539978, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10898, 'OCEAN', 4, '1998-02-20', '1998-03-20', '1998-03-06', 2, 1.26999998, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10899, 'LILAS', 5, '1998-02-20', '1998-03-20', '1998-02-26', 3, 1.21000004, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10900, 'WELLI', 1, '1998-02-20', '1998-03-20', '1998-03-04', 2, 1.65999997, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10901, 'HILAA', 4, '1998-02-23', '1998-03-23', '1998-02-26', 1, 62.0900002, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10902, 'FOLKO', 1, '1998-02-23', '1998-03-23', '1998-03-03', 1, 44.1500015, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10903, 'HANAR', 3, '1998-02-24', '1998-03-24', '1998-03-04', 3, 36.7099991, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10904, 'WHITC', 3, '1998-02-24', '1998-03-24', '1998-02-27', 3, 162.949997, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (10905, 'WELLI', 9, '1998-02-24', '1998-03-24', '1998-03-06', 2, 13.7200003, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10906, 'WOLZA', 4, '1998-02-25', '1998-03-11', '1998-03-03', 3, 26.2900009, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (10907, 'SPECD', 6, '1998-02-25', '1998-03-25', '1998-02-27', 3, 9.18999958, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); -INSERT INTO orders VALUES (10908, 'REGGC', 4, '1998-02-26', '1998-03-26', '1998-03-06', 2, 32.9599991, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10909, 'SANTG', 1, '1998-02-26', '1998-03-26', '1998-03-10', 2, 53.0499992, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); -INSERT INTO orders VALUES (10910, 'WILMK', 1, '1998-02-26', '1998-03-26', '1998-03-04', 3, 38.1100006, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (10911, 'GODOS', 3, '1998-02-26', '1998-03-26', '1998-03-05', 1, 38.1899986, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10912, 'HUNGO', 2, '1998-02-26', '1998-03-26', '1998-03-18', 2, 580.909973, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10913, 'QUEEN', 4, '1998-02-26', '1998-03-26', '1998-03-04', 1, 33.0499992, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10914, 'QUEEN', 6, '1998-02-27', '1998-03-27', '1998-03-02', 1, 21.1900005, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10915, 'TORTU', 2, '1998-02-27', '1998-03-27', '1998-03-02', 2, 3.50999999, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10916, 'RANCH', 1, '1998-02-27', '1998-03-27', '1998-03-09', 2, 63.7700005, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10917, 'ROMEY', 4, '1998-03-02', '1998-03-30', '1998-03-11', 2, 8.28999996, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); -INSERT INTO orders VALUES (10918, 'BOTTM', 3, '1998-03-02', '1998-03-30', '1998-03-11', 3, 48.8300018, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10919, 'LINOD', 2, '1998-03-02', '1998-03-30', '1998-03-04', 2, 19.7999992, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10920, 'AROUT', 4, '1998-03-03', '1998-03-31', '1998-03-09', 2, 29.6100006, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10921, 'VAFFE', 1, '1998-03-03', '1998-04-14', '1998-03-09', 1, 176.479996, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10922, 'HANAR', 5, '1998-03-03', '1998-03-31', '1998-03-05', 3, 62.7400017, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10923, 'LAMAI', 7, '1998-03-03', '1998-04-14', '1998-03-13', 3, 68.2600021, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (10924, 'BERGS', 3, '1998-03-04', '1998-04-01', '1998-04-08', 2, 151.520004, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); -INSERT INTO orders VALUES (10925, 'HANAR', 3, '1998-03-04', '1998-04-01', '1998-03-13', 1, 2.26999998, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10926, 'ANATR', 4, '1998-03-04', '1998-04-01', '1998-03-11', 3, 39.9199982, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); -INSERT INTO orders VALUES (10927, 'LACOR', 4, '1998-03-05', '1998-04-02', '1998-04-08', 1, 19.7900009, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); -INSERT INTO orders VALUES (10928, 'GALED', 1, '1998-03-05', '1998-04-02', '1998-03-18', 1, 1.36000001, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); -INSERT INTO orders VALUES (10929, 'FRANK', 6, '1998-03-05', '1998-04-02', '1998-03-12', 1, 33.9300003, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (10930, 'SUPRD', 4, '1998-03-06', '1998-04-17', '1998-03-18', 3, 15.5500002, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (10931, 'RICSU', 4, '1998-03-06', '1998-03-20', '1998-03-19', 2, 13.6000004, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10932, 'BONAP', 8, '1998-03-06', '1998-04-03', '1998-03-24', 1, 134.639999, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10933, 'ISLAT', 6, '1998-03-06', '1998-04-03', '1998-03-16', 3, 54.1500015, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); -INSERT INTO orders VALUES (10934, 'LEHMS', 3, '1998-03-09', '1998-04-06', '1998-03-12', 3, 32.0099983, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (10935, 'WELLI', 4, '1998-03-09', '1998-04-06', '1998-03-18', 3, 47.5900002, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); -INSERT INTO orders VALUES (10936, 'GREAL', 3, '1998-03-09', '1998-04-06', '1998-03-18', 2, 33.6800003, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (10937, 'CACTU', 7, '1998-03-10', '1998-03-24', '1998-03-13', 3, 31.5100002, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10938, 'QUICK', 3, '1998-03-10', '1998-04-07', '1998-03-16', 2, 31.8899994, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10939, 'MAGAA', 2, '1998-03-10', '1998-04-07', '1998-03-13', 2, 76.3300018, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10940, 'BONAP', 8, '1998-03-11', '1998-04-08', '1998-03-23', 3, 19.7700005, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (10941, 'SAVEA', 7, '1998-03-11', '1998-04-08', '1998-03-20', 2, 400.809998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10942, 'REGGC', 9, '1998-03-11', '1998-04-08', '1998-03-18', 3, 17.9500008, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (10943, 'BSBEV', 4, '1998-03-11', '1998-04-08', '1998-03-19', 2, 2.17000008, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10944, 'BOTTM', 6, '1998-03-12', '1998-03-26', '1998-03-13', 3, 52.9199982, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10945, 'MORGK', 4, '1998-03-12', '1998-04-09', '1998-03-18', 1, 10.2200003, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); -INSERT INTO orders VALUES (10946, 'VAFFE', 1, '1998-03-12', '1998-04-09', '1998-03-19', 2, 27.2000008, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10947, 'BSBEV', 3, '1998-03-13', '1998-04-10', '1998-03-16', 2, 3.25999999, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (10948, 'GODOS', 3, '1998-03-13', '1998-04-10', '1998-03-19', 3, 23.3899994, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (10949, 'BOTTM', 2, '1998-03-13', '1998-04-10', '1998-03-17', 3, 74.4400024, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10950, 'MAGAA', 1, '1998-03-16', '1998-04-13', '1998-03-23', 2, 2.5, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); -INSERT INTO orders VALUES (10951, 'RICSU', 9, '1998-03-16', '1998-04-27', '1998-04-07', 2, 30.8500004, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (10952, 'ALFKI', 1, '1998-03-16', '1998-04-27', '1998-03-24', 1, 40.4199982, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); -INSERT INTO orders VALUES (10953, 'AROUT', 9, '1998-03-16', '1998-03-30', '1998-03-25', 2, 23.7199993, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (10954, 'LINOD', 5, '1998-03-17', '1998-04-28', '1998-03-20', 1, 27.9099998, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (10955, 'FOLKO', 8, '1998-03-17', '1998-04-14', '1998-03-20', 2, 3.25999999, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10956, 'BLAUS', 6, '1998-03-17', '1998-04-28', '1998-03-20', 2, 44.6500015, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (10957, 'HILAA', 8, '1998-03-18', '1998-04-15', '1998-03-27', 3, 105.360001, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10958, 'OCEAN', 7, '1998-03-18', '1998-04-15', '1998-03-27', 2, 49.5600014, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10959, 'GOURL', 6, '1998-03-18', '1998-04-29', '1998-03-23', 2, 4.98000002, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (10960, 'HILAA', 3, '1998-03-19', '1998-04-02', '1998-04-08', 1, 2.07999992, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10961, 'QUEEN', 8, '1998-03-19', '1998-04-16', '1998-03-30', 1, 104.470001, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (10962, 'QUICK', 8, '1998-03-19', '1998-04-16', '1998-03-23', 2, 275.790009, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10963, 'FURIB', 9, '1998-03-19', '1998-04-16', '1998-03-26', 3, 2.70000005, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); -INSERT INTO orders VALUES (10964, 'SPECD', 3, '1998-03-20', '1998-04-17', '1998-03-24', 2, 87.3799973, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); -INSERT INTO orders VALUES (10965, 'OLDWO', 6, '1998-03-20', '1998-04-17', '1998-03-30', 3, 144.380005, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (10966, 'CHOPS', 4, '1998-03-20', '1998-04-17', '1998-04-08', 1, 27.1900005, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (10967, 'TOMSP', 2, '1998-03-23', '1998-04-20', '1998-04-02', 2, 62.2200012, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); -INSERT INTO orders VALUES (10968, 'ERNSH', 1, '1998-03-23', '1998-04-20', '1998-04-01', 3, 74.5999985, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10969, 'COMMI', 1, '1998-03-23', '1998-04-20', '1998-03-30', 2, 0.209999993, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); -INSERT INTO orders VALUES (10970, 'BOLID', 9, '1998-03-24', '1998-04-07', '1998-04-24', 1, 16.1599998, 'Bólido Comidas preparadas', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain'); -INSERT INTO orders VALUES (10971, 'FRANR', 2, '1998-03-24', '1998-04-21', '1998-04-02', 2, 121.82, 'France restauration', '54, rue Royale', 'Nantes', NULL, '44000', 'France'); -INSERT INTO orders VALUES (10972, 'LACOR', 4, '1998-03-24', '1998-04-21', '1998-03-26', 2, 0.0199999996, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); -INSERT INTO orders VALUES (10973, 'LACOR', 6, '1998-03-24', '1998-04-21', '1998-03-27', 2, 15.1700001, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); -INSERT INTO orders VALUES (10974, 'SPLIR', 3, '1998-03-25', '1998-04-08', '1998-04-03', 3, 12.96, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); -INSERT INTO orders VALUES (10975, 'BOTTM', 1, '1998-03-25', '1998-04-22', '1998-03-27', 3, 32.2700005, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10976, 'HILAA', 1, '1998-03-25', '1998-05-06', '1998-04-03', 1, 37.9700012, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (10977, 'FOLKO', 8, '1998-03-26', '1998-04-23', '1998-04-10', 3, 208.5, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10978, 'MAISD', 9, '1998-03-26', '1998-04-23', '1998-04-23', 2, 32.8199997, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (10979, 'ERNSH', 8, '1998-03-26', '1998-04-23', '1998-03-31', 2, 353.070007, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10980, 'FOLKO', 4, '1998-03-27', '1998-05-08', '1998-04-17', 1, 1.25999999, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10981, 'HANAR', 1, '1998-03-27', '1998-04-24', '1998-04-02', 2, 193.369995, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (10982, 'BOTTM', 2, '1998-03-27', '1998-04-24', '1998-04-08', 1, 14.0100002, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (10983, 'SAVEA', 2, '1998-03-27', '1998-04-24', '1998-04-06', 2, 657.539978, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10984, 'SAVEA', 1, '1998-03-30', '1998-04-27', '1998-04-03', 3, 211.220001, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (10985, 'HUNGO', 2, '1998-03-30', '1998-04-27', '1998-04-02', 1, 91.5100021, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (10986, 'OCEAN', 8, '1998-03-30', '1998-04-27', '1998-04-21', 2, 217.860001, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (10987, 'EASTC', 8, '1998-03-31', '1998-04-28', '1998-04-06', 1, 185.479996, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (10988, 'RATTC', 3, '1998-03-31', '1998-04-28', '1998-04-10', 2, 61.1399994, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (10989, 'QUEDE', 2, '1998-03-31', '1998-04-28', '1998-04-02', 1, 34.7599983, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); -INSERT INTO orders VALUES (10990, 'ERNSH', 2, '1998-04-01', '1998-05-13', '1998-04-07', 3, 117.610001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (10991, 'QUICK', 1, '1998-04-01', '1998-04-29', '1998-04-07', 1, 38.5099983, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10992, 'THEBI', 1, '1998-04-01', '1998-04-29', '1998-04-03', 3, 4.26999998, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); -INSERT INTO orders VALUES (10993, 'FOLKO', 7, '1998-04-01', '1998-04-29', '1998-04-10', 3, 8.81000042, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (10994, 'VAFFE', 2, '1998-04-02', '1998-04-16', '1998-04-09', 3, 65.5299988, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); -INSERT INTO orders VALUES (10995, 'PERIC', 1, '1998-04-02', '1998-04-30', '1998-04-06', 3, 46, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (10996, 'QUICK', 4, '1998-04-02', '1998-04-30', '1998-04-10', 2, 1.12, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (10997, 'LILAS', 8, '1998-04-03', '1998-05-15', '1998-04-13', 2, 73.9100037, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (10998, 'WOLZA', 8, '1998-04-03', '1998-04-17', '1998-04-17', 2, 20.3099995, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (10999, 'OTTIK', 6, '1998-04-03', '1998-05-01', '1998-04-10', 2, 96.3499985, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (11000, 'RATTC', 2, '1998-04-06', '1998-05-04', '1998-04-14', 3, 55.1199989, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); -INSERT INTO orders VALUES (11001, 'FOLKO', 2, '1998-04-06', '1998-05-04', '1998-04-14', 2, 197.300003, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (11002, 'SAVEA', 4, '1998-04-06', '1998-05-04', '1998-04-16', 1, 141.160004, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (11003, 'THECR', 3, '1998-04-06', '1998-05-04', '1998-04-08', 3, 14.9099998, 'The Cracker Box', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA'); -INSERT INTO orders VALUES (11004, 'MAISD', 3, '1998-04-07', '1998-05-05', '1998-04-20', 1, 44.8400002, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); -INSERT INTO orders VALUES (11005, 'WILMK', 2, '1998-04-07', '1998-05-05', '1998-04-10', 1, 0.75, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); -INSERT INTO orders VALUES (11006, 'GREAL', 3, '1998-04-07', '1998-05-05', '1998-04-15', 2, 25.1900005, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (11007, 'PRINI', 8, '1998-04-08', '1998-05-06', '1998-04-13', 2, 202.240005, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); -INSERT INTO orders VALUES (11008, 'ERNSH', 7, '1998-04-08', '1998-05-06', NULL, 3, 79.4599991, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (11009, 'GODOS', 2, '1998-04-08', '1998-05-06', '1998-04-10', 1, 59.1100006, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (11010, 'REGGC', 2, '1998-04-09', '1998-05-07', '1998-04-21', 2, 28.7099991, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (11011, 'ALFKI', 3, '1998-04-09', '1998-05-07', '1998-04-13', 1, 1.21000004, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); -INSERT INTO orders VALUES (11012, 'FRANK', 1, '1998-04-09', '1998-04-23', '1998-04-17', 3, 242.949997, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); -INSERT INTO orders VALUES (11013, 'ROMEY', 2, '1998-04-09', '1998-05-07', '1998-04-10', 1, 32.9900017, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); -INSERT INTO orders VALUES (11014, 'LINOD', 2, '1998-04-10', '1998-05-08', '1998-04-15', 3, 23.6000004, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (11015, 'SANTG', 2, '1998-04-10', '1998-04-24', '1998-04-20', 2, 4.61999989, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); -INSERT INTO orders VALUES (11016, 'AROUT', 9, '1998-04-10', '1998-05-08', '1998-04-13', 2, 33.7999992, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); -INSERT INTO orders VALUES (11017, 'ERNSH', 9, '1998-04-13', '1998-05-11', '1998-04-20', 2, 754.26001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (11018, 'LONEP', 4, '1998-04-13', '1998-05-11', '1998-04-16', 2, 11.6499996, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); -INSERT INTO orders VALUES (11019, 'RANCH', 6, '1998-04-13', '1998-05-11', NULL, 3, 3.17000008, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (11020, 'OTTIK', 2, '1998-04-14', '1998-05-12', '1998-04-16', 2, 43.2999992, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); -INSERT INTO orders VALUES (11021, 'QUICK', 3, '1998-04-14', '1998-05-12', '1998-04-21', 1, 297.179993, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); -INSERT INTO orders VALUES (11022, 'HANAR', 9, '1998-04-14', '1998-05-12', '1998-05-04', 2, 6.26999998, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (11023, 'BSBEV', 1, '1998-04-14', '1998-04-28', '1998-04-24', 2, 123.830002, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); -INSERT INTO orders VALUES (11024, 'EASTC', 4, '1998-04-15', '1998-05-13', '1998-04-20', 1, 74.3600006, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (11025, 'WARTH', 6, '1998-04-15', '1998-05-13', '1998-04-24', 3, 29.1700001, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); -INSERT INTO orders VALUES (11026, 'FRANS', 4, '1998-04-15', '1998-05-13', '1998-04-28', 1, 47.0900002, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); -INSERT INTO orders VALUES (11027, 'BOTTM', 1, '1998-04-16', '1998-05-14', '1998-04-20', 1, 52.5200005, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (11028, 'KOENE', 2, '1998-04-16', '1998-05-14', '1998-04-22', 1, 29.5900002, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); -INSERT INTO orders VALUES (11029, 'CHOPS', 4, '1998-04-16', '1998-05-14', '1998-04-27', 1, 47.8400002, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (11030, 'SAVEA', 7, '1998-04-17', '1998-05-15', '1998-04-27', 2, 830.75, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (11031, 'SAVEA', 6, '1998-04-17', '1998-05-15', '1998-04-24', 2, 227.220001, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (11032, 'WHITC', 2, '1998-04-17', '1998-05-15', '1998-04-23', 3, 606.190002, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (11033, 'RICSU', 7, '1998-04-17', '1998-05-15', '1998-04-23', 3, 84.7399979, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (11034, 'OLDWO', 8, '1998-04-20', '1998-06-01', '1998-04-27', 1, 40.3199997, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); -INSERT INTO orders VALUES (11035, 'SUPRD', 2, '1998-04-20', '1998-05-18', '1998-04-24', 2, 0.170000002, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (11036, 'DRACD', 8, '1998-04-20', '1998-05-18', '1998-04-22', 3, 149.470001, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); -INSERT INTO orders VALUES (11037, 'GODOS', 7, '1998-04-21', '1998-05-19', '1998-04-27', 1, 3.20000005, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); -INSERT INTO orders VALUES (11038, 'SUPRD', 1, '1998-04-21', '1998-05-19', '1998-04-30', 2, 29.5900002, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); -INSERT INTO orders VALUES (11039, 'LINOD', 1, '1998-04-21', '1998-05-19', NULL, 2, 65, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); -INSERT INTO orders VALUES (11040, 'GREAL', 4, '1998-04-22', '1998-05-20', NULL, 3, 18.8400002, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (11041, 'CHOPS', 3, '1998-04-22', '1998-05-20', '1998-04-28', 2, 48.2200012, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); -INSERT INTO orders VALUES (11042, 'COMMI', 2, '1998-04-22', '1998-05-06', '1998-05-01', 1, 29.9899998, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); -INSERT INTO orders VALUES (11043, 'SPECD', 5, '1998-04-22', '1998-05-20', '1998-04-29', 2, 8.80000019, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); -INSERT INTO orders VALUES (11044, 'WOLZA', 4, '1998-04-23', '1998-05-21', '1998-05-01', 1, 8.72000027, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); -INSERT INTO orders VALUES (11045, 'BOTTM', 6, '1998-04-23', '1998-05-21', NULL, 2, 70.5800018, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (11046, 'WANDK', 8, '1998-04-23', '1998-05-21', '1998-04-24', 2, 71.6399994, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); -INSERT INTO orders VALUES (11047, 'EASTC', 7, '1998-04-24', '1998-05-22', '1998-05-01', 3, 46.6199989, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (11048, 'BOTTM', 7, '1998-04-24', '1998-05-22', '1998-04-30', 3, 24.1200008, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); -INSERT INTO orders VALUES (11049, 'GOURL', 3, '1998-04-24', '1998-05-22', '1998-05-04', 1, 8.34000015, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); -INSERT INTO orders VALUES (11050, 'FOLKO', 8, '1998-04-27', '1998-05-25', '1998-05-05', 2, 59.4099998, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); -INSERT INTO orders VALUES (11051, 'LAMAI', 7, '1998-04-27', '1998-05-25', NULL, 3, 2.78999996, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); -INSERT INTO orders VALUES (11052, 'HANAR', 3, '1998-04-27', '1998-05-25', '1998-05-01', 1, 67.2600021, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); -INSERT INTO orders VALUES (11053, 'PICCO', 2, '1998-04-27', '1998-05-25', '1998-04-29', 2, 53.0499992, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); -INSERT INTO orders VALUES (11054, 'CACTU', 8, '1998-04-28', '1998-05-26', NULL, 1, 0.330000013, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); -INSERT INTO orders VALUES (11055, 'HILAA', 7, '1998-04-28', '1998-05-26', '1998-05-05', 2, 120.919998, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); -INSERT INTO orders VALUES (11056, 'EASTC', 8, '1998-04-28', '1998-05-12', '1998-05-01', 2, 278.959991, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); -INSERT INTO orders VALUES (11057, 'NORTS', 3, '1998-04-29', '1998-05-27', '1998-05-01', 3, 4.13000011, 'North/South', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK'); -INSERT INTO orders VALUES (11058, 'BLAUS', 9, '1998-04-29', '1998-05-27', NULL, 3, 31.1399994, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); -INSERT INTO orders VALUES (11059, 'RICAR', 2, '1998-04-29', '1998-06-10', NULL, 2, 85.8000031, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); -INSERT INTO orders VALUES (11060, 'FRANS', 2, '1998-04-30', '1998-05-28', '1998-05-04', 2, 10.9799995, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); -INSERT INTO orders VALUES (11061, 'GREAL', 4, '1998-04-30', '1998-06-11', NULL, 3, 14.0100002, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); -INSERT INTO orders VALUES (11062, 'REGGC', 4, '1998-04-30', '1998-05-28', NULL, 2, 29.9300003, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); -INSERT INTO orders VALUES (11063, 'HUNGO', 3, '1998-04-30', '1998-05-28', '1998-05-06', 2, 81.7300034, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); -INSERT INTO orders VALUES (11064, 'SAVEA', 1, '1998-05-01', '1998-05-29', '1998-05-04', 1, 30.0900002, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); -INSERT INTO orders VALUES (11065, 'LILAS', 8, '1998-05-01', '1998-05-29', NULL, 1, 12.9099998, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (11066, 'WHITC', 7, '1998-05-01', '1998-05-29', '1998-05-04', 2, 44.7200012, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); -INSERT INTO orders VALUES (11067, 'DRACD', 1, '1998-05-04', '1998-05-18', '1998-05-06', 2, 7.98000002, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); -INSERT INTO orders VALUES (11068, 'QUEEN', 8, '1998-05-04', '1998-06-01', NULL, 2, 81.75, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); -INSERT INTO orders VALUES (11069, 'TORTU', 1, '1998-05-04', '1998-06-01', '1998-05-06', 2, 15.6700001, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (11070, 'LEHMS', 2, '1998-05-05', '1998-06-02', NULL, 1, 136, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); -INSERT INTO orders VALUES (11071, 'LILAS', 1, '1998-05-05', '1998-06-02', NULL, 1, 0.930000007, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); -INSERT INTO orders VALUES (11072, 'ERNSH', 4, '1998-05-05', '1998-06-02', NULL, 2, 258.640015, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); -INSERT INTO orders VALUES (11073, 'PERIC', 2, '1998-05-05', '1998-06-02', NULL, 2, 24.9500008, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); -INSERT INTO orders VALUES (11074, 'SIMOB', 7, '1998-05-06', '1998-06-03', NULL, 2, 18.4400005, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); -INSERT INTO orders VALUES (11075, 'RICSU', 8, '1998-05-06', '1998-06-03', NULL, 2, 6.19000006, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); -INSERT INTO orders VALUES (11076, 'BONAP', 4, '1998-05-06', '1998-06-03', NULL, 2, 38.2799988, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); -INSERT INTO orders VALUES (11077, 'RATTC', 1, '1998-05-06', '1998-06-03', NULL, 2, 8.52999973, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); - - --- --- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO products VALUES (1, 'Chai', 8, 1, '10 boxes x 30 bags', 18, 39, 0, 10, 1); -INSERT INTO products VALUES (2, 'Chang', 1, 1, '24 - 12 oz bottles', 19, 17, 40, 25, 1); -INSERT INTO products VALUES (3, 'Aniseed Syrup', 1, 2, '12 - 550 ml bottles', 10, 13, 70, 25, 0); -INSERT INTO products VALUES (4, 'Chef Anton''s Cajun Seasoning', 2, 2, '48 - 6 oz jars', 22, 53, 0, 0, 0); -INSERT INTO products VALUES (5, 'Chef Anton''s Gumbo Mix', 2, 2, '36 boxes', 21.3500004, 0, 0, 0, 1); -INSERT INTO products VALUES (6, 'Grandma''s Boysenberry Spread', 3, 2, '12 - 8 oz jars', 25, 120, 0, 25, 0); -INSERT INTO products VALUES (7, 'Uncle Bob''s Organic Dried Pears', 3, 7, '12 - 1 lb pkgs.', 30, 15, 0, 10, 0); -INSERT INTO products VALUES (8, 'Northwoods Cranberry Sauce', 3, 2, '12 - 12 oz jars', 40, 6, 0, 0, 0); -INSERT INTO products VALUES (9, 'Mishi Kobe Niku', 4, 6, '18 - 500 g pkgs.', 97, 29, 0, 0, 1); -INSERT INTO products VALUES (10, 'Ikura', 4, 8, '12 - 200 ml jars', 31, 31, 0, 0, 0); -INSERT INTO products VALUES (11, 'Queso Cabrales', 5, 4, '1 kg pkg.', 21, 22, 30, 30, 0); -INSERT INTO products VALUES (12, 'Queso Manchego La Pastora', 5, 4, '10 - 500 g pkgs.', 38, 86, 0, 0, 0); -INSERT INTO products VALUES (13, 'Konbu', 6, 8, '2 kg box', 6, 24, 0, 5, 0); -INSERT INTO products VALUES (14, 'Tofu', 6, 7, '40 - 100 g pkgs.', 23.25, 35, 0, 0, 0); -INSERT INTO products VALUES (15, 'Genen Shouyu', 6, 2, '24 - 250 ml bottles', 13, 39, 0, 5, 0); -INSERT INTO products VALUES (16, 'Pavlova', 7, 3, '32 - 500 g boxes', 17.4500008, 29, 0, 10, 0); -INSERT INTO products VALUES (17, 'Alice Mutton', 7, 6, '20 - 1 kg tins', 39, 0, 0, 0, 1); -INSERT INTO products VALUES (18, 'Carnarvon Tigers', 7, 8, '16 kg pkg.', 62.5, 42, 0, 0, 0); -INSERT INTO products VALUES (19, 'Teatime Chocolate Biscuits', 8, 3, '10 boxes x 12 pieces', 9.19999981, 25, 0, 5, 0); -INSERT INTO products VALUES (20, 'Sir Rodney''s Marmalade', 8, 3, '30 gift boxes', 81, 40, 0, 0, 0); -INSERT INTO products VALUES (21, 'Sir Rodney''s Scones', 8, 3, '24 pkgs. x 4 pieces', 10, 3, 40, 5, 0); -INSERT INTO products VALUES (22, 'Gustaf''s Knäckebröd', 9, 5, '24 - 500 g pkgs.', 21, 104, 0, 25, 0); -INSERT INTO products VALUES (23, 'Tunnbröd', 9, 5, '12 - 250 g pkgs.', 9, 61, 0, 25, 0); -INSERT INTO products VALUES (24, 'Guaraná Fantástica', 10, 1, '12 - 355 ml cans', 4.5, 20, 0, 0, 1); -INSERT INTO products VALUES (25, 'NuNuCa Nuß-Nougat-Creme', 11, 3, '20 - 450 g glasses', 14, 76, 0, 30, 0); -INSERT INTO products VALUES (26, 'Gumbär Gummibärchen', 11, 3, '100 - 250 g bags', 31.2299995, 15, 0, 0, 0); -INSERT INTO products VALUES (27, 'Schoggi Schokolade', 11, 3, '100 - 100 g pieces', 43.9000015, 49, 0, 30, 0); -INSERT INTO products VALUES (28, 'Rössle Sauerkraut', 12, 7, '25 - 825 g cans', 45.5999985, 26, 0, 0, 1); -INSERT INTO products VALUES (29, 'Thüringer Rostbratwurst', 12, 6, '50 bags x 30 sausgs.', 123.790001, 0, 0, 0, 1); -INSERT INTO products VALUES (30, 'Nord-Ost Matjeshering', 13, 8, '10 - 200 g glasses', 25.8899994, 10, 0, 15, 0); -INSERT INTO products VALUES (31, 'Gorgonzola Telino', 14, 4, '12 - 100 g pkgs', 12.5, 0, 70, 20, 0); -INSERT INTO products VALUES (32, 'Mascarpone Fabioli', 14, 4, '24 - 200 g pkgs.', 32, 9, 40, 25, 0); -INSERT INTO products VALUES (33, 'Geitost', 15, 4, '500 g', 2.5, 112, 0, 20, 0); -INSERT INTO products VALUES (34, 'Sasquatch Ale', 16, 1, '24 - 12 oz bottles', 14, 111, 0, 15, 0); -INSERT INTO products VALUES (35, 'Steeleye Stout', 16, 1, '24 - 12 oz bottles', 18, 20, 0, 15, 0); -INSERT INTO products VALUES (36, 'Inlagd Sill', 17, 8, '24 - 250 g jars', 19, 112, 0, 20, 0); -INSERT INTO products VALUES (37, 'Gravad lax', 17, 8, '12 - 500 g pkgs.', 26, 11, 50, 25, 0); -INSERT INTO products VALUES (38, 'Côte de Blaye', 18, 1, '12 - 75 cl bottles', 263.5, 17, 0, 15, 0); -INSERT INTO products VALUES (39, 'Chartreuse verte', 18, 1, '750 cc per bottle', 18, 69, 0, 5, 0); -INSERT INTO products VALUES (40, 'Boston Crab Meat', 19, 8, '24 - 4 oz tins', 18.3999996, 123, 0, 30, 0); -INSERT INTO products VALUES (41, 'Jack''s New England Clam Chowder', 19, 8, '12 - 12 oz cans', 9.64999962, 85, 0, 10, 0); -INSERT INTO products VALUES (42, 'Singaporean Hokkien Fried Mee', 20, 5, '32 - 1 kg pkgs.', 14, 26, 0, 0, 1); -INSERT INTO products VALUES (43, 'Ipoh Coffee', 20, 1, '16 - 500 g tins', 46, 17, 10, 25, 0); -INSERT INTO products VALUES (44, 'Gula Malacca', 20, 2, '20 - 2 kg bags', 19.4500008, 27, 0, 15, 0); -INSERT INTO products VALUES (45, 'Rogede sild', 21, 8, '1k pkg.', 9.5, 5, 70, 15, 0); -INSERT INTO products VALUES (46, 'Spegesild', 21, 8, '4 - 450 g glasses', 12, 95, 0, 0, 0); -INSERT INTO products VALUES (47, 'Zaanse koeken', 22, 3, '10 - 4 oz boxes', 9.5, 36, 0, 0, 0); -INSERT INTO products VALUES (48, 'Chocolade', 22, 3, '10 pkgs.', 12.75, 15, 70, 25, 0); -INSERT INTO products VALUES (49, 'Maxilaku', 23, 3, '24 - 50 g pkgs.', 20, 10, 60, 15, 0); -INSERT INTO products VALUES (50, 'Valkoinen suklaa', 23, 3, '12 - 100 g bars', 16.25, 65, 0, 30, 0); -INSERT INTO products VALUES (51, 'Manjimup Dried Apples', 24, 7, '50 - 300 g pkgs.', 53, 20, 0, 10, 0); -INSERT INTO products VALUES (52, 'Filo Mix', 24, 5, '16 - 2 kg boxes', 7, 38, 0, 25, 0); -INSERT INTO products VALUES (53, 'Perth Pasties', 24, 6, '48 pieces', 32.7999992, 0, 0, 0, 1); -INSERT INTO products VALUES (54, 'Tourtière', 25, 6, '16 pies', 7.44999981, 21, 0, 10, 0); -INSERT INTO products VALUES (55, 'Pâté chinois', 25, 6, '24 boxes x 2 pies', 24, 115, 0, 20, 0); -INSERT INTO products VALUES (56, 'Gnocchi di nonna Alice', 26, 5, '24 - 250 g pkgs.', 38, 21, 10, 30, 0); -INSERT INTO products VALUES (57, 'Ravioli Angelo', 26, 5, '24 - 250 g pkgs.', 19.5, 36, 0, 20, 0); -INSERT INTO products VALUES (58, 'Escargots de Bourgogne', 27, 8, '24 pieces', 13.25, 62, 0, 20, 0); -INSERT INTO products VALUES (59, 'Raclette Courdavault', 28, 4, '5 kg pkg.', 55, 79, 0, 0, 0); -INSERT INTO products VALUES (60, 'Camembert Pierrot', 28, 4, '15 - 300 g rounds', 34, 19, 0, 0, 0); -INSERT INTO products VALUES (61, 'Sirop d''érable', 29, 2, '24 - 500 ml bottles', 28.5, 113, 0, 25, 0); -INSERT INTO products VALUES (62, 'Tarte au sucre', 29, 3, '48 pies', 49.2999992, 17, 0, 0, 0); -INSERT INTO products VALUES (63, 'Vegie-spread', 7, 2, '15 - 625 g jars', 43.9000015, 24, 0, 5, 0); -INSERT INTO products VALUES (64, 'Wimmers gute Semmelknödel', 12, 5, '20 bags x 4 pieces', 33.25, 22, 80, 30, 0); -INSERT INTO products VALUES (65, 'Louisiana Fiery Hot Pepper Sauce', 2, 2, '32 - 8 oz bottles', 21.0499992, 76, 0, 0, 0); -INSERT INTO products VALUES (66, 'Louisiana Hot Spiced Okra', 2, 2, '24 - 8 oz jars', 17, 4, 100, 20, 0); -INSERT INTO products VALUES (67, 'Laughing Lumberjack Lager', 16, 1, '24 - 12 oz bottles', 14, 52, 0, 10, 0); -INSERT INTO products VALUES (68, 'Scottish Longbreads', 8, 3, '10 boxes x 8 pieces', 12.5, 6, 10, 15, 0); -INSERT INTO products VALUES (69, 'Gudbrandsdalsost', 15, 4, '10 kg pkg.', 36, 26, 0, 15, 0); -INSERT INTO products VALUES (70, 'Outback Lager', 7, 1, '24 - 355 ml bottles', 15, 15, 10, 30, 0); -INSERT INTO products VALUES (71, 'Flotemysost', 15, 4, '10 - 500 g pkgs.', 21.5, 26, 0, 0, 0); -INSERT INTO products VALUES (72, 'Mozzarella di Giovanni', 14, 4, '24 - 200 g pkgs.', 34.7999992, 14, 0, 0, 0); -INSERT INTO products VALUES (73, 'Röd Kaviar', 17, 8, '24 - 150 g jars', 15, 101, 0, 5, 0); -INSERT INTO products VALUES (74, 'Longlife Tofu', 4, 7, '5 kg pkg.', 10, 4, 20, 5, 0); -INSERT INTO products VALUES (75, 'Rhönbräu Klosterbier', 12, 1, '24 - 0.5 l bottles', 7.75, 125, 0, 25, 0); -INSERT INTO products VALUES (76, 'Lakkalikööri', 23, 1, '500 ml', 18, 57, 0, 20, 0); -INSERT INTO products VALUES (77, 'Original Frankfurter grüne Soße', 12, 2, '12 boxes', 13, 32, 0, 15, 0); - - --- --- Data for Name: region; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO region VALUES (1, 'Eastern'); -INSERT INTO region VALUES (2, 'Western'); -INSERT INTO region VALUES (3, 'Northern'); -INSERT INTO region VALUES (4, 'Southern'); - - --- --- Data for Name: shippers; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO shippers VALUES (1, 'Speedy Express', '(503) 555-9831'); -INSERT INTO shippers VALUES (2, 'United Package', '(503) 555-3199'); -INSERT INTO shippers VALUES (3, 'Federal Shipping', '(503) 555-9931'); -INSERT INTO shippers VALUES (4, 'Alliance Shippers', '1-800-222-0451'); -INSERT INTO shippers VALUES (5, 'UPS', '1-800-782-7892'); -INSERT INTO shippers VALUES (6, 'DHL', '1-800-225-5345'); - - - --- --- Data for Name: suppliers; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO suppliers VALUES (1, 'Exotic Liquids', 'Charlotte Cooper', 'Purchasing Manager', '49 Gilbert St.', 'London', NULL, 'EC1 4SD', 'UK', '(171) 555-2222', NULL, NULL); -INSERT INTO suppliers VALUES (2, 'New Orleans Cajun Delights', 'Shelley Burke', 'Order Administrator', 'P.O. Box 78934', 'New Orleans', 'LA', '70117', 'USA', '(100) 555-4822', NULL, '#CAJUN.HTM#'); -INSERT INTO suppliers VALUES (3, 'Grandma Kelly''s Homestead', 'Regina Murphy', 'Sales Representative', '707 Oxford Rd.', 'Ann Arbor', 'MI', '48104', 'USA', '(313) 555-5735', '(313) 555-3349', NULL); -INSERT INTO suppliers VALUES (4, 'Tokyo Traders', 'Yoshi Nagase', 'Marketing Manager', '9-8 Sekimai Musashino-shi', 'Tokyo', NULL, '100', 'Japan', '(03) 3555-5011', NULL, NULL); -INSERT INTO suppliers VALUES (5, 'Cooperativa de Quesos ''Las Cabras''', 'Antonio del Valle Saavedra', 'Export Administrator', 'Calle del Rosal 4', 'Oviedo', 'Asturias', '33007', 'Spain', '(98) 598 76 54', NULL, NULL); -INSERT INTO suppliers VALUES (6, 'Mayumi''s', 'Mayumi Ohno', 'Marketing Representative', '92 Setsuko Chuo-ku', 'Osaka', NULL, '545', 'Japan', '(06) 431-7877', NULL, 'Mayumi''s (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#'); -INSERT INTO suppliers VALUES (7, 'Pavlova, Ltd.', 'Ian Devling', 'Marketing Manager', '74 Rose St. Moonie Ponds', 'Melbourne', 'Victoria', '3058', 'Australia', '(03) 444-2343', '(03) 444-6588', NULL); -INSERT INTO suppliers VALUES (8, 'Specialty Biscuits, Ltd.', 'Peter Wilson', 'Sales Representative', '29 King''s Way', 'Manchester', NULL, 'M14 GSD', 'UK', '(161) 555-4448', NULL, NULL); -INSERT INTO suppliers VALUES (9, 'PB Knäckebröd AB', 'Lars Peterson', 'Sales Agent', 'Kaloadagatan 13', 'Göteborg', NULL, 'S-345 67', 'Sweden', '031-987 65 43', '031-987 65 91', NULL); -INSERT INTO suppliers VALUES (10, 'Refrescos Americanas LTDA', 'Carlos Diaz', 'Marketing Manager', 'Av. das Americanas 12.890', 'Sao Paulo', NULL, '5442', 'Brazil', '(11) 555 4640', NULL, NULL); -INSERT INTO suppliers VALUES (11, 'Heli Süßwaren GmbH & Co. KG', 'Petra Winkler', 'Sales Manager', 'Tiergartenstraße 5', 'Berlin', NULL, '10785', 'Germany', '(010) 9984510', NULL, NULL); -INSERT INTO suppliers VALUES (12, 'Plutzer Lebensmittelgroßmärkte AG', 'Martin Bein', 'International Marketing Mgr.', 'Bogenallee 51', 'Frankfurt', NULL, '60439', 'Germany', '(069) 992755', NULL, 'Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#'); -INSERT INTO suppliers VALUES (13, 'Nord-Ost-Fisch Handelsgesellschaft mbH', 'Sven Petersen', 'Coordinator Foreign Markets', 'Frahmredder 112a', 'Cuxhaven', NULL, '27478', 'Germany', '(04721) 8713', '(04721) 8714', NULL); -INSERT INTO suppliers VALUES (14, 'Formaggi Fortini s.r.l.', 'Elio Rossi', 'Sales Representative', 'Viale Dante, 75', 'Ravenna', NULL, '48100', 'Italy', '(0544) 60323', '(0544) 60603', '#FORMAGGI.HTM#'); -INSERT INTO suppliers VALUES (15, 'Norske Meierier', 'Beate Vileid', 'Marketing Manager', 'Hatlevegen 5', 'Sandvika', NULL, '1320', 'Norway', '(0)2-953010', NULL, NULL); -INSERT INTO suppliers VALUES (16, 'Bigfoot Breweries', 'Cheryl Saylor', 'Regional Account Rep.', '3400 - 8th Avenue Suite 210', 'Bend', 'OR', '97101', 'USA', '(503) 555-9931', NULL, NULL); -INSERT INTO suppliers VALUES (17, 'Svensk Sjöföda AB', 'Michael Björn', 'Sales Representative', 'Brovallavägen 231', 'Stockholm', NULL, 'S-123 45', 'Sweden', '08-123 45 67', NULL, NULL); -INSERT INTO suppliers VALUES (18, 'Aux joyeux ecclésiastiques', 'Guylène Nodier', 'Sales Manager', '203, Rue des Francs-Bourgeois', 'Paris', NULL, '75004', 'France', '(1) 03.83.00.68', '(1) 03.83.00.62', NULL); -INSERT INTO suppliers VALUES (19, 'New England Seafood Cannery', 'Robb Merchant', 'Wholesale Account Agent', 'Order Processing Dept. 2100 Paul Revere Blvd.', 'Boston', 'MA', '02134', 'USA', '(617) 555-3267', '(617) 555-3389', NULL); -INSERT INTO suppliers VALUES (20, 'Leka Trading', 'Chandra Leka', 'Owner', '471 Serangoon Loop, Suite #402', 'Singapore', NULL, '0512', 'Singapore', '555-8787', NULL, NULL); -INSERT INTO suppliers VALUES (21, 'Lyngbysild', 'Niels Petersen', 'Sales Manager', 'Lyngbysild Fiskebakken 10', 'Lyngby', NULL, '2800', 'Denmark', '43844108', '43844115', NULL); -INSERT INTO suppliers VALUES (22, 'Zaanse Snoepfabriek', 'Dirk Luchte', 'Accounting Manager', 'Verkoop Rijnweg 22', 'Zaandam', NULL, '9999 ZZ', 'Netherlands', '(12345) 1212', '(12345) 1210', NULL); -INSERT INTO suppliers VALUES (23, 'Karkki Oy', 'Anne Heikkonen', 'Product Manager', 'Valtakatu 12', 'Lappeenranta', NULL, '53120', 'Finland', '(953) 10956', NULL, NULL); -INSERT INTO suppliers VALUES (24, 'G''day, Mate', 'Wendy Mackenzie', 'Sales Representative', '170 Prince Edward Parade Hunter''s Hill', 'Sydney', 'NSW', '2042', 'Australia', '(02) 555-5914', '(02) 555-4873', 'G''day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#'); -INSERT INTO suppliers VALUES (25, 'Ma Maison', 'Jean-Guy Lauzon', 'Marketing Manager', '2960 Rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada', '(514) 555-9022', NULL, NULL); -INSERT INTO suppliers VALUES (26, 'Pasta Buttini s.r.l.', 'Giovanni Giudici', 'Order Administrator', 'Via dei Gelsomini, 153', 'Salerno', NULL, '84100', 'Italy', '(089) 6547665', '(089) 6547667', NULL); -INSERT INTO suppliers VALUES (27, 'Escargots Nouveaux', 'Marie Delamare', 'Sales Manager', '22, rue H. Voiron', 'Montceau', NULL, '71300', 'France', '85.57.00.07', NULL, NULL); -INSERT INTO suppliers VALUES (28, 'Gai pâturage', 'Eliane Noz', 'Sales Representative', 'Bat. B 3, rue des Alpes', 'Annecy', NULL, '74000', 'France', '38.76.98.06', '38.76.98.58', NULL); -INSERT INTO suppliers VALUES (29, 'Forêts d''érables', 'Chantal Goulet', 'Accounting Manager', '148 rue Chasseur', 'Ste-Hyacinthe', 'Québec', 'J2S 7S8', 'Canada', '(514) 555-2955', '(514) 555-2921', NULL); - - --- --- Data for Name: territories; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO territories VALUES ('01581', 'Westboro', 1); -INSERT INTO territories VALUES ('01730', 'Bedford', 1); -INSERT INTO territories VALUES ('01833', 'Georgetow', 1); -INSERT INTO territories VALUES ('02116', 'Boston', 1); -INSERT INTO territories VALUES ('02139', 'Cambridge', 1); -INSERT INTO territories VALUES ('02184', 'Braintree', 1); -INSERT INTO territories VALUES ('02903', 'Providence', 1); -INSERT INTO territories VALUES ('03049', 'Hollis', 3); -INSERT INTO territories VALUES ('03801', 'Portsmouth', 3); -INSERT INTO territories VALUES ('06897', 'Wilton', 1); -INSERT INTO territories VALUES ('07960', 'Morristown', 1); -INSERT INTO territories VALUES ('08837', 'Edison', 1); -INSERT INTO territories VALUES ('10019', 'New York', 1); -INSERT INTO territories VALUES ('10038', 'New York', 1); -INSERT INTO territories VALUES ('11747', 'Mellvile', 1); -INSERT INTO territories VALUES ('14450', 'Fairport', 1); -INSERT INTO territories VALUES ('19428', 'Philadelphia', 3); -INSERT INTO territories VALUES ('19713', 'Neward', 1); -INSERT INTO territories VALUES ('20852', 'Rockville', 1); -INSERT INTO territories VALUES ('27403', 'Greensboro', 1); -INSERT INTO territories VALUES ('27511', 'Cary', 1); -INSERT INTO territories VALUES ('29202', 'Columbia', 4); -INSERT INTO territories VALUES ('30346', 'Atlanta', 4); -INSERT INTO territories VALUES ('31406', 'Savannah', 4); -INSERT INTO territories VALUES ('32859', 'Orlando', 4); -INSERT INTO territories VALUES ('33607', 'Tampa', 4); -INSERT INTO territories VALUES ('40222', 'Louisville', 1); -INSERT INTO territories VALUES ('44122', 'Beachwood', 3); -INSERT INTO territories VALUES ('45839', 'Findlay', 3); -INSERT INTO territories VALUES ('48075', 'Southfield', 3); -INSERT INTO territories VALUES ('48084', 'Troy', 3); -INSERT INTO territories VALUES ('48304', 'Bloomfield Hills', 3); -INSERT INTO territories VALUES ('53404', 'Racine', 3); -INSERT INTO territories VALUES ('55113', 'Roseville', 3); -INSERT INTO territories VALUES ('55439', 'Minneapolis', 3); -INSERT INTO territories VALUES ('60179', 'Hoffman Estates', 2); -INSERT INTO territories VALUES ('60601', 'Chicago', 2); -INSERT INTO territories VALUES ('72716', 'Bentonville', 4); -INSERT INTO territories VALUES ('75234', 'Dallas', 4); -INSERT INTO territories VALUES ('78759', 'Austin', 4); -INSERT INTO territories VALUES ('80202', 'Denver', 2); -INSERT INTO territories VALUES ('80909', 'Colorado Springs', 2); -INSERT INTO territories VALUES ('85014', 'Phoenix', 2); -INSERT INTO territories VALUES ('85251', 'Scottsdale', 2); -INSERT INTO territories VALUES ('90405', 'Santa Monica', 2); -INSERT INTO territories VALUES ('94025', 'Menlo Park', 2); -INSERT INTO territories VALUES ('94105', 'San Francisco', 2); -INSERT INTO territories VALUES ('95008', 'Campbell', 2); -INSERT INTO territories VALUES ('95054', 'Santa Clara', 2); -INSERT INTO territories VALUES ('95060', 'Santa Cruz', 2); -INSERT INTO territories VALUES ('98004', 'Bellevue', 2); -INSERT INTO territories VALUES ('98052', 'Redmond', 2); -INSERT INTO territories VALUES ('98104', 'Seattle', 2); - - --- --- Data for Name: us_states; Type: TABLE DATA; Schema: public; Owner: - --- - -INSERT INTO us_states VALUES (1, 'Alabama', 'AL', 'south'); -INSERT INTO us_states VALUES (2, 'Alaska', 'AK', 'north'); -INSERT INTO us_states VALUES (3, 'Arizona', 'AZ', 'west'); -INSERT INTO us_states VALUES (4, 'Arkansas', 'AR', 'south'); -INSERT INTO us_states VALUES (5, 'California', 'CA', 'west'); -INSERT INTO us_states VALUES (6, 'Colorado', 'CO', 'west'); -INSERT INTO us_states VALUES (7, 'Connecticut', 'CT', 'east'); -INSERT INTO us_states VALUES (8, 'Delaware', 'DE', 'east'); -INSERT INTO us_states VALUES (9, 'District of Columbia', 'DC', 'east'); -INSERT INTO us_states VALUES (10, 'Florida', 'FL', 'south'); -INSERT INTO us_states VALUES (11, 'Georgia', 'GA', 'south'); -INSERT INTO us_states VALUES (12, 'Hawaii', 'HI', 'west'); -INSERT INTO us_states VALUES (13, 'Idaho', 'ID', 'midwest'); -INSERT INTO us_states VALUES (14, 'Illinois', 'IL', 'midwest'); -INSERT INTO us_states VALUES (15, 'Indiana', 'IN', 'midwest'); -INSERT INTO us_states VALUES (16, 'Iowa', 'IO', 'midwest'); -INSERT INTO us_states VALUES (17, 'Kansas', 'KS', 'midwest'); -INSERT INTO us_states VALUES (18, 'Kentucky', 'KY', 'south'); -INSERT INTO us_states VALUES (19, 'Louisiana', 'LA', 'south'); -INSERT INTO us_states VALUES (20, 'Maine', 'ME', 'north'); -INSERT INTO us_states VALUES (21, 'Maryland', 'MD', 'east'); -INSERT INTO us_states VALUES (22, 'Massachusetts', 'MA', 'north'); -INSERT INTO us_states VALUES (23, 'Michigan', 'MI', 'north'); -INSERT INTO us_states VALUES (24, 'Minnesota', 'MN', 'north'); -INSERT INTO us_states VALUES (25, 'Mississippi', 'MS', 'south'); -INSERT INTO us_states VALUES (26, 'Missouri', 'MO', 'south'); -INSERT INTO us_states VALUES (27, 'Montana', 'MT', 'west'); -INSERT INTO us_states VALUES (28, 'Nebraska', 'NE', 'midwest'); -INSERT INTO us_states VALUES (29, 'Nevada', 'NV', 'west'); -INSERT INTO us_states VALUES (30, 'New Hampshire', 'NH', 'east'); -INSERT INTO us_states VALUES (31, 'New Jersey', 'NJ', 'east'); -INSERT INTO us_states VALUES (32, 'New Mexico', 'NM', 'west'); -INSERT INTO us_states VALUES (33, 'New York', 'NY', 'east'); -INSERT INTO us_states VALUES (34, 'North Carolina', 'NC', 'east'); -INSERT INTO us_states VALUES (35, 'North Dakota', 'ND', 'midwest'); -INSERT INTO us_states VALUES (36, 'Ohio', 'OH', 'midwest'); -INSERT INTO us_states VALUES (37, 'Oklahoma', 'OK', 'midwest'); -INSERT INTO us_states VALUES (38, 'Oregon', 'OR', 'west'); -INSERT INTO us_states VALUES (39, 'Pennsylvania', 'PA', 'east'); -INSERT INTO us_states VALUES (40, 'Rhode Island', 'RI', 'east'); -INSERT INTO us_states VALUES (41, 'South Carolina', 'SC', 'east'); -INSERT INTO us_states VALUES (42, 'South Dakota', 'SD', 'midwest'); -INSERT INTO us_states VALUES (43, 'Tennessee', 'TN', 'midwest'); -INSERT INTO us_states VALUES (44, 'Texas', 'TX', 'west'); -INSERT INTO us_states VALUES (45, 'Utah', 'UT', 'west'); -INSERT INTO us_states VALUES (46, 'Vermont', 'VT', 'east'); -INSERT INTO us_states VALUES (47, 'Virginia', 'VA', 'east'); -INSERT INTO us_states VALUES (48, 'Washington', 'WA', 'west'); -INSERT INTO us_states VALUES (49, 'West Virginia', 'WV', 'south'); -INSERT INTO us_states VALUES (50, 'Wisconsin', 'WI', 'midwest'); -INSERT INTO us_states VALUES (51, 'Wyoming', 'WY', 'west'); - - --- --- Name: pk_categories; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY categories - ADD CONSTRAINT pk_categories PRIMARY KEY (category_id); - - --- --- Name: pk_customer_customer_demo; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY customer_customer_demo - ADD CONSTRAINT pk_customer_customer_demo PRIMARY KEY (customer_id, customer_type_id); - - --- --- Name: pk_customer_demographics; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY customer_demographics - ADD CONSTRAINT pk_customer_demographics PRIMARY KEY (customer_type_id); - - --- --- Name: pk_customers; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY customers - ADD CONSTRAINT pk_customers PRIMARY KEY (customer_id); - - --- --- Name: pk_employees; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY employees - ADD CONSTRAINT pk_employees PRIMARY KEY (employee_id); - - --- --- Name: pk_employee_territories; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY employee_territories - ADD CONSTRAINT pk_employee_territories PRIMARY KEY (employee_id, territory_id); - - --- --- Name: pk_order_details; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY order_details - ADD CONSTRAINT pk_order_details PRIMARY KEY (order_id, product_id); - - --- --- Name: pk_orders; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY orders - ADD CONSTRAINT pk_orders PRIMARY KEY (order_id); - - --- --- Name: pk_products; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY products - ADD CONSTRAINT pk_products PRIMARY KEY (product_id); - - --- --- Name: pk_region; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY region - ADD CONSTRAINT pk_region PRIMARY KEY (region_id); - - --- --- Name: pk_shippers; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY shippers - ADD CONSTRAINT pk_shippers PRIMARY KEY (shipper_id); - - --- --- Name: pk_suppliers; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY suppliers - ADD CONSTRAINT pk_suppliers PRIMARY KEY (supplier_id); - - --- --- Name: pk_territories; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY territories - ADD CONSTRAINT pk_territories PRIMARY KEY (territory_id); - - --- --- Name: pk_usstates; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: --- - -ALTER TABLE ONLY us_states - ADD CONSTRAINT pk_usstates PRIMARY KEY (state_id); - - --- --- Name: fk_orders_customers; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY orders - ADD CONSTRAINT fk_orders_customers FOREIGN KEY (customer_id) REFERENCES customers; - - --- --- Name: fk_orders_employees; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY orders - ADD CONSTRAINT fk_orders_employees FOREIGN KEY (employee_id) REFERENCES employees; - - --- --- Name: fk_orders_shippers; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY orders - ADD CONSTRAINT fk_orders_shippers FOREIGN KEY (ship_via) REFERENCES shippers; - - --- --- Name: fk_order_details_products; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY order_details - ADD CONSTRAINT fk_order_details_products FOREIGN KEY (product_id) REFERENCES products; - - --- --- Name: fk_order_details_orders; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY order_details - ADD CONSTRAINT fk_order_details_orders FOREIGN KEY (order_id) REFERENCES orders; - - --- --- Name: fk_products_categories; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY products - ADD CONSTRAINT fk_products_categories FOREIGN KEY (category_id) REFERENCES categories; - - --- --- Name: fk_products_suppliers; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY products - ADD CONSTRAINT fk_products_suppliers FOREIGN KEY (supplier_id) REFERENCES suppliers; - - --- --- Name: fk_territories_region; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY territories - ADD CONSTRAINT fk_territories_region FOREIGN KEY (region_id) REFERENCES region; - - --- --- Name: fk_employee_territories_territories; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY employee_territories - ADD CONSTRAINT fk_employee_territories_territories FOREIGN KEY (territory_id) REFERENCES territories; - - --- --- Name: fk_employee_territories_employees; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY employee_territories - ADD CONSTRAINT fk_employee_territories_employees FOREIGN KEY (employee_id) REFERENCES employees; - - --- --- Name: fk_customer_customer_demo_customer_demographics; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY customer_customer_demo - ADD CONSTRAINT fk_customer_customer_demo_customer_demographics FOREIGN KEY (customer_type_id) REFERENCES customer_demographics; - - --- --- Name: fk_customer_customer_demo_customers; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY customer_customer_demo - ADD CONSTRAINT fk_customer_customer_demo_customers FOREIGN KEY (customer_id) REFERENCES customers; - - --- --- Name: fk_employees_employees; Type: Constraint; Schema: -; Owner: - --- - -ALTER TABLE ONLY employees - ADD CONSTRAINT fk_employees_employees FOREIGN KEY (reports_to) REFERENCES employees; - - --- --- PostgreSQL database dump complete --- diff --git a/tests/init/data/postgres/test_sample.sql b/tests/init/data/postgres/test_sample.sql deleted file mode 100644 index cc12d72..0000000 --- a/tests/init/data/postgres/test_sample.sql +++ /dev/null @@ -1,239 +0,0 @@ - --- AllTypes table ----------------------------- - -create schema IF NOT EXISTS test_sample; - -DROP TABLE IF EXISTS test_sample.all_types; - -CREATE TABLE test_sample.ALL_TYPES -( - -- numeric - small_int_ptr smallint, - small_int smallint NOT NULL, - integer_ptr integer, - integer integer NOT NULL, - big_int_ptr bigint, - big_int bigint NOT NULL, - decimal_ptr decimal(10, 2), - decimal decimal(10, 2) NOT NULL, - numeric_ptr numeric(20, 3), - numeric numeric(20,3) NOT NULL, - real_ptr real, - real real NOT NULL, - double_precision_ptr double precision, - double_precision double precision NOT NULL, - smallserial smallserial NOT NULL, - serial serial NOT NULL, - bigserial bigserial NOT NULL, - - --monetary --- money_ptr money, --- money money NOT NULL, - - var_char_ptr character varying(100), - var_char character varying(200) NOT NULL, - char_ptr character(80), - char character(80) NOT NULL, - text_ptr text, - text text NOT NULL, - - --binary - bytea_ptr bytea, - bytea bytea NOT NULL, - - --datetime - timestampz_ptr timestamp with time zone, - timestampz timestamp with time zone NOT NULL, - timestamp_ptr timestamp without time zone, - timestamp timestamp without time zone NOT NULL, - date_ptr date, - date date NOT NULL, - timez_ptr time with time zone, - timez time with time zone NOT NULL, - time_ptr time without time zone, - time time without time zone NOT NULL, - interval_ptr interval, - interval interval NOT NULL, - - --boolean - boolean_ptr boolean, - boolean boolean NOT NULL, - - --geometry - point_ptr point, - - --bitstrings - bit_ptr bit(3), - bit bit(3) NOT NULL, - bit_varying_ptr bit varying(20), - bit_varying bit varying(40) NOT NULL, - - --textsearch - tsvector_ptr tsvector, - tsvector tsvector NOT NULL, - - --uuid - uuid_ptr uuid, - uuid uuid NOT NULL, - - --xml - xml_ptr xml, - xml xml NOT NULL, - - --json - json_ptr json, - json json NOT NULL, - jsonb_ptr jsonb, - jsonb jsonb NOT NULL, - - --array - integer_array_ptr integer[], - integer_array integer[] NOT NULL, - text_array_ptr text[], - text_array text[] NOT NULL, - jsonb_array jsonb[] NOT NULL, - text_multi_dim_array_ptr text[][], - text_multi_dim_array text[][] NOT NULL -); - -INSERT INTO test_sample.ALL_types( - small_int_ptr, "small_int", integer_ptr, "integer", big_int_ptr, "big_int", decimal_ptr, "decimal", numeric_ptr, "numeric", real_ptr, "real", double_precision_ptr, double_precision, smallserial, serial, bigserial, --- money_ptr, money, - var_char_ptr, var_char, char_ptr, char, text_ptr, text, - bytea_ptr, bytea, - timestampz_ptr, timestampz, timestamp_ptr, "timestamp", date_ptr, date, timez_ptr, timez, time_ptr, "time", interval_ptr, "interval", - boolean_ptr, "boolean", - point_ptr, - bit_ptr, "bit", bit_varying_ptr, bit_varying, - tsvector_ptr, tsvector, - uuid_ptr, uuid, - xml_ptr, xml, - json_ptr, json, jsonb_ptr, jsonb, - integer_array_ptr, integer_array, text_array_ptr, text_array, jsonb_array, text_multi_dim_array_ptr, text_multi_dim_array) -VALUES (14, 14, 300, 300, 50000, 5000, 1.11, 1.11, 2.22, 2.22, 5.55, 5.55, 11111111.22, 11111111.22, DEFAULT, DEFAULT, DEFAULT, --- 100000, 100000, - 'ABBA', 'ABBA', 'JOHN', 'JOHN', 'Some text', 'Some text', - 'bytea', 'bytea', - 'January 8 04:05:06 1999 PST', 'January 8 04:05:06 1999 PST', '1999-01-08 04:05:06', '1999-01-08 04:05:06', '1999-01-08', '1999-01-08', '04:05:06 -8:00', '04:05:06 -8:00', '04:05:06', '04:05:06', '3 4:05:06', '3 4:05:06', - TRUE, FALSE, - '(2,3)', - B'101', B'101', B'101111', B'101111', - to_tsvector('supernovae'), to_tsvector('supernovae'), - 'A0EEBC99-9C0B-4EF8-BB6D-6BB9BD380A11', 'A0EEBC99-9C0B-4EF8-BB6D-6BB9BD380A11', - 'abc', 'abc', - '{"a": 1, "b": 3}', '{"a": 1, "b": 3}', '{"a": 1, "b": 3}', '{"a": 1, "b": 3}', - '{1, 2, 3}', '{1, 2, 3}', '{"breakfast", "consulting"}', '{"breakfast", "consulting"}', ARRAY['{"a": 1, "b": 2}'::jsonb, '{"a":3, "b": 4}'::jsonb], '{{"meeting", "lunch"}, {"training", "presentation"}}', '{{"meeting", "lunch"}, {"training", "presentation"}}') - , - (NULL, 14, NULL, 300, NULL, 5000, NULL, 1.11, NULL, 2.22, NULL, 5.55, NULL, 11111111.22, DEFAULT, DEFAULT, DEFAULT, --- NULL, 100000, - NULL, 'ABBA', NULL, 'JOHN', NULL, 'Some text', - NULL, 'bytea', - NULL, 'January 8 04:05:06 1999 PST', NULL, '1999-01-08 04:05:06', NULL, '1999-01-08', NULL, '04:05:06 -8:00', NULL, '04:05:06', NULL, '3 4:05:06', - NULL, FALSE, - NULL, - NULL, B'101', NULL, B'101111', - NULL, to_tsvector('supernovae'), - NULL, 'A0EEBC99-9C0B-4EF8-BB6D-6BB9BD380A11', - NULL, 'abc', - NULL, '{"a": 1, "b": 3}', NULL, '{"a": 1, "b": 3}', - NULL, '{1, 2, 3}', NULL, '{"breakfast", "consulting"}', ARRAY['{"a": 1, "b": 2}'::jsonb, '{"a":3, "b": 4}'::jsonb], NULL, '{{"meeting", "lunch"}, {"training", "presentation"}}') - ; - --- Link table -------------------- - -DROP TABLE IF EXISTS test_sample.link; - -CREATE TABLE IF NOT EXISTS test_sample.link ( - id serial PRIMARY KEY, - url VARCHAR (255) NOT NULL, - name VARCHAR (255) NOT NULL, - description VARCHAR (255) -); - -INSERT INTO test_sample.link (ID, url, name, description) VALUES - (0, 'http://www.youtube.com', 'Youtube' , ''); - - --- Employee table --------------- - -DROP TABLE IF EXISTS test_sample.employee; - -CREATE TABLE test_sample.employee ( - employee_id INT PRIMARY KEY, - first_name VARCHAR (255) NOT NULL, - last_name VARCHAR (255) NOT NULL, - employment_date timestamp with time zone, - manager_id INT, - FOREIGN KEY (manager_id) - REFERENCES test_sample.employee (employee_id) - ON DELETE CASCADE -); -INSERT INTO test_sample.employee ( - employee_id, - first_name, - last_name, - employment_date, - manager_id -) -VALUES -(1, 'Windy', 'Hays', '1999-01-08 04:05:06.100 +1:00', NULL), -(2, 'Ava', 'Christensen', '1999-01-08 04:05:06 +1:00', 1), -(3, 'Hassan', 'Conner', '1999-01-08 04:05:06 +1:00', 1), -(4, 'Anna', 'Reeves', '1999-01-08 04:05:06 +1:00', 2), -(5, 'Sau', 'Norman', '1999-01-08 04:05:06 +1:00', 2), -(6, 'Kelsie', 'Hays', '1999-01-08 04:05:06 +1:00', 3), -(7, 'Tory', 'Goff', '1999-01-08 04:05:06 +1:00', 3), -(8, 'Salley', 'Lester', '1999-01-08 04:05:06 +1:00', 3); - - --- Person table ------------------ - -DROP TYPE IF EXISTS test_sample.MOOD CASCADE; - -CREATE TYPE test_sample.MOOD AS ENUM ('sad', 'ok', 'happy'); - -DROP TABLE IF EXISTS test_sample.person; - - -CREATE TABLE test_sample.person( - person_id uuid NOT NULL PRIMARY KEY, - first_name varchar(100), - last_name varchar(100), - "Mood" test_sample.mood -); - -INSERT INTO test_sample.person(person_id, first_name, last_name, "Mood") VALUES - ('b68dbff4-a87d-11e9-a7f2-98ded00c39c6', 'Sad', 'John', 'sad'), - ('b68dbff5-a87d-11e9-a7f2-98ded00c39c7', 'Ok', 'John', 'ok'), - ('b68dbff6-a87d-11e9-a7f2-98ded00c39c8', 'Ok', 'John', 'ok'); - - - --- WEIRD TABLE NAMES -------------- - -DROP TABLE IF EXISTS test_sample."WEIRD NAMES TABLE"; - -CREATE TABLE test_sample."WEIRD NAMES TABLE"( - "weird_column_name1" varchar(100) NOT NULL, - "Weird_Column_Name2" varchar(100) NOT NULL, - "wEiRd_cOluMn_nAmE3" varchar(100) NOT NULL, - "WeIrd_CoLuMN_Name4" varchar(100) NOT NULL, - "WEIRD_COLUMN_NAME5" varchar(100) NOT NULL, - - "WeirdColumnName6" varchar(100) NOT NULL, - "weirdColumnName7" varchar(100) NOT NULL, - "weirdcolumnname8" varchar(100), - - "weird col name9" varchar(100) NOT NULL, - "wEiRd cOlu nAmE10" varchar(100) NOT NULL, - "WEIRD COLU NAME11" varchar(100) NOT NULL, - "Weird Colu Name12" varchar(100) NOT NULL, - - "weird-col-name13" varchar(100) NOT NULL, - "wEiRd-cOlu-nAmE14" varchar(100) NOT NULL, - "WEIRD-COLU-NAME15" varchar(100) NOT NULL, - "Weird-Colu-Name16" varchar(100) NOT NULL -); - -INSERT INTO test_sample."WEIRD NAMES TABLE" -VALUES ('Doe', 'Doe', 'Doe', 'Doe','Doe', 'Doe', 'Doe', 'Doe','Doe', 'Doe', 'Doe', 'Doe','Doe', 'Doe', 'Doe', 'Doe'); \ No newline at end of file diff --git a/tests/init/init.go b/tests/init/init.go index 1a6c0c4..4bb03a1 100644 --- a/tests/init/init.go +++ b/tests/init/init.go @@ -12,6 +12,7 @@ import ( "io/ioutil" "os" "os/exec" + "strings" ) var testSuite string @@ -24,12 +25,14 @@ func init() { func main() { + testSuite = strings.ToLower(testSuite) + if testSuite == "postgres" { initPostgresDB() return } - if testSuite == "mysql" { + if testSuite == "mysql" || testSuite == "mariadb" { initMySQLDB() return } @@ -47,7 +50,7 @@ func initMySQLDB() { for _, dbName := range mySQLDBs { cmdLine := fmt.Sprintf("mysql -h 127.0.0.1 -u %s -p%s %s < %s", - dbconfig.MySQLUser, dbconfig.MySQLPassword, dbName, "./init/data/mysql/"+dbName+".sql") + dbconfig.MySQLUser, dbconfig.MySQLPassword, dbName, "./testdata/init/mysql/"+dbName+".sql") fmt.Println(cmdLine) @@ -71,7 +74,6 @@ func initMySQLDB() { panicOnError(err) } - } func initPostgresDB() { @@ -93,7 +95,7 @@ func initPostgresDB() { for _, schemaName := range schemaNames { - execFile(db, "./init/data/postgres/"+schemaName+".sql") + execFile(db, "./testdata/init/postgres/"+schemaName+".sql") err = postgres.Generate("./.gentestdata", postgres.DBConnection{ Host: dbconfig.Host, diff --git a/tests/mysql/alltypes_test.go b/tests/mysql/alltypes_test.go index 5c16465..1c93609 100644 --- a/tests/mysql/alltypes_test.go +++ b/tests/mysql/alltypes_test.go @@ -5,7 +5,7 @@ import ( "github.com/go-jet/jet/internal/testutils" "github.com/go-jet/jet/tests/.gentestdata/mysql/test_sample/model" . "github.com/go-jet/jet/tests/.gentestdata/mysql/test_sample/table" - "github.com/go-jet/jet/tests/testdata/common" + "github.com/go-jet/jet/tests/testdata/results/common" "github.com/google/uuid" "time" @@ -26,6 +26,12 @@ func TestAllTypes(t *testing.T) { assert.NilError(t, err) + assert.Equal(t, len(dest), 2) + + if sourceIsMariaDB() { // MariaDB saves current timestamp in a case of NULL value insert + return + } + //testutils.PrintJson(dest) testutils.AssertJSON(t, dest, allTypesJson) } @@ -187,7 +193,7 @@ FROM test_sample.all_types; assert.NilError(t, err) - testutils.AssertJSONFile(t, dest, "./testdata/common/bool_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/bool_operators.json") } func TestFloatOperators(t *testing.T) { @@ -284,7 +290,7 @@ LIMIT ?; assert.NilError(t, err) - testutils.AssertJSONFile(t, dest, "./testdata/common/float_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/float_operators.json") } func TestIntegerOperators(t *testing.T) { @@ -423,11 +429,12 @@ LIMIT ?; //testutils.PrintJson(dest) - testutils.AssertJSONFile(t, dest, "./testdata/common/int_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/int_operators.json") } func TestStringOperators(t *testing.T) { - query := AllTypes.SELECT( + + var projectionList = []Projection{ AllTypes.Text.EQ(AllTypes.Char), AllTypes.Text.EQ(String("Text")), AllTypes.Text.NOT_EQ(AllTypes.VarCharPtr), @@ -445,8 +452,11 @@ func TestStringOperators(t *testing.T) { AllTypes.Text.LIKE(String("abc")), AllTypes.Text.NOT_LIKE(String("_b_")), AllTypes.Text.REGEXP_LIKE(String("aba")), - AllTypes.Text.REGEXP_LIKE(String("aba"), "c"), - String("ABA").REGEXP_LIKE(String("aba"), "i"), + AllTypes.Text.REGEXP_LIKE(String("aba"), false), + String("ABA").REGEXP_LIKE(String("aba"), true), + AllTypes.Text.NOT_REGEXP_LIKE(String("aba")), + AllTypes.Text.NOT_REGEXP_LIKE(String("aba"), false), + String("ABA").NOT_REGEXP_LIKE(String("aba"), true), BIT_LENGTH(AllTypes.Text), CHAR_LENGTH(AllTypes.Char), @@ -469,17 +479,24 @@ func TestStringOperators(t *testing.T) { REVERSE(AllTypes.VarCharPtr), SUBSTR(AllTypes.CharPtr, Int(3)), SUBSTR(AllTypes.CharPtr, Int(3), Int(2)), - REGEXP_LIKE(String("ABA"), String("aba")), - REGEXP_LIKE(String("ABA"), String("aba"), "i"), - REGEXP_LIKE(AllTypes.Text, String("aba"), "i"), - ) + } + if !sourceIsMariaDB() { + projectionList = append(projectionList, []Projection{ + REGEXP_LIKE(String("ABA"), String("aba")), + REGEXP_LIKE(String("ABA"), String("aba"), "i"), + REGEXP_LIKE(AllTypes.Text, String("aba"), "i"), + }...) + } //_, args, _ := query.Sql() //fmt.Println(query.Sql()) //fmt.Println(args[15]) - // fmt.Println(query.Sql()) + query := SELECT(projectionList[0], projectionList[1:]...). + FROM(AllTypes) + + fmt.Println(query.DebugSql()) err := query.Query(db, &struct{}{}) @@ -756,7 +773,7 @@ func TestTimeLiterals(t *testing.T) { TimestampT(timeT).AS("timestampT"), ).FROM(AllTypes).LIMIT(1) - fmt.Println(query.DebugSql()) + //fmt.Println(query.DebugSql()) testutils.AssertStatementSql(t, query, ` SELECT CAST(? AS DATE) AS "date", @@ -785,7 +802,20 @@ LIMIT ?; //testutils.PrintJson(dest) - testutils.AssertJSON(t, dest, ` + if sourceIsMariaDB() { + testutils.AssertJSON(t, dest, ` +{ + "Date": "2009-11-17T00:00:00Z", + "DateT": "2009-11-17T00:00:00Z", + "Time": "0000-01-01T20:34:58Z", + "TimeT": "0000-01-01T19:34:58Z", + "DateTime": "2009-11-17T19:34:58Z", + "Timestamp": "2019-08-06T10:10:30Z", + "TimestampT": "2009-11-17T19:34:58Z" +} +`) + } else { + testutils.AssertJSON(t, dest, ` { "Date": "2009-11-17T00:00:00Z", "DateT": "2009-11-17T00:00:00Z", @@ -796,6 +826,8 @@ LIMIT ?; "TimestampT": "2009-11-17T19:34:58.351387Z" } `) + } + } var allTypesJson = ` diff --git a/tests/mysql/generator_test.go b/tests/mysql/generator_test.go index 3d8f173..a191214 100644 --- a/tests/mysql/generator_test.go +++ b/tests/mysql/generator_test.go @@ -73,7 +73,7 @@ func assertGeneratedFiles(t *testing.T) { enumFiles, err := ioutil.ReadDir(genTestDir3 + "/dvds/enum") assert.NilError(t, err) - assertFileNameEqual(t, enumFiles, "film_list_rating.go", "film_rating.go", "nicer_but_slower_film_list_rating.go") + assertFileNameEqual(t, enumFiles, "film_rating.go") assertFileContent(t, genTestDir3+"/dvds/enum/film_rating.go", "\npackage enum", mpaaRatingEnumFile) // Model files @@ -82,7 +82,7 @@ func assertGeneratedFiles(t *testing.T) { assertFileNameEqual(t, modelFiles, "actor.go", "address.go", "category.go", "city.go", "country.go", "customer.go", "film.go", "film_actor.go", "film_category.go", "inventory.go", "language.go", - "payment.go", "rental.go", "staff.go", "store.go", "film_list_rating.go", "film_rating.go", "nicer_but_slower_film_list_rating.go") + "payment.go", "rental.go", "staff.go", "store.go", "film_rating.go") assertFileContent(t, genTestDir3+"/dvds/model/actor.go", "\npackage model", actorModelFile) } diff --git a/tests/mysql/main_test.go b/tests/mysql/main_test.go index f544f18..eb19a68 100644 --- a/tests/mysql/main_test.go +++ b/tests/mysql/main_test.go @@ -2,6 +2,7 @@ package mysql import ( "database/sql" + "flag" "github.com/go-jet/jet/tests/dbconfig" _ "github.com/go-sql-driver/mysql" @@ -13,6 +14,19 @@ import ( var db *sql.DB +var source string + +const MariaDB = "MariaDB" + +func init() { + flag.StringVar(&source, "source", "", "MySQL or MariaDB") + flag.Parse() +} + +func sourceIsMariaDB() bool { + return source == MariaDB +} + func TestMain(m *testing.M) { defer profile.Start().Stop() diff --git a/tests/mysql/select_test.go b/tests/mysql/select_test.go index 637ed05..b6fb968 100644 --- a/tests/mysql/select_test.go +++ b/tests/mysql/select_test.go @@ -65,10 +65,14 @@ ORDER BY actor.actor_id; //testutils.PrintJson(dest) //testutils.SaveJsonFile(dest, "mysql/testdata/all_actors.json") - testutils.AssertJSONFile(t, dest, "mysql/testdata/all_actors.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/all_actors.json") } func TestSelectGroupByHaving(t *testing.T) { + if sourceIsMariaDB() { + return + } + expectedSQL := ` SELECT customer.customer_id AS "customer.customer_id", customer.store_id AS "customer.store_id", @@ -134,7 +138,7 @@ ORDER BY payment.customer_id, SUM(payment.amount) ASC; assert.Equal(t, len(dest), 174) //testutils.SaveJsonFile(dest, "mysql/testdata/customer_payment_sum.json") - testutils.AssertJSONFile(t, dest, "mysql/testdata/customer_payment_sum.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/customer_payment_sum.json") } func TestSubQuery(t *testing.T) { @@ -170,10 +174,14 @@ func TestSubQuery(t *testing.T) { assert.NilError(t, err) //testutils.SaveJsonFile(dest, "mysql/testdata/r_rating_films.json") - testutils.AssertJSONFile(t, dest, "mysql/testdata/r_rating_films.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/r_rating_films.json") } func TestSelectAndUnionInProjection(t *testing.T) { + if sourceIsMariaDB() { + return + } + expectedSQL := ` SELECT payment.payment_id AS "payment.payment_id", ( @@ -183,19 +191,17 @@ SELECT payment.payment_id AS "payment.payment_id", ), ( ( - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT ? - OFFSET ? - ) - UNION - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT ? - OFFSET ? - ) + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT ? + OFFSET ? + ) + UNION + ( + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT ? + OFFSET ? ) LIMIT ? ) @@ -223,19 +229,17 @@ LIMIT ?; func TestSelectUNION(t *testing.T) { expectedSQL := ` ( - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT ? - OFFSET ? - ) - UNION - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT ? - OFFSET ? - ) + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT ? + OFFSET ? +) +UNION +( + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT ? + OFFSET ? ) LIMIT ?; ` @@ -260,19 +264,17 @@ LIMIT ?; func TestSelectUNION_ALL(t *testing.T) { expectedSQL := ` ( - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT ? - OFFSET ? - ) - UNION ALL - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT ? - OFFSET ? - ) + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT ? + OFFSET ? +) +UNION ALL +( + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT ? + OFFSET ? ) ORDER BY "payment.payment_id" LIMIT ? @@ -403,11 +405,16 @@ LIMIT ?; //testutils.SaveJsonFile(dest, "./mysql/testdata/lang_film_actor_inventory_rental.json") - testutils.AssertJSONFile(t, dest, "./mysql/testdata/lang_film_actor_inventory_rental.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/lang_film_actor_inventory_rental.json") } } func getRowLockTestData() map[SelectLock]string { + if sourceIsMariaDB() { + return map[SelectLock]string{ + UPDATE(): "UPDATE", + } + } return map[SelectLock]string{ UPDATE(): "UPDATE", SHARE(): "SHARE", @@ -455,6 +462,10 @@ FOR` assert.NilError(t, err) } + if sourceIsMariaDB() { + return + } + for lockType, lockTypeStr := range getRowLockTestData() { query.FOR(lockType.SKIP_LOCKED()) @@ -496,3 +507,23 @@ SELECT true, err := query.Query(db, &struct{}{}) assert.NilError(t, err) } + +func TestLockInShareMode(t *testing.T) { + expectedSQL := ` +SELECT * +FROM dvds.address +LIMIT 3 +OFFSET 1 +LOCK IN SHARE MODE; +` + query := Address. + SELECT(STAR). + LIMIT(3). + OFFSET(1). + LOCK_IN_SHARE_MODE() + + testutils.AssertDebugStatementSql(t, query, expectedSQL) + + err := query.Query(db, &struct{}{}) + assert.NilError(t, err) +} diff --git a/tests/mysql/testdata/all_actors.json b/tests/mysql/testdata/all_actors.json deleted file mode 100644 index 55a60f8..0000000 --- a/tests/mysql/testdata/all_actors.json +++ /dev/null @@ -1,1202 +0,0 @@ -[ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 7, - "FirstName": "GRACE", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 33, - "FirstName": "MILLA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 43, - "FirstName": "KIRK", - "LastName": "JOVOVICH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 63, - "FirstName": "CAMERON", - "LastName": "WRAY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 65, - "FirstName": "ANGELA", - "LastName": "HUDSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 69, - "FirstName": "KENNETH", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 71, - "FirstName": "ADAM", - "LastName": "GRANT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 88, - "FirstName": "KENNETH", - "LastName": "PESCI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 111, - "FirstName": "CAMERON", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 121, - "FirstName": "LIZA", - "LastName": "BERGMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 131, - "FirstName": "JANE", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 134, - "FirstName": "GENE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 135, - "FirstName": "RITA", - "LastName": "REYNOLDS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 145, - "FirstName": "KIM", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 148, - "FirstName": "EMILY", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 152, - "FirstName": "BEN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 180, - "FirstName": "JEFF", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 186, - "FirstName": "JULIA", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 193, - "FirstName": "BURT", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 199, - "FirstName": "JULIA", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } -] \ No newline at end of file diff --git a/tests/mysql/testdata/customer_payment_sum.json b/tests/mysql/testdata/customer_payment_sum.json deleted file mode 100644 index fffb1ff..0000000 --- a/tests/mysql/testdata/customer_payment_sum.json +++ /dev/null @@ -1,3134 +0,0 @@ -[ - { - "CustomerID": 2, - "StoreID": 1, - "FirstName": "PATRICIA", - "LastName": "JOHNSON", - "Email": "PATRICIA.JOHNSON@dvdscustomer.org", - "AddressID": 6, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.73, - "Avg": 4.767778, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 3, - "StoreID": 1, - "FirstName": "LINDA", - "LastName": "WILLIAMS", - "Email": "LINDA.WILLIAMS@dvdscustomer.org", - "AddressID": 7, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.74, - "Avg": 5.220769, - "Max": 10.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 5, - "StoreID": 1, - "FirstName": "ELIZABETH", - "LastName": "BROWN", - "Email": "ELIZABETH.BROWN@dvdscustomer.org", - "AddressID": 9, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.62, - "Avg": 3.805789, - "Max": 9.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 7, - "StoreID": 1, - "FirstName": "MARIA", - "LastName": "MILLER", - "Email": "MARIA.MILLER@dvdscustomer.org", - "AddressID": 11, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.67, - "Avg": 4.596061, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 13, - "StoreID": 2, - "FirstName": "KAREN", - "LastName": "JACKSON", - "Email": "KAREN.JACKSON@dvdscustomer.org", - "AddressID": 17, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 131.73, - "Avg": 4.878889, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 15, - "StoreID": 1, - "FirstName": "HELEN", - "LastName": "HARRIS", - "Email": "HELEN.HARRIS@dvdscustomer.org", - "AddressID": 19, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 8.99, - "Min": 0, - "Count": 32 - } - }, - { - "CustomerID": 19, - "StoreID": 1, - "FirstName": "RUTH", - "LastName": "MARTINEZ", - "Email": "RUTH.MARTINEZ@dvdscustomer.org", - "AddressID": 23, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 125.76, - "Avg": 5.24, - "Max": 9.99, - "Min": 0.99, - "Count": 24 - } - }, - { - "CustomerID": 21, - "StoreID": 1, - "FirstName": "MICHELLE", - "LastName": "CLARK", - "Email": "MICHELLE.CLARK@dvdscustomer.org", - "AddressID": 25, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 155.65, - "Avg": 4.447143, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 26, - "StoreID": 2, - "FirstName": "JESSICA", - "LastName": "HALL", - "Email": "JESSICA.HALL@dvdscustomer.org", - "AddressID": 30, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.66, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 27, - "StoreID": 2, - "FirstName": "SHIRLEY", - "LastName": "ALLEN", - "Email": "SHIRLEY.ALLEN@dvdscustomer.org", - "AddressID": 31, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.69, - "Avg": 4.086774, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 29, - "StoreID": 2, - "FirstName": "ANGELA", - "LastName": "HERNANDEZ", - "Email": "ANGELA.HERNANDEZ@dvdscustomer.org", - "AddressID": 33, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 140.64, - "Avg": 3.906667, - "Max": 10.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 32, - "StoreID": 1, - "FirstName": "AMY", - "LastName": "LOPEZ", - "Email": "AMY.LOPEZ@dvdscustomer.org", - "AddressID": 36, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.71, - "Avg": 4.403793, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 35, - "StoreID": 2, - "FirstName": "VIRGINIA", - "LastName": "GREEN", - "Email": "VIRGINIA.GREEN@dvdscustomer.org", - "AddressID": 39, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.68, - "Avg": 4.0525, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 38, - "StoreID": 1, - "FirstName": "MARTHA", - "LastName": "GONZALEZ", - "Email": "MARTHA.GONZALEZ@dvdscustomer.org", - "AddressID": 42, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.66, - "Avg": 3.754706, - "Max": 6.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 39, - "StoreID": 1, - "FirstName": "DEBRA", - "LastName": "NELSON", - "Email": "DEBRA.NELSON@dvdscustomer.org", - "AddressID": 43, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.71, - "Avg": 4.886552, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 45, - "StoreID": 1, - "FirstName": "JANET", - "LastName": "PHILLIPS", - "Email": "JANET.PHILLIPS@dvdscustomer.org", - "AddressID": 49, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.73, - "Avg": 4.730741, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 46, - "StoreID": 2, - "FirstName": "CATHERINE", - "LastName": "CAMPBELL", - "Email": "CATHERINE.CAMPBELL@dvdscustomer.org", - "AddressID": 50, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.66, - "Avg": 4.195882, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 49, - "StoreID": 2, - "FirstName": "JOYCE", - "LastName": "EDWARDS", - "Email": "JOYCE.EDWARDS@dvdscustomer.org", - "AddressID": 53, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.72, - "Avg": 4.668571, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 50, - "StoreID": 1, - "FirstName": "DIANE", - "LastName": "COLLINS", - "Email": "DIANE.COLLINS@dvdscustomer.org", - "AddressID": 54, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 169.65, - "Avg": 4.847143, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 51, - "StoreID": 1, - "FirstName": "ALICE", - "LastName": "STEWART", - "Email": "ALICE.STEWART@dvdscustomer.org", - "AddressID": 55, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.67, - "Avg": 4.202121, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 54, - "StoreID": 1, - "FirstName": "TERESA", - "LastName": "ROGERS", - "Email": "TERESA.ROGERS@dvdscustomer.org", - "AddressID": 58, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.71, - "Avg": 4.438276, - "Max": 10.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 56, - "StoreID": 1, - "FirstName": "GLORIA", - "LastName": "COOK", - "Email": "GLORIA.COOK@dvdscustomer.org", - "AddressID": 60, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.7, - "Avg": 4.523333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 59, - "StoreID": 1, - "FirstName": "CHERYL", - "LastName": "MURPHY", - "Email": "CHERYL.MURPHY@dvdscustomer.org", - "AddressID": 63, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.73, - "Avg": 4.952963, - "Max": 8.99, - "Min": 2.99, - "Count": 27 - } - }, - { - "CustomerID": 66, - "StoreID": 2, - "FirstName": "JANICE", - "LastName": "WARD", - "Email": "JANICE.WARD@dvdscustomer.org", - "AddressID": 70, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.66, - "Avg": 4.254706, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 71, - "StoreID": 1, - "FirstName": "KATHY", - "LastName": "JAMES", - "Email": "KATHY.JAMES@dvdscustomer.org", - "AddressID": 75, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 75, - "StoreID": 2, - "FirstName": "TAMMY", - "LastName": "SANDERS", - "Email": "TAMMY.SANDERS@dvdscustomer.org", - "AddressID": 79, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 155.59, - "Avg": 3.794878, - "Max": 9.99, - "Min": 0, - "Count": 41 - } - }, - { - "CustomerID": 78, - "StoreID": 1, - "FirstName": "LORI", - "LastName": "WOOD", - "Email": "LORI.WOOD@dvdscustomer.org", - "AddressID": 82, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.69, - "Avg": 4.570645, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 80, - "StoreID": 1, - "FirstName": "MARILYN", - "LastName": "ROSS", - "Email": "MARILYN.ROSS@dvdscustomer.org", - "AddressID": 84, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.7, - "Avg": 4.59, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 82, - "StoreID": 1, - "FirstName": "KATHRYN", - "LastName": "COLEMAN", - "Email": "KATHRYN.COLEMAN@dvdscustomer.org", - "AddressID": 86, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.74, - "Avg": 5.028462, - "Max": 9.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 84, - "StoreID": 2, - "FirstName": "SARA", - "LastName": "PERRY", - "Email": "SARA.PERRY@dvdscustomer.org", - "AddressID": 88, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.67, - "Avg": 4.29303, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 86, - "StoreID": 2, - "FirstName": "JACQUELINE", - "LastName": "LONG", - "Email": "JACQUELINE.LONG@dvdscustomer.org", - "AddressID": 90, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 148.67, - "Avg": 4.505152, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 87, - "StoreID": 1, - "FirstName": "WANDA", - "LastName": "PATTERSON", - "Email": "WANDA.PATTERSON@dvdscustomer.org", - "AddressID": 91, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 145.7, - "Avg": 4.856667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 89, - "StoreID": 1, - "FirstName": "JULIA", - "LastName": "FLORES", - "Email": "JULIA.FLORES@dvdscustomer.org", - "AddressID": 93, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 92, - "StoreID": 2, - "FirstName": "TINA", - "LastName": "SIMMONS", - "Email": "TINA.SIMMONS@dvdscustomer.org", - "AddressID": 96, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.72, - "Avg": 4.775714, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 102, - "StoreID": 1, - "FirstName": "CRYSTAL", - "LastName": "FORD", - "Email": "CRYSTAL.FORD@dvdscustomer.org", - "AddressID": 106, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.67, - "Avg": 4.171818, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 103, - "StoreID": 1, - "FirstName": "GLADYS", - "LastName": "HAMILTON", - "Email": "GLADYS.HAMILTON@dvdscustomer.org", - "AddressID": 107, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 146.69, - "Avg": 4.731935, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 107, - "StoreID": 1, - "FirstName": "FLORENCE", - "LastName": "WOODS", - "Email": "FLORENCE.WOODS@dvdscustomer.org", - "AddressID": 111, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.7, - "Avg": 4.223333, - "Max": 7.99, - "Min": 0, - "Count": 30 - } - }, - { - "CustomerID": 108, - "StoreID": 1, - "FirstName": "TRACY", - "LastName": "COLE", - "Email": "TRACY.COLE@dvdscustomer.org", - "AddressID": 112, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.7, - "Avg": 4.423333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 112, - "StoreID": 2, - "FirstName": "ROSA", - "LastName": "REYNOLDS", - "Email": "ROSA.REYNOLDS@dvdscustomer.org", - "AddressID": 116, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.7, - "Avg": 4.456667, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 114, - "StoreID": 2, - "FirstName": "GRACE", - "LastName": "ELLIS", - "Email": "GRACE.ELLIS@dvdscustomer.org", - "AddressID": 118, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.67, - "Avg": 4.232424, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 119, - "StoreID": 1, - "FirstName": "SHERRY", - "LastName": "MARSHALL", - "Email": "SHERRY.MARSHALL@dvdscustomer.org", - "AddressID": 123, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 153.66, - "Avg": 4.519412, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 120, - "StoreID": 2, - "FirstName": "SYLVIA", - "LastName": "ORTIZ", - "Email": "SYLVIA.ORTIZ@dvdscustomer.org", - "AddressID": 124, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 143.68, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 122, - "StoreID": 1, - "FirstName": "THELMA", - "LastName": "MURRAY", - "Email": "THELMA.MURRAY@dvdscustomer.org", - "AddressID": 126, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.68, - "Avg": 3.95875, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 125, - "StoreID": 1, - "FirstName": "ETHEL", - "LastName": "WEBB", - "Email": "ETHEL.WEBB@dvdscustomer.org", - "AddressID": 129, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.68, - "Avg": 4.24, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 128, - "StoreID": 1, - "FirstName": "MARJORIE", - "LastName": "TUCKER", - "Email": "MARJORIE.TUCKER@dvdscustomer.org", - "AddressID": 132, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.68, - "Avg": 3.99, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 131, - "StoreID": 2, - "FirstName": "MONICA", - "LastName": "HICKS", - "Email": "MONICA.HICKS@dvdscustomer.org", - "AddressID": 135, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.7, - "Avg": 4.29, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 137, - "StoreID": 2, - "FirstName": "RHONDA", - "LastName": "KENNEDY", - "Email": "RHONDA.KENNEDY@dvdscustomer.org", - "AddressID": 141, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 194.61, - "Avg": 4.99, - "Max": 9.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 141, - "StoreID": 1, - "FirstName": "DEBBIE", - "LastName": "REYES", - "Email": "DEBBIE.REYES@dvdscustomer.org", - "AddressID": 145, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 144, - "StoreID": 1, - "FirstName": "CLARA", - "LastName": "SHAW", - "Email": "CLARA.SHAW@dvdscustomer.org", - "AddressID": 148, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 195.58, - "Avg": 4.656667, - "Max": 9.99, - "Min": 0.99, - "Count": 42 - } - }, - { - "CustomerID": 146, - "StoreID": 1, - "FirstName": "JAMIE", - "LastName": "RICE", - "Email": "JAMIE.RICE@dvdscustomer.org", - "AddressID": 150, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.71, - "Avg": 4.817586, - "Max": 7.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 147, - "StoreID": 2, - "FirstName": "JOANNE", - "LastName": "ROBERTSON", - "Email": "JOANNE.ROBERTSON@dvdscustomer.org", - "AddressID": 151, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.66, - "Avg": 3.754706, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 148, - "StoreID": 1, - "FirstName": "ELEANOR", - "LastName": "HUNT", - "Email": "ELEANOR.HUNT@dvdscustomer.org", - "AddressID": 152, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 216.54, - "Avg": 4.707391, - "Max": 10.99, - "Min": 0.99, - "Count": 46 - } - }, - { - "CustomerID": 154, - "StoreID": 2, - "FirstName": "MICHELE", - "LastName": "GRANT", - "Email": "MICHELE.GRANT@dvdscustomer.org", - "AddressID": 158, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.7, - "Avg": 4.356667, - "Max": 7.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 158, - "StoreID": 1, - "FirstName": "VERONICA", - "LastName": "STONE", - "Email": "VERONICA.STONE@dvdscustomer.org", - "AddressID": 162, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.68, - "Avg": 3.95875, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 168, - "StoreID": 1, - "FirstName": "REGINA", - "LastName": "BERRY", - "Email": "REGINA.BERRY@dvdscustomer.org", - "AddressID": 172, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.66, - "Avg": 3.99, - "Max": 10.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 172, - "StoreID": 1, - "FirstName": "BERNICE", - "LastName": "WILLIS", - "Email": "BERNICE.WILLIS@dvdscustomer.org", - "AddressID": 176, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 145.67, - "Avg": 4.414242, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 176, - "StoreID": 1, - "FirstName": "JUNE", - "LastName": "CARROLL", - "Email": "JUNE.CARROLL@dvdscustomer.org", - "AddressID": 180, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 173.63, - "Avg": 4.692703, - "Max": 8.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 178, - "StoreID": 2, - "FirstName": "MARION", - "LastName": "SNYDER", - "Email": "MARION.SNYDER@dvdscustomer.org", - "AddressID": 182, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 194.61, - "Avg": 4.99, - "Max": 10.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 179, - "StoreID": 1, - "FirstName": "DANA", - "LastName": "HART", - "Email": "DANA.HART@dvdscustomer.org", - "AddressID": 183, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.71, - "Avg": 4.61069, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 181, - "StoreID": 2, - "FirstName": "ANA", - "LastName": "BRADLEY", - "Email": "ANA.BRADLEY@dvdscustomer.org", - "AddressID": 185, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 174.66, - "Avg": 5.137059, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 187, - "StoreID": 2, - "FirstName": "BRITTANY", - "LastName": "RILEY", - "Email": "BRITTANY.RILEY@dvdscustomer.org", - "AddressID": 191, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.72, - "Avg": 5.704286, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 196, - "StoreID": 1, - "FirstName": "ALMA", - "LastName": "AUSTIN", - "Email": "ALMA.AUSTIN@dvdscustomer.org", - "AddressID": 200, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.65, - "Avg": 4.332857, - "Max": 11.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 197, - "StoreID": 2, - "FirstName": "SUE", - "LastName": "PETERS", - "Email": "SUE.PETERS@dvdscustomer.org", - "AddressID": 201, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 154.6, - "Avg": 3.865, - "Max": 9.99, - "Min": 0.99, - "Count": 40 - } - }, - { - "CustomerID": 198, - "StoreID": 2, - "FirstName": "ELSIE", - "LastName": "KELLEY", - "Email": "ELSIE.KELLEY@dvdscustomer.org", - "AddressID": 202, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.63, - "Avg": 3.827838, - "Max": 6.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 200, - "StoreID": 2, - "FirstName": "JEANNE", - "LastName": "LAWSON", - "Email": "JEANNE.LAWSON@dvdscustomer.org", - "AddressID": 204, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 136.73, - "Avg": 5.064074, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 204, - "StoreID": 1, - "FirstName": "ROSEMARY", - "LastName": "SCHMIDT", - "Email": "ROSEMARY.SCHMIDT@dvdscustomer.org", - "AddressID": 208, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 147.65, - "Avg": 4.218571, - "Max": 11.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 206, - "StoreID": 1, - "FirstName": "TERRI", - "LastName": "VASQUEZ", - "Email": "TERRI.VASQUEZ@dvdscustomer.org", - "AddressID": 210, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.73, - "Avg": 4.693704, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 207, - "StoreID": 1, - "FirstName": "GERTRUDE", - "LastName": "CASTILLO", - "Email": "GERTRUDE.CASTILLO@dvdscustomer.org", - "AddressID": 211, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.66, - "Avg": 4.048824, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 209, - "StoreID": 2, - "FirstName": "TONYA", - "LastName": "CHAPMAN", - "Email": "TONYA.CHAPMAN@dvdscustomer.org", - "AddressID": 213, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 161.68, - "Avg": 5.0525, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 210, - "StoreID": 2, - "FirstName": "ELLA", - "LastName": "OLIVER", - "Email": "ELLA.OLIVER@dvdscustomer.org", - "AddressID": 214, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.69, - "Avg": 4.441613, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 211, - "StoreID": 1, - "FirstName": "STACEY", - "LastName": "MONTGOMERY", - "Email": "STACEY.MONTGOMERY@dvdscustomer.org", - "AddressID": 215, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.66, - "Avg": 4.460588, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 221, - "StoreID": 1, - "FirstName": "BESSIE", - "LastName": "MORRISON", - "Email": "BESSIE.MORRISON@dvdscustomer.org", - "AddressID": 225, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.72, - "Avg": 4.74, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 236, - "StoreID": 1, - "FirstName": "MARCIA", - "LastName": "DEAN", - "Email": "MARCIA.DEAN@dvdscustomer.org", - "AddressID": 240, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 175.58, - "Avg": 4.180476, - "Max": 8.99, - "Min": 0.99, - "Count": 42 - } - }, - { - "CustomerID": 237, - "StoreID": 1, - "FirstName": "TANYA", - "LastName": "GILBERT", - "Email": "TANYA.GILBERT@dvdscustomer.org", - "AddressID": 241, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.67, - "Avg": 4.383939, - "Max": 11.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 239, - "StoreID": 2, - "FirstName": "MINNIE", - "LastName": "ROMERO", - "Email": "MINNIE.ROMERO@dvdscustomer.org", - "AddressID": 243, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.66, - "Avg": 4.195882, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 242, - "StoreID": 1, - "FirstName": "GLENDA", - "LastName": "FRAZIER", - "Email": "GLENDA.FRAZIER@dvdscustomer.org", - "AddressID": 246, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 140.68, - "Avg": 4.39625, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 244, - "StoreID": 2, - "FirstName": "VIOLA", - "LastName": "HANSON", - "Email": "VIOLA.HANSON@dvdscustomer.org", - "AddressID": 248, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.68, - "Avg": 4.0525, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 245, - "StoreID": 1, - "FirstName": "COURTNEY", - "LastName": "DAY", - "Email": "COURTNEY.DAY@dvdscustomer.org", - "AddressID": 249, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.68, - "Avg": 4.14625, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 253, - "StoreID": 1, - "FirstName": "TERRY", - "LastName": "CARLSON", - "Email": "TERRY.CARLSON@dvdscustomer.org", - "AddressID": 258, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.71, - "Avg": 4.403793, - "Max": 7.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 257, - "StoreID": 2, - "FirstName": "MARSHA", - "LastName": "DOUGLAS", - "Email": "MARSHA.DOUGLAS@dvdscustomer.org", - "AddressID": 262, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.63, - "Avg": 4.098108, - "Max": 7.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 259, - "StoreID": 2, - "FirstName": "LENA", - "LastName": "JENSEN", - "Email": "LENA.JENSEN@dvdscustomer.org", - "AddressID": 264, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 170.67, - "Avg": 5.171818, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 265, - "StoreID": 2, - "FirstName": "JENNIE", - "LastName": "TERRY", - "Email": "JENNIE.TERRY@dvdscustomer.org", - "AddressID": 270, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.71, - "Avg": 4.61069, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 267, - "StoreID": 1, - "FirstName": "MARGIE", - "LastName": "WADE", - "Email": "MARGIE.WADE@dvdscustomer.org", - "AddressID": 272, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.64, - "Avg": 4.434444, - "Max": 9.99, - "Min": 0, - "Count": 36 - } - }, - { - "CustomerID": 269, - "StoreID": 1, - "FirstName": "CASSANDRA", - "LastName": "WALTERS", - "Email": "CASSANDRA.WALTERS@dvdscustomer.org", - "AddressID": 274, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 9.99, - "Min": 0, - "Count": 30 - } - }, - { - "CustomerID": 273, - "StoreID": 2, - "FirstName": "PRISCILLA", - "LastName": "LOWE", - "Email": "PRISCILLA.LOWE@dvdscustomer.org", - "AddressID": 278, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 157.65, - "Avg": 4.504286, - "Max": 8.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 274, - "StoreID": 1, - "FirstName": "NAOMI", - "LastName": "JENNINGS", - "Email": "NAOMI.JENNINGS@dvdscustomer.org", - "AddressID": 279, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.65, - "Avg": 4.361429, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 277, - "StoreID": 2, - "FirstName": "OLGA", - "LastName": "JIMENEZ", - "Email": "OLGA.JIMENEZ@dvdscustomer.org", - "AddressID": 282, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.68, - "Avg": 4.52125, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 279, - "StoreID": 2, - "FirstName": "DIANNE", - "LastName": "SHELTON", - "Email": "DIANNE.SHELTON@dvdscustomer.org", - "AddressID": 284, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.69, - "Avg": 4.377097, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 284, - "StoreID": 1, - "FirstName": "SONIA", - "LastName": "GREGORY", - "Email": "SONIA.GREGORY@dvdscustomer.org", - "AddressID": 289, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.72, - "Avg": 4.525714, - "Max": 8.99, - "Min": 0, - "Count": 28 - } - }, - { - "CustomerID": 285, - "StoreID": 1, - "FirstName": "MIRIAM", - "LastName": "MCKINNEY", - "Email": "MIRIAM.MCKINNEY@dvdscustomer.org", - "AddressID": 290, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.74, - "Avg": 5.220769, - "Max": 9.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 289, - "StoreID": 1, - "FirstName": "VIOLET", - "LastName": "RODRIQUEZ", - "Email": "VIOLET.RODRIQUEZ@dvdscustomer.org", - "AddressID": 294, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.7, - "Avg": 4.756667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 293, - "StoreID": 2, - "FirstName": "MAE", - "LastName": "FLETCHER", - "Email": "MAE.FLETCHER@dvdscustomer.org", - "AddressID": 298, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 158.69, - "Avg": 5.119032, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 295, - "StoreID": 1, - "FirstName": "DAISY", - "LastName": "BATES", - "Email": "DAISY.BATES@dvdscustomer.org", - "AddressID": 300, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 162.62, - "Avg": 4.279474, - "Max": 9.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 296, - "StoreID": 2, - "FirstName": "RAMONA", - "LastName": "HALE", - "Email": "RAMONA.HALE@dvdscustomer.org", - "AddressID": 301, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 7.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 297, - "StoreID": 1, - "FirstName": "SHERRI", - "LastName": "RHODES", - "Email": "SHERRI.RHODES@dvdscustomer.org", - "AddressID": 302, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.67, - "Avg": 3.899091, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 299, - "StoreID": 2, - "FirstName": "JAMES", - "LastName": "GANNON", - "Email": "JAMES.GANNON@dvdscustomer.org", - "AddressID": 304, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 131.7, - "Avg": 4.39, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 300, - "StoreID": 1, - "FirstName": "JOHN", - "LastName": "FARNSWORTH", - "Email": "JOHN.FARNSWORTH@dvdscustomer.org", - "AddressID": 305, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.69, - "Avg": 4.441613, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 302, - "StoreID": 1, - "FirstName": "MICHAEL", - "LastName": "SILVERMAN", - "Email": "MICHAEL.SILVERMAN@dvdscustomer.org", - "AddressID": 307, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.71, - "Avg": 4.403793, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 306, - "StoreID": 1, - "FirstName": "CHARLES", - "LastName": "KOWALSKI", - "Email": "CHARLES.KOWALSKI@dvdscustomer.org", - "AddressID": 311, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.68, - "Avg": 4.33375, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 307, - "StoreID": 2, - "FirstName": "JOSEPH", - "LastName": "JOY", - "Email": "JOSEPH.JOY@dvdscustomer.org", - "AddressID": 312, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.7, - "Avg": 4.49, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 309, - "StoreID": 1, - "FirstName": "CHRISTOPHER", - "LastName": "GRECO", - "Email": "CHRISTOPHER.GRECO@dvdscustomer.org", - "AddressID": 314, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 147.69, - "Avg": 4.764194, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 314, - "StoreID": 1, - "FirstName": "GEORGE", - "LastName": "LINTON", - "Email": "GEORGE.LINTON@dvdscustomer.org", - "AddressID": 319, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 131.67, - "Avg": 3.99, - "Max": 6.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 316, - "StoreID": 1, - "FirstName": "STEVEN", - "LastName": "CURLEY", - "Email": "STEVEN.CURLEY@dvdscustomer.org", - "AddressID": 321, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.71, - "Avg": 4.576207, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 319, - "StoreID": 2, - "FirstName": "RONALD", - "LastName": "WEINER", - "Email": "RONALD.WEINER@dvdscustomer.org", - "AddressID": 324, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.7, - "Avg": 4.423333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 322, - "StoreID": 1, - "FirstName": "JASON", - "LastName": "MORRISSEY", - "Email": "JASON.MORRISSEY@dvdscustomer.org", - "AddressID": 327, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.72, - "Avg": 4.597143, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 329, - "StoreID": 2, - "FirstName": "FRANK", - "LastName": "WAGGONER", - "Email": "FRANK.WAGGONER@dvdscustomer.org", - "AddressID": 334, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.68, - "Avg": 3.99, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 334, - "StoreID": 2, - "FirstName": "RAYMOND", - "LastName": "MCWHORTER", - "Email": "RAYMOND.MCWHORTER@dvdscustomer.org", - "AddressID": 339, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.7, - "Avg": 4.523333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 337, - "StoreID": 1, - "FirstName": "JERRY", - "LastName": "JORDON", - "Email": "JERRY.JORDON@dvdscustomer.org", - "AddressID": 342, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 143.71, - "Avg": 4.955517, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 339, - "StoreID": 2, - "FirstName": "WALTER", - "LastName": "PERRYMAN", - "Email": "WALTER.PERRYMAN@dvdscustomer.org", - "AddressID": 344, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.7, - "Avg": 4.256667, - "Max": 7.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 342, - "StoreID": 1, - "FirstName": "HAROLD", - "LastName": "MARTINO", - "Email": "HAROLD.MARTINO@dvdscustomer.org", - "AddressID": 347, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 346, - "StoreID": 1, - "FirstName": "ARTHUR", - "LastName": "SIMPKINS", - "Email": "ARTHUR.SIMPKINS@dvdscustomer.org", - "AddressID": 351, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 155.68, - "Avg": 4.865, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 347, - "StoreID": 2, - "FirstName": "RYAN", - "LastName": "SALISBURY", - "Email": "RYAN.SALISBURY@dvdscustomer.org", - "AddressID": 352, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.7, - "Avg": 4.756667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 348, - "StoreID": 2, - "FirstName": "ROGER", - "LastName": "QUINTANILLA", - "Email": "ROGER.QUINTANILLA@dvdscustomer.org", - "AddressID": 353, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 146.64, - "Avg": 4.073333, - "Max": 9.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 349, - "StoreID": 2, - "FirstName": "JOE", - "LastName": "GILLILAND", - "Email": "JOE.GILLILAND@dvdscustomer.org", - "AddressID": 354, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.71, - "Avg": 4.783103, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 354, - "StoreID": 2, - "FirstName": "JUSTIN", - "LastName": "NGO", - "Email": "JUSTIN.NGO@dvdscustomer.org", - "AddressID": 359, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.64, - "Avg": 3.601111, - "Max": 8.99, - "Min": 0, - "Count": 36 - } - }, - { - "CustomerID": 360, - "StoreID": 2, - "FirstName": "RALPH", - "LastName": "MADRIGAL", - "Email": "RALPH.MADRIGAL@dvdscustomer.org", - "AddressID": 365, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 150.66, - "Avg": 4.431176, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 362, - "StoreID": 1, - "FirstName": "NICHOLAS", - "LastName": "BARFIELD", - "Email": "NICHOLAS.BARFIELD@dvdscustomer.org", - "AddressID": 367, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 145.68, - "Avg": 4.5525, - "Max": 11.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 363, - "StoreID": 2, - "FirstName": "ROY", - "LastName": "WHITING", - "Email": "ROY.WHITING@dvdscustomer.org", - "AddressID": 368, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 143.71, - "Avg": 4.955517, - "Max": 9.99, - "Min": 2.99, - "Count": 29 - } - }, - { - "CustomerID": 366, - "StoreID": 1, - "FirstName": "BRANDON", - "LastName": "HUEY", - "Email": "BRANDON.HUEY@dvdscustomer.org", - "AddressID": 371, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.63, - "Avg": 4.125135, - "Max": 6.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 368, - "StoreID": 1, - "FirstName": "HARRY", - "LastName": "ARCE", - "Email": "HARRY.ARCE@dvdscustomer.org", - "AddressID": 373, - "Active": false, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 157.65, - "Avg": 4.504286, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 371, - "StoreID": 1, - "FirstName": "BILLY", - "LastName": "POULIN", - "Email": "BILLY.POULIN@dvdscustomer.org", - "AddressID": 376, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 149.65, - "Avg": 4.275714, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 372, - "StoreID": 2, - "FirstName": "STEVE", - "LastName": "MACKENZIE", - "Email": "STEVE.MACKENZIE@dvdscustomer.org", - "AddressID": 377, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 158.66, - "Avg": 4.666471, - "Max": 10.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 373, - "StoreID": 1, - "FirstName": "LOUIS", - "LastName": "LEONE", - "Email": "LOUIS.LEONE@dvdscustomer.org", - "AddressID": 378, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 161.65, - "Avg": 4.618571, - "Max": 8.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 380, - "StoreID": 1, - "FirstName": "RUSSELL", - "LastName": "BRINSON", - "Email": "RUSSELL.BRINSON@dvdscustomer.org", - "AddressID": 385, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 136.64, - "Avg": 3.795556, - "Max": 10.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 390, - "StoreID": 1, - "FirstName": "SHAWN", - "LastName": "HEATON", - "Email": "SHAWN.HEATON@dvdscustomer.org", - "AddressID": 395, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.67, - "Avg": 4.626364, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 403, - "StoreID": 1, - "FirstName": "MIKE", - "LastName": "WAY", - "Email": "MIKE.WAY@dvdscustomer.org", - "AddressID": 408, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 166.65, - "Avg": 4.761429, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 404, - "StoreID": 2, - "FirstName": "STANLEY", - "LastName": "SCROGGINS", - "Email": "STANLEY.SCROGGINS@dvdscustomer.org", - "AddressID": 409, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.7, - "Avg": 4.656667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 410, - "StoreID": 2, - "FirstName": "CURTIS", - "LastName": "IRBY", - "Email": "CURTIS.IRBY@dvdscustomer.org", - "AddressID": 415, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 167.62, - "Avg": 4.411053, - "Max": 10.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 426, - "StoreID": 1, - "FirstName": "BRADLEY", - "LastName": "MOTLEY", - "Email": "BRADLEY.MOTLEY@dvdscustomer.org", - "AddressID": 431, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.73, - "Avg": 4.693704, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 433, - "StoreID": 1, - "FirstName": "DON", - "LastName": "BONE", - "Email": "DON.BONE@dvdscustomer.org", - "AddressID": 438, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.75, - "Avg": 5.35, - "Max": 10.99, - "Min": 0.99, - "Count": 25 - } - }, - { - "CustomerID": 434, - "StoreID": 1, - "FirstName": "EDDIE", - "LastName": "TOMLIN", - "Email": "EDDIE.TOMLIN@dvdscustomer.org", - "AddressID": 439, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.73, - "Avg": 4.767778, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 436, - "StoreID": 1, - "FirstName": "TROY", - "LastName": "QUIGLEY", - "Email": "TROY.QUIGLEY@dvdscustomer.org", - "AddressID": 441, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.7, - "Avg": 4.823333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 438, - "StoreID": 1, - "FirstName": "BARRY", - "LastName": "LOVELACE", - "Email": "BARRY.LOVELACE@dvdscustomer.org", - "AddressID": 443, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.67, - "Avg": 4.080909, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 439, - "StoreID": 2, - "FirstName": "ALEXANDER", - "LastName": "FENNELL", - "Email": "ALEXANDER.FENNELL@dvdscustomer.org", - "AddressID": 444, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.64, - "Avg": 4.212222, - "Max": 9.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 448, - "StoreID": 1, - "FirstName": "MIGUEL", - "LastName": "BETANCOURT", - "Email": "MIGUEL.BETANCOURT@dvdscustomer.org", - "AddressID": 453, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.71, - "Avg": 4.679655, - "Max": 10.99, - "Min": 0, - "Count": 29 - } - }, - { - "CustomerID": 451, - "StoreID": 1, - "FirstName": "JIM", - "LastName": "REA", - "Email": "JIM.REA@dvdscustomer.org", - "AddressID": 456, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.67, - "Avg": 3.899091, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 454, - "StoreID": 2, - "FirstName": "ALEX", - "LastName": "GRESHAM", - "Email": "ALEX.GRESHAM@dvdscustomer.org", - "AddressID": 459, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.67, - "Avg": 4.596061, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 459, - "StoreID": 1, - "FirstName": "TOMMY", - "LastName": "COLLAZO", - "Email": "TOMMY.COLLAZO@dvdscustomer.org", - "AddressID": 464, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 186.62, - "Avg": 4.911053, - "Max": 10.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 462, - "StoreID": 2, - "FirstName": "WARREN", - "LastName": "SHERROD", - "Email": "WARREN.SHERROD@dvdscustomer.org", - "AddressID": 467, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.67, - "Avg": 4.838485, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 467, - "StoreID": 2, - "FirstName": "ALVIN", - "LastName": "DELOACH", - "Email": "ALVIN.DELOACH@dvdscustomer.org", - "AddressID": 472, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.71, - "Avg": 4.817586, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 468, - "StoreID": 1, - "FirstName": "TIM", - "LastName": "CARY", - "Email": "TIM.CARY@dvdscustomer.org", - "AddressID": 473, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 175.61, - "Avg": 4.502821, - "Max": 10.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 469, - "StoreID": 2, - "FirstName": "WESLEY", - "LastName": "BULL", - "Email": "WESLEY.BULL@dvdscustomer.org", - "AddressID": 474, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 177.6, - "Avg": 4.44, - "Max": 10.99, - "Min": 0.99, - "Count": 40 - } - }, - { - "CustomerID": 470, - "StoreID": 1, - "FirstName": "GORDON", - "LastName": "ALLARD", - "Email": "GORDON.ALLARD@dvdscustomer.org", - "AddressID": 475, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 160.68, - "Avg": 5.02125, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 472, - "StoreID": 1, - "FirstName": "GREG", - "LastName": "ROBINS", - "Email": "GREG.ROBINS@dvdscustomer.org", - "AddressID": 477, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.7, - "Avg": 4.723333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 473, - "StoreID": 2, - "FirstName": "JORGE", - "LastName": "OLIVARES", - "Email": "JORGE.OLIVARES@dvdscustomer.org", - "AddressID": 478, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.66, - "Avg": 3.960588, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 479, - "StoreID": 1, - "FirstName": "ZACHARY", - "LastName": "HITE", - "Email": "ZACHARY.HITE@dvdscustomer.org", - "AddressID": 484, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 146.69, - "Avg": 4.731935, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 482, - "StoreID": 1, - "FirstName": "MAURICE", - "LastName": "CRAWLEY", - "Email": "MAURICE.CRAWLEY@dvdscustomer.org", - "AddressID": 487, - "Active": false, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.71, - "Avg": 4.783103, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 484, - "StoreID": 1, - "FirstName": "ROBERTO", - "LastName": "VU", - "Email": "ROBERTO.VU@dvdscustomer.org", - "AddressID": 489, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.7, - "Avg": 4.656667, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 494, - "StoreID": 2, - "FirstName": "RAMON", - "LastName": "CHOATE", - "Email": "RAMON.CHOATE@dvdscustomer.org", - "AddressID": 499, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 140.69, - "Avg": 4.538387, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 497, - "StoreID": 2, - "FirstName": "GILBERT", - "LastName": "SLEDGE", - "Email": "GILBERT.SLEDGE@dvdscustomer.org", - "AddressID": 502, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.72, - "Avg": 4.632857, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 502, - "StoreID": 1, - "FirstName": "BRETT", - "LastName": "CORNWELL", - "Email": "BRETT.CORNWELL@dvdscustomer.org", - "AddressID": 507, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.66, - "Avg": 4.078235, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 504, - "StoreID": 1, - "FirstName": "NATHANIEL", - "LastName": "ADAM", - "Email": "NATHANIEL.ADAM@dvdscustomer.org", - "AddressID": 509, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.72, - "Avg": 4.775714, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 506, - "StoreID": 2, - "FirstName": "LESLIE", - "LastName": "SEWARD", - "Email": "LESLIE.SEWARD@dvdscustomer.org", - "AddressID": 511, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.65, - "Avg": 4.361429, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 508, - "StoreID": 2, - "FirstName": "MILTON", - "LastName": "HOWLAND", - "Email": "MILTON.HOWLAND@dvdscustomer.org", - "AddressID": 513, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.75, - "Avg": 5.11, - "Max": 9.99, - "Min": 0.99, - "Count": 25 - } - }, - { - "CustomerID": 513, - "StoreID": 2, - "FirstName": "DUANE", - "LastName": "TUBBS", - "Email": "DUANE.TUBBS@dvdscustomer.org", - "AddressID": 519, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 148.69, - "Avg": 4.796452, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 515, - "StoreID": 1, - "FirstName": "ANDRE", - "LastName": "RAPP", - "Email": "ANDRE.RAPP@dvdscustomer.org", - "AddressID": 521, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.72, - "Avg": 4.525714, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 520, - "StoreID": 2, - "FirstName": "MITCHELL", - "LastName": "WESTMORELAND", - "Email": "MITCHELL.WESTMORELAND@dvdscustomer.org", - "AddressID": 526, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 522, - "StoreID": 2, - "FirstName": "ARNOLD", - "LastName": "HAVENS", - "Email": "ARNOLD.HAVENS@dvdscustomer.org", - "AddressID": 528, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 167.67, - "Avg": 5.080909, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 526, - "StoreID": 2, - "FirstName": "KARL", - "LastName": "SEAL", - "Email": "KARL.SEAL@dvdscustomer.org", - "AddressID": 532, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 221.55, - "Avg": 4.923333, - "Max": 10.99, - "Min": 0.99, - "Count": 45 - } - }, - { - "CustomerID": 532, - "StoreID": 2, - "FirstName": "NEIL", - "LastName": "RENNER", - "Email": "NEIL.RENNER@dvdscustomer.org", - "AddressID": 538, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.68, - "Avg": 4.77125, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 533, - "StoreID": 1, - "FirstName": "JESSIE", - "LastName": "MILAM", - "Email": "JESSIE.MILAM@dvdscustomer.org", - "AddressID": 539, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.67, - "Avg": 4.29303, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 535, - "StoreID": 1, - "FirstName": "JAVIER", - "LastName": "ELROD", - "Email": "JAVIER.ELROD@dvdscustomer.org", - "AddressID": 541, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.68, - "Avg": 4.24, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 550, - "StoreID": 2, - "FirstName": "GUY", - "LastName": "BROWNLEE", - "Email": "GUY.BROWNLEE@dvdscustomer.org", - "AddressID": 556, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.68, - "Avg": 4.99, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 558, - "StoreID": 1, - "FirstName": "JIMMIE", - "LastName": "EGGLESTON", - "Email": "JIMMIE.EGGLESTON@dvdscustomer.org", - "AddressID": 564, - "Active": false, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.72, - "Avg": 4.847143, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 560, - "StoreID": 1, - "FirstName": "JORDAN", - "LastName": "ARCHULETA", - "Email": "JORDAN.ARCHULETA@dvdscustomer.org", - "AddressID": 566, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.7, - "Avg": 4.423333, - "Max": 9.99, - "Min": 0, - "Count": 30 - } - }, - { - "CustomerID": 565, - "StoreID": 2, - "FirstName": "JAIME", - "LastName": "NETTLES", - "Email": "JAIME.NETTLES@dvdscustomer.org", - "AddressID": 571, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.71, - "Avg": 4.36931, - "Max": 10.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 566, - "StoreID": 1, - "FirstName": "CASEY", - "LastName": "MENA", - "Email": "CASEY.MENA@dvdscustomer.org", - "AddressID": 572, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.66, - "Avg": 4.166471, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 569, - "StoreID": 2, - "FirstName": "DAVE", - "LastName": "GARDINER", - "Email": "DAVE.GARDINER@dvdscustomer.org", - "AddressID": 575, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 575, - "StoreID": 2, - "FirstName": "ISAAC", - "LastName": "OGLESBY", - "Email": "ISAAC.OGLESBY@dvdscustomer.org", - "AddressID": 581, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.71, - "Avg": 4.36931, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 576, - "StoreID": 2, - "FirstName": "MORRIS", - "LastName": "MCCARTER", - "Email": "MORRIS.MCCARTER@dvdscustomer.org", - "AddressID": 582, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.66, - "Avg": 4.107647, - "Max": 8.99, - "Min": 0, - "Count": 34 - } - }, - { - "CustomerID": 584, - "StoreID": 2, - "FirstName": "SALVADOR", - "LastName": "TEEL", - "Email": "SALVADOR.TEEL@dvdscustomer.org", - "AddressID": 590, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 589, - "StoreID": 1, - "FirstName": "TRACY", - "LastName": "HERRMANN", - "Email": "TRACY.HERRMANN@dvdscustomer.org", - "AddressID": 595, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.72, - "Avg": 4.632857, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 591, - "StoreID": 1, - "FirstName": "KENT", - "LastName": "ARSENAULT", - "Email": "KENT.ARSENAULT@dvdscustomer.org", - "AddressID": 597, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.73, - "Avg": 4.99, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 594, - "StoreID": 1, - "FirstName": "EDUARDO", - "LastName": "HIATT", - "Email": "EDUARDO.HIATT@dvdscustomer.org", - "AddressID": 600, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.73, - "Avg": 4.841852, - "Max": 8.99, - "Min": 0.99, - "Count": 27 - } - } -] \ No newline at end of file diff --git a/tests/mysql/testdata/lang_film_actor_inventory_rental.json b/tests/mysql/testdata/lang_film_actor_inventory_rental.json deleted file mode 100644 index 92ee5a5..0000000 --- a/tests/mysql/testdata/lang_film_actor_inventory_rental.json +++ /dev/null @@ -1,2462 +0,0 @@ -[ - { - "LanguageID": 1, - "Name": "English", - "LastUpdate": "2006-02-15T05:02:19Z", - "Films": [ - { - "FilmID": 1, - "Title": "ACADEMY DINOSAUR", - "Description": "A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 86, - "ReplacementCost": 20.99, - "Rating": "PG", - "SpecialFeatures": "Deleted Scenes,Behind the Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 1, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4863, - "RentalDate": "2005-07-08T19:03:15Z", - "InventoryID": 1, - "CustomerID": 431, - "ReturnDate": "2005-07-11T21:29:15Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11433, - "RentalDate": "2005-08-02T20:13:10Z", - "InventoryID": 1, - "CustomerID": 518, - "ReturnDate": "2005-08-11T21:35:10Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14714, - "RentalDate": "2005-08-21T21:27:43Z", - "InventoryID": 1, - "CustomerID": 279, - "ReturnDate": "2005-08-30T22:26:43Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 2, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 972, - "RentalDate": "2005-05-30T20:21:07Z", - "InventoryID": 2, - "CustomerID": 411, - "ReturnDate": "2005-06-06T00:36:07Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2117, - "RentalDate": "2005-06-17T20:24:00Z", - "InventoryID": 2, - "CustomerID": 170, - "ReturnDate": "2005-06-23T17:45:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4187, - "RentalDate": "2005-07-07T10:41:31Z", - "InventoryID": 2, - "CustomerID": 161, - "ReturnDate": "2005-07-11T06:25:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9449, - "RentalDate": "2005-07-30T22:02:34Z", - "InventoryID": 2, - "CustomerID": 581, - "ReturnDate": "2005-08-06T02:09:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15453, - "RentalDate": "2005-08-23T01:01:01Z", - "InventoryID": 2, - "CustomerID": 359, - "ReturnDate": "2005-08-30T20:08:01Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 3, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10126, - "RentalDate": "2005-07-31T21:36:07Z", - "InventoryID": 3, - "CustomerID": 39, - "ReturnDate": "2005-08-03T23:59:07Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15421, - "RentalDate": "2005-08-22T23:56:37Z", - "InventoryID": 3, - "CustomerID": 541, - "ReturnDate": "2005-08-25T18:58:37Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 4, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10883, - "RentalDate": "2005-08-02T00:47:19Z", - "InventoryID": 4, - "CustomerID": 301, - "ReturnDate": "2005-08-03T00:02:19Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14624, - "RentalDate": "2005-08-21T18:32:42Z", - "InventoryID": 4, - "CustomerID": 344, - "ReturnDate": "2005-08-23T21:09:42Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 5, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": null - }, - { - "InventoryID": 6, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 361, - "RentalDate": "2005-05-27T07:03:28Z", - "InventoryID": 6, - "CustomerID": 587, - "ReturnDate": "2005-05-31T08:01:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3201, - "RentalDate": "2005-06-21T00:30:26Z", - "InventoryID": 6, - "CustomerID": 597, - "ReturnDate": "2005-06-28T03:42:26Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4390, - "RentalDate": "2005-07-07T20:59:06Z", - "InventoryID": 6, - "CustomerID": 44, - "ReturnDate": "2005-07-09T00:04:06Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7168, - "RentalDate": "2005-07-27T07:51:11Z", - "InventoryID": 6, - "CustomerID": 252, - "ReturnDate": "2005-08-01T04:08:11Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14098, - "RentalDate": "2005-08-21T00:30:32Z", - "InventoryID": 6, - "CustomerID": 554, - "ReturnDate": null, - "StaffID": 2, - "LastUpdate": "2006-02-23T04:12:08Z" - } - ] - }, - { - "InventoryID": 7, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1210, - "RentalDate": "2005-06-15T02:57:51Z", - "InventoryID": 7, - "CustomerID": 345, - "ReturnDate": "2005-06-20T01:41:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5766, - "RentalDate": "2005-07-10T13:07:31Z", - "InventoryID": 7, - "CustomerID": 406, - "ReturnDate": "2005-07-16T13:03:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8510, - "RentalDate": "2005-07-29T09:41:38Z", - "InventoryID": 7, - "CustomerID": 487, - "ReturnDate": "2005-08-05T05:30:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14798, - "RentalDate": "2005-08-22T00:44:08Z", - "InventoryID": 7, - "CustomerID": 92, - "ReturnDate": "2005-08-27T02:18:08Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 8, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10141, - "RentalDate": "2005-07-31T22:08:29Z", - "InventoryID": 8, - "CustomerID": 8, - "ReturnDate": "2005-08-06T16:59:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12651, - "RentalDate": "2005-08-18T18:36:16Z", - "InventoryID": 8, - "CustomerID": 34, - "ReturnDate": "2005-08-22T22:01:16Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 2, - "Title": "ACE GOLDFINGER", - "Description": "A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 48, - "ReplacementCost": 12.99, - "Rating": "G", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 9, - "FilmID": 2, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10310, - "RentalDate": "2005-08-01T04:24:47Z", - "InventoryID": 9, - "CustomerID": 271, - "ReturnDate": "2005-08-04T05:36:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13421, - "RentalDate": "2006-02-14T15:16:03Z", - "InventoryID": 9, - "CustomerID": 366, - "ReturnDate": null, - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 10, - "FilmID": 2, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4364, - "RentalDate": "2005-07-07T19:46:51Z", - "InventoryID": 10, - "CustomerID": 145, - "ReturnDate": "2005-07-08T21:55:51Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7733, - "RentalDate": "2005-07-28T05:04:47Z", - "InventoryID": 10, - "CustomerID": 82, - "ReturnDate": "2005-08-05T05:12:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15218, - "RentalDate": "2005-08-22T16:59:05Z", - "InventoryID": 10, - "CustomerID": 139, - "ReturnDate": "2005-08-30T17:01:05Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 11, - "FilmID": 2, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10992, - "RentalDate": "2005-08-02T04:41:17Z", - "InventoryID": 11, - "CustomerID": 180, - "ReturnDate": "2005-08-09T02:13:17Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11758, - "RentalDate": "2005-08-17T09:33:02Z", - "InventoryID": 11, - "CustomerID": 533, - "ReturnDate": "2005-08-24T05:03:02Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 3, - "Title": "ADAPTATION HOLES", - "Description": "A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 50, - "ReplacementCost": 18.99, - "Rating": "NC-17", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 12, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6999, - "RentalDate": "2005-07-27T01:21:19Z", - "InventoryID": 12, - "CustomerID": 224, - "ReturnDate": "2005-07-29T20:33:19Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14882, - "RentalDate": "2005-08-22T03:52:21Z", - "InventoryID": 12, - "CustomerID": 417, - "ReturnDate": "2005-08-25T04:50:21Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 13, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 11306, - "RentalDate": "2005-08-02T15:45:10Z", - "InventoryID": 13, - "CustomerID": 247, - "ReturnDate": "2005-08-03T21:14:10Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15788, - "RentalDate": "2005-08-23T13:54:39Z", - "InventoryID": 13, - "CustomerID": 269, - "ReturnDate": "2005-08-26T10:17:39Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 14, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1033, - "RentalDate": "2005-05-31T04:50:07Z", - "InventoryID": 14, - "CustomerID": 25, - "ReturnDate": "2005-06-02T01:53:07Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1427, - "RentalDate": "2005-06-15T18:17:28Z", - "InventoryID": 14, - "CustomerID": 100, - "ReturnDate": "2005-06-16T15:47:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3897, - "RentalDate": "2005-07-06T19:11:43Z", - "InventoryID": 14, - "CustomerID": 277, - "ReturnDate": "2005-07-11T21:50:43Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10437, - "RentalDate": "2005-08-01T08:51:04Z", - "InventoryID": 14, - "CustomerID": 1, - "ReturnDate": "2005-08-10T12:12:04Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11845, - "RentalDate": "2005-08-17T13:16:38Z", - "InventoryID": 14, - "CustomerID": 65, - "ReturnDate": "2005-08-18T11:21:38Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 15, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3956, - "RentalDate": "2005-07-06T22:01:51Z", - "InventoryID": 15, - "CustomerID": 147, - "ReturnDate": "2005-07-12T21:35:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7586, - "RentalDate": "2005-07-27T23:19:29Z", - "InventoryID": 15, - "CustomerID": 316, - "ReturnDate": "2005-07-29T23:04:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12727, - "RentalDate": "2005-08-18T21:45:15Z", - "InventoryID": 15, - "CustomerID": 178, - "ReturnDate": "2005-08-24T15:52:15Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 4, - "Title": "AFFAIR PREJUDICE", - "Description": "A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 117, - "ReplacementCost": 26.99, - "Rating": "G", - "SpecialFeatures": "Commentaries,Behind the Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 88, - "FirstName": "KENNETH", - "LastName": "PESCI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 16, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6493, - "RentalDate": "2005-07-12T02:40:41Z", - "InventoryID": 16, - "CustomerID": 184, - "ReturnDate": "2005-07-16T04:56:41Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8931, - "RentalDate": "2005-07-30T02:30:07Z", - "InventoryID": 16, - "CustomerID": 268, - "ReturnDate": "2005-08-02T08:24:07Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15352, - "RentalDate": "2005-08-22T21:16:54Z", - "InventoryID": 16, - "CustomerID": 560, - "ReturnDate": "2005-08-31T00:38:54Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 17, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 995, - "RentalDate": "2005-05-31T00:06:02Z", - "InventoryID": 17, - "CustomerID": 150, - "ReturnDate": "2005-06-06T02:30:02Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2090, - "RentalDate": "2005-06-17T18:06:14Z", - "InventoryID": 17, - "CustomerID": 197, - "ReturnDate": "2005-06-22T23:52:14Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5682, - "RentalDate": "2005-07-10T08:51:39Z", - "InventoryID": 17, - "CustomerID": 302, - "ReturnDate": "2005-07-12T14:44:39Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6970, - "RentalDate": "2005-07-27T00:26:14Z", - "InventoryID": 17, - "CustomerID": 418, - "ReturnDate": "2005-08-03T20:00:14Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11714, - "RentalDate": "2005-08-17T07:34:55Z", - "InventoryID": 17, - "CustomerID": 151, - "ReturnDate": "2005-08-18T04:07:55Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 18, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 8331, - "RentalDate": "2005-07-29T04:13:29Z", - "InventoryID": 18, - "CustomerID": 148, - "ReturnDate": "2005-08-04T07:09:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15199, - "RentalDate": "2005-08-22T16:17:49Z", - "InventoryID": 18, - "CustomerID": 216, - "ReturnDate": "2005-08-25T20:12:49Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 19, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3506, - "RentalDate": "2005-07-06T00:22:29Z", - "InventoryID": 19, - "CustomerID": 459, - "ReturnDate": "2005-07-07T22:15:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9863, - "RentalDate": "2005-07-31T13:05:29Z", - "InventoryID": 19, - "CustomerID": 239, - "ReturnDate": "2005-08-08T12:33:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15174, - "RentalDate": "2005-08-22T15:26:36Z", - "InventoryID": 19, - "CustomerID": 111, - "ReturnDate": "2005-08-31T10:47:36Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 20, - "FilmID": 4, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 465, - "RentalDate": "2005-05-27T20:44:36Z", - "InventoryID": 20, - "CustomerID": 261, - "ReturnDate": "2005-06-02T02:43:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1716, - "RentalDate": "2005-06-16T14:39:31Z", - "InventoryID": 20, - "CustomerID": 24, - "ReturnDate": "2005-06-19T15:37:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4789, - "RentalDate": "2005-07-08T16:22:01Z", - "InventoryID": 20, - "CustomerID": 73, - "ReturnDate": "2005-07-15T18:29:01Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12726, - "RentalDate": "2005-08-18T21:44:46Z", - "InventoryID": 20, - "CustomerID": 397, - "ReturnDate": "2005-08-19T21:58:46Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 21, - "FilmID": 4, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6348, - "RentalDate": "2005-07-11T20:21:18Z", - "InventoryID": 21, - "CustomerID": 66, - "ReturnDate": "2005-07-19T15:56:18Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9359, - "RentalDate": "2005-07-30T18:39:28Z", - "InventoryID": 21, - "CustomerID": 501, - "ReturnDate": "2005-07-31T15:39:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15542, - "RentalDate": "2006-02-14T15:16:03Z", - "InventoryID": 21, - "CustomerID": 111, - "ReturnDate": null, - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 22, - "FilmID": 4, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4802, - "RentalDate": "2005-07-08T16:55:17Z", - "InventoryID": 22, - "CustomerID": 562, - "ReturnDate": "2005-07-15T19:34:17Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8002, - "RentalDate": "2005-07-28T15:11:00Z", - "InventoryID": 22, - "CustomerID": 449, - "ReturnDate": "2005-07-31T15:46:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13943, - "RentalDate": "2005-08-20T17:31:18Z", - "InventoryID": 22, - "CustomerID": 464, - "ReturnDate": "2005-08-24T11:33:18Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 5, - "Title": "AFRICAN EGG", - "Description": "A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 130, - "ReplacementCost": 22.99, - "Rating": "G", - "SpecialFeatures": "Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 23, - "FilmID": 5, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 552, - "RentalDate": "2005-05-28T07:53:38Z", - "InventoryID": 23, - "CustomerID": 106, - "ReturnDate": "2005-06-04T12:45:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1614, - "RentalDate": "2005-06-16T06:58:02Z", - "InventoryID": 23, - "CustomerID": 489, - "ReturnDate": "2005-06-23T11:24:02Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6615, - "RentalDate": "2005-07-12T08:36:22Z", - "InventoryID": 23, - "CustomerID": 438, - "ReturnDate": "2005-07-20T09:03:22Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11129, - "RentalDate": "2005-08-02T09:08:44Z", - "InventoryID": 23, - "CustomerID": 566, - "ReturnDate": "2005-08-04T04:00:44Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12926, - "RentalDate": "2005-08-19T05:00:16Z", - "InventoryID": 23, - "CustomerID": 336, - "ReturnDate": "2005-08-26T06:12:16Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 24, - "FilmID": 5, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 2255, - "RentalDate": "2005-06-18T05:21:12Z", - "InventoryID": 24, - "CustomerID": 410, - "ReturnDate": "2005-06-26T09:19:12Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5362, - "RentalDate": "2005-07-09T18:16:08Z", - "InventoryID": 24, - "CustomerID": 266, - "ReturnDate": "2005-07-18T18:27:08Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7793, - "RentalDate": "2005-07-28T07:26:14Z", - "InventoryID": 24, - "CustomerID": 32, - "ReturnDate": "2005-08-03T07:45:14Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13043, - "RentalDate": "2005-08-19T09:07:13Z", - "InventoryID": 24, - "CustomerID": 127, - "ReturnDate": "2005-08-27T07:49:13Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 25, - "FilmID": 5, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 5030, - "RentalDate": "2005-07-09T02:35:43Z", - "InventoryID": 25, - "CustomerID": 497, - "ReturnDate": "2005-07-17T02:05:43Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9851, - "RentalDate": "2005-07-31T12:50:24Z", - "InventoryID": 25, - "CustomerID": 49, - "ReturnDate": "2005-08-08T08:30:24Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15458, - "RentalDate": "2006-02-14T15:16:03Z", - "InventoryID": 25, - "CustomerID": 590, - "ReturnDate": null, - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 6, - "Title": "AGENT TRUMAN", - "Description": "A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 169, - "ReplacementCost": 17.99, - "Rating": "PG", - "SpecialFeatures": "Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 26, - "FilmID": 6, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 317, - "RentalDate": "2005-05-26T23:23:56Z", - "InventoryID": 26, - "CustomerID": 391, - "ReturnDate": "2005-06-01T19:56:56Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3391, - "RentalDate": "2005-06-21T15:11:02Z", - "InventoryID": 26, - "CustomerID": 45, - "ReturnDate": "2005-06-25T14:12:02Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4594, - "RentalDate": "2005-07-08T06:40:06Z", - "InventoryID": 26, - "CustomerID": 506, - "ReturnDate": "2005-07-16T05:51:06Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8353, - "RentalDate": "2005-07-29T04:52:10Z", - "InventoryID": 26, - "CustomerID": 585, - "ReturnDate": "2005-07-30T04:01:10Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12764, - "RentalDate": "2005-08-18T23:14:15Z", - "InventoryID": 26, - "CustomerID": 183, - "ReturnDate": "2005-08-22T20:23:15Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 27, - "FilmID": 6, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 2965, - "RentalDate": "2005-06-20T07:33:38Z", - "InventoryID": 27, - "CustomerID": 46, - "ReturnDate": "2005-06-29T11:45:38Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3567, - "RentalDate": "2005-07-06T03:09:36Z", - "InventoryID": 27, - "CustomerID": 355, - "ReturnDate": "2005-07-12T02:15:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10526, - "RentalDate": "2005-08-01T11:55:33Z", - "InventoryID": 27, - "CustomerID": 14, - "ReturnDate": "2005-08-08T16:42:33Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11944, - "RentalDate": "2005-08-17T17:02:42Z", - "InventoryID": 27, - "CustomerID": 389, - "ReturnDate": "2005-08-21T16:40:42Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 28, - "FilmID": 6, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 8263, - "RentalDate": "2005-07-29T01:11:23Z", - "InventoryID": 28, - "CustomerID": 5, - "ReturnDate": "2005-07-31T01:53:23Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13796, - "RentalDate": "2005-08-20T12:32:32Z", - "InventoryID": 28, - "CustomerID": 209, - "ReturnDate": "2005-08-29T10:48:32Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 29, - "FilmID": 6, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 5806, - "RentalDate": "2005-07-10T15:11:54Z", - "InventoryID": 29, - "CustomerID": 108, - "ReturnDate": "2005-07-15T11:51:54Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10485, - "RentalDate": "2005-08-01T10:20:34Z", - "InventoryID": 29, - "CustomerID": 50, - "ReturnDate": "2005-08-09T09:20:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12513, - "RentalDate": "2005-08-18T13:31:45Z", - "InventoryID": 29, - "CustomerID": 527, - "ReturnDate": "2005-08-25T08:26:45Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 30, - "FilmID": 6, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 259, - "RentalDate": "2005-05-26T15:32:46Z", - "InventoryID": 30, - "CustomerID": 482, - "ReturnDate": "2005-06-04T15:27:46Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2569, - "RentalDate": "2005-06-19T04:19:04Z", - "InventoryID": 30, - "CustomerID": 213, - "ReturnDate": "2005-06-26T04:31:04Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3756, - "RentalDate": "2005-07-06T12:40:38Z", - "InventoryID": 30, - "CustomerID": 320, - "ReturnDate": "2005-07-11T09:29:38Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7810, - "RentalDate": "2005-07-28T08:00:38Z", - "InventoryID": 30, - "CustomerID": 537, - "ReturnDate": "2005-08-02T06:14:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12463, - "RentalDate": "2005-08-18T11:31:34Z", - "InventoryID": 30, - "CustomerID": 214, - "ReturnDate": "2005-08-23T12:04:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 31, - "FilmID": 6, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 11261, - "RentalDate": "2005-08-02T13:54:26Z", - "InventoryID": 31, - "CustomerID": 204, - "ReturnDate": "2005-08-10T19:04:26Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14554, - "RentalDate": "2005-08-21T16:03:01Z", - "InventoryID": 31, - "CustomerID": 38, - "ReturnDate": "2005-08-26T13:09:01Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 7, - "Title": "AIRPLANE SIERRA", - "Description": "A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 62, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 32, - "FilmID": 7, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 11084, - "RentalDate": "2005-08-02T07:34:19Z", - "InventoryID": 32, - "CustomerID": 369, - "ReturnDate": "2005-08-07T09:30:19Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14942, - "RentalDate": "2005-08-22T05:58:27Z", - "InventoryID": 32, - "CustomerID": 471, - "ReturnDate": "2005-08-31T10:08:27Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 33, - "FilmID": 7, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3159, - "RentalDate": "2005-06-20T21:11:50Z", - "InventoryID": 33, - "CustomerID": 388, - "ReturnDate": "2005-06-29T19:35:50Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4937, - "RentalDate": "2005-07-08T22:29:59Z", - "InventoryID": 33, - "CustomerID": 273, - "ReturnDate": "2005-07-15T21:51:59Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10205, - "RentalDate": "2005-08-01T00:48:24Z", - "InventoryID": 33, - "CustomerID": 87, - "ReturnDate": "2005-08-06T23:53:24Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15224, - "RentalDate": "2005-08-22T17:18:05Z", - "InventoryID": 33, - "CustomerID": 81, - "ReturnDate": "2005-08-29T14:35:05Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 34, - "FilmID": 7, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6876, - "RentalDate": "2005-07-12T20:32:50Z", - "InventoryID": 34, - "CustomerID": 531, - "ReturnDate": "2005-07-16T21:12:50Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7156, - "RentalDate": "2005-07-27T07:19:34Z", - "InventoryID": 34, - "CustomerID": 154, - "ReturnDate": "2005-07-31T04:31:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13303, - "RentalDate": "2005-08-19T18:55:21Z", - "InventoryID": 34, - "CustomerID": 184, - "ReturnDate": "2005-08-23T18:49:21Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 35, - "FilmID": 7, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3378, - "RentalDate": "2005-06-21T13:51:28Z", - "InventoryID": 35, - "CustomerID": 387, - "ReturnDate": "2005-06-25T09:21:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6287, - "RentalDate": "2005-07-11T17:00:04Z", - "InventoryID": 35, - "CustomerID": 93, - "ReturnDate": "2005-07-12T13:16:04Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7352, - "RentalDate": "2005-07-27T14:38:29Z", - "InventoryID": 35, - "CustomerID": 429, - "ReturnDate": "2005-07-28T14:24:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14215, - "RentalDate": "2005-08-21T04:34:11Z", - "InventoryID": 35, - "CustomerID": 54, - "ReturnDate": "2005-08-27T10:30:11Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 36, - "FilmID": 7, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 9751, - "RentalDate": "2005-07-31T09:20:50Z", - "InventoryID": 36, - "CustomerID": 202, - "ReturnDate": "2005-08-01T05:34:50Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12500, - "RentalDate": "2005-08-18T13:05:51Z", - "InventoryID": 36, - "CustomerID": 310, - "ReturnDate": "2005-08-19T14:54:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 8, - "Title": "AIRPORT POLLOCK", - "Description": "A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 54, - "ReplacementCost": 15.99, - "Rating": "R", - "SpecialFeatures": "Trailers", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 37, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 120, - "RentalDate": "2005-05-25T19:37:47Z", - "InventoryID": 37, - "CustomerID": 365, - "ReturnDate": "2005-06-01T23:29:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2360, - "RentalDate": "2005-06-18T13:11:13Z", - "InventoryID": 37, - "CustomerID": 57, - "ReturnDate": "2005-06-23T15:32:13Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4626, - "RentalDate": "2005-07-08T08:18:21Z", - "InventoryID": 37, - "CustomerID": 268, - "ReturnDate": "2005-07-10T11:36:21Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10422, - "RentalDate": "2005-08-01T08:17:11Z", - "InventoryID": 37, - "CustomerID": 166, - "ReturnDate": "2005-08-10T10:08:11Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14483, - "RentalDate": "2005-08-21T13:43:59Z", - "InventoryID": 37, - "CustomerID": 275, - "ReturnDate": "2005-08-28T16:38:59Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 38, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6219, - "RentalDate": "2005-07-11T13:18:37Z", - "InventoryID": 38, - "CustomerID": 303, - "ReturnDate": "2005-07-13T13:18:37Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7845, - "RentalDate": "2005-07-28T09:18:07Z", - "InventoryID": 38, - "CustomerID": 352, - "ReturnDate": "2005-08-04T10:23:07Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15989, - "RentalDate": "2005-08-23T20:24:36Z", - "InventoryID": 38, - "CustomerID": 96, - "ReturnDate": "2005-08-26T20:35:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 39, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 785, - "RentalDate": "2005-05-29T15:08:41Z", - "InventoryID": 39, - "CustomerID": 72, - "ReturnDate": "2005-05-30T15:51:41Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1814, - "RentalDate": "2005-06-16T21:15:22Z", - "InventoryID": 39, - "CustomerID": 144, - "ReturnDate": "2005-06-23T17:00:22Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3807, - "RentalDate": "2005-07-06T15:11:44Z", - "InventoryID": 39, - "CustomerID": 425, - "ReturnDate": "2005-07-10T09:20:44Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10026, - "RentalDate": "2005-07-31T18:31:51Z", - "InventoryID": 39, - "CustomerID": 332, - "ReturnDate": "2005-08-03T21:14:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12559, - "RentalDate": "2005-08-18T14:53:58Z", - "InventoryID": 39, - "CustomerID": 513, - "ReturnDate": "2005-08-25T20:22:58Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 40, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1058, - "RentalDate": "2005-05-31T08:04:17Z", - "InventoryID": 40, - "CustomerID": 116, - "ReturnDate": "2005-06-03T11:12:17Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2771, - "RentalDate": "2005-06-19T17:54:48Z", - "InventoryID": 40, - "CustomerID": 262, - "ReturnDate": "2005-06-27T17:14:48Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3959, - "RentalDate": "2005-07-06T22:07:58Z", - "InventoryID": 40, - "CustomerID": 448, - "ReturnDate": "2005-07-13T02:30:58Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8434, - "RentalDate": "2005-07-29T07:20:14Z", - "InventoryID": 40, - "CustomerID": 141, - "ReturnDate": "2005-07-30T08:50:14Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11799, - "RentalDate": "2005-08-17T11:25:25Z", - "InventoryID": 40, - "CustomerID": 501, - "ReturnDate": "2005-08-25T13:03:25Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 9, - "Title": "ALABAMA DEVIL", - "Description": "A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 114, - "ReplacementCost": 21.99, - "Rating": "PG-13", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 41, - "FilmID": 9, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 5745, - "RentalDate": "2005-07-10T12:10:11Z", - "InventoryID": 41, - "CustomerID": 305, - "ReturnDate": "2005-07-19T06:56:11Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10036, - "RentalDate": "2005-07-31T18:47:20Z", - "InventoryID": 41, - "CustomerID": 491, - "ReturnDate": "2005-08-03T22:53:20Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15802, - "RentalDate": "2005-08-23T14:26:51Z", - "InventoryID": 41, - "CustomerID": 158, - "ReturnDate": "2005-08-29T16:28:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 42, - "FilmID": 9, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3880, - "RentalDate": "2005-07-06T18:32:49Z", - "InventoryID": 42, - "CustomerID": 507, - "ReturnDate": "2005-07-07T20:46:49Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8837, - "RentalDate": "2005-07-29T22:49:00Z", - "InventoryID": 42, - "CustomerID": 372, - "ReturnDate": "2005-08-07T21:56:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15639, - "RentalDate": "2005-08-23T08:03:25Z", - "InventoryID": 42, - "CustomerID": 214, - "ReturnDate": "2005-08-24T10:21:25Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 43, - "FilmID": 9, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 7835, - "RentalDate": "2005-07-28T08:49:39Z", - "InventoryID": 43, - "CustomerID": 547, - "ReturnDate": "2005-08-02T07:16:39Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15776, - "RentalDate": "2005-08-23T13:26:01Z", - "InventoryID": 43, - "CustomerID": 514, - "ReturnDate": "2005-08-29T18:17:01Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 44, - "FilmID": 9, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 9442, - "RentalDate": "2005-07-30T21:44:31Z", - "InventoryID": 44, - "CustomerID": 75, - "ReturnDate": "2005-08-04T01:29:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12096, - "RentalDate": "2005-08-17T22:32:50Z", - "InventoryID": 44, - "CustomerID": 463, - "ReturnDate": "2005-08-25T03:33:50Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 45, - "FilmID": 9, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 7288, - "RentalDate": "2005-07-27T12:24:59Z", - "InventoryID": 45, - "CustomerID": 226, - "ReturnDate": "2005-08-02T15:52:59Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12027, - "RentalDate": "2005-08-17T20:01:12Z", - "InventoryID": 45, - "CustomerID": 285, - "ReturnDate": "2005-08-26T21:08:12Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 10, - "Title": "ALADDIN CALENDAR", - "Description": "A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 63, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 46, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1948, - "RentalDate": "2005-06-17T08:06:53Z", - "InventoryID": 46, - "CustomerID": 89, - "ReturnDate": "2005-06-21T05:00:53Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6703, - "RentalDate": "2005-07-12T12:50:19Z", - "InventoryID": 46, - "CustomerID": 470, - "ReturnDate": "2005-07-16T13:41:19Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7174, - "RentalDate": "2005-07-27T08:00:36Z", - "InventoryID": 46, - "CustomerID": 570, - "ReturnDate": "2005-08-01T03:11:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13109, - "RentalDate": "2005-08-19T11:23:20Z", - "InventoryID": 46, - "CustomerID": 259, - "ReturnDate": "2005-08-25T17:05:20Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 47, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10696, - "RentalDate": "2005-08-01T18:18:13Z", - "InventoryID": 47, - "CustomerID": 120, - "ReturnDate": "2005-08-04T14:09:13Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13345, - "RentalDate": "2005-08-19T20:25:24Z", - "InventoryID": 47, - "CustomerID": 55, - "ReturnDate": "2005-08-27T20:38:24Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 48, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10482, - "RentalDate": "2005-08-01T10:17:47Z", - "InventoryID": 48, - "CustomerID": 358, - "ReturnDate": "2005-08-02T15:04:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14697, - "RentalDate": "2005-08-21T20:49:21Z", - "InventoryID": 48, - "CustomerID": 409, - "ReturnDate": "2005-08-26T01:39:21Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 49, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4400, - "RentalDate": "2005-07-07T21:22:26Z", - "InventoryID": 49, - "CustomerID": 370, - "ReturnDate": "2005-07-16T00:59:26Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10210, - "RentalDate": "2005-08-01T00:58:52Z", - "InventoryID": 49, - "CustomerID": 391, - "ReturnDate": "2005-08-10T01:16:52Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13878, - "RentalDate": "2005-08-20T15:17:38Z", - "InventoryID": 49, - "CustomerID": 481, - "ReturnDate": "2005-08-21T21:11:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 50, - "FilmID": 10, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1783, - "RentalDate": "2005-06-16T19:23:23Z", - "InventoryID": 50, - "CustomerID": 18, - "ReturnDate": "2005-06-18T00:57:23Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4042, - "RentalDate": "2005-07-07T03:06:40Z", - "InventoryID": 50, - "CustomerID": 10, - "ReturnDate": "2005-07-10T02:37:40Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10786, - "RentalDate": "2005-08-01T21:29:34Z", - "InventoryID": 50, - "CustomerID": 490, - "ReturnDate": "2005-08-10T17:27:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14413, - "RentalDate": "2005-08-21T11:06:33Z", - "InventoryID": 50, - "CustomerID": 367, - "ReturnDate": "2005-08-29T16:10:33Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 51, - "FilmID": 10, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 2562, - "RentalDate": "2005-06-19T03:15:05Z", - "InventoryID": 51, - "CustomerID": 265, - "ReturnDate": "2005-06-21T08:26:05Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5139, - "RentalDate": "2005-07-09T08:01:51Z", - "InventoryID": 51, - "CustomerID": 539, - "ReturnDate": "2005-07-18T09:16:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9184, - "RentalDate": "2005-07-30T12:10:19Z", - "InventoryID": 51, - "CustomerID": 365, - "ReturnDate": "2005-08-01T07:35:19Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12704, - "RentalDate": "2005-08-18T20:43:00Z", - "InventoryID": 51, - "CustomerID": 93, - "ReturnDate": "2005-08-21T22:28:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 52, - "FilmID": 10, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1325, - "RentalDate": "2005-06-15T11:03:24Z", - "InventoryID": 52, - "CustomerID": 193, - "ReturnDate": "2005-06-20T10:54:24Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4707, - "RentalDate": "2005-07-08T11:57:28Z", - "InventoryID": 52, - "CustomerID": 286, - "ReturnDate": "2005-07-10T17:47:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8821, - "RentalDate": "2005-07-29T22:18:12Z", - "InventoryID": 52, - "CustomerID": 477, - "ReturnDate": "2005-08-05T22:00:12Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14041, - "RentalDate": "2005-08-20T21:45:23Z", - "InventoryID": 52, - "CustomerID": 247, - "ReturnDate": "2005-08-26T01:42:23Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - } - ] - } -] \ No newline at end of file diff --git a/tests/mysql/testdata/r_rating_films.json b/tests/mysql/testdata/r_rating_films.json deleted file mode 100644 index afe76ad..0000000 --- a/tests/mysql/testdata/r_rating_films.json +++ /dev/null @@ -1,9469 +0,0 @@ -[ - { - "FilmID": 8, - "Title": "AIRPORT POLLOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 17, - "Title": "ALONE TRIP", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 20, - "Title": "AMELIE HELLFIGHTERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 21, - "Title": "AMERICAN CIRCUS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 23, - "Title": "ANACONDA CONFESSIONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 24, - "Title": "ANALYZE HOOSIERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 30, - "Title": "ANYTHING SAVANNAH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 32, - "Title": "APOCALYPSE FLAMINGOS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 40, - "Title": "ARMY FLINTSTONES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 49, - "Title": "BADMAN DAWN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 54, - "Title": "BANGER PINOCCHIO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 59, - "Title": "BEAR GRACELAND", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 152, - "FirstName": "BEN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 60, - "Title": "BEAST HUNCHBACK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 69, - "Title": "BEVERLY OUTLAW", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 86, - "Title": "BOOGIE AMELIE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 90, - "Title": "BOULEVARD MOB", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 100, - "Title": "BROOKLYN DESERT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 101, - "Title": "BROTHERHOOD BLANKET", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 102, - "Title": "BUBBLE GROSSE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 115, - "Title": "CAMPUS REMEMBER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 116, - "Title": "CANDIDATE PERDITION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 118, - "Title": "CANYON STOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 129, - "Title": "CAUSE DATE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 135, - "Title": "CHANCE RESURRECTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 33, - "FirstName": "MILLA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 138, - "Title": "CHARIOTS CONSPIRACY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 148, - "Title": "CHOCOLATE DUCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 158, - "Title": "CLONES PINOCCHIO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 65, - "FirstName": "ANGELA", - "LastName": "HUDSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 159, - "Title": "CLOSER BANG", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 199, - "FirstName": "JULIA", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 162, - "Title": "CLUELESS BUCKET", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 111, - "FirstName": "CAMERON", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 168, - "Title": "COMANCHEROS ENEMY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 171, - "Title": "COMMANDMENTS EXPRESS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 177, - "Title": "CONNECTICUT TRAMP", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 183, - "Title": "CONVERSATION DOWNHILL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 192, - "Title": "CROSSING DIVORCE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 195, - "Title": "CROWDS TELEMARK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 180, - "FirstName": "JEFF", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 197, - "Title": "CRUSADE HONEY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 199, - "Title": "CUPBOARD SINNERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 213, - "Title": "DATE SPEED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 221, - "Title": "DELIVERANCE MULHOLLAND", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 222, - "Title": "DESERT POSEIDON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 121, - "FirstName": "LIZA", - "LastName": "BERGMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 227, - "Title": "DETAILS PACKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 229, - "Title": "DEVIL DESIRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 231, - "Title": "DINOSAUR SECRETARY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 234, - "Title": "DISTURBING SCARFACE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 88, - "FirstName": "KENNETH", - "LastName": "PESCI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 236, - "Title": "DIVINE RESURRECTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 69, - "FirstName": "KENNETH", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 242, - "Title": "DOOM DANCING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 245, - "Title": "DOUBLE WRATH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 246, - "Title": "DOUBTFIRE LABYRINTH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 256, - "Title": "DROP WATERFRONT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 263, - "Title": "DURHAM PANKY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 269, - "Title": "EARRING INSTINCT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 135, - "FirstName": "RITA", - "LastName": "REYNOLDS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 287, - "Title": "ENTRAPMENT SATISFACTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 288, - "Title": "ESCAPE METROPOLIS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 296, - "Title": "EXPRESS LONELY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 301, - "Title": "FAMILY SWEET", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 309, - "Title": "FEUD FROGMEN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 310, - "Title": "FEVER EMPIRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 312, - "Title": "FIDDLER LOST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 314, - "Title": "FIGHT JAWBREAKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 315, - "Title": "FINDING ANACONDA", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 316, - "Title": "FIRE WOLVES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 319, - "Title": "FISH OPUS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 329, - "Title": "FORREST SONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 333, - "Title": "FREAKY POCUS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 337, - "Title": "FRIDA SLIPPER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 339, - "Title": "FROGMEN BREAKING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 342, - "Title": "FUGITIVE MAGUIRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 148, - "FirstName": "EMILY", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 346, - "Title": "GALAXY SWEETHEARTS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 355, - "Title": "GHOSTBUSTERS ELF", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 356, - "Title": "GIANT TROOPERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 358, - "Title": "GILMORE BOILED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 193, - "FirstName": "BURT", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 363, - "Title": "GO PURPLE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 365, - "Title": "GOLD RIVER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 367, - "Title": "GOLDMINE TYCOON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 368, - "Title": "GONE TROUBLE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 148, - "FirstName": "EMILY", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 370, - "Title": "GORGEOUS BINGO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 372, - "Title": "GRACELAND DYNAMITE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 379, - "Title": "GREEDY ROOTS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 381, - "Title": "GRINCH MASSAGE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 384, - "Title": "GROSSE WONDERFUL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 390, - "Title": "GUYS FALCON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 394, - "Title": "HAMLET WISDOM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 395, - "Title": "HANDICAP BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 400, - "Title": "HARDLY ROBBERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 406, - "Title": "HAUNTING PIANIST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 408, - "Title": "HEAD STRANGER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 415, - "Title": "HIGH ENCINO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 416, - "Title": "HIGHBALL POTTER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 424, - "Title": "HOLOCAUST HIGHBALL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 425, - "Title": "HOLY TADPOLE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 426, - "Title": "HOME PITY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 427, - "Title": "HOMEWARD CIDER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 429, - "Title": "HONEY TIES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 434, - "Title": "HORROR REIGN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 437, - "Title": "HOUSE DYNAMITE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 447, - "Title": "ICE CROSSING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 452, - "Title": "ILLUSION AMELIE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 69, - "FirstName": "KENNETH", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 465, - "Title": "INTERVIEW LIAISONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 470, - "Title": "ISHTAR ROCKETEER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 480, - "Title": "JEEPERS WEDDING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 482, - "Title": "JEOPARDY ENCINO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 186, - "FirstName": "JULIA", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 486, - "Title": "JET NEIGHBORS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 493, - "Title": "KANE EXORCIST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 498, - "Title": "KILLER INNOCENT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 501, - "Title": "KISSING DOLLS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 503, - "Title": "KRAMER CHOCOLATE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 523, - "Title": "LIGHTS DEER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 525, - "Title": "LOATHING LEGALLY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 526, - "Title": "LOCK REAR", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 531, - "Title": "LOSE INCH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 535, - "Title": "LOVE SUICIDES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 543, - "Title": "MADIGAN DORADO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 544, - "Title": "MADISON TRAP", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 548, - "Title": "MAGNIFICENT CHITTY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 563, - "Title": "MASSACRE USUAL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 566, - "Title": "MAUDE MOD", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 599, - "Title": "MOTHER OLEANDER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 610, - "Title": "MUSIC BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 619, - "Title": "NEIGHBORS CHARADE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 640, - "Title": "OPUS ICE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 199, - "FirstName": "JULIA", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 643, - "Title": "ORIENT CLOSER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 111, - "FirstName": "CAMERON", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 649, - "Title": "OZ LIAISONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 652, - "Title": "PAJAMA JAWBREAKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 686, - "Title": "PLUTO OLEANDER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 700, - "Title": "PRIX UNDEFEATED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 705, - "Title": "PURPLE MOVIE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 707, - "Title": "QUEST MUSSOLINI", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 708, - "Title": "QUILLS BULL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 710, - "Title": "RAGE GAMES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 711, - "Title": "RAGING AIRPLANE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 724, - "Title": "REMEMBER DIARY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 180, - "FirstName": "JEFF", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 725, - "Title": "REQUIEM TYCOON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 728, - "Title": "REUNION WITCHES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 734, - "Title": "ROAD ROXANNE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 736, - "Title": "ROBBERY BRIGHT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 742, - "Title": "ROOF CHAMPION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 747, - "Title": "ROXANNE REBEL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 749, - "Title": "RULES HUMAN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 750, - "Title": "RUN PACIFIC", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 759, - "Title": "SALUTE APOLLO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 765, - "Title": "SATURN NAME", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 779, - "Title": "SENSE GREEK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 781, - "Title": "SEVEN SWARM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 63, - "FirstName": "CAMERON", - "LastName": "WRAY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 786, - "Title": "SHEPHERD MIDSUMMER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 788, - "Title": "SHIP WONDERLAND", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 793, - "Title": "SHRUNK DIVINE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 795, - "Title": "SIEGE MADRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 797, - "Title": "SILENCE KANE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 808, - "Title": "SLING LUKE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 813, - "Title": "SMOOCHY CONTROL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 817, - "Title": "SOLDIERS EVOLUTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 822, - "Title": "SOUP WISDOM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 145, - "FirstName": "KIM", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 823, - "Title": "SOUTH WAIT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 830, - "Title": "SPIRIT FLINTSTONES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 833, - "Title": "SPLENDOR PATTON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 43, - "FirstName": "KIRK", - "LastName": "JOVOVICH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 71, - "FirstName": "ADAM", - "LastName": "GRANT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 838, - "Title": "STAGECOACH ARMAGEDDON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 840, - "Title": "STAMPEDE DISTURBING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 850, - "Title": "STORY SIDE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 851, - "Title": "STRAIGHT HOURS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 193, - "FirstName": "BURT", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 854, - "Title": "STRANGERS GRAFFITI", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 856, - "Title": "STREETCAR INTENTIONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 858, - "Title": "SUBMARINE BED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 861, - "Title": "SUIT WALLS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 134, - "FirstName": "GENE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 863, - "Title": "SUN CONFESSIONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 872, - "Title": "SWEET BROTHERHOOD", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 884, - "Title": "TERMINATOR CLUB", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 121, - "FirstName": "LIZA", - "LastName": "BERGMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 889, - "Title": "TIES HUNGER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 890, - "Title": "TIGHTS DAWN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 892, - "Title": "TITANIC BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 895, - "Title": "TOMORROW HUSTLER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 900, - "Title": "TOWN ARK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 7, - "FirstName": "GRACE", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 904, - "Title": "TRAIN BUNCH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 913, - "Title": "TROOPERS METAL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 917, - "Title": "TUXEDO MILE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 43, - "FirstName": "KIRK", - "LastName": "JOVOVICH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 923, - "Title": "UNFAITHFUL KILL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 145, - "FirstName": "KIM", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 925, - "Title": "UNITED PILOT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 930, - "Title": "VACATION BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 935, - "Title": "VANISHED GARDEN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 938, - "Title": "VELVET TERMINATOR", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 65, - "FirstName": "ANGELA", - "LastName": "HUDSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 939, - "Title": "VERTIGO NORTHWEST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 945, - "Title": "VIRGINIAN PLUTO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 63, - "FirstName": "CAMERON", - "LastName": "WRAY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 961, - "Title": "WASH HEAVENLY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 967, - "Title": "WEEKEND PERSONAL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 974, - "Title": "WILD APOLLO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 975, - "Title": "WILLOW TRACY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 976, - "Title": "WIND PHANTOM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 977, - "Title": "WINDOW SIDE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 978, - "Title": "WISDOM WORKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 982, - "Title": "WOMEN DORADO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 988, - "Title": "WORKER TARZAN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 989, - "Title": "WORKING MICROCOSMOS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 995, - "Title": "YENTL IDAHO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 999, - "Title": "ZOOLANDER FICTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - } -] \ No newline at end of file diff --git a/tests/mysql/update_test.go b/tests/mysql/update_test.go index 185c8e8..2b23f6b 100644 --- a/tests/mysql/update_test.go +++ b/tests/mysql/update_test.go @@ -139,6 +139,35 @@ WHERE link.id = 201; testutils.AssertExec(t, stmt, db) } +func TestUpdateWithModelDataAndMutableColumns(t *testing.T) { + + setupLinkTableForUpdateTest(t) + + link := model.Link{ + ID: 201, + URL: "http://www.duckduckgo.com", + Name: "DuckDuckGo", + } + + stmt := Link. + UPDATE(Link.MutableColumns). + MODEL(link). + WHERE(Link.ID.EQ(Int(int64(link.ID)))) + + var expectedSQL = ` +UPDATE test_sample.link +SET url = 'http://www.duckduckgo.com', + name = 'DuckDuckGo', + description = NULL +WHERE link.id = 201; +` + fmt.Println(stmt.DebugSql()) + + testutils.AssertDebugStatementSql(t, stmt, expectedSQL, "http://www.duckduckgo.com", "DuckDuckGo", nil, int64(201)) + + testutils.AssertExec(t, stmt, db) +} + func TestUpdateWithInvalidModelData(t *testing.T) { defer func() { r := recover() diff --git a/tests/postgres/alltypes_test.go b/tests/postgres/alltypes_test.go index 44b5b46..2b91c7a 100644 --- a/tests/postgres/alltypes_test.go +++ b/tests/postgres/alltypes_test.go @@ -6,7 +6,7 @@ import ( . "github.com/go-jet/jet/postgres" "github.com/go-jet/jet/tests/.gentestdata/jetdb/test_sample/model" . "github.com/go-jet/jet/tests/.gentestdata/jetdb/test_sample/table" - "github.com/go-jet/jet/tests/testdata/common" + "github.com/go-jet/jet/tests/testdata/results/common" "github.com/google/uuid" "gotest.tools/assert" "testing" @@ -179,9 +179,10 @@ func TestStringOperators(t *testing.T) { AllTypes.Text.CONCAT(Int(11)), AllTypes.Text.LIKE(String("abc")), AllTypes.Text.NOT_LIKE(String("_b_")), - AllTypes.Text.REGEXP_LIKE(String("aba")), - AllTypes.Text.REGEXP_LIKE(String("aba"), "c"), - AllTypes.Text.REGEXP_LIKE(String("aba"), "i"), + AllTypes.Text.REGEXP_LIKE(String("^t")), + AllTypes.Text.REGEXP_LIKE(String("^t"), true), + AllTypes.Text.NOT_REGEXP_LIKE(String("^t")), + AllTypes.Text.NOT_REGEXP_LIKE(String("^t"), true), BIT_LENGTH(String("length")), CHAR_LENGTH(AllTypes.Char), @@ -232,7 +233,7 @@ func TestStringOperators(t *testing.T) { TO_HEX(AllTypes.IntegerPtr), ) - //fmt.Println(query.Sql()) + //fmt.Println(query.DebugSql()) err := query.Query(db, &struct{}{}) @@ -307,7 +308,7 @@ LIMIT $5; assert.NilError(t, err) - testutils.AssertJSONFile(t, dest, "./testdata/common/bool_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/bool_operators.json") } func TestFloatOperators(t *testing.T) { @@ -405,7 +406,7 @@ LIMIT $35; //testutils.PrintJson(dest) - testutils.AssertJSONFile(t, dest, "./testdata/common/float_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/float_operators.json") } func TestIntegerOperators(t *testing.T) { @@ -467,7 +468,7 @@ func TestIntegerOperators(t *testing.T) { AllTypes.SmallInt.BIT_XOR(Int(11)).AS("bit xor 2"), BIT_NOT(Int(-1).MUL(AllTypes.SmallInt)).AS("bit_not_1"), - BIT_NOT(Int(-11, true)).AS("bit_not_2"), + BIT_NOT(Int(-11)).AS("bit_not_2"), AllTypes.SmallInt.BIT_SHIFT_LEFT(AllTypes.SmallInt.DIV(Int(2))).AS("bit shift left 1"), AllTypes.SmallInt.BIT_SHIFT_LEFT(Int(4)).AS("bit shift left 2"), @@ -544,7 +545,7 @@ LIMIT $23; //testutils.SaveJsonFile("./testdata/common/int_operators.json", dest) //testutils.PrintJson(dest) - testutils.AssertJSONFile(t, dest, "./testdata/common/int_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/int_operators.json") } func TestTimeExpression(t *testing.T) { diff --git a/tests/postgres/chinook_db_test.go b/tests/postgres/chinook_db_test.go index 5b7cf01..8969b0b 100644 --- a/tests/postgres/chinook_db_test.go +++ b/tests/postgres/chinook_db_test.go @@ -105,7 +105,7 @@ func TestJoinEverything(t *testing.T) { assert.NilError(t, err) assert.Equal(t, len(dest), 275) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/joined_everything.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/joined_everything.json") } func TestSelfJoin(t *testing.T) { @@ -215,21 +215,19 @@ func TestUnionForQuotedNames(t *testing.T) { //fmt.Println(stmt.DebugSql()) testutils.AssertDebugStatementSql(t, stmt, ` ( - ( - SELECT "Album"."AlbumId" AS "Album.AlbumId", - "Album"."Title" AS "Album.Title", - "Album"."ArtistId" AS "Album.ArtistId" - FROM chinook."Album" - WHERE "Album"."AlbumId" = 1 - ) - UNION ALL - ( - SELECT "Album"."AlbumId" AS "Album.AlbumId", - "Album"."Title" AS "Album.Title", - "Album"."ArtistId" AS "Album.ArtistId" - FROM chinook."Album" - WHERE "Album"."AlbumId" = 2 - ) + SELECT "Album"."AlbumId" AS "Album.AlbumId", + "Album"."Title" AS "Album.Title", + "Album"."ArtistId" AS "Album.ArtistId" + FROM chinook."Album" + WHERE "Album"."AlbumId" = 1 +) +UNION ALL +( + SELECT "Album"."AlbumId" AS "Album.AlbumId", + "Album"."Title" AS "Album.Title", + "Album"."ArtistId" AS "Album.ArtistId" + FROM chinook."Album" + WHERE "Album"."AlbumId" = 2 ) ORDER BY "Album.AlbumId"; `, int64(1), int64(2)) diff --git a/tests/postgres/northwind_test.go b/tests/postgres/northwind_test.go index f547af4..8a02665 100644 --- a/tests/postgres/northwind_test.go +++ b/tests/postgres/northwind_test.go @@ -62,5 +62,5 @@ func TestNorthwindJoinEverything(t *testing.T) { assert.NilError(t, err) //jsonSave("./testdata/northwind-all.json", dest) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/northwind-all.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/northwind-all.json") } diff --git a/tests/postgres/select_test.go b/tests/postgres/select_test.go index 8d63d8c..8b4d8c7 100644 --- a/tests/postgres/select_test.go +++ b/tests/postgres/select_test.go @@ -128,19 +128,17 @@ SELECT payment.payment_id AS "payment.payment_id", ), ( ( - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT 1 - OFFSET 10 - ) - UNION - ( - SELECT payment.payment_id AS "payment.payment_id" - FROM dvds.payment - LIMIT 1 - OFFSET 2 - ) + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT 1 + OFFSET 10 + ) + UNION + ( + SELECT payment.payment_id AS "payment.payment_id" + FROM dvds.payment + LIMIT 1 + OFFSET 2 ) LIMIT 1 ) @@ -1063,7 +1061,7 @@ ORDER BY customer.customer_id, SUM(payment.amount) ASC; assert.Equal(t, len(dest), 104) //testutils.SaveJsonFile(dest, "postgres/testdata/customer_payment_sum.json") - testutils.AssertJSONFile(t, dest, "postgres/testdata/customer_payment_sum.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/customer_payment_sum.json") } func TestSelectGroupBy2(t *testing.T) { @@ -1217,19 +1215,17 @@ ORDER BY payment.payment_date ASC; func TestUnion(t *testing.T) { expectedQuery := ` ( - ( - SELECT payment.payment_id AS "payment.payment_id", - payment.amount AS "payment.amount" - FROM dvds.payment - WHERE payment.amount <= 100 - ) - UNION ALL - ( - SELECT payment.payment_id AS "payment.payment_id", - payment.amount AS "payment.amount" - FROM dvds.payment - WHERE payment.amount >= 200 - ) + SELECT payment.payment_id AS "payment.payment_id", + payment.amount AS "payment.amount" + FROM dvds.payment + WHERE payment.amount <= 100 +) +UNION ALL +( + SELECT payment.payment_id AS "payment.payment_id", + payment.amount AS "payment.amount" + FROM dvds.payment + WHERE payment.amount >= 200 ) ORDER BY "payment.payment_id" ASC, "payment.amount" DESC LIMIT 10 @@ -1510,7 +1506,7 @@ ORDER BY actor.actor_id ASC, film.film_id ASC; assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest.json", dest) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/quick-start-dest.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/quick-start-dest.json") var dest2 []struct { model.Category @@ -1523,7 +1519,7 @@ ORDER BY actor.actor_id ASC, film.film_id ASC; assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest2.json", dest2) - testutils.AssertJSONFile(t, dest2, "./postgres/testdata/quick-start-dest2.json") + testutils.AssertJSONFile(t, dest2, "./testdata/results/postgres/quick-start-dest2.json") } func TestQuickStartWithSubQueries(t *testing.T) { @@ -1575,7 +1571,7 @@ func TestQuickStartWithSubQueries(t *testing.T) { assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest.json", dest) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/quick-start-dest.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/quick-start-dest.json") var dest2 []struct { model.Category @@ -1588,7 +1584,7 @@ func TestQuickStartWithSubQueries(t *testing.T) { assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest2.json", dest2) - testutils.AssertJSONFile(t, dest2, "./postgres/testdata/quick-start-dest2.json") + testutils.AssertJSONFile(t, dest2, "./testdata/results/postgres/quick-start-dest2.json") } func TestExpressionWrappers(t *testing.T) { diff --git a/tests/postgres/testdata/customer_payment_sum.json b/tests/postgres/testdata/customer_payment_sum.json deleted file mode 100644 index 50ec365..0000000 --- a/tests/postgres/testdata/customer_payment_sum.json +++ /dev/null @@ -1,1978 +0,0 @@ -[ - { - "CustomerID": 3, - "StoreID": 1, - "FirstName": "Linda", - "LastName": "Williams", - "Email": "linda.williams@sakilacustomer.org", - "AddressID": 7, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.76, - "Avg": 5.448333333333333, - "Max": 10.99, - "Min": 0.99, - "Count": 24 - } - }, - { - "CustomerID": 5, - "StoreID": 1, - "FirstName": "Elizabeth", - "LastName": "Brown", - "Email": "elizabeth.brown@sakilacustomer.org", - "AddressID": 9, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.65, - "Avg": 3.847142857142857, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 7, - "StoreID": 1, - "FirstName": "Maria", - "LastName": "Miller", - "Email": "maria.miller@sakilacustomer.org", - "AddressID": 11, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.72, - "Avg": 4.668571428571429, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 13, - "StoreID": 2, - "FirstName": "Karen", - "LastName": "Jackson", - "Email": "karen.jackson@sakilacustomer.org", - "AddressID": 17, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.73, - "Avg": 4.878888888888889, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 15, - "StoreID": 1, - "FirstName": "Helen", - "LastName": "Harris", - "Email": "helen.harris@sakilacustomer.org", - "AddressID": 19, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 8.99, - "Min": 0, - "Count": 32 - } - }, - { - "CustomerID": 21, - "StoreID": 1, - "FirstName": "Michelle", - "LastName": "Clark", - "Email": "michelle.clark@sakilacustomer.org", - "AddressID": 25, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.68, - "Avg": 4.58375, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 26, - "StoreID": 2, - "FirstName": "Jessica", - "LastName": "Hall", - "Email": "jessica.hall@sakilacustomer.org", - "AddressID": 30, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.68, - "Avg": 4.58375, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 29, - "StoreID": 2, - "FirstName": "Angela", - "LastName": "Hernandez", - "Email": "angela.hernandez@sakilacustomer.org", - "AddressID": 33, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 138.65, - "Avg": 3.9614285714285713, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 38, - "StoreID": 1, - "FirstName": "Martha", - "LastName": "Gonzalez", - "Email": "martha.gonzalez@sakilacustomer.org", - "AddressID": 42, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.66, - "Avg": 3.7547058823529413, - "Max": 6.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 39, - "StoreID": 1, - "FirstName": "Debra", - "LastName": "Nelson", - "Email": "debra.nelson@sakilacustomer.org", - "AddressID": 43, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 141.71, - "Avg": 4.886551724137931, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 46, - "StoreID": 2, - "FirstName": "Catherine", - "LastName": "Campbell", - "Email": "catherine.campbell@sakilacustomer.org", - "AddressID": 50, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.69, - "Avg": 4.248064516129032, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 50, - "StoreID": 1, - "FirstName": "Diane", - "LastName": "Collins", - "Email": "diane.collins@sakilacustomer.org", - "AddressID": 54, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 144.7, - "Avg": 4.823333333333333, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 66, - "StoreID": 2, - "FirstName": "Janice", - "LastName": "Ward", - "Email": "janice.ward@sakilacustomer.org", - "AddressID": 70, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 139.67, - "Avg": 4.232424242424242, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 75, - "StoreID": 2, - "FirstName": "Tammy", - "LastName": "Sanders", - "Email": "tammy.sanders@sakilacustomer.org", - "AddressID": 79, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 149.61, - "Avg": 3.836153846153846, - "Max": 9.99, - "Min": 0, - "Count": 39 - } - }, - { - "CustomerID": 78, - "StoreID": 1, - "FirstName": "Lori", - "LastName": "Wood", - "Email": "lori.wood@sakilacustomer.org", - "AddressID": 82, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 141.69, - "Avg": 4.570645161290322, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 80, - "StoreID": 1, - "FirstName": "Marilyn", - "LastName": "Ross", - "Email": "marilyn.ross@sakilacustomer.org", - "AddressID": 84, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 137.7, - "Avg": 4.59, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 84, - "StoreID": 2, - "FirstName": "Sara", - "LastName": "Perry", - "Email": "sara.perry@sakilacustomer.org", - "AddressID": 88, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.7, - "Avg": 4.29, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 86, - "StoreID": 2, - "FirstName": "Jacqueline", - "LastName": "Long", - "Email": "jacqueline.long@sakilacustomer.org", - "AddressID": 90, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.68, - "Avg": 4.58375, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 87, - "StoreID": 1, - "FirstName": "Wanda", - "LastName": "Patterson", - "Email": "wanda.patterson@sakilacustomer.org", - "AddressID": 91, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 137.72, - "Avg": 4.918571428571429, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 102, - "StoreID": 1, - "FirstName": "Crystal", - "LastName": "Ford", - "Email": "crystal.ford@sakilacustomer.org", - "AddressID": 106, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.7, - "Avg": 4.323333333333333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 103, - "StoreID": 1, - "FirstName": "Gladys", - "LastName": "Hamilton", - "Email": "gladys.hamilton@sakilacustomer.org", - "AddressID": 107, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.71, - "Avg": 4.4382758620689655, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 108, - "StoreID": 1, - "FirstName": "Tracy", - "LastName": "Cole", - "Email": "tracy.cole@sakilacustomer.org", - "AddressID": 112, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.72, - "Avg": 4.525714285714286, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 112, - "StoreID": 2, - "FirstName": "Rosa", - "LastName": "Reynolds", - "Email": "rosa.reynolds@sakilacustomer.org", - "AddressID": 116, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.72, - "Avg": 4.632857142857143, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 114, - "StoreID": 2, - "FirstName": "Grace", - "LastName": "Ellis", - "Email": "grace.ellis@sakilacustomer.org", - "AddressID": 118, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.7, - "Avg": 4.223333333333334, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 119, - "StoreID": 1, - "FirstName": "Sherry", - "LastName": "Marshall", - "Email": "sherry.marshall@sakilacustomer.org", - "AddressID": 123, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 139.69, - "Avg": 4.506129032258064, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 120, - "StoreID": 2, - "FirstName": "Sylvia", - "LastName": "Ortiz", - "Email": "sylvia.ortiz@sakilacustomer.org", - "AddressID": 124, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.7, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 125, - "StoreID": 1, - "FirstName": "Ethel", - "LastName": "Webb", - "Email": "ethel.webb@sakilacustomer.org", - "AddressID": 129, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.69, - "Avg": 4.248064516129032, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 137, - "StoreID": 2, - "FirstName": "Rhonda", - "LastName": "Kennedy", - "Email": "rhonda.kennedy@sakilacustomer.org", - "AddressID": 141, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 191.62, - "Avg": 5.042631578947368, - "Max": 9.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 141, - "StoreID": 1, - "FirstName": "Debbie", - "LastName": "Reyes", - "Email": "debbie.reyes@sakilacustomer.org", - "AddressID": 145, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.69, - "Avg": 4.119032258064516, - "Max": 7.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 144, - "StoreID": 1, - "FirstName": "Clara", - "LastName": "Shaw", - "Email": "clara.shaw@sakilacustomer.org", - "AddressID": 148, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 189.6, - "Avg": 4.74, - "Max": 9.99, - "Min": 0.99, - "Count": 40 - } - }, - { - "CustomerID": 146, - "StoreID": 1, - "FirstName": "Jamie", - "LastName": "Rice", - "Email": "jamie.rice@sakilacustomer.org", - "AddressID": 150, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.73, - "Avg": 4.6937037037037035, - "Max": 7.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 147, - "StoreID": 2, - "FirstName": "Joanne", - "LastName": "Robertson", - "Email": "joanne.robertson@sakilacustomer.org", - "AddressID": 151, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.68, - "Avg": 3.9275, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 148, - "StoreID": 1, - "FirstName": "Eleanor", - "LastName": "Hunt", - "Email": "eleanor.hunt@sakilacustomer.org", - "AddressID": 152, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 211.55, - "Avg": 4.7011111111111115, - "Max": 10.99, - "Min": 0.99, - "Count": 45 - } - }, - { - "CustomerID": 168, - "StoreID": 1, - "FirstName": "Regina", - "LastName": "Berry", - "Email": "regina.berry@sakilacustomer.org", - "AddressID": 172, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.68, - "Avg": 4.0525, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 172, - "StoreID": 1, - "FirstName": "Bernice", - "LastName": "Willis", - "Email": "bernice.willis@sakilacustomer.org", - "AddressID": 176, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.7, - "Avg": 4.456666666666667, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 176, - "StoreID": 1, - "FirstName": "June", - "LastName": "Carroll", - "Email": "june.carroll@sakilacustomer.org", - "AddressID": 180, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 151.68, - "Avg": 4.74, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 178, - "StoreID": 2, - "FirstName": "Marion", - "LastName": "Snyder", - "Email": "marion.snyder@sakilacustomer.org", - "AddressID": 182, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 194.61, - "Avg": 4.99, - "Max": 10.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 181, - "StoreID": 2, - "FirstName": "Ana", - "LastName": "Bradley", - "Email": "ana.bradley@sakilacustomer.org", - "AddressID": 185, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 167.67, - "Avg": 5.080909090909091, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 187, - "StoreID": 2, - "FirstName": "Brittany", - "LastName": "Riley", - "Email": "brittany.riley@sakilacustomer.org", - "AddressID": 191, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 151.73, - "Avg": 5.61962962962963, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 196, - "StoreID": 1, - "FirstName": "Alma", - "LastName": "Austin", - "Email": "alma.austin@sakilacustomer.org", - "AddressID": 200, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.69, - "Avg": 4.151290322580645, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 197, - "StoreID": 2, - "FirstName": "Sue", - "LastName": "Peters", - "Email": "sue.peters@sakilacustomer.org", - "AddressID": 201, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.68, - "Avg": 4.1775, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 200, - "StoreID": 2, - "FirstName": "Jeanne", - "LastName": "Lawson", - "Email": "jeanne.lawson@sakilacustomer.org", - "AddressID": 204, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.74, - "Avg": 4.874615384615384, - "Max": 10.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 204, - "StoreID": 1, - "FirstName": "Rosemary", - "LastName": "Schmidt", - "Email": "rosemary.schmidt@sakilacustomer.org", - "AddressID": 208, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.69, - "Avg": 4.344838709677419, - "Max": 11.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 206, - "StoreID": 1, - "FirstName": "Terri", - "LastName": "Vasquez", - "Email": "terri.vasquez@sakilacustomer.org", - "AddressID": 210, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.73, - "Avg": 4.6937037037037035, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 209, - "StoreID": 2, - "FirstName": "Tonya", - "LastName": "Chapman", - "Email": "tonya.chapman@sakilacustomer.org", - "AddressID": 213, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 147.71, - "Avg": 5.093448275862069, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 210, - "StoreID": 2, - "FirstName": "Ella", - "LastName": "Oliver", - "Email": "ella.oliver@sakilacustomer.org", - "AddressID": 214, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.7, - "Avg": 4.49, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 211, - "StoreID": 1, - "FirstName": "Stacey", - "LastName": "Montgomery", - "Email": "stacey.montgomery@sakilacustomer.org", - "AddressID": 215, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.67, - "Avg": 4.444545454545454, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 221, - "StoreID": 1, - "FirstName": "Bessie", - "LastName": "Morrison", - "Email": "bessie.morrison@sakilacustomer.org", - "AddressID": 225, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.73, - "Avg": 4.730740740740741, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 236, - "StoreID": 1, - "FirstName": "Marcia", - "LastName": "Dean", - "Email": "marcia.dean@sakilacustomer.org", - "AddressID": 240, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 166.61, - "Avg": 4.272051282051282, - "Max": 8.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 237, - "StoreID": 1, - "FirstName": "Tanya", - "LastName": "Gilbert", - "Email": "tanya.gilbert@sakilacustomer.org", - "AddressID": 241, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 138.69, - "Avg": 4.473870967741935, - "Max": 11.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 242, - "StoreID": 1, - "FirstName": "Glenda", - "LastName": "Frazier", - "Email": "glenda.frazier@sakilacustomer.org", - "AddressID": 246, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.71, - "Avg": 4.4382758620689655, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 257, - "StoreID": 2, - "FirstName": "Marsha", - "LastName": "Douglas", - "Email": "marsha.douglas@sakilacustomer.org", - "AddressID": 262, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.66, - "Avg": 4.195882352941177, - "Max": 7.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 259, - "StoreID": 2, - "FirstName": "Lena", - "LastName": "Jensen", - "Email": "lena.jensen@sakilacustomer.org", - "AddressID": 264, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 154.7, - "Avg": 5.156666666666666, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 265, - "StoreID": 2, - "FirstName": "Jennie", - "LastName": "Terry", - "Email": "jennie.terry@sakilacustomer.org", - "AddressID": 270, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 132.72, - "Avg": 4.74, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 267, - "StoreID": 1, - "FirstName": "Margie", - "LastName": "Wade", - "Email": "margie.wade@sakilacustomer.org", - "AddressID": 272, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.67, - "Avg": 4.323333333333333, - "Max": 9.99, - "Min": 0, - "Count": 33 - } - }, - { - "CustomerID": 273, - "StoreID": 2, - "FirstName": "Priscilla", - "LastName": "Lowe", - "Email": "priscilla.lowe@sakilacustomer.org", - "AddressID": 278, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.72, - "Avg": 4.668571428571429, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 295, - "StoreID": 1, - "FirstName": "Daisy", - "LastName": "Bates", - "Email": "daisy.bates@sakilacustomer.org", - "AddressID": 300, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.72, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 342, - "StoreID": 1, - "FirstName": "Harold", - "LastName": "Martino", - "Email": "harold.martino@sakilacustomer.org", - "AddressID": 347, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 346, - "StoreID": 1, - "FirstName": "Arthur", - "LastName": "Simpkins", - "Email": "arthur.simpkins@sakilacustomer.org", - "AddressID": 351, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 145.7, - "Avg": 4.8566666666666665, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 347, - "StoreID": 2, - "FirstName": "Ryan", - "LastName": "Salisbury", - "Email": "ryan.salisbury@sakilacustomer.org", - "AddressID": 352, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.7, - "Avg": 4.756666666666667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 348, - "StoreID": 2, - "FirstName": "Roger", - "LastName": "Quintanilla", - "Email": "roger.quintanilla@sakilacustomer.org", - "AddressID": 353, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 144.66, - "Avg": 4.254705882352941, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 349, - "StoreID": 2, - "FirstName": "Joe", - "LastName": "Gilliland", - "Email": "joe.gilliland@sakilacustomer.org", - "AddressID": 354, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.72, - "Avg": 4.775714285714286, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 354, - "StoreID": 2, - "FirstName": "Justin", - "LastName": "Ngo", - "Email": "justin.ngo@sakilacustomer.org", - "AddressID": 359, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.67, - "Avg": 3.808181818181818, - "Max": 8.99, - "Min": 0, - "Count": 33 - } - }, - { - "CustomerID": 360, - "StoreID": 2, - "FirstName": "Ralph", - "LastName": "Madrigal", - "Email": "ralph.madrigal@sakilacustomer.org", - "AddressID": 365, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 144.68, - "Avg": 4.52125, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 362, - "StoreID": 1, - "FirstName": "Nicholas", - "LastName": "Barfield", - "Email": "nicholas.barfield@sakilacustomer.org", - "AddressID": 367, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 140.69, - "Avg": 4.538387096774193, - "Max": 11.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 363, - "StoreID": 2, - "FirstName": "Roy", - "LastName": "Whiting", - "Email": "roy.whiting@sakilacustomer.org", - "AddressID": 368, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 139.72, - "Avg": 4.99, - "Max": 9.99, - "Min": 2.99, - "Count": 28 - } - }, - { - "CustomerID": 366, - "StoreID": 1, - "FirstName": "Brandon", - "LastName": "Huey", - "Email": "brandon.huey@sakilacustomer.org", - "AddressID": 371, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 145.64, - "Avg": 4.045555555555556, - "Max": 6.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 368, - "StoreID": 1, - "FirstName": "Harry", - "LastName": "Arce", - "Email": "harry.arce@sakilacustomer.org", - "AddressID": 373, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 0, - "Amount": { - "Sum": 139.69, - "Avg": 4.506129032258064, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 372, - "StoreID": 2, - "FirstName": "Steve", - "LastName": "Mackenzie", - "Email": "steve.mackenzie@sakilacustomer.org", - "AddressID": 377, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 152.68, - "Avg": 4.77125, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 373, - "StoreID": 1, - "FirstName": "Louis", - "LastName": "Leone", - "Email": "louis.leone@sakilacustomer.org", - "AddressID": 378, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 156.66, - "Avg": 4.607647058823529, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 380, - "StoreID": 1, - "FirstName": "Russell", - "LastName": "Brinson", - "Email": "russell.brinson@sakilacustomer.org", - "AddressID": 385, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 132.65, - "Avg": 3.79, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 390, - "StoreID": 1, - "FirstName": "Shawn", - "LastName": "Heaton", - "Email": "shawn.heaton@sakilacustomer.org", - "AddressID": 395, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.69, - "Avg": 4.602903225806451, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 403, - "StoreID": 1, - "FirstName": "Mike", - "LastName": "Way", - "Email": "mike.way@sakilacustomer.org", - "AddressID": 408, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 162.67, - "Avg": 4.92939393939394, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 404, - "StoreID": 2, - "FirstName": "Stanley", - "LastName": "Scroggins", - "Email": "stanley.scroggins@sakilacustomer.org", - "AddressID": 409, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.71, - "Avg": 4.610689655172414, - "Max": 10.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 410, - "StoreID": 2, - "FirstName": "Curtis", - "LastName": "Irby", - "Email": "curtis.irby@sakilacustomer.org", - "AddressID": 415, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 167.62, - "Avg": 4.411052631578947, - "Max": 10.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 426, - "StoreID": 1, - "FirstName": "Bradley", - "LastName": "Motley", - "Email": "bradley.motley@sakilacustomer.org", - "AddressID": 431, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.74, - "Avg": 4.836153846153846, - "Max": 10.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 436, - "StoreID": 1, - "FirstName": "Troy", - "LastName": "Quigley", - "Email": "troy.quigley@sakilacustomer.org", - "AddressID": 441, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.73, - "Avg": 4.6937037037037035, - "Max": 9.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 439, - "StoreID": 2, - "FirstName": "Alexander", - "LastName": "Fennell", - "Email": "alexander.fennell@sakilacustomer.org", - "AddressID": 444, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 137.67, - "Avg": 4.171818181818182, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 448, - "StoreID": 1, - "FirstName": "Miguel", - "LastName": "Betancourt", - "Email": "miguel.betancourt@sakilacustomer.org", - "AddressID": 453, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.73, - "Avg": 4.730740740740741, - "Max": 10.99, - "Min": 0, - "Count": 27 - } - }, - { - "CustomerID": 454, - "StoreID": 2, - "FirstName": "Alex", - "LastName": "Gresham", - "Email": "alex.gresham@sakilacustomer.org", - "AddressID": 459, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 143.68, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 459, - "StoreID": 1, - "FirstName": "Tommy", - "LastName": "Collazo", - "Email": "tommy.collazo@sakilacustomer.org", - "AddressID": 464, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 183.63, - "Avg": 4.962972972972973, - "Max": 10.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 462, - "StoreID": 2, - "FirstName": "Warren", - "LastName": "Sherrod", - "Email": "warren.sherrod@sakilacustomer.org", - "AddressID": 467, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 152.69, - "Avg": 4.925483870967742, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 467, - "StoreID": 2, - "FirstName": "Alvin", - "LastName": "Deloach", - "Email": "alvin.deloach@sakilacustomer.org", - "AddressID": 472, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.72, - "Avg": 4.811428571428571, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 468, - "StoreID": 1, - "FirstName": "Tim", - "LastName": "Cary", - "Email": "tim.cary@sakilacustomer.org", - "AddressID": 473, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 154.66, - "Avg": 4.548823529411765, - "Max": 10.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 469, - "StoreID": 2, - "FirstName": "Wesley", - "LastName": "Bull", - "Email": "wesley.bull@sakilacustomer.org", - "AddressID": 474, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 158.65, - "Avg": 4.532857142857143, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 470, - "StoreID": 1, - "FirstName": "Gordon", - "LastName": "Allard", - "Email": "gordon.allard@sakilacustomer.org", - "AddressID": 475, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 157.69, - "Avg": 5.086774193548387, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 472, - "StoreID": 1, - "FirstName": "Greg", - "LastName": "Robins", - "Email": "greg.robins@sakilacustomer.org", - "AddressID": 477, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.74, - "Avg": 5.066923076923077, - "Max": 8.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 479, - "StoreID": 1, - "FirstName": "Zachary", - "LastName": "Hite", - "Email": "zachary.hite@sakilacustomer.org", - "AddressID": 484, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.71, - "Avg": 4.645172413793103, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 482, - "StoreID": 1, - "FirstName": "Maurice", - "LastName": "Crawley", - "Email": "maurice.crawley@sakilacustomer.org", - "AddressID": 487, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 0, - "Amount": { - "Sum": 125.74, - "Avg": 4.836153846153846, - "Max": 8.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 484, - "StoreID": 1, - "FirstName": "Roberto", - "LastName": "Vu", - "Email": "roberto.vu@sakilacustomer.org", - "AddressID": 489, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.73, - "Avg": 4.767777777777778, - "Max": 9.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 494, - "StoreID": 2, - "FirstName": "Ramon", - "LastName": "Choate", - "Email": "ramon.choate@sakilacustomer.org", - "AddressID": 499, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 135.7, - "Avg": 4.523333333333333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 502, - "StoreID": 1, - "FirstName": "Brett", - "LastName": "Cornwell", - "Email": "brett.cornwell@sakilacustomer.org", - "AddressID": 507, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.7, - "Avg": 4.3566666666666665, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 513, - "StoreID": 2, - "FirstName": "Duane", - "LastName": "Tubbs", - "Email": "duane.tubbs@sakilacustomer.org", - "AddressID": 519, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 143.7, - "Avg": 4.79, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 520, - "StoreID": 2, - "FirstName": "Mitchell", - "LastName": "Westmoreland", - "Email": "mitchell.westmoreland@sakilacustomer.org", - "AddressID": 526, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.69, - "Avg": 4.119032258064516, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 522, - "StoreID": 2, - "FirstName": "Arnold", - "LastName": "Havens", - "Email": "arnold.havens@sakilacustomer.org", - "AddressID": 528, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 161.68, - "Avg": 5.0525, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 526, - "StoreID": 2, - "FirstName": "Karl", - "LastName": "Seal", - "Email": "karl.seal@sakilacustomer.org", - "AddressID": 532, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 208.58, - "Avg": 4.9661904761904765, - "Max": 10.99, - "Min": 0.99, - "Count": 42 - } - }, - { - "CustomerID": 532, - "StoreID": 2, - "FirstName": "Neil", - "LastName": "Renner", - "Email": "neil.renner@sakilacustomer.org", - "AddressID": 538, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 149.69, - "Avg": 4.828709677419355, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 533, - "StoreID": 1, - "FirstName": "Jessie", - "LastName": "Milam", - "Email": "jessie.milam@sakilacustomer.org", - "AddressID": 539, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 132.7, - "Avg": 4.423333333333333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 550, - "StoreID": 2, - "FirstName": "Guy", - "LastName": "Brownlee", - "Email": "guy.brownlee@sakilacustomer.org", - "AddressID": 556, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 151.69, - "Avg": 4.893225806451613, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 558, - "StoreID": 1, - "FirstName": "Jimmie", - "LastName": "Eggleston", - "Email": "jimmie.eggleston@sakilacustomer.org", - "AddressID": 564, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 0, - "Amount": { - "Sum": 135.72, - "Avg": 4.847142857142857, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 560, - "StoreID": 1, - "FirstName": "Jordan", - "LastName": "Archuleta", - "Email": "jordan.archuleta@sakilacustomer.org", - "AddressID": 566, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.71, - "Avg": 4.472758620689655, - "Max": 9.99, - "Min": 0, - "Count": 29 - } - }, - { - "CustomerID": 566, - "StoreID": 1, - "FirstName": "Casey", - "LastName": "Mena", - "Email": "casey.mena@sakilacustomer.org", - "AddressID": 572, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 576, - "StoreID": 2, - "FirstName": "Morris", - "LastName": "Mccarter", - "Email": "morris.mccarter@sakilacustomer.org", - "AddressID": 582, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 135.68, - "Avg": 4.24, - "Max": 8.99, - "Min": 0, - "Count": 32 - } - }, - { - "CustomerID": 591, - "StoreID": 1, - "FirstName": "Kent", - "LastName": "Arsenault", - "Email": "kent.arsenault@sakilacustomer.org", - "AddressID": 597, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.73, - "Avg": 4.99, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/joined_everything.json b/tests/postgres/testdata/joined_everything.json deleted file mode 100644 index 0676e31..0000000 --- a/tests/postgres/testdata/joined_everything.json +++ /dev/null @@ -1,252320 +0,0 @@ -[ - { - "ArtistId": 1, - "Name": "AC/DC", - "Albums": [ - { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You", - "ArtistId": 1, - "Tracks": [ - { - "TrackId": 1, - "Name": "For Those About To Rock (We Salute You)", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 343719, - "Bytes": 11170334, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 6, - "Name": "Put The Finger On You", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 205662, - "Bytes": 6713451, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 7, - "Name": "Let's Get It Up", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 233926, - "Bytes": 7636561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 8, - "Name": "Inject The Venom", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 210834, - "Bytes": 6852860, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 9, - "Name": "Snowballed", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 203102, - "Bytes": 6599424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 10, - "Name": "Evil Walks", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 263497, - "Bytes": 8611245, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 11, - "Name": "C.O.D.", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 199836, - "Bytes": 6566314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 12, - "Name": "Breaking The Rules", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 263288, - "Bytes": 8596840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 13, - "Name": "Night Of The Long Knives", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 205688, - "Bytes": 6706347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 14, - "Name": "Spellbound", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 270863, - "Bytes": 8817038, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 4, - "Title": "Let There Be Rock", - "ArtistId": 1, - "Tracks": [ - { - "TrackId": 15, - "Name": "Go Down", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 331180, - "Bytes": 10847611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 16, - "Name": "Dog Eat Dog", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 215196, - "Bytes": 7032162, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 17, - "Name": "Let There Be Rock", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 366654, - "Bytes": 12021261, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 18, - "Name": "Bad Boy Boogie", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 267728, - "Bytes": 8776140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 19, - "Name": "Problem Child", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 325041, - "Bytes": 10617116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 20, - "Name": "Overdose", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 369319, - "Bytes": 12066294, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 21, - "Name": "Hell Ain't A Bad Place To Be", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 254380, - "Bytes": 8331286, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 22, - "Name": "Whole Lotta Rosie", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 323761, - "Bytes": 10547154, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 2, - "Name": "Accept", - "Albums": [ - { - "AlbumId": 2, - "Title": "Balls to the Wall", - "ArtistId": 2, - "Tracks": [ - { - "TrackId": 2, - "Name": "Balls to the Wall", - "AlbumId": 2, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 342562, - "Bytes": 5510424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 1, - "CustomerId": 2, - "InvoiceDate": "2009-01-01T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 3, - "Title": "Restless and Wild", - "ArtistId": 2, - "Tracks": [ - { - "TrackId": 3, - "Name": "Fast As a Shark", - "AlbumId": 3, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "F. Baltes, S. Kaufman, U. Dirkscneider \u0026 W. Hoffman", - "Milliseconds": 230619, - "Bytes": 3990994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 4, - "Name": "Restless and Wild", - "AlbumId": 3, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider \u0026 W. Hoffman", - "Milliseconds": 252051, - "Bytes": 4331779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 1, - "CustomerId": 2, - "InvoiceDate": "2009-01-01T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 5, - "Name": "Princess of the Dawn", - "AlbumId": 3, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "Deaffy \u0026 R.A. Smith-Diesel", - "Milliseconds": 375418, - "Bytes": 6290521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 3, - "Name": "Aerosmith", - "Albums": [ - { - "AlbumId": 5, - "Title": "Big Ones", - "ArtistId": 3, - "Tracks": [ - { - "TrackId": 23, - "Name": "Walk On Water", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw", - "Milliseconds": 295680, - "Bytes": 9719579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 24, - "Name": "Love In An Elevator", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry", - "Milliseconds": 321828, - "Bytes": 10552051, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 25, - "Name": "Rag Doll", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Jim Vallance, Holly Knight", - "Milliseconds": 264698, - "Bytes": 8675345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 26, - "Name": "What It Takes", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Milliseconds": 310622, - "Bytes": 10144730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 27, - "Name": "Dude (Looks Like A Lady)", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Milliseconds": 264855, - "Bytes": 8679940, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 28, - "Name": "Janie's Got A Gun", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Tom Hamilton", - "Milliseconds": 330736, - "Bytes": 10869391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 29, - "Name": "Cryin'", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Milliseconds": 309263, - "Bytes": 10056995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 30, - "Name": "Amazing", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Richie Supa", - "Milliseconds": 356519, - "Bytes": 11616195, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 31, - "Name": "Blind Man", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Milliseconds": 240718, - "Bytes": 7877453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 32, - "Name": "Deuces Are Wild", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Jim Vallance", - "Milliseconds": 215875, - "Bytes": 7074167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 33, - "Name": "The Other Side", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Jim Vallance", - "Milliseconds": 244375, - "Bytes": 7983270, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 34, - "Name": "Crazy", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Milliseconds": 316656, - "Bytes": 10402398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 35, - "Name": "Eat The Rich", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Jim Vallance", - "Milliseconds": 251036, - "Bytes": 8262039, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 36, - "Name": "Angel", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Desmond Child", - "Milliseconds": 307617, - "Bytes": 9989331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 37, - "Name": "Livin' On The Edge", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Mark Hudson", - "Milliseconds": 381231, - "Bytes": 12374569, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 4, - "Name": "Alanis Morissette", - "Albums": [ - { - "AlbumId": 6, - "Title": "Jagged Little Pill", - "ArtistId": 4, - "Tracks": [ - { - "TrackId": 38, - "Name": "All I Really Want", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 284891, - "Bytes": 9375567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 39, - "Name": "You Oughta Know", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 249234, - "Bytes": 8196916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 40, - "Name": "Perfect", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 188133, - "Bytes": 6145404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 41, - "Name": "Hand In My Pocket", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 221570, - "Bytes": 7224246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 42, - "Name": "Right Through You", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 176117, - "Bytes": 5793082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 43, - "Name": "Forgiven", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 300355, - "Bytes": 9753256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 44, - "Name": "You Learn", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 239699, - "Bytes": 7824837, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 45, - "Name": "Head Over Feet", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 267493, - "Bytes": 8758008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 46, - "Name": "Mary Jane", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 280607, - "Bytes": 9163588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 47, - "Name": "Ironic", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 229825, - "Bytes": 7598866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 48, - "Name": "Not The Doctor", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 227631, - "Bytes": 7604601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 49, - "Name": "Wake Up", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 293485, - "Bytes": 9703359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 50, - "Name": "You Oughta Know (Alternate)", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 491885, - "Bytes": 16008629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 5, - "Name": "Alice In Chains", - "Albums": [ - { - "AlbumId": 7, - "Title": "Facelift", - "ArtistId": 5, - "Tracks": [ - { - "TrackId": 51, - "Name": "We Die Young", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 152084, - "Bytes": 4925362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 52, - "Name": "Man In The Box", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 286641, - "Bytes": 9310272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 53, - "Name": "Sea Of Sorrow", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 349831, - "Bytes": 11316328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 54, - "Name": "Bleed The Freak", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 241946, - "Bytes": 7847716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 55, - "Name": "I Can't Remember", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 222955, - "Bytes": 7302550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 56, - "Name": "Love, Hate, Love", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 387134, - "Bytes": 12575396, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 57, - "Name": "It Ain't Like That", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Michael Starr, Sean Kinney", - "Milliseconds": 277577, - "Bytes": 8993793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 58, - "Name": "Sunshine", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 284969, - "Bytes": 9216057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 59, - "Name": "Put You Down", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 196231, - "Bytes": 6420530, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 60, - "Name": "Confusion", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Michael Starr, Layne Staley", - "Milliseconds": 344163, - "Bytes": 11183647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 61, - "Name": "I Know Somethin (Bout You)", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 261955, - "Bytes": 8497788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 62, - "Name": "Real Thing", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 243879, - "Bytes": 7937731, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 6, - "Name": "Ant�nio Carlos Jobim", - "Albums": [ - { - "AlbumId": 8, - "Title": "Warner 25 Anos", - "ArtistId": 6, - "Tracks": [ - { - "TrackId": 63, - "Name": "Desafinado", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 185338, - "Bytes": 5990473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 64, - "Name": "Garota De Ipanema", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 285048, - "Bytes": 9348428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 65, - "Name": "Samba De Uma Nota S� (One Note Samba)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 137273, - "Bytes": 4535401, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 66, - "Name": "Por Causa De Voc�", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 169900, - "Bytes": 5536496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 67, - "Name": "Ligia", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 251977, - "Bytes": 8226934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 68, - "Name": "Fotografia", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 129227, - "Bytes": 4198774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 69, - "Name": "Dindi (Dindi)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 253178, - "Bytes": 8149148, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 70, - "Name": "Se Todos Fossem Iguais A Voc� (Instrumental)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 134948, - "Bytes": 4393377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 71, - "Name": "Falando De Amor", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 219663, - "Bytes": 7121735, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 72, - "Name": "Angela", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 169508, - "Bytes": 5574957, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 73, - "Name": "Corcovado (Quiet Nights Of Quiet Stars)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 205662, - "Bytes": 6687994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 74, - "Name": "Outra Vez", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 126511, - "Bytes": 4110053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 75, - "Name": "O Boto (B�to)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 366837, - "Bytes": 12089673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 76, - "Name": "Canta, Canta Mais", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 271856, - "Bytes": 8719426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 34, - "Title": "Chill: Brazil (Disc 2)", - "ArtistId": 6, - "Tracks": [ - { - "TrackId": 391, - "Name": "Garota De Ipanema", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 279536, - "Bytes": 9141343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 392, - "Name": "Tim Tim Por Tim Tim", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 213237, - "Bytes": 7143328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 393, - "Name": "Tarde Em Itapo�", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 313704, - "Bytes": 10344491, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 328, - "CustomerId": 15, - "InvoiceDate": "2012-12-15T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 0.99, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 394, - "Name": "Tanto Tempo", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 170292, - "Bytes": 5572240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 329, - "CustomerId": 16, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 395, - "Name": "Eu Vim Da Bahia - Live", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 157988, - "Bytes": 5115428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 329, - "CustomerId": 16, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 396, - "Name": "Al� Al� Marciano", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 238106, - "Bytes": 8013065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 397, - "Name": "Linha Do Horizonte", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 279484, - "Bytes": 9275929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 330, - "CustomerId": 18, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 398, - "Name": "Only A Dream In Rio", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 371356, - "Bytes": 12192989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 399, - "Name": "Abrir A Porta", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 271960, - "Bytes": 8991141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 330, - "CustomerId": 18, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 400, - "Name": "Alice", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 165982, - "Bytes": 5594341, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 401, - "Name": "Momentos Que Marcam", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 280137, - "Bytes": 9313740, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 402, - "Name": "Um Jantar Pra Dois", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 237714, - "Bytes": 7819755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 403, - "Name": "Bumbo Da Mangueira", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 270158, - "Bytes": 9073350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 404, - "Name": "Mr Funk Samba", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 213890, - "Bytes": 7102545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 405, - "Name": "Santo Antonio", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 162716, - "Bytes": 5492069, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 406, - "Name": "Por Voc�", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 205557, - "Bytes": 6792493, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 407, - "Name": "S� Tinha De Ser Com Voc�", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 389642, - "Bytes": 13085596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 7, - "Name": "Apocalyptica", - "Albums": [ - { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos", - "ArtistId": 7, - "Tracks": [ - { - "TrackId": 77, - "Name": "Enter Sandman", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 221701, - "Bytes": 7286305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 78, - "Name": "Master Of Puppets", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 436453, - "Bytes": 14375310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 79, - "Name": "Harvester Of Sorrow", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 374543, - "Bytes": 12372536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 80, - "Name": "The Unforgiven", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 322925, - "Bytes": 10422447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 81, - "Name": "Sad But True", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 288208, - "Bytes": 9405526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 82, - "Name": "Creeping Death", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 308035, - "Bytes": 10110980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 83, - "Name": "Wherever I May Roam", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 369345, - "Bytes": 12033110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 84, - "Name": "Welcome Home (Sanitarium)", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 350197, - "Bytes": 11406431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 8, - "Name": "Audioslave", - "Albums": [ - { - "AlbumId": 10, - "Title": "Audioslave", - "ArtistId": 8, - "Tracks": [ - { - "TrackId": 85, - "Name": "Cochise", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 222380, - "Bytes": 5339931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 86, - "Name": "Show Me How to Live", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 277890, - "Bytes": 6672176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 87, - "Name": "Gasoline", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 279457, - "Bytes": 6709793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 88, - "Name": "What You Are", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 249391, - "Bytes": 5988186, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 89, - "Name": "Like a Stone", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 294034, - "Bytes": 7059624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 90, - "Name": "Set It Off", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 263262, - "Bytes": 6321091, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 91, - "Name": "Shadow on the Sun", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 343457, - "Bytes": 8245793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 92, - "Name": "I am the Highway", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 334942, - "Bytes": 8041411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 93, - "Name": "Exploder", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 206053, - "Bytes": 4948095, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 94, - "Name": "Hypnotize", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 206628, - "Bytes": 4961887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 95, - "Name": "Bring'em Back Alive", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 329534, - "Bytes": 7911634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 96, - "Name": "Light My Way", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 303595, - "Bytes": 7289084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 97, - "Name": "Getaway Car", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 299598, - "Bytes": 7193162, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 98, - "Name": "The Last Remaining Light", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 317492, - "Bytes": 7622615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 11, - "Title": "Out Of Exile", - "ArtistId": 8, - "Tracks": [ - { - "TrackId": 99, - "Name": "Your Time Has Come", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 255529, - "Bytes": 8273592, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 100, - "Name": "Out Of Exile", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 291291, - "Bytes": 9506571, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 101, - "Name": "Be Yourself", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 279484, - "Bytes": 9106160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 102, - "Name": "Doesn't Remind Me", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 255869, - "Bytes": 8357387, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 103, - "Name": "Drown Me Slowly", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 233691, - "Bytes": 7609178, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 104, - "Name": "Heaven's Dead", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 276688, - "Bytes": 9006158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 105, - "Name": "The Worm", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 237714, - "Bytes": 7710800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 106, - "Name": "Man Or Animal", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 233195, - "Bytes": 7542942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 107, - "Name": "Yesterday To Tomorrow", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 273763, - "Bytes": 8944205, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 108, - "Name": "Dandelion", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 278125, - "Bytes": 9003592, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 109, - "Name": "#1 Zero", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 299102, - "Bytes": 9731988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 110, - "Name": "The Curse", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 309786, - "Bytes": 10029406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 271, - "Title": "Revelations", - "ArtistId": 8, - "Tracks": [ - { - "TrackId": 3389, - "Name": "Revelations", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 252376, - "Bytes": 4111051, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3390, - "Name": "One and the Same", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 217732, - "Bytes": 3559040, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3391, - "Name": "Sound of a Gun", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 260154, - "Bytes": 4234990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3392, - "Name": "Until We Fall", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 230758, - "Bytes": 3766605, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3393, - "Name": "Original Fire", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 218916, - "Bytes": 3577821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3394, - "Name": "Broken City", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 228366, - "Bytes": 3728955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3395, - "Name": "Somedays", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 213831, - "Bytes": 3497176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3396, - "Name": "Shape of Things to Come", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 274597, - "Bytes": 4465399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3397, - "Name": "Jewel of the Summertime", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 233242, - "Bytes": 3806103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3398, - "Name": "Wide Awake", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 266308, - "Bytes": 4333050, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3399, - "Name": "Nothing Left to Say But Goodbye", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 213041, - "Bytes": 3484335, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3400, - "Name": "Moth", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 298049, - "Bytes": 4838884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3401, - "Name": "Show Me How to Live (Live at the Quart Festival)", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 301974, - "Bytes": 4901540, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3402, - "Name": "Band Members Discuss Tracks from \"Revelations\"", - "AlbumId": 271, - "MediaTypeId": 3, - "GenreId": 23, - "Composer": null, - "Milliseconds": 294294, - "Bytes": 61118891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 9, - "Name": "Music Videos" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 9, - "Name": "BackBeat", - "Albums": [ - { - "AlbumId": 12, - "Title": "BackBeat Soundtrack", - "ArtistId": 9, - "Tracks": [ - { - "TrackId": 111, - "Name": "Money", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Berry Gordy, Jr./Janie Bradford", - "Milliseconds": 147591, - "Bytes": 2365897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 112, - "Name": "Long Tall Sally", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell", - "Milliseconds": 106396, - "Bytes": 1707084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 113, - "Name": "Bad Boy", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Larry Williams", - "Milliseconds": 116088, - "Bytes": 1862126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 114, - "Name": "Twist And Shout", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Bert Russell/Phil Medley", - "Milliseconds": 161123, - "Bytes": 2582553, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 115, - "Name": "Please Mr. Postman", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett", - "Milliseconds": 137639, - "Bytes": 2206986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 116, - "Name": "C'Mon Everybody", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Eddie Cochran/Jerry Capehart", - "Milliseconds": 140199, - "Bytes": 2247846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 117, - "Name": "Rock 'N' Roll Music", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Chuck Berry", - "Milliseconds": 141923, - "Bytes": 2276788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 118, - "Name": "Slow Down", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Larry Williams", - "Milliseconds": 163265, - "Bytes": 2616981, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 119, - "Name": "Roadrunner", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Bo Diddley", - "Milliseconds": 143595, - "Bytes": 2301989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 120, - "Name": "Carol", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Chuck Berry", - "Milliseconds": 143830, - "Bytes": 2306019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 121, - "Name": "Good Golly Miss Molly", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Little Richard", - "Milliseconds": 106266, - "Bytes": 1704918, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 122, - "Name": "20 Flight Rock", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Ned Fairchild", - "Milliseconds": 107807, - "Bytes": 1299960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 10, - "Name": "Billy Cobham", - "Albums": [ - { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham", - "ArtistId": 10, - "Tracks": [ - { - "TrackId": 123, - "Name": "Quadrant", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 261851, - "Bytes": 8538199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 124, - "Name": "Snoopy's search-Red baron", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 456071, - "Bytes": 15075616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 125, - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 248084, - "Bytes": 8217867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 126, - "Name": "Moon germs", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 294060, - "Bytes": 9714812, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 127, - "Name": "Stratus", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 582086, - "Bytes": 19115680, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 128, - "Name": "The pleasant pheasant", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 318066, - "Bytes": 10630578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 129, - "Name": "Solo-Panhandler", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 246151, - "Bytes": 8230661, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 130, - "Name": "Do what cha wanna", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "George Duke", - "Milliseconds": 274155, - "Bytes": 9018565, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 11, - "Name": "Black Label Society", - "Albums": [ - { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]", - "ArtistId": 11, - "Tracks": [ - { - "TrackId": 131, - "Name": "Intro/ Low Down", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 323683, - "Bytes": 10642901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 132, - "Name": "13 Years Of Grief", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 246987, - "Bytes": 8137421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 133, - "Name": "Stronger Than Death", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 300747, - "Bytes": 9869647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 134, - "Name": "All For You", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 235833, - "Bytes": 7726948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 135, - "Name": "Super Terrorizer", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 319373, - "Bytes": 10513905, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 136, - "Name": "Phoney Smile Fake Hellos", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 273606, - "Bytes": 9011701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 137, - "Name": "Lost My Better Half", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 284081, - "Bytes": 9355309, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 138, - "Name": "Bored To Tears", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 247327, - "Bytes": 8130090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 139, - "Name": "A.N.D.R.O.T.A.Z.", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 266266, - "Bytes": 8574746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 140, - "Name": "Born To Booze", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 282122, - "Bytes": 9257358, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 141, - "Name": "World Of Trouble", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 359157, - "Bytes": 11820932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 142, - "Name": "No More Tears", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 555075, - "Bytes": 18041629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 143, - "Name": "The Begining... At Last", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 365662, - "Bytes": 11965109, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]", - "ArtistId": 11, - "Tracks": [ - { - "TrackId": 144, - "Name": "Heart Of Gold", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 194873, - "Bytes": 6417460, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 145, - "Name": "Snowblind", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 420022, - "Bytes": 13842549, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 146, - "Name": "Like A Bird", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 276532, - "Bytes": 9115657, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 147, - "Name": "Blood In The Wall", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 284368, - "Bytes": 9359475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 148, - "Name": "The Beginning...At Last", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 271960, - "Bytes": 8975814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 12, - "Name": "Black Sabbath", - "Albums": [ - { - "AlbumId": 16, - "Title": "Black Sabbath", - "ArtistId": 12, - "Tracks": [ - { - "TrackId": 149, - "Name": "Black Sabbath", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 382066, - "Bytes": 12440200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 150, - "Name": "The Wizard", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 264829, - "Bytes": 8646737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 151, - "Name": "Behind The Wall Of Sleep", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 217573, - "Bytes": 7169049, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 152, - "Name": "N.I.B.", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 368770, - "Bytes": 12029390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 153, - "Name": "Evil Woman", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 204930, - "Bytes": 6655170, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 154, - "Name": "Sleeping Village", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 644571, - "Bytes": 21128525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 155, - "Name": "Warning", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 212062, - "Bytes": 6893363, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)", - "ArtistId": 12, - "Tracks": [ - { - "TrackId": 156, - "Name": "Wheels Of Confusion / The Straightener", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 494524, - "Bytes": 16065830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 157, - "Name": "Tomorrow's Dream", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 192496, - "Bytes": 6252071, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 158, - "Name": "Changes", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 286275, - "Bytes": 9175517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 159, - "Name": "FX", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 103157, - "Bytes": 3331776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 160, - "Name": "Supernaut", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 285779, - "Bytes": 9245971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 161, - "Name": "Snowblind", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 331676, - "Bytes": 10813386, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 321, - "CustomerId": 36, - "InvoiceDate": "2012-11-14T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 0.99, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 162, - "Name": "Cornucopia", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 234814, - "Bytes": 7653880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 322, - "CustomerId": 37, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 163, - "Name": "Laguna Sunrise", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 173087, - "Bytes": 5671374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 322, - "CustomerId": 37, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 164, - "Name": "St. Vitus Dance", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 149655, - "Bytes": 4884969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 165, - "Name": "Under The Sun/Every Day Comes and Goes", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 350458, - "Bytes": 11360486, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 323, - "CustomerId": 39, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 13, - "Name": "Body Count", - "Albums": [ - { - "AlbumId": 18, - "Title": "Body Count", - "ArtistId": 13, - "Tracks": [ - { - "TrackId": 166, - "Name": "Smoked Pork", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 47333, - "Bytes": 1549074, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 167, - "Name": "Body Count's In The House", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 204251, - "Bytes": 6715413, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 323, - "CustomerId": 39, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 168, - "Name": "Now Sports", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 4884, - "Bytes": 161266, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 169, - "Name": "Body Count", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 317936, - "Bytes": 10489139, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 170, - "Name": "A Statistic", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 6373, - "Bytes": 211997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 171, - "Name": "Bowels Of The Devil", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 223216, - "Bytes": 7324125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 172, - "Name": "The Real Problem", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 11650, - "Bytes": 387360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 173, - "Name": "KKK Bitch", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 173008, - "Bytes": 5709631, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 174, - "Name": "D Note", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 95738, - "Bytes": 3067064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 175, - "Name": "Voodoo", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 300721, - "Bytes": 9875962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 176, - "Name": "The Winner Loses", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 392254, - "Bytes": 12843821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 177, - "Name": "There Goes The Neighborhood", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 350171, - "Bytes": 11443471, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 178, - "Name": "Oprah", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 6635, - "Bytes": 224313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 179, - "Name": "Evil Dick", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 239020, - "Bytes": 7828873, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 180, - "Name": "Body Count Anthem", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 166426, - "Bytes": 5463690, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 181, - "Name": "Momma's Gotta Die Tonight", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 371539, - "Bytes": 12122946, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 182, - "Name": "Freedom Of Speech", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 281234, - "Bytes": 9337917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 14, - "Name": "Bruce Dickinson", - "Albums": [ - { - "AlbumId": 19, - "Title": "Chemical Wedding", - "ArtistId": 14, - "Tracks": [ - { - "TrackId": 183, - "Name": "King In Crimson", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 283167, - "Bytes": 9218499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 184, - "Name": "Chemical Wedding", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 246177, - "Bytes": 8022764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 216, - "CustomerId": 56, - "InvoiceDate": "2011-08-07T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 0.99, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 185, - "Name": "The Tower", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 285257, - "Bytes": 9435693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 217, - "CustomerId": 57, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 186, - "Name": "Killing Floor", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 269557, - "Bytes": 8854240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 217, - "CustomerId": 57, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 187, - "Name": "Book Of Thel", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Eddie Casillas/Roy Z", - "Milliseconds": 494393, - "Bytes": 16034404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 188, - "Name": "Gates Of Urizen", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 265351, - "Bytes": 8627004, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 218, - "CustomerId": 59, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 1.98, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 189, - "Name": "Jerusalem", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 402390, - "Bytes": 13194463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 190, - "Name": "Trupets Of Jericho", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 359131, - "Bytes": 11820908, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 218, - "CustomerId": 59, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 1.98, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 191, - "Name": "Machine Men", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 341655, - "Bytes": 11138147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 192, - "Name": "The Alchemist", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 509413, - "Bytes": 16545657, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 193, - "Name": "Realword", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 237531, - "Bytes": 7802095, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 15, - "Name": "Buddy Guy", - "Albums": [ - { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection", - "ArtistId": 15, - "Tracks": [ - { - "TrackId": 194, - "Name": "First Time I Met The Blues", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eurreal Montgomery", - "Milliseconds": 140434, - "Bytes": 4604995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 195, - "Name": "Let Me Love You Baby", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 175386, - "Bytes": 5716994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 196, - "Name": "Stone Crazy", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Buddy Guy", - "Milliseconds": 433397, - "Bytes": 14184984, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 197, - "Name": "Pretty Baby", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 237662, - "Bytes": 7848282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 198, - "Name": "When My Left Eye Jumps", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Al Perkins/Willie Dixon", - "Milliseconds": 235311, - "Bytes": 7685363, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 199, - "Name": "Leave My Girl Alone", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Buddy Guy", - "Milliseconds": 204721, - "Bytes": 6859518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 200, - "Name": "She Suits Me To A Tee", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Buddy Guy", - "Milliseconds": 136803, - "Bytes": 4456321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 201, - "Name": "Keep It To Myself (Aka Keep It To Yourself)", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Sonny Boy Williamson [I]", - "Milliseconds": 166060, - "Bytes": 5487056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 202, - "Name": "My Time After Awhile", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Robert Geddins/Ron Badger/Sheldon Feinberg", - "Milliseconds": 182491, - "Bytes": 6022698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 203, - "Name": "Too Many Ways (Alternate)", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 135053, - "Bytes": 4459946, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 204, - "Name": "Talkin' 'Bout Women Obviously", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Amos Blakemore/Buddy Guy", - "Milliseconds": 589531, - "Bytes": 19161377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 16, - "Name": "Caetano Veloso", - "Albums": [ - { - "AlbumId": 21, - "Title": "Prenda Minha", - "ArtistId": 16, - "Tracks": [ - { - "TrackId": 205, - "Name": "Jorge Da Capad�cia", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Ben", - "Milliseconds": 177397, - "Bytes": 5842196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 206, - "Name": "Prenda Minha", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tradicional", - "Milliseconds": 99369, - "Bytes": 3225364, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 207, - "Name": "Medita��o", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tom Jobim - Newton Mendo�a", - "Milliseconds": 148793, - "Bytes": 4865597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 111, - "CustomerId": 17, - "InvoiceDate": "2010-04-29T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 0.99, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 208, - "Name": "Terra", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 482429, - "Bytes": 15889054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 112, - "CustomerId": 18, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 209, - "Name": "Eclipse Oculto", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 221936, - "Bytes": 7382703, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 112, - "CustomerId": 18, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 210, - "Name": "Texto \"Verdade Tropical\"", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 84088, - "Bytes": 2752161, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 211, - "Name": "Bem Devagar", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 133172, - "Bytes": 4333651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 113, - "CustomerId": 20, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 1.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 212, - "Name": "Dr�o", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 156264, - "Bytes": 5065932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 213, - "Name": "Saudosismo", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 144326, - "Bytes": 4726981, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 113, - "CustomerId": 20, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 1.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 214, - "Name": "Carolina", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Buarque", - "Milliseconds": 181812, - "Bytes": 5924159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 215, - "Name": "Sozinho", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Peninha", - "Milliseconds": 190589, - "Bytes": 6253200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 216, - "Name": "Esse Cara", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 223111, - "Bytes": 7217126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 217, - "Name": "Mel", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso - Waly Salom�o", - "Milliseconds": 294765, - "Bytes": 9854062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 218, - "Name": "Linha Do Equador", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso - Djavan", - "Milliseconds": 299337, - "Bytes": 10003747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 219, - "Name": "Odara", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 141270, - "Bytes": 4704104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 220, - "Name": "A Luz De Tieta", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 251742, - "Bytes": 8507446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 221, - "Name": "Atr�s Da Verd-E-Rosa S� N�o Vai Quem J� Morreu", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "David Corr�a - Paulinho Carvalho - Carlos Sena - Bira do Ponto", - "Milliseconds": 307252, - "Bytes": 10364247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 222, - "Name": "Vida Boa", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Fausto Nilo - Armandinho", - "Milliseconds": 281730, - "Bytes": 9411272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 22, - "Title": "Sozinho Remix Ao Vivo", - "ArtistId": 16, - "Tracks": [ - { - "TrackId": 223, - "Name": "Sozinho (Hitmakers Classic Mix)", - "AlbumId": 22, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 436636, - "Bytes": 14462072, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 224, - "Name": "Sozinho (Hitmakers Classic Radio Edit)", - "AlbumId": 22, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 195004, - "Bytes": 6455134, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 225, - "Name": "Sozinho (Ca�drum 'n' Bass)", - "AlbumId": 22, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 328071, - "Bytes": 10975007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 17, - "Name": "Chico Buarque", - "Albums": [ - { - "AlbumId": 23, - "Title": "Minha Historia", - "ArtistId": 17, - "Tracks": [ - { - "TrackId": 226, - "Name": "Carolina", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 163056, - "Bytes": 5375395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 227, - "Name": "Essa Mo�a Ta Diferente", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 167235, - "Bytes": 5568574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 228, - "Name": "Vai Passar", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 369763, - "Bytes": 12359161, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 229, - "Name": "Samba De Orly", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 162429, - "Bytes": 5431854, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 230, - "Name": "Bye, Bye Brasil", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 283402, - "Bytes": 9499590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 6, - "CustomerId": 37, - "InvoiceDate": "2009-01-19T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 0.99, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 231, - "Name": "Atras Da Porta", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189675, - "Bytes": 6132843, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 7, - "CustomerId": 38, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 232, - "Name": "Tatuagem", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 172120, - "Bytes": 5645703, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 7, - "CustomerId": 38, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 233, - "Name": "O Que Ser� (� Flor Da Terra)", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 167288, - "Bytes": 5574848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 234, - "Name": "Morena De Angola", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 186801, - "Bytes": 6373932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 8, - "CustomerId": 40, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 1.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 235, - "Name": "Apesar De Voc�", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 234501, - "Bytes": 7886937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 236, - "Name": "A Banda", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 132493, - "Bytes": 4349539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 8, - "CustomerId": 40, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 1.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 237, - "Name": "Minha Historia", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 182256, - "Bytes": 6029673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 238, - "Name": "Com A��car E Com Afeto", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 175386, - "Bytes": 5846442, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 239, - "Name": "Brejo Da Cruz", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 214099, - "Bytes": 7270749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 240, - "Name": "Meu Caro Amigo", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 260257, - "Bytes": 8778172, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 241, - "Name": "Geni E O Zepelim", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 317570, - "Bytes": 10342226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 242, - "Name": "Trocando Em Mi�dos", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 169717, - "Bytes": 5461468, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 243, - "Name": "Vai Trabalhar Vagabundo", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 139154, - "Bytes": 4693941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 244, - "Name": "Gota D'�gua", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 153208, - "Bytes": 5074189, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 245, - "Name": "Constru��o / Deus Lhe Pague", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 383059, - "Bytes": 12675305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 515, - "Name": "Meia-Lua Inteira", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222093, - "Bytes": 7466288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 516, - "Name": "Voce e Linda", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242938, - "Bytes": 8050268, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 517, - "Name": "Um Indio", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 195944, - "Bytes": 6453213, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 518, - "Name": "Podres Poderes", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259761, - "Bytes": 8622495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 519, - "Name": "Voce Nao Entende Nada - Cotidiano", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 421982, - "Bytes": 13885612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 520, - "Name": "O Estrangeiro", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 374700, - "Bytes": 12472890, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 521, - "Name": "Menino Do Rio", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 147670, - "Bytes": 4862277, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 522, - "Name": "Qualquer Coisa", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193410, - "Bytes": 6372433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 523, - "Name": "Sampa", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 185051, - "Bytes": 6151831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 524, - "Name": "Queixa", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 299676, - "Bytes": 9953962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 525, - "Name": "O Leaozinho", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 184398, - "Bytes": 6098150, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 526, - "Name": "Fora Da Ordem", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 354011, - "Bytes": 11746781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 527, - "Name": "Terra", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 401319, - "Bytes": 13224055, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 528, - "Name": "Alegria, Alegria", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 169221, - "Bytes": 5497025, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 18, - "Name": "Chico Science \u0026 Na��o Zumbi", - "Albums": [ - { - "AlbumId": 24, - "Title": "Afrociberdelia", - "ArtistId": 18, - "Tracks": [ - { - "TrackId": 246, - "Name": "Mateus Enter", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 33149, - "Bytes": 1103013, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 247, - "Name": "O Cidad�o Do Mundo", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 200933, - "Bytes": 6724966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 248, - "Name": "Etnia", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 152555, - "Bytes": 5061413, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 249, - "Name": "Quilombo Groove [Instrumental]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 151823, - "Bytes": 5042447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 250, - "Name": "Mac�", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 249600, - "Bytes": 8253934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 251, - "Name": "Um Passeio No Mundo Livre", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 240091, - "Bytes": 7984291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 252, - "Name": "Samba Do Lado", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 227317, - "Bytes": 7541688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 253, - "Name": "Maracatu At�mico", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 284264, - "Bytes": 9670057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 254, - "Name": "O Encontro De Isaac Asimov Com Santos Dumont No C�u", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 99108, - "Bytes": 3240816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 255, - "Name": "Corpo De Lama", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 232672, - "Bytes": 7714954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 256, - "Name": "Sobremesa", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 240091, - "Bytes": 7960868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 257, - "Name": "Manguetown", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 194560, - "Bytes": 6475159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 258, - "Name": "Um Sat�lite Na Cabe�a", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 126615, - "Bytes": 4272821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 259, - "Name": "Bai�o Ambiental [Instrumental]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 152659, - "Bytes": 5198539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 260, - "Name": "Sangue De Bairro", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 132231, - "Bytes": 4415557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 261, - "Name": "Enquanto O Mundo Explode", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 88764, - "Bytes": 2968650, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 262, - "Name": "Interlude Zumbi", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 71627, - "Bytes": 2408550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 263, - "Name": "Crian�a De Domingo", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 208222, - "Bytes": 6984813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 264, - "Name": "Amor De Muito", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 175333, - "Bytes": 5881293, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 265, - "Name": "Samidarish [Instrumental]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 272431, - "Bytes": 8911641, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 266, - "Name": "Maracatu At�mico [Atomic Version]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 273084, - "Bytes": 9019677, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 267, - "Name": "Maracatu At�mico [Ragga Mix]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 210155, - "Bytes": 6986421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 268, - "Name": "Maracatu At�mico [Trip Hop]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 221492, - "Bytes": 7380787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 25, - "Title": "Da Lama Ao Caos", - "ArtistId": 18, - "Tracks": [ - { - "TrackId": 269, - "Name": "Banditismo Por Uma Questa", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 307095, - "Bytes": 10251097, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 270, - "Name": "Banditismo Por Uma Questa", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 243644, - "Bytes": 8147224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 271, - "Name": "Rios Pontes \u0026 Overdrives", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 286720, - "Bytes": 9659152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 272, - "Name": "Cidade", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 216346, - "Bytes": 7241817, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 273, - "Name": "Praiera", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 183640, - "Bytes": 6172781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 274, - "Name": "Samba Makossa", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 271856, - "Bytes": 9095410, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 275, - "Name": "Da Lama Ao Caos", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 251559, - "Bytes": 8378065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 276, - "Name": "Maracatu De Tiro Certeiro", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 88868, - "Bytes": 2901397, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 277, - "Name": "Salustiano Song", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 215405, - "Bytes": 7183969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 278, - "Name": "Antene Se", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 248372, - "Bytes": 8253618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 279, - "Name": "Risoflora", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 105586, - "Bytes": 3536938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 280, - "Name": "Lixo Do Mangue", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193253, - "Bytes": 6534200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 281, - "Name": "Computadores Fazem Arte", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 404323, - "Bytes": 13702771, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 19, - "Name": "Cidade Negra", - "Albums": [ - { - "AlbumId": 26, - "Title": "Ac�stico MTV [Live]", - "ArtistId": 19, - "Tracks": [ - { - "TrackId": 282, - "Name": "Girassol", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Pedro Luis/Toni Garrido", - "Milliseconds": 249808, - "Bytes": 8327676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 283, - "Name": "A Sombra Da Maldade", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Toni Garrido", - "Milliseconds": 230922, - "Bytes": 7697230, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 284, - "Name": "Johnny B. Goode", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Chuck Berry", - "Milliseconds": 254615, - "Bytes": 8505985, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 285, - "Name": "Soldado Da Paz", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Herbert Vianna", - "Milliseconds": 194220, - "Bytes": 6455080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 286, - "Name": "Firmamento", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Henry Lawes/Laz�o/Toni Garrido/Winston Foser-Vers", - "Milliseconds": 222145, - "Bytes": 7402658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 287, - "Name": "Extra", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Gilberto Gil", - "Milliseconds": 304352, - "Bytes": 10078050, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 288, - "Name": "O Er�", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 236382, - "Bytes": 7866924, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 289, - "Name": "Podes Crer", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 232280, - "Bytes": 7747747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 290, - "Name": "A Estrada", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 248842, - "Bytes": 8275673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 291, - "Name": "Berlim", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Toni Garrido", - "Milliseconds": 207542, - "Bytes": 6920424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 292, - "Name": "J� Foi", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 221544, - "Bytes": 7388466, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 293, - "Name": "Onde Voc� Mora?", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Marisa Monte/Nando Reis", - "Milliseconds": 256026, - "Bytes": 8502588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 294, - "Name": "Pensamento", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gamma/Laz�o/R�s Bernard", - "Milliseconds": 173008, - "Bytes": 5748424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 295, - "Name": "Concilia��o", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Laz�o/R�s Bernardo", - "Milliseconds": 257619, - "Bytes": 8552474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 296, - "Name": "Realidade Virtual", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 195239, - "Bytes": 6503533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 297, - "Name": "Mensagem", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/R�s Bernardo", - "Milliseconds": 225332, - "Bytes": 7488852, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 298, - "Name": "A Cor Do Sol", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Da Gama/Laz�o", - "Milliseconds": 231392, - "Bytes": 7663348, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 27, - "Title": "Cidade Negra - Hits", - "ArtistId": 19, - "Tracks": [ - { - "TrackId": 299, - "Name": "Onde Voc� Mora?", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Marisa Monte/Nando Reis", - "Milliseconds": 298396, - "Bytes": 10056970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 300, - "Name": "O Er�", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido", - "Milliseconds": 206942, - "Bytes": 6950332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 301, - "Name": "A Sombra Da Maldade", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Toni Garrido", - "Milliseconds": 285231, - "Bytes": 9544383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 302, - "Name": "A Estrada", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Lazao/Toni Garrido", - "Milliseconds": 282174, - "Bytes": 9344477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 303, - "Name": "Falar A Verdade", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Ras Bernardo", - "Milliseconds": 244950, - "Bytes": 8189093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 304, - "Name": "Firmamento", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Harry Lawes/Winston Foster-Vers", - "Milliseconds": 225488, - "Bytes": 7507866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 305, - "Name": "Pensamento", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Ras Bernardo", - "Milliseconds": 192391, - "Bytes": 6399761, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 306, - "Name": "Realidade Virtual", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gamma/Lazao/Toni Garrido", - "Milliseconds": 240300, - "Bytes": 8069934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 307, - "Name": "Doutor", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Toni Garrido", - "Milliseconds": 178155, - "Bytes": 5950952, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 308, - "Name": "Na Frente Da TV", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Lazao/Ras Bernardo", - "Milliseconds": 289750, - "Bytes": 9633659, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 309, - "Name": "Downtown", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Cidade Negra", - "Milliseconds": 239725, - "Bytes": 8024386, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 310, - "Name": "S�bado A Noite", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Lulu Santos", - "Milliseconds": 267363, - "Bytes": 8895073, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 311, - "Name": "A Cor Do Sol", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Da Gama/Lazao", - "Milliseconds": 273031, - "Bytes": 9142937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 312, - "Name": "Eu Tamb�m Quero Beijar", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Fausto Nilo/Moraes Moreira/Pepeu Gomes", - "Milliseconds": 211147, - "Bytes": 7029400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 20, - "Name": "Cl�udio Zoli", - "Albums": [ - { - "AlbumId": 28, - "Title": "Na Pista", - "ArtistId": 20, - "Tracks": [ - { - "TrackId": 313, - "Name": "Noite Do Prazer", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 311353, - "Bytes": 10309980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 314, - "Name": "� Francesa", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244532, - "Bytes": 8150846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 315, - "Name": "Cada Um Cada Um (A Namoradeira)", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 253492, - "Bytes": 8441034, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 316, - "Name": "Linha Do Equador", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244715, - "Bytes": 8123466, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 317, - "Name": "Amor Demais", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 254040, - "Bytes": 8420093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 318, - "Name": "F�rias", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 264202, - "Bytes": 8731945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 319, - "Name": "Gostava Tanto De Voc�", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230452, - "Bytes": 7685326, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 320, - "Name": "Flor Do Futuro", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 275748, - "Bytes": 9205941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 321, - "Name": "Felicidade Urgente", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 266605, - "Bytes": 8873358, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 322, - "Name": "Livre Pra Viver", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 214595, - "Bytes": 7111596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 21, - "Name": "Various Artists", - "Albums": [ - { - "AlbumId": 29, - "Title": "Ax� Bahia 2001", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 323, - "Name": "Dig-Dig, Lambe-Lambe (Ao Vivo)", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cassiano Costa/Cintia Maviane/J.F./Lucas Costa", - "Milliseconds": 205479, - "Bytes": 6892516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 324, - "Name": "Perer�", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Augusto Concei��o/Chiclete Com Banana", - "Milliseconds": 198661, - "Bytes": 6643207, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 325, - "Name": "TriboTchan", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cal Adan/Paulo Levi", - "Milliseconds": 194194, - "Bytes": 6507950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 326, - "Name": "Tapa Aqui, Descobre Ali", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Paulo Levi/W. Rangel", - "Milliseconds": 188630, - "Bytes": 6327391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 327, - "Name": "Daniela", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Jorge Cardoso/Pierre Onasis", - "Milliseconds": 230791, - "Bytes": 7748006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 328, - "Name": "Bate Lata", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "F�bio Nolasco/Gal Sales/Ivan Brasil", - "Milliseconds": 206733, - "Bytes": 7034985, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 329, - "Name": "Garotas do Brasil", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maur�cio Vieira", - "Milliseconds": 210155, - "Bytes": 6973625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 330, - "Name": "Levada do Amor (Ailoviu)", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Luiz Wanderley/Paulo Levi", - "Milliseconds": 190093, - "Bytes": 6457752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 331, - "Name": "Lavadeira", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Do Vale, Valverde/Gal Oliveira/Luciano Pinto", - "Milliseconds": 214256, - "Bytes": 7254147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 332, - "Name": "Reboladeira", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cal Adan/Ferrugem/Julinho Carioca/Tr�ona N� Dhomhnaill", - "Milliseconds": 210599, - "Bytes": 7027525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 333, - "Name": "� que Nessa Encarna��o Eu Nasci Manga", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Lucina/Luli", - "Milliseconds": 196519, - "Bytes": 6568081, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 334, - "Name": "Reggae Tchan", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cal Adan/Del Rey, Tension/Edu Casanova", - "Milliseconds": 206654, - "Bytes": 6931328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 335, - "Name": "My Love", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Jauperi/Zeu G�es", - "Milliseconds": 203493, - "Bytes": 6772813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 336, - "Name": "Latinha de Cerveja", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Adriano Bernandes/Edmar Neves", - "Milliseconds": 166687, - "Bytes": 5532564, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 32, - "Title": "Carnaval 2001", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 360, - "Name": "Vai-Vai 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 276349, - "Bytes": 9402241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 361, - "Name": "X-9 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 273920, - "Bytes": 9310370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 362, - "Name": "Gavioes 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 282723, - "Bytes": 9616640, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 363, - "Name": "Nene 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284969, - "Bytes": 9694508, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 364, - "Name": "Rosas De Ouro 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284342, - "Bytes": 9721084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 365, - "Name": "Mocidade Alegre 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 282488, - "Bytes": 9599937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 366, - "Name": "Camisa Verde 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 283454, - "Bytes": 9633755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 367, - "Name": "Leandro De Itaquera 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 274808, - "Bytes": 9451845, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 368, - "Name": "Tucuruvi 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 287921, - "Bytes": 9883335, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 369, - "Name": "Aguia De Ouro 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284160, - "Bytes": 9698729, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 370, - "Name": "Ipiranga 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 248293, - "Bytes": 8522591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 371, - "Name": "Morro Da Casa Verde 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284708, - "Bytes": 9718778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 372, - "Name": "Perola Negra 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 281626, - "Bytes": 9619196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 373, - "Name": "Sao Lucas 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 296254, - "Bytes": 10020122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 556, - "Name": "Imperatriz", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Guga/Marquinho Lessa/Tuninho Professor", - "Milliseconds": 339173, - "Bytes": 11348710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 557, - "Name": "Beija-Flor", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caruso/Cleber/Deo/Osmar", - "Milliseconds": 327000, - "Bytes": 10991159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 558, - "Name": "Viradouro", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto", - "Milliseconds": 344320, - "Bytes": 11484362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 559, - "Name": "Mocidade", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Domenil/J. Brito/Joaozinho/Rap, Marcelo Do", - "Milliseconds": 261720, - "Bytes": 8817757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 560, - "Name": "Unidos Da Tijuca", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir", - "Milliseconds": 338834, - "Bytes": 11440689, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 561, - "Name": "Salgueiro", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da", - "Milliseconds": 305920, - "Bytes": 10294741, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 562, - "Name": "Mangueira", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bizuca/Cl�vis P�/Gilson Bernini/Marelo D'Aguia", - "Milliseconds": 298318, - "Bytes": 9999506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 563, - "Name": "Uni�o Da Ilha", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dito/Djalma Falcao/Ilha, Almir Da/M�rcio Andr�", - "Milliseconds": 330945, - "Bytes": 11100945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 564, - "Name": "Grande Rio", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlos Santos/Ciro/Claudio Russo/Z� Luiz", - "Milliseconds": 307252, - "Bytes": 10251428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 565, - "Name": "Portela", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno", - "Milliseconds": 319608, - "Bytes": 10712216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 566, - "Name": "Caprichosos", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gule/Jorge 101/Lequinho/Luiz Piao", - "Milliseconds": 351320, - "Bytes": 11870956, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 567, - "Name": "Tradi��o", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Adalto Magalha/Lourenco", - "Milliseconds": 269165, - "Bytes": 9114880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 568, - "Name": "Imp�rio Serrano", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao", - "Milliseconds": 334942, - "Bytes": 11161196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 569, - "Name": "Tuiuti", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som", - "Milliseconds": 259657, - "Bytes": 8749492, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 53, - "Title": "Vozes do MPB", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 661, - "Name": "Linha de Passe (Jo�o Bosco)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230948, - "Bytes": 7902328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 662, - "Name": "Pela Luz dos Olhos Teus (Mi�cha e Tom Jobim)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 163970, - "Bytes": 5399626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 663, - "Name": "Ch�o de Giz (Elba Ramalho)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 274834, - "Bytes": 9016916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 664, - "Name": "Marina (Dorival Caymmi)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 172643, - "Bytes": 5523628, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 665, - "Name": "Aquarela (Toquinho)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259944, - "Bytes": 8480140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 666, - "Name": "Cora��o do Agreste (Faf� de Bel�m)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 258194, - "Bytes": 8380320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 667, - "Name": "Dona (Roupa Nova)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 243356, - "Bytes": 7991295, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 668, - "Name": "Come�aria Tudo Outra Vez (Maria Creuza)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206994, - "Bytes": 6851151, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 669, - "Name": "Ca�ador de Mim (S� \u0026 Guarabyra)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238341, - "Bytes": 7751360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 670, - "Name": "Romaria (Renato Teixeira)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244793, - "Bytes": 8033885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 671, - "Name": "As Rosas N�o Falam (Beth Carvalho)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 116767, - "Bytes": 3836641, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 125, - "CustomerId": 34, - "InvoiceDate": "2010-06-30T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 672, - "Name": "Wave (Os Cariocas)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 130063, - "Bytes": 4298006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 126, - "CustomerId": 35, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 673, - "Name": "Garota de Ipanema (Dick Farney)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174367, - "Bytes": 5767474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 126, - "CustomerId": 35, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 674, - "Name": "Preciso Apender a Viver S� (Maysa)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 143464, - "Bytes": 4642359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 22, - "Name": "Led Zeppelin", - "Albums": [ - { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 337, - "Name": "You Shook Me", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J B Lenoir/Willie Dixon", - "Milliseconds": 315951, - "Bytes": 10249958, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 338, - "Name": "I Can't Quit You Baby", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 263836, - "Bytes": 8581414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 339, - "Name": "Communication Breakdown", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 192653, - "Bytes": 6287257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 340, - "Name": "Dazed and Confused", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 401920, - "Bytes": 13035765, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 341, - "Name": "The Girl I Love She Got Long Black Wavy Hair", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant", - "Milliseconds": 183327, - "Bytes": 5995686, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 342, - "Name": "What is and Should Never Be", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 260675, - "Bytes": 8497116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 343, - "Name": "Communication Breakdown(2)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 161149, - "Bytes": 5261022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 344, - "Name": "Travelling Riverside Blues", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Johnson/Robert Plant", - "Milliseconds": 312032, - "Bytes": 10232581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 345, - "Name": "Whole Lotta Love", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Milliseconds": 373394, - "Bytes": 12258175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 346, - "Name": "Somethin' Else", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bob Cochran/Sharon Sheeley", - "Milliseconds": 127869, - "Bytes": 4165650, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 347, - "Name": "Communication Breakdown(3)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 185260, - "Bytes": 6041133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 348, - "Name": "I Can't Quit You Baby(2)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 380551, - "Bytes": 12377615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 349, - "Name": "You Shook Me(2)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J B Lenoir/Willie Dixon", - "Milliseconds": 619467, - "Bytes": 20138673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 350, - "Name": "How Many More Times", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant", - "Milliseconds": 711836, - "Bytes": 23092953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 550, - "Name": "Custard Pie", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 253962, - "Bytes": 8348257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 551, - "Name": "The Rover", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 337084, - "Bytes": 11011286, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 552, - "Name": "In My Time Of Dying", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 666017, - "Bytes": 21676727, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 553, - "Name": "Houses Of The Holy", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 242494, - "Bytes": 7972503, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 554, - "Name": "Trampled Under Foot", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones", - "Milliseconds": 336692, - "Bytes": 11154468, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 555, - "Name": "Kashmir", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham", - "Milliseconds": 508604, - "Bytes": 16686580, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1577, - "Name": "Immigrant Song", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 201247, - "Bytes": 6457766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 259, - "CustomerId": 49, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1578, - "Name": "Heartbreaker", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Milliseconds": 316081, - "Bytes": 10179657, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 259, - "CustomerId": 49, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1579, - "Name": "Since I've Been Loving You", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 416365, - "Bytes": 13471959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1580, - "Name": "Black Dog", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 317622, - "Bytes": 10267572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 260, - "CustomerId": 51, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1581, - "Name": "Dazed And Confused", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Led Zeppelin", - "Milliseconds": 1116734, - "Bytes": 36052247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1582, - "Name": "Stairway To Heaven", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 529658, - "Bytes": 17050485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 260, - "CustomerId": 51, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1583, - "Name": "Going To California", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 234605, - "Bytes": 7646749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1584, - "Name": "That's The Way", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 343431, - "Bytes": 11248455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1585, - "Name": "Whole Lotta Love (Medley)", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon", - "Milliseconds": 825103, - "Bytes": 26742545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1586, - "Name": "Thank You", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 398262, - "Bytes": 12831826, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 128, - "Title": "Coda", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1587, - "Name": "We're Gonna Groove", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ben E.King/James Bethea", - "Milliseconds": 157570, - "Bytes": 5180975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1588, - "Name": "Poor Tom", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 182491, - "Bytes": 6016220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1589, - "Name": "I Can't Quit You Baby", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 258168, - "Bytes": 8437098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1590, - "Name": "Walter's Walk", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 270785, - "Bytes": 8712499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1591, - "Name": "Ozone Baby", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 215954, - "Bytes": 7079588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1592, - "Name": "Darlene", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Bonham, John Paul Jones", - "Milliseconds": 307226, - "Bytes": 10078197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1593, - "Name": "Bonzo's Montreux", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham", - "Milliseconds": 258925, - "Bytes": 8557447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1594, - "Name": "Wearing And Tearing", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 330004, - "Bytes": 10701590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 129, - "Title": "Houses Of The Holy", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1595, - "Name": "The Song Remains The Same", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 330004, - "Bytes": 10708950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1596, - "Name": "The Rain Song", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 459180, - "Bytes": 15029875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1597, - "Name": "Over The Hills And Far Away", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 290089, - "Bytes": 9552829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1598, - "Name": "The Crunge", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 197407, - "Bytes": 6460212, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1599, - "Name": "Dancing Days", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 223216, - "Bytes": 7250104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 153, - "CustomerId": 9, - "InvoiceDate": "2010-11-01T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 0.99, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1600, - "Name": "D'Yer Mak'er", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 262948, - "Bytes": 8645935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 154, - "CustomerId": 10, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1601, - "Name": "No Quarter", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones", - "Milliseconds": 420493, - "Bytes": 13656517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 154, - "CustomerId": 10, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1602, - "Name": "The Ocean", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 271098, - "Bytes": 8846469, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 130, - "Title": "In Through The Out Door", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1603, - "Name": "In The Evening", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant \u0026 John Paul Jones", - "Milliseconds": 410566, - "Bytes": 13399734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 155, - "CustomerId": 12, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1604, - "Name": "South Bound Saurez", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones \u0026 Robert Plant", - "Milliseconds": 254406, - "Bytes": 8420427, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1605, - "Name": "Fool In The Rain", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant \u0026 John Paul Jones", - "Milliseconds": 372950, - "Bytes": 12371433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 155, - "CustomerId": 12, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1606, - "Name": "Hot Dog", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page \u0026 Robert Plant", - "Milliseconds": 197198, - "Bytes": 6536167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1607, - "Name": "Carouselambra", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones, Jimmy Page \u0026 Robert Plant", - "Milliseconds": 634435, - "Bytes": 20858315, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1608, - "Name": "All My Love", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant \u0026 John Paul Jones", - "Milliseconds": 356284, - "Bytes": 11684862, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1609, - "Name": "I'm Gonna Crawl", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant \u0026 John Paul Jones", - "Milliseconds": 329639, - "Bytes": 10737665, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 131, - "Title": "IV", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1610, - "Name": "Black Dog", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 296672, - "Bytes": 9660588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1611, - "Name": "Rock \u0026 Roll", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 220917, - "Bytes": 7142127, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1612, - "Name": "The Battle Of Evermore", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 351555, - "Bytes": 11525689, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1613, - "Name": "Stairway To Heaven", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 481619, - "Bytes": 15706767, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1614, - "Name": "Misty Mountain Hop", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 278857, - "Bytes": 9092799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1615, - "Name": "Four Sticks", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 284447, - "Bytes": 9481301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1616, - "Name": "Going To California", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 215693, - "Bytes": 7068737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1617, - "Name": "When The Levee Breaks", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie", - "Milliseconds": 427702, - "Bytes": 13912107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 132, - "Title": "Led Zeppelin I", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1618, - "Name": "Good Times Bad Times", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 166164, - "Bytes": 5464077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1619, - "Name": "Babe I'm Gonna Leave You", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 401475, - "Bytes": 13189312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1620, - "Name": "You Shook Me", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. B. Lenoir/Willie Dixon", - "Milliseconds": 388179, - "Bytes": 12643067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1621, - "Name": "Dazed and Confused", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 386063, - "Bytes": 12610326, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1622, - "Name": "Your Time Is Gonna Come", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Paul Jones", - "Milliseconds": 274860, - "Bytes": 9011653, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 48, - "CustomerId": 29, - "InvoiceDate": "2009-07-24T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 0.99, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1623, - "Name": "Black Mountain Side", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 132702, - "Bytes": 4440602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 49, - "CustomerId": 30, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1624, - "Name": "Communication Breakdown", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 150230, - "Bytes": 4899554, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 49, - "CustomerId": 30, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1625, - "Name": "I Can't Quit You Baby", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 282671, - "Bytes": 9252733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1626, - "Name": "How Many More Times", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 508055, - "Bytes": 16541364, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 50, - "CustomerId": 32, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 133, - "Title": "Led Zeppelin II", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1627, - "Name": "Whole Lotta Love", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 334471, - "Bytes": 11026243, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1628, - "Name": "What Is And What Should Never Be", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 287973, - "Bytes": 9369385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 50, - "CustomerId": 32, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1629, - "Name": "The Lemon Song", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 379141, - "Bytes": 12463496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1630, - "Name": "Thank You", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 287791, - "Bytes": 9337392, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1631, - "Name": "Heartbreaker", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 253988, - "Bytes": 8387560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1632, - "Name": "Living Loving Maid (She's Just A Woman)", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 159216, - "Bytes": 5219819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1633, - "Name": "Ramble On", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 275591, - "Bytes": 9199710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1634, - "Name": "Moby Dick", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham, John Paul Jones, Jimmy Page", - "Milliseconds": 260728, - "Bytes": 8664210, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1635, - "Name": "Bring It On Home", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 259970, - "Bytes": 8494731, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 134, - "Title": "Led Zeppelin III", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1636, - "Name": "Immigrant Song", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 144875, - "Bytes": 4786461, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1637, - "Name": "Friends", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 233560, - "Bytes": 7694220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1638, - "Name": "Celebration Day", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 209528, - "Bytes": 6871078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1639, - "Name": "Since I've Been Loving You", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 444055, - "Bytes": 14482460, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1640, - "Name": "Out On The Tiles", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Bonham", - "Milliseconds": 246047, - "Bytes": 8060350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1641, - "Name": "Gallows Pole", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Traditional", - "Milliseconds": 296228, - "Bytes": 9757151, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1642, - "Name": "Tangerine", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 189675, - "Bytes": 6200893, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1643, - "Name": "That's The Way", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 337345, - "Bytes": 11202499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1644, - "Name": "Bron-Y-Aur Stomp", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 259500, - "Bytes": 8674508, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1645, - "Name": "Hats Off To (Roy) Harper", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Traditional", - "Milliseconds": 219376, - "Bytes": 7236640, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1646, - "Name": "In The Light", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 526785, - "Bytes": 17033046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1647, - "Name": "Bron-Yr-Aur", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 126641, - "Bytes": 4150746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1648, - "Name": "Down By The Seaside", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 316186, - "Bytes": 10371282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1649, - "Name": "Ten Years Gone", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 393116, - "Bytes": 12756366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1650, - "Name": "Night Flight", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 217547, - "Bytes": 7160647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1651, - "Name": "The Wanton Song", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 249887, - "Bytes": 8180988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1652, - "Name": "Boogie With Stu", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant", - "Milliseconds": 233273, - "Bytes": 7657086, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1653, - "Name": "Black Country Woman", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 273084, - "Bytes": 8951732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1654, - "Name": "Sick Again", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 283036, - "Bytes": 9279263, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 136, - "Title": "Presence", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1655, - "Name": "Achilles Last Stand", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 625502, - "Bytes": 20593955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1656, - "Name": "For Your Life", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 384391, - "Bytes": 12633382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1657, - "Name": "Royal Orleans", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 179591, - "Bytes": 5930027, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1658, - "Name": "Nobody's Fault But Mine", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 376215, - "Bytes": 12237859, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1659, - "Name": "Candy Store Rock", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 252055, - "Bytes": 8397423, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1660, - "Name": "Hots On For Nowhere", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 284107, - "Bytes": 9342342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1661, - "Name": "Tea For One", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 566752, - "Bytes": 18475264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1662, - "Name": "Rock \u0026 Roll", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Milliseconds": 242442, - "Bytes": 7897065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1663, - "Name": "Celebration Day", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 230034, - "Bytes": 7478487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1664, - "Name": "The Song Remains The Same", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 353358, - "Bytes": 11465033, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1665, - "Name": "Rain Song", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 505808, - "Bytes": 16273705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1666, - "Name": "Dazed And Confused", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 1612329, - "Bytes": 52490554, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 138, - "Title": "The Song Remains The Same (Disc 2)", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1667, - "Name": "No Quarter", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 749897, - "Bytes": 24399285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1668, - "Name": "Stairway To Heaven", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 657293, - "Bytes": 21354766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1669, - "Name": "Moby Dick", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 766354, - "Bytes": 25345841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1670, - "Name": "Whole Lotta Love", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Milliseconds": 863895, - "Bytes": 28191437, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 23, - "Name": "Frank Zappa \u0026 Captain Beefheart", - "Albums": [ - { - "AlbumId": 31, - "Title": "Bongo Fury", - "ArtistId": 23, - "Tracks": [ - { - "TrackId": 351, - "Name": "Debra Kadabra", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 234553, - "Bytes": 7649679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 352, - "Name": "Carolina Hard-Core Ecstasy", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 359680, - "Bytes": 11731061, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 353, - "Name": "Sam With The Showing Scalp Flat Top", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Don Van Vliet", - "Milliseconds": 171284, - "Bytes": 5572993, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 354, - "Name": "Poofter's Froth Wyoming Plans Ahead", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 183902, - "Bytes": 6007019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 355, - "Name": "200 Years Old", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 272561, - "Bytes": 8912465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 356, - "Name": "Cucamonga", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 144483, - "Bytes": 4728586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 357, - "Name": "Advance Romance", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 677694, - "Bytes": 22080051, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 358, - "Name": "Man With The Woman Head", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Don Van Vliet", - "Milliseconds": 88894, - "Bytes": 2922044, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 359, - "Name": "Muffin Man", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 332878, - "Bytes": 10891682, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 24, - "Name": "Marcos Valle", - "Albums": [ - { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)", - "ArtistId": 24, - "Tracks": [ - { - "TrackId": 374, - "Name": "Guanabara", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Marcos Valle", - "Milliseconds": 247614, - "Bytes": 8499591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 375, - "Name": "Mas Que Nada", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Ben", - "Milliseconds": 248398, - "Bytes": 8255254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 376, - "Name": "V�o Sobre o Horizonte", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "J.r.Bertami/Parana", - "Milliseconds": 225097, - "Bytes": 7528825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 377, - "Name": "A Paz", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Donato/Gilberto Gil", - "Milliseconds": 263183, - "Bytes": 8619173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 378, - "Name": "Wave (Vou te Contar)", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Antonio Carlos Jobim", - "Milliseconds": 271647, - "Bytes": 9057557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 379, - "Name": "�gua de Beber", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Antonio Carlos Jobim/Vinicius de Moraes", - "Milliseconds": 146677, - "Bytes": 4866476, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 380, - "Name": "Samba da Ben�aco", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Baden Powell/Vinicius de Moraes", - "Milliseconds": 282200, - "Bytes": 9440676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 381, - "Name": "Pode Parar", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Vercilo/Jota Maranhao", - "Milliseconds": 179408, - "Bytes": 6046678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 382, - "Name": "Menino do Rio", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 262713, - "Bytes": 8737489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 383, - "Name": "Ando Meio Desligado", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 195813, - "Bytes": 6547648, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 384, - "Name": "Mist�rio da Ra�a", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Luiz Melodia/Ricardo Augusto", - "Milliseconds": 184320, - "Bytes": 6191752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 385, - "Name": "All Star", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Nando Reis", - "Milliseconds": 176326, - "Bytes": 5891697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 386, - "Name": "Menina Bonita", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alexandre Brazil/Pedro Luis/Rodrigo Cabelo", - "Milliseconds": 237087, - "Bytes": 7938246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 387, - "Name": "Pescador de Ilus�es", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Macelo Yuka/O Rappa", - "Milliseconds": 245524, - "Bytes": 8267067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 388, - "Name": "� Vontade (Live Mix)", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bombom/Ed Motta", - "Milliseconds": 180636, - "Bytes": 5972430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 389, - "Name": "Maria Fuma�a", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Luiz Carlos/Oberdan", - "Milliseconds": 141008, - "Bytes": 4743149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 390, - "Name": "Sambassim (dj patife remix)", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alba Carvalho/Fernando Porto", - "Milliseconds": 213655, - "Bytes": 7243166, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 25, - "Name": "Milton Nascimento \u0026 Bebeto", - "Albums": null - }, - { - "ArtistId": 26, - "Name": "Azymuth", - "Albums": null - }, - { - "ArtistId": 27, - "Name": "Gilberto Gil", - "Albums": [ - { - "AlbumId": 85, - "Title": "As Can��es de Eu Tu Eles", - "ArtistId": 27, - "Tracks": [ - { - "TrackId": 1073, - "Name": "�ia Eu Aqui De Novo", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 219454, - "Bytes": 7469735, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1074, - "Name": "Bai�o Da Penha", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 247928, - "Bytes": 8393047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1075, - "Name": "Esperando Na Janela", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Manuca/Raimundinho DoAcordion/Targino Godim", - "Milliseconds": 261041, - "Bytes": 8660617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1076, - "Name": "Juazeiro", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 222275, - "Bytes": 7349779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1077, - "Name": "�ltimo Pau-De-Arara", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Corumb�/Jos� Gumar�es/Venancio", - "Milliseconds": 200437, - "Bytes": 6638563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1078, - "Name": "Asa Branca", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 217051, - "Bytes": 7387183, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1079, - "Name": "Qui Nem Jil�", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 204695, - "Bytes": 6937472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1080, - "Name": "Assum Preto", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 199653, - "Bytes": 6625000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1081, - "Name": "Pau-De-Arara", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Guio De Morais E Seus \"Parentes\"/Luiz Gonzaga", - "Milliseconds": 191660, - "Bytes": 6340649, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1082, - "Name": "A Volta Da Asa Branca", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Luiz Gonzaga/Z� Dantas", - "Milliseconds": 271020, - "Bytes": 9098093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1083, - "Name": "O Amor Daqui De Casa", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Gilberto Gil", - "Milliseconds": 148636, - "Bytes": 4888292, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1084, - "Name": "As Pegadas Do Amor", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Gilberto Gil", - "Milliseconds": 209136, - "Bytes": 6899062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1085, - "Name": "Lamento Sertanejo", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Dominguinhos/Gilberto Gil", - "Milliseconds": 260963, - "Bytes": 8518290, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1086, - "Name": "Casinha Feliz", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Gilberto Gil", - "Milliseconds": 32287, - "Bytes": 1039615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)", - "ArtistId": 27, - "Tracks": [ - { - "TrackId": 1087, - "Name": "Introdu��o (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 154096, - "Bytes": 5227579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1088, - "Name": "Palco (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238315, - "Bytes": 8026622, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1089, - "Name": "Is This Love (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 295262, - "Bytes": 9819759, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 349, - "CustomerId": 11, - "InvoiceDate": "2013-03-18T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 0.99, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1090, - "Name": "Stir It Up (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 282409, - "Bytes": 9594738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 350, - "CustomerId": 12, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1091, - "Name": "Refavela (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236695, - "Bytes": 7985305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 350, - "CustomerId": 12, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1092, - "Name": "Vendedor De Caranguejo (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 248842, - "Bytes": 8358128, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1093, - "Name": "Quanta (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 357485, - "Bytes": 11774865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 351, - "CustomerId": 14, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1094, - "Name": "Estrela (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 285309, - "Bytes": 9436411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1095, - "Name": "Pela Internet (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 263471, - "Bytes": 8804401, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 351, - "CustomerId": 14, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1096, - "Name": "C�rebro Eletr�nico (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 231627, - "Bytes": 7805352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1097, - "Name": "Opachor� (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259526, - "Bytes": 8596384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1098, - "Name": "Copacabana (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 289671, - "Bytes": 9673672, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1099, - "Name": "A Novidade (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 316969, - "Bytes": 10508000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1100, - "Name": "Ghandi (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222458, - "Bytes": 7481950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1101, - "Name": "De Ouro E Marfim (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 234971, - "Bytes": 7838453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 87, - "Title": "Quanta Gente Veio ver--B�nus De Carnaval", - "ArtistId": 27, - "Tracks": [ - { - "TrackId": 1102, - "Name": "Doce De Carnaval (Candy All)", - "AlbumId": 87, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 356101, - "Bytes": 11998470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1103, - "Name": "Lamento De Carnaval", - "AlbumId": 87, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 294530, - "Bytes": 9819276, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1104, - "Name": "Pretinha", - "AlbumId": 87, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 265273, - "Bytes": 8914579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 28, - "Name": "Jo�o Gilberto", - "Albums": null - }, - { - "ArtistId": 29, - "Name": "Bebel Gilberto", - "Albums": null - }, - { - "ArtistId": 30, - "Name": "Jorge Vercilo", - "Albums": null - }, - { - "ArtistId": 31, - "Name": "Baby Consuelo", - "Albums": null - }, - { - "ArtistId": 32, - "Name": "Ney Matogrosso", - "Albums": null - }, - { - "ArtistId": 33, - "Name": "Luiz Melodia", - "Albums": null - }, - { - "ArtistId": 34, - "Name": "Nando Reis", - "Albums": null - }, - { - "ArtistId": 35, - "Name": "Pedro Lu�s \u0026 A Parede", - "Albums": null - }, - { - "ArtistId": 36, - "Name": "O Rappa", - "Albums": [ - { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro", - "ArtistId": 36, - "Tracks": [ - { - "TrackId": 3319, - "Name": "Instinto Colectivo", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 300564, - "Bytes": 12024875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3320, - "Name": "Chapa o Coco", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 143830, - "Bytes": 5755478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3321, - "Name": "Prostituta", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 359000, - "Bytes": 14362307, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3322, - "Name": "Eu So Queria Sumir", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 269740, - "Bytes": 10791921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3323, - "Name": "Tres Reis", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 304143, - "Bytes": 12168015, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3324, - "Name": "Um Lugar ao Sol", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 212323, - "Bytes": 8495217, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3325, - "Name": "Batalha Naval", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 285727, - "Bytes": 11431382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3326, - "Name": "Todo o Carnaval tem seu Fim", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 237426, - "Bytes": 9499371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3327, - "Name": "O Misterio do Samba", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 226142, - "Bytes": 9047970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3328, - "Name": "Armadura", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 232881, - "Bytes": 9317533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3329, - "Name": "Na Ladeira", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 221570, - "Bytes": 8865099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3330, - "Name": "Carimbo", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 328751, - "Bytes": 13152314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3331, - "Name": "Catimbo", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 254484, - "Bytes": 10181692, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3332, - "Name": "Funk de Bamba", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 237322, - "Bytes": 9495184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3333, - "Name": "Chega no Suingue", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 221805, - "Bytes": 8874509, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3334, - "Name": "Mun-Ra", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 274651, - "Bytes": 10988338, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3335, - "Name": "Freestyle Love", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 318484, - "Bytes": 12741680, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 37, - "Name": "Ed Motta", - "Albums": [ - { - "AlbumId": 47, - "Title": "The Best of Ed Motta", - "ArtistId": 37, - "Tracks": [ - { - "TrackId": 583, - "Name": "Solu��o", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247431, - "Bytes": 8100449, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 584, - "Name": "Manuel", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230269, - "Bytes": 7677671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 585, - "Name": "Entre E Ou�a", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 286302, - "Bytes": 9391004, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 586, - "Name": "Um Contrato Com Deus", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 202501, - "Bytes": 6636465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 587, - "Name": "Um Jantar Pra Dois", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244009, - "Bytes": 8021589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 588, - "Name": "Vamos Dan�ar", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 226194, - "Bytes": 7617432, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 589, - "Name": "Um Love", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 181603, - "Bytes": 6095524, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 590, - "Name": "Seis Da Tarde", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238445, - "Bytes": 7935898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 591, - "Name": "Baixo Rio", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 198008, - "Bytes": 6521676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 592, - "Name": "Sombras Do Meu Destino", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 280685, - "Bytes": 9161539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 593, - "Name": "Do You Have Other Loves?", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 295235, - "Bytes": 9604273, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 594, - "Name": "Agora Que O Dia Acordou", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 323213, - "Bytes": 10572752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 595, - "Name": "J�!!!", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 217782, - "Bytes": 7103608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 596, - "Name": "A Rua", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238027, - "Bytes": 7930264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 38, - "Name": "Banda Black Rio", - "Albums": null - }, - { - "ArtistId": 39, - "Name": "Fernanda Porto", - "Albums": null - }, - { - "ArtistId": 40, - "Name": "Os Cariocas", - "Albums": null - }, - { - "ArtistId": 41, - "Name": "Elis Regina", - "Albums": [ - { - "AlbumId": 71, - "Title": "Elis Regina-Minha Hist�ria", - "ArtistId": 41, - "Tracks": [ - { - "TrackId": 877, - "Name": "O B�bado e a Equilibrista", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 223059, - "Bytes": 7306143, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 878, - "Name": "O Mestre-Sala dos Mares", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 186226, - "Bytes": 6180414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 879, - "Name": "Atr�s da Porta", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 166608, - "Bytes": 5432518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 880, - "Name": "Dois Pra L�, Dois Pra C�", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 263026, - "Bytes": 8684639, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 237, - "CustomerId": 52, - "InvoiceDate": "2011-11-08T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 0.99, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 881, - "Name": "Casa no Campo", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 170788, - "Bytes": 5531841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 238, - "CustomerId": 53, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 882, - "Name": "Romaria", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242834, - "Bytes": 7968525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 238, - "CustomerId": 53, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 883, - "Name": "Al�, Al�, Marciano", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 241397, - "Bytes": 8137254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 884, - "Name": "Me Deixas Louca", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 214831, - "Bytes": 6888030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 239, - "CustomerId": 55, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 885, - "Name": "Fascina��o", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 180793, - "Bytes": 5793959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 886, - "Name": "Saudosa Maloca", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 278125, - "Bytes": 9059416, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 239, - "CustomerId": 55, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 887, - "Name": "As Apar�ncias Enganam", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247379, - "Bytes": 8014346, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 888, - "Name": "Madalena", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 157387, - "Bytes": 5243721, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 889, - "Name": "Maria Rosa", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 232803, - "Bytes": 7592504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 890, - "Name": "Aprendendo A Jogar", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 290664, - "Bytes": 9391041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 42, - "Name": "Milton Nascimento", - "Albums": [ - { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo", - "ArtistId": 42, - "Tracks": [ - { - "TrackId": 1916, - "Name": "Cora��o De Estudante", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Wagner Tiso, Milton Nascimento", - "Milliseconds": 238550, - "Bytes": 7797308, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1917, - "Name": "A Noite Do Meu Bem", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dolores Duran", - "Milliseconds": 220081, - "Bytes": 7125225, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1918, - "Name": "Paisagem Na Janela", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "L� Borges, Fernando Brant", - "Milliseconds": 197694, - "Bytes": 6523547, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1919, - "Name": "Cuitelinho", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Folclore", - "Milliseconds": 209397, - "Bytes": 6803970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1920, - "Name": "Caxang�", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 245551, - "Bytes": 8144179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1921, - "Name": "Nos Bailes Da Vida", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 275748, - "Bytes": 9126170, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1922, - "Name": "Menestrel Das Alagoas", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 199758, - "Bytes": 6542289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1923, - "Name": "Brasil", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 155428, - "Bytes": 5252560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1924, - "Name": "Can��o Do Novo Mundo", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Guedes, Ronaldo Bastos", - "Milliseconds": 215353, - "Bytes": 7032626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1925, - "Name": "Um Gosto De Sol", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Milliseconds": 307200, - "Bytes": 9893875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1926, - "Name": "Solar", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 156212, - "Bytes": 5098288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1927, - "Name": "Para Lennon E McCartney", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "L� Borges, M�rcio Borges, Fernando Brant", - "Milliseconds": 321828, - "Bytes": 10626920, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1928, - "Name": "Maria, Maria", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 72463, - "Bytes": 2371543, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 159, - "Title": "Minas", - "ArtistId": 42, - "Tracks": [ - { - "TrackId": 1929, - "Name": "Minas", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Caetano Veloso", - "Milliseconds": 152293, - "Bytes": 4921056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1930, - "Name": "F� Cega, Faca Amolada", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Milliseconds": 278099, - "Bytes": 9258649, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1931, - "Name": "Beijo Partido", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Toninho Horta", - "Milliseconds": 229564, - "Bytes": 7506969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1932, - "Name": "Saudade Dos Avi�es Da Panair (Conversando No Bar)", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 268721, - "Bytes": 8805088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1933, - "Name": "Gran Circo", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, M�rcio Borges", - "Milliseconds": 251297, - "Bytes": 8237026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1934, - "Name": "Ponta de Areia", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 272796, - "Bytes": 8874285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1935, - "Name": "Trastevere", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Milliseconds": 265665, - "Bytes": 8708399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1936, - "Name": "Idolatrada", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 286249, - "Bytes": 9426153, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1937, - "Name": "Leila (Venha Ser Feliz)", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento", - "Milliseconds": 209737, - "Bytes": 6898507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1938, - "Name": "Paula E Bebeto", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Caetano Veloso", - "Milliseconds": 135732, - "Bytes": 4583956, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1939, - "Name": "Simples", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Nelson Angelo", - "Milliseconds": 133093, - "Bytes": 4326333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1940, - "Name": "Norwegian Wood", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "John Lennon, Paul McCartney", - "Milliseconds": 413910, - "Bytes": 13520382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1941, - "Name": "Caso Voc� Queira Saber", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Guedes, M�rcio Borges", - "Milliseconds": 205688, - "Bytes": 6787901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 43, - "Name": "A Cor Do Som", - "Albums": null - }, - { - "ArtistId": 44, - "Name": "Kid Abelha", - "Albums": null - }, - { - "ArtistId": 45, - "Name": "Sandra De S�", - "Albums": null - }, - { - "ArtistId": 46, - "Name": "Jorge Ben", - "Albums": [ - { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos", - "ArtistId": 46, - "Tracks": [ - { - "TrackId": 1506, - "Name": "Engenho De Dentro", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 310073, - "Bytes": 10211473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1507, - "Name": "Alcohol", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 355239, - "Bytes": 12010478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1508, - "Name": "Mama Africa", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 283062, - "Bytes": 9488316, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1509, - "Name": "Salve Simpatia", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 343484, - "Bytes": 11314756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1510, - "Name": "W/Brasil (Chama O S�ndico)", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 317100, - "Bytes": 10599953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1511, - "Name": "Pa�s Tropical", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 452519, - "Bytes": 14946972, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1512, - "Name": "Os Alquimistas Est�o Chegando", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 367281, - "Bytes": 12304520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1513, - "Name": "Charles Anjo 45", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 389276, - "Bytes": 13022833, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1514, - "Name": "Selassi�", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 326321, - "Bytes": 10724982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1515, - "Name": "Menina Sarar�", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 191477, - "Bytes": 6393818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1516, - "Name": "Que Maravilha", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 338076, - "Bytes": 10996656, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1517, - "Name": "Santa Clara Clareou", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 380081, - "Bytes": 12524725, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1518, - "Name": "Filho Maravilha", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227526, - "Bytes": 7498259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1519, - "Name": "Taj Mahal", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 289750, - "Bytes": 9502898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 47, - "Name": "Hermeto Pascoal", - "Albums": null - }, - { - "ArtistId": 48, - "Name": "Bar�o Vermelho", - "Albums": null - }, - { - "ArtistId": 49, - "Name": "Edson, DJ Marky \u0026 DJ Patife Featuring Fernanda Porto", - "Albums": null - }, - { - "ArtistId": 50, - "Name": "Metallica", - "Albums": [ - { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 408, - "Name": "Free Speech For The Dumb", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Milliseconds": 155428, - "Bytes": 5076048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 409, - "Name": "It's Electric", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 213995, - "Bytes": 6978601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 410, - "Name": "Sabbra Cadabra", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Black Sabbath", - "Milliseconds": 380342, - "Bytes": 12418147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 411, - "Name": "Turn The Page", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Seger", - "Milliseconds": 366524, - "Bytes": 11946327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 412, - "Name": "Die Die My Darling", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Danzig", - "Milliseconds": 149315, - "Bytes": 4867667, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 413, - "Name": "Loverman", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Cave", - "Milliseconds": 472764, - "Bytes": 15446975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 414, - "Name": "Mercyful Fate", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Diamond/Shermann", - "Milliseconds": 671712, - "Bytes": 21942829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 415, - "Name": "Astronomy", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A.Bouchard/J.Bouchard/S.Pearlman", - "Milliseconds": 397531, - "Bytes": 13065612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 416, - "Name": "Whiskey In The Jar", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Traditional", - "Milliseconds": 305005, - "Bytes": 9943129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 223, - "CustomerId": 35, - "InvoiceDate": "2011-09-07T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 417, - "Name": "Tuesday's Gone", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Collins/Van Zandt", - "Milliseconds": 545750, - "Bytes": 17900787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 224, - "CustomerId": 36, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 418, - "Name": "The More I See", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Milliseconds": 287973, - "Bytes": 9378873, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 224, - "CustomerId": 36, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 148, - "Title": "Black Album", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1801, - "Name": "Enter Sandman", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 332251, - "Bytes": 10852002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1802, - "Name": "Sad But True", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 324754, - "Bytes": 10541258, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1803, - "Name": "Holier Than Thou", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 227892, - "Bytes": 7462011, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1804, - "Name": "The Unforgiven", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 387082, - "Bytes": 12646886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1805, - "Name": "Wherever I May Roam", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 404323, - "Bytes": 13161169, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1806, - "Name": "Don't Tread On Me", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 240483, - "Bytes": 7827907, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1807, - "Name": "Through The Never", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 244375, - "Bytes": 8024047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1808, - "Name": "Nothing Else Matters", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 388832, - "Bytes": 12606241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 265, - "CustomerId": 27, - "InvoiceDate": "2012-03-11T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 0.99, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1809, - "Name": "Of Wolf And Man", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 256835, - "Bytes": 8339785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 266, - "CustomerId": 28, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1810, - "Name": "The God That Failed", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 308610, - "Bytes": 10055959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 266, - "CustomerId": 28, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1811, - "Name": "My Friend Of Misery", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Jason Newsted", - "Milliseconds": 409547, - "Bytes": 13293515, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1812, - "Name": "The Struggle Within", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 234240, - "Bytes": 7654052, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 267, - "CustomerId": 30, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1813, - "Name": "Helpless", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 398315, - "Bytes": 12977902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1814, - "Name": "The Small Hours", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Holocaust", - "Milliseconds": 403435, - "Bytes": 13215133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 267, - "CustomerId": 30, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1815, - "Name": "The Wait", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Killing Joke", - "Milliseconds": 295418, - "Bytes": 9688418, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1816, - "Name": "Crash Course In Brain Surgery", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bourge/Phillips/Shelley", - "Milliseconds": 190406, - "Bytes": 6233729, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1817, - "Name": "Last Caress/Green Hell", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Danzig", - "Milliseconds": 209972, - "Bytes": 6854313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1818, - "Name": "Am I Evil?", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 470256, - "Bytes": 15387219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1819, - "Name": "Blitzkrieg", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Jones/Sirotto/Smith", - "Milliseconds": 216685, - "Bytes": 7090018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1820, - "Name": "Breadfan", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bourge/Phillips/Shelley", - "Milliseconds": 341551, - "Bytes": 11100130, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1821, - "Name": "The Prince", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 265769, - "Bytes": 8624492, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1822, - "Name": "Stone Cold Crazy", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Deacon/May/Mercury/Taylor", - "Milliseconds": 137717, - "Bytes": 4514830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1823, - "Name": "So What", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Culmer/Exalt", - "Milliseconds": 189152, - "Bytes": 6162894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1824, - "Name": "Killing Time", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sweet Savage", - "Milliseconds": 183693, - "Bytes": 6021197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1825, - "Name": "Overkill", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Tayler", - "Milliseconds": 245133, - "Bytes": 7971330, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1826, - "Name": "Damage Case", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Farren/Kilmister/Tayler", - "Milliseconds": 220212, - "Bytes": 7212997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1827, - "Name": "Stone Dead Forever", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Tayler", - "Milliseconds": 292127, - "Bytes": 9556060, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1828, - "Name": "Too Late Too Late", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Tayler", - "Milliseconds": 192052, - "Bytes": 6276291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 150, - "Title": "Kill 'Em All", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1829, - "Name": "Hit The Lights", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 257541, - "Bytes": 8357088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1830, - "Name": "The Four Horsemen", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 433188, - "Bytes": 14178138, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1831, - "Name": "Motorbreath", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield", - "Milliseconds": 188395, - "Bytes": 6153933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 160, - "CustomerId": 47, - "InvoiceDate": "2010-12-02T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 0.99, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1832, - "Name": "Jump In The Fire", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 281573, - "Bytes": 9135755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 161, - "CustomerId": 48, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1833, - "Name": "(Anesthesia) Pulling Teeth", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Cliff Burton", - "Milliseconds": 254955, - "Bytes": 8234710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 161, - "CustomerId": 48, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1834, - "Name": "Whiplash", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 249208, - "Bytes": 8102839, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1835, - "Name": "Phantom Lord", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 302053, - "Bytes": 9817143, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 162, - "CustomerId": 50, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1836, - "Name": "No Remorse", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 386795, - "Bytes": 12672166, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1837, - "Name": "Seek \u0026 Destroy", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 415817, - "Bytes": 13452301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 162, - "CustomerId": 50, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1838, - "Name": "Metal Militia", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 311327, - "Bytes": 10141785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 151, - "Title": "Load", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1839, - "Name": "Ain't My Bitch", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 304457, - "Bytes": 9931015, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1840, - "Name": "2 X 4", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 328254, - "Bytes": 10732251, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1841, - "Name": "The House Jack Built", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 398942, - "Bytes": 13005152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1842, - "Name": "Until It Sleeps", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 269740, - "Bytes": 8837394, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1843, - "Name": "King Nothing", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 328097, - "Bytes": 10681477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1844, - "Name": "Hero Of The Day", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 261982, - "Bytes": 8540298, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1845, - "Name": "Bleeding Me", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 497998, - "Bytes": 16249420, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1846, - "Name": "Cure", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 294347, - "Bytes": 9648615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1847, - "Name": "Poor Twisted Me", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 240065, - "Bytes": 7854349, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1848, - "Name": "Wasted My Hate", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 237296, - "Bytes": 7762300, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1849, - "Name": "Mama Said", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 319764, - "Bytes": 10508310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1850, - "Name": "Thorn Within", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 351738, - "Bytes": 11486686, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1851, - "Name": "Ronnie", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 317204, - "Bytes": 10390947, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1852, - "Name": "The Outlaw Torn", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 588721, - "Bytes": 19286261, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 152, - "Title": "Master Of Puppets", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1853, - "Name": "Battery", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "J.Hetfield/L.Ulrich", - "Milliseconds": 312424, - "Bytes": 10229577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1854, - "Name": "Master Of Puppets", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 515239, - "Bytes": 16893720, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 55, - "CustomerId": 8, - "InvoiceDate": "2009-08-24T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 0.99, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1855, - "Name": "The Thing That Should Not Be", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 396199, - "Bytes": 12952368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 56, - "CustomerId": 9, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1856, - "Name": "Welcome Home (Sanitarium)", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 387186, - "Bytes": 12679965, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 56, - "CustomerId": 9, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1857, - "Name": "Disposable Heroes", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "J.Hetfield/L.Ulrich", - "Milliseconds": 496718, - "Bytes": 16135560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1858, - "Name": "Leper Messiah", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "C.Burton", - "Milliseconds": 347428, - "Bytes": 11310434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 57, - "CustomerId": 11, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1859, - "Name": "Orion", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 500062, - "Bytes": 16378477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1860, - "Name": "Damage Inc.", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 330919, - "Bytes": 10725029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 57, - "CustomerId": 11, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 153, - "Title": "ReLoad", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1861, - "Name": "Fuel", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 269557, - "Bytes": 8876811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1862, - "Name": "The Memory Remains", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 279353, - "Bytes": 9110730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1863, - "Name": "Devil's Dance", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 318955, - "Bytes": 10414832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1864, - "Name": "The Unforgiven II", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 395520, - "Bytes": 12886474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1865, - "Name": "Better Than You", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 322899, - "Bytes": 10549070, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1866, - "Name": "Slither", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 313103, - "Bytes": 10199789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1867, - "Name": "Carpe Diem Baby", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 372480, - "Bytes": 12170693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1868, - "Name": "Bad Seed", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 245394, - "Bytes": 8019586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1869, - "Name": "Where The Wild Things Are", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Newsted", - "Milliseconds": 414380, - "Bytes": 13571280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1870, - "Name": "Prince Charming", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 365061, - "Bytes": 12009412, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1871, - "Name": "Low Man's Lyric", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 457639, - "Bytes": 14855583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1872, - "Name": "Attitude", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 315898, - "Bytes": 10335734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1873, - "Name": "Fixxxer", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 496065, - "Bytes": 16190041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 154, - "Title": "Ride The Lightning", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1874, - "Name": "Fight Fire With Fire", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 285753, - "Bytes": 9420856, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1875, - "Name": "Ride The Lightning", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 397740, - "Bytes": 13055884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1876, - "Name": "For Whom The Bell Tolls", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 311719, - "Bytes": 10159725, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1877, - "Name": "Fade To Black", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 414824, - "Bytes": 13531954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1878, - "Name": "Trapped Under Ice", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 244532, - "Bytes": 7975942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1879, - "Name": "Escape", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 264359, - "Bytes": 8652332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1880, - "Name": "Creeping Death", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 396878, - "Bytes": 12955593, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1881, - "Name": "The Call Of Ktulu", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 534883, - "Bytes": 17486240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 155, - "Title": "St. Anger", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1882, - "Name": "Frantic", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 350458, - "Bytes": 11510849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1883, - "Name": "St. Anger", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 441234, - "Bytes": 14363779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1884, - "Name": "Some Kind Of Monster", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 505626, - "Bytes": 16557497, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1885, - "Name": "Dirty Window", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 324989, - "Bytes": 10670604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1886, - "Name": "Invisible Kid", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 510197, - "Bytes": 16591800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1887, - "Name": "My World", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 345626, - "Bytes": 11253756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1888, - "Name": "Shoot Me Again", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 430210, - "Bytes": 14093551, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1889, - "Name": "Sweet Amber", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 327235, - "Bytes": 10616595, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1890, - "Name": "The Unnamed Feeling", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 429479, - "Bytes": 14014582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1891, - "Name": "Purify", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 314017, - "Bytes": 10232537, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1892, - "Name": "All Within My Hands", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 527986, - "Bytes": 17162741, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 156, - "Title": "...And Justice For All", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1893, - "Name": "Blackened", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich \u0026 Jason Newsted", - "Milliseconds": 403382, - "Bytes": 13254874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1894, - "Name": "...And Justice For All", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich \u0026 Kirk Hammett", - "Milliseconds": 585769, - "Bytes": 19262088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1895, - "Name": "Eye Of The Beholder", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich \u0026 Kirk Hammett", - "Milliseconds": 385828, - "Bytes": 12747894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1896, - "Name": "One", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield \u0026 Lars Ulrich", - "Milliseconds": 446484, - "Bytes": 14695721, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1897, - "Name": "The Shortest Straw", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield and Lars Ulrich", - "Milliseconds": 395389, - "Bytes": 13013990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1898, - "Name": "Harvester Of Sorrow", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield and Lars Ulrich", - "Milliseconds": 345547, - "Bytes": 11377339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1899, - "Name": "The Frayed Ends Of Sanity", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 464039, - "Bytes": 15198986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1900, - "Name": "To Live Is To Die", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Cliff Burton", - "Milliseconds": 588564, - "Bytes": 19243795, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1901, - "Name": "Dyers Eve", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 313991, - "Bytes": 10302828, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 51, - "Name": "Queen", - "Albums": [ - { - "AlbumId": 36, - "Title": "Greatest Hits II", - "ArtistId": 51, - "Tracks": [ - { - "TrackId": 419, - "Name": "A Kind Of Magic", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Roger Taylor", - "Milliseconds": 262608, - "Bytes": 8689618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 420, - "Name": "Under Pressure", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen \u0026 David Bowie", - "Milliseconds": 236617, - "Bytes": 7739042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 225, - "CustomerId": 38, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 421, - "Name": "Radio GA GA", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Roger Taylor", - "Milliseconds": 343745, - "Bytes": 11358573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 422, - "Name": "I Want It All", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 241684, - "Bytes": 7876564, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 225, - "CustomerId": 38, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 423, - "Name": "I Want To Break Free", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Deacon", - "Milliseconds": 259108, - "Bytes": 8552861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 424, - "Name": "Innuendo", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 387761, - "Bytes": 12664591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 425, - "Name": "It's A Hard Life", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Freddie Mercury", - "Milliseconds": 249417, - "Bytes": 8112242, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 426, - "Name": "Breakthru", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 249234, - "Bytes": 8150479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 427, - "Name": "Who Wants To Live Forever", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Brian May", - "Milliseconds": 297691, - "Bytes": 9577577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 428, - "Name": "Headlong", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 273057, - "Bytes": 8921404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 429, - "Name": "The Miracle", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 294974, - "Bytes": 9671923, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 430, - "Name": "I'm Going Slightly Mad", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 248032, - "Bytes": 8192339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 431, - "Name": "The Invisible Man", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 238994, - "Bytes": 7920353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 432, - "Name": "Hammer To Fall", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Brian May", - "Milliseconds": 220316, - "Bytes": 7255404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 433, - "Name": "Friends Will Be Friends", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Freddie Mercury \u0026 John Deacon", - "Milliseconds": 248920, - "Bytes": 8114582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 434, - "Name": "The Show Must Go On", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 263784, - "Bytes": 8526760, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 435, - "Name": "One Vision", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 242599, - "Bytes": 7936928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 185, - "Title": "Greatest Hits I", - "ArtistId": 51, - "Tracks": [ - { - "TrackId": 2254, - "Name": "Bohemian Rhapsody", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 358948, - "Bytes": 11619868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2255, - "Name": "Another One Bites The Dust", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon, John", - "Milliseconds": 216946, - "Bytes": 7172355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 386, - "CustomerId": 27, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2256, - "Name": "Killer Queen", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 182099, - "Bytes": 5967749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2257, - "Name": "Fat Bottomed Girls", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 204695, - "Bytes": 6630041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2258, - "Name": "Bicycle Race", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 183823, - "Bytes": 6012409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2259, - "Name": "You're My Best Friend", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon, John", - "Milliseconds": 172225, - "Bytes": 5602173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2260, - "Name": "Don't Stop Me Now", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 211826, - "Bytes": 6896666, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2261, - "Name": "Save Me", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 228832, - "Bytes": 7444624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2262, - "Name": "Crazy Little Thing Called Love", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 164231, - "Bytes": 5435501, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2263, - "Name": "Somebody To Love", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 297351, - "Bytes": 9650520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2264, - "Name": "Now I'm Here", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 255346, - "Bytes": 8328312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2265, - "Name": "Good Old-Fashioned Lover Boy", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 175960, - "Bytes": 5747506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2266, - "Name": "Play The Game", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 213368, - "Bytes": 6915832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2267, - "Name": "Flash", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 168489, - "Bytes": 5464986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2268, - "Name": "Seven Seas Of Rhye", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 170553, - "Bytes": 5539957, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2269, - "Name": "We Will Rock You", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon, John/May, Brian", - "Milliseconds": 122880, - "Bytes": 4026955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2270, - "Name": "We Are The Champions", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 180950, - "Bytes": 5880231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 186, - "Title": "News Of The World", - "ArtistId": 51, - "Tracks": [ - { - "TrackId": 2271, - "Name": "We Will Rock You", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 122671, - "Bytes": 4026815, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2272, - "Name": "We Are The Champions", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury", - "Milliseconds": 182883, - "Bytes": 5939794, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 279, - "CustomerId": 44, - "InvoiceDate": "2012-05-12T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 0.99, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2273, - "Name": "Sheer Heart Attack", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Taylor", - "Milliseconds": 207386, - "Bytes": 6642685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 280, - "CustomerId": 45, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2274, - "Name": "All Dead, All Dead", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 190119, - "Bytes": 6144878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 280, - "CustomerId": 45, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2275, - "Name": "Spread Your Wings", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon", - "Milliseconds": 275356, - "Bytes": 8936992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2276, - "Name": "Fight From The Inside", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Taylor", - "Milliseconds": 184737, - "Bytes": 6078001, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 281, - "CustomerId": 47, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2277, - "Name": "Get Down, Make Love", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury", - "Milliseconds": 231235, - "Bytes": 7509333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2278, - "Name": "Sleep On The Sidewalk", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 187428, - "Bytes": 6099840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 281, - "CustomerId": 47, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2279, - "Name": "Who Needs You", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon", - "Milliseconds": 186958, - "Bytes": 6292969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2280, - "Name": "It's Late", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 386194, - "Bytes": 12519388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2281, - "Name": "My Melancholy Blues", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury", - "Milliseconds": 206471, - "Bytes": 6691838, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 52, - "Name": "Kiss", - "Albums": [ - { - "AlbumId": 37, - "Title": "Greatest Kiss", - "ArtistId": 52, - "Tracks": [ - { - "TrackId": 436, - "Name": "Detroit Rock City", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, B. Ezrin", - "Milliseconds": 218880, - "Bytes": 7146372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 437, - "Name": "Black Diamond", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 314148, - "Bytes": 10266007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 438, - "Name": "Hard Luck Woman", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 216032, - "Bytes": 7109267, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 439, - "Name": "Sure Know Something", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Poncia", - "Milliseconds": 242468, - "Bytes": 7939886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 118, - "CustomerId": 55, - "InvoiceDate": "2010-05-30T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 0.99, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 440, - "Name": "Love Gun", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 196257, - "Bytes": 6424915, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 119, - "CustomerId": 56, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 441, - "Name": "Deuce", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 185077, - "Bytes": 6097210, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 119, - "CustomerId": 56, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 442, - "Name": "Goin' Blind", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons, S. Coronel", - "Milliseconds": 216215, - "Bytes": 7045314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 443, - "Name": "Shock Me", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ace Frehley", - "Milliseconds": 227291, - "Bytes": 7529336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 120, - "CustomerId": 58, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 444, - "Name": "Do You Love Me", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, B. Ezrin, K. Fowley", - "Milliseconds": 214987, - "Bytes": 6976194, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 445, - "Name": "She", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons, S. Coronel", - "Milliseconds": 248346, - "Bytes": 8229734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 120, - "CustomerId": 58, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 446, - "Name": "I Was Made For Loving You", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Poncia, Desmond Child", - "Milliseconds": 271360, - "Bytes": 9018078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 447, - "Name": "Shout It Out Loud", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons, B. Ezrin", - "Milliseconds": 219742, - "Bytes": 7194424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 448, - "Name": "God Of Thunder", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 255791, - "Bytes": 8309077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 449, - "Name": "Calling Dr. Love", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 225332, - "Bytes": 7395034, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 450, - "Name": "Beth", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "S. Penridge, Bob Ezrin, Peter Criss", - "Milliseconds": 166974, - "Bytes": 5360574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 451, - "Name": "Strutter", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons", - "Milliseconds": 192496, - "Bytes": 6317021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 452, - "Name": "Rock And Roll All Nite", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons", - "Milliseconds": 173609, - "Bytes": 5735902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 453, - "Name": "Cold Gin", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ace Frehley", - "Milliseconds": 262243, - "Bytes": 8609783, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 454, - "Name": "Plaster Caster", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 207333, - "Bytes": 6801116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 455, - "Name": "God Gave Rock 'n' Roll To You", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin", - "Milliseconds": 320444, - "Bytes": 10441590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 126, - "Title": "Unplugged [Live]", - "ArtistId": 52, - "Tracks": [ - { - "TrackId": 1562, - "Name": "Comin' Home", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Ace Frehley", - "Milliseconds": 172068, - "Bytes": 5661120, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1563, - "Name": "Plaster Caster", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 198060, - "Bytes": 6528719, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1564, - "Name": "Goin' Blind", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons, Stephen Coronel", - "Milliseconds": 217652, - "Bytes": 7167523, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1565, - "Name": "Do You Love Me", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Bob Ezrin, Kim Fowley", - "Milliseconds": 193619, - "Bytes": 6343111, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1566, - "Name": "Domino", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 226377, - "Bytes": 7488191, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1567, - "Name": "Sure Know Something", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Poncia", - "Milliseconds": 254354, - "Bytes": 8375190, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1568, - "Name": "A World Without Heroes", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed", - "Milliseconds": 177815, - "Bytes": 5832524, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1569, - "Name": "Rock Bottom", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Ace Frehley", - "Milliseconds": 200594, - "Bytes": 6560818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1570, - "Name": "See You Tonight", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 146494, - "Bytes": 4817521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1571, - "Name": "I Still Love You", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 369815, - "Bytes": 12086145, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1572, - "Name": "Every Time I Look At You", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Cusano", - "Milliseconds": 283898, - "Bytes": 9290948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1573, - "Name": "2,000 Man", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Jagger, Keith Richard", - "Milliseconds": 312450, - "Bytes": 10292829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1574, - "Name": "Beth", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Peter Criss, Stan Penridge, Bob Ezrin", - "Milliseconds": 170187, - "Bytes": 5577807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1575, - "Name": "Nothin' To Lose", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 222354, - "Bytes": 7351460, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1576, - "Name": "Rock And Roll All Nite", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons", - "Milliseconds": 259631, - "Bytes": 8549296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 258, - "CustomerId": 48, - "InvoiceDate": "2012-02-09T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 0.99, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 53, - "Name": "Spyro Gyra", - "Albums": [ - { - "AlbumId": 38, - "Title": "Heart of the Night", - "ArtistId": 53, - "Tracks": [ - { - "TrackId": 456, - "Name": "Heart of the Night", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 273737, - "Bytes": 9098263, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 457, - "Name": "De La Luz", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 315219, - "Bytes": 10518284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 458, - "Name": "Westwood Moon", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 295627, - "Bytes": 9765802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 459, - "Name": "Midnight", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 266866, - "Bytes": 8851060, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 460, - "Name": "Playtime", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 273580, - "Bytes": 9070880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 461, - "Name": "Surrender", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 287634, - "Bytes": 9422926, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 462, - "Name": "Valentino's", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 296124, - "Bytes": 9848545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 13, - "CustomerId": 16, - "InvoiceDate": "2009-02-19T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 0.99, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 463, - "Name": "Believe", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 310778, - "Bytes": 10317185, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 14, - "CustomerId": 17, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 464, - "Name": "As We Sleep", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 316865, - "Bytes": 10429398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 14, - "CustomerId": 17, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 465, - "Name": "When Evening Falls", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 298135, - "Bytes": 9863942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 466, - "Name": "J Squared", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 288757, - "Bytes": 9480777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 15, - "CustomerId": 19, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 467, - "Name": "Best Thing", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 274259, - "Bytes": 9069394, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 204, - "Title": "Morning Dance", - "ArtistId": 53, - "Tracks": [ - { - "TrackId": 2523, - "Name": "Morning Dance", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jay Beckenstein", - "Milliseconds": 238759, - "Bytes": 8101979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2524, - "Name": "Jubilee", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 275147, - "Bytes": 9151846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2525, - "Name": "Rasul", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 238315, - "Bytes": 7854737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2526, - "Name": "Song For Lorraine", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jay Beckenstein", - "Milliseconds": 240091, - "Bytes": 8101723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2527, - "Name": "Starburst", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 291500, - "Bytes": 9768399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 181, - "CustomerId": 43, - "InvoiceDate": "2011-03-05T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 0.99, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2528, - "Name": "Heliopolis", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jay Beckenstein", - "Milliseconds": 338729, - "Bytes": 11365655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 182, - "CustomerId": 44, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2529, - "Name": "It Doesn't Matter", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Chet Catallo", - "Milliseconds": 270027, - "Bytes": 9034177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 182, - "CustomerId": 44, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2530, - "Name": "Little Linda", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 264019, - "Bytes": 8958743, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2531, - "Name": "End Of Romanticism", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Rick Strauss", - "Milliseconds": 320078, - "Bytes": 10553155, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 183, - "CustomerId": 46, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 54, - "Name": "Green Day", - "Albums": [ - { - "AlbumId": 39, - "Title": "International Superhits", - "ArtistId": 54, - "Tracks": [ - { - "TrackId": 468, - "Name": "Maria", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 167262, - "Bytes": 5484747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 15, - "CustomerId": 19, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 469, - "Name": "Poprocks And Coke", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 158354, - "Bytes": 5243078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 470, - "Name": "Longview", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 234083, - "Bytes": 7714939, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 471, - "Name": "Welcome To Paradise", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 224208, - "Bytes": 7406008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 472, - "Name": "Basket Case", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 181629, - "Bytes": 5951736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 473, - "Name": "When I Come Around", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 178364, - "Bytes": 5839426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 474, - "Name": "She", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 134164, - "Bytes": 4425128, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 475, - "Name": "J.A.R. (Jason Andrew Relva)", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dirnt -Words Green Day -Music", - "Milliseconds": 170997, - "Bytes": 5645755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 476, - "Name": "Geek Stink Breath", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 135888, - "Bytes": 4408983, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 477, - "Name": "Brain Stew", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 193149, - "Bytes": 6305550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 478, - "Name": "Jaded", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 90331, - "Bytes": 2950224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 479, - "Name": "Walking Contradiction", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 151170, - "Bytes": 4932366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 480, - "Name": "Stuck With Me", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 135523, - "Bytes": 4431357, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 481, - "Name": "Hitchin' A Ride", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 171546, - "Bytes": 5616891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 482, - "Name": "Good Riddance (Time Of Your Life)", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 153600, - "Bytes": 5075241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 483, - "Name": "Redundant", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 198164, - "Bytes": 6481753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 484, - "Name": "Nice Guys Finish Last", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 170187, - "Bytes": 5604618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 485, - "Name": "Minority", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 168803, - "Bytes": 5535061, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 486, - "Name": "Warning", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 221910, - "Bytes": 7343176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 487, - "Name": "Waiting", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 192757, - "Bytes": 6316430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 488, - "Name": "Macy's Day Parade", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 213420, - "Bytes": 7075573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 89, - "Title": "American Idiot", - "ArtistId": 54, - "Tracks": [ - { - "TrackId": 1133, - "Name": "American Idiot", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong, Mike Dirnt, Tr� Cool", - "Milliseconds": 174419, - "Bytes": 5705793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1134, - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong/Green Day", - "Milliseconds": 548336, - "Bytes": 17875209, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1135, - "Name": "Holiday", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong, Mike Dirnt, Tr� Cool", - "Milliseconds": 232724, - "Bytes": 7599602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 139, - "CustomerId": 51, - "InvoiceDate": "2010-08-31T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 0.99, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1136, - "Name": "Boulevard Of Broken Dreams", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dint, Billie Joe, Tr� Cool", - "Milliseconds": 260858, - "Bytes": 8485122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 140, - "CustomerId": 52, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1137, - "Name": "Are We The Waiting", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 163004, - "Bytes": 5328329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 140, - "CustomerId": 52, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1138, - "Name": "St. Jimmy", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 175307, - "Bytes": 5716589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1139, - "Name": "Give Me Novacaine", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 205871, - "Bytes": 6752485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 141, - "CustomerId": 54, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1140, - "Name": "She's A Rebel", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 120528, - "Bytes": 3901226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1141, - "Name": "Extraordinary Girl", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 214021, - "Bytes": 6975177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 141, - "CustomerId": 54, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1142, - "Name": "Letterbomb", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 246151, - "Bytes": 7980902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1143, - "Name": "Wake Me Up When September Ends", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dint, Billie Joe, Tr� Cool", - "Milliseconds": 285753, - "Bytes": 9325597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1144, - "Name": "Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We're Coming Home Again", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dirnt/Tr� Cool", - "Milliseconds": 558602, - "Bytes": 18139840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1145, - "Name": "Whatsername", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 252316, - "Bytes": 8244843, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 55, - "Name": "David Coverdale", - "Albums": [ - { - "AlbumId": 40, - "Title": "Into The Light", - "ArtistId": 55, - "Tracks": [ - { - "TrackId": 489, - "Name": "Into The Light", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 76303, - "Bytes": 2452653, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 490, - "Name": "River Song", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 439510, - "Bytes": 14359478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 491, - "Name": "She Give Me ...", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 252551, - "Bytes": 8385478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 492, - "Name": "Don't You Cry", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 347036, - "Bytes": 11269612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 493, - "Name": "Love Is Blind", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 344999, - "Bytes": 11409720, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 494, - "Name": "Slave", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 291892, - "Bytes": 9425200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 495, - "Name": "Cry For Love", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bossi/David Coverdale/Earl Slick", - "Milliseconds": 293015, - "Bytes": 9567075, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 496, - "Name": "Living On Love", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bossi/David Coverdale/Earl Slick", - "Milliseconds": 391549, - "Bytes": 12785876, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 497, - "Name": "Midnight Blue", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 298631, - "Bytes": 9750990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 498, - "Name": "Too Many Tears", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Vanderberg/David Coverdale", - "Milliseconds": 359497, - "Bytes": 11810238, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 499, - "Name": "Don't Lie To Me", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 283585, - "Bytes": 9288007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 500, - "Name": "Wherever You May Go", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 239699, - "Bytes": 7803074, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 56, - "Name": "Gonzaguinha", - "Albums": [ - { - "AlbumId": 41, - "Title": "Meus Momentos", - "ArtistId": 56, - "Tracks": [ - { - "TrackId": 501, - "Name": "Grito De Alerta", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr.", - "Milliseconds": 202213, - "Bytes": 6539422, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 502, - "Name": "N�o D� Mais Pra Segurar (Explode Cora��o)", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 219768, - "Bytes": 7083012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 503, - "Name": "Come�aria Tudo Outra Vez", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 196545, - "Bytes": 6473395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 504, - "Name": "O Que � O Que � ?", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259291, - "Bytes": 8650647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 505, - "Name": "Sangrando", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr/Gonzaguinha", - "Milliseconds": 169717, - "Bytes": 5494406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 506, - "Name": "Diga L�, Cora��o", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 255921, - "Bytes": 8280636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 507, - "Name": "Lindo Lago Do Amor", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr.", - "Milliseconds": 249678, - "Bytes": 8353191, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 508, - "Name": "Eu Apenas Queria Que Vo�� Soubesse", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 155637, - "Bytes": 5130056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 509, - "Name": "Com A Perna No Mundo", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr.", - "Milliseconds": 227448, - "Bytes": 7747108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 510, - "Name": "E Vamos � Luta", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222406, - "Bytes": 7585112, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 511, - "Name": "Um Homem Tamb�m Chora (Guerreiro Menino)", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 207229, - "Bytes": 6854219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 512, - "Name": "Comportamento Geral", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr", - "Milliseconds": 181577, - "Bytes": 5997444, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 513, - "Name": "Ponto De Interroga��o", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 180950, - "Bytes": 5946265, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 514, - "Name": "Espere Por Mim, Morena", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaguinha", - "Milliseconds": 207072, - "Bytes": 6796523, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 57, - "Name": "Os Mutantes", - "Albums": [ - { - "AlbumId": 42, - "Title": "Minha Hist�ria", - "ArtistId": 57, - "Tracks": [ - { - "TrackId": 529, - "Name": "Balada Do Louco", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee", - "Milliseconds": 241057, - "Bytes": 7852328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 530, - "Name": "Ando Meio Desligado", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee - S�rgio Dias", - "Milliseconds": 287817, - "Bytes": 9484504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 531, - "Name": "Top Top", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Os Mutantes - Arnolpho Lima Filho", - "Milliseconds": 146938, - "Bytes": 4875374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 532, - "Name": "Baby", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Caetano Veloso", - "Milliseconds": 177188, - "Bytes": 5798202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 533, - "Name": "A E O Z", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mutantes", - "Milliseconds": 518556, - "Bytes": 16873005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 534, - "Name": "Panis Et Circenses", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Caetano Veloso - Gilberto Gil", - "Milliseconds": 125152, - "Bytes": 4069688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 535, - "Name": "Ch�o De Estrelas", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Orestes Barbosa-S�lvio Caldas", - "Milliseconds": 284813, - "Bytes": 9433620, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 536, - "Name": "Vida De Cachorro", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rita Lee - Arnaldo Baptista - S�rgio Baptista", - "Milliseconds": 195186, - "Bytes": 6411149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 537, - "Name": "Bat Macumba", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Gilberto Gil - Caetano Veloso", - "Milliseconds": 187794, - "Bytes": 6295223, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 538, - "Name": "Desculpe Babe", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee", - "Milliseconds": 170422, - "Bytes": 5637959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 539, - "Name": "Rita Lee", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista/Rita Lee/S�rgio Dias", - "Milliseconds": 189257, - "Bytes": 6270503, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 540, - "Name": "Posso Perder Minha Mulher, Minha M�e, Desde Que Eu Tenha O Rock And Roll", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho", - "Milliseconds": 222955, - "Bytes": 7346254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 541, - "Name": "Banho De Lua", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "B. de Filippi - F. Migliaci - Vers�o: Fred Jorge", - "Milliseconds": 221831, - "Bytes": 7232123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 542, - "Name": "Meu Refrigerador N�o Funciona", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee - S�rgio Dias", - "Milliseconds": 382981, - "Bytes": 12495906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 58, - "Name": "Deep Purple", - "Albums": [ - { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 543, - "Name": "Burn", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Lord/Paice", - "Milliseconds": 453955, - "Bytes": 14775708, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 544, - "Name": "Stormbringer", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale", - "Milliseconds": 277133, - "Bytes": 9050022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 545, - "Name": "Gypsy", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Hughes/Lord/Paice", - "Milliseconds": 339173, - "Bytes": 11046952, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 546, - "Name": "Lady Double Dealer", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale", - "Milliseconds": 233586, - "Bytes": 7608759, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 547, - "Name": "Mistreated", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale", - "Milliseconds": 758648, - "Bytes": 24596235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 548, - "Name": "Smoke On The Water", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gillan/Glover/Lord/Paice", - "Milliseconds": 618031, - "Bytes": 20103125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 549, - "Name": "You Fool No One", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Lord/Paice", - "Milliseconds": 804101, - "Bytes": 26369966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 50, - "Title": "The Final Concerts (Disc 2)", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 620, - "Name": "Space Truckin'", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore/Gillan/Glover/Lord/Paice", - "Milliseconds": 1196094, - "Bytes": 39267613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 621, - "Name": "Going Down / Highway Star", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gillan/Glover/Lord/Nix - Blackmore/Paice", - "Milliseconds": 913658, - "Bytes": 29846063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 622, - "Name": "Mistreated (Alternate Version)", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore/Coverdale", - "Milliseconds": 854700, - "Bytes": 27775442, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 623, - "Name": "You Fool No One (Alternate Version)", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore/Coverdale/Lord/Paice", - "Milliseconds": 763924, - "Bytes": 24887209, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 58, - "Title": "Come Taste The Band", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 745, - "Name": "Comin' Home", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale/Paice", - "Milliseconds": 235781, - "Bytes": 7644604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 746, - "Name": "Lady Luck", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Cook/Coverdale", - "Milliseconds": 168202, - "Bytes": 5501379, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 747, - "Name": "Gettin' Tighter", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Hughes", - "Milliseconds": 218044, - "Bytes": 7176909, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 748, - "Name": "Dealer", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 230922, - "Bytes": 7591066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 749, - "Name": "I Need Love", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 263836, - "Bytes": 8701064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 750, - "Name": "Drifter", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 242834, - "Bytes": 8001505, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 751, - "Name": "Love Child", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 188160, - "Bytes": 6173806, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 752, - "Name": "This Time Around / Owed to 'G' [Instrumental]", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Hughes/Lord", - "Milliseconds": 370102, - "Bytes": 11995679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 753, - "Name": "You Keep On Moving", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Hughes", - "Milliseconds": 319111, - "Bytes": 10447868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 59, - "Title": "Deep Purple In Rock", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 754, - "Name": "Speed King", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 264385, - "Bytes": 8587578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 755, - "Name": "Bloodsucker", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 256261, - "Bytes": 8344405, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 756, - "Name": "Child In Time", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 620460, - "Bytes": 20230089, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 757, - "Name": "Flight Of The Rat", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 478302, - "Bytes": 15563967, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 758, - "Name": "Into The Fire", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 210259, - "Bytes": 6849310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 759, - "Name": "Living Wreck", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 274886, - "Bytes": 8993056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 760, - "Name": "Hard Lovin' Man", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 431203, - "Bytes": 13931179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 60, - "Title": "Fireball", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 761, - "Name": "Fireball", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 204721, - "Bytes": 6714807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 762, - "Name": "No No No", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 414902, - "Bytes": 13646606, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 763, - "Name": "Strange Kind Of Woman", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 247092, - "Bytes": 8072036, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 764, - "Name": "Anyone's Daughter", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 284682, - "Bytes": 9354480, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 765, - "Name": "The Mule", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 322063, - "Bytes": 10638390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 766, - "Name": "Fools", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 500427, - "Bytes": 16279366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 767, - "Name": "No One Came", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 385880, - "Bytes": 12643813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 768, - "Name": "Knocking At Your Back Door", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Milliseconds": 424829, - "Bytes": 13779332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 769, - "Name": "Bad Attitude", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Milliseconds": 307905, - "Bytes": 10035180, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 770, - "Name": "Child In Time (Son Of Aleric - Instrumental)", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 602880, - "Bytes": 19712753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 771, - "Name": "Nobody's Home", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 243017, - "Bytes": 7929493, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 772, - "Name": "Black Night", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 368770, - "Bytes": 12058906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 773, - "Name": "Perfect Strangers", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Milliseconds": 321149, - "Bytes": 10445353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 774, - "Name": "The Unwritten Law", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice", - "Milliseconds": 295053, - "Bytes": 9740361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 775, - "Name": "Call Of The Wild", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Milliseconds": 293851, - "Bytes": 9575295, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 776, - "Name": "Hush", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "South", - "Milliseconds": 213054, - "Bytes": 6944928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 777, - "Name": "Smoke On The Water", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 464378, - "Bytes": 15180849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 778, - "Name": "Space Trucking", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 341185, - "Bytes": 11122183, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 62, - "Title": "Machine Head", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 779, - "Name": "Highway Star", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 368770, - "Bytes": 12012452, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 780, - "Name": "Maybe I'm A Leo", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 290455, - "Bytes": 9502646, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 781, - "Name": "Pictures Of Home", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 303777, - "Bytes": 9903835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 782, - "Name": "Never Before", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 239830, - "Bytes": 7832790, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 783, - "Name": "Smoke On The Water", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 340871, - "Bytes": 11246496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 784, - "Name": "Lazy", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 442096, - "Bytes": 14397671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 785, - "Name": "Space Truckin'", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 272796, - "Bytes": 8981030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 63, - "Title": "Purpendicular", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 786, - "Name": "Vavoom : Ted The Mechanic", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 257384, - "Bytes": 8510755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 787, - "Name": "Loosen My Strings", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 359680, - "Bytes": 11702232, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 788, - "Name": "Soon Forgotten", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 287791, - "Bytes": 9401383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 789, - "Name": "Sometimes I Feel Like Screaming", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 451840, - "Bytes": 14789410, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 790, - "Name": "Cascades : I'm Not Your Lover", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 283689, - "Bytes": 9209693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 791, - "Name": "The Aviator", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 320992, - "Bytes": 10532053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 792, - "Name": "Rosa's Cantina", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 312372, - "Bytes": 10323804, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 793, - "Name": "A Castle Full Of Rascals", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 311693, - "Bytes": 10159566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 794, - "Name": "A Touch Away", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 276323, - "Bytes": 9098561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 795, - "Name": "Hey Cisco", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 354089, - "Bytes": 11600029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 796, - "Name": "Somebody Stole My Guitar", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 249443, - "Bytes": 8180421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 797, - "Name": "The Purpendicular Waltz", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 283924, - "Bytes": 9299131, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 64, - "Title": "Slaves And Masters", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 798, - "Name": "King Of Dreams", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 328385, - "Bytes": 10733847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 799, - "Name": "The Cut Runs Deep", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 342752, - "Bytes": 11191650, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 800, - "Name": "Fire In The Basement", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 283977, - "Bytes": 9267550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 801, - "Name": "Truth Hurts", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 314827, - "Bytes": 10224612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 802, - "Name": "Breakfast In Bed", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 317126, - "Bytes": 10323804, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 803, - "Name": "Love Conquers All", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 227186, - "Bytes": 7328516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 804, - "Name": "Fortuneteller", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 349335, - "Bytes": 11369671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 805, - "Name": "Too Much Is Not Enough", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Turner, Held, Greenwood", - "Milliseconds": 257724, - "Bytes": 8382800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 806, - "Name": "Wicked Ways", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 393691, - "Bytes": 12826582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 65, - "Title": "Stormbringer", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 807, - "Name": "Stormbringer", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 246413, - "Bytes": 8044864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 808, - "Name": "Love Don't Mean a Thing", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 263862, - "Bytes": 8675026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 809, - "Name": "Holy Man", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord", - "Milliseconds": 270236, - "Bytes": 8818093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 810, - "Name": "Hold On", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord", - "Milliseconds": 306860, - "Bytes": 10022428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 811, - "Name": "Lady Double Dealer", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 201482, - "Bytes": 6554330, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 812, - "Name": "You Can't Do it Right (With the One You Love)", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 203755, - "Bytes": 6709579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 813, - "Name": "High Ball Shooter", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 267833, - "Bytes": 8772471, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 814, - "Name": "The Gypsy", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 242886, - "Bytes": 7946614, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 815, - "Name": "Soldier Of Fortune", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 193750, - "Bytes": 6315321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 66, - "Title": "The Battle Rages On", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 816, - "Name": "The Battle Rages On", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "ian paice/jon lord", - "Milliseconds": 356963, - "Bytes": 11626228, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 817, - "Name": "Lick It Up", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 240274, - "Bytes": 7792604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 818, - "Name": "Anya", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "jon lord/roger glover", - "Milliseconds": 392437, - "Bytes": 12754921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 819, - "Name": "Talk About Love", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 247823, - "Bytes": 8072171, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 820, - "Name": "Time To Kill", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 351033, - "Bytes": 11354742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 821, - "Name": "Ramshackle Man", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 334445, - "Bytes": 10874679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 822, - "Name": "A Twist In The Tail", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 257462, - "Bytes": 8413103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 823, - "Name": "Nasty Piece Of Work", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "jon lord/roger glover", - "Milliseconds": 276662, - "Bytes": 9076997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 824, - "Name": "Solitaire", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 282226, - "Bytes": 9157021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 825, - "Name": "One Man's Meat", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 278804, - "Bytes": 9068960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 59, - "Name": "Santana", - "Albums": [ - { - "AlbumId": 46, - "Title": "Supernatural", - "ArtistId": 59, - "Tracks": [ - { - "TrackId": 570, - "Name": "(Da Le) Yaleo", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Santana", - "Milliseconds": 353488, - "Bytes": 11769507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 571, - "Name": "Love Of My Life", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana \u0026 Dave Matthews", - "Milliseconds": 347820, - "Bytes": 11634337, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 572, - "Name": "Put Your Lights On", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "E. Shrody", - "Milliseconds": 285178, - "Bytes": 9394769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 573, - "Name": "Africa Bamba", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "I. Toure, S. Tidiane Toure, Carlos Santana \u0026 K. Perazzo", - "Milliseconds": 282827, - "Bytes": 9492487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 574, - "Name": "Smooth", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "M. Itaal Shur \u0026 Rob Thomas", - "Milliseconds": 298161, - "Bytes": 9867455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 575, - "Name": "Do You Like The Way", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "L. Hill", - "Milliseconds": 354899, - "Bytes": 11741062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 576, - "Name": "Maria Maria", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "W. Jean, J. Duplessis, Carlos Santana, K. Perazzo \u0026 R. Rekow", - "Milliseconds": 262635, - "Bytes": 8664601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 577, - "Name": "Migra", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. Taha, Carlos Santana \u0026 T. Lindsay", - "Milliseconds": 329064, - "Bytes": 10963305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 578, - "Name": "Corazon Espinado", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "F. Olivera", - "Milliseconds": 276114, - "Bytes": 9206802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 579, - "Name": "Wishing It Was", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eale-Eye Cherry, M. Simpson, J. King \u0026 M. Nishita", - "Milliseconds": 292832, - "Bytes": 9771348, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 580, - "Name": "El Farol", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana \u0026 KC Porter", - "Milliseconds": 291160, - "Bytes": 9599353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 581, - "Name": "Primavera", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "KC Porter \u0026 JB Eckl", - "Milliseconds": 378618, - "Bytes": 12504234, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 582, - "Name": "The Calling", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana \u0026 C. Thompson", - "Milliseconds": 747755, - "Bytes": 24703884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 197, - "Title": "Santana - As Years Go By", - "ArtistId": 59, - "Tracks": [ - { - "TrackId": 2420, - "Name": "Jingo", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "M.Babatunde Olantunji", - "Milliseconds": 592953, - "Bytes": 19736495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2421, - "Name": "El Corazon Manda", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "E.Weiss", - "Milliseconds": 713534, - "Bytes": 23519583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2422, - "Name": "La Puesta Del Sol", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "E.Weiss", - "Milliseconds": 628062, - "Bytes": 20614621, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2423, - "Name": "Persuasion", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana", - "Milliseconds": 318432, - "Bytes": 10354751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2424, - "Name": "As The Years Go by", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Albert King", - "Milliseconds": 233064, - "Bytes": 7566829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2425, - "Name": "Soul Sacrifice", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana", - "Milliseconds": 296437, - "Bytes": 9801120, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2426, - "Name": "Fried Neckbones And Home Fries", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "W.Correa", - "Milliseconds": 638563, - "Bytes": 20939646, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2427, - "Name": "Santana Jam", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana", - "Milliseconds": 882834, - "Bytes": 29207100, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 198, - "Title": "Santana Live", - "ArtistId": 59, - "Tracks": [ - { - "TrackId": 2428, - "Name": "Evil Ways", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 475402, - "Bytes": 15289235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2429, - "Name": "We've Got To Get Together/Jingo", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 1070027, - "Bytes": 34618222, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2430, - "Name": "Rock Me", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 94720, - "Bytes": 3037596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2431, - "Name": "Just Ain't Good Enough", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 850259, - "Bytes": 27489067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2432, - "Name": "Funky Piano", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 934791, - "Bytes": 30200730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2433, - "Name": "The Way You Do To Mer", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 618344, - "Bytes": 20028702, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 60, - "Name": "Santana Feat. Dave Matthews", - "Albums": null - }, - { - "ArtistId": 61, - "Name": "Santana Feat. Everlast", - "Albums": null - }, - { - "ArtistId": 62, - "Name": "Santana Feat. Rob Thomas", - "Albums": null - }, - { - "ArtistId": 63, - "Name": "Santana Feat. Lauryn Hill \u0026 Cee-Lo", - "Albums": null - }, - { - "ArtistId": 64, - "Name": "Santana Feat. The Project G\u0026B", - "Albums": null - }, - { - "ArtistId": 65, - "Name": "Santana Feat. Man�", - "Albums": null - }, - { - "ArtistId": 66, - "Name": "Santana Feat. Eagle-Eye Cherry", - "Albums": null - }, - { - "ArtistId": 67, - "Name": "Santana Feat. Eric Clapton", - "Albums": null - }, - { - "ArtistId": 68, - "Name": "Miles Davis", - "Albums": [ - { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]", - "ArtistId": 68, - "Tracks": [ - { - "TrackId": 597, - "Name": "Now's The Time", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 197459, - "Bytes": 6358868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 18, - "Name": "On-The-Go 1" - } - ], - "Invoices": null - }, - { - "TrackId": 598, - "Name": "Jeru", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 193410, - "Bytes": 6222536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 599, - "Name": "Compulsion", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 345025, - "Bytes": 11254474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 600, - "Name": "Tempus Fugit", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 231784, - "Bytes": 7548434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 601, - "Name": "Walkin'", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 807392, - "Bytes": 26411634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 602, - "Name": "'Round Midnight", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 357459, - "Bytes": 11590284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 603, - "Name": "Bye Bye Blackbird", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 476003, - "Bytes": 15549224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 604, - "Name": "New Rhumba", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 277968, - "Bytes": 9018024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 605, - "Name": "Generique", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 168777, - "Bytes": 5437017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 606, - "Name": "Summertime", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 200437, - "Bytes": 6461370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 607, - "Name": "So What", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 564009, - "Bytes": 18360449, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 608, - "Name": "The Pan Piper", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 233769, - "Bytes": 7593713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 609, - "Name": "Someday My Prince Will Come", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 544078, - "Bytes": 17890773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]", - "ArtistId": 68, - "Tracks": [ - { - "TrackId": 610, - "Name": "My Funny Valentine (Live)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 907520, - "Bytes": 29416781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 611, - "Name": "E.S.P.", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 330684, - "Bytes": 11079866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 612, - "Name": "Nefertiti", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 473495, - "Bytes": 15478450, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 613, - "Name": "Petits Machins (Little Stuff)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 487392, - "Bytes": 16131272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 614, - "Name": "Miles Runs The Voodoo Down", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 843964, - "Bytes": 27967919, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 615, - "Name": "Little Church (Live)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 196101, - "Bytes": 6273225, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 616, - "Name": "Black Satin", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 316682, - "Bytes": 10529483, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 617, - "Name": "Jean Pierre (Live)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 243461, - "Bytes": 7955114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 618, - "Name": "Time After Time", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 220734, - "Bytes": 7292197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 619, - "Name": "Portia", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 378775, - "Bytes": 12520126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 157, - "Title": "Miles Ahead", - "ArtistId": 68, - "Tracks": [ - { - "TrackId": 1902, - "Name": "Springsville", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J. Carisi", - "Milliseconds": 207725, - "Bytes": 6776219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1903, - "Name": "The Maids Of Cadiz", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "L. Delibes", - "Milliseconds": 233534, - "Bytes": 7505275, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1904, - "Name": "The Duke", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Dave Brubeck", - "Milliseconds": 214961, - "Bytes": 6977626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1905, - "Name": "My Ship", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Ira Gershwin, Kurt Weill", - "Milliseconds": 268016, - "Bytes": 8581144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1906, - "Name": "Miles Ahead", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis, Gil Evans", - "Milliseconds": 209893, - "Bytes": 6807707, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1907, - "Name": "Blues For Pablo", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Gil Evans", - "Milliseconds": 318328, - "Bytes": 10218398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1908, - "Name": "New Rhumba", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "A. Jamal", - "Milliseconds": 276871, - "Bytes": 8980400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1909, - "Name": "The Meaning Of The Blues", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "R. Troup, L. Worth", - "Milliseconds": 168594, - "Bytes": 5395412, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1910, - "Name": "Lament", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J.J. Johnson", - "Milliseconds": 134191, - "Bytes": 4293394, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1911, - "Name": "I Don't Wanna Be Kissed (By Anyone But You)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "H. Spina, J. Elliott", - "Milliseconds": 191320, - "Bytes": 6219487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1912, - "Name": "Springsville (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J. Carisi", - "Milliseconds": 196388, - "Bytes": 6382079, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1913, - "Name": "Blues For Pablo (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Gil Evans", - "Milliseconds": 212558, - "Bytes": 6900619, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1914, - "Name": "The Meaning Of The Blues/Lament (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J.J. Johnson/R. Troup, L. Worth", - "Milliseconds": 309786, - "Bytes": 9912387, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1915, - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "H. Spina, J. Elliott", - "Milliseconds": 192078, - "Bytes": 6254796, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 69, - "Name": "Gene Krupa", - "Albums": [ - { - "AlbumId": 51, - "Title": "Up An' Atom", - "ArtistId": 69, - "Tracks": [ - { - "TrackId": 624, - "Name": "Jeepers Creepers", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 185965, - "Bytes": 5991903, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 625, - "Name": "Blue Rythm Fantasy", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 348212, - "Bytes": 11204006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 335, - "CustomerId": 53, - "InvoiceDate": "2013-01-15T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 0.99, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 626, - "Name": "Drum Boogie", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 191555, - "Bytes": 6185636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 336, - "CustomerId": 54, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 627, - "Name": "Let Me Off Uptown", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 187637, - "Bytes": 6034685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 336, - "CustomerId": 54, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 628, - "Name": "Leave Us Leap", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 182726, - "Bytes": 5898810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 629, - "Name": "Opus No.1", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 179800, - "Bytes": 5846041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 337, - "CustomerId": 56, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 630, - "Name": "Boogie Blues", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 204199, - "Bytes": 6603153, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 631, - "Name": "How High The Moon", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 201430, - "Bytes": 6529487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 337, - "CustomerId": 56, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 632, - "Name": "Disc Jockey Jump", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 193149, - "Bytes": 6260820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 633, - "Name": "Up An' Atom", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 179565, - "Bytes": 5822645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 634, - "Name": "Bop Boogie", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 189596, - "Bytes": 6093124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 635, - "Name": "Lemon Drop", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 194089, - "Bytes": 6287531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 636, - "Name": "Coronation Drop", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 176222, - "Bytes": 5899898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 637, - "Name": "Overtime", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 163030, - "Bytes": 5432236, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 638, - "Name": "Imagination", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 289306, - "Bytes": 9444385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 639, - "Name": "Don't Take Your Love From Me", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 282331, - "Bytes": 9244238, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 640, - "Name": "Midget", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 217025, - "Bytes": 7257663, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 641, - "Name": "I'm Coming Virginia", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 280163, - "Bytes": 9209827, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 642, - "Name": "Payin' Them Dues Blues", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 198556, - "Bytes": 6536918, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 643, - "Name": "Jungle Drums", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 199627, - "Bytes": 6546063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 644, - "Name": "Showcase", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 201560, - "Bytes": 6697510, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 645, - "Name": "Swedish Schnapps", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 191268, - "Bytes": 6359750, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 70, - "Name": "Toquinho \u0026 Vin�cius", - "Albums": [ - { - "AlbumId": 52, - "Title": "Vin�cius De Moraes - Sem Limite", - "ArtistId": 70, - "Tracks": [ - { - "TrackId": 646, - "Name": "Samba Da B�n��o", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 409965, - "Bytes": 13490008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 647, - "Name": "Pot-Pourri N.� 4", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 392437, - "Bytes": 13125975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 648, - "Name": "Onde Anda Voc�", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 168437, - "Bytes": 5550356, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 230, - "CustomerId": 14, - "InvoiceDate": "2011-10-08T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 0.99, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 649, - "Name": "Samba Da Volta", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 170631, - "Bytes": 5676090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 231, - "CustomerId": 15, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 650, - "Name": "Canto De Ossanha", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 204956, - "Bytes": 6771624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 231, - "CustomerId": 15, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 651, - "Name": "Pot-Pourri N.� 5", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 219898, - "Bytes": 7117769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 652, - "Name": "Formosa", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 137482, - "Bytes": 4560873, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 232, - "CustomerId": 17, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 653, - "Name": "Como � Duro Trabalhar", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 226168, - "Bytes": 7541177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 654, - "Name": "Minha Namorada", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 244297, - "Bytes": 7927967, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 232, - "CustomerId": 17, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 655, - "Name": "Por Que Ser�", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 162142, - "Bytes": 5371483, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 656, - "Name": "Berimbau", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 190667, - "Bytes": 6335548, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 657, - "Name": "Deixa", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 179826, - "Bytes": 5932799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 658, - "Name": "Pot-Pourri N.� 2", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 211748, - "Bytes": 6878359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 659, - "Name": "Samba Em Prel�dio", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 212636, - "Bytes": 6923473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 660, - "Name": "Carta Ao Tom 74", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 162560, - "Bytes": 5382354, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 71, - "Name": "Vin�cius De Moraes \u0026 Baden Powell", - "Albums": null - }, - { - "ArtistId": 72, - "Name": "Vin�cius De Moraes", - "Albums": [ - { - "AlbumId": 247, - "Title": "Vinicius De Moraes", - "ArtistId": 72, - "Tracks": [ - { - "TrackId": 3117, - "Name": "Pela Luz Dos Olhos Teus", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 119196, - "Bytes": 3905715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3118, - "Name": "A Bencao E Outros", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 421093, - "Bytes": 14234427, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3119, - "Name": "Tudo Na Mais Santa Paz", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222406, - "Bytes": 7426757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3120, - "Name": "O Velho E Aflor", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 275121, - "Bytes": 9126828, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3121, - "Name": "Cotidiano N 2", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 55902, - "Bytes": 1805797, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3122, - "Name": "Adeus", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 221884, - "Bytes": 7259351, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3123, - "Name": "Samba Pra Endrigo", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259265, - "Bytes": 8823551, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3124, - "Name": "So Por Amor", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236591, - "Bytes": 7745764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3125, - "Name": "Meu Pranto Rolou", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 181760, - "Bytes": 6003345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3126, - "Name": "Mulher Carioca", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 191686, - "Bytes": 6395048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3127, - "Name": "Um Homem Chamado Alfredo", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 151640, - "Bytes": 4976227, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3128, - "Name": "Samba Do Jato", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 220813, - "Bytes": 7357840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3129, - "Name": "Oi, La", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 167053, - "Bytes": 5562700, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3130, - "Name": "Vinicius, Poeta Do Encontro", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 336431, - "Bytes": 10858776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3131, - "Name": "Soneto Da Separacao", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193880, - "Bytes": 6277511, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 73, - "Name": "Vin�cius E Qurteto Em Cy", - "Albums": null - }, - { - "ArtistId": 74, - "Name": "Vin�cius E Odette Lara", - "Albums": null - }, - { - "ArtistId": 75, - "Name": "Vinicius, Toquinho \u0026 Quarteto Em Cy", - "Albums": null - }, - { - "ArtistId": 76, - "Name": "Creedence Clearwater Revival", - "Albums": [ - { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1", - "ArtistId": 76, - "Tracks": [ - { - "TrackId": 675, - "Name": "Susie Q", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Hawkins-Lewis-Broadwater", - "Milliseconds": 275565, - "Bytes": 9043825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 127, - "CustomerId": 37, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 676, - "Name": "I Put A Spell On You", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jay Hawkins", - "Milliseconds": 272091, - "Bytes": 8943000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 677, - "Name": "Proud Mary", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 189022, - "Bytes": 6229590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 127, - "CustomerId": 37, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 678, - "Name": "Bad Moon Rising", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 140146, - "Bytes": 4609835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 679, - "Name": "Lodi", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 191451, - "Bytes": 6260214, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 680, - "Name": "Green River", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 154279, - "Bytes": 5105874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 681, - "Name": "Commotion", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 162899, - "Bytes": 5354252, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 682, - "Name": "Down On The Corner", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 164858, - "Bytes": 5521804, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 683, - "Name": "Fortunate Son", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 140329, - "Bytes": 4617559, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 684, - "Name": "Travelin' Band", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 129358, - "Bytes": 4270414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 685, - "Name": "Who'll Stop The Rain", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 149394, - "Bytes": 4899579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 686, - "Name": "Up Around The Bend", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 162429, - "Bytes": 5368701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 687, - "Name": "Run Through The Jungle", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 186044, - "Bytes": 6156567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 688, - "Name": "Lookin' Out My Back Door", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 152946, - "Bytes": 5034670, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 689, - "Name": "Long As I Can See The Light", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 213237, - "Bytes": 6924024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 690, - "Name": "I Heard It Through The Grapevine", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Whitfield-Strong", - "Milliseconds": 664894, - "Bytes": 21947845, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 691, - "Name": "Have You Ever Seen The Rain?", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 160052, - "Bytes": 5263675, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 692, - "Name": "Hey Tonight", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 162847, - "Bytes": 5343807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 693, - "Name": "Sweet Hitch-Hiker", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 175490, - "Bytes": 5716603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 694, - "Name": "Someday Never Comes", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 239360, - "Bytes": 7945235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 20, - "CustomerId": 54, - "InvoiceDate": "2009-03-22T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 0.99, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2", - "ArtistId": 76, - "Tracks": [ - { - "TrackId": 695, - "Name": "Walking On The Water", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 281286, - "Bytes": 9302129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 21, - "CustomerId": 55, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 696, - "Name": "Suzie-Q, Pt. 2", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 244114, - "Bytes": 7986637, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 21, - "CustomerId": 55, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 697, - "Name": "Born On The Bayou", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 316630, - "Bytes": 10361866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 698, - "Name": "Good Golly Miss Molly", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 163604, - "Bytes": 5348175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 22, - "CustomerId": 57, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 699, - "Name": "Tombstone Shadow", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 218880, - "Bytes": 7209080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 700, - "Name": "Wrote A Song For Everyone", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 296385, - "Bytes": 9675875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 22, - "CustomerId": 57, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 701, - "Name": "Night Time Is The Right Time", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 190119, - "Bytes": 6211173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 702, - "Name": "Cotton Fields", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 178181, - "Bytes": 5919224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 703, - "Name": "It Came Out Of The Sky", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 176718, - "Bytes": 5807474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 704, - "Name": "Don't Look Now", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 131918, - "Bytes": 4366455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 705, - "Name": "The Midnight Special", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 253596, - "Bytes": 8297482, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 706, - "Name": "Before You Accuse Me", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 207804, - "Bytes": 6815126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 707, - "Name": "My Baby Left Me", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 140460, - "Bytes": 4633440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 708, - "Name": "Pagan Baby", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 385619, - "Bytes": 12713813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 709, - "Name": "(Wish I Could) Hideaway", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 228466, - "Bytes": 7432978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 710, - "Name": "It's Just A Thought", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 237374, - "Bytes": 7778319, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 711, - "Name": "Molina", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 163239, - "Bytes": 5390811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 712, - "Name": "Born To Move", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 342804, - "Bytes": 11260814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 713, - "Name": "Lookin' For A Reason", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 209789, - "Bytes": 6933135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 714, - "Name": "Hello Mary Lou", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 132832, - "Bytes": 4476563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 77, - "Name": "C�ssia Eller", - "Albums": [ - { - "AlbumId": 56, - "Title": "C�ssia Eller - Cole��o Sem Limite [Disc 2]", - "ArtistId": 77, - "Tracks": [ - { - "TrackId": 715, - "Name": "Gatas Extraordin�rias", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 212506, - "Bytes": 7095702, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 716, - "Name": "Brasil", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 243696, - "Bytes": 7911683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 717, - "Name": "Eu Sou Neguinha (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 251768, - "Bytes": 8376000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 718, - "Name": "Gera��o Coca-Cola (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 228153, - "Bytes": 7573301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 719, - "Name": "Lanterna Dos Afogados", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 204538, - "Bytes": 6714582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 720, - "Name": "Coron� Antonio Bento", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 200437, - "Bytes": 6713066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 721, - "Name": "Voc� Passa, Eu Acho Gra�a (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206733, - "Bytes": 6943576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 722, - "Name": "Meu Mundo Fica Completo (Com Voc�)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247771, - "Bytes": 8322240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 723, - "Name": "1� De Julho", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 270262, - "Bytes": 9017535, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 724, - "Name": "M�sica Urbana 2", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 194899, - "Bytes": 6383472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 725, - "Name": "Vida Bandida (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 192626, - "Bytes": 6360785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 726, - "Name": "Palavras Ao Vento", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 212453, - "Bytes": 7048676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 727, - "Name": "N�o Sei O Que Eu Quero Da Vida", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 151849, - "Bytes": 5024963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 728, - "Name": "Woman Is The Nigger Of The World (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 298919, - "Bytes": 9724145, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 729, - "Name": "Juventude Transviada (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 278622, - "Bytes": 9183808, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 57, - "Title": "C�ssia Eller - Sem Limite [Disc 1]", - "ArtistId": 77, - "Tracks": [ - { - "TrackId": 730, - "Name": "Malandragem", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247588, - "Bytes": 8165048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 731, - "Name": "O Segundo Sol", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252133, - "Bytes": 8335629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 732, - "Name": "Smells Like Teen Spirit (Ao Vivo)", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 316865, - "Bytes": 10384506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 733, - "Name": "E.C.T.", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227500, - "Bytes": 7571834, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 734, - "Name": "Todo Amor Que Houver Nesta Vida", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227160, - "Bytes": 7420347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 735, - "Name": "Metr�. Linha 743", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174654, - "Bytes": 5837495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 736, - "Name": "N�s (Ao Vivo)", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193828, - "Bytes": 6498661, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 737, - "Name": "Na Cad�ncia Do Samba", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 196075, - "Bytes": 6483952, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 738, - "Name": "Admir�vel Gado Novo", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 274390, - "Bytes": 9144031, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 739, - "Name": "Eleanor Rigby", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189466, - "Bytes": 6303205, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 740, - "Name": "Socorro", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 258586, - "Bytes": 8549393, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 741, - "Name": "Blues Da Piedade", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 257123, - "Bytes": 8472964, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 742, - "Name": "Rubens", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211853, - "Bytes": 7026317, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 743, - "Name": "N�o Deixe O Samba Morrer - Cassia Eller e Alcione", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 268173, - "Bytes": 8936345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 744, - "Name": "Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 188473, - "Bytes": 6195854, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 78, - "Name": "Def Leppard", - "Albums": [ - { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits", - "ArtistId": 78, - "Tracks": [ - { - "TrackId": 826, - "Name": "Pour Some Sugar On Me", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 292519, - "Bytes": 9518842, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 827, - "Name": "Photograph", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 248633, - "Bytes": 8108507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 828, - "Name": "Love Bites", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 346853, - "Bytes": 11305791, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 829, - "Name": "Let's Get Rocked", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 296019, - "Bytes": 9724150, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 830, - "Name": "Two Steps Behind [Acoustic Version]", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 259787, - "Bytes": 8523388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 831, - "Name": "Animal", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 244741, - "Bytes": 7985133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 832, - "Name": "Heaven Is", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 214021, - "Bytes": 6988128, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 833, - "Name": "Rocket", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 247248, - "Bytes": 8092463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 834, - "Name": "When Love \u0026 Hate Collide", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 257280, - "Bytes": 8364633, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 835, - "Name": "Action", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 220604, - "Bytes": 7130830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 836, - "Name": "Make Love Like A Man", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 255660, - "Bytes": 8309725, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 837, - "Name": "Armageddon It", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 322455, - "Bytes": 10522352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 838, - "Name": "Have You Ever Needed Someone So Bad", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 319320, - "Bytes": 10400020, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 839, - "Name": "Rock Of Ages", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 248424, - "Bytes": 8150318, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 840, - "Name": "Hysteria", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 355056, - "Bytes": 11622738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 841, - "Name": "Bringin' On The Heartbreak", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 272457, - "Bytes": 8853324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 79, - "Name": "Dennis Chambers", - "Albums": [ - { - "AlbumId": 68, - "Title": "Outbreak", - "ArtistId": 79, - "Tracks": [ - { - "TrackId": 842, - "Name": "Roll Call", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jim Beard", - "Milliseconds": 321358, - "Bytes": 10653494, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 843, - "Name": "Otay", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "John Scofield, Robert Aries, Milton Chambers and Gary Grainger", - "Milliseconds": 423653, - "Bytes": 14176083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 844, - "Name": "Groovus Interruptus", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jim Beard", - "Milliseconds": 319373, - "Bytes": 10602166, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 845, - "Name": "Paris On Mine", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jon Herington", - "Milliseconds": 368875, - "Bytes": 12059507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 846, - "Name": "In Time", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Sylvester Stewart", - "Milliseconds": 368953, - "Bytes": 12287103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 847, - "Name": "Plan B", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Dean Brown, Dennis Chambers \u0026 Jim Beard", - "Milliseconds": 272039, - "Bytes": 9032315, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 848, - "Name": "Outbreak", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jim Beard \u0026 Jon Herington", - "Milliseconds": 659226, - "Bytes": 21685807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 849, - "Name": "Baltimore, DC", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "John Scofield", - "Milliseconds": 346932, - "Bytes": 11394473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 850, - "Name": "Talkin Loud and Saying Nothin", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "James Brown \u0026 Bobby Byrd", - "Milliseconds": 360411, - "Bytes": 11994859, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 80, - "Name": "Djavan", - "Albums": [ - { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02", - "ArtistId": 80, - "Tracks": [ - { - "TrackId": 851, - "Name": "P�tala", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 270080, - "Bytes": 8856165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 852, - "Name": "Meu Bem-Querer", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 255608, - "Bytes": 8330047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 853, - "Name": "Cigano", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 304692, - "Bytes": 10037362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 854, - "Name": "Boa Noite", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 338755, - "Bytes": 11283582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 855, - "Name": "Fato Consumado", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211565, - "Bytes": 7018586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 856, - "Name": "Faltando Um Peda�o", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 267728, - "Bytes": 8788760, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 857, - "Name": "�libi", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 213237, - "Bytes": 6928434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 342, - "CustomerId": 32, - "InvoiceDate": "2013-02-15T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 0.99, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 858, - "Name": "Esquinas", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 280999, - "Bytes": 9096726, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 343, - "CustomerId": 33, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 859, - "Name": "Se...", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 286432, - "Bytes": 9413777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 343, - "CustomerId": 33, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 860, - "Name": "Eu Te Devoro", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 311614, - "Bytes": 10312775, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 861, - "Name": "Lil�s", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 274181, - "Bytes": 9049542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 344, - "CustomerId": 35, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 862, - "Name": "Acelerou", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 284081, - "Bytes": 9396942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 863, - "Name": "Um Amor Puro", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 327784, - "Bytes": 10687311, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 344, - "CustomerId": 35, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1", - "ArtistId": 80, - "Tracks": [ - { - "TrackId": 864, - "Name": "Samurai", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 330997, - "Bytes": 10872787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 865, - "Name": "Nem Um Dia", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 337423, - "Bytes": 11181446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 866, - "Name": "Oceano", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 217338, - "Bytes": 7026441, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 867, - "Name": "A�ai", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 270968, - "Bytes": 8893682, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 868, - "Name": "Serrado", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 295314, - "Bytes": 9842240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 869, - "Name": "Flor De Lis", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 236355, - "Bytes": 7801108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 870, - "Name": "Amar � Tudo", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 211617, - "Bytes": 7073899, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 871, - "Name": "Azul", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 253962, - "Bytes": 8381029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 872, - "Name": "Seduzir", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 277524, - "Bytes": 9163253, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 873, - "Name": "A Carta", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan - Gabriel, O Pensador", - "Milliseconds": 347297, - "Bytes": 11493463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 874, - "Name": "Sina", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 268173, - "Bytes": 8906539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 875, - "Name": "Acelerou", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 284133, - "Bytes": 9391439, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 876, - "Name": "Um Amor Puro", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 327105, - "Bytes": 10664698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 81, - "Name": "Eric Clapton", - "Albums": [ - { - "AlbumId": 72, - "Title": "The Cream Of Clapton", - "ArtistId": 81, - "Tracks": [ - { - "TrackId": 891, - "Name": "Layla", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Gordon", - "Milliseconds": 430733, - "Bytes": 14115792, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 892, - "Name": "Badge", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Harrison", - "Milliseconds": 163552, - "Bytes": 5322942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 893, - "Name": "I Feel Free", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Bruce/Clapton", - "Milliseconds": 174576, - "Bytes": 5725684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 894, - "Name": "Sunshine Of Your Love", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Bruce/Clapton", - "Milliseconds": 252891, - "Bytes": 8225889, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 895, - "Name": "Crossroads", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Robert Johnson Arr: Eric Clapton", - "Milliseconds": 253335, - "Bytes": 8273540, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 896, - "Name": "Strange Brew", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Collins/Pappalardi", - "Milliseconds": 167810, - "Bytes": 5489787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 897, - "Name": "White Room", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Bruce/Clapton", - "Milliseconds": 301583, - "Bytes": 9872606, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 898, - "Name": "Bell Bottom Blues", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 304744, - "Bytes": 9946681, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 899, - "Name": "Cocaine", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Cale/Clapton", - "Milliseconds": 215928, - "Bytes": 7138399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 900, - "Name": "I Shot The Sheriff", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Marley", - "Milliseconds": 263862, - "Bytes": 8738973, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 901, - "Name": "After Midnight", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/J. J. Cale", - "Milliseconds": 191320, - "Bytes": 6460941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 902, - "Name": "Swing Low Sweet Chariot", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Trad. Arr. Clapton", - "Milliseconds": 208143, - "Bytes": 6896288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 903, - "Name": "Lay Down Sally", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Levy", - "Milliseconds": 231732, - "Bytes": 7774207, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 132, - "CustomerId": 13, - "InvoiceDate": "2010-07-31T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 0.99, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 904, - "Name": "Knockin On Heavens Door", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Dylan", - "Milliseconds": 264411, - "Bytes": 8758819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 133, - "CustomerId": 14, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 905, - "Name": "Wonderful Tonight", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 221387, - "Bytes": 7326923, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 133, - "CustomerId": 14, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 906, - "Name": "Let It Grow", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 297064, - "Bytes": 9742568, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 907, - "Name": "Promises", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/F.eldman/Linn", - "Milliseconds": 180401, - "Bytes": 6006154, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 134, - "CustomerId": 16, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 908, - "Name": "I Can't Stand It", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 249730, - "Bytes": 8271980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 73, - "Title": "Unplugged", - "ArtistId": 81, - "Tracks": [ - { - "TrackId": 909, - "Name": "Signe", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton", - "Milliseconds": 193515, - "Bytes": 6475042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 134, - "CustomerId": 16, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 910, - "Name": "Before You Accuse Me", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eugene McDaniel", - "Milliseconds": 224339, - "Bytes": 7456807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 911, - "Name": "Hey Hey", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Big Bill Broonzy", - "Milliseconds": 196466, - "Bytes": 6543487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 912, - "Name": "Tears In Heaven", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton, Will Jennings", - "Milliseconds": 274729, - "Bytes": 9032835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 913, - "Name": "Lonely Stranger", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton", - "Milliseconds": 328724, - "Bytes": 10894406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 914, - "Name": "Nobody Knows You When You're Down \u0026 Out", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Jimmy Cox", - "Milliseconds": 231836, - "Bytes": 7669922, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 915, - "Name": "Layla", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton, Jim Gordon", - "Milliseconds": 285387, - "Bytes": 9490542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 916, - "Name": "Running On Faith", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Jerry Lynn Williams", - "Milliseconds": 378984, - "Bytes": 12536275, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 917, - "Name": "Walkin' Blues", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Robert Johnson", - "Milliseconds": 226429, - "Bytes": 7435192, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 918, - "Name": "Alberta", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Traditional", - "Milliseconds": 222406, - "Bytes": 7412975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 919, - "Name": "San Francisco Bay Blues", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Jesse Fuller", - "Milliseconds": 203363, - "Bytes": 6724021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 920, - "Name": "Malted Milk", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Robert Johnson", - "Milliseconds": 216528, - "Bytes": 7096781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 921, - "Name": "Old Love", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton, Robert Cray", - "Milliseconds": 472920, - "Bytes": 15780747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 922, - "Name": "Rollin' And Tumblin'", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "McKinley Morgenfield (Muddy Waters)", - "Milliseconds": 251768, - "Bytes": 8407355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1105, - "Name": "A Novidade", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 324780, - "Bytes": 10765600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1106, - "Name": "Tenho Sede", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 261616, - "Bytes": 8708114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1107, - "Name": "Refazenda", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 218305, - "Bytes": 7237784, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1108, - "Name": "Realce", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 264489, - "Bytes": 8847612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1109, - "Name": "Esot�rico", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 317779, - "Bytes": 10530533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1110, - "Name": "Dr�o", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 301453, - "Bytes": 9931950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1111, - "Name": "A Paz", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 293093, - "Bytes": 9593064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1112, - "Name": "Beira Mar", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 295444, - "Bytes": 9597994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 244, - "CustomerId": 31, - "InvoiceDate": "2011-12-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 0.99, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1113, - "Name": "Sampa", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 225697, - "Bytes": 7469905, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 245, - "CustomerId": 32, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1114, - "Name": "Parabolicamar�", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 284943, - "Bytes": 9543435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 245, - "CustomerId": 32, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1115, - "Name": "Tempo Rei", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 302733, - "Bytes": 10019269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1116, - "Name": "Expresso 2222", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 284760, - "Bytes": 9690577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 246, - "CustomerId": 34, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1117, - "Name": "Aquele Abra�o", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 263993, - "Bytes": 8805003, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1118, - "Name": "Palco", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 270550, - "Bytes": 9049901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 246, - "CustomerId": 34, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1119, - "Name": "Toda Menina Baiana", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 278177, - "Bytes": 9351000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1120, - "Name": "S�tio Do Pica-Pau Amarelo", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 218070, - "Bytes": 7217955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 82, - "Name": "Faith No More", - "Albums": [ - { - "AlbumId": 74, - "Title": "Album Of The Year", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 923, - "Name": "Collision", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jon Hudson/Mike Patton", - "Milliseconds": 204303, - "Bytes": 6656596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 924, - "Name": "Stripsearch", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jon Hudson/Mike Bordin/Mike Patton", - "Milliseconds": 270106, - "Bytes": 8861119, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 925, - "Name": "Last Cup Of Sorrow", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Patton", - "Milliseconds": 251663, - "Bytes": 8221247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 926, - "Name": "Naked In Front Of The Computer", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Patton", - "Milliseconds": 128757, - "Bytes": 4225077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 27, - "CustomerId": 33, - "InvoiceDate": "2009-04-22T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 0.99, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 927, - "Name": "Helpless", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Milliseconds": 326217, - "Bytes": 10753135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 28, - "CustomerId": 34, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 928, - "Name": "Mouth To Mouth", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton", - "Milliseconds": 228493, - "Bytes": 7505887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 28, - "CustomerId": 34, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 929, - "Name": "Ashes To Ashes", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Milliseconds": 217391, - "Bytes": 7093746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 930, - "Name": "She Loves Me Not", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Milliseconds": 209867, - "Bytes": 6887544, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 29, - "CustomerId": 36, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 931, - "Name": "Got That Feeling", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Patton", - "Milliseconds": 140852, - "Bytes": 4643227, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 932, - "Name": "Paths Of Glory", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Milliseconds": 257253, - "Bytes": 8436300, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 29, - "CustomerId": 36, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 933, - "Name": "Home Sick Home", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Patton", - "Milliseconds": 119040, - "Bytes": 3898976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 934, - "Name": "Pristina", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Patton", - "Milliseconds": 232698, - "Bytes": 7497361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 75, - "Title": "Angel Dust", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 935, - "Name": "Land Of Sunshine", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 223921, - "Bytes": 7353567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 936, - "Name": "Caffeine", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 267937, - "Bytes": 8747367, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 937, - "Name": "Midlife Crisis", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 263235, - "Bytes": 8628841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 938, - "Name": "RV", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 223242, - "Bytes": 7288162, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 939, - "Name": "Smaller And Smaller", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 310831, - "Bytes": 10180103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 940, - "Name": "Everything's Ruined", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 273658, - "Bytes": 9010917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 941, - "Name": "Malpractice", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 241371, - "Bytes": 7900683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 942, - "Name": "Kindergarten", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 270680, - "Bytes": 8853647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 943, - "Name": "Be Aggressive", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 222432, - "Bytes": 7298027, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 944, - "Name": "A Small Victory", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 297168, - "Bytes": 9733572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 945, - "Name": "Crack Hitler", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 279144, - "Bytes": 9162435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 946, - "Name": "Jizzlobber", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 398341, - "Bytes": 12926140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 947, - "Name": "Midnight Cowboy", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 251924, - "Bytes": 8242626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 948, - "Name": "Easy", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 185835, - "Bytes": 6073008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 949, - "Name": "Get Out", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 137482, - "Bytes": 4524972, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 950, - "Name": "Ricochet", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 269400, - "Bytes": 8808812, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 951, - "Name": "Evidence", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 293590, - "Bytes": 9626136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 952, - "Name": "The Gentle Art Of Making Enemies", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 209319, - "Bytes": 6908609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 953, - "Name": "Star A.D.", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 203807, - "Bytes": 6747658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 954, - "Name": "Cuckoo For Caca", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 222902, - "Bytes": 7388369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 955, - "Name": "Caralho Voador", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 242102, - "Bytes": 8029054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 956, - "Name": "Ugly In The Morning", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 186435, - "Bytes": 6224997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 957, - "Name": "Digging The Grave", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 185129, - "Bytes": 6109259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 958, - "Name": "Take This Bottle", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 298997, - "Bytes": 9779971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 959, - "Name": "King For A Day", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 395859, - "Bytes": 13163733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 960, - "Name": "What A Day", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 158275, - "Bytes": 5203430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 961, - "Name": "The Last To Know", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 267833, - "Bytes": 8736776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 962, - "Name": "Just A Man", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 336666, - "Bytes": 11031254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 963, - "Name": "Absolute Zero", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 181995, - "Bytes": 5929427, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 77, - "Title": "The Real Thing", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 964, - "Name": "From Out Of Nowhere", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 202527, - "Bytes": 6587802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 965, - "Name": "Epic", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 294008, - "Bytes": 9631296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 966, - "Name": "Falling To Pieces", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 316055, - "Bytes": 10333123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 967, - "Name": "Surprise! You're Dead!", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 147226, - "Bytes": 4823036, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 968, - "Name": "Zombie Eaters", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 360881, - "Bytes": 11835367, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 969, - "Name": "The Real Thing", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 493635, - "Bytes": 16233080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 970, - "Name": "Underwater Love", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 231993, - "Bytes": 7634387, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 971, - "Name": "The Morning After", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 223764, - "Bytes": 7355898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 972, - "Name": "Woodpecker From Mars", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 340532, - "Bytes": 11174250, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 973, - "Name": "War Pigs", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 464770, - "Bytes": 15267802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 974, - "Name": "Edge Of The World", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 250357, - "Bytes": 8235607, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 83, - "Name": "Falamansa", - "Albums": [ - { - "AlbumId": 78, - "Title": "Deixa Entrar", - "ArtistId": 83, - "Tracks": [ - { - "TrackId": 975, - "Name": "Deixa Entrar", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 33619, - "Bytes": 1095012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 976, - "Name": "Falamansa Song", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 237165, - "Bytes": 7921313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 977, - "Name": "Xote Dos Milagres", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 269557, - "Bytes": 8897778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 978, - "Name": "Rindo � Toa", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222066, - "Bytes": 7365321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 979, - "Name": "Confid�ncia", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222197, - "Bytes": 7460829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 980, - "Name": "Forr� De T�quio", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 169273, - "Bytes": 5588756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 981, - "Name": "Zeca Violeiro", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 143673, - "Bytes": 4781949, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 982, - "Name": "Avisa", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 355030, - "Bytes": 11844320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 983, - "Name": "Principiando/Decolagem", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 116767, - "Bytes": 3923789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 984, - "Name": "Asas", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 231915, - "Bytes": 7711669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 985, - "Name": "Medo De Escuro", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 213760, - "Bytes": 7056323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 986, - "Name": "Ora��o", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 271072, - "Bytes": 9003882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 987, - "Name": "Minha Gata", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 181838, - "Bytes": 6039502, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 988, - "Name": "Desaforo", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174524, - "Bytes": 5853561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 84, - "Name": "Foo Fighters", - "Albums": [ - { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 989, - "Name": "In Your Honor", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 230191, - "Bytes": 7468463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 990, - "Name": "No Way Back", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 196675, - "Bytes": 6421400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 991, - "Name": "Best Of You", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 255712, - "Bytes": 8363467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 992, - "Name": "DOA", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 252186, - "Bytes": 8232342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 993, - "Name": "Hell", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 117080, - "Bytes": 3819255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 994, - "Name": "The Last Song", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 199523, - "Bytes": 6496742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 995, - "Name": "Free Me", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 278700, - "Bytes": 9109340, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 996, - "Name": "Resolve", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 288731, - "Bytes": 9416186, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 997, - "Name": "The Deepest Blues Are Black", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 238419, - "Bytes": 7735473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 998, - "Name": "End Over End", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 352078, - "Bytes": 11395296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 999, - "Name": "Still", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 313182, - "Bytes": 10323157, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1000, - "Name": "What If I Do?", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 302994, - "Bytes": 9929799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1001, - "Name": "Miracle", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 209684, - "Bytes": 6877994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1002, - "Name": "Another Round", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 265848, - "Bytes": 8752670, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1003, - "Name": "Friend Of A Friend", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 193280, - "Bytes": 6355088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1004, - "Name": "Over And Out", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 316264, - "Bytes": 10428382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1005, - "Name": "On The Mend", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 271908, - "Bytes": 9071997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1006, - "Name": "Virginia Moon", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 229198, - "Bytes": 7494639, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1007, - "Name": "Cold Day In The Sun", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 200724, - "Bytes": 6596617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1008, - "Name": "Razor", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 293276, - "Bytes": 9721373, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 81, - "Title": "One By One", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 1009, - "Name": "All My Life", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 263653, - "Bytes": 8665545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1010, - "Name": "Low", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 268120, - "Bytes": 8847196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1011, - "Name": "Have It All", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 298057, - "Bytes": 9729292, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1012, - "Name": "Times Like These", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 266370, - "Bytes": 8624691, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1013, - "Name": "Disenchanted Lullaby", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 273528, - "Bytes": 8919111, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1014, - "Name": "Tired Of You", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 311353, - "Bytes": 10094743, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1015, - "Name": "Halo", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 306442, - "Bytes": 10026371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1016, - "Name": "Lonely As You", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 277185, - "Bytes": 9022628, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1017, - "Name": "Overdrive", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 270550, - "Bytes": 8793187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1018, - "Name": "Burn Away", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 298396, - "Bytes": 9678073, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1019, - "Name": "Come Back", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 469968, - "Bytes": 15371980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 82, - "Title": "The Colour And The Shape", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 1020, - "Name": "Doll", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 83487, - "Bytes": 2702572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1021, - "Name": "Monkey Wrench", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 231523, - "Bytes": 7527531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1022, - "Name": "Hey, Johnny Park!", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 248528, - "Bytes": 8079480, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1023, - "Name": "My Poor Brain", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 213446, - "Bytes": 6973746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1024, - "Name": "Wind Up", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 152163, - "Bytes": 4950667, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1025, - "Name": "Up In Arms", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 135732, - "Bytes": 4406227, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1026, - "Name": "My Hero", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 260101, - "Bytes": 8472365, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1027, - "Name": "See You", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 146782, - "Bytes": 4888173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1028, - "Name": "Enough Space", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl", - "Milliseconds": 157387, - "Bytes": 5169280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1029, - "Name": "February Stars", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 289306, - "Bytes": 9344875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1030, - "Name": "Everlong", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl", - "Milliseconds": 250749, - "Bytes": 8270816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1031, - "Name": "Walking After You", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl", - "Milliseconds": 303856, - "Bytes": 9898992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1032, - "Name": "New Way Home", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 342230, - "Bytes": 11205664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 85, - "Name": "Frank Sinatra", - "Albums": [ - { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]", - "ArtistId": 85, - "Tracks": [ - { - "TrackId": 1033, - "Name": "My Way", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "claude fran�ois/gilles thibault/jacques revaux/paul anka", - "Milliseconds": 275879, - "Bytes": 8928684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1034, - "Name": "Strangers In The Night", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "berthold kaempfert/charles singleton/eddie snyder", - "Milliseconds": 155794, - "Bytes": 5055295, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1035, - "Name": "New York, New York", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "fred ebb/john kander", - "Milliseconds": 206001, - "Bytes": 6707993, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1036, - "Name": "I Get A Kick Out Of You", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "cole porter", - "Milliseconds": 194429, - "Bytes": 6332441, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1037, - "Name": "Something Stupid", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "carson c. parks", - "Milliseconds": 158615, - "Bytes": 5210643, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1038, - "Name": "Moon River", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "henry mancini/johnny mercer", - "Milliseconds": 198922, - "Bytes": 6395808, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1039, - "Name": "What Now My Love", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "carl sigman/gilbert becaud/pierre leroyer", - "Milliseconds": 149995, - "Bytes": 4913383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1040, - "Name": "Summer Love", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "hans bradtke/heinz meier/johnny mercer", - "Milliseconds": 174994, - "Bytes": 5693242, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1041, - "Name": "For Once In My Life", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "orlando murden/ronald miller", - "Milliseconds": 171154, - "Bytes": 5557537, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1042, - "Name": "Love And Marriage", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jimmy van heusen/sammy cahn", - "Milliseconds": 89730, - "Bytes": 2930596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1043, - "Name": "They Can't Take That Away From Me", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "george gershwin/ira gershwin", - "Milliseconds": 161227, - "Bytes": 5240043, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1044, - "Name": "My Kind Of Town", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jimmy van heusen/sammy cahn", - "Milliseconds": 188499, - "Bytes": 6119915, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1045, - "Name": "Fly Me To The Moon", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "bart howard", - "Milliseconds": 149263, - "Bytes": 4856954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1046, - "Name": "I've Got You Under My Skin", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "cole porter", - "Milliseconds": 210808, - "Bytes": 6883787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1047, - "Name": "The Best Is Yet To Come", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "carolyn leigh/cy coleman", - "Milliseconds": 173583, - "Bytes": 5633730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1048, - "Name": "It Was A Very Good Year", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "ervin drake", - "Milliseconds": 266605, - "Bytes": 8554066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1049, - "Name": "Come Fly With Me", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jimmy van heusen/sammy cahn", - "Milliseconds": 190458, - "Bytes": 6231029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1050, - "Name": "That's Life", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "dean kay thompson/kelly gordon", - "Milliseconds": 187010, - "Bytes": 6095727, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1051, - "Name": "The Girl From Ipanema", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "antonio carlos jobim/norman gimbel/vinicius de moraes", - "Milliseconds": 193750, - "Bytes": 6410674, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1052, - "Name": "The Lady Is A Tramp", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "lorenz hart/richard rodgers", - "Milliseconds": 184111, - "Bytes": 5987372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1053, - "Name": "Bad, Bad Leroy Brown", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jim croce", - "Milliseconds": 169900, - "Bytes": 5548581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1054, - "Name": "Mack The Knife", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "bert brecht/kurt weill/marc blitzstein", - "Milliseconds": 292075, - "Bytes": 9541052, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1055, - "Name": "Loves Been Good To Me", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "rod mckuen", - "Milliseconds": 203964, - "Bytes": 6645365, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1056, - "Name": "L.A. Is My Lady", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "alan bergman/marilyn bergman/peggy lipton jones/quincy jones", - "Milliseconds": 193175, - "Bytes": 6378511, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 86, - "Name": "Funk Como Le Gusta", - "Albums": [ - { - "AlbumId": 84, - "Title": "Roda De Funk", - "ArtistId": 86, - "Tracks": [ - { - "TrackId": 1057, - "Name": "Entrando Na Sua (Intro)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 179252, - "Bytes": 5840027, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1058, - "Name": "Nervosa", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 229537, - "Bytes": 7680421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1059, - "Name": "Funk De Bamba (Com Fernanda Abreu)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 237191, - "Bytes": 7866165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1060, - "Name": "Call Me At Cleo�s", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236617, - "Bytes": 7920510, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1061, - "Name": "Olhos Coloridos (Com Sandra De S�)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 321332, - "Bytes": 10567404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1062, - "Name": "Zamba��o", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 301113, - "Bytes": 10030604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1063, - "Name": "Funk Hum", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244453, - "Bytes": 8084475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1064, - "Name": "Forty Days (Com DJ Hum)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 221727, - "Bytes": 7347172, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1065, - "Name": "Balada Da Paula", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Emerson Villani", - "Milliseconds": 322821, - "Bytes": 10603717, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1066, - "Name": "Dujji", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 324597, - "Bytes": 10833935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1067, - "Name": "Meu Guarda-Chuva", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 248528, - "Bytes": 8216625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1068, - "Name": "Mot�is", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 213498, - "Bytes": 7041077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1069, - "Name": "Whistle Stop", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 526132, - "Bytes": 17533664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1070, - "Name": "16 Toneladas", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 191634, - "Bytes": 6390885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1071, - "Name": "Divirta-Se (Saindo Da Sua)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 74919, - "Bytes": 2439206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1072, - "Name": "Forty Days Instrumental", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 292493, - "Bytes": 9584317, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 87, - "Name": "Godsmack", - "Albums": [ - { - "AlbumId": 88, - "Title": "Faceless", - "ArtistId": 87, - "Tracks": [ - { - "TrackId": 1121, - "Name": "Straight Out Of Line", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 259213, - "Bytes": 8511877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1122, - "Name": "Faceless", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 216006, - "Bytes": 6992417, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1123, - "Name": "Changes", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna; Tony Rombola", - "Milliseconds": 260022, - "Bytes": 8455835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1124, - "Name": "Make Me Believe", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 248607, - "Bytes": 8075050, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1125, - "Name": "I Stand Alone", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 246125, - "Bytes": 8017041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1126, - "Name": "Re-Align", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 260884, - "Bytes": 8513891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1127, - "Name": "I Fucking Hate You", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 247170, - "Bytes": 8059642, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1128, - "Name": "Releasing The Demons", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 252760, - "Bytes": 8276372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1129, - "Name": "Dead And Broken", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 251454, - "Bytes": 8206611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1130, - "Name": "I Am", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 239516, - "Bytes": 7803270, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1131, - "Name": "The Awakening", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 89547, - "Bytes": 3035251, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1132, - "Name": "Serenity", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna; Tony Rombola", - "Milliseconds": 274834, - "Bytes": 9172976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 88, - "Name": "Guns N' Roses", - "Albums": [ - { - "AlbumId": 90, - "Title": "Appetite for Destruction", - "ArtistId": 88, - "Tracks": [ - { - "TrackId": 1146, - "Name": "Welcome to the Jungle", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 273552, - "Bytes": 4538451, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1147, - "Name": "It's So Easy", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 202824, - "Bytes": 3394019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1148, - "Name": "Nightrain", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 268537, - "Bytes": 4457283, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1149, - "Name": "Out Ta Get Me", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 263893, - "Bytes": 4382147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1150, - "Name": "Mr. Brownstone", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 228924, - "Bytes": 3816323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1151, - "Name": "Paradise City", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 406347, - "Bytes": 6687123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1152, - "Name": "My Michelle", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 219961, - "Bytes": 3671299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1153, - "Name": "Think About You", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 231640, - "Bytes": 3860275, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1154, - "Name": "Sweet Child O' Mine", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 356424, - "Bytes": 5879347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1155, - "Name": "You're Crazy", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 197135, - "Bytes": 3301971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1156, - "Name": "Anything Goes", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 206400, - "Bytes": 3451891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1157, - "Name": "Rocket Queen", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 375349, - "Bytes": 6185539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 91, - "Title": "Use Your Illusion I", - "ArtistId": 88, - "Tracks": [ - { - "TrackId": 1158, - "Name": "Right Next Door to Hell", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 182321, - "Bytes": 3175950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 34, - "CustomerId": 12, - "InvoiceDate": "2009-05-23T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 0.99, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1159, - "Name": "Dust N' Bones", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 298374, - "Bytes": 5053742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 35, - "CustomerId": 13, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1160, - "Name": "Live and Let Die", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 184016, - "Bytes": 3203390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 35, - "CustomerId": 13, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1161, - "Name": "Don't Cry (Original)", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 284744, - "Bytes": 4833259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1162, - "Name": "Perfect Crime", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 143637, - "Bytes": 2550030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 36, - "CustomerId": 15, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1163, - "Name": "You Ain't the First", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 156268, - "Bytes": 2754414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1164, - "Name": "Bad Obsession", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 328282, - "Bytes": 5537678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 36, - "CustomerId": 15, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1165, - "Name": "Back off Bitch", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 303436, - "Bytes": 5135662, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1166, - "Name": "Double Talkin' Jive", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 203637, - "Bytes": 3520862, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1167, - "Name": "November Rain", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 537540, - "Bytes": 8923566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1168, - "Name": "The Garden", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 322175, - "Bytes": 5438862, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1169, - "Name": "Garden of Eden", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 161539, - "Bytes": 2839694, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1170, - "Name": "Don't Damn Me", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 318901, - "Bytes": 5385886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1171, - "Name": "Bad Apples", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 268351, - "Bytes": 4567966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1172, - "Name": "Dead Horse", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 257600, - "Bytes": 4394014, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1173, - "Name": "Coma", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 616511, - "Bytes": 10201342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 92, - "Title": "Use Your Illusion II", - "ArtistId": 88, - "Tracks": [ - { - "TrackId": 1174, - "Name": "Civil War", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Milliseconds": 461165, - "Bytes": 15046579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1175, - "Name": "14 Years", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Milliseconds": 261355, - "Bytes": 8543664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1176, - "Name": "Yesterdays", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Billy/Del James/W. Axl Rose/West Arkeen", - "Milliseconds": 196205, - "Bytes": 6398489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1177, - "Name": "Knockin' On Heaven's Door", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Dylan", - "Milliseconds": 336457, - "Bytes": 10986716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1178, - "Name": "Get In The Ring", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Milliseconds": 341054, - "Bytes": 11134105, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1179, - "Name": "Shotgun Blues", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 203206, - "Bytes": 6623916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1180, - "Name": "Breakdown", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 424960, - "Bytes": 13978284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1181, - "Name": "Pretty Tied Up", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'", - "Milliseconds": 287477, - "Bytes": 9408754, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1182, - "Name": "Locomotive", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Slash/W. Axl Rose", - "Milliseconds": 522396, - "Bytes": 17236842, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1183, - "Name": "So Fine", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Duff McKagan", - "Milliseconds": 246491, - "Bytes": 8039484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1184, - "Name": "Estranged", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 563800, - "Bytes": 18343787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1185, - "Name": "You Could Be Mine", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Milliseconds": 343875, - "Bytes": 11207355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1186, - "Name": "Don't Cry", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Milliseconds": 284238, - "Bytes": 9222458, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1187, - "Name": "My World", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 84532, - "Bytes": 2764045, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 89, - "Name": "Incognito", - "Albums": [ - { - "AlbumId": 93, - "Title": "Blue Moods", - "ArtistId": 89, - "Tracks": [ - { - "TrackId": 1188, - "Name": "Colibri", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Richard Bull", - "Milliseconds": 361012, - "Bytes": 12055329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1189, - "Name": "Love Is The Colour", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "R. Carless", - "Milliseconds": 251585, - "Bytes": 8419165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1190, - "Name": "Magnetic Ocean", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Patrick Claher/Richard Bull", - "Milliseconds": 321123, - "Bytes": 10720741, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1191, - "Name": "Deep Waters", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Richard Bull", - "Milliseconds": 396460, - "Bytes": 13075359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1192, - "Name": "L'Arc En Ciel De Miles", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Kevin Robinson/Richard Bull", - "Milliseconds": 242390, - "Bytes": 8053997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1193, - "Name": "Gypsy", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Kevin Robinson", - "Milliseconds": 330997, - "Bytes": 11083374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1194, - "Name": "Journey Into Sunlight", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jean Paul Maunick", - "Milliseconds": 249756, - "Bytes": 8241177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1195, - "Name": "Sunchild", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Graham Harvey", - "Milliseconds": 259970, - "Bytes": 8593143, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1196, - "Name": "Millenium", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Maxton Gig Beesley Jnr.", - "Milliseconds": 379167, - "Bytes": 12511939, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1197, - "Name": "Thinking 'Bout Tomorrow", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Fayyaz Virgi/Richard Bull", - "Milliseconds": 355395, - "Bytes": 11865384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1198, - "Name": "Jacob's Ladder", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Julian Crampton", - "Milliseconds": 367647, - "Bytes": 12201595, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1199, - "Name": "She Wears Black", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "G Harvey/R Hope-Taylor", - "Milliseconds": 528666, - "Bytes": 17617944, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1200, - "Name": "Dark Side Of The Cog", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jean Paul Maunick", - "Milliseconds": 377155, - "Bytes": 12491122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 90, - "Name": "Iron Maiden", - "Albums": [ - { - "AlbumId": 94, - "Title": "A Matter of Life and Death", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1201, - "Name": "Different World", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258692, - "Bytes": 4383764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1202, - "Name": "These Colours Don't Run", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 412152, - "Bytes": 6883500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1203, - "Name": "Brighter Than a Thousand Suns", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 526255, - "Bytes": 8721490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1204, - "Name": "The Pilgrim", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 307593, - "Bytes": 5172144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1205, - "Name": "The Longest Day", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 467810, - "Bytes": 7785748, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1206, - "Name": "Out of the Shadows", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 336896, - "Bytes": 5647303, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1207, - "Name": "The Reincarnation of Benjamin Breeg", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 442106, - "Bytes": 7367736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1208, - "Name": "For the Greater Good of God", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 564893, - "Bytes": 9367328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1209, - "Name": "Lord of Light", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 444614, - "Bytes": 7393698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1210, - "Name": "The Legacy", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 562966, - "Bytes": 9314287, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1211, - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 431262, - "Bytes": 7205816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 95, - "Title": "A Real Dead One", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1212, - "Name": "The Number Of The Beast", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 294635, - "Bytes": 4718897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1213, - "Name": "The Trooper", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 235311, - "Bytes": 3766272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1214, - "Name": "Prowler", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 255634, - "Bytes": 4091904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1215, - "Name": "Transylvania", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 265874, - "Bytes": 4255744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1216, - "Name": "Remember Tomorrow", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 352731, - "Bytes": 5648438, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1217, - "Name": "Where Eagles Dare", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 289358, - "Bytes": 4630528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1218, - "Name": "Sanctuary", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 293250, - "Bytes": 4694016, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1219, - "Name": "Running Free", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 228937, - "Bytes": 3663872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1220, - "Name": "Run To The Hilss", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 237557, - "Bytes": 3803136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1221, - "Name": "2 Minutes To Midnight", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 337423, - "Bytes": 5400576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1222, - "Name": "Iron Maiden", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 324623, - "Bytes": 5195776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1223, - "Name": "Hallowed Be Thy Name", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 471849, - "Bytes": 7550976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 96, - "Title": "A Real Live One", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1224, - "Name": "Be Quick Or Be Dead", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 196911, - "Bytes": 3151872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1225, - "Name": "From Here To Eternity", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 259866, - "Bytes": 4159488, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1226, - "Name": "Can I Play With Madness", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 282488, - "Bytes": 4521984, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1227, - "Name": "Wasting Love", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 347846, - "Bytes": 5566464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1228, - "Name": "Tailgunner", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 249469, - "Bytes": 3993600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1229, - "Name": "The Evil That Men Do", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 325929, - "Bytes": 5216256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1230, - "Name": "Afraid To Shoot Strangers", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 407980, - "Bytes": 6529024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1231, - "Name": "Bring Your Daughter... To The Slaughter", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson", - "Milliseconds": 317727, - "Bytes": 5085184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1232, - "Name": "Heaven Can Wait", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 448574, - "Bytes": 7178240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1233, - "Name": "The Clairvoyant", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 269871, - "Bytes": 4319232, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1234, - "Name": "Fear Of The Dark", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 431333, - "Bytes": 6906078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 97, - "Title": "Brave New World", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1235, - "Name": "The Wicker Man", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 275539, - "Bytes": 11022464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1236, - "Name": "Ghost Of The Navigator", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 410070, - "Bytes": 16404608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1237, - "Name": "Brave New World", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 378984, - "Bytes": 15161472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1238, - "Name": "Blood Brothers", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 434442, - "Bytes": 17379456, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1239, - "Name": "The Mercenary", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 282488, - "Bytes": 11300992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1240, - "Name": "Dream Of Mirrors", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 561162, - "Bytes": 22448256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1241, - "Name": "The Fallen Angel", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 240718, - "Bytes": 9629824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1242, - "Name": "The Nomad", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 546115, - "Bytes": 21846144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1243, - "Name": "Out Of The Silent Planet", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 385541, - "Bytes": 15423616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1244, - "Name": "The Thin Line Between Love \u0026 Hate", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 506801, - "Bytes": 20273280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 98, - "Title": "Dance Of Death", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1245, - "Name": "Wildest Dreams", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 232777, - "Bytes": 9312384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1246, - "Name": "Rainmaker", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 228623, - "Bytes": 9146496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1247, - "Name": "No More Lies", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 441782, - "Bytes": 17672320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1248, - "Name": "Montsegur", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 350484, - "Bytes": 14020736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1249, - "Name": "Dance Of Death", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 516649, - "Bytes": 20670727, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1250, - "Name": "Gates Of Tomorrow", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 312032, - "Bytes": 12482688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1251, - "Name": "New Frontier", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Bruce Dickinson/Nicko McBrain", - "Milliseconds": 304509, - "Bytes": 12181632, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1252, - "Name": "Paschendale", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 508107, - "Bytes": 20326528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1253, - "Name": "Face In The Sand", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 391105, - "Bytes": 15648948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1254, - "Name": "Age Of Innocence", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 370468, - "Bytes": 14823478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1255, - "Name": "Journeyman", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 427023, - "Bytes": 17082496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 99, - "Title": "Fear Of The Dark", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1256, - "Name": "Be Quick Or Be Dead", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 204512, - "Bytes": 8181888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1257, - "Name": "From Here To Eternity", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 218357, - "Bytes": 8739038, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1258, - "Name": "Afraid To Shoot Strangers", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 416496, - "Bytes": 16664589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1259, - "Name": "Fear Is The Key", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 335307, - "Bytes": 13414528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1260, - "Name": "Childhood's End", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 280607, - "Bytes": 11225216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1261, - "Name": "Wasting Love", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 350981, - "Bytes": 14041216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1262, - "Name": "The Fugitive", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 294112, - "Bytes": 11765888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1263, - "Name": "Chains Of Misery", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/David Murray", - "Milliseconds": 217443, - "Bytes": 8700032, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1264, - "Name": "The Apparition", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 234605, - "Bytes": 9386112, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1265, - "Name": "Judas Be My Guide", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/David Murray", - "Milliseconds": 188786, - "Bytes": 7553152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1266, - "Name": "Weekend Warrior", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 339748, - "Bytes": 13594678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1267, - "Name": "Fear Of The Dark", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 436976, - "Bytes": 17483789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 100, - "Title": "Iron Maiden", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1268, - "Name": "01 - Prowler", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 236173, - "Bytes": 5668992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1269, - "Name": "02 - Sanctuary", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 196284, - "Bytes": 4712576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1270, - "Name": "03 - Remember Tomorrow", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Harris/Paul Di�Anno", - "Milliseconds": 328620, - "Bytes": 7889024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1271, - "Name": "04 - Running Free", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Harris/Paul Di�Anno", - "Milliseconds": 197276, - "Bytes": 4739122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1272, - "Name": "05 - Phantom of the Opera", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 428016, - "Bytes": 10276872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1273, - "Name": "06 - Transylvania", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 259343, - "Bytes": 6226048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1274, - "Name": "07 - Strange World", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 332460, - "Bytes": 7981184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1275, - "Name": "08 - Charlotte the Harlot", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Murray Dave", - "Milliseconds": 252708, - "Bytes": 6066304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1276, - "Name": "09 - Iron Maiden", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 216058, - "Bytes": 5189891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 101, - "Title": "Killers", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1277, - "Name": "The Ides Of March", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 105926, - "Bytes": 2543744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1278, - "Name": "Wrathchild", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 174471, - "Bytes": 4188288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1279, - "Name": "Murders In The Rue Morgue", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 258377, - "Bytes": 6205786, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1280, - "Name": "Another Life", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 203049, - "Bytes": 4874368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1281, - "Name": "Genghis Khan", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 187141, - "Bytes": 4493440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1282, - "Name": "Innocent Exile", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Di�Anno/Harris", - "Milliseconds": 232515, - "Bytes": 5584861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1283, - "Name": "Killers", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 300956, - "Bytes": 7227440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1284, - "Name": "Prodigal Son", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 372349, - "Bytes": 8937600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1285, - "Name": "Purgatory", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 200150, - "Bytes": 4804736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1286, - "Name": "Drifter", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 288757, - "Bytes": 6934660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 102, - "Title": "Live After Death", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1287, - "Name": "Intro- Churchill S Speech", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": null, - "Milliseconds": 48013, - "Bytes": 1154488, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1288, - "Name": "Aces High", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": null, - "Milliseconds": 276375, - "Bytes": 6635187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1289, - "Name": "2 Minutes To Midnight", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Smith/Dickinson", - "Milliseconds": 366550, - "Bytes": 8799380, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1290, - "Name": "The Trooper", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 268878, - "Bytes": 6455255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1291, - "Name": "Revelations", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson", - "Milliseconds": 371826, - "Bytes": 8926021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1292, - "Name": "Flight Of Icarus", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Smith/Dickinson", - "Milliseconds": 229982, - "Bytes": 5521744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1293, - "Name": "Rime Of The Ancient Mariner", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 789472, - "Bytes": 18949518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1294, - "Name": "Powerslave", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 454974, - "Bytes": 10921567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1295, - "Name": "The Number Of The Beast", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 275121, - "Bytes": 6605094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1296, - "Name": "Hallowed Be Thy Name", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 451422, - "Bytes": 10836304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1297, - "Name": "Iron Maiden", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 261955, - "Bytes": 6289117, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1298, - "Name": "Run To The Hills", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 231627, - "Bytes": 5561241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1299, - "Name": "Running Free", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Di Anno", - "Milliseconds": 204617, - "Bytes": 4912986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1300, - "Name": "Wrathchild", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 183666, - "Bytes": 4410181, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1301, - "Name": "Acacia Avenue", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": null, - "Milliseconds": 379872, - "Bytes": 9119118, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1302, - "Name": "Children Of The Damned", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 278177, - "Bytes": 6678446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1303, - "Name": "Die With Your Boots On", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 314174, - "Bytes": 7542367, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1304, - "Name": "Phantom Of The Opera", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 441155, - "Bytes": 10589917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1305, - "Name": "Be Quick Or Be Dead", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 233142, - "Bytes": 5599853, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1306, - "Name": "The Number Of The Beast", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 294008, - "Bytes": 7060625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1307, - "Name": "Wrathchild", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 174106, - "Bytes": 4182963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1308, - "Name": "From Here To Eternity", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 284447, - "Bytes": 6831163, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1309, - "Name": "Can I Play With Madness", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 213106, - "Bytes": 5118995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1310, - "Name": "Wasting Love", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 336953, - "Bytes": 8091301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1311, - "Name": "Tailgunner", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 247640, - "Bytes": 5947795, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1312, - "Name": "The Evil That Men Do", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 478145, - "Bytes": 11479913, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1313, - "Name": "Afraid To Shoot Strangers", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 412525, - "Bytes": 9905048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1314, - "Name": "Fear Of The Dark", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 431542, - "Bytes": 10361452, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1315, - "Name": "Bring Your Daughter... To The Slaughter...", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 376711, - "Bytes": 9045532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1316, - "Name": "The Clairvoyant", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 262426, - "Bytes": 6302648, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1317, - "Name": "Heaven Can Wait", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 440555, - "Bytes": 10577743, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1318, - "Name": "Run To The Hills", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 235859, - "Bytes": 5665052, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1319, - "Name": "2 Minutes To Midnight", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 338233, - "Bytes": 8122030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1320, - "Name": "Iron Maiden", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 494602, - "Bytes": 11874875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1321, - "Name": "Hallowed Be Thy Name", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 447791, - "Bytes": 10751410, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 356, - "CustomerId": 49, - "InvoiceDate": "2013-04-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 0.99, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1322, - "Name": "The Trooper", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 232672, - "Bytes": 5588560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 357, - "CustomerId": 50, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1323, - "Name": "Sanctuary", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 318511, - "Bytes": 7648679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 357, - "CustomerId": 50, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1324, - "Name": "Running Free", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 474017, - "Bytes": 11380851, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 105, - "Title": "No Prayer For The Dying", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1325, - "Name": "Tailgunner", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 255582, - "Bytes": 4089856, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 358, - "CustomerId": 52, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1326, - "Name": "Holy Smoke", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 229459, - "Bytes": 3672064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1327, - "Name": "No Prayer For The Dying", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 263941, - "Bytes": 4225024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 358, - "CustomerId": 52, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1328, - "Name": "Public Enema Number One", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/David Murray", - "Milliseconds": 254197, - "Bytes": 4071587, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1329, - "Name": "Fates Warning", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 250853, - "Bytes": 4018088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1330, - "Name": "The Assassin", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 258768, - "Bytes": 4141056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1331, - "Name": "Run Silent Run Deep", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 275408, - "Bytes": 4407296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1332, - "Name": "Hooks In You", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 247510, - "Bytes": 3960832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1333, - "Name": "Bring Your Daughter... ...To The Slaughter", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson", - "Milliseconds": 284238, - "Bytes": 4548608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1334, - "Name": "Mother Russia", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 332617, - "Bytes": 5322752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 106, - "Title": "Piece Of Mind", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1335, - "Name": "Where Eagles Dare", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 369554, - "Bytes": 5914624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1336, - "Name": "Revelations", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson", - "Milliseconds": 408607, - "Bytes": 6539264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1337, - "Name": "Flight Of The Icarus", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 230269, - "Bytes": 3686400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1338, - "Name": "Die With Your Boots On", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 325694, - "Bytes": 5212160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1339, - "Name": "The Trooper", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 251454, - "Bytes": 4024320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1340, - "Name": "Still Life", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 294347, - "Bytes": 4710400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1341, - "Name": "Quest For Fire", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 221309, - "Bytes": 3543040, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1342, - "Name": "Sun And Steel", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 206367, - "Bytes": 3306324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1343, - "Name": "To Tame A Land", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 445283, - "Bytes": 7129264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 107, - "Title": "Powerslave", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1344, - "Name": "Aces High", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 269531, - "Bytes": 6472088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 251, - "CustomerId": 10, - "InvoiceDate": "2012-01-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 0.99, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1345, - "Name": "2 Minutes To Midnight", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Smith/Dickinson", - "Milliseconds": 359810, - "Bytes": 8638809, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 252, - "CustomerId": 11, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1346, - "Name": "Losfer Words", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 252891, - "Bytes": 6074756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 252, - "CustomerId": 11, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1347, - "Name": "Flash of The Blade", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson", - "Milliseconds": 242729, - "Bytes": 5828861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1348, - "Name": "Duelists", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 366471, - "Bytes": 8800686, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 253, - "CustomerId": 13, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1349, - "Name": "Back in the Village", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson/Smith", - "Milliseconds": 320548, - "Bytes": 7696518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1350, - "Name": "Powerslave", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson", - "Milliseconds": 407823, - "Bytes": 9791106, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 253, - "CustomerId": 13, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1351, - "Name": "Rime of the Ancient Mariner", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 816509, - "Bytes": 19599577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1352, - "Name": "Intro", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 115931, - "Bytes": 4638848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1353, - "Name": "The Wicker Man", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 281782, - "Bytes": 11272320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1354, - "Name": "Ghost Of The Navigator", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 408607, - "Bytes": 16345216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1355, - "Name": "Brave New World", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 366785, - "Bytes": 14676148, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1356, - "Name": "Wrathchild", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 185808, - "Bytes": 7434368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1357, - "Name": "2 Minutes To Midnight", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 386821, - "Bytes": 15474816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1358, - "Name": "Blood Brothers", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 435513, - "Bytes": 17422464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1359, - "Name": "Sign Of The Cross", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 649116, - "Bytes": 25966720, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1360, - "Name": "The Mercenary", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 282697, - "Bytes": 11309184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1361, - "Name": "The Trooper", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 273528, - "Bytes": 10942592, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1362, - "Name": "Dream Of Mirrors", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 578324, - "Bytes": 23134336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1363, - "Name": "The Clansman", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 559203, - "Bytes": 22370432, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1364, - "Name": "The Evil That Men Do", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 280737, - "Bytes": 11231360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1365, - "Name": "Fear Of The Dark", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 460695, - "Bytes": 18430080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1366, - "Name": "Iron Maiden", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 351869, - "Bytes": 14076032, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1367, - "Name": "The Number Of The Beast", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 300434, - "Bytes": 12022107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 146, - "CustomerId": 30, - "InvoiceDate": "2010-10-01T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 0.99, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1368, - "Name": "Hallowed Be Thy Name", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 443977, - "Bytes": 17760384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 147, - "CustomerId": 31, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1369, - "Name": "Sanctuary", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 317335, - "Bytes": 12695680, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 147, - "CustomerId": 31, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1370, - "Name": "Run To The Hills", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 292179, - "Bytes": 11688064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1371, - "Name": "Moonchild", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson", - "Milliseconds": 340767, - "Bytes": 8179151, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 148, - "CustomerId": 33, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1372, - "Name": "Infinite Dreams", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 369005, - "Bytes": 8858669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1373, - "Name": "Can I Play With Madness", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Milliseconds": 211043, - "Bytes": 5067867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 148, - "CustomerId": 33, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1374, - "Name": "The Evil That Men Do", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Milliseconds": 273998, - "Bytes": 6578930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1375, - "Name": "Seventh Son of a Seventh Son", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 593580, - "Bytes": 14249000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1376, - "Name": "The Prophecy", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dave Murray; Steve Harris", - "Milliseconds": 305475, - "Bytes": 7334450, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1377, - "Name": "The Clairvoyant", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Milliseconds": 267023, - "Bytes": 6411510, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1378, - "Name": "Only the Good Die Young", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson; Harris", - "Milliseconds": 280894, - "Bytes": 6744431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 111, - "Title": "Somewhere in Time", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1379, - "Name": "Caught Somewhere in Time", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 445779, - "Bytes": 10701149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1380, - "Name": "Wasted Years", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 307565, - "Bytes": 7384358, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1381, - "Name": "Sea of Madness", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 341995, - "Bytes": 8210695, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1382, - "Name": "Heaven Can Wait", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 441417, - "Bytes": 10596431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1383, - "Name": "Stranger in a Strange Land", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 344502, - "Bytes": 8270899, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1384, - "Name": "Alexander the Great", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 515631, - "Bytes": 12377742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1385, - "Name": "De Ja Vu", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 296176, - "Bytes": 7113035, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1386, - "Name": "The Loneliness of the Long Dis", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 391314, - "Bytes": 9393598, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 112, - "Title": "The Number of The Beast", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1387, - "Name": "22 Acacia Avenue", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 395572, - "Bytes": 5542516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1388, - "Name": "Children of the Damned", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 274364, - "Bytes": 3845631, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1389, - "Name": "Gangland", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Clive Burr/Steve Harris", - "Milliseconds": 228440, - "Bytes": 3202866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1390, - "Name": "Hallowed Be Thy Name", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 428669, - "Bytes": 6006107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 41, - "CustomerId": 50, - "InvoiceDate": "2009-06-23T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 0.99, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1391, - "Name": "Invaders", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 203180, - "Bytes": 2849181, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 42, - "CustomerId": 51, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1392, - "Name": "Run to the Hills", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 228884, - "Bytes": 3209124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 42, - "CustomerId": 51, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1393, - "Name": "The Number Of The Beast", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 293407, - "Bytes": 11737216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1394, - "Name": "The Prisoner", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 361299, - "Bytes": 5062906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 43, - "CustomerId": 53, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 113, - "Title": "The X Factor", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1395, - "Name": "Sign Of The Cross", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 678008, - "Bytes": 27121792, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1396, - "Name": "Lord Of The Flies", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 303699, - "Bytes": 12148864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 43, - "CustomerId": 53, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1397, - "Name": "Man On The Edge", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers", - "Milliseconds": 253413, - "Bytes": 10137728, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1398, - "Name": "Fortunes Of War", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 443977, - "Bytes": 17760384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1399, - "Name": "Look For The Truth", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 310230, - "Bytes": 12411008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1400, - "Name": "The Aftermath", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 380786, - "Bytes": 15233152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1401, - "Name": "Judgement Of Heaven", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 312476, - "Bytes": 12501120, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1402, - "Name": "Blood On The World's Hands", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 357799, - "Bytes": 14313600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1403, - "Name": "The Edge Of Darkness", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 399333, - "Bytes": 15974528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1404, - "Name": "2 A.M.", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 337658, - "Bytes": 13511087, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1405, - "Name": "The Unbeliever", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 490422, - "Bytes": 19617920, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 114, - "Title": "Virtual XI", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1406, - "Name": "Futureal", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Steve Harris", - "Milliseconds": 175777, - "Bytes": 7032960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1407, - "Name": "The Angel And The Gambler", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 592744, - "Bytes": 23711872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1408, - "Name": "Lightning Strikes Twice", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 290377, - "Bytes": 11616384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1409, - "Name": "The Clansman", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 539689, - "Bytes": 21592327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1410, - "Name": "When Two Worlds Collide", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/David Murray/Steve Harris", - "Milliseconds": 377312, - "Bytes": 15093888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1411, - "Name": "The Educated Fool", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 404767, - "Bytes": 16191616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1412, - "Name": "Don't Look To The Eyes Of A Stranger", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 483657, - "Bytes": 19347584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1413, - "Name": "Como Estais Amigos", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers", - "Milliseconds": 330292, - "Bytes": 13213824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 91, - "Name": "James Brown", - "Albums": [ - { - "AlbumId": 115, - "Title": "Sex Machine", - "ArtistId": 91, - "Tracks": [ - { - "TrackId": 1414, - "Name": "Please Please Please", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown/Johnny Terry", - "Milliseconds": 165067, - "Bytes": 5394585, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1415, - "Name": "Think", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Lowman Pauling", - "Milliseconds": 166739, - "Bytes": 5513208, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1416, - "Name": "Night Train", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jimmy Forrest/Lewis C. Simpkins/Oscar Washington", - "Milliseconds": 212401, - "Bytes": 7027377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1417, - "Name": "Out Of Sight", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Ted Wright", - "Milliseconds": 143725, - "Bytes": 4711323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1418, - "Name": "Papa's Got A Brand New Bag Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown", - "Milliseconds": 127399, - "Bytes": 4174420, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1419, - "Name": "I Got You (I Feel Good)", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown", - "Milliseconds": 167392, - "Bytes": 5468472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1420, - "Name": "It's A Man's Man's Man's World", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Betty Newsome/James Brown", - "Milliseconds": 168228, - "Bytes": 5541611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1421, - "Name": "Cold Sweat", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Alfred Ellis/James Brown", - "Milliseconds": 172408, - "Bytes": 5643213, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1422, - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Alfred Ellis/James Brown", - "Milliseconds": 167392, - "Bytes": 5478117, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1423, - "Name": "Get Up (I Feel Like Being A) Sex Machine", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Bobby Byrd/James Brown/Ron Lenhoff", - "Milliseconds": 316551, - "Bytes": 10498031, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1424, - "Name": "Hey America", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Addie William Jones/Nat Jones", - "Milliseconds": 218226, - "Bytes": 7187857, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1425, - "Name": "Make It Funky Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Charles Bobbitt/James Brown", - "Milliseconds": 196231, - "Bytes": 6507782, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1426, - "Name": "I'm A Greedy Man Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Charles Bobbitt/James Brown", - "Milliseconds": 217730, - "Bytes": 7251211, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1427, - "Name": "Get On The Good Foot", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Fred Wesley/James Brown/Joseph Mims", - "Milliseconds": 215902, - "Bytes": 7182736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1428, - "Name": "Get Up Offa That Thing", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Deanna Brown/Deidra Jenkins/Yamma Brown", - "Milliseconds": 250723, - "Bytes": 8355989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1429, - "Name": "It's Too Funky In Here", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Brad Shapiro/George Jackson/Robert Miller/Walter Shaw", - "Milliseconds": 239072, - "Bytes": 7973979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1430, - "Name": "Living In America", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Charlie Midnight/Dan Hartman", - "Milliseconds": 282880, - "Bytes": 9432346, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1431, - "Name": "I'm Real", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Full Force/James Brown", - "Milliseconds": 334236, - "Bytes": 11183457, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1432, - "Name": "Hot Pants Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Fred Wesley/James Brown", - "Milliseconds": 188212, - "Bytes": 6295110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1433, - "Name": "Soul Power (Live)", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown", - "Milliseconds": 260728, - "Bytes": 8593206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 92, - "Name": "Jamiroquai", - "Albums": [ - { - "AlbumId": 116, - "Title": "Emergency On Planet Earth", - "ArtistId": 92, - "Tracks": [ - { - "TrackId": 1434, - "Name": "When You Gonna Learn (Digeridoo)", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jay Kay/Kay, Jay", - "Milliseconds": 230635, - "Bytes": 7655482, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1435, - "Name": "Too Young To Die", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 365818, - "Bytes": 12391660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1436, - "Name": "Hooked Up", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 275879, - "Bytes": 9301687, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1437, - "Name": "If I Like It, I Do It", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gelder, Nick van", - "Milliseconds": 293093, - "Bytes": 9848207, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1438, - "Name": "Music Of The Wind", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 383033, - "Bytes": 12870239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1439, - "Name": "Emergency On Planet Earth", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 245263, - "Bytes": 8117218, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1440, - "Name": "Whatever It Is, I Just Can't Stop", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jay Kay/Kay, Jay", - "Milliseconds": 247222, - "Bytes": 8249453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1441, - "Name": "Blow Your Mind", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 512339, - "Bytes": 17089176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1442, - "Name": "Revolution 1993", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 616829, - "Bytes": 20816872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1443, - "Name": "Didgin' Out", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Buchanan, Wallis", - "Milliseconds": 157100, - "Bytes": 5263555, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 117, - "Title": "Synkronized", - "ArtistId": 92, - "Tracks": [ - { - "TrackId": 1444, - "Name": "Canned Heat", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 331964, - "Bytes": 11042037, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1445, - "Name": "Planet Home", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 284447, - "Bytes": 9566237, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1446, - "Name": "Black Capricorn Day", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 341629, - "Bytes": 11477231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1447, - "Name": "Soul Education", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 255477, - "Bytes": 8575435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1448, - "Name": "Failling", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 225227, - "Bytes": 7503999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1449, - "Name": "Destitute Illusions", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Derrick McKenzie/Jay Kay/Toby Smith", - "Milliseconds": 340218, - "Bytes": 11452651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1450, - "Name": "Supersonic", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 315872, - "Bytes": 10699265, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1451, - "Name": "Butterfly", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 268852, - "Bytes": 8947356, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1452, - "Name": "Were Do We Go From Here", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 313626, - "Bytes": 10504158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1453, - "Name": "King For A Day", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 221544, - "Bytes": 7335693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1454, - "Name": "Deeper Underground", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Toby Smith", - "Milliseconds": 281808, - "Bytes": 9351277, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy", - "ArtistId": 92, - "Tracks": [ - { - "TrackId": 1455, - "Name": "Just Another Story", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 529684, - "Bytes": 17582818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1456, - "Name": "Stillness In Time", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 257097, - "Bytes": 8644290, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1457, - "Name": "Half The Man", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 289854, - "Bytes": 9577679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1458, - "Name": "Light Years", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 354560, - "Bytes": 11796244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1459, - "Name": "Manifest Destiny", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 382197, - "Bytes": 12676962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1460, - "Name": "The Kids", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 309995, - "Bytes": 10334529, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1461, - "Name": "Mr. Moon", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Stuard Zender/Toby Smith", - "Milliseconds": 329534, - "Bytes": 11043559, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1462, - "Name": "Scam", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Stuart Zender", - "Milliseconds": 422321, - "Bytes": 14019705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1463, - "Name": "Journey To Arnhemland", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith/Wallis Buchanan", - "Milliseconds": 322455, - "Bytes": 10843832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1464, - "Name": "Morning Glory", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "J. Kay/Jay Kay", - "Milliseconds": 384130, - "Bytes": 12777210, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1465, - "Name": "Space Cowboy", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "J. Kay/Jay Kay", - "Milliseconds": 385697, - "Bytes": 12906520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 93, - "Name": "JET", - "Albums": [ - { - "AlbumId": 119, - "Title": "Get Born", - "ArtistId": 93, - "Tracks": [ - { - "TrackId": 1466, - "Name": "Last Chance", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey", - "Milliseconds": 112352, - "Bytes": 3683130, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1467, - "Name": "Are You Gonna Be My Girl", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Muncey/N. Cester", - "Milliseconds": 213890, - "Bytes": 6992324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1468, - "Name": "Rollover D.J.", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 196702, - "Bytes": 6406517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1469, - "Name": "Look What You've Done", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "N. Cester", - "Milliseconds": 230974, - "Bytes": 7517083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1470, - "Name": "Get What You Need", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey/N. Cester", - "Milliseconds": 247719, - "Bytes": 8043765, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1471, - "Name": "Move On", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 260623, - "Bytes": 8519353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1472, - "Name": "Radio Song", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey/N. Cester", - "Milliseconds": 272117, - "Bytes": 8871509, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1473, - "Name": "Get Me Outta Here", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 176274, - "Bytes": 5729098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1474, - "Name": "Cold Hard Bitch", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey/N. Cester", - "Milliseconds": 243278, - "Bytes": 7929610, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1475, - "Name": "Come Around Again", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Muncey/N. Cester", - "Milliseconds": 270497, - "Bytes": 8872405, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1476, - "Name": "Take It Or Leave It", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Muncey/N. Cester", - "Milliseconds": 142889, - "Bytes": 4643370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1477, - "Name": "Lazy Gun", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 282174, - "Bytes": 9186285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1478, - "Name": "Timothy", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester", - "Milliseconds": 270341, - "Bytes": 8856507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 94, - "Name": "Jimi Hendrix", - "Albums": [ - { - "AlbumId": 120, - "Title": "Are You Experienced?", - "ArtistId": 94, - "Tracks": [ - { - "TrackId": 1479, - "Name": "Foxy Lady", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 199340, - "Bytes": 6480896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1480, - "Name": "Manic Depression", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 222302, - "Bytes": 7289272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1481, - "Name": "Red House", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 224130, - "Bytes": 7285851, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1482, - "Name": "Can You See Me", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 153077, - "Bytes": 4987068, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1483, - "Name": "Love Or Confusion", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 193123, - "Bytes": 6329408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1484, - "Name": "I Don't Live Today", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 235311, - "Bytes": 7661214, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1485, - "Name": "May This Be Love", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 191216, - "Bytes": 6240028, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1486, - "Name": "Fire", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 164989, - "Bytes": 5383075, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1487, - "Name": "Third Stone From The Sun", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 404453, - "Bytes": 13186975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1488, - "Name": "Remember", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 168150, - "Bytes": 5509613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1489, - "Name": "Are You Experienced?", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 254537, - "Bytes": 8292497, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1490, - "Name": "Hey Joe", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Roberts", - "Milliseconds": 210259, - "Bytes": 6870054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1491, - "Name": "Stone Free", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 216293, - "Bytes": 7002331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1492, - "Name": "Purple Haze", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 171572, - "Bytes": 5597056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1493, - "Name": "51st Anniversary", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 196388, - "Bytes": 6398044, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1494, - "Name": "The Wind Cries Mary", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 200463, - "Bytes": 6540638, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1495, - "Name": "Highway Chile", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 212453, - "Bytes": 6887949, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 95, - "Name": "Joe Satriani", - "Albums": [ - { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)", - "ArtistId": 95, - "Tracks": [ - { - "TrackId": 1496, - "Name": "Surfing with the Alien", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 263707, - "Bytes": 4418504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1497, - "Name": "Ice 9", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 239721, - "Bytes": 4036215, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1498, - "Name": "Crushing Day", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 314768, - "Bytes": 5232158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1499, - "Name": "Always With Me, Always With You", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 202035, - "Bytes": 3435777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1500, - "Name": "Satch Boogie", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 193560, - "Bytes": 3300654, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1501, - "Name": "Hill of the Skull", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 108435, - "Bytes": 1944738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1502, - "Name": "Circles", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 209071, - "Bytes": 3548553, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1503, - "Name": "Lords of Karma", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 288227, - "Bytes": 4809279, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1504, - "Name": "Midnight", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 102630, - "Bytes": 1851753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1505, - "Name": "Echo", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 337570, - "Bytes": 5595557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 96, - "Name": "Jota Quest", - "Albums": [ - { - "AlbumId": 123, - "Title": "Jota Quest-1995", - "ArtistId": 96, - "Tracks": [ - { - "TrackId": 1520, - "Name": "Rapidamente", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252238, - "Bytes": 8470107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1521, - "Name": "As Dores do Mundo", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Hyldon", - "Milliseconds": 255477, - "Bytes": 8537092, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1522, - "Name": "Vou Pra Ai", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 300878, - "Bytes": 10053718, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1523, - "Name": "My Brother", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 253231, - "Bytes": 8431821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1524, - "Name": "H� Quanto Tempo", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 270027, - "Bytes": 9004470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1525, - "Name": "V�cio", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 269897, - "Bytes": 8887216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1526, - "Name": "Encontrar Algu�m", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Marco Tulio Lara/Rogerio Flausino", - "Milliseconds": 224078, - "Bytes": 7437935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1527, - "Name": "Dance Enquanto � Tempo", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 229093, - "Bytes": 7583799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1528, - "Name": "A Tarde", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 266919, - "Bytes": 8836127, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1529, - "Name": "Always Be All Right", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 128078, - "Bytes": 4299676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1530, - "Name": "Sem Sentido", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 250462, - "Bytes": 8292108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1531, - "Name": "Onibusfobia", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 315977, - "Bytes": 10474904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 97, - "Name": "Jo�o Suplicy", - "Albums": [ - { - "AlbumId": 124, - "Title": "Cafezinho", - "ArtistId": 97, - "Tracks": [ - { - "TrackId": 1532, - "Name": "Pura Elegancia", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 284107, - "Bytes": 9632269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1533, - "Name": "Choramingando", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 190484, - "Bytes": 6400532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1534, - "Name": "Por Merecer", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 230582, - "Bytes": 7764601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1535, - "Name": "No Futuro", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 182308, - "Bytes": 6056200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1536, - "Name": "Voce Inteira", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 241084, - "Bytes": 8077282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1537, - "Name": "Cuando A Noite Vai Chegando", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 270628, - "Bytes": 9081874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1538, - "Name": "Naquele Dia", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 251768, - "Bytes": 8452654, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1539, - "Name": "Equinocio", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 269008, - "Bytes": 8871455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1540, - "Name": "Papel�o", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 213263, - "Bytes": 7257390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1541, - "Name": "Cuando Eu For Pro Ceu", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 118804, - "Bytes": 3948371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1542, - "Name": "Do Nosso Amor", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 203415, - "Bytes": 6774566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1543, - "Name": "Borogodo", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 208457, - "Bytes": 7104588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1544, - "Name": "Cafezinho", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 180924, - "Bytes": 6031174, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1545, - "Name": "Enquanto O Dia N�o Vem", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 220891, - "Bytes": 7248336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 98, - "Name": "Judas Priest", - "Albums": [ - { - "AlbumId": 125, - "Title": "Living After Midnight", - "ArtistId": 98, - "Tracks": [ - { - "TrackId": 1546, - "Name": "The Green Manalishi", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 205792, - "Bytes": 6720789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1547, - "Name": "Living After Midnight", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 213289, - "Bytes": 7056785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1548, - "Name": "Breaking The Law (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 144195, - "Bytes": 4728246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1549, - "Name": "Hot Rockin'", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 197328, - "Bytes": 6509179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1550, - "Name": "Heading Out To The Highway (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 276427, - "Bytes": 9006022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1551, - "Name": "The Hellion", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 41900, - "Bytes": 1351993, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1552, - "Name": "Electric Eye", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 222197, - "Bytes": 7231368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1553, - "Name": "You've Got Another Thing Comin'", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 305162, - "Bytes": 9962558, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 363, - "CustomerId": 28, - "InvoiceDate": "2013-05-19T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 0.99, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1554, - "Name": "Turbo Lover", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 335542, - "Bytes": 11068866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 364, - "CustomerId": 29, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1555, - "Name": "Freewheel Burning", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 265952, - "Bytes": 8713599, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 364, - "CustomerId": 29, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1556, - "Name": "Some Heads Are Gonna Roll", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 249939, - "Bytes": 8198617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1557, - "Name": "Metal Meltdown", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 290664, - "Bytes": 9390646, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 365, - "CustomerId": 31, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1558, - "Name": "Ram It Down", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 292179, - "Bytes": 9554023, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1559, - "Name": "Diamonds And Rust (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 219350, - "Bytes": 7163147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 365, - "CustomerId": 31, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1560, - "Name": "Victim Of Change (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 430942, - "Bytes": 14067512, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1561, - "Name": "Tyrant (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 282253, - "Bytes": 9190536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 99, - "Name": "Legi�o Urbana", - "Albums": [ - { - "AlbumId": 139, - "Title": "A TempestadeTempestade Ou O Livro Dos Dias", - "ArtistId": 99, - "Tracks": [ - { - "TrackId": 1671, - "Name": "Nat�lia", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 235728, - "Bytes": 7640230, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1672, - "Name": "L'Avventura", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 278256, - "Bytes": 9165769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1673, - "Name": "M�sica De Trabalho", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 260231, - "Bytes": 8590671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1674, - "Name": "Longe Do Meu Lado", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo - Marcelo Bonf�", - "Milliseconds": 266161, - "Bytes": 8655249, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1675, - "Name": "A Via L�ctea", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 280084, - "Bytes": 9234879, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1676, - "Name": "M�sica Ambiente", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 247614, - "Bytes": 8234388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1677, - "Name": "Aloha", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 325955, - "Bytes": 10793301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1678, - "Name": "Soul Parsifal", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo - Marisa Monte", - "Milliseconds": 295053, - "Bytes": 9853589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1679, - "Name": "Dezesseis", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 323918, - "Bytes": 10573515, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1680, - "Name": "Mil Peda�os", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 203337, - "Bytes": 6643291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1681, - "Name": "Leila", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 323056, - "Bytes": 10608239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1682, - "Name": "1� De Julho", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 290298, - "Bytes": 9619257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1683, - "Name": "Esperando Por Mim", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 261668, - "Bytes": 8844133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1684, - "Name": "Quando Voc� Voltar", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 173897, - "Bytes": 5781046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1685, - "Name": "O Livro Dos Dias", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 257253, - "Bytes": 8570929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 140, - "Title": "Mais Do Mesmo", - "ArtistId": 99, - "Tracks": [ - { - "TrackId": 1686, - "Name": "Ser�", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 148401, - "Bytes": 4826528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1687, - "Name": "Ainda � Cedo", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Ico Ouro-Preto/Marcelo Bonf�", - "Milliseconds": 236826, - "Bytes": 7796400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1688, - "Name": "Gera��o Coca-Cola", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 141453, - "Bytes": 4625731, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1689, - "Name": "Eduardo E M�nica", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 271229, - "Bytes": 9026691, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1690, - "Name": "Tempo Perdido", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 302158, - "Bytes": 9963914, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1691, - "Name": "Indios", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 258168, - "Bytes": 8610226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1692, - "Name": "Que Pa�s � Este", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 177606, - "Bytes": 5822124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1693, - "Name": "Faroeste Caboclo", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 543007, - "Bytes": 18092739, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1694, - "Name": "H� Tempos", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 197146, - "Bytes": 6432922, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1695, - "Name": "Pais E Filhos", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 308401, - "Bytes": 10130685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1696, - "Name": "Meninos E Meninas", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 203781, - "Bytes": 6667802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1697, - "Name": "Vento No Litoral", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 366445, - "Bytes": 12063806, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1698, - "Name": "Perfei��o", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 276558, - "Bytes": 9258489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1699, - "Name": "Giz", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 202213, - "Bytes": 6677671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1700, - "Name": "Dezesseis", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 321724, - "Bytes": 10501773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1701, - "Name": "Antes Das Seis", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos", - "Milliseconds": 189231, - "Bytes": 6296531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 100, - "Name": "Lenny Kravitz", - "Albums": [ - { - "AlbumId": 141, - "Title": "Greatest Hits", - "ArtistId": 100, - "Tracks": [ - { - "TrackId": 1702, - "Name": "Are You Gonna Go My Way", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Craig Ross/Lenny Kravitz", - "Milliseconds": 211591, - "Bytes": 6905135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1703, - "Name": "Fly Away", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 221962, - "Bytes": 7322085, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1704, - "Name": "Rock And Roll Is Dead", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 204199, - "Bytes": 6680312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1705, - "Name": "Again", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 228989, - "Bytes": 7490476, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1706, - "Name": "It Ain't Over 'Til It's Over", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 242703, - "Bytes": 8078936, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1707, - "Name": "Can't Get You Off My Mind", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 273815, - "Bytes": 8937150, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1708, - "Name": "Mr. Cab Driver", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 230321, - "Bytes": 7668084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1709, - "Name": "American Woman", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "B. Cummings/G. Peterson/M.J. Kale/R. Bachman", - "Milliseconds": 261773, - "Bytes": 8538023, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1710, - "Name": "Stand By My Woman", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan", - "Milliseconds": 259683, - "Bytes": 8447611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1711, - "Name": "Always On The Run", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz/Slash", - "Milliseconds": 232515, - "Bytes": 7593397, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1712, - "Name": "Heaven Help", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gerry DeVeaux/Terry Britten", - "Milliseconds": 190354, - "Bytes": 6222092, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1713, - "Name": "I Belong To You", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 257123, - "Bytes": 8477980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1714, - "Name": "Believe", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Henry Hirsch/Lenny Kravitz", - "Milliseconds": 295131, - "Bytes": 9661978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1715, - "Name": "Let Love Rule", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 342648, - "Bytes": 11298085, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1716, - "Name": "Black Velveteen", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 290899, - "Bytes": 9531301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2216, - "Name": "Johnny B. Goode", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 243200, - "Bytes": 8092024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2217, - "Name": "Don't Look Back", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 221100, - "Bytes": 7344023, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2218, - "Name": "Jah Seh No", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 276871, - "Bytes": 9134476, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2219, - "Name": "I'm The Toughest", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 230191, - "Bytes": 7657594, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2220, - "Name": "Nothing But Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 221570, - "Bytes": 7335228, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2221, - "Name": "Buk-In-Hamm Palace", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 265665, - "Bytes": 8964369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2222, - "Name": "Bush Doctor", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 239751, - "Bytes": 7942299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2223, - "Name": "Wanted Dread And Alive", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 260310, - "Bytes": 8670933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2224, - "Name": "Mystic Man", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 353671, - "Bytes": 11812170, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2225, - "Name": "Coming In Hot", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 213054, - "Bytes": 7109414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2226, - "Name": "Pick Myself Up", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 234684, - "Bytes": 7788255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2227, - "Name": "Crystal Ball", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 309733, - "Bytes": 10319296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2228, - "Name": "Equal Rights Downpresser Man", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 366733, - "Bytes": 12086524, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2434, - "Name": "Holding Back The Years", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Neil Moss", - "Milliseconds": 270053, - "Bytes": 8833220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2435, - "Name": "Money's Too Tight To Mention", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John and William Valentine", - "Milliseconds": 268408, - "Bytes": 8861921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2436, - "Name": "The Right Thing", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 262687, - "Bytes": 8624063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2437, - "Name": "It's Only Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy and Vella Cameron", - "Milliseconds": 232594, - "Bytes": 7659017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2438, - "Name": "A New Flame", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 237662, - "Bytes": 7822875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2439, - "Name": "You've Got It", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Lamont Dozier", - "Milliseconds": 235232, - "Bytes": 7712845, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2440, - "Name": "If You Don't Know Me By Now", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kenny Gamble and Leon Huff", - "Milliseconds": 206524, - "Bytes": 6712634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2441, - "Name": "Stars", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 248137, - "Bytes": 8194906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2442, - "Name": "Something Got Me Started", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Fritz McIntyre", - "Milliseconds": 239595, - "Bytes": 7997139, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2443, - "Name": "Thrill Me", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Fritz McIntyre", - "Milliseconds": 303934, - "Bytes": 10034711, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2444, - "Name": "Your Mirror", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 240666, - "Bytes": 7893821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2445, - "Name": "For Your Babies", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 256992, - "Bytes": 8408803, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2446, - "Name": "So Beautiful", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 298083, - "Bytes": 9837832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2447, - "Name": "Angel", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carolyn Franklin and Sonny Saunders", - "Milliseconds": 240561, - "Bytes": 7880256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2448, - "Name": "Fairground", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 263888, - "Bytes": 8793094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3132, - "Name": "Still Of The Night", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 398210, - "Bytes": 13043817, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3133, - "Name": "Here I Go Again", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Marsden", - "Milliseconds": 233874, - "Bytes": 7652473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3134, - "Name": "Is This Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 283924, - "Bytes": 9262360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3135, - "Name": "Love Ain't No Stranger", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Galley", - "Milliseconds": 259395, - "Bytes": 8490428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3136, - "Name": "Looking For Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 391941, - "Bytes": 12769847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3137, - "Name": "Now You're Gone", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 251141, - "Bytes": 8162193, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3138, - "Name": "Slide It In", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Coverdale", - "Milliseconds": 202475, - "Bytes": 6615152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3139, - "Name": "Slow An' Easy", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Moody", - "Milliseconds": 367255, - "Bytes": 11961332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3140, - "Name": "Judgement Day", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 317074, - "Bytes": 10326997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3141, - "Name": "You're Gonna Break My Hart Again", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 250853, - "Bytes": 8176847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3142, - "Name": "The Deeper The Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 262791, - "Bytes": 8606504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3143, - "Name": "Crying In The Rain", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Coverdale", - "Milliseconds": 337005, - "Bytes": 10931921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3144, - "Name": "Fool For Your Loving", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Marsden/Moody", - "Milliseconds": 250801, - "Bytes": 8129820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3145, - "Name": "Sweet Lady Luck", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 273737, - "Bytes": 8919163, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 101, - "Name": "Lulu Santos", - "Albums": [ - { - "AlbumId": 142, - "Title": "Lulu Santos - RCA 100 Anos De M�sica - �lbum 01", - "ArtistId": 101, - "Tracks": [ - { - "TrackId": 1717, - "Name": "Assim Caminha A Humanidade", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 210755, - "Bytes": 6993763, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1720, - "Name": "Um Pro Outro", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236382, - "Bytes": 7825215, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1722, - "Name": "Casa", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 307591, - "Bytes": 10107269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1723, - "Name": "Condi��o", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 263549, - "Bytes": 8778465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1726, - "Name": "Satisfa��o", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 208065, - "Bytes": 6901681, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1727, - "Name": "Brum�rio", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 216241, - "Bytes": 7243499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1730, - "Name": "S�bado � Noite", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193854, - "Bytes": 6435114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1731, - "Name": "A Cura", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 280920, - "Bytes": 9260588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1733, - "Name": "Atr�s Do Trio El�trico", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 149080, - "Bytes": 4917615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1736, - "Name": "Tudo Bem", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 196101, - "Bytes": 6419139, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1737, - "Name": "Toda Forma De Amor", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227813, - "Bytes": 7496584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1740, - "Name": "Sereia", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 278047, - "Bytes": 9121087, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1742, - "Name": "Se Voc� Pensa", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 195996, - "Bytes": 6552490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1743, - "Name": "L� Vem O Sol (Here Comes The Sun)", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189492, - "Bytes": 6229645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 143, - "Title": "Lulu Santos - RCA 100 Anos De M�sica - �lbum 02", - "ArtistId": 101, - "Tracks": [ - { - "TrackId": 1718, - "Name": "Honolulu", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 261433, - "Bytes": 8558481, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1719, - "Name": "Dancin�Days", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 237400, - "Bytes": 7875347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1721, - "Name": "Aviso Aos Navegantes", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242808, - "Bytes": 8058651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1724, - "Name": "Hyperconectividade", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 180636, - "Bytes": 5948039, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1725, - "Name": "O Descobridor Dos Sete Mares", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 225854, - "Bytes": 7475780, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1728, - "Name": "Um Certo Algu�m", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 194063, - "Bytes": 6430939, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1729, - "Name": "Fullg�s", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 346070, - "Bytes": 11505484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1732, - "Name": "Aquilo", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 246073, - "Bytes": 8167819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1734, - "Name": "Senta A Pua", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 217547, - "Bytes": 7205844, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1735, - "Name": "Ro-Que-Se-Da-Ne", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 146703, - "Bytes": 4805897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1738, - "Name": "Tudo Igual", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 276035, - "Bytes": 9201645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1739, - "Name": "Fogo De Palha", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 246804, - "Bytes": 8133732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1741, - "Name": "Assaltaram A Gram�tica", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 261041, - "Bytes": 8698959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1744, - "Name": "O �ltimo Rom�ntico (Ao Vivo)", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 231993, - "Bytes": 7692697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 102, - "Name": "Marillion", - "Albums": [ - { - "AlbumId": 144, - "Title": "Misplaced Childhood", - "ArtistId": 102, - "Tracks": [ - { - "TrackId": 1745, - "Name": "Pseudo Silk Kimono", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 134739, - "Bytes": 4334038, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1746, - "Name": "Kayleigh", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 234605, - "Bytes": 7716005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1747, - "Name": "Lavender", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 153417, - "Bytes": 4999814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1748, - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 356493, - "Bytes": 11791068, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1749, - "Name": "Heart Of Lothian: Wide Boy / Curtain Call", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 366053, - "Bytes": 11893723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1750, - "Name": "Waterhole (Expresso Bongo)", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 133093, - "Bytes": 4378835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1751, - "Name": "Lords Of The Backstage", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 112875, - "Bytes": 3741319, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1752, - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 569704, - "Bytes": 18578995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1753, - "Name": "Childhoods End?", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 272796, - "Bytes": 9015366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1754, - "Name": "White Feather", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 143595, - "Bytes": 4711776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 103, - "Name": "Marisa Monte", - "Albums": [ - { - "AlbumId": 145, - "Title": "Barulhinho Bom", - "ArtistId": 103, - "Tracks": [ - { - "TrackId": 1755, - "Name": "Arrepio", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown", - "Milliseconds": 136254, - "Bytes": 4511390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1756, - "Name": "Magamalabares", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown", - "Milliseconds": 215875, - "Bytes": 7183757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1757, - "Name": "Chuva No Brejo", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Morais", - "Milliseconds": 145606, - "Bytes": 4857761, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1758, - "Name": "C�rebro Eletr�nico", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 172800, - "Bytes": 5760864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1759, - "Name": "Tempos Modernos", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Lulu Santos", - "Milliseconds": 183066, - "Bytes": 6066234, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1760, - "Name": "Mara��", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown", - "Milliseconds": 230008, - "Bytes": 7621482, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1761, - "Name": "Blanco", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Marisa Monte/poema de Octavio Paz/vers�o: Haroldo de Campos", - "Milliseconds": 45191, - "Bytes": 1454532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1762, - "Name": "Panis Et Circenses", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 192339, - "Bytes": 6318373, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1763, - "Name": "De Noite Na Cama", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 209005, - "Bytes": 7012658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1764, - "Name": "Beija Eu", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 197276, - "Bytes": 6512544, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1765, - "Name": "Give Me Love", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 249808, - "Bytes": 8196331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1766, - "Name": "Ainda Lembro", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 218801, - "Bytes": 7211247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1767, - "Name": "A Menina Dan�a", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 129410, - "Bytes": 4326918, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1768, - "Name": "Dan�a Da Solid�o", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 203520, - "Bytes": 6699368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1769, - "Name": "Ao Meu Redor", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 275591, - "Bytes": 9158834, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1770, - "Name": "Bem Leve", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 159190, - "Bytes": 5246835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1771, - "Name": "Segue O Seco", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 178207, - "Bytes": 5922018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1772, - "Name": "O Xote Das Meninas", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 291866, - "Bytes": 9553228, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 104, - "Name": "Marvin Gaye", - "Albums": [ - { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)", - "ArtistId": 104, - "Tracks": [ - { - "TrackId": 1773, - "Name": "Wherever I Lay My Hat", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": null, - "Milliseconds": 136986, - "Bytes": 4477321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1774, - "Name": "Get My Hands On Some Lovin'", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": null, - "Milliseconds": 149054, - "Bytes": 4860380, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1775, - "Name": "No Good Without You", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "William \"Mickey\" Stevenson", - "Milliseconds": 161410, - "Bytes": 5259218, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1776, - "Name": "You've Been A Long Time Coming", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Brian Holland/Eddie Holland/Lamont Dozier", - "Milliseconds": 137221, - "Bytes": 4437949, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1777, - "Name": "When I Had Your Love", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson", - "Milliseconds": 152424, - "Bytes": 4972815, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1778, - "Name": "You're What's Happening (In The World Today)", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Allen Story/George Gordy/Robert Gordy", - "Milliseconds": 142027, - "Bytes": 4631104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1779, - "Name": "Loving You Is Sweeter Than Ever", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Ivy Hunter/Stevie Wonder", - "Milliseconds": 166295, - "Bytes": 5377546, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1780, - "Name": "It's A Bitter Pill To Swallow", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Smokey Robinson/Warren \"Pete\" Moore", - "Milliseconds": 194821, - "Bytes": 6477882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1781, - "Name": "Seek And You Shall Find", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Ivy Hunter/William \"Mickey\" Stevenson", - "Milliseconds": 223451, - "Bytes": 7306719, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1782, - "Name": "Gonna Keep On Tryin' Till I Win Your Love", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Barrett Strong/Norman Whitfield", - "Milliseconds": 176404, - "Bytes": 5789945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1783, - "Name": "Gonna Give Her All The Love I've Got", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Barrett Strong/Norman Whitfield", - "Milliseconds": 210886, - "Bytes": 6893603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1784, - "Name": "I Wish It Would Rain", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Barrett Strong/Norman Whitfield/Roger Penzabene", - "Milliseconds": 172486, - "Bytes": 5647327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1785, - "Name": "Abraham, Martin And John", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Dick Holler", - "Milliseconds": 273057, - "Bytes": 8888206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 370, - "CustomerId": 7, - "InvoiceDate": "2013-06-19T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 0.99, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1786, - "Name": "Save The Children", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Al Cleveland/Marvin Gaye/Renaldo Benson", - "Milliseconds": 194821, - "Bytes": 6342021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 371, - "CustomerId": 8, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1787, - "Name": "You Sure Love To Ball", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 218540, - "Bytes": 7217872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 371, - "CustomerId": 8, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1788, - "Name": "Ego Tripping Out", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 314514, - "Bytes": 10383887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1789, - "Name": "Praise", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 235833, - "Bytes": 7839179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 372, - "CustomerId": 10, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1790, - "Name": "Heavy Love Affair", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 227892, - "Bytes": 7522232, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 105, - "Name": "Men At Work", - "Albums": [ - { - "AlbumId": 147, - "Title": "The Best Of Men At Work", - "ArtistId": 105, - "Tracks": [ - { - "TrackId": 1791, - "Name": "Down Under", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 222171, - "Bytes": 7366142, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 372, - "CustomerId": 10, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1792, - "Name": "Overkill", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 225410, - "Bytes": 7408652, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1793, - "Name": "Be Good Johnny", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 216320, - "Bytes": 7139814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1794, - "Name": "Everything I Need", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 216476, - "Bytes": 7107625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1795, - "Name": "Down by the Sea", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 408163, - "Bytes": 13314900, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1796, - "Name": "Who Can It Be Now?", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 202396, - "Bytes": 6682850, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1797, - "Name": "It's a Mistake", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 273371, - "Bytes": 8979965, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1798, - "Name": "Dr. Heckyll \u0026 Mr. Jive", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 278465, - "Bytes": 9110403, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1799, - "Name": "Shakes and Ladders", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 198008, - "Bytes": 6560753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1800, - "Name": "No Sign of Yesterday", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 362004, - "Bytes": 11829011, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 106, - "Name": "Mot�rhead", - "Albums": [ - { - "AlbumId": 160, - "Title": "Ace Of Spades", - "ArtistId": 106, - "Tracks": [ - { - "TrackId": 1942, - "Name": "Ace Of Spades", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 169926, - "Bytes": 5523552, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1943, - "Name": "Love Me Like A Reptile", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 203546, - "Bytes": 6616389, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1944, - "Name": "Shoot You In The Back", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 160026, - "Bytes": 5175327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1945, - "Name": "Live To Win", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 217626, - "Bytes": 7102182, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1946, - "Name": "Fast And Loose", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 203337, - "Bytes": 6643350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1947, - "Name": "(We Are) The Road Crew", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 192600, - "Bytes": 6283035, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1948, - "Name": "Fire Fire", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 164675, - "Bytes": 5416114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1949, - "Name": "Jailbait", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 213916, - "Bytes": 6983609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1950, - "Name": "Dance", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 158432, - "Bytes": 5155099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1951, - "Name": "Bite The Bullet", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 98115, - "Bytes": 3195536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1952, - "Name": "The Chase Is Better Than The Catch", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 258403, - "Bytes": 8393310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1953, - "Name": "The Hammer", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 168071, - "Bytes": 5543267, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1954, - "Name": "Dirty Love", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 176457, - "Bytes": 5805241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1955, - "Name": "Please Don't Touch", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Heath/Robinson", - "Milliseconds": 169926, - "Bytes": 5557002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1956, - "Name": "Emergency", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dufort/Johnson/McAuliffe/Williams", - "Milliseconds": 180427, - "Bytes": 5828728, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 107, - "Name": "Mot�rhead \u0026 Girlschool", - "Albums": null - }, - { - "ArtistId": 108, - "Name": "M�nica Marianno", - "Albums": [ - { - "AlbumId": 161, - "Title": "Demorou...", - "ArtistId": 108, - "Tracks": [ - { - "TrackId": 1957, - "Name": "Kir Royal", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 234788, - "Bytes": 7706552, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1958, - "Name": "O Que Vai Em Meu Cora��o", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 255373, - "Bytes": 8366846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1959, - "Name": "Aos Le�es", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 234684, - "Bytes": 7790574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1960, - "Name": "Dois �ndios", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 219271, - "Bytes": 7213072, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1961, - "Name": "Noite Negra", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 206811, - "Bytes": 6819584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1962, - "Name": "Beijo do Olhar", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 252682, - "Bytes": 8369029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1963, - "Name": "� Fogo", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 194873, - "Bytes": 6501520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1964, - "Name": "J� Foi", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 245681, - "Bytes": 8094872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1965, - "Name": "S� Se For Pelo Cabelo", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 238288, - "Bytes": 8006345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1966, - "Name": "No Clima", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 249495, - "Bytes": 8362040, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1967, - "Name": "A Mo�a e a Chuva", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 274625, - "Bytes": 8929357, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1968, - "Name": "Demorou!", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 39131, - "Bytes": 1287083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 109, - "Name": "M�tley Cr�e", - "Albums": [ - { - "AlbumId": 162, - "Title": "Motley Crue Greatest Hits", - "ArtistId": 109, - "Tracks": [ - { - "TrackId": 1969, - "Name": "Bitter Pill", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 266814, - "Bytes": 8666786, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1970, - "Name": "Enslaved", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee", - "Milliseconds": 269844, - "Bytes": 8789966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1971, - "Name": "Girls, Girls, Girls", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee", - "Milliseconds": 270288, - "Bytes": 8874814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1972, - "Name": "Kickstart My Heart", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 283559, - "Bytes": 9237736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1973, - "Name": "Wild Side", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 276767, - "Bytes": 9116997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1974, - "Name": "Glitter", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bryan Adams/Nikki Sixx/Scott Humphrey", - "Milliseconds": 340114, - "Bytes": 11184094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1975, - "Name": "Dr. Feelgood", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx", - "Milliseconds": 282618, - "Bytes": 9281875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1976, - "Name": "Same Ol' Situation", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 254511, - "Bytes": 8283958, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1977, - "Name": "Home Sweet Home", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 236904, - "Bytes": 7697538, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1978, - "Name": "Afraid", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 248006, - "Bytes": 8077464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1979, - "Name": "Don't Go Away Mad (Just Go Away)", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx", - "Milliseconds": 279980, - "Bytes": 9188156, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1980, - "Name": "Without You", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx", - "Milliseconds": 268956, - "Bytes": 8738371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1981, - "Name": "Smokin' in The Boys Room", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Cub Coda/Michael Lutz", - "Milliseconds": 206837, - "Bytes": 6735408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1982, - "Name": "Primal Scream", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 286197, - "Bytes": 9421164, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1983, - "Name": "Too Fast For Love", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 200829, - "Bytes": 6580542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1984, - "Name": "Looks That Kill", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 240979, - "Bytes": 7831122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1985, - "Name": "Shout At The Devil", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 221962, - "Bytes": 7281974, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 110, - "Name": "Nirvana", - "Albums": [ - { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]", - "ArtistId": 110, - "Tracks": [ - { - "TrackId": 1986, - "Name": "Intro", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 52218, - "Bytes": 1688527, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1987, - "Name": "School", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 160235, - "Bytes": 5234885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1988, - "Name": "Drain You", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 215196, - "Bytes": 7013175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1989, - "Name": "Aneurysm", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nirvana", - "Milliseconds": 271516, - "Bytes": 8862545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1990, - "Name": "Smells Like Teen Spirit", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nirvana", - "Milliseconds": 287190, - "Bytes": 9425215, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1991, - "Name": "Been A Son", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 127555, - "Bytes": 4170369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1992, - "Name": "Lithium", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 250017, - "Bytes": 8148800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1993, - "Name": "Sliver", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 116218, - "Bytes": 3784567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1994, - "Name": "Spank Thru", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 190354, - "Bytes": 6186487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1995, - "Name": "Scentless Apprentice", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nirvana", - "Milliseconds": 211200, - "Bytes": 6898177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1996, - "Name": "Heart-Shaped Box", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 281887, - "Bytes": 9210982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1997, - "Name": "Milk It", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 225724, - "Bytes": 7406945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1998, - "Name": "Negative Creep", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 163761, - "Bytes": 5354854, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1999, - "Name": "Polly", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 149995, - "Bytes": 4885331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2000, - "Name": "Breed", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 208378, - "Bytes": 6759080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2001, - "Name": "Tourette's", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 115591, - "Bytes": 3753246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2002, - "Name": "Blew", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 216346, - "Bytes": 7096936, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 164, - "Title": "Nevermind", - "ArtistId": 110, - "Tracks": [ - { - "TrackId": 2003, - "Name": "Smells Like Teen Spirit", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 301296, - "Bytes": 9823847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2004, - "Name": "In Bloom", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 254928, - "Bytes": 8327077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2005, - "Name": "Come As You Are", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 219219, - "Bytes": 7123357, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2006, - "Name": "Breed", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 183928, - "Bytes": 5984812, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2007, - "Name": "Lithium", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 256992, - "Bytes": 8404745, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2008, - "Name": "Polly", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 177031, - "Bytes": 5788407, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2009, - "Name": "Territorial Pissings", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 143281, - "Bytes": 4613880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2010, - "Name": "Drain You", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 223973, - "Bytes": 7273440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2011, - "Name": "Lounge Act", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 156786, - "Bytes": 5093635, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2012, - "Name": "Stay Away", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 212636, - "Bytes": 6956404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2013, - "Name": "On A Plain", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 196440, - "Bytes": 6390635, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2014, - "Name": "Something In The Way", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 230556, - "Bytes": 7472168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 111, - "Name": "O Ter�o", - "Albums": [ - { - "AlbumId": 165, - "Title": "Compositores", - "ArtistId": 111, - "Tracks": [ - { - "TrackId": 2015, - "Name": "Time", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 96888, - "Bytes": 3124455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2016, - "Name": "P.S.Apare�a", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 209188, - "Bytes": 6842244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2017, - "Name": "Sangue Latino", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 223033, - "Bytes": 7354184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 377, - "CustomerId": 45, - "InvoiceDate": "2013-07-20T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 0.99, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2018, - "Name": "Folhas Secas", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 161253, - "Bytes": 5284522, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 378, - "CustomerId": 46, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2019, - "Name": "Poeira", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 267075, - "Bytes": 8784141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 378, - "CustomerId": 46, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2020, - "Name": "M�gica", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 233743, - "Bytes": 7627348, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2021, - "Name": "Quem Mata A Mulher Mata O Melhor", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 262791, - "Bytes": 8640121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 379, - "CustomerId": 48, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2022, - "Name": "Mundar�u", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 217521, - "Bytes": 7158975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2023, - "Name": "O Bra�o Da Minha Guitarra", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258351, - "Bytes": 8469531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 379, - "CustomerId": 48, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2024, - "Name": "Deus", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 284160, - "Bytes": 9188110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2025, - "Name": "M�e Terra", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 306625, - "Bytes": 9949269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2026, - "Name": "�s Vezes", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 330292, - "Bytes": 10706614, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2027, - "Name": "Menino De Rua", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 329795, - "Bytes": 10784595, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2028, - "Name": "Prazer E F�", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 214831, - "Bytes": 7031383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2029, - "Name": "Elza", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 199105, - "Bytes": 6517629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 112, - "Name": "Olodum", - "Albums": [ - { - "AlbumId": 166, - "Title": "Olodum", - "ArtistId": 112, - "Tracks": [ - { - "TrackId": 2030, - "Name": "Requebra", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 240744, - "Bytes": 8010811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2031, - "Name": "Nossa Gente (Avisa L�)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 188212, - "Bytes": 6233201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2032, - "Name": "Olodum - Alegria Geral", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 233404, - "Bytes": 7754245, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2033, - "Name": "Madag�scar Olodum", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252264, - "Bytes": 8270584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2034, - "Name": "Fara� Divindade Do Egito", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 228571, - "Bytes": 7523278, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2035, - "Name": "Todo Amor (Asas Da Liberdade)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 245133, - "Bytes": 8121434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2036, - "Name": "Den�ncia", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 159555, - "Bytes": 5327433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2037, - "Name": "Olodum, A Banda Do Pel�", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 146599, - "Bytes": 4900121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2038, - "Name": "Cartao Postal", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211565, - "Bytes": 7082301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2039, - "Name": "Jeito Faceiro", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 217286, - "Bytes": 7233608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2040, - "Name": "Revolta Olodum", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230191, - "Bytes": 7557065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 272, - "CustomerId": 6, - "InvoiceDate": "2012-04-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 0.99, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2041, - "Name": "Reggae Odoy�", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 224470, - "Bytes": 7499807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 273, - "CustomerId": 7, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2042, - "Name": "Protesto Do Olodum (Ao Vivo)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206001, - "Bytes": 6766104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 273, - "CustomerId": 7, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2043, - "Name": "Olodum - Smile (Instrumental)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 235833, - "Bytes": 7871409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 113, - "Name": "Os Paralamas Do Sucesso", - "Albums": [ - { - "AlbumId": 167, - "Title": "Ac�stico MTV", - "ArtistId": 113, - "Tracks": [ - { - "TrackId": 2044, - "Name": "Vulc�o Dub - Fui Eu", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bi Ribeira/Herbert Vianna/Jo�o Barone", - "Milliseconds": 287059, - "Bytes": 9495202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 274, - "CustomerId": 9, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2045, - "Name": "O Trem Da Juventude", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 225880, - "Bytes": 7507655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2046, - "Name": "Manguetown", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science/Dengue/L�cio Maia", - "Milliseconds": 162925, - "Bytes": 5382018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 274, - "CustomerId": 9, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2047, - "Name": "Um Amor, Um Lugar", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 184555, - "Bytes": 6090334, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2048, - "Name": "Bora-Bora", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 182987, - "Bytes": 6036046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2049, - "Name": "Vai Valer", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 206524, - "Bytes": 6899778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2050, - "Name": "I Feel Good (I Got You) - Sossego", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "James Brown/Tim Maia", - "Milliseconds": 244976, - "Bytes": 8091302, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2051, - "Name": "Uns Dias", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 240796, - "Bytes": 7931552, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2052, - "Name": "Sincero Breu", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "C. A./C.A./Celso Alvim/Herbert Vianna/M�rio Moura/Pedro Lu�s/Sidon Silva", - "Milliseconds": 208013, - "Bytes": 6921669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2053, - "Name": "Meu Erro", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 188577, - "Bytes": 6192791, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2054, - "Name": "Selvagem", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bi Ribeiro/Herbert Vianna/Jo�o Barone", - "Milliseconds": 148558, - "Bytes": 4942831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2055, - "Name": "Bras�lia 5:31", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 178337, - "Bytes": 5857116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2056, - "Name": "Tendo A Lua", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna/Tet Tillett", - "Milliseconds": 198922, - "Bytes": 6568180, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2057, - "Name": "Que Pa�s � Este", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 216685, - "Bytes": 7137865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2058, - "Name": "Navegar Impreciso", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 262870, - "Bytes": 8761283, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2059, - "Name": "Feira Moderna", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Guedes/Fernando Brant/L Borges", - "Milliseconds": 182517, - "Bytes": 6001793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2060, - "Name": "Tequila - Lourinha Bombril (Parate Y Mira)", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bahiano/Chuck Rio/Diego Blanco/Herbert Vianna", - "Milliseconds": 255738, - "Bytes": 8514961, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2061, - "Name": "Vamo Bat� Lata", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 228754, - "Bytes": 7585707, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2062, - "Name": "Life During Wartime", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chris Frantz/David Byrne/Jerry Harrison/Tina Weymouth", - "Milliseconds": 259186, - "Bytes": 8543439, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2063, - "Name": "Nebulosa Do Amor", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 203415, - "Bytes": 6732496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 167, - "CustomerId": 26, - "InvoiceDate": "2011-01-02T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 0.99, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2064, - "Name": "Caleidosc�pio", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 256522, - "Bytes": 8484597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 168, - "CustomerId": 27, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 168, - "Title": "Arquivo II", - "ArtistId": 113, - "Tracks": [ - { - "TrackId": 2065, - "Name": "Trac Trac", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Fito Paez/Herbert Vianna", - "Milliseconds": 231653, - "Bytes": 7638256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 168, - "CustomerId": 27, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2066, - "Name": "Tendo A Lua", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna/Tet� Tillet", - "Milliseconds": 219585, - "Bytes": 7342776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2067, - "Name": "Mensagen De Amor (2000)", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 183588, - "Bytes": 6061324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 169, - "CustomerId": 29, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2068, - "Name": "Lourinha Bombril", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bahiano/Diego Blanco/Herbert Vianna", - "Milliseconds": 159895, - "Bytes": 5301882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2069, - "Name": "La Bella Luna", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 192653, - "Bytes": 6428598, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 169, - "CustomerId": 29, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2070, - "Name": "Busca Vida", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 176431, - "Bytes": 5798663, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2071, - "Name": "Uma Brasileira", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown/Herbert Vianna", - "Milliseconds": 217573, - "Bytes": 7280574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2072, - "Name": "Luis Inacio (300 Picaretas)", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 198191, - "Bytes": 6576790, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2073, - "Name": "Saber Amar", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 202788, - "Bytes": 6723733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2074, - "Name": "Ela Disse Adeus", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 226298, - "Bytes": 7608999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2075, - "Name": "O Amor Nao Sabe Esperar", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 241084, - "Bytes": 8042534, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2076, - "Name": "Aonde Quer Que Eu Va", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna/Paulo S�rgio Valle", - "Milliseconds": 258089, - "Bytes": 8470121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso", - "ArtistId": 113, - "Tracks": [ - { - "TrackId": 2077, - "Name": "Caleidosc�pio", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211330, - "Bytes": 7000017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2078, - "Name": "�culos", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 219271, - "Bytes": 7262419, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2079, - "Name": "Cinema Mudo", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227918, - "Bytes": 7612168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2080, - "Name": "Alagados", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 302393, - "Bytes": 10255463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2081, - "Name": "Lanterna Dos Afogados", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 190197, - "Bytes": 6264318, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2082, - "Name": "Mel� Do Marinheiro", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 208352, - "Bytes": 6905668, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2083, - "Name": "Vital E Sua Moto", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 210207, - "Bytes": 6902878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2084, - "Name": "O Beco", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189178, - "Bytes": 6293184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2085, - "Name": "Meu Erro", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 208431, - "Bytes": 6893533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2086, - "Name": "Perplexo", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 161175, - "Bytes": 5355013, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 62, - "CustomerId": 46, - "InvoiceDate": "2009-09-24T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2087, - "Name": "Me Liga", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 229590, - "Bytes": 7565912, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 63, - "CustomerId": 47, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2088, - "Name": "Quase Um Segundo", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 275644, - "Bytes": 8971355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 63, - "CustomerId": 47, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2089, - "Name": "Selvagem", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 245890, - "Bytes": 8141084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2090, - "Name": "Romance Ideal", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 250070, - "Bytes": 8260477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 64, - "CustomerId": 49, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2091, - "Name": "Ser� Que Vai Chover?", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 337057, - "Bytes": 11133830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2092, - "Name": "SKA", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 148871, - "Bytes": 4943540, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 64, - "CustomerId": 49, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 114, - "Name": "Ozzy Osbourne", - "Albums": [ - { - "AlbumId": 170, - "Title": "Bark at the Moon (Remastered)", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2093, - "Name": "Bark at the Moon", - "AlbumId": 170, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "O. Osbourne", - "Milliseconds": 257252, - "Bytes": 4601224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 171, - "Title": "Blizzard of Ozz", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2094, - "Name": "I Don't Know", - "AlbumId": 171, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "B. Daisley, O. Osbourne \u0026 R. Rhoads", - "Milliseconds": 312980, - "Bytes": 5525339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2095, - "Name": "Crazy Train", - "AlbumId": 171, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "B. Daisley, O. Osbourne \u0026 R. Rhoads", - "Milliseconds": 295960, - "Bytes": 5255083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 172, - "Title": "Diary of a Madman (Remastered)", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2096, - "Name": "Flying High Again", - "AlbumId": 172, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "L. Kerslake, O. Osbourne, R. Daisley \u0026 R. Rhoads", - "Milliseconds": 290851, - "Bytes": 5179599, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 173, - "Title": "No More Tears (Remastered)", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2097, - "Name": "Mama, I'm Coming Home", - "AlbumId": 173, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "L. Kilmister, O. Osbourne \u0026 Z. Wylde", - "Milliseconds": 251586, - "Bytes": 4302390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2098, - "Name": "No More Tears", - "AlbumId": 173, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Purdell, M. Inez, O. Osbourne, R. Castillo \u0026 Z. Wylde", - "Milliseconds": 444358, - "Bytes": 7362964, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 174, - "Title": "Tribute", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2099, - "Name": "I Don't Know", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 283088, - "Bytes": 9207869, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2100, - "Name": "Crazy Train", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 322716, - "Bytes": 10517408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2101, - "Name": "Believer", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 308897, - "Bytes": 10003794, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2102, - "Name": "Mr. Crowley", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 344241, - "Bytes": 11184130, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2103, - "Name": "Flying High Again", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake", - "Milliseconds": 261224, - "Bytes": 8481822, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2104, - "Name": "Relvelation (Mother Earth)", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 349440, - "Bytes": 11367866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2105, - "Name": "Steal Away (The Night)", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 485720, - "Bytes": 15945806, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2106, - "Name": "Suicide Solution (With Guitar Solo)", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 467069, - "Bytes": 15119938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2107, - "Name": "Iron Man", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Milliseconds": 172120, - "Bytes": 5609799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2108, - "Name": "Children Of The Grave", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Milliseconds": 357067, - "Bytes": 11626740, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2109, - "Name": "Paranoid", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Milliseconds": 176352, - "Bytes": 5729813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2110, - "Name": "Goodbye To Romance", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 334393, - "Bytes": 10841337, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2111, - "Name": "No Bone Movies", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 249208, - "Bytes": 8095199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2112, - "Name": "Dee", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "R. Rhoads", - "Milliseconds": 261302, - "Bytes": 8555963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 256, - "Title": "Speak of the Devil", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 3276, - "Name": "Sympton of the Universe", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 340890, - "Bytes": 5489313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3277, - "Name": "Snowblind", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 295960, - "Bytes": 4773171, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3278, - "Name": "Black Sabbath", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 364180, - "Bytes": 5860455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3279, - "Name": "Fairies Wear Boots", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 392764, - "Bytes": 6315916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3280, - "Name": "War Pigs", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 515435, - "Bytes": 8270194, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3281, - "Name": "The Wizard", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 282678, - "Bytes": 4561796, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3282, - "Name": "N.I.B.", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 335248, - "Bytes": 5399456, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3283, - "Name": "Sweet Leaf", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 354706, - "Bytes": 5709700, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3284, - "Name": "Never Say Die", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258343, - "Bytes": 4173799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3285, - "Name": "Sabbath, Bloody Sabbath", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 333622, - "Bytes": 5373633, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3286, - "Name": "Iron Man/Children of the Grave", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 552308, - "Bytes": 8858616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3287, - "Name": "Paranoid", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 189171, - "Bytes": 3071042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 115, - "Name": "Page \u0026 Plant", - "Albums": [ - { - "AlbumId": 175, - "Title": "Walking Into Clarksdale", - "ArtistId": 115, - "Tracks": [ - { - "TrackId": 2113, - "Name": "Shining In The Light", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 240796, - "Bytes": 7951688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2114, - "Name": "When The World Was Young", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 373394, - "Bytes": 12198930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2115, - "Name": "Upon A Golden Horse", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 232359, - "Bytes": 7594829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2116, - "Name": "Blue Train", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 405028, - "Bytes": 13170391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2117, - "Name": "Please Read The Letter", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 262112, - "Bytes": 8603372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2118, - "Name": "Most High", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 336535, - "Bytes": 10999203, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2119, - "Name": "Heart In Your Hand", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 230896, - "Bytes": 7598019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2120, - "Name": "Walking Into Clarksdale", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 318511, - "Bytes": 10396315, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2121, - "Name": "Burning Up", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 321619, - "Bytes": 10525136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2122, - "Name": "When I Was A Child", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 345626, - "Bytes": 11249456, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2123, - "Name": "House Of Love", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 335699, - "Bytes": 10990880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2124, - "Name": "Sons Of Freedom", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 246465, - "Bytes": 8087944, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 116, - "Name": "Passengers", - "Albums": [ - { - "AlbumId": 176, - "Title": "Original Soundtracks 1", - "ArtistId": 116, - "Tracks": [ - { - "TrackId": 2125, - "Name": "United Colours", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 330266, - "Bytes": 10939131, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2126, - "Name": "Slug", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 281469, - "Bytes": 9295950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2127, - "Name": "Your Blue Room", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 328228, - "Bytes": 10867860, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2128, - "Name": "Always Forever Now", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 383764, - "Bytes": 12727928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2129, - "Name": "A Different Kind Of Blue", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 120816, - "Bytes": 3884133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2130, - "Name": "Beach Sequence", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 212297, - "Bytes": 6928259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2131, - "Name": "Miss Sarajevo", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 340767, - "Bytes": 11064884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2132, - "Name": "Ito Okashi", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 205087, - "Bytes": 6572813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2133, - "Name": "One Minute Warning", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 279693, - "Bytes": 9335453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2134, - "Name": "Corpse (These Chains Are Way Too Long)", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 214909, - "Bytes": 6920451, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2135, - "Name": "Elvis Ate America", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 180166, - "Bytes": 5851053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2136, - "Name": "Plot 180", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 221596, - "Bytes": 7253729, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2137, - "Name": "Theme From The Swan", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 203911, - "Bytes": 6638076, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2138, - "Name": "Theme From Let's Go Native", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 186723, - "Bytes": 6179777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 117, - "Name": "Paul D'Ianno", - "Albums": [ - { - "AlbumId": 177, - "Title": "The Beast Live", - "ArtistId": 117, - "Tracks": [ - { - "TrackId": 2139, - "Name": "Wrathchild", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 170396, - "Bytes": 5499390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2140, - "Name": "Killers", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 309995, - "Bytes": 10009697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2141, - "Name": "Prowler", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 240274, - "Bytes": 7782963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2142, - "Name": "Murders In The Rue Morgue", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 258638, - "Bytes": 8360999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2143, - "Name": "Women In Uniform", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Greg Macainsh", - "Milliseconds": 189936, - "Bytes": 6139651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2144, - "Name": "Remember Tomorrow", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 326426, - "Bytes": 10577976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2145, - "Name": "Sanctuary", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 198844, - "Bytes": 6423543, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2146, - "Name": "Running Free", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 199706, - "Bytes": 6483496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2147, - "Name": "Phantom Of The Opera", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 418168, - "Bytes": 13585530, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2148, - "Name": "Iron Maiden", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 235232, - "Bytes": 7600077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 118, - "Name": "Pearl Jam", - "Albums": [ - { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2149, - "Name": "Corduroy", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pearl Jam \u0026 Eddie Vedder", - "Milliseconds": 305293, - "Bytes": 9991106, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2150, - "Name": "Given To Fly", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder \u0026 Mike McCready", - "Milliseconds": 233613, - "Bytes": 7678347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2151, - "Name": "Hail, Hail", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard \u0026 Eddie Vedder \u0026 Jeff Ament \u0026 Mike McCready", - "Milliseconds": 223764, - "Bytes": 7364206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2152, - "Name": "Daughter", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese \u0026 Jeff Ament \u0026 Stone Gossard \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 407484, - "Bytes": 13420697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2153, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese \u0026 Jeff Ament \u0026 Stone Gossard \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 229328, - "Bytes": 7509304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2154, - "Name": "Untitled", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pearl Jam", - "Milliseconds": 122801, - "Bytes": 3957141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2155, - "Name": "MFC", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 148192, - "Bytes": 4817665, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2156, - "Name": "Go", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese \u0026 Jeff Ament \u0026 Stone Gossard \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 161541, - "Bytes": 5290810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2157, - "Name": "Red Mosquito", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament \u0026 Stone Gossard \u0026 Jack Irons \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 242991, - "Bytes": 7944923, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2158, - "Name": "Even Flow", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard \u0026 Eddie Vedder", - "Milliseconds": 317100, - "Bytes": 10394239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2159, - "Name": "Off He Goes", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 343222, - "Bytes": 11245109, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2160, - "Name": "Nothingman", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament \u0026 Eddie Vedder", - "Milliseconds": 278595, - "Bytes": 9107017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2161, - "Name": "Do The Evolution", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder \u0026 Stone Gossard", - "Milliseconds": 225462, - "Bytes": 7377286, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2162, - "Name": "Better Man", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 246204, - "Bytes": 8019563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2163, - "Name": "Black", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard \u0026 Eddie Vedder", - "Milliseconds": 415712, - "Bytes": 13580009, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2164, - "Name": "F*Ckin' Up", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Neil Young", - "Milliseconds": 377652, - "Bytes": 12360893, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 179, - "Title": "Pearl Jam", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2165, - "Name": "Life Wasted", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stone Gossard", - "Milliseconds": 234344, - "Bytes": 7610169, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2166, - "Name": "World Wide Suicide", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder", - "Milliseconds": 209188, - "Bytes": 6885908, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2167, - "Name": "Comatose", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike McCready \u0026 Stone Gossard", - "Milliseconds": 139990, - "Bytes": 4574516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2168, - "Name": "Severed Hand", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder", - "Milliseconds": 270341, - "Bytes": 8817438, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2169, - "Name": "Marker In The Sand", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike McCready", - "Milliseconds": 263235, - "Bytes": 8656578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2170, - "Name": "Parachutes", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stone Gossard", - "Milliseconds": 216555, - "Bytes": 7074973, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2171, - "Name": "Unemployable", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Matt Cameron \u0026 Mike McCready", - "Milliseconds": 184398, - "Bytes": 6066542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2172, - "Name": "Big Wave", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jeff Ament", - "Milliseconds": 178573, - "Bytes": 5858788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2173, - "Name": "Gone", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder", - "Milliseconds": 249547, - "Bytes": 8158204, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2174, - "Name": "Wasted Reprise", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stone Gossard", - "Milliseconds": 53733, - "Bytes": 1731020, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2175, - "Name": "Army Reserve", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jeff Ament", - "Milliseconds": 225567, - "Bytes": 7393771, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2176, - "Name": "Come Back", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder \u0026 Mike McCready", - "Milliseconds": 329743, - "Bytes": 10768701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2177, - "Name": "Inside Job", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder \u0026 Mike McCready", - "Milliseconds": 428643, - "Bytes": 14006924, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 180, - "Title": "Riot Act", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2178, - "Name": "Can't Keep", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 219428, - "Bytes": 7215713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2179, - "Name": "Save You", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard", - "Milliseconds": 230112, - "Bytes": 7609110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2180, - "Name": "Love Boat Captain", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 276453, - "Bytes": 9016789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2181, - "Name": "Cropduster", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Matt Cameron", - "Milliseconds": 231888, - "Bytes": 7588928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2182, - "Name": "Ghost", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 195108, - "Bytes": 6383772, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2183, - "Name": "I Am Mine", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 215719, - "Bytes": 7086901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2184, - "Name": "Thumbing My Way", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 250226, - "Bytes": 8201437, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2185, - "Name": "You Are", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Matt Cameron", - "Milliseconds": 270863, - "Bytes": 8938409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2186, - "Name": "Get Right", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Matt Cameron", - "Milliseconds": 158589, - "Bytes": 5223345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2187, - "Name": "Green Disease", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 161253, - "Bytes": 5375818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2188, - "Name": "Help Help", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 215092, - "Bytes": 7033002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2189, - "Name": "Bushleager", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 237479, - "Bytes": 7849757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2190, - "Name": "1/2 Full", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 251010, - "Bytes": 8197219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2191, - "Name": "Arc", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pearl Jam", - "Milliseconds": 65593, - "Bytes": 2099421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2192, - "Name": "All or None", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 277655, - "Bytes": 9104728, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 181, - "Title": "Ten", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2193, - "Name": "Once", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 231758, - "Bytes": 7561555, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2194, - "Name": "Evenflow", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 293720, - "Bytes": 9622017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2195, - "Name": "Alive", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 341080, - "Bytes": 11176623, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2196, - "Name": "Why Go", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 200254, - "Bytes": 6539287, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2197, - "Name": "Black", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Krusen/Stone Gossard", - "Milliseconds": 343823, - "Bytes": 11213314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2198, - "Name": "Jeremy", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 318981, - "Bytes": 10447222, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2199, - "Name": "Oceans", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Stone Gossard", - "Milliseconds": 162194, - "Bytes": 5282368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2200, - "Name": "Porch", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 210520, - "Bytes": 6877475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2201, - "Name": "Garden", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Stone Gossard", - "Milliseconds": 299154, - "Bytes": 9740738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2202, - "Name": "Deep", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Stone Gossard", - "Milliseconds": 258324, - "Bytes": 8432497, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2203, - "Name": "Release", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 546063, - "Bytes": 17802673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 182, - "Title": "Vs.", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2204, - "Name": "Go", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 193123, - "Bytes": 6351920, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2205, - "Name": "Animal", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 169325, - "Bytes": 5503459, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2206, - "Name": "Daughter", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 235598, - "Bytes": 7824586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2207, - "Name": "Glorified G", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 206968, - "Bytes": 6772116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2208, - "Name": "Dissident", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 215510, - "Bytes": 7034500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2209, - "Name": "W.M.A.", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 359262, - "Bytes": 12037261, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2210, - "Name": "Blood", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 170631, - "Bytes": 5551478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2211, - "Name": "Rearviewmirror", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 284186, - "Bytes": 9321053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2212, - "Name": "Rats", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 255425, - "Bytes": 8341934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2213, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 196336, - "Bytes": 6499398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2214, - "Name": "Leash", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 189257, - "Bytes": 6191560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2215, - "Name": "Indifference", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 302053, - "Bytes": 9756133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 119, - "Name": "Peter Tosh", - "Albums": null - }, - { - "ArtistId": 120, - "Name": "Pink Floyd", - "Albums": [ - { - "AlbumId": 183, - "Title": "Dark Side Of The Moon", - "ArtistId": 120, - "Tracks": [ - { - "TrackId": 2229, - "Name": "Speak To Me/Breathe", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mason/Waters, Gilmour, Wright", - "Milliseconds": 234213, - "Bytes": 7631305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2230, - "Name": "On The Run", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gilmour, Waters", - "Milliseconds": 214595, - "Bytes": 7206300, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2231, - "Name": "Time", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mason, Waters, Wright, Gilmour", - "Milliseconds": 425195, - "Bytes": 13955426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2232, - "Name": "The Great Gig In The Sky", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Wright, Waters", - "Milliseconds": 284055, - "Bytes": 9147563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2233, - "Name": "Money", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters", - "Milliseconds": 391888, - "Bytes": 12930070, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2234, - "Name": "Us And Them", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters, Wright", - "Milliseconds": 461035, - "Bytes": 15000299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2235, - "Name": "Any Colour You Like", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gilmour, Mason, Wright, Waters", - "Milliseconds": 205740, - "Bytes": 6707989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2236, - "Name": "Brain Damage", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters", - "Milliseconds": 230556, - "Bytes": 7497655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2237, - "Name": "Eclipse", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters", - "Milliseconds": 125361, - "Bytes": 4065299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 121, - "Name": "Planet Hemp", - "Albums": [ - { - "AlbumId": 184, - "Title": "Os C�es Ladram Mas A Caravana N�o P�ra", - "ArtistId": 121, - "Tracks": [ - { - "TrackId": 2238, - "Name": "ZeroVinteUm", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 315637, - "Bytes": 10426550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2239, - "Name": "Queimando Tudo", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 172591, - "Bytes": 5723677, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2240, - "Name": "Hip Hop Rio", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 151536, - "Bytes": 4991935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2241, - "Name": "Bossa", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 29048, - "Bytes": 967098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2242, - "Name": "100% HardCore", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 165146, - "Bytes": 5407744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2243, - "Name": "Biruta", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 213263, - "Bytes": 7108200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2244, - "Name": "M�o Na Cabe�a", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 202631, - "Bytes": 6642753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2245, - "Name": "O Bicho T� Pregando", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 171964, - "Bytes": 5683369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2246, - "Name": "Adoled (Ocean)", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 185103, - "Bytes": 6009946, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2247, - "Name": "Seus Amigos", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 100858, - "Bytes": 3304738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2248, - "Name": "Paga Pau", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 197485, - "Bytes": 6529041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2249, - "Name": "Rappers Reais", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 202004, - "Bytes": 6684160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 384, - "CustomerId": 24, - "InvoiceDate": "2013-08-20T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 0.99, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2250, - "Name": "Nega Do Cabelo Duro", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 121808, - "Bytes": 4116536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 385, - "CustomerId": 25, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2251, - "Name": "Hemp Family", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 205923, - "Bytes": 6806900, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 385, - "CustomerId": 25, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2252, - "Name": "Quem Me Cobrou?", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 121704, - "Bytes": 3947664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2253, - "Name": "Se Liga", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 410409, - "Bytes": 13559173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 386, - "CustomerId": 27, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 122, - "Name": "R.E.M. Feat. Kate Pearson", - "Albums": [ - { - "AlbumId": 187, - "Title": "Out Of Time", - "ArtistId": 122, - "Tracks": [ - { - "TrackId": 2282, - "Name": "Shiny Happy People", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 226298, - "Bytes": 7475323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2283, - "Name": "Me In Honey", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 246674, - "Bytes": 8194751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2284, - "Name": "Radio Song", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 255477, - "Bytes": 8421172, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2310, - "Name": "Losing My Religion", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 269035, - "Bytes": 8885672, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2311, - "Name": "Low", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 296777, - "Bytes": 9633860, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2312, - "Name": "Near Wild Heaven", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 199862, - "Bytes": 6610009, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2313, - "Name": "Endgame", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 230687, - "Bytes": 7664479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2314, - "Name": "Belong", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 247013, - "Bytes": 8219375, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2315, - "Name": "Half A World Away", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 208431, - "Bytes": 6837283, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2316, - "Name": "Texarkana", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 220081, - "Bytes": 7260681, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2317, - "Name": "Country Feedback", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 249782, - "Bytes": 8178943, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 123, - "Name": "R.E.M. Feat. KRS-One", - "Albums": null - }, - { - "ArtistId": 124, - "Name": "R.E.M.", - "Albums": [ - { - "AlbumId": 188, - "Title": "Green", - "ArtistId": 124, - "Tracks": [ - { - "TrackId": 2285, - "Name": "Pop Song 89", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 185730, - "Bytes": 6132218, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2286, - "Name": "Get Up", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 160235, - "Bytes": 5264376, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2287, - "Name": "You Are The Everything", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 226298, - "Bytes": 7373181, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2288, - "Name": "Stand", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 192862, - "Bytes": 6349090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2289, - "Name": "World Leader Pretend", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 259761, - "Bytes": 8537282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2290, - "Name": "The Wrong Child", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 216633, - "Bytes": 7065060, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2291, - "Name": "Orange Crush", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 231706, - "Bytes": 7742894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2292, - "Name": "Turn You Inside-Out", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 257358, - "Bytes": 8395671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2293, - "Name": "Hairshirt", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 235911, - "Bytes": 7753807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2294, - "Name": "I Remember California", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 304013, - "Bytes": 9950311, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2295, - "Name": "Untitled", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 191503, - "Bytes": 6332426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 174, - "CustomerId": 5, - "InvoiceDate": "2011-02-02T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 0.99, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi", - "ArtistId": 124, - "Tracks": [ - { - "TrackId": 2296, - "Name": "How The West Was Won And Where It Got Us", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 271151, - "Bytes": 8994291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 175, - "CustomerId": 6, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2297, - "Name": "The Wake-Up Bomb", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 308532, - "Bytes": 10077337, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 175, - "CustomerId": 6, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2298, - "Name": "New Test Leper", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 326791, - "Bytes": 10866447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2299, - "Name": "Undertow", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 309498, - "Bytes": 10131005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 176, - "CustomerId": 8, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2300, - "Name": "E-Bow The Letter", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 324963, - "Bytes": 10714576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2301, - "Name": "Leave", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 437968, - "Bytes": 14433365, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 176, - "CustomerId": 8, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2302, - "Name": "Departure", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 209423, - "Bytes": 6818425, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2303, - "Name": "Bittersweet Me", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 245812, - "Bytes": 8114718, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2304, - "Name": "Be Mine", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 333087, - "Bytes": 10790541, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2305, - "Name": "Binky The Doormat", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 301688, - "Bytes": 9950320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2306, - "Name": "Zither", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 154148, - "Bytes": 5032962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2307, - "Name": "So Fast, So Numb", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 252682, - "Bytes": 8341223, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2308, - "Name": "Low Desert", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 212062, - "Bytes": 6989288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2309, - "Name": "Electrolite", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 245315, - "Bytes": 8051199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years", - "ArtistId": 124, - "Tracks": [ - { - "TrackId": 2318, - "Name": "Carnival Of Sorts", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 233482, - "Bytes": 7669658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 69, - "CustomerId": 25, - "InvoiceDate": "2009-10-25T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 0.99, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2319, - "Name": "Radio Free Aurope", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 245315, - "Bytes": 8163490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 70, - "CustomerId": 26, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2320, - "Name": "Perfect Circle", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 208509, - "Bytes": 6898067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 70, - "CustomerId": 26, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2321, - "Name": "Talk About The Passion", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 203206, - "Bytes": 6725435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2322, - "Name": "So Central Rain", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 194768, - "Bytes": 6414550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 71, - "CustomerId": 28, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2323, - "Name": "Don't Go Back To Rockville", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 272352, - "Bytes": 9010715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2324, - "Name": "Pretty Persuasion", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 229929, - "Bytes": 7577754, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 71, - "CustomerId": 28, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2325, - "Name": "Green Grow The Rushes", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 225671, - "Bytes": 7422425, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2326, - "Name": "Can't Get There From Here", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 220630, - "Bytes": 7285936, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2327, - "Name": "Driver 8", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 204747, - "Bytes": 6779076, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2328, - "Name": "Fall On Me", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 172016, - "Bytes": 5676811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2329, - "Name": "I Believe", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 227709, - "Bytes": 7542929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2330, - "Name": "Cuyahoga", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 260623, - "Bytes": 8591057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2331, - "Name": "The One I Love", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 197355, - "Bytes": 6495125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2332, - "Name": "The Finest Worksong", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 229276, - "Bytes": 7574856, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2333, - "Name": "It's The End Of The World As We Know It (And I Feel Fine)", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 244819, - "Bytes": 7998987, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 125, - "Name": "Raimundos", - "Albums": [ - { - "AlbumId": 191, - "Title": "Cesta B�sica", - "ArtistId": 125, - "Tracks": [ - { - "TrackId": 2334, - "Name": "Infeliz Natal", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 138266, - "Bytes": 4503299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2335, - "Name": "A Sua", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 142132, - "Bytes": 4622064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2336, - "Name": "Papeau Nuky Doe", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 121652, - "Bytes": 3995022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2337, - "Name": "Merry Christmas", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 126040, - "Bytes": 4166652, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2338, - "Name": "Bodies", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 180035, - "Bytes": 5873778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2339, - "Name": "Puteiro Em Jo�o Pessoa", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 195578, - "Bytes": 6395490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2340, - "Name": "Esporrei Na Manivela", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 293276, - "Bytes": 9618499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2341, - "Name": "B�-a-B�", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 249051, - "Bytes": 8130636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2342, - "Name": "Cajueiro", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 158589, - "Bytes": 5164837, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2343, - "Name": "Palhas Do Coqueiro", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 133851, - "Bytes": 4396466, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 126, - "Name": "Raul Seixas", - "Albums": [ - { - "AlbumId": 192, - "Title": "Raul Seixas", - "ArtistId": 126, - "Tracks": [ - { - "TrackId": 2344, - "Name": "Maluco Beleza", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 203206, - "Bytes": 6628067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2345, - "Name": "O Dia Em Que A Terra Parou", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 261720, - "Bytes": 8586678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2346, - "Name": "No Fundo Do Quintal Da Escola", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 177606, - "Bytes": 5836953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2347, - "Name": "O Segredo Do Universo", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 192679, - "Bytes": 6315187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2348, - "Name": "As Profecias", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 232515, - "Bytes": 7657732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2349, - "Name": "Mata Virgem", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 142602, - "Bytes": 4690029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2350, - "Name": "Sapato 36", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 196702, - "Bytes": 6507301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2351, - "Name": "Todo Mundo Explica", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 134896, - "Bytes": 4449772, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2352, - "Name": "Que Luz � Essa", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 165067, - "Bytes": 5620058, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2353, - "Name": "Diamante De Mendigo", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 206053, - "Bytes": 6775101, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2354, - "Name": "Neg�cio �", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 175464, - "Bytes": 5826775, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2355, - "Name": "Muita Estrela, Pouca Constela��o", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 268068, - "Bytes": 8781021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2356, - "Name": "S�culo XXI", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 244897, - "Bytes": 8040563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2357, - "Name": "Rock Das Aranhas (Ao Vivo) (Live)", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 231836, - "Bytes": 7591945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 127, - "Name": "Red Hot Chili Peppers", - "Albums": [ - { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik", - "ArtistId": 127, - "Tracks": [ - { - "TrackId": 2358, - "Name": "The Power Of Equality", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 243591, - "Bytes": 8148266, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2359, - "Name": "If You Have To Ask", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 216790, - "Bytes": 7199175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2360, - "Name": "Breaking The Girl", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 295497, - "Bytes": 9805526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2361, - "Name": "Funky Monks", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 323395, - "Bytes": 10708168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2362, - "Name": "Suck My Kiss", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 217234, - "Bytes": 7129137, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2363, - "Name": "I Could Have Lied", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 244506, - "Bytes": 8088244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2364, - "Name": "Mellowship Slinky In B Major", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 240091, - "Bytes": 7971384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2365, - "Name": "The Righteous \u0026 The Wicked", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 248084, - "Bytes": 8134096, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2366, - "Name": "Give It Away", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 283010, - "Bytes": 9308997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2367, - "Name": "Blood Sugar Sex Magik", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 271229, - "Bytes": 8940573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2368, - "Name": "Under The Bridge", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 264359, - "Bytes": 8682716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2369, - "Name": "Naked In The Rain", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 265717, - "Bytes": 8724674, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2370, - "Name": "Apache Rose Peacock", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 282226, - "Bytes": 9312588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2371, - "Name": "The Greeting Song", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 193593, - "Bytes": 6346507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2372, - "Name": "My Lovely Man", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 279118, - "Bytes": 9220114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2373, - "Name": "Sir Psycho Sexy", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 496692, - "Bytes": 16354362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2374, - "Name": "They're Red Hot", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Robert Johnson", - "Milliseconds": 71941, - "Bytes": 2382220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 194, - "Title": "By The Way", - "ArtistId": 127, - "Tracks": [ - { - "TrackId": 2375, - "Name": "By The Way", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 218017, - "Bytes": 7197430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2376, - "Name": "Universally Speaking", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 259213, - "Bytes": 8501904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2377, - "Name": "This Is The Place", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 257906, - "Bytes": 8469765, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2378, - "Name": "Dosed", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 312058, - "Bytes": 10235611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2379, - "Name": "Don't Forget Me", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 277995, - "Bytes": 9107071, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2380, - "Name": "The Zephyr Song", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 232960, - "Bytes": 7690312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2381, - "Name": "Can't Stop", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 269400, - "Bytes": 8872479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2382, - "Name": "I Could Die For You", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 193906, - "Bytes": 6333311, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2383, - "Name": "Midnight", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 295810, - "Bytes": 9702450, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2384, - "Name": "Throw Away Your Television", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 224574, - "Bytes": 7483526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2385, - "Name": "Cabron", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 218592, - "Bytes": 7458864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2386, - "Name": "Tear", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 317413, - "Bytes": 10395500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2387, - "Name": "On Mercury", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 208509, - "Bytes": 6834762, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2388, - "Name": "Minor Thing", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 217835, - "Bytes": 7148115, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2389, - "Name": "Warm Tape", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 256653, - "Bytes": 8358200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2390, - "Name": "Venice Queen", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 369110, - "Bytes": 12280381, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 195, - "Title": "Californication", - "ArtistId": 127, - "Tracks": [ - { - "TrackId": 2391, - "Name": "Around The World", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 238837, - "Bytes": 7859167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2392, - "Name": "Parallel Universe", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 270654, - "Bytes": 8958519, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2393, - "Name": "Scar Tissue", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 217469, - "Bytes": 7153744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2394, - "Name": "Otherside", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 255973, - "Bytes": 8357989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2395, - "Name": "Get On Top", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 198164, - "Bytes": 6587883, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2396, - "Name": "Californication", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 321671, - "Bytes": 10568999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2397, - "Name": "Easily", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 231418, - "Bytes": 7504534, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2398, - "Name": "Porcelain", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 163787, - "Bytes": 5278793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2399, - "Name": "Emit Remmus", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 240300, - "Bytes": 7901717, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2400, - "Name": "I Like Dirt", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 157727, - "Bytes": 5225917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2401, - "Name": "This Velvet Glove", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 225280, - "Bytes": 7480537, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2402, - "Name": "Savior", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 292493, - "Bytes": 9551885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2403, - "Name": "Purple Stain", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 253440, - "Bytes": 8359971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2404, - "Name": "Right On Time", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 112613, - "Bytes": 3722219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2405, - "Name": "Road Trippin'", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 205635, - "Bytes": 6685831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 128, - "Name": "Rush", - "Albums": [ - { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)", - "ArtistId": 128, - "Tracks": [ - { - "TrackId": 2406, - "Name": "The Spirit Of Radio", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 299154, - "Bytes": 9862012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2407, - "Name": "The Trees", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 285126, - "Bytes": 9345473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2408, - "Name": "Something For Nothing", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 240770, - "Bytes": 7898395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2409, - "Name": "Freewill", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 324362, - "Bytes": 10694110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2410, - "Name": "Xanadu", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 667428, - "Bytes": 21753168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2411, - "Name": "Bastille Day", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 280528, - "Bytes": 9264769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2412, - "Name": "By-Tor And The Snow Dog", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 519888, - "Bytes": 17076397, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2413, - "Name": "Anthem", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 264515, - "Bytes": 8693343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2414, - "Name": "Closer To The Heart", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 175412, - "Bytes": 5767005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2415, - "Name": "2112 Overture", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 272718, - "Bytes": 8898066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2416, - "Name": "The Temples Of Syrinx", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 133459, - "Bytes": 4360163, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2417, - "Name": "La Villa Strangiato", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 577488, - "Bytes": 19137855, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2418, - "Name": "Fly By Night", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 202318, - "Bytes": 6683061, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2419, - "Name": "Finding My Way", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 305528, - "Bytes": 9985701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 129, - "Name": "Simply Red", - "Albums": null - }, - { - "ArtistId": 130, - "Name": "Skank", - "Albums": [ - { - "AlbumId": 199, - "Title": "Maquinarama", - "ArtistId": 130, - "Tracks": [ - { - "TrackId": 2449, - "Name": "�gua E Fogo", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Edgard Scandurra/Samuel Rosa", - "Milliseconds": 278987, - "Bytes": 9272272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2450, - "Name": "Tr�s Lados", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 233665, - "Bytes": 7699609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2451, - "Name": "Ela Desapareceu", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 250122, - "Bytes": 8289200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2452, - "Name": "Balada Do Amor Inabal�vel", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Fausto Fawcett/Samuel Rosa", - "Milliseconds": 240613, - "Bytes": 8025816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2453, - "Name": "Can��o Noturna", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Lelo Zanettik", - "Milliseconds": 238628, - "Bytes": 7874774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2454, - "Name": "Mu�ulmano", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Le�o, Rodrigo F./Samuel Rosa", - "Milliseconds": 249600, - "Bytes": 8270613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2455, - "Name": "Maquinarama", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 245629, - "Bytes": 8213710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2456, - "Name": "Rebeli�o", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 298527, - "Bytes": 9817847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2457, - "Name": "A �ltima Guerra", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Le�o, Rodrigo F./L� Borges/Samuel Rosa", - "Milliseconds": 314723, - "Bytes": 10480391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2458, - "Name": "Fica", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 272169, - "Bytes": 8980972, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2459, - "Name": "Ali", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nando Reis/Samuel Rosa", - "Milliseconds": 306390, - "Bytes": 10110351, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2460, - "Name": "Preto Dami�o", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 264568, - "Bytes": 8697658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 200, - "Title": "O Samba Pocon�", - "ArtistId": 130, - "Tracks": [ - { - "TrackId": 2461, - "Name": "� Uma Partida De Futebol", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 1071, - "Bytes": 38747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2462, - "Name": "Eu Disse A Ela", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 254223, - "Bytes": 8479463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2463, - "Name": "Z� Trindade", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 247954, - "Bytes": 8331310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2464, - "Name": "Garota Nacional", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 317492, - "Bytes": 10511239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2465, - "Name": "T�o Seu", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 243748, - "Bytes": 8133126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2466, - "Name": "Sem Terra", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 279353, - "Bytes": 9196411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2467, - "Name": "Os Exilados", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 245551, - "Bytes": 8222095, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2468, - "Name": "Um Dia Qualquer", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 292414, - "Bytes": 9805570, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2469, - "Name": "Los Pretos", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 239229, - "Bytes": 8025667, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2470, - "Name": "Sul Da Am�rica", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 254928, - "Bytes": 8484871, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2471, - "Name": "Pocon�", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 318406, - "Bytes": 10771610, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 131, - "Name": "Smashing Pumpkins", - "Albums": [ - { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities", - "ArtistId": 131, - "Tracks": [ - { - "TrackId": 2472, - "Name": "Lucky 13", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 189387, - "Bytes": 6200617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2473, - "Name": "Aeroplane Flies High", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 473391, - "Bytes": 15408329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2474, - "Name": "Because You Are", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 226403, - "Bytes": 7405137, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2475, - "Name": "Slow Dawn", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 192339, - "Bytes": 6269057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2476, - "Name": "Believe", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "James Iha", - "Milliseconds": 192940, - "Bytes": 6320652, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2477, - "Name": "My Mistake", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 240901, - "Bytes": 7843477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2478, - "Name": "Marquis In Spades", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 192731, - "Bytes": 6304789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2479, - "Name": "Here's To The Atom Bomb", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 266893, - "Bytes": 8763140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2480, - "Name": "Sparrow", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 176822, - "Bytes": 5696989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2481, - "Name": "Waiting", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 228336, - "Bytes": 7627641, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 391, - "CustomerId": 3, - "InvoiceDate": "2013-09-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 0.99, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2482, - "Name": "Saturnine", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 229877, - "Bytes": 7523502, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 392, - "CustomerId": 4, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2483, - "Name": "Rock On", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "David Cook", - "Milliseconds": 366471, - "Bytes": 12133825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 392, - "CustomerId": 4, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2484, - "Name": "Set The Ray To Jerry", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 249364, - "Bytes": 8215184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2485, - "Name": "Winterlong", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 299389, - "Bytes": 9670616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 393, - "CustomerId": 6, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2486, - "Name": "Soot \u0026 Stars", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 399986, - "Bytes": 12866557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2487, - "Name": "Blissed \u0026 Gone", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 286302, - "Bytes": 9305998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 393, - "CustomerId": 6, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits", - "ArtistId": 131, - "Tracks": [ - { - "TrackId": 2488, - "Name": "Siva", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 261172, - "Bytes": 8576622, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2489, - "Name": "Rhinocerous", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 353462, - "Bytes": 11526684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2490, - "Name": "Drown", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 270497, - "Bytes": 8883496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2491, - "Name": "Cherub Rock", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 299389, - "Bytes": 9786739, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2492, - "Name": "Today", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 202213, - "Bytes": 6596933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2493, - "Name": "Disarm", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 198556, - "Bytes": 6508249, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2494, - "Name": "Landslide", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stevie Nicks", - "Milliseconds": 190275, - "Bytes": 6187754, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2495, - "Name": "Bullet With Butterfly Wings", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 257306, - "Bytes": 8431747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2496, - "Name": "1979", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 263653, - "Bytes": 8728470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2497, - "Name": "Zero", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 161123, - "Bytes": 5267176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2498, - "Name": "Tonight, Tonight", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 255686, - "Bytes": 8351543, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2499, - "Name": "Eye", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 294530, - "Bytes": 9784201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2500, - "Name": "Ava Adore", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 261433, - "Bytes": 8590412, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2501, - "Name": "Perfect", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 203023, - "Bytes": 6734636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2502, - "Name": "The Everlasting Gaze", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 242155, - "Bytes": 7844404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2503, - "Name": "Stand Inside Your Love", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 253753, - "Bytes": 8270113, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2504, - "Name": "Real Love", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 250697, - "Bytes": 8025896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 286, - "CustomerId": 23, - "InvoiceDate": "2012-06-12T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 0.99, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2505, - "Name": "[Untitled]", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 231784, - "Bytes": 7689713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 287, - "CustomerId": 24, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 132, - "Name": "Soundgarden", - "Albums": [ - { - "AlbumId": 203, - "Title": "A-Sides", - "ArtistId": 132, - "Tracks": [ - { - "TrackId": 2506, - "Name": "Nothing To Say", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 238027, - "Bytes": 7744833, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 287, - "CustomerId": 24, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2507, - "Name": "Flower", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 208822, - "Bytes": 6830732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2508, - "Name": "Loud Love", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 297456, - "Bytes": 9660953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 288, - "CustomerId": 26, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2509, - "Name": "Hands All Over", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 362475, - "Bytes": 11893108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2510, - "Name": "Get On The Snake", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 225123, - "Bytes": 7313744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 288, - "CustomerId": 26, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2511, - "Name": "Jesus Christ Pose", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron", - "Milliseconds": 352966, - "Bytes": 11739886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2512, - "Name": "Outshined", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 312476, - "Bytes": 10274629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2513, - "Name": "Rusty Cage", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 267728, - "Bytes": 8779485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2514, - "Name": "Spoonman", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 248476, - "Bytes": 8289906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2515, - "Name": "The Day I Tried To Live", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 321175, - "Bytes": 10507137, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2516, - "Name": "Black Hole Sun", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Soundgarden", - "Milliseconds": 320365, - "Bytes": 10425229, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2517, - "Name": "Fell On Black Days", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 282331, - "Bytes": 9256082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2518, - "Name": "Pretty Noose", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 253570, - "Bytes": 8317931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2519, - "Name": "Burden In My Hand", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 292153, - "Bytes": 9659911, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2520, - "Name": "Blow Up The Outside World", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 347898, - "Bytes": 11379527, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2521, - "Name": "Ty Cobb", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ben Shepherd/Chris Cornell", - "Milliseconds": 188786, - "Bytes": 6233136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2522, - "Name": "Bleed Together", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 232202, - "Bytes": 7597074, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 133, - "Name": "Stevie Ray Vaughan \u0026 Double Trouble", - "Albums": [ - { - "AlbumId": 205, - "Title": "In Step", - "ArtistId": 133, - "Tracks": [ - { - "TrackId": 2532, - "Name": "The House Is Rockin'", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 144352, - "Bytes": 4706253, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2533, - "Name": "Crossfire", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon", - "Milliseconds": 251219, - "Bytes": 8238033, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 183, - "CustomerId": 46, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2534, - "Name": "Tightrope", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 281155, - "Bytes": 9254906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2535, - "Name": "Let Me Love You Baby", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 164127, - "Bytes": 5378455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2536, - "Name": "Leave My Girl Alone", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "B. Guy", - "Milliseconds": 256365, - "Bytes": 8438021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2537, - "Name": "Travis Walk", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Stevie Ray Vaughan", - "Milliseconds": 140826, - "Bytes": 4650979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2538, - "Name": "Wall Of Denial", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 336927, - "Bytes": 11085915, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2539, - "Name": "Scratch-N-Sniff", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 163422, - "Bytes": 5353627, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2540, - "Name": "Love Me Darlin'", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "C. Burnett", - "Milliseconds": 201586, - "Bytes": 6650869, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2541, - "Name": "Riviera Paradise", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Stevie Ray Vaughan", - "Milliseconds": 528692, - "Bytes": 17232776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 134, - "Name": "Stone Temple Pilots", - "Albums": [ - { - "AlbumId": 206, - "Title": "Core", - "ArtistId": 134, - "Tracks": [ - { - "TrackId": 2542, - "Name": "Dead And Bloated", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 310386, - "Bytes": 10170433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2543, - "Name": "Sex Type Thing", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/Kretz/Weiland", - "Milliseconds": 218723, - "Bytes": 7102064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2544, - "Name": "Wicked Garden", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/R. DeLeo/Weiland", - "Milliseconds": 245368, - "Bytes": 7989505, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2545, - "Name": "No Memory", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dean Deleo", - "Milliseconds": 80613, - "Bytes": 2660859, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2546, - "Name": "Sin", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 364800, - "Bytes": 12018823, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2547, - "Name": "Naked Sunday", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/Kretz/R. DeLeo/Weiland", - "Milliseconds": 229720, - "Bytes": 7444201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2548, - "Name": "Creep", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 333191, - "Bytes": 10894988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2549, - "Name": "Piece Of Pie", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 324623, - "Bytes": 10605231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2550, - "Name": "Plush", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 314017, - "Bytes": 10229848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 76, - "CustomerId": 4, - "InvoiceDate": "2009-11-25T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 0.99, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2551, - "Name": "Wet My Bed", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 96914, - "Bytes": 3198627, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 77, - "CustomerId": 5, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2552, - "Name": "Crackerman", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kretz/R. DeLeo/Weiland", - "Milliseconds": 194403, - "Bytes": 6317361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 77, - "CustomerId": 5, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2553, - "Name": "Where The River Goes", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/Kretz/Weiland", - "Milliseconds": 505991, - "Bytes": 16468904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 135, - "Name": "System Of A Down", - "Albums": [ - { - "AlbumId": 207, - "Title": "Mezmerize", - "ArtistId": 135, - "Tracks": [ - { - "TrackId": 2554, - "Name": "Soldier Side - Intro", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 63764, - "Bytes": 2056079, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 78, - "CustomerId": 7, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2555, - "Name": "B.Y.O.B.", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 255555, - "Bytes": 8407935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2556, - "Name": "Revenga", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 228127, - "Bytes": 7503805, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 78, - "CustomerId": 7, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2557, - "Name": "Cigaro", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 131787, - "Bytes": 4321705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2558, - "Name": "Radio/Video", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 249312, - "Bytes": 8224917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2559, - "Name": "This Cocaine Makes Me Feel Like I'm On This Song", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 128339, - "Bytes": 4185193, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2560, - "Name": "Violent Pornography", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 211435, - "Bytes": 6985960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2561, - "Name": "Question!", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 200698, - "Bytes": 6616398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2562, - "Name": "Sad Statue", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 205897, - "Bytes": 6733449, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2563, - "Name": "Old School Hollywood", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 176953, - "Bytes": 5830258, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2564, - "Name": "Lost in Hollywood", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 320783, - "Bytes": 10535158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 136, - "Name": "Terry Bozzio, Tony Levin \u0026 Steve Stevens", - "Albums": [ - { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome", - "ArtistId": 136, - "Tracks": [ - { - "TrackId": 2565, - "Name": "The Sun Road", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 880640, - "Bytes": 29008407, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2566, - "Name": "Dark Corners", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 513541, - "Bytes": 16839223, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2567, - "Name": "Duende", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 447582, - "Bytes": 14956771, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2568, - "Name": "Black Light Syndrome", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 526471, - "Bytes": 17300835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2569, - "Name": "Falling in Circles", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 549093, - "Bytes": 18263248, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2570, - "Name": "Book of Hours", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 583366, - "Bytes": 19464726, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2571, - "Name": "Chaos-Control", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 529841, - "Bytes": 17455568, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 137, - "Name": "The Black Crowes", - "Albums": [ - { - "AlbumId": 209, - "Title": "Live [Disc 1]", - "ArtistId": 137, - "Tracks": [ - { - "TrackId": 2572, - "Name": "Midnight From The Inside Out", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 286981, - "Bytes": 9442157, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2573, - "Name": "Sting Me", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 268094, - "Bytes": 8813561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2574, - "Name": "Thick \u0026 Thin", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 222720, - "Bytes": 7284377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2575, - "Name": "Greasy Grass River", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 218749, - "Bytes": 7157045, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2576, - "Name": "Sometimes Salvation", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 389146, - "Bytes": 12749424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2577, - "Name": "Cursed Diamonds", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 368300, - "Bytes": 12047978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2578, - "Name": "Miracle To Me", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 372636, - "Bytes": 12222116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2579, - "Name": "Wiser Time", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 459990, - "Bytes": 15161907, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2580, - "Name": "Girl From A Pawnshop", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 404688, - "Bytes": 13250848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2581, - "Name": "Cosmic Fiend", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 308401, - "Bytes": 10115556, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 210, - "Title": "Live [Disc 2]", - "ArtistId": 137, - "Tracks": [ - { - "TrackId": 2582, - "Name": "Black Moon Creeping", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 359314, - "Bytes": 11740886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2583, - "Name": "High Head Blues", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 371879, - "Bytes": 12227998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2584, - "Name": "Title Song", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 505521, - "Bytes": 16501316, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2585, - "Name": "She Talks To Angels", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 361978, - "Bytes": 11837342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2586, - "Name": "Twice As Hard", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 275565, - "Bytes": 9008067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2587, - "Name": "Lickin'", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 314409, - "Bytes": 10331216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2588, - "Name": "Soul Singing", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 233639, - "Bytes": 7672489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2589, - "Name": "Hard To Handle", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "A.Isbell/A.Jones/O.Redding", - "Milliseconds": 206994, - "Bytes": 6786304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2590, - "Name": "Remedy", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 337084, - "Bytes": 11049098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 138, - "Name": "The Clash", - "Albums": [ - { - "AlbumId": 211, - "Title": "The Singles", - "ArtistId": 138, - "Tracks": [ - { - "TrackId": 2591, - "Name": "White Riot", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 118726, - "Bytes": 3922819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2592, - "Name": "Remote Control", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 180297, - "Bytes": 5949647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2593, - "Name": "Complete Control", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 192653, - "Bytes": 6272081, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2594, - "Name": "Clash City Rockers", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 227500, - "Bytes": 7555054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2595, - "Name": "(White Man) In Hammersmith Palais", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 240640, - "Bytes": 7883532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2596, - "Name": "Tommy Gun", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 195526, - "Bytes": 6399872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2597, - "Name": "English Civil War", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mick Jones/Traditional arr. Joe Strummer", - "Milliseconds": 156708, - "Bytes": 5111226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2598, - "Name": "I Fought The Law", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Sonny Curtis", - "Milliseconds": 159764, - "Bytes": 5245258, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2599, - "Name": "London Calling", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 199706, - "Bytes": 6569007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2600, - "Name": "Train In Vain", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 189675, - "Bytes": 6329877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2601, - "Name": "Bankrobber", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 272431, - "Bytes": 9067323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2602, - "Name": "The Call Up", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 324336, - "Bytes": 10746937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2603, - "Name": "Hitsville UK", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 261433, - "Bytes": 8606887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2604, - "Name": "The Magnificent Seven", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 268486, - "Bytes": 8889821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2605, - "Name": "This Is Radio Clash", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 249756, - "Bytes": 8366573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2606, - "Name": "Know Your Rights", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 217678, - "Bytes": 7195726, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2607, - "Name": "Rock The Casbah", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 222145, - "Bytes": 7361500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2608, - "Name": "Should I Stay Or Should I Go", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 187219, - "Bytes": 6188688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 139, - "Name": "The Cult", - "Albums": [ - { - "AlbumId": 212, - "Title": "Beyond Good And Evil", - "ArtistId": 139, - "Tracks": [ - { - "TrackId": 2609, - "Name": "War (The Process)", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 252630, - "Bytes": 8254842, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2610, - "Name": "The Saint", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 216215, - "Bytes": 7061584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2611, - "Name": "Rise", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 219088, - "Bytes": 7106195, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2612, - "Name": "Take The Power", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 235755, - "Bytes": 7650012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2613, - "Name": "Breathe", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones", - "Milliseconds": 299781, - "Bytes": 9742361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2614, - "Name": "Nico", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 289488, - "Bytes": 9412323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2615, - "Name": "American Gothic", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 236878, - "Bytes": 7739840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2616, - "Name": "Ashes And Ghosts", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Milliseconds": 300591, - "Bytes": 9787692, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2617, - "Name": "Shape The Sky", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 209789, - "Bytes": 6885647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2618, - "Name": "Speed Of Light", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Milliseconds": 262817, - "Bytes": 8563352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2619, - "Name": "True Believers", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 308009, - "Bytes": 9981359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2620, - "Name": "My Bridges Burn", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 231862, - "Bytes": 7571370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers \u0026 Sinners) [UK]", - "ArtistId": 139, - "Tracks": [ - { - "TrackId": 2621, - "Name": "She Sells Sanctuary", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 253727, - "Bytes": 8368634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2622, - "Name": "Fire Woman", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 312790, - "Bytes": 10196995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2623, - "Name": "Lil' Evil", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 165825, - "Bytes": 5419655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2624, - "Name": "Spirit Walker", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 230060, - "Bytes": 7555897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2625, - "Name": "The Witch", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258768, - "Bytes": 8725403, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2626, - "Name": "Revolution", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 256026, - "Bytes": 8371254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2627, - "Name": "Wild Hearted Son", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 266893, - "Bytes": 8670550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2628, - "Name": "Love Removal Machine", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 257619, - "Bytes": 8412167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2629, - "Name": "Rain", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 236669, - "Bytes": 7788461, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2630, - "Name": "Edie (Ciao Baby)", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 241632, - "Bytes": 7846177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2631, - "Name": "Heart Of Soul", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 274207, - "Bytes": 8967257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2632, - "Name": "Love", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 326739, - "Bytes": 10729824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2633, - "Name": "Wild Flower", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 215536, - "Bytes": 7084321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2634, - "Name": "Go West", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 238158, - "Bytes": 7777749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2635, - "Name": "Resurrection Joe", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 255451, - "Bytes": 8532840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2636, - "Name": "Sun King", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 368431, - "Bytes": 12010865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2637, - "Name": "Sweet Soul Sister", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 212009, - "Bytes": 6889883, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2638, - "Name": "Earth Mofo", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 282200, - "Bytes": 9204581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 140, - "Name": "The Doors", - "Albums": [ - { - "AlbumId": 214, - "Title": "The Doors", - "ArtistId": 140, - "Tracks": [ - { - "TrackId": 2639, - "Name": "Break on Through", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 149342, - "Bytes": 4943144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2640, - "Name": "Soul Kitchen", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 215066, - "Bytes": 7040865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2641, - "Name": "The Crystal Ship", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 154853, - "Bytes": 5052658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2642, - "Name": "Twentienth Century Fox", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 153913, - "Bytes": 5069211, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2643, - "Name": "Alabama Song", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Weill-Brecht", - "Milliseconds": 200097, - "Bytes": 6563411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2644, - "Name": "Light My Fire", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 428329, - "Bytes": 13963351, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2645, - "Name": "Back Door Man", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon, C. Burnett", - "Milliseconds": 214360, - "Bytes": 7035636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2646, - "Name": "I Looked At You", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 142080, - "Bytes": 4663988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2647, - "Name": "End Of The Night", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 172695, - "Bytes": 5589732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2648, - "Name": "Take It As It Comes", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 137168, - "Bytes": 4512656, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2649, - "Name": "The End", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 701831, - "Bytes": 22927336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 141, - "Name": "The Police", - "Albums": [ - { - "AlbumId": 215, - "Title": "The Police Greatest Hits", - "ArtistId": 141, - "Tracks": [ - { - "TrackId": 2650, - "Name": "Roxanne", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 192992, - "Bytes": 6330159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2651, - "Name": "Can't Stand Losing You", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 181159, - "Bytes": 5971983, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2652, - "Name": "Message in a Bottle", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 291474, - "Bytes": 9647829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2653, - "Name": "Walking on the Moon", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 302080, - "Bytes": 10019861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2654, - "Name": "Don't Stand so Close to Me", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 241031, - "Bytes": 7956658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2655, - "Name": "De Do Do Do, De Da Da Da", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 247196, - "Bytes": 8227075, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2656, - "Name": "Every Little Thing She Does is Magic", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 261120, - "Bytes": 8646853, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2657, - "Name": "Invisible Sun", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 225593, - "Bytes": 7304320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2658, - "Name": "Spirit's in the Material World", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 181133, - "Bytes": 5986622, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2659, - "Name": "Every Breath You Take", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 254615, - "Bytes": 8364520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2660, - "Name": "King Of Pain", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 300512, - "Bytes": 9880303, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2661, - "Name": "Wrapped Around Your Finger", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 315454, - "Bytes": 10361490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2662, - "Name": "Don't Stand So Close to Me '86", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 293590, - "Bytes": 9636683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2663, - "Name": "Message in a Bottle (new classic rock mix)", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 290951, - "Bytes": 9640349, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 142, - "Name": "The Rolling Stones", - "Albums": [ - { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)", - "ArtistId": 142, - "Tracks": [ - { - "TrackId": 2664, - "Name": "Time Is On My Side", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Ragavoy", - "Milliseconds": 179983, - "Bytes": 5855836, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2665, - "Name": "Heart Of Stone", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 164493, - "Bytes": 5329538, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2666, - "Name": "Play With Fire", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nanker Phelge", - "Milliseconds": 132022, - "Bytes": 4265297, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2667, - "Name": "Satisfaction", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 226612, - "Bytes": 7398766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2668, - "Name": "As Tears Go By", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards/Oldham", - "Milliseconds": 164284, - "Bytes": 5357350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2669, - "Name": "Get Off Of My Cloud", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 176013, - "Bytes": 5719514, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2670, - "Name": "Mother's Little Helper", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 167549, - "Bytes": 5422434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2671, - "Name": "19th Nervous Breakdown", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 237923, - "Bytes": 7742984, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2672, - "Name": "Paint It Black", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 226063, - "Bytes": 7442888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2673, - "Name": "Under My Thumb", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 221387, - "Bytes": 7371799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2674, - "Name": "Ruby Tuesday", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 197459, - "Bytes": 6433467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2675, - "Name": "Let's Spend The Night Together", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 217495, - "Bytes": 7137048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 217, - "Title": "No Security", - "ArtistId": 142, - "Tracks": [ - { - "TrackId": 2676, - "Name": "Intro", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 49737, - "Bytes": 1618591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2677, - "Name": "You Got Me Rocking", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 205766, - "Bytes": 6734385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2678, - "Name": "Gimmie Shelters", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 382119, - "Bytes": 12528764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2679, - "Name": "Flip The Switch", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 252421, - "Bytes": 8336591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2680, - "Name": "Memory Motel", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 365844, - "Bytes": 11982431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2681, - "Name": "Corinna", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jesse Ed Davis III/Taj Mahal", - "Milliseconds": 257488, - "Bytes": 8449471, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2682, - "Name": "Saint Of Me", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 325694, - "Bytes": 10725160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2683, - "Name": "Wainting On A Friend", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 302497, - "Bytes": 9978046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2684, - "Name": "Sister Morphine", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Faithfull/Jagger/Richards", - "Milliseconds": 376215, - "Bytes": 12345289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2685, - "Name": "Live With Me", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 234893, - "Bytes": 7709006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2686, - "Name": "Respectable", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 215693, - "Bytes": 7099669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2687, - "Name": "Thief In The Night", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "De Beauport/Jagger/Richards", - "Milliseconds": 337266, - "Bytes": 10952756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2688, - "Name": "The Last Time", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 287294, - "Bytes": 9498758, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2689, - "Name": "Out Of Control", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 479242, - "Bytes": 15749289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 218, - "Title": "Voodoo Lounge", - "ArtistId": 142, - "Tracks": [ - { - "TrackId": 2690, - "Name": "Love Is Strong", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 230896, - "Bytes": 7639774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2691, - "Name": "You Got Me Rocking", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 215928, - "Bytes": 7162159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2692, - "Name": "Sparks Will Fly", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 196466, - "Bytes": 6492847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2693, - "Name": "The Worst", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 144613, - "Bytes": 4750094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2694, - "Name": "New Faces", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 172146, - "Bytes": 5689122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2695, - "Name": "Moon Is Up", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 222119, - "Bytes": 7366316, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2696, - "Name": "Out Of Tears", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 327418, - "Bytes": 10677236, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2697, - "Name": "I Go Wild", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 264019, - "Bytes": 8630833, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2698, - "Name": "Brand New Car", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 256052, - "Bytes": 8459344, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2699, - "Name": "Sweethearts Together", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 285492, - "Bytes": 9550459, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2700, - "Name": "Suck On The Jugular", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 268225, - "Bytes": 8920566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2701, - "Name": "Blinded By Rainbows", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 273946, - "Bytes": 8971343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2702, - "Name": "Baby Break It Down", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 249417, - "Bytes": 8197309, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2703, - "Name": "Thru And Thru", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 375092, - "Bytes": 12175406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2704, - "Name": "Mean Disposition", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 249155, - "Bytes": 8273602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 143, - "Name": "The Tea Party", - "Albums": [ - { - "AlbumId": 219, - "Title": "Tangents", - "ArtistId": 143, - "Tracks": [ - { - "TrackId": 2705, - "Name": "Walking Wounded", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 277968, - "Bytes": 9184345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2706, - "Name": "Temptation", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 205087, - "Bytes": 6711943, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2707, - "Name": "The Messenger", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Daniel Lanois", - "Milliseconds": 212062, - "Bytes": 6975437, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2708, - "Name": "Psychopomp", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 315559, - "Bytes": 10295199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2709, - "Name": "Sister Awake", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 343875, - "Bytes": 11299407, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2710, - "Name": "The Bazaar", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 222458, - "Bytes": 7245691, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2711, - "Name": "Save Me (Remix)", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 396303, - "Bytes": 13053839, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2712, - "Name": "Fire In The Head", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 306337, - "Bytes": 10005675, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2713, - "Name": "Release", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 244114, - "Bytes": 8014606, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 398, - "CustomerId": 41, - "InvoiceDate": "2013-10-21T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 0.99, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2714, - "Name": "Heaven Coming Down", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 241867, - "Bytes": 7846459, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 399, - "CustomerId": 42, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 1.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2715, - "Name": "The River (Remix)", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 343170, - "Bytes": 11193268, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 399, - "CustomerId": 42, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 1.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2716, - "Name": "Babylon", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 169795, - "Bytes": 5568808, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2717, - "Name": "Waiting On A Sign", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 261903, - "Bytes": 8558590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 400, - "CustomerId": 44, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2718, - "Name": "Life Line", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 277786, - "Bytes": 9082773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2719, - "Name": "Paint It Black", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Keith Richards/Mick Jagger", - "Milliseconds": 214752, - "Bytes": 7101572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 400, - "CustomerId": 44, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 220, - "Title": "Transmission", - "ArtistId": 143, - "Tracks": [ - { - "TrackId": 2720, - "Name": "Temptation", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 205244, - "Bytes": 6719465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2721, - "Name": "Army Ants", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 215405, - "Bytes": 7075838, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2722, - "Name": "Psychopomp", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 317231, - "Bytes": 10351778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2723, - "Name": "Gyroscope", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 177711, - "Bytes": 5810323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2724, - "Name": "Alarum", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 298187, - "Bytes": 9712545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2725, - "Name": "Release", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 266292, - "Bytes": 8725824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2726, - "Name": "Transmission", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 317257, - "Bytes": 10351152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2727, - "Name": "Babylon", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 292466, - "Bytes": 9601786, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2728, - "Name": "Pulse", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 250253, - "Bytes": 8183872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2729, - "Name": "Emerald", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 289750, - "Bytes": 9543789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2730, - "Name": "Aftermath", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 343745, - "Bytes": 11085607, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 144, - "Name": "The Who", - "Albums": [ - { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who", - "ArtistId": 144, - "Tracks": [ - { - "TrackId": 2731, - "Name": "I Can't Explain", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 125152, - "Bytes": 4082896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2732, - "Name": "Anyway, Anyhow, Anywhere", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend, Roger Daltrey", - "Milliseconds": 161253, - "Bytes": 5234173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2733, - "Name": "My Generation", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 197825, - "Bytes": 6446634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2734, - "Name": "Substitute", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 228022, - "Bytes": 7409995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2735, - "Name": "I'm A Boy", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 157126, - "Bytes": 5120605, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2736, - "Name": "Boris The Spider", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle", - "Milliseconds": 149472, - "Bytes": 4835202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 293, - "CustomerId": 2, - "InvoiceDate": "2012-07-13T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 0.99, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2737, - "Name": "Happy Jack", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 132310, - "Bytes": 4353063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 294, - "CustomerId": 3, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 1.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2738, - "Name": "Pictures Of Lily", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 164414, - "Bytes": 5329751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 294, - "CustomerId": 3, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 1.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2739, - "Name": "I Can See For Miles", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 262791, - "Bytes": 8604989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2740, - "Name": "Magic Bus", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 197224, - "Bytes": 6452700, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 295, - "CustomerId": 5, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2741, - "Name": "Pinball Wizard", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 181890, - "Bytes": 6055580, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2742, - "Name": "The Seeker", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 204643, - "Bytes": 6736866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 295, - "CustomerId": 5, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2743, - "Name": "Baba O'Riley", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 309472, - "Bytes": 10141660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2744, - "Name": "Won't Get Fooled Again (Full Length Version)", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 513750, - "Bytes": 16855521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2745, - "Name": "Let's See Action", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 243513, - "Bytes": 8078418, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2746, - "Name": "5.15", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 289619, - "Bytes": 9458549, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2747, - "Name": "Join Together", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 262556, - "Bytes": 8602485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2748, - "Name": "Squeeze Box", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 161280, - "Bytes": 5256508, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2749, - "Name": "Who Are You (Single Edit Version)", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 299232, - "Bytes": 9900469, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2750, - "Name": "You Better You Bet", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 338520, - "Bytes": 11160877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 145, - "Name": "Tim Maia", - "Albums": [ - { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)", - "ArtistId": 145, - "Tracks": [ - { - "TrackId": 2751, - "Name": "Primavera", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Genival Cassiano/Silvio Rochael", - "Milliseconds": 126615, - "Bytes": 4152604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2752, - "Name": "Chocolate", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 194690, - "Bytes": 6411587, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2753, - "Name": "Azul Da Cor Do Mar", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 197955, - "Bytes": 6475007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2754, - "Name": "O Descobridor Dos Sete Mares", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilson Mendon�a/Michel", - "Milliseconds": 262974, - "Bytes": 8749583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2755, - "Name": "At� Que Enfim Encontrei Voc�", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 105064, - "Bytes": 3477751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2756, - "Name": "Coron� Antonio Bento", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Do Vale, Jo�o/Luiz Wanderley", - "Milliseconds": 131317, - "Bytes": 4340326, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2757, - "Name": "New Love", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 237897, - "Bytes": 7786824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2758, - "Name": "N�o Vou Ficar", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 172068, - "Bytes": 5642919, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2759, - "Name": "M�sica No Ar", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 158511, - "Bytes": 5184891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 188, - "CustomerId": 22, - "InvoiceDate": "2011-04-05T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 0.99, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2760, - "Name": "Salve Nossa Senhora", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlos Imperial/Edardo Ara�jo", - "Milliseconds": 115461, - "Bytes": 3827629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 189, - "CustomerId": 23, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2761, - "Name": "Voc� Fugiu", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Genival Cassiano", - "Milliseconds": 238367, - "Bytes": 7971147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 189, - "CustomerId": 23, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2762, - "Name": "Cristina N� 2", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlos Imperial/Tim Maia", - "Milliseconds": 90148, - "Bytes": 2978589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2763, - "Name": "Compadre", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 171389, - "Bytes": 5631446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 190, - "CustomerId": 25, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2764, - "Name": "Over Again", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 200489, - "Bytes": 6612634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2765, - "Name": "R�u Confesso", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 217391, - "Bytes": 7189874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 190, - "CustomerId": 25, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)", - "ArtistId": 145, - "Tracks": [ - { - "TrackId": 2766, - "Name": "O Que Me Importa", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 153155, - "Bytes": 4977852, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2767, - "Name": "Gostava Tanto De Voc�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 253805, - "Bytes": 8380077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2768, - "Name": "Voc�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242599, - "Bytes": 7911702, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2769, - "Name": "N�o Quero Dinheiro", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 152607, - "Bytes": 5031797, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2770, - "Name": "Eu Amo Voc�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242782, - "Bytes": 7914628, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2771, - "Name": "A Festa Do Santo Reis", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 159791, - "Bytes": 5204995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2772, - "Name": "I Don't Know What To Do With Myself", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 221387, - "Bytes": 7251478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2773, - "Name": "Padre C�cero", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 139598, - "Bytes": 4581685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2774, - "Name": "Nosso Adeus", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206471, - "Bytes": 6793270, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2775, - "Name": "Can�rio Do Reino", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 139337, - "Bytes": 4552858, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2776, - "Name": "Preciso Ser Amado", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174001, - "Bytes": 5618895, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2777, - "Name": "Balan�o", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 209737, - "Bytes": 6890327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2778, - "Name": "Preciso Aprender A Ser S�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 162220, - "Bytes": 5213894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2779, - "Name": "Esta � A Can��o", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 184450, - "Bytes": 6069933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2780, - "Name": "Formigueiro", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252943, - "Bytes": 8455132, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 146, - "Name": "Tit�s", - "Albums": [ - { - "AlbumId": 224, - "Title": "Ac�stico", - "ArtistId": 146, - "Tracks": [ - { - "TrackId": 2781, - "Name": "Comida", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 322612, - "Bytes": 10786578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2782, - "Name": "Go Back", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 230504, - "Bytes": 7668899, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 83, - "CustomerId": 42, - "InvoiceDate": "2009-12-26T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 0.99, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2783, - "Name": "Pr� Dizer Adeus", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 222484, - "Bytes": 7382048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 84, - "CustomerId": 43, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2784, - "Name": "Fam�lia", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 218331, - "Bytes": 7267458, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 84, - "CustomerId": 43, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2785, - "Name": "Os Cegos Do Castelo", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 296829, - "Bytes": 9868187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2786, - "Name": "O Pulso", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 199131, - "Bytes": 6566998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 85, - "CustomerId": 45, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2787, - "Name": "Marvin", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 264359, - "Bytes": 8741444, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2788, - "Name": "Nem 5 Minutos Guardados", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 245995, - "Bytes": 8143797, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 85, - "CustomerId": 45, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2789, - "Name": "Flores", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 215510, - "Bytes": 7148017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2790, - "Name": "Palavras", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 158458, - "Bytes": 5285715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2791, - "Name": "Heredit�rio", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 151693, - "Bytes": 5020547, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2792, - "Name": "A Melhor Forma", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 191503, - "Bytes": 6349938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2793, - "Name": "Cabe�a Dinossauro", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 37120, - "Bytes": 1220930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2794, - "Name": "32 Dentes", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 184946, - "Bytes": 6157904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2795, - "Name": "Bichos Escrotos (Vinheta)", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 104986, - "Bytes": 3503755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2796, - "Name": "N�o Vou Lutar", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 189988, - "Bytes": 6308613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2797, - "Name": "Homem Primata (Vinheta)", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 34168, - "Bytes": 1124909, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2798, - "Name": "Homem Primata", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 195500, - "Bytes": 6486470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2799, - "Name": "Pol�cia (Vinheta)", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 56111, - "Bytes": 1824213, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2800, - "Name": "Querem Meu Sangue", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 212401, - "Bytes": 7069773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2801, - "Name": "Divers�o", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 285936, - "Bytes": 9531268, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2802, - "Name": "Televis�o", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 293668, - "Bytes": 9776548, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 225, - "Title": "Volume Dois", - "ArtistId": 146, - "Tracks": [ - { - "TrackId": 2803, - "Name": "Sonifera Ilha", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Branco Mello/Carlos Barmack/Ciro Pessoa/Marcelo Fromer/Toni Belloto", - "Milliseconds": 170684, - "Bytes": 5678290, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2804, - "Name": "Lugar Nenhum", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Antunes/Charles Gavin/Marcelo Fromer/S�rgio Britto/Toni Bellotto", - "Milliseconds": 195840, - "Bytes": 6472780, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2805, - "Name": "Sua Impossivel Chance", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Nando Reis", - "Milliseconds": 246622, - "Bytes": 8073248, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2806, - "Name": "Desordem", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Charles Gavin/Marcelo Fromer/S�rgio Britto", - "Milliseconds": 213289, - "Bytes": 7067340, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2807, - "Name": "N�o Vou Me Adaptar", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Antunes", - "Milliseconds": 221831, - "Bytes": 7304656, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2808, - "Name": "Domingo", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "S�rgio Britto/Toni Bellotto", - "Milliseconds": 208613, - "Bytes": 6883180, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2809, - "Name": "Amanh� N�o Se Sabe", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "S�rgio Britto", - "Milliseconds": 189440, - "Bytes": 6243967, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2810, - "Name": "Caras Como Eu", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Toni Bellotto", - "Milliseconds": 183092, - "Bytes": 5999048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2811, - "Name": "Senhora E Senhor", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Anutnes/Marcelo Fromer/Paulo Miklos", - "Milliseconds": 203702, - "Bytes": 6733733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2812, - "Name": "Era Uma Vez", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Anutnes/Branco Mello/Marcelo Fromer/Sergio Brotto/Toni Bellotto", - "Milliseconds": 224261, - "Bytes": 7453156, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2813, - "Name": "Mis�ria", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Antunes/Britto, SergioMiklos, Paulo", - "Milliseconds": 262191, - "Bytes": 8727645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2814, - "Name": "Insens�vel", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "S�rgio Britto", - "Milliseconds": 207830, - "Bytes": 6893664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2815, - "Name": "Eu E Ela", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Nando Reis", - "Milliseconds": 276035, - "Bytes": 9138846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2816, - "Name": "Toda Cor", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Ciro Pressoa/Marcelo Fromer", - "Milliseconds": 209084, - "Bytes": 6939176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2817, - "Name": "� Preciso Saber Viver", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Erasmo Carlos/Roberto Carlos", - "Milliseconds": 251115, - "Bytes": 8271418, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2818, - "Name": "Senhor Delegado/Eu N�o Aguento", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Antonio Lopes", - "Milliseconds": 156656, - "Bytes": 5277983, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 147, - "Name": "Battlestar Galactica", - "Albums": [ - { - "AlbumId": 226, - "Title": "Battlestar Galactica: The Story So Far", - "ArtistId": 147, - "Tracks": [ - { - "TrackId": 2819, - "Name": "Battlestar Galactica: The Story So Far", - "AlbumId": 226, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2622250, - "Bytes": 490750393, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3", - "ArtistId": 147, - "Tracks": [ - { - "TrackId": 2820, - "Name": "Occupation / Precipice", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 5286953, - "Bytes": 1054423946, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2821, - "Name": "Exodus, Pt. 1", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2621708, - "Bytes": 475079441, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2822, - "Name": "Exodus, Pt. 2", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618000, - "Bytes": 466820021, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2823, - "Name": "Collaborators", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2626626, - "Bytes": 483484911, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2824, - "Name": "Torn", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2631291, - "Bytes": 495262585, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2825, - "Name": "A Measure of Salvation", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2563938, - "Bytes": 489715554, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2826, - "Name": "Hero", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2713755, - "Bytes": 506896959, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2827, - "Name": "Unfinished Business", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2622038, - "Bytes": 528499160, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2828, - "Name": "The Passage", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2623875, - "Bytes": 490375760, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2829, - "Name": "The Eye of Jupiter", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2618750, - "Bytes": 517909587, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2830, - "Name": "Rapture", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2624541, - "Bytes": 508406153, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2831, - "Name": "Taking a Break from All Your Worries", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2624207, - "Bytes": 492700163, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2832, - "Name": "The Woman King", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2626376, - "Bytes": 552893447, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2833, - "Name": "A Day In the Life", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2620245, - "Bytes": 462818231, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2834, - "Name": "Dirty Hands", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2627961, - "Bytes": 537648614, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2835, - "Name": "Maelstrom", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2622372, - "Bytes": 514154275, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2836, - "Name": "The Son Also Rises", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2621830, - "Bytes": 499258498, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2837, - "Name": "Crossroads, Pt. 1", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2622622, - "Bytes": 486233524, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2838, - "Name": "Crossroads, Pt. 2", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2869953, - "Bytes": 497335706, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 148, - "Name": "Heroes", - "Albums": [ - { - "AlbumId": 228, - "Title": "Heroes, Season 1", - "ArtistId": 148, - "Tracks": [ - { - "TrackId": 2839, - "Name": "Genesis", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2611986, - "Bytes": 515671080, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2840, - "Name": "Don't Look Back", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2571154, - "Bytes": 493628775, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2841, - "Name": "One Giant Leap", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2607649, - "Bytes": 521616246, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2842, - "Name": "Collision", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2605480, - "Bytes": 526182322, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2843, - "Name": "Hiros", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2533575, - "Bytes": 488835454, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2844, - "Name": "Better Halves", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2573031, - "Bytes": 549353481, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2845, - "Name": "Nothing to Hide", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2605647, - "Bytes": 510058181, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2846, - "Name": "Seven Minutes to Midnight", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2613988, - "Bytes": 515590682, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2847, - "Name": "Homecoming", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601351, - "Bytes": 516015339, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2848, - "Name": "Six Months Ago", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2602852, - "Bytes": 505133869, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2849, - "Name": "Fallout", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2594761, - "Bytes": 501145440, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2850, - "Name": "The Fix", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2600266, - "Bytes": 507026323, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2851, - "Name": "Distractions", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2590382, - "Bytes": 537111289, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2852, - "Name": "Run!", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2602602, - "Bytes": 542936677, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2853, - "Name": "Unexpected", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2598139, - "Bytes": 511777758, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2854, - "Name": "Company Man", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601226, - "Bytes": 493168135, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2855, - "Name": "Company Man", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601101, - "Bytes": 503786316, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2856, - "Name": "Parasite", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2602727, - "Bytes": 487461520, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3166, - "Name": ".07%", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2585794, - "Bytes": 541715199, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3167, - "Name": "Five Years Gone", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2587712, - "Bytes": 530551890, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3168, - "Name": "The Hard Part", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601017, - "Bytes": 475996611, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3171, - "Name": "Landslide", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2600725, - "Bytes": 518677861, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3223, - "Name": "How to Stop an Exploding Man", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2687103, - "Bytes": 487881159, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 202, - "CustomerId": 39, - "InvoiceDate": "2011-06-06T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.99, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 149, - "Name": "Lost", - "Albums": [ - { - "AlbumId": 229, - "Title": "Lost, Season 3", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 2857, - "Name": "A Tale of Two Cities", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2636970, - "Bytes": 513691652, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2862, - "Name": "The Glass Ballerina", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637458, - "Bytes": 535729216, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2863, - "Name": "Further Instructions", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2563980, - "Bytes": 502041019, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2866, - "Name": "Every Man for Himself", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637387, - "Bytes": 513803546, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2870, - "Name": "The Cost of Living", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2637500, - "Bytes": 505647192, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2874, - "Name": "I Do", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2627791, - "Bytes": 504676825, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2875, - "Name": "Not In Portland", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637303, - "Bytes": 499061234, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2876, - "Name": "Not In Portland", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637345, - "Bytes": 510546847, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2881, - "Name": "Flashes Before Your Eyes", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2636636, - "Bytes": 537760755, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2882, - "Name": "Lost Survival Guide", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2632590, - "Bytes": 486675063, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2886, - "Name": "Stranger In a Strange Land", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2636428, - "Bytes": 505056021, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2890, - "Name": "Tricia Tanaka Is Dead", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2635010, - "Bytes": 548197162, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2891, - "Name": "Enter 77", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2629796, - "Bytes": 517521422, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2895, - "Name": "Par Avion", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2629879, - "Bytes": 517079642, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2899, - "Name": "The Man from Tallahassee", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637637, - "Bytes": 550893556, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2900, - "Name": "Expos�", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2593760, - "Bytes": 511338017, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2903, - "Name": "Left Behind", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2635343, - "Bytes": 538491964, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2908, - "Name": "One of Us", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2638096, - "Bytes": 502387276, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2909, - "Name": "Catch-22", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2561394, - "Bytes": 489773399, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2912, - "Name": "D.O.C.", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2616032, - "Bytes": 518556641, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3165, - "Name": "The Brig", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2617325, - "Bytes": 488919543, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3169, - "Name": "The Man Behind the Curtain", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2615990, - "Bytes": 493951081, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3170, - "Name": "Greatest Hits", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2617117, - "Bytes": 522102916, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3224, - "Name": "Through a Looking Glass", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 5088838, - "Bytes": 1059546140, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 203, - "CustomerId": 40, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 2.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3251, - "Name": "Through the Looking Glass, Pt. 2", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2617117, - "Bytes": 550943353, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3252, - "Name": "Through the Looking Glass, Pt. 1", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610860, - "Bytes": 493211809, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 99, - "CustomerId": 3, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 230, - "Title": "Lost, Season 1", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 2858, - "Name": "Lost (Pilot, Part 1) [Premiere]", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2548875, - "Bytes": 217124866, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2861, - "Name": "Lost (Pilot, Part 2)", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2436583, - "Bytes": 204995876, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2865, - "Name": "Tabula Rasa", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2627105, - "Bytes": 210526410, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2868, - "Name": "Walkabout", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2587370, - "Bytes": 207748198, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2871, - "Name": "White Rabbit", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2571965, - "Bytes": 201654606, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2873, - "Name": "House of the Rising Sun", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2590032, - "Bytes": 210379525, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2877, - "Name": "The Moth", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2631327, - "Bytes": 228896396, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2880, - "Name": "Confidence Man", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2615244, - "Bytes": 223756475, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2883, - "Name": "Solitary", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2612894, - "Bytes": 207045178, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2885, - "Name": "Raised By Another", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2590459, - "Bytes": 223623810, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2888, - "Name": "All the Best Cowboys Have Daddy Issues", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2555492, - "Bytes": 211743651, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2893, - "Name": "Whatever the Case May Be", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2616410, - "Bytes": 183867185, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2894, - "Name": "Hearts and Minds", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2619462, - "Bytes": 207607466, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2898, - "Name": "Special", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618530, - "Bytes": 219961967, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2901, - "Name": "Homecoming", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2515882, - "Bytes": 210675221, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2904, - "Name": "Outlaws", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2619887, - "Bytes": 206500939, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2906, - "Name": "...In Translation", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2604575, - "Bytes": 215441983, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2911, - "Name": "Numbers", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2609772, - "Bytes": 214709143, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2913, - "Name": "Deus Ex Machina", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2582009, - "Bytes": 214996732, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2915, - "Name": "Do No Harm", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618487, - "Bytes": 212039309, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2917, - "Name": "The Greater Good", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2617784, - "Bytes": 214130273, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2919, - "Name": "Born to Run", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618619, - "Bytes": 213772057, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2921, - "Name": "Exodus (Part 1)", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2620747, - "Bytes": 213107744, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2923, - "Name": "Exodus (Part 2) [Season Finale]", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2605557, - "Bytes": 208667059, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2925, - "Name": "Exodus (Part 3) [Season Finale]", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2619869, - "Bytes": 197937785, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 231, - "Title": "Lost, Season 2", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 2859, - "Name": "Man of Science, Man of Faith (Premiere)", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2612250, - "Bytes": 543342028, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2860, - "Name": "Adrift", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2564958, - "Bytes": 502663995, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2864, - "Name": "Orientation", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2609083, - "Bytes": 500600434, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2867, - "Name": "Everybody Hates Hugo", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2609192, - "Bytes": 498163145, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2869, - "Name": "...And Found", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2563833, - "Bytes": 500330548, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2872, - "Name": "Abandoned", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2587041, - "Bytes": 537348711, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2878, - "Name": "The Other 48 Days", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2610625, - "Bytes": 535256753, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2879, - "Name": "Collision", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2564916, - "Bytes": 475656544, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2884, - "Name": "What Kate Did", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2610250, - "Bytes": 484583988, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2887, - "Name": "The 23rd Psalm", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2610416, - "Bytes": 487401604, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2889, - "Name": "The Hunting Party", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611333, - "Bytes": 520350364, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2892, - "Name": "Fire + Water", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2600333, - "Bytes": 488458695, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2896, - "Name": "The Long Con", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2679583, - "Bytes": 518376636, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2897, - "Name": "One of Them", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2698791, - "Bytes": 542332389, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2902, - "Name": "Maternity Leave", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2780416, - "Bytes": 555244214, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2905, - "Name": "The Whole Truth", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610125, - "Bytes": 495487014, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2907, - "Name": "Lockdown", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610250, - "Bytes": 543886056, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2910, - "Name": "Dave", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2825166, - "Bytes": 574325829, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2914, - "Name": "S.O.S.", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2639541, - "Bytes": 517979269, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2916, - "Name": "Two for the Road", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610958, - "Bytes": 502404558, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2918, - "Name": "\"?\"", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2782333, - "Bytes": 528227089, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2920, - "Name": "Three Minutes", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2763666, - "Bytes": 531556853, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2922, - "Name": "Live Together, Die Alone, Pt. 1", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2478041, - "Bytes": 457364940, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2924, - "Name": "Live Together, Die Alone, Pt. 2", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2656531, - "Bytes": 503619265, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 261, - "Title": "LOST, Season 4", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 3337, - "Name": "Past, Present, and Future", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2492867, - "Bytes": 490796184, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3338, - "Name": "The Beginning of the End", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611903, - "Bytes": 526865050, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3339, - "Name": "LOST Season 4 Trailer", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 112712, - "Bytes": 20831818, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3340, - "Name": "LOST In 8:15", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 497163, - "Bytes": 98460675, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3341, - "Name": "Confirmed Dead", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611986, - "Bytes": 512168460, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3342, - "Name": "The Economist", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2609025, - "Bytes": 516934914, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3343, - "Name": "Eggtown", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2608817, - "Bytes": 501061240, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3344, - "Name": "The Constant", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611569, - "Bytes": 520209363, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3345, - "Name": "The Other Woman", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2605021, - "Bytes": 513246663, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3346, - "Name": "Ji Yeon", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2588797, - "Bytes": 506458858, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3347, - "Name": "Meet Kevin Johnson", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2612028, - "Bytes": 504132981, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3348, - "Name": "The Shape of Things to Come", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2591299, - "Bytes": 502284266, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3360, - "Name": "Something Nice Back Home", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2612779, - "Bytes": 484711353, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3361, - "Name": "Cabin Fever", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2612028, - "Bytes": 477733942, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3362, - "Name": "There's No Place Like Home, Pt. 1", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2609526, - "Bytes": 522919189, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3363, - "Name": "There's No Place Like Home, Pt. 2", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2497956, - "Bytes": 523748920, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3364, - "Name": "There's No Place Like Home, Pt. 3", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2582957, - "Bytes": 486161766, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 150, - "Name": "U2", - "Albums": [ - { - "AlbumId": 232, - "Title": "Achtung Baby", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2926, - "Name": "Zoo Station", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 276349, - "Bytes": 9056902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2927, - "Name": "Even Better Than The Real Thing", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 221361, - "Bytes": 7279392, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2928, - "Name": "One", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 276192, - "Bytes": 9158892, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2929, - "Name": "Until The End Of The World", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 278700, - "Bytes": 9132485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2930, - "Name": "Who's Gonna Ride Your Wild Horses", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 316551, - "Bytes": 10304369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2931, - "Name": "So Cruel", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 349492, - "Bytes": 11527614, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2932, - "Name": "The Fly", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 268982, - "Bytes": 8825399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2933, - "Name": "Mysterious Ways", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 243826, - "Bytes": 8062057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2934, - "Name": "Tryin' To Throw Your Arms Around The World", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 232463, - "Bytes": 7612124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2935, - "Name": "Ultraviolet (Light My Way)", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 330788, - "Bytes": 10754631, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2936, - "Name": "Acrobat", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 270288, - "Bytes": 8824723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2937, - "Name": "Love Is Blindness", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 263497, - "Bytes": 8531766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2938, - "Name": "Beautiful Day", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 248163, - "Bytes": 8056723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2939, - "Name": "Stuck In A Moment You Can't Get Out Of", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 272378, - "Bytes": 8997366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2940, - "Name": "Elevation", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 227552, - "Bytes": 7479414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2941, - "Name": "Walk On", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 296280, - "Bytes": 9800861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2942, - "Name": "Kite", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 266893, - "Bytes": 8765761, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2943, - "Name": "In A Little While", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 219271, - "Bytes": 7189647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2944, - "Name": "Wild Honey", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 226768, - "Bytes": 7466069, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2945, - "Name": "Peace On Earth", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 288496, - "Bytes": 9476171, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 405, - "CustomerId": 20, - "InvoiceDate": "2013-11-21T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 0.99, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2946, - "Name": "When I Look At The World", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 257776, - "Bytes": 8500491, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 406, - "CustomerId": 21, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2947, - "Name": "New York", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 330370, - "Bytes": 10862323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 406, - "CustomerId": 21, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2948, - "Name": "Grace", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 330657, - "Bytes": 10877148, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 234, - "Title": "B-Sides 1980-1990", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2949, - "Name": "The Three Sunrises", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 234788, - "Bytes": 7717990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 407, - "CustomerId": 23, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2950, - "Name": "Spanish Eyes", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 196702, - "Bytes": 6392710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2951, - "Name": "Sweetest Thing", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 185103, - "Bytes": 6154896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 407, - "CustomerId": 23, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2952, - "Name": "Love Comes Tumbling", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 282671, - "Bytes": 9328802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2953, - "Name": "Bass Trap", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 213289, - "Bytes": 6834107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2954, - "Name": "Dancing Barefoot", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ivan Kral/Patti Smith", - "Milliseconds": 287895, - "Bytes": 9488294, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2955, - "Name": "Everlasting Love", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Buzz Cason/Mac Gayden", - "Milliseconds": 202631, - "Bytes": 6708932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2956, - "Name": "Unchained Melody", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex North/Hy Zaret", - "Milliseconds": 294164, - "Bytes": 9597568, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2957, - "Name": "Walk To The Water", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 289253, - "Bytes": 9523336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2958, - "Name": "Luminous Times (Hold On To Love)", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Brian Eno/U2", - "Milliseconds": 277760, - "Bytes": 9015513, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2959, - "Name": "Hallelujah Here She Comes", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 242364, - "Bytes": 8027028, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2960, - "Name": "Silver And Gold", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono", - "Milliseconds": 279875, - "Bytes": 9199746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2961, - "Name": "Endless Deep", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 179879, - "Bytes": 5899070, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2962, - "Name": "A Room At The Heartbreak Hotel", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 274546, - "Bytes": 9015416, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2963, - "Name": "Trash, Trampoline And The Party Girl", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 153965, - "Bytes": 5083523, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2964, - "Name": "Vertigo", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 194612, - "Bytes": 6329502, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2965, - "Name": "Miracle Drug", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 239124, - "Bytes": 7760916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2966, - "Name": "Sometimes You Can't Make It On Your Own", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 308976, - "Bytes": 10112863, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2967, - "Name": "Love And Peace Or Else", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 290690, - "Bytes": 9476723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2968, - "Name": "City Of Blinding Lights", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 347951, - "Bytes": 11432026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 300, - "CustomerId": 40, - "InvoiceDate": "2012-08-13T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 0.99, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2969, - "Name": "All Because Of You", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 219141, - "Bytes": 7198014, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 301, - "CustomerId": 41, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2970, - "Name": "A Man And A Woman", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 270132, - "Bytes": 8938285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 301, - "CustomerId": 41, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2971, - "Name": "Crumbs From Your Table", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 303568, - "Bytes": 9892349, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2972, - "Name": "One Step Closer", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 231680, - "Bytes": 7512912, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 302, - "CustomerId": 43, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2973, - "Name": "Original Of The Species", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 281443, - "Bytes": 9230041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2974, - "Name": "Yahweh", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 262034, - "Bytes": 8636998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 302, - "CustomerId": 43, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 236, - "Title": "Pop", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2975, - "Name": "Discotheque", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 319582, - "Bytes": 10442206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2976, - "Name": "Do You Feel Loved", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 307539, - "Bytes": 10122694, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2977, - "Name": "Mofo", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 349178, - "Bytes": 11583042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2978, - "Name": "If God Will Send His Angels", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 322533, - "Bytes": 10563329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2979, - "Name": "Staring At The Sun", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 276924, - "Bytes": 9082838, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2980, - "Name": "Last Night On Earth", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 285753, - "Bytes": 9401017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2981, - "Name": "Gone", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 266866, - "Bytes": 8746301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2982, - "Name": "Miami", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 293041, - "Bytes": 9741603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2983, - "Name": "The Playboy Mansion", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 280555, - "Bytes": 9274144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2984, - "Name": "If You Wear That Velvet Dress", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 315167, - "Bytes": 10227333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2985, - "Name": "Please", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 302602, - "Bytes": 9909484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2986, - "Name": "Wake Up Dead Man", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 292832, - "Bytes": 9515903, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 237, - "Title": "Rattle And Hum", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2987, - "Name": "Helter Skelter", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lennon, John/McCartney, Paul", - "Milliseconds": 187350, - "Bytes": 6097636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2988, - "Name": "Van Diemen's Land", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 186044, - "Bytes": 5990280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2989, - "Name": "Desire", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 179226, - "Bytes": 5874535, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2990, - "Name": "Hawkmoon 269", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 382458, - "Bytes": 12494987, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2991, - "Name": "All Along The Watchtower", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dylan, Bob", - "Milliseconds": 264568, - "Bytes": 8623572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 195, - "CustomerId": 1, - "InvoiceDate": "2011-05-06T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 0.99, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2992, - "Name": "I Still Haven't Found What I'm Looking for", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 353567, - "Bytes": 11542247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 196, - "CustomerId": 2, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2993, - "Name": "Freedom For My People", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mabins, Macie/Magee, Sterling/Robinson, Bobby", - "Milliseconds": 38164, - "Bytes": 1249764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 196, - "CustomerId": 2, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2994, - "Name": "Silver And Gold", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 349831, - "Bytes": 11450194, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2995, - "Name": "Pride (In The Name Of Love)", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 267807, - "Bytes": 8806361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 197, - "CustomerId": 4, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2996, - "Name": "Angel Of Harlem", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 229276, - "Bytes": 7498022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2997, - "Name": "Love Rescue Me", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge", - "Milliseconds": 384522, - "Bytes": 12508716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 197, - "CustomerId": 4, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2998, - "Name": "When Love Comes To Town", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 255869, - "Bytes": 8340954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2999, - "Name": "Heartland", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 303360, - "Bytes": 9867748, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3000, - "Name": "God Part II", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 195604, - "Bytes": 6497570, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3001, - "Name": "The Star Spangled Banner", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Hendrix, Jimi", - "Milliseconds": 43232, - "Bytes": 1385810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3002, - "Name": "Bullet The Blue Sky", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 337005, - "Bytes": 10993607, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3003, - "Name": "All I Want Is You", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 390243, - "Bytes": 12729820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 238, - "Title": "The Best Of 1980-1990", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3004, - "Name": "Pride (In The Name Of Love)", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 230243, - "Bytes": 7549085, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3005, - "Name": "New Year's Day", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 258925, - "Bytes": 8491818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3006, - "Name": "With Or Without You", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 299023, - "Bytes": 9765188, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3007, - "Name": "I Still Haven't Found What I'm Looking For", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 280764, - "Bytes": 9306737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3008, - "Name": "Sunday Bloody Sunday", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 282174, - "Bytes": 9269668, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3009, - "Name": "Bad", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 351817, - "Bytes": 11628058, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3010, - "Name": "Where The Streets Have No Name", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 276218, - "Bytes": 9042305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3011, - "Name": "I Will Follow", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 218253, - "Bytes": 7184825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3012, - "Name": "The Unforgettable Fire", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 295183, - "Bytes": 9684664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3013, - "Name": "Sweetest Thing", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2 \u0026 Daragh O'Toole", - "Milliseconds": 183066, - "Bytes": 6071385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3014, - "Name": "Desire", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 179853, - "Bytes": 5893206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 90, - "CustomerId": 21, - "InvoiceDate": "2010-01-26T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 0.99, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3015, - "Name": "When Love Comes To Town", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 258194, - "Bytes": 8479525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 91, - "CustomerId": 22, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 1.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3016, - "Name": "Angel Of Harlem", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 230217, - "Bytes": 7527339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 91, - "CustomerId": 22, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 1.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3017, - "Name": "All I Want Is You", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2 \u0026 Van Dyke Parks", - "Milliseconds": 591986, - "Bytes": 19202252, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 239, - "Title": "War", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3018, - "Name": "Sunday Bloody Sunday", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 278204, - "Bytes": 9140849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 92, - "CustomerId": 24, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3019, - "Name": "Seconds", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 191582, - "Bytes": 6352121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3020, - "Name": "New Year's Day", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 336274, - "Bytes": 11054732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 92, - "CustomerId": 24, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3021, - "Name": "Like A Song...", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 287294, - "Bytes": 9365379, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3022, - "Name": "Drowning Man", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 254458, - "Bytes": 8457066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3023, - "Name": "The Refugee", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 221283, - "Bytes": 7374043, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3024, - "Name": "Two Hearts Beat As One", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 243487, - "Bytes": 7998323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3025, - "Name": "Red Light", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 225854, - "Bytes": 7453704, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3026, - "Name": "Surrender", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 333505, - "Bytes": 11221406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3027, - "Name": "\"40\"", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 157962, - "Bytes": 5251767, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 240, - "Title": "Zooropa", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3028, - "Name": "Zooropa", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 392359, - "Bytes": 12807979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3029, - "Name": "Babyface", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 241998, - "Bytes": 7942573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3030, - "Name": "Numb", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Edge, The", - "Milliseconds": 260284, - "Bytes": 8577861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3031, - "Name": "Lemon", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 418324, - "Bytes": 13988878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3032, - "Name": "Stay (Faraway, So Close!)", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 298475, - "Bytes": 9785480, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3033, - "Name": "Daddy's Gonna Pay For Your Crashed Car", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 320287, - "Bytes": 10609581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3034, - "Name": "Some Days Are Better Than Others", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 257436, - "Bytes": 8417690, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3035, - "Name": "The First Time", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 225697, - "Bytes": 7247651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3036, - "Name": "Dirty Day", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono \u0026 Edge, The", - "Milliseconds": 324440, - "Bytes": 10652877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3037, - "Name": "The Wanderer", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 283951, - "Bytes": 9258717, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3253, - "Name": "Instant Karma", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 193188, - "Bytes": 3150090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3254, - "Name": "#9 Dream", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 278312, - "Bytes": 4506425, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3255, - "Name": "Mother", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 287740, - "Bytes": 4656660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3256, - "Name": "Give Peace a Chance", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 274644, - "Bytes": 4448025, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3257, - "Name": "Cold Turkey", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 281424, - "Bytes": 4556003, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3258, - "Name": "Whatever Gets You Thru the Night", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 215084, - "Bytes": 3499018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3259, - "Name": "I'm Losing You", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 240719, - "Bytes": 3907467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3260, - "Name": "Gimme Some Truth", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 232778, - "Bytes": 3780807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3261, - "Name": "Oh, My Love", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 159473, - "Bytes": 2612788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3262, - "Name": "Imagine", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 192329, - "Bytes": 3136271, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3263, - "Name": "Nobody Told Me", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 210348, - "Bytes": 3423395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3264, - "Name": "Jealous Guy", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 239094, - "Bytes": 3881620, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3265, - "Name": "Working Class Hero", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 265449, - "Bytes": 4301430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3266, - "Name": "Power to the People", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 213018, - "Bytes": 3466029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3267, - "Name": "Imagine", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 219078, - "Bytes": 3562542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3268, - "Name": "Beautiful Boy", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 227995, - "Bytes": 3704642, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3269, - "Name": "Isolation", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 156059, - "Bytes": 2558399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3270, - "Name": "Watching the Wheels", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 198645, - "Bytes": 3237063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3271, - "Name": "Grow Old With Me", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 149093, - "Bytes": 2447453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3272, - "Name": "Gimme Some Truth", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 187546, - "Bytes": 3060083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3273, - "Name": "[Just Like] Starting Over", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 215549, - "Bytes": 3506308, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3274, - "Name": "God", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 260410, - "Bytes": 4221135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3275, - "Name": "Real Love", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 236911, - "Bytes": 3846658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 151, - "Name": "UB40", - "Albums": [ - { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]", - "ArtistId": 151, - "Tracks": [ - { - "TrackId": 3038, - "Name": "Breakfast In Bed", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 196179, - "Bytes": 6513325, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3039, - "Name": "Where Did I Go Wrong", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 226742, - "Bytes": 7485054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3040, - "Name": "I Would Do For You", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 334524, - "Bytes": 11193602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3041, - "Name": "Homely Girl", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 203833, - "Bytes": 6790788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3042, - "Name": "Here I Am (Come And Take Me)", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 242102, - "Bytes": 8106249, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3043, - "Name": "Kingston Town", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 226951, - "Bytes": 7638236, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3044, - "Name": "Wear You To The Ball", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 213342, - "Bytes": 7159527, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3045, - "Name": "(I Can't Help) Falling In Love With You", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 207568, - "Bytes": 6905623, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3046, - "Name": "Higher Ground", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 260179, - "Bytes": 8665244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3047, - "Name": "Bring Me Your Cup", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 341498, - "Bytes": 11346114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3048, - "Name": "C'est La Vie", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 270053, - "Bytes": 9031661, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3049, - "Name": "Reggae Music", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 245106, - "Bytes": 8203931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3050, - "Name": "Superstition", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 319582, - "Bytes": 10728099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3051, - "Name": "Until My Dying Day", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 235807, - "Bytes": 7886195, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 152, - "Name": "Van Halen", - "Albums": [ - { - "AlbumId": 242, - "Title": "Diver Down", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3052, - "Name": "Where Have All The Good Times Gone?", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ray Davies", - "Milliseconds": 186723, - "Bytes": 6063937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3053, - "Name": "Hang 'Em High", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 210259, - "Bytes": 6872314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3054, - "Name": "Cathedral", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 82860, - "Bytes": 2650998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3055, - "Name": "Secrets", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 206968, - "Bytes": 6803255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3056, - "Name": "Intruder", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 100153, - "Bytes": 3282142, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3057, - "Name": "(Oh) Pretty Woman", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Dees/Roy Orbison", - "Milliseconds": 174680, - "Bytes": 5665828, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3058, - "Name": "Dancing In The Street", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ivy Jo Hunter/Marvin Gaye/William Stevenson", - "Milliseconds": 225985, - "Bytes": 7461499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3059, - "Name": "Little Guitars (Intro)", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 42240, - "Bytes": 1439530, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3060, - "Name": "Little Guitars", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 228806, - "Bytes": 7453043, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3061, - "Name": "Big Bad Bill (Is Sweet William Now)", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jack Yellen/Milton Ager", - "Milliseconds": 165146, - "Bytes": 5489609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3062, - "Name": "The Full Bug", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 201116, - "Bytes": 6551013, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3063, - "Name": "Happy Trails", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dale Evans", - "Milliseconds": 65488, - "Bytes": 2111141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3064, - "Name": "Eruption", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 102164, - "Bytes": 3272891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3065, - "Name": "Ain't Talkin' 'bout Love", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 228336, - "Bytes": 7569506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3066, - "Name": "Runnin' With The Devil", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 215902, - "Bytes": 7061901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3067, - "Name": "Dance the Night Away", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 185965, - "Bytes": 6087433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3068, - "Name": "And the Cradle Will Rock...", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 213968, - "Bytes": 7011402, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3069, - "Name": "Unchained", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 208953, - "Bytes": 6777078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3070, - "Name": "Jump", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Milliseconds": 241711, - "Bytes": 7911090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3071, - "Name": "Panama", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Milliseconds": 211853, - "Bytes": 6921784, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3072, - "Name": "Why Can't This Be Love", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 227761, - "Bytes": 7457655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3073, - "Name": "Dreams", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 291813, - "Bytes": 9504119, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3074, - "Name": "When It's Love", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 338991, - "Bytes": 11049966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3075, - "Name": "Poundcake", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 321854, - "Bytes": 10366978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3076, - "Name": "Right Now", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 321828, - "Bytes": 10503352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3077, - "Name": "Can't Stop Loving You", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 248502, - "Bytes": 8107896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3078, - "Name": "Humans Being", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 308950, - "Bytes": 10014683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3079, - "Name": "Can't Get This Stuff No More", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Milliseconds": 315376, - "Bytes": 10355753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3080, - "Name": "Me Wise Magic", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Milliseconds": 366053, - "Bytes": 12013467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 244, - "Title": "Van Halen", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3081, - "Name": "Runnin' With The Devil", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 216032, - "Bytes": 7056863, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3082, - "Name": "Eruption", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 102556, - "Bytes": 3286026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3083, - "Name": "You Really Got Me", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ray Davies", - "Milliseconds": 158589, - "Bytes": 5194092, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3084, - "Name": "Ain't Talkin' 'Bout Love", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 230060, - "Bytes": 7617284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3085, - "Name": "I'm The One", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 226507, - "Bytes": 7373922, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3086, - "Name": "Jamie's Cryin'", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 210546, - "Bytes": 6946086, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3087, - "Name": "Atomic Punk", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 182073, - "Bytes": 5908861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3088, - "Name": "Feel Your Love Tonight", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 222850, - "Bytes": 7293608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3089, - "Name": "Little Dreamer", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 203258, - "Bytes": 6648122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3090, - "Name": "Ice Cream Man", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Brim", - "Milliseconds": 200306, - "Bytes": 6573145, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3091, - "Name": "On Fire", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 180636, - "Bytes": 5879235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 245, - "Title": "Van Halen III", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3092, - "Name": "Neworld", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 105639, - "Bytes": 3495897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3093, - "Name": "Without You", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 390295, - "Bytes": 12619558, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3094, - "Name": "One I Want", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 330788, - "Bytes": 10743970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3095, - "Name": "From Afar", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 324414, - "Bytes": 10524554, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3096, - "Name": "Dirty Water Dog", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 327392, - "Bytes": 10709202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3097, - "Name": "Once", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 462837, - "Bytes": 15378082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3098, - "Name": "Fire in the Hole", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 331728, - "Bytes": 10846768, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3099, - "Name": "Josephina", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 342491, - "Bytes": 11161521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3100, - "Name": "Year to the Day", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 514612, - "Bytes": 16621333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3101, - "Name": "Primary", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 86987, - "Bytes": 2812555, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3102, - "Name": "Ballot or the Bullet", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 342282, - "Bytes": 11212955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3103, - "Name": "How Many Say I", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 363937, - "Bytes": 11716855, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 153, - "Name": "Velvet Revolver", - "Albums": [ - { - "AlbumId": 246, - "Title": "Contraband", - "ArtistId": 153, - "Tracks": [ - { - "TrackId": 3104, - "Name": "Sucker Train Blues", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 267859, - "Bytes": 8738780, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3105, - "Name": "Do It For The Kids", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 235911, - "Bytes": 7693331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3106, - "Name": "Big Machine", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 265613, - "Bytes": 8673442, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3107, - "Name": "Illegal I Song", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 257750, - "Bytes": 8483347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3108, - "Name": "Spectacle", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 221701, - "Bytes": 7252876, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3109, - "Name": "Fall To Pieces", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 270889, - "Bytes": 8823096, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3110, - "Name": "Headspace", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 223033, - "Bytes": 7237986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3111, - "Name": "Superhuman", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 255921, - "Bytes": 8365328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3112, - "Name": "Set Me Free", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 247954, - "Bytes": 8053388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3113, - "Name": "You Got No Right", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 335412, - "Bytes": 10991094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3114, - "Name": "Slither", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 248398, - "Bytes": 8118785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3115, - "Name": "Dirty Little Thing", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 237844, - "Bytes": 7732982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3116, - "Name": "Loving The Alien", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 348786, - "Bytes": 11412762, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 154, - "Name": "Whitesnake", - "Albums": null - }, - { - "ArtistId": 155, - "Name": "Zeca Pagodinho", - "Albums": [ - { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]", - "ArtistId": 155, - "Tracks": [ - { - "TrackId": 3146, - "Name": "Faixa Amarela", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Gogo/Jess� Pai/Luiz Carlos/Zeca Pagodinho", - "Milliseconds": 240692, - "Bytes": 8082036, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3147, - "Name": "Posso At� Me Apaixonar", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dudu Nobre", - "Milliseconds": 200698, - "Bytes": 6735526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3148, - "Name": "N�o Sou Mais Disso", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Arag�o/Zeca Pagodinho", - "Milliseconds": 225985, - "Bytes": 7613817, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3149, - "Name": "Vivo Isolado Do Mundo", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alcides Dias Lopes", - "Milliseconds": 180035, - "Bytes": 6073995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3150, - "Name": "Cora��o Em Desalinho", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Mauro Diniz/Ratino Sigem", - "Milliseconds": 185208, - "Bytes": 6225948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3151, - "Name": "Seu Balanc�", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Paulinho Rezende/Toninho Geraes", - "Milliseconds": 219454, - "Bytes": 7311219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3152, - "Name": "Vai Adiar", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alcino Corr�a/Monarco", - "Milliseconds": 270393, - "Bytes": 9134882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3153, - "Name": "Rugas", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Augusto Garcez/Nelson Cavaquinho", - "Milliseconds": 140930, - "Bytes": 4703182, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3154, - "Name": "Feirinha da Pavuna/Luz do Repente/Baga�o da Laranja", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Arlindo Cruz/Franco/Marquinhos PQD/Negro, Jovelina P�rolo/Zeca Pagodinho", - "Milliseconds": 107206, - "Bytes": 3593684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3155, - "Name": "Sem Essa de Malandro Agulha", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Aldir Blanc/Jayme Vignoli", - "Milliseconds": 158484, - "Bytes": 5332668, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3156, - "Name": "Chico N�o Vai na Corimba", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dudu Nobre/Zeca Pagodinho", - "Milliseconds": 269374, - "Bytes": 9122188, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3157, - "Name": "Papel Principal", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Almir Guineto/Ded� Paraiso/Luverci Ernesto", - "Milliseconds": 217495, - "Bytes": 7325302, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3158, - "Name": "Saudade Louca", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Acyr Marques/Arlindo Cruz/Franco", - "Milliseconds": 243591, - "Bytes": 8136475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3159, - "Name": "Camar�o que Dorme e Onda Leva", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Acyi Marques/Arlindo Bruz/Bra�o, Beto Sem/Zeca Pagodinho", - "Milliseconds": 299102, - "Bytes": 10012231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3160, - "Name": "Sapopemba e Maxambomba", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Nei Lopes/Wilson Moreira", - "Milliseconds": 245394, - "Bytes": 8268712, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3161, - "Name": "Minha F�", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Muril�o", - "Milliseconds": 206994, - "Bytes": 6981474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3162, - "Name": "Lua de Ogum", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Ratinho/Zeca Pagodinho", - "Milliseconds": 168463, - "Bytes": 5719129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3163, - "Name": "Samba pras mo�as", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Grazielle/Roque Ferreira", - "Milliseconds": 152816, - "Bytes": 5121366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3164, - "Name": "Verdade", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Santana/Nelson Rufino", - "Milliseconds": 332826, - "Bytes": 11120708, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 156, - "Name": "The Office", - "Albums": [ - { - "AlbumId": 249, - "Title": "The Office, Season 1", - "ArtistId": 156, - "Tracks": [ - { - "TrackId": 3172, - "Name": "The Office: An American Workplace (Pilot)", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1380833, - "Bytes": 290482361, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3173, - "Name": "Diversity Day", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1306416, - "Bytes": 257879716, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3174, - "Name": "Health Care", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1321791, - "Bytes": 260493577, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3175, - "Name": "The Alliance", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1317125, - "Bytes": 266203162, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3176, - "Name": "Basketball", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1323541, - "Bytes": 267464180, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3177, - "Name": "Hot Girl", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1325458, - "Bytes": 267836576, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 412, - "CustomerId": 58, - "InvoiceDate": "2013-12-22T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.99, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 250, - "Title": "The Office, Season 2", - "ArtistId": 156, - "Tracks": [ - { - "TrackId": 3178, - "Name": "The Dundies", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1253541, - "Bytes": 246845576, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3179, - "Name": "Sexual Harassment", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1294541, - "Bytes": 273069146, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3180, - "Name": "Office Olympics", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1290458, - "Bytes": 256247623, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3181, - "Name": "The Fire", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1288166, - "Bytes": 266856017, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3182, - "Name": "Halloween", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1315333, - "Bytes": 249205209, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3183, - "Name": "The Fight", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1320028, - "Bytes": 277149457, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3184, - "Name": "The Client", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1299341, - "Bytes": 253836788, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3185, - "Name": "Performance Review", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1292458, - "Bytes": 256143822, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3186, - "Name": "Email Surveillance", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1328870, - "Bytes": 265101113, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3187, - "Name": "Christmas Party", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1282115, - "Bytes": 260891300, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3188, - "Name": "Booze Cruise", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1267958, - "Bytes": 252518021, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3189, - "Name": "The Injury", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1275275, - "Bytes": 253912762, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3190, - "Name": "The Secret", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1264875, - "Bytes": 253143200, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3191, - "Name": "The Carpet", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1264375, - "Bytes": 256477011, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3192, - "Name": "Boys and Girls", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1278333, - "Bytes": 255245729, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3193, - "Name": "Valentine's Day", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1270375, - "Bytes": 253552710, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3194, - "Name": "Dwight's Speech", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1278041, - "Bytes": 255001728, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3195, - "Name": "Take Your Daughter to Work Day", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1268333, - "Bytes": 253451012, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3196, - "Name": "Michael's Birthday", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1237791, - "Bytes": 247238398, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3197, - "Name": "Drug Testing", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1278625, - "Bytes": 244626927, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3198, - "Name": "Conflict Resolution", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1274583, - "Bytes": 253808658, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3199, - "Name": "Casino Night - Season Finale", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1712791, - "Bytes": 327642458, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 251, - "Title": "The Office, Season 3", - "ArtistId": 156, - "Tracks": [ - { - "TrackId": 3200, - "Name": "Gay Witch Hunt", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1326534, - "Bytes": 276942637, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 307, - "CustomerId": 19, - "InvoiceDate": "2012-09-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.99, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3201, - "Name": "The Convention", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1297213, - "Bytes": 255117055, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 308, - "CustomerId": 20, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3202, - "Name": "The Coup", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1276526, - "Bytes": 267205501, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 308, - "CustomerId": 20, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3203, - "Name": "Grief Counseling", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1282615, - "Bytes": 256912833, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3204, - "Name": "The Initiation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1280113, - "Bytes": 251728257, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 309, - "CustomerId": 22, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3205, - "Name": "Diwali", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1279904, - "Bytes": 252726644, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3206, - "Name": "Branch Closing", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1822781, - "Bytes": 358761786, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 309, - "CustomerId": 22, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3207, - "Name": "The Merger", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1801926, - "Bytes": 345960631, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3208, - "Name": "The Convict", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1273064, - "Bytes": 248863427, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3209, - "Name": "A Benihana Christmas, Pts. 1 \u0026 2", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 2519436, - "Bytes": 515301752, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3210, - "Name": "Back from Vacation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271688, - "Bytes": 245378749, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3211, - "Name": "Traveling Salesmen", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1289039, - "Bytes": 250822697, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3212, - "Name": "Producer's Cut: The Return", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1700241, - "Bytes": 337219980, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3213, - "Name": "Ben Franklin", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271938, - "Bytes": 264168080, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3214, - "Name": "Phyllis's Wedding", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271521, - "Bytes": 258561054, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3215, - "Name": "Business School", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1302093, - "Bytes": 254402605, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3216, - "Name": "Cocktails", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1272522, - "Bytes": 259011909, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3217, - "Name": "The Negotiation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1767851, - "Bytes": 371663719, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3218, - "Name": "Safety Training", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271229, - "Bytes": 253054534, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3219, - "Name": "Product Recall", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1268268, - "Bytes": 251208610, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3220, - "Name": "Women's Appreciation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1732649, - "Bytes": 338778844, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3221, - "Name": "Beach Games", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1676134, - "Bytes": 333671149, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3222, - "Name": "The Job", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 2541875, - "Bytes": 501060138, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3428, - "Name": "Branch Closing", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1814855, - "Bytes": 360331351, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3429, - "Name": "The Return", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1705080, - "Bytes": 343877320, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 157, - "Name": "Dread Zeppelin", - "Albums": [ - { - "AlbumId": 252, - "Title": "Un-Led-Ed", - "ArtistId": 157, - "Tracks": [ - { - "TrackId": 3225, - "Name": "Your Time Is Gonna Come", - "AlbumId": 252, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "Page, Jones", - "Milliseconds": 310774, - "Bytes": 5126563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 203, - "CustomerId": 40, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 2.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 158, - "Name": "Battlestar Galactica (Classic)", - "Albums": [ - { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1", - "ArtistId": 158, - "Tracks": [ - { - "TrackId": 3226, - "Name": "Battlestar Galactica, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2952702, - "Bytes": 541359437, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3227, - "Name": "Battlestar Galactica, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2956081, - "Bytes": 521387924, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 204, - "CustomerId": 42, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3228, - "Name": "Battlestar Galactica, Pt. 3", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2927802, - "Bytes": 554509033, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3229, - "Name": "Lost Planet of the Gods, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2922547, - "Bytes": 537812711, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 204, - "CustomerId": 42, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3230, - "Name": "Lost Planet of the Gods, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2914664, - "Bytes": 534343985, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3231, - "Name": "The Lost Warrior", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2920045, - "Bytes": 558872190, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3232, - "Name": "The Long Patrol", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2925008, - "Bytes": 513122217, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3233, - "Name": "The Gun On Ice Planet Zero, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2907615, - "Bytes": 540980196, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3234, - "Name": "The Gun On Ice Planet Zero, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924341, - "Bytes": 546542281, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3235, - "Name": "The Magnificent Warriors", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924716, - "Bytes": 570152232, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3236, - "Name": "The Young Lords", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2863571, - "Bytes": 587051735, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3237, - "Name": "The Living Legend, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924507, - "Bytes": 503641007, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3238, - "Name": "The Living Legend, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2923298, - "Bytes": 515632754, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3239, - "Name": "Fire In Space", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2926593, - "Bytes": 536784757, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3240, - "Name": "War of the Gods, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2922630, - "Bytes": 505761343, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3241, - "Name": "War of the Gods, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2923381, - "Bytes": 487899692, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3242, - "Name": "The Man With Nine Lives", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2956998, - "Bytes": 577829804, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3243, - "Name": "Murder On the Rising Star", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2935894, - "Bytes": 551759986, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3244, - "Name": "Greetings from Earth, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2960293, - "Bytes": 536824558, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3245, - "Name": "Greetings from Earth, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2903778, - "Bytes": 527842860, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3246, - "Name": "Baltar's Escape", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2922088, - "Bytes": 525564224, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 97, - "CustomerId": 59, - "InvoiceDate": "2010-02-26T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 1.99, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3247, - "Name": "Experiment In Terra", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2923548, - "Bytes": 547982556, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 98, - "CustomerId": 1, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3248, - "Name": "Take the Celestra", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2927677, - "Bytes": 512381289, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 98, - "CustomerId": 1, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3249, - "Name": "The Hand of God", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924007, - "Bytes": 536583079, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 159, - "Name": "Aquaman", - "Albums": [ - { - "AlbumId": 254, - "Title": "Aquaman", - "ArtistId": 159, - "Tracks": [ - { - "TrackId": 3250, - "Name": "Pilot", - "AlbumId": 254, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2484567, - "Bytes": 492670102, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 99, - "CustomerId": 3, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 160, - "Name": "Christina Aguilera featuring BigElf", - "Albums": null - }, - { - "ArtistId": 161, - "Name": "Aerosmith \u0026 Sierra Leone's Refugee Allstars", - "Albums": null - }, - { - "ArtistId": 162, - "Name": "Los Lonely Boys", - "Albums": null - }, - { - "ArtistId": 163, - "Name": "Corinne Bailey Rae", - "Albums": null - }, - { - "ArtistId": 164, - "Name": "Dhani Harrison \u0026 Jakob Dylan", - "Albums": null - }, - { - "ArtistId": 165, - "Name": "Jackson Browne", - "Albums": null - }, - { - "ArtistId": 166, - "Name": "Avril Lavigne", - "Albums": null - }, - { - "ArtistId": 167, - "Name": "Big \u0026 Rich", - "Albums": null - }, - { - "ArtistId": 168, - "Name": "Youssou N'Dour", - "Albums": null - }, - { - "ArtistId": 169, - "Name": "Black Eyed Peas", - "Albums": null - }, - { - "ArtistId": 170, - "Name": "Jack Johnson", - "Albums": null - }, - { - "ArtistId": 171, - "Name": "Ben Harper", - "Albums": null - }, - { - "ArtistId": 172, - "Name": "Snow Patrol", - "Albums": null - }, - { - "ArtistId": 173, - "Name": "Matisyahu", - "Albums": null - }, - { - "ArtistId": 174, - "Name": "The Postal Service", - "Albums": null - }, - { - "ArtistId": 175, - "Name": "Jaguares", - "Albums": null - }, - { - "ArtistId": 176, - "Name": "The Flaming Lips", - "Albums": null - }, - { - "ArtistId": 177, - "Name": "Jack's Mannequin \u0026 Mick Fleetwood", - "Albums": null - }, - { - "ArtistId": 178, - "Name": "Regina Spektor", - "Albums": null - }, - { - "ArtistId": 179, - "Name": "Scorpions", - "Albums": [ - { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions", - "ArtistId": 179, - "Tracks": [ - { - "TrackId": 3288, - "Name": "Rock You Like a Hurricane", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 255766, - "Bytes": 4300973, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3289, - "Name": "No One Like You", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 240325, - "Bytes": 4050259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3290, - "Name": "The Zoo", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 332740, - "Bytes": 5550779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3291, - "Name": "Loving You Sunday Morning", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 339125, - "Bytes": 5654493, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3292, - "Name": "Still Loving You", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 390674, - "Bytes": 6491444, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3293, - "Name": "Big City Nights", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 251865, - "Bytes": 4237651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3294, - "Name": "Believe in Love", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 325774, - "Bytes": 5437651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3295, - "Name": "Rhythm of Love", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 231246, - "Bytes": 3902834, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3296, - "Name": "I Can't Explain", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 205332, - "Bytes": 3482099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3297, - "Name": "Tease Me Please Me", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 287229, - "Bytes": 4811894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3298, - "Name": "Wind of Change", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 315325, - "Bytes": 5268002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3299, - "Name": "Send Me an Angel", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 273041, - "Bytes": 4581492, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 180, - "Name": "House Of Pain", - "Albums": [ - { - "AlbumId": 258, - "Title": "House of Pain", - "ArtistId": 180, - "Tracks": [ - { - "TrackId": 3300, - "Name": "Jump Around", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 217835, - "Bytes": 8715653, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3301, - "Name": "Salutations", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 69120, - "Bytes": 2767047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3302, - "Name": "Put Your Head Out", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Freese/L. Muggerud", - "Milliseconds": 182230, - "Bytes": 7291473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3303, - "Name": "Top O' The Morning To Ya", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 216633, - "Bytes": 8667599, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3304, - "Name": "Commercial 1", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "L. Muggerud", - "Milliseconds": 7941, - "Bytes": 319888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3305, - "Name": "House And The Rising Sun", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/J. Vasquez/L. Dimant", - "Milliseconds": 219402, - "Bytes": 8778369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3306, - "Name": "Shamrocks And Shenanigans", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 218331, - "Bytes": 8735518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3307, - "Name": "House Of Pain Anthem", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 155611, - "Bytes": 6226713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3308, - "Name": "Danny Boy, Danny Boy", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 114520, - "Bytes": 4583091, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3309, - "Name": "Guess Who's Back", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 238393, - "Bytes": 9537994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3310, - "Name": "Commercial 2", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "L. Muggerud", - "Milliseconds": 21211, - "Bytes": 850698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3311, - "Name": "Put On Your Shit Kickers", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 190432, - "Bytes": 7619569, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3312, - "Name": "Come And Get Some Of This", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud/R. Medrano", - "Milliseconds": 170475, - "Bytes": 6821279, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3313, - "Name": "Life Goes On", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/R. Medrano", - "Milliseconds": 163030, - "Bytes": 6523458, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3314, - "Name": "One For The Road", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant/L. Muggerud", - "Milliseconds": 170213, - "Bytes": 6810820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3315, - "Name": "Feel It", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/R. Medrano", - "Milliseconds": 239908, - "Bytes": 9598588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3316, - "Name": "All My Love", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 200620, - "Bytes": 8027065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3317, - "Name": "Jump Around (Pete Rock Remix)", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 236120, - "Bytes": 9447101, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3318, - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 237035, - "Bytes": 9483705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 181, - "Name": "Xis", - "Albums": null - }, - { - "ArtistId": 182, - "Name": "Nega Gizza", - "Albums": null - }, - { - "ArtistId": 183, - "Name": "Gustavo \u0026 Andres Veiga \u0026 Salazar", - "Albums": null - }, - { - "ArtistId": 184, - "Name": "Rodox", - "Albums": null - }, - { - "ArtistId": 185, - "Name": "Charlie Brown Jr.", - "Albums": null - }, - { - "ArtistId": 186, - "Name": "Pedro Lu�s E A Parede", - "Albums": null - }, - { - "ArtistId": 187, - "Name": "Los Hermanos", - "Albums": null - }, - { - "ArtistId": 188, - "Name": "Mundo Livre S/A", - "Albums": null - }, - { - "ArtistId": 189, - "Name": "Otto", - "Albums": null - }, - { - "ArtistId": 190, - "Name": "Instituto", - "Albums": null - }, - { - "ArtistId": 191, - "Name": "Na��o Zumbi", - "Albums": null - }, - { - "ArtistId": 192, - "Name": "DJ Dolores \u0026 Orchestra Santa Massa", - "Albums": null - }, - { - "ArtistId": 193, - "Name": "Seu Jorge", - "Albums": null - }, - { - "ArtistId": 194, - "Name": "Sabotage E Instituto", - "Albums": null - }, - { - "ArtistId": 195, - "Name": "Stereo Maracana", - "Albums": null - }, - { - "ArtistId": 196, - "Name": "Cake", - "Albums": [ - { - "AlbumId": 260, - "Title": "Cake: B-Sides and Rarities", - "ArtistId": 196, - "Tracks": [ - { - "TrackId": 3336, - "Name": "War Pigs", - "AlbumId": 260, - "MediaTypeId": 4, - "GenreId": 23, - "Composer": null, - "Milliseconds": 234013, - "Bytes": 8052374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 197, - "Name": "Aisha Duo", - "Albums": [ - { - "AlbumId": 262, - "Title": "Quiet Songs", - "ArtistId": 197, - "Tracks": [ - { - "TrackId": 3349, - "Name": "Amanda", - "AlbumId": 262, - "MediaTypeId": 5, - "GenreId": 2, - "Composer": "Luca Gusella", - "Milliseconds": 246503, - "Bytes": 4011615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3350, - "Name": "Despertar", - "AlbumId": 262, - "MediaTypeId": 5, - "GenreId": 2, - "Composer": "Andrea Dulbecco", - "Milliseconds": 307385, - "Bytes": 4821485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 198, - "Name": "Habib Koit� and Bamada", - "Albums": [ - { - "AlbumId": 263, - "Title": "Muso Ko", - "ArtistId": 198, - "Tracks": [ - { - "TrackId": 3351, - "Name": "Din Din Wo (Little Child)", - "AlbumId": 263, - "MediaTypeId": 5, - "GenreId": 16, - "Composer": "Habib Koit�", - "Milliseconds": 285837, - "Bytes": 4615841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3354, - "Name": "I Ka Barra (Your Work)", - "AlbumId": 263, - "MediaTypeId": 5, - "GenreId": 16, - "Composer": "Habib Koit�", - "Milliseconds": 300605, - "Bytes": 4855457, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 199, - "Name": "Karsh Kale", - "Albums": [ - { - "AlbumId": 264, - "Title": "Realize", - "ArtistId": 199, - "Tracks": [ - { - "TrackId": 3352, - "Name": "Distance", - "AlbumId": 264, - "MediaTypeId": 5, - "GenreId": 15, - "Composer": "Karsh Kale/Vishal Vaid", - "Milliseconds": 327122, - "Bytes": 5327463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3358, - "Name": "One Step Beyond", - "AlbumId": 264, - "MediaTypeId": 5, - "GenreId": 15, - "Composer": "Karsh Kale", - "Milliseconds": 366085, - "Bytes": 6034098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 200, - "Name": "The Posies", - "Albums": [ - { - "AlbumId": 265, - "Title": "Every Kind of Light", - "ArtistId": 200, - "Tracks": [ - { - "TrackId": 3353, - "Name": "I Guess You're Right", - "AlbumId": 265, - "MediaTypeId": 5, - "GenreId": 1, - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Milliseconds": 212044, - "Bytes": 3453849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3355, - "Name": "Love Comes", - "AlbumId": 265, - "MediaTypeId": 5, - "GenreId": 1, - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Milliseconds": 199923, - "Bytes": 3240609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 201, - "Name": "Luciana Souza/Romero Lubambo", - "Albums": [ - { - "AlbumId": 266, - "Title": "Duos II", - "ArtistId": 201, - "Tracks": [ - { - "TrackId": 3356, - "Name": "Muita Bobeira", - "AlbumId": 266, - "MediaTypeId": 5, - "GenreId": 7, - "Composer": "Luciana Souza", - "Milliseconds": 172710, - "Bytes": 2775071, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 202, - "Name": "Aaron Goldberg", - "Albums": [ - { - "AlbumId": 267, - "Title": "Worlds", - "ArtistId": 202, - "Tracks": [ - { - "TrackId": 3357, - "Name": "OAM's Blues", - "AlbumId": 267, - "MediaTypeId": 5, - "GenreId": 2, - "Composer": "Aaron Goldberg", - "Milliseconds": 266936, - "Bytes": 4292028, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 203, - "Name": "Nicolaus Esterhazy Sinfonia", - "Albums": [ - { - "AlbumId": 268, - "Title": "The Best of Beethoven", - "ArtistId": 203, - "Tracks": [ - { - "TrackId": 3359, - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace", - "AlbumId": 268, - "MediaTypeId": 5, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 356426, - "Bytes": 5817216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 204, - "Name": "Temple of the Dog", - "Albums": [ - { - "AlbumId": 269, - "Title": "Temple of the Dog", - "ArtistId": 204, - "Tracks": [ - { - "TrackId": 3365, - "Name": "Say Hello 2 Heaven", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 384497, - "Bytes": 6477217, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3366, - "Name": "Reach Down", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 672773, - "Bytes": 11157785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3367, - "Name": "Hunger Strike", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 246292, - "Bytes": 4233212, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 3368, - "Name": "Pushin Forward Back", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 225278, - "Bytes": 3892066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3369, - "Name": "Call Me a Dog", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 304458, - "Bytes": 5177612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3370, - "Name": "Times of Trouble", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 342539, - "Bytes": 5795951, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3371, - "Name": "Wooden Jesus", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 250565, - "Bytes": 4302603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3372, - "Name": "Your Savior", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 244226, - "Bytes": 4199626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3373, - "Name": "Four Walled World", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 414474, - "Bytes": 6964048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3374, - "Name": "All Night Thing", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 231803, - "Bytes": 3997982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 205, - "Name": "Chris Cornell", - "Albums": [ - { - "AlbumId": 270, - "Title": "Carry On", - "ArtistId": 205, - "Tracks": [ - { - "TrackId": 3375, - "Name": "No Such Thing", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 224837, - "Bytes": 3691272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3376, - "Name": "Poison Eye", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 237120, - "Bytes": 3890037, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3377, - "Name": "Arms Around Your Love", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 214016, - "Bytes": 3516224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3378, - "Name": "Safe and Sound", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 256764, - "Bytes": 4207769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3379, - "Name": "She'll Never Be Your Man", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 204078, - "Bytes": 3355715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3380, - "Name": "Ghosts", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 231547, - "Bytes": 3799745, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3381, - "Name": "Killing Birds", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 218498, - "Bytes": 3588776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3382, - "Name": "Billie Jean", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Michael Jackson", - "Milliseconds": 281401, - "Bytes": 4606408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3383, - "Name": "Scar On the Sky", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 220193, - "Bytes": 3616618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3384, - "Name": "Your Soul Today", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 205959, - "Bytes": 3385722, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3385, - "Name": "Finally Forever", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 217035, - "Bytes": 3565098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3386, - "Name": "Silence the Voices", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 267376, - "Bytes": 4379597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3387, - "Name": "Disappearing Act", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 273320, - "Bytes": 4476203, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3388, - "Name": "You Know My Name", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 240255, - "Bytes": 3940651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 206, - "Name": "Alberto Turco \u0026 Nova Schola Gregoriana", - "Albums": [ - { - "AlbumId": 272, - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass", - "ArtistId": 206, - "Tracks": [ - { - "TrackId": 3403, - "Name": "Intoitus: Adorate Deum", - "AlbumId": 272, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Anonymous", - "Milliseconds": 245317, - "Bytes": 4123531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 207, - "Name": "Richard Marlow \u0026 The Choir of Trinity College, Cambridge", - "Albums": [ - { - "AlbumId": 273, - "Title": "Allegri: Miserere", - "ArtistId": 207, - "Tracks": [ - { - "TrackId": 3404, - "Name": "Miserere mei, Deus", - "AlbumId": 273, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gregorio Allegri", - "Milliseconds": 501503, - "Bytes": 8285941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 208, - "Name": "English Concert \u0026 Trevor Pinnock", - "Albums": [ - { - "AlbumId": 274, - "Title": "Pachelbel: Canon \u0026 Gigue", - "ArtistId": 208, - "Tracks": [ - { - "TrackId": 3405, - "Name": "Canon and Gigue in D Major: I. Canon", - "AlbumId": 274, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Pachelbel", - "Milliseconds": 271788, - "Bytes": 4438393, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 315, - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)", - "ArtistId": 208, - "Tracks": [ - { - "TrackId": 3449, - "Name": "Music for the Royal Fireworks, HWV351 (1749): La R�jouissance", - "AlbumId": 315, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "George Frideric Handel", - "Milliseconds": 120000, - "Bytes": 2193734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 209, - "Name": "Anne-Sophie Mutter, Herbert Von Karajan \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 275, - "Title": "Vivaldi: The Four Seasons", - "ArtistId": 209, - "Tracks": [ - { - "TrackId": 3406, - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro", - "AlbumId": 275, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Antonio Vivaldi", - "Milliseconds": 199086, - "Bytes": 3347810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 210, - "Name": "Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra \u0026 Margaret Batjer", - "Albums": [ - { - "AlbumId": 276, - "Title": "Bach: Violin Concertos", - "ArtistId": 210, - "Tracks": [ - { - "TrackId": 3407, - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace", - "AlbumId": 276, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 193722, - "Bytes": 3192890, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 211, - "Name": "Wilhelm Kempff", - "Albums": [ - { - "AlbumId": 277, - "Title": "Bach: Goldberg Variations", - "ArtistId": 211, - "Tracks": [ - { - "TrackId": 3408, - "Name": "Aria Mit 30 Ver�nderungen, BWV 988 \"Goldberg Variations\": Aria", - "AlbumId": 277, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 120463, - "Bytes": 2081895, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 212, - "Name": "Yo-Yo Ma", - "Albums": [ - { - "AlbumId": 278, - "Title": "Bach: The Cello Suites", - "ArtistId": 212, - "Tracks": [ - { - "TrackId": 3409, - "Name": "Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Pr�lude", - "AlbumId": 278, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 143288, - "Bytes": 2315495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 213, - "Name": "Scholars Baroque Ensemble", - "Albums": [ - { - "AlbumId": 279, - "Title": "Handel: The Messiah (Highlights)", - "ArtistId": 213, - "Tracks": [ - { - "TrackId": 3410, - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound", - "AlbumId": 279, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "George Frideric Handel", - "Milliseconds": 582029, - "Bytes": 9553140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 214, - "Name": "Academy of St. Martin in the Fields \u0026 Sir Neville Marriner", - "Albums": [ - { - "AlbumId": 280, - "Title": "The World of Classical Favourites", - "ArtistId": 214, - "Tracks": [ - { - "TrackId": 3411, - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba", - "AlbumId": 280, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "George Frideric Handel", - "Milliseconds": 197135, - "Bytes": 3247914, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - }, - { - "TrackId": 3438, - "Name": "Fantasia On Greensleeves", - "AlbumId": 280, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ralph Vaughan Williams", - "Milliseconds": 268066, - "Bytes": 4513190, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 316, - "CustomerId": 1, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 1.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 215, - "Name": "Academy of St. Martin in the Fields Chamber Ensemble \u0026 Sir Neville Marriner", - "Albums": [ - { - "AlbumId": 281, - "Title": "Sir Neville Marriner: A Celebration", - "ArtistId": 215, - "Tracks": [ - { - "TrackId": 3412, - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro", - "AlbumId": 281, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 348971, - "Bytes": 5760129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 216, - "Name": "Berliner Philharmoniker, Claudio Abbado \u0026 Sabine Meyer", - "Albums": [ - { - "AlbumId": 282, - "Title": "Mozart: Wind Concertos", - "ArtistId": 216, - "Tracks": [ - { - "TrackId": 3413, - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio", - "AlbumId": 282, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 394482, - "Bytes": 6474980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 217, - "Name": "Royal Philharmonic Orchestra \u0026 Sir Thomas Beecham", - "Albums": [ - { - "AlbumId": 283, - "Title": "Haydn: Symphonies 99 - 104", - "ArtistId": 217, - "Tracks": [ - { - "TrackId": 3414, - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso", - "AlbumId": 283, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "Franz Joseph Haydn", - "Milliseconds": 306687, - "Bytes": 10085867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 218, - "Name": "Orchestre R�volutionnaire et Romantique \u0026 John Eliot Gardiner", - "Albums": [ - { - "AlbumId": 284, - "Title": "Beethoven: Symhonies Nos. 5 \u0026 6", - "ArtistId": 218, - "Tracks": [ - { - "TrackId": 3415, - "Name": "Symphony No.5 in C Minor: I. Allegro con brio", - "AlbumId": 284, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 392462, - "Bytes": 6419730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 219, - "Name": "Britten Sinfonia, Ivor Bolton \u0026 Lesley Garrett", - "Albums": [ - { - "AlbumId": 285, - "Title": "A Soprano Inspired", - "ArtistId": 219, - "Tracks": [ - { - "TrackId": 3416, - "Name": "Ave Maria", - "AlbumId": 285, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Franz Schubert", - "Milliseconds": 338243, - "Bytes": 5605648, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 220, - "Name": "Chicago Symphony Chorus, Chicago Symphony Orchestra \u0026 Sir Georg Solti", - "Albums": [ - { - "AlbumId": 286, - "Title": "Great Opera Choruses", - "ArtistId": 220, - "Tracks": [ - { - "TrackId": 3417, - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"", - "AlbumId": 286, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giuseppe Verdi", - "Milliseconds": 274504, - "Bytes": 4498583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 221, - "Name": "Sir Georg Solti \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 287, - "Title": "Wagner: Favourite Overtures", - "ArtistId": 221, - "Tracks": [ - { - "TrackId": 3418, - "Name": "Die Walk�re: The Ride of the Valkyries", - "AlbumId": 287, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Richard Wagner", - "Milliseconds": 189008, - "Bytes": 3114209, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 222, - "Name": "Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner \u0026 Sylvia McNair", - "Albums": [ - { - "AlbumId": 288, - "Title": "Faur�: Requiem, Ravel: Pavane \u0026 Others", - "ArtistId": 222, - "Tracks": [ - { - "TrackId": 3419, - "Name": "Requiem, Op.48: 4. Pie Jesu", - "AlbumId": 288, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gabriel Faur�", - "Milliseconds": 258924, - "Bytes": 4314850, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 223, - "Name": "London Symphony Orchestra \u0026 Sir Charles Mackerras", - "Albums": [ - { - "AlbumId": 289, - "Title": "Tchaikovsky: The Nutcracker", - "ArtistId": 223, - "Tracks": [ - { - "TrackId": 3420, - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince \u0026 the Sugar-Plum Fairy", - "AlbumId": 289, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Peter Ilyich Tchaikovsky", - "Milliseconds": 304226, - "Bytes": 5184289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 224, - "Name": "Barry Wordsworth \u0026 BBC Concert Orchestra", - "Albums": [ - { - "AlbumId": 290, - "Title": "The Last Night of the Proms", - "ArtistId": 224, - "Tracks": [ - { - "TrackId": 3421, - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"", - "AlbumId": 290, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Edward Elgar", - "Milliseconds": 250031, - "Bytes": 4124707, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 225, - "Name": "Herbert Von Karajan, Mirella Freni \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 291, - "Title": "Puccini: Madama Butterfly - Highlights", - "ArtistId": 225, - "Tracks": [ - { - "TrackId": 3422, - "Name": "Madama Butterfly: Un Bel D� Vedremo", - "AlbumId": 291, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giacomo Puccini", - "Milliseconds": 277639, - "Bytes": 4588197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 226, - "Name": "Eugene Ormandy", - "Albums": [ - { - "AlbumId": 292, - "Title": "Holst: The Planets, Op. 32 \u0026 Vaughan Williams: Fantasies", - "ArtistId": 226, - "Tracks": [ - { - "TrackId": 3423, - "Name": "Jupiter, the Bringer of Jollity", - "AlbumId": 292, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gustav Holst", - "Milliseconds": 522099, - "Bytes": 8547876, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 311, - "Title": "Strauss: Waltzes", - "ArtistId": 226, - "Tracks": [ - { - "TrackId": 3445, - "Name": "On the Beautiful Blue Danube", - "AlbumId": 311, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Strauss II", - "Milliseconds": 526696, - "Bytes": 8610225, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 343, - "Title": "Respighi:Pines of Rome", - "ArtistId": 226, - "Tracks": [ - { - "TrackId": 3499, - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia", - "AlbumId": 343, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 286741, - "Bytes": 4718950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 227, - "Name": "Luciano Pavarotti", - "Albums": [ - { - "AlbumId": 293, - "Title": "Pavarotti's Opera Made Easy", - "ArtistId": 227, - "Tracks": [ - { - "TrackId": 3424, - "Name": "Turandot, Act III, Nessun dorma!", - "AlbumId": 293, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giacomo Puccini", - "Milliseconds": 176911, - "Bytes": 2920890, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 228, - "Name": "Leonard Bernstein \u0026 New York Philharmonic", - "Albums": [ - { - "AlbumId": 294, - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings", - "ArtistId": 228, - "Tracks": [ - { - "TrackId": 3425, - "Name": "Adagio for Strings from the String Quartet, Op. 11", - "AlbumId": 294, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Samuel Barber", - "Milliseconds": 596519, - "Bytes": 9585597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 229, - "Name": "Boston Symphony Orchestra \u0026 Seiji Ozawa", - "Albums": [ - { - "AlbumId": 295, - "Title": "Carmina Burana", - "ArtistId": 229, - "Tracks": [ - { - "TrackId": 3426, - "Name": "Carmina Burana: O Fortuna", - "AlbumId": 295, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Carl Orff", - "Milliseconds": 156710, - "Bytes": 2630293, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 230, - "Name": "Aaron Copland \u0026 London Symphony Orchestra", - "Albums": [ - { - "AlbumId": 296, - "Title": "A Copland Celebration, Vol. I", - "ArtistId": 230, - "Tracks": [ - { - "TrackId": 3427, - "Name": "Fanfare for the Common Man", - "AlbumId": 296, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Aaron Copland", - "Milliseconds": 198064, - "Bytes": 3211245, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 231, - "Name": "Ton Koopman", - "Albums": [ - { - "AlbumId": 297, - "Title": "Bach: Toccata \u0026 Fugue in D Minor", - "ArtistId": 231, - "Tracks": [ - { - "TrackId": 3430, - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata", - "AlbumId": 297, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 153901, - "Bytes": 2649938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 232, - "Name": "Sergei Prokofiev \u0026 Yuri Temirkanov", - "Albums": [ - { - "AlbumId": 298, - "Title": "Prokofiev: Symphony No.1", - "ArtistId": 232, - "Tracks": [ - { - "TrackId": 3431, - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio", - "AlbumId": 298, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Sergei Prokofiev", - "Milliseconds": 254001, - "Bytes": 4195542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 233, - "Name": "Chicago Symphony Orchestra \u0026 Fritz Reiner", - "Albums": [ - { - "AlbumId": 299, - "Title": "Scheherazade", - "ArtistId": 233, - "Tracks": [ - { - "TrackId": 3432, - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship", - "AlbumId": 299, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Nikolai Rimsky-Korsakov", - "Milliseconds": 545203, - "Bytes": 8916313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 314, - "CustomerId": 57, - "InvoiceDate": "2012-10-14T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 234, - "Name": "Orchestra of The Age of Enlightenment", - "Albums": [ - { - "AlbumId": 300, - "Title": "Bach: The Brandenburg Concertos", - "ArtistId": 234, - "Tracks": [ - { - "TrackId": 3433, - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro", - "AlbumId": 300, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 307244, - "Bytes": 5064553, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 315, - "CustomerId": 58, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 235, - "Name": "Emanuel Ax, Eugene Ormandy \u0026 Philadelphia Orchestra", - "Albums": [ - { - "AlbumId": 301, - "Title": "Chopin: Piano Concertos Nos. 1 \u0026 2", - "ArtistId": 235, - "Tracks": [ - { - "TrackId": 3434, - "Name": "Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto", - "AlbumId": 301, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Fr�d�ric Chopin", - "Milliseconds": 560342, - "Bytes": 9160082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 315, - "CustomerId": 58, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 236, - "Name": "James Levine", - "Albums": [ - { - "AlbumId": 302, - "Title": "Mascagni: Cavalleria Rusticana", - "ArtistId": 236, - "Tracks": [ - { - "TrackId": 3435, - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico", - "AlbumId": 302, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Pietro Mascagni", - "Milliseconds": 243436, - "Bytes": 4001276, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 237, - "Name": "Berliner Philharmoniker \u0026 Hans Rosbaud", - "Albums": [ - { - "AlbumId": 303, - "Title": "Sibelius: Finlandia", - "ArtistId": 237, - "Tracks": [ - { - "TrackId": 3436, - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)", - "AlbumId": 303, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Jean Sibelius", - "Milliseconds": 406000, - "Bytes": 5908455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 316, - "CustomerId": 1, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 1.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 238, - "Name": "Maurizio Pollini", - "Albums": [ - { - "AlbumId": 304, - "Title": "Beethoven Piano Sonatas: Moonlight \u0026 Pastorale", - "ArtistId": 238, - "Tracks": [ - { - "TrackId": 3437, - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto", - "AlbumId": 304, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 391000, - "Bytes": 6318740, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 239, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner \u0026 William Bennett", - "Albums": null - }, - { - "ArtistId": 240, - "Name": "Gustav Mahler", - "Albums": [ - { - "AlbumId": 305, - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde", - "ArtistId": 240, - "Tracks": [ - { - "TrackId": 3439, - "Name": "Das Lied Von Der Erde, Von Der Jugend", - "AlbumId": 305, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gustav Mahler", - "Milliseconds": 223583, - "Bytes": 3700206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 241, - "Name": "Felix Schmidt, London Symphony Orchestra \u0026 Rafael Fr�hbeck de Burgos", - "Albums": [ - { - "AlbumId": 306, - "Title": "Elgar: Cello Concerto \u0026 Vaughan Williams: Fantasias", - "ArtistId": 241, - "Tracks": [ - { - "TrackId": 3440, - "Name": "Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato", - "AlbumId": 306, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Edward Elgar", - "Milliseconds": 483133, - "Bytes": 7865479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 242, - "Name": "Edo de Waart \u0026 San Francisco Symphony", - "Albums": [ - { - "AlbumId": 307, - "Title": "Adams, John: The Chairman Dances", - "ArtistId": 242, - "Tracks": [ - { - "TrackId": 3441, - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine", - "AlbumId": 307, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "John Adams", - "Milliseconds": 254930, - "Bytes": 4310896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 243, - "Name": "Antal Dor�ti \u0026 London Symphony Orchestra", - "Albums": [ - { - "AlbumId": 308, - "Title": "Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien \u0026 Beethoven: Wellington's Victory", - "ArtistId": 243, - "Tracks": [ - { - "TrackId": 3442, - "Name": "Wellington's Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph", - "AlbumId": 308, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 412000, - "Bytes": 6965201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 244, - "Name": "Choir Of Westminster Abbey \u0026 Simon Preston", - "Albums": [ - { - "AlbumId": 309, - "Title": "Palestrina: Missa Papae Marcelli \u0026 Allegri: Miserere", - "ArtistId": 244, - "Tracks": [ - { - "TrackId": 3443, - "Name": "Missa Papae Marcelli: Kyrie", - "AlbumId": 309, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giovanni Pierluigi da Palestrina", - "Milliseconds": 240666, - "Bytes": 4244149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 245, - "Name": "Michael Tilson Thomas \u0026 San Francisco Symphony", - "Albums": [ - { - "AlbumId": 310, - "Title": "Prokofiev: Romeo \u0026 Juliet", - "ArtistId": 245, - "Tracks": [ - { - "TrackId": 3444, - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers", - "AlbumId": 310, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 275015, - "Bytes": 4519239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 312, - "Title": "Berlioz: Symphonie Fantastique", - "ArtistId": 245, - "Tracks": [ - { - "TrackId": 3446, - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat", - "AlbumId": 312, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Hector Berlioz", - "Milliseconds": 561967, - "Bytes": 9173344, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 246, - "Name": "Chor der Wiener Staatsoper, Herbert Von Karajan \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 313, - "Title": "Bizet: Carmen Highlights", - "ArtistId": 246, - "Tracks": [ - { - "TrackId": 3447, - "Name": "Carmen: Overture", - "AlbumId": 313, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Georges Bizet", - "Milliseconds": 132932, - "Bytes": 2189002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 247, - "Name": "The King's Singers", - "Albums": [ - { - "AlbumId": 314, - "Title": "English Renaissance", - "ArtistId": 247, - "Tracks": [ - { - "TrackId": 3448, - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio", - "AlbumId": 314, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Thomas Tallis", - "Milliseconds": 69194, - "Bytes": 1208080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - }, - { - "TrackId": 3492, - "Name": "Sing Joyfully", - "AlbumId": 314, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "William Byrd", - "Milliseconds": 133768, - "Bytes": 2256484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 248, - "Name": "Berliner Philharmoniker \u0026 Herbert Von Karajan", - "Albums": [ - { - "AlbumId": 316, - "Title": "Grieg: Peer Gynt Suites \u0026 Sibelius: Pell�as et M�lisande", - "ArtistId": 248, - "Tracks": [ - { - "TrackId": 3450, - "Name": "Peer Gynt Suite No.1, Op.46: 1. Morning Mood", - "AlbumId": 316, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Edvard Grieg", - "Milliseconds": 253422, - "Bytes": 4298769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 320, - "Title": "Mozart: Symphonies Nos. 40 \u0026 41", - "ArtistId": 248, - "Tracks": [ - { - "TrackId": 3454, - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro", - "AlbumId": 320, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 362933, - "Bytes": 6173269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 336, - "Title": "Prokofiev: Symphony No.5 \u0026 Stravinksy: Le Sacre Du Printemps", - "ArtistId": 248, - "Tracks": [ - { - "TrackId": 3491, - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds", - "AlbumId": 336, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Igor Stravinsky", - "Milliseconds": 234746, - "Bytes": 4072205, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 249, - "Name": "Sir Georg Solti, Sumi Jo \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 317, - "Title": "Mozart Gala: Famous Arias", - "ArtistId": 249, - "Tracks": [ - { - "TrackId": 3451, - "Name": "Die Zauberfl�te, K.620: \"Der H�lle Rache Kocht in Meinem Herze\"", - "AlbumId": 317, - "MediaTypeId": 2, - "GenreId": 25, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 174813, - "Bytes": 2861468, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 25, - "Name": "Opera" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 250, - "Name": "Christopher O'Riley", - "Albums": [ - { - "AlbumId": 318, - "Title": "SCRIABIN: Vers la flamme", - "ArtistId": 250, - "Tracks": [ - { - "TrackId": 3452, - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11", - "AlbumId": 318, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": null, - "Milliseconds": 101293, - "Bytes": 3819535, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 251, - "Name": "Fretwork", - "Albums": [ - { - "AlbumId": 319, - "Title": "Armada: Music from the Courts of England and Spain", - "ArtistId": 251, - "Tracks": [ - { - "TrackId": 3453, - "Name": "Pavan, Lachrimae Antiquae", - "AlbumId": 319, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "John Dowland", - "Milliseconds": 253281, - "Bytes": 4211495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 252, - "Name": "Amy Winehouse", - "Albums": [ - { - "AlbumId": 321, - "Title": "Back to Black", - "ArtistId": 252, - "Tracks": [ - { - "TrackId": 3455, - "Name": "Rehab", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 213240, - "Bytes": 3416878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 209, - "CustomerId": 18, - "InvoiceDate": "2011-07-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 0.99, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3456, - "Name": "You Know I'm No Good", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 256946, - "Bytes": 4133694, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 210, - "CustomerId": 19, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3457, - "Name": "Me \u0026 Mr. Jones", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 151706, - "Bytes": 2449438, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 210, - "CustomerId": 19, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3458, - "Name": "Just Friends", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 191933, - "Bytes": 3098906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3459, - "Name": "Back to Black", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Mark Ronson", - "Milliseconds": 240320, - "Bytes": 3852953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 211, - "CustomerId": 21, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3460, - "Name": "Love Is a Losing Game", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 154386, - "Bytes": 2509409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3461, - "Name": "Tears Dry On Their Own", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Nickolas Ashford \u0026 Valerie Simpson", - "Milliseconds": 185293, - "Bytes": 2996598, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 211, - "CustomerId": 21, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3462, - "Name": "Wake Up Alone", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Paul O'duffy", - "Milliseconds": 221413, - "Bytes": 3576773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3463, - "Name": "Some Unholy War", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 141520, - "Bytes": 2304465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3464, - "Name": "He Can Only Hold Her", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Richard Poindexter \u0026 Robert Poindexter", - "Milliseconds": 166680, - "Bytes": 2666531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3465, - "Name": "You Know I'm No Good (feat. Ghostface Killah)", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 202320, - "Bytes": 3260658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3466, - "Name": "Rehab (Hot Chip Remix)", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 418293, - "Bytes": 6670600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 322, - "Title": "Frank", - "ArtistId": 252, - "Tracks": [ - { - "TrackId": 3467, - "Name": "Intro / Stronger Than Me", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 234200, - "Bytes": 3832165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3468, - "Name": "You Sent Me Flying / Cherry", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 409906, - "Bytes": 6657517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3469, - "Name": "F**k Me Pumps", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Salaam Remi", - "Milliseconds": 200253, - "Bytes": 3324343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3470, - "Name": "I Heard Love Is Blind", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 129666, - "Bytes": 2190831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3471, - "Name": "(There Is) No Greater Love (Teo Licks)", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Isham Jones \u0026 Marty Symes", - "Milliseconds": 167933, - "Bytes": 2773507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3472, - "Name": "In My Bed", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Salaam Remi", - "Milliseconds": 315960, - "Bytes": 5211774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3473, - "Name": "Take the Box", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Luke Smith", - "Milliseconds": 199160, - "Bytes": 3281526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3474, - "Name": "October Song", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Matt Rowe \u0026 Stefan Skarbek", - "Milliseconds": 204846, - "Bytes": 3358125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3475, - "Name": "What Is It About Men", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson \u0026 Wilburn Squiddley Cole", - "Milliseconds": 209573, - "Bytes": 3426106, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3476, - "Name": "Help Yourself", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Freddy James, Jimmy hogarth \u0026 Larry Stock", - "Milliseconds": 300884, - "Bytes": 5029266, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3477, - "Name": "Amy Amy Amy (Outro)", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi \u0026 Stefan Skarbek", - "Milliseconds": 663426, - "Bytes": 10564704, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 253, - "Name": "Calexico", - "Albums": [ - { - "AlbumId": 323, - "Title": "Carried to Dust (Bonus Track Version)", - "ArtistId": 253, - "Tracks": [ - { - "TrackId": 3478, - "Name": "Slowness", - "AlbumId": 323, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 215386, - "Bytes": 3644793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 104, - "CustomerId": 38, - "InvoiceDate": "2010-03-29T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 0.99, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 254, - "Name": "Otto Klemperer \u0026 Philharmonia Orchestra", - "Albums": [ - { - "AlbumId": 324, - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc.", - "ArtistId": 254, - "Tracks": [ - { - "TrackId": 3479, - "Name": "Prometheus Overture, Op. 43", - "AlbumId": 324, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 339567, - "Bytes": 10887931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 105, - "CustomerId": 39, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 255, - "Name": "Yehudi Menuhin", - "Albums": [ - { - "AlbumId": 325, - "Title": "Bartok: Violin \u0026 Viola Concertos", - "ArtistId": 255, - "Tracks": [ - { - "TrackId": 3480, - "Name": "Sonata for Solo Violin: IV: Presto", - "AlbumId": 325, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "B�la Bart�k", - "Milliseconds": 299350, - "Bytes": 9785346, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 105, - "CustomerId": 39, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 256, - "Name": "Philharmonia Orchestra \u0026 Sir Neville Marriner", - "Albums": [ - { - "AlbumId": 326, - "Title": "Mendelssohn: A Midsummer Night's Dream", - "ArtistId": 256, - "Tracks": [ - { - "TrackId": 3481, - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno", - "AlbumId": 326, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 387826, - "Bytes": 6497867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 257, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner \u0026 Thurston Dart", - "Albums": [ - { - "AlbumId": 327, - "Title": "Bach: Orchestral Suites Nos. 1 - 4", - "ArtistId": 257, - "Tracks": [ - { - "TrackId": 3482, - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I \u0026 II", - "AlbumId": 327, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 225933, - "Bytes": 3847164, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 106, - "CustomerId": 41, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 258, - "Name": "Les Arts Florissants \u0026 William Christie", - "Albums": [ - { - "AlbumId": 328, - "Title": "Charpentier: Divertissements, Airs \u0026 Concerts", - "ArtistId": 258, - "Tracks": [ - { - "TrackId": 3483, - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude", - "AlbumId": 328, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Marc-Antoine Charpentier", - "Milliseconds": 110266, - "Bytes": 1973559, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 259, - "Name": "The 12 Cellists of The Berlin Philharmonic", - "Albums": [ - { - "AlbumId": 329, - "Title": "South American Getaway", - "ArtistId": 259, - "Tracks": [ - { - "TrackId": 3484, - "Name": "Adios nonino", - "AlbumId": 329, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Astor Piazzolla", - "Milliseconds": 289388, - "Bytes": 4781384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 106, - "CustomerId": 41, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 260, - "Name": "Adrian Leaper \u0026 Doreen de Feis", - "Albums": [ - { - "AlbumId": 330, - "Title": "G�recki: Symphony No. 3", - "ArtistId": 260, - "Tracks": [ - { - "TrackId": 3485, - "Name": "Symphony No. 3 Op. 36 for Orchestra and Soprano \"Symfonia Piesni Zalosnych\" \\ Lento E Largo - Tranquillissimo", - "AlbumId": 330, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Henryk G�recki", - "Milliseconds": 567494, - "Bytes": 9273123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 261, - "Name": "Roger Norrington, London Classical Players", - "Albums": [ - { - "AlbumId": 331, - "Title": "Purcell: The Fairy Queen", - "ArtistId": 261, - "Tracks": [ - { - "TrackId": 3486, - "Name": "Act IV, Symphony", - "AlbumId": 331, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Henry Purcell", - "Milliseconds": 364296, - "Bytes": 5987695, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 262, - "Name": "Charles Dutoit \u0026 L'Orchestre Symphonique de Montr�al", - "Albums": [ - { - "AlbumId": 332, - "Title": "The Ultimate Relexation Album", - "ArtistId": 262, - "Tracks": [ - { - "TrackId": 3487, - "Name": "3 Gymnop�dies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux", - "AlbumId": 332, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Erik Satie", - "Milliseconds": 385506, - "Bytes": 6458501, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 263, - "Name": "Equale Brass Ensemble, John Eliot Gardiner \u0026 Munich Monteverdi Orchestra and Choir", - "Albums": [ - { - "AlbumId": 333, - "Title": "Purcell: Music for the Queen Mary", - "ArtistId": 263, - "Tracks": [ - { - "TrackId": 3488, - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"", - "AlbumId": 333, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Henry Purcell", - "Milliseconds": 142081, - "Bytes": 2365930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 264, - "Name": "Kent Nagano and Orchestre de l'Op�ra de Lyon", - "Albums": [ - { - "AlbumId": 334, - "Title": "Weill: The Seven Deadly Sins", - "ArtistId": 264, - "Tracks": [ - { - "TrackId": 3489, - "Name": "Symphony No. 2: III. Allegro vivace", - "AlbumId": 334, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Kurt Weill", - "Milliseconds": 376510, - "Bytes": 6129146, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 265, - "Name": "Julian Bream", - "Albums": [ - { - "AlbumId": 335, - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major \u0026 Prelude, Fugue and Allegro", - "ArtistId": 265, - "Tracks": [ - { - "TrackId": 3490, - "Name": "Partita in E Major, BWV 1006A: I. Prelude", - "AlbumId": 335, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 285673, - "Bytes": 4744929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 266, - "Name": "Martin Roscoe", - "Albums": [ - { - "AlbumId": 337, - "Title": "Szymanowski: Piano Works, Vol. 1", - "ArtistId": 266, - "Tracks": [ - { - "TrackId": 3493, - "Name": "Metopes, Op. 29: Calypso", - "AlbumId": 337, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Karol Szymanowski", - "Milliseconds": 333669, - "Bytes": 5548755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 267, - "Name": "G�teborgs Symfoniker \u0026 Neeme J�rvi", - "Albums": [ - { - "AlbumId": 338, - "Title": "Nielsen: The Six Symphonies", - "ArtistId": 267, - "Tracks": [ - { - "TrackId": 3494, - "Name": "Symphony No. 2, Op. 16 - \"The Four Temperaments\": II. Allegro Comodo e Flemmatico", - "AlbumId": 338, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Carl Nielsen", - "Milliseconds": 286998, - "Bytes": 4834785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 268, - "Name": "Itzhak Perlman", - "Albums": [ - { - "AlbumId": 339, - "Title": "Great Recordings of the Century: Paganini's 24 Caprices", - "ArtistId": 268, - "Tracks": [ - { - "TrackId": 3495, - "Name": "24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor", - "AlbumId": 339, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Niccol� Paganini", - "Milliseconds": 265541, - "Bytes": 4371533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 269, - "Name": "Michele Campanella", - "Albums": [ - { - "AlbumId": 340, - "Title": "Liszt - 12 �tudes D'Execution Transcendante", - "ArtistId": 269, - "Tracks": [ - { - "TrackId": 3496, - "Name": "�tude 1, In C Major - Preludio (Presto) - Liszt", - "AlbumId": 340, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": null, - "Milliseconds": 51780, - "Bytes": 2229617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 270, - "Name": "Gerald Moore", - "Albums": [ - { - "AlbumId": 341, - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder", - "ArtistId": 270, - "Tracks": [ - { - "TrackId": 3497, - "Name": "Erlkonig, D.328", - "AlbumId": 341, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 261849, - "Bytes": 4307907, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 271, - "Name": "Mela Tenenbaum, Pro Musica Prague \u0026 Richard Kapp", - "Albums": [ - { - "AlbumId": 342, - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3", - "ArtistId": 271, - "Tracks": [ - { - "TrackId": 3498, - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro", - "AlbumId": 342, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "Pietro Antonio Locatelli", - "Milliseconds": 493573, - "Bytes": 16454937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 272, - "Name": "Emerson String Quartet", - "Albums": [ - { - "AlbumId": 344, - "Title": "Schubert: The Late String Quartets \u0026 String Quintet (3 CD's)", - "ArtistId": 272, - "Tracks": [ - { - "TrackId": 3500, - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai", - "AlbumId": 344, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Franz Schubert", - "Milliseconds": 139200, - "Bytes": 2283131, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 273, - "Name": "C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett \u0026 Sackbu", - "Albums": [ - { - "AlbumId": 345, - "Title": "Monteverdi: L'Orfeo", - "ArtistId": 273, - "Tracks": [ - { - "TrackId": 3501, - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)", - "AlbumId": 345, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Claudio Monteverdi", - "Milliseconds": 66639, - "Bytes": 1189062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 274, - "Name": "Nash Ensemble", - "Albums": [ - { - "AlbumId": 346, - "Title": "Mozart: Chamber Music", - "ArtistId": 274, - "Tracks": [ - { - "TrackId": 3502, - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro", - "AlbumId": 346, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 221331, - "Bytes": 3665114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 275, - "Name": "Philip Glass Ensemble", - "Albums": [ - { - "AlbumId": 347, - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)", - "ArtistId": 275, - "Tracks": [ - { - "TrackId": 3503, - "Name": "Koyaanisqatsi", - "AlbumId": 347, - "MediaTypeId": 2, - "GenreId": 10, - "Composer": "Philip Glass", - "Milliseconds": 206005, - "Bytes": 3305164, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/northwind-all.json b/tests/postgres/testdata/northwind-all.json deleted file mode 100644 index 94927ad..0000000 --- a/tests/postgres/testdata/northwind-all.json +++ /dev/null @@ -1,135339 +0,0 @@ -[ - { - "CustomerID": "ALFKI", - "CompanyName": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "Region": null, - "PostalCode": "12209", - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10643, - "CustomerID": "ALFKI", - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10643, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10643, - "CustomerID": "ALFKI", - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10643, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10643, - "CustomerID": "ALFKI", - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10643, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10692, - "CustomerID": "ALFKI", - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-10-31T00:00:00Z", - "ShippedDate": "1997-10-13T00:00:00Z", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10692, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10702, - "CustomerID": "ALFKI", - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10702, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10702, - "CustomerID": "ALFKI", - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10702, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10835, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10835, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10835, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10835, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10952, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10952, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10952, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10952, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11011, - "CustomerID": "ALFKI", - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11011, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11011, - "CustomerID": "ALFKI", - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11011, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ANATR", - "CompanyName": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "Region": null, - "PostalCode": "05021", - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10308, - "CustomerID": "ANATR", - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10308, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10308, - "CustomerID": "ANATR", - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10308, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10625, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00Z", - "RequiredDate": "1997-09-05T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10625, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10625, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00Z", - "RequiredDate": "1997-09-05T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10625, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10625, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00Z", - "RequiredDate": "1997-09-05T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10625, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10759, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10759, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "ANTON", - "CompanyName": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "Region": null, - "PostalCode": "05023", - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10365, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00Z", - "RequiredDate": "1996-12-25T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10365, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10507, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10507, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10507, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10507, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10573, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-20T00:00:00Z", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10573, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10573, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-20T00:00:00Z", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10573, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10573, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-20T00:00:00Z", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10573, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10677, - "CustomerID": "ANTON", - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10677, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10677, - "CustomerID": "ANTON", - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10677, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10682, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10682, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10682, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10682, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10682, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10682, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10856, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10856, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10856, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10856, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "AROUT", - "CompanyName": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "Region": null, - "PostalCode": "WA1 1DP", - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10355, - "CustomerID": "AROUT", - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00Z", - "RequiredDate": "1996-12-13T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10355, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10355, - "CustomerID": "AROUT", - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00Z", - "RequiredDate": "1996-12-13T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10355, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10383, - "CustomerID": "AROUT", - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10383, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10383, - "CustomerID": "AROUT", - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10383, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10383, - "CustomerID": "AROUT", - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10383, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10453, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10453, - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10453, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10453, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10707, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10707, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10707, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10707, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10707, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10707, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10741, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10741, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10743, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00Z", - "RequiredDate": "1997-12-15T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10743, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.05, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10793, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10793, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10793, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10793, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10864, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10864, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10864, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10864, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10920, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-03-31T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10920, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10953, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10953, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10953, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10953, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11016, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11016, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11016, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11016, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BERGS", - "CompanyName": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "Region": null, - "PostalCode": "S-958 22", - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10280, - "CustomerID": "BERGS", - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-09-11T00:00:00Z", - "ShippedDate": "1996-09-12T00:00:00Z", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10280, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10280, - "CustomerID": "BERGS", - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-09-11T00:00:00Z", - "ShippedDate": "1996-09-12T00:00:00Z", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10280, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10280, - "CustomerID": "BERGS", - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-09-11T00:00:00Z", - "ShippedDate": "1996-09-12T00:00:00Z", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10280, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10384, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10384, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10384, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10384, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10445, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00Z", - "RequiredDate": "1997-03-13T00:00:00Z", - "ShippedDate": "1997-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10445, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10445, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00Z", - "RequiredDate": "1997-03-13T00:00:00Z", - "ShippedDate": "1997-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10445, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10626, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-08T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10626, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10626, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-08T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10626, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10626, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-08T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10626, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10654, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10654, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10654, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10654, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10654, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10654, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10672, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-01T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10672, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10672, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-01T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10672, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10689, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-29T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10689, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10733, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-10T00:00:00Z", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10733, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10733, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-10T00:00:00Z", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10733, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10733, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-10T00:00:00Z", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10733, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10778, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1998-01-13T00:00:00Z", - "ShippedDate": "1997-12-24T00:00:00Z", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10778, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10857, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10857, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10857, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10857, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10857, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10857, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10866, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-03T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10866, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10866, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-03T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10866, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10866, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-03T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10866, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10875, - "CustomerID": "BERGS", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10875, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10875, - "CustomerID": "BERGS", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10875, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10875, - "CustomerID": "BERGS", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10875, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10924, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10924, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10924, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10924, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10924, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10924, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "BLAUS", - "CompanyName": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "Region": null, - "PostalCode": "68306", - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10501, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10501, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10509, - "CustomerID": "BLAUS", - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00Z", - "RequiredDate": "1997-05-15T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10509, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10582, - "CustomerID": "BLAUS", - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00Z", - "RequiredDate": "1997-07-25T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10582, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10582, - "CustomerID": "BLAUS", - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00Z", - "RequiredDate": "1997-07-25T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10582, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10614, - "CustomerID": "BLAUS", - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10614, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10614, - "CustomerID": "BLAUS", - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10614, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10614, - "CustomerID": "BLAUS", - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10614, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10853, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10853, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10956, - "CustomerID": "BLAUS", - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10956, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10956, - "CustomerID": "BLAUS", - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10956, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10956, - "CustomerID": "BLAUS", - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10956, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11058, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11058, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11058, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11058, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11058, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11058, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BLONP", - "CompanyName": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "Region": null, - "PostalCode": "67000", - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10265, - "CustomerID": "BLONP", - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10265, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10265, - "CustomerID": "BLONP", - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10265, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10297, - "CustomerID": "BLONP", - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10297, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10297, - "CustomerID": "BLONP", - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10297, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10449, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-27T00:00:00Z", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10449, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10449, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-27T00:00:00Z", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10449, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10449, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-27T00:00:00Z", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10449, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10559, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00Z", - "RequiredDate": "1997-07-03T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10559, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10559, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00Z", - "RequiredDate": "1997-07-03T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10559, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10566, - "CustomerID": "BLONP", - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10566, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10566, - "CustomerID": "BLONP", - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10566, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10566, - "CustomerID": "BLONP", - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10566, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10584, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10584, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10628, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00Z", - "RequiredDate": "1997-09-09T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10628, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10679, - "CustomerID": "BLONP", - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10679, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10826, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10826, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10826, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10826, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BOLID", - "CompanyName": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "Region": null, - "PostalCode": "28023", - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10326, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00Z", - "RequiredDate": "1996-11-07T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10326, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10326, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00Z", - "RequiredDate": "1996-11-07T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10326, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10326, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00Z", - "RequiredDate": "1996-11-07T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10326, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10801, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10801, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10801, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10801, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10970, - "CustomerID": "BOLID", - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10970, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "BONAP", - "CompanyName": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "Region": null, - "PostalCode": "13008", - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10331, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00Z", - "RequiredDate": "1996-11-27T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10331, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10340, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10340, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10340, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10340, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10340, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10340, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10362, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00Z", - "RequiredDate": "1996-12-23T00:00:00Z", - "ShippedDate": "1996-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10362, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10362, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00Z", - "RequiredDate": "1996-12-23T00:00:00Z", - "ShippedDate": "1996-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10362, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10362, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00Z", - "RequiredDate": "1996-12-23T00:00:00Z", - "ShippedDate": "1996-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10362, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10470, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10470, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10470, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10470, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10470, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10470, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10511, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10511, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10511, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10511, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10511, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10511, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10525, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00Z", - "RequiredDate": "1997-05-30T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10525, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10525, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00Z", - "RequiredDate": "1997-05-30T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10525, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10663, - "CustomerID": "BONAP", - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-09-24T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10663, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10663, - "CustomerID": "BONAP", - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-09-24T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10663, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10663, - "CustomerID": "BONAP", - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-09-24T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10663, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10715, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10715, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10715, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10715, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10730, - "CustomerID": "BONAP", - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00Z", - "RequiredDate": "1997-12-03T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10730, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10730, - "CustomerID": "BONAP", - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00Z", - "RequiredDate": "1997-12-03T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10730, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10730, - "CustomerID": "BONAP", - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00Z", - "RequiredDate": "1997-12-03T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10730, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10732, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00Z", - "RequiredDate": "1997-12-04T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10732, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, - "Discount": 0.25, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10827, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10827, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10827, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10827, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10871, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10871, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10871, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10871, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10871, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10871, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10876, - "CustomerID": "BONAP", - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10876, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10876, - "CustomerID": "BONAP", - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10876, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10940, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10940, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10940, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10940, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11076, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11076, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11076, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11076, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11076, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11076, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BOTTM", - "CompanyName": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": "T2F 8M4", - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10410, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-15T00:00:00Z", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10410, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10410, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-15T00:00:00Z", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10410, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10411, - "CustomerID": "BOTTM", - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10411, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10411, - "CustomerID": "BOTTM", - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10411, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10411, - "CustomerID": "BOTTM", - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10411, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.2, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10431, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10431, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10431, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10431, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10431, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10431, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10492, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00Z", - "RequiredDate": "1997-04-29T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10492, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10492, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00Z", - "RequiredDate": "1997-04-29T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10492, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10742, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-12-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10742, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10742, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-12-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10742, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10742, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-12-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10742, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10918, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10918, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10918, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10918, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10944, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10944, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10944, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10944, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10944, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10944, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10975, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-04-22T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.27, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10975, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10975, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-04-22T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.27, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10975, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10982, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 14.01, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10982, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10982, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 14.01, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10982, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11027, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11027, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11027, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11027, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11045, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11045, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11045, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11045, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11048, - "CustomerID": "BOTTM", - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11048, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BSBEV", - "CompanyName": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "Region": null, - "PostalCode": "EC2 5NT", - "Country": "UK", - "Phone": "(171) 555-1212", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10289, - "CustomerID": "BSBEV", - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00Z", - "RequiredDate": "1996-09-23T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10289, - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10289, - "CustomerID": "BSBEV", - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00Z", - "RequiredDate": "1996-09-23T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10289, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10471, - "CustomerID": "BSBEV", - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10471, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10471, - "CustomerID": "BSBEV", - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10471, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10484, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10484, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10484, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10484, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10484, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10484, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10538, - "CustomerID": "BSBEV", - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00Z", - "RequiredDate": "1997-06-12T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10538, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10538, - "CustomerID": "BSBEV", - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00Z", - "RequiredDate": "1997-06-12T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10538, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10578, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10578, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10578, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10578, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10599, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-07-21T00:00:00Z", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10599, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10943, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10943, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10943, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10943, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10943, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10943, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10947, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10947, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11023, - "CustomerID": "BSBEV", - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11023, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11023, - "CustomerID": "BSBEV", - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11023, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CACTU", - "CompanyName": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "Region": null, - "PostalCode": "1010", - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10521, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10521, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10521, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10521, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10521, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10521, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10782, - "CustomerID": "CACTU", - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10782, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10819, - "CustomerID": "CACTU", - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10819, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10819, - "CustomerID": "CACTU", - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10819, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10881, - "CustomerID": "CACTU", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10881, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10937, - "CustomerID": "CACTU", - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10937, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10937, - "CustomerID": "CACTU", - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10937, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11054, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11054, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11054, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11054, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CENTC", - "CompanyName": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "Region": null, - "PostalCode": "05022", - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10259, - "CustomerID": "CENTC", - "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00Z", - "RequiredDate": "1996-08-15T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05022", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10259, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10259, - "CustomerID": "CENTC", - "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00Z", - "RequiredDate": "1996-08-15T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05022", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10259, - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CHOPS", - "CompanyName": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "Region": null, - "PostalCode": "3012", - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10254, - "CustomerID": "CHOPS", - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00Z", - "RequiredDate": "1996-08-08T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10254, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10254, - "CustomerID": "CHOPS", - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00Z", - "RequiredDate": "1996-08-08T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10254, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10254, - "CustomerID": "CHOPS", - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00Z", - "RequiredDate": "1996-08-08T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10254, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10370, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-27T00:00:00Z", - "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10370, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10370, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-27T00:00:00Z", - "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10370, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10370, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-27T00:00:00Z", - "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10370, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10519, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00Z", - "RequiredDate": "1997-05-26T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10519, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10519, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00Z", - "RequiredDate": "1997-05-26T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10519, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10519, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00Z", - "RequiredDate": "1997-05-26T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10519, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10731, - "CustomerID": "CHOPS", - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00Z", - "RequiredDate": "1997-12-04T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10731, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10731, - "CustomerID": "CHOPS", - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00Z", - "RequiredDate": "1997-12-04T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10731, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10966, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10966, - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10966, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10966, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10966, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10966, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11029, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11029, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11029, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11029, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11041, - "CustomerID": "CHOPS", - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11041, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11041, - "CustomerID": "CHOPS", - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11041, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "COMMI", - "CompanyName": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05432-043", - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10466, - "CustomerID": "COMMI", - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10466, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10466, - "CustomerID": "COMMI", - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10466, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10494, - "CustomerID": "COMMI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-09T00:00:00Z", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10494, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10969, - "CustomerID": "COMMI", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10969, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11042, - "CustomerID": "COMMI", - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11042, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11042, - "CustomerID": "COMMI", - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11042, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CONSH", - "CompanyName": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "Region": null, - "PostalCode": "WX1 6LT", - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10435, - "CustomerID": "CONSH", - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10435, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10435, - "CustomerID": "CONSH", - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10435, - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10435, - "CustomerID": "CONSH", - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10435, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10462, - "CustomerID": "CONSH", - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00Z", - "RequiredDate": "1997-03-31T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10462, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10462, - "CustomerID": "CONSH", - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00Z", - "RequiredDate": "1997-03-31T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10462, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10848, - "CustomerID": "CONSH", - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10848, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10848, - "CustomerID": "CONSH", - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10848, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "DRACD", - "CompanyName": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "Region": null, - "PostalCode": "52066", - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10363, - "CustomerID": "DRACD", - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1996-12-24T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10363, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10363, - "CustomerID": "DRACD", - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1996-12-24T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10363, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10363, - "CustomerID": "DRACD", - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1996-12-24T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10363, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10391, - "CustomerID": "DRACD", - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10391, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10797, - "CustomerID": "DRACD", - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10797, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10825, - "CustomerID": "DRACD", - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10825, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10825, - "CustomerID": "DRACD", - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10825, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11036, - "CustomerID": "DRACD", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11036, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11036, - "CustomerID": "DRACD", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11036, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11067, - "CustomerID": "DRACD", - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11067, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "DUMON", - "CompanyName": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "Region": null, - "PostalCode": "44000", - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10311, - "CustomerID": "DUMON", - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10311, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10311, - "CustomerID": "DUMON", - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10311, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10609, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00Z", - "RequiredDate": "1997-08-21T00:00:00Z", - "ShippedDate": "1997-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10609, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10609, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00Z", - "RequiredDate": "1997-08-21T00:00:00Z", - "ShippedDate": "1997-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10609, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10609, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00Z", - "RequiredDate": "1997-08-21T00:00:00Z", - "ShippedDate": "1997-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10609, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10683, - "CustomerID": "DUMON", - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10683, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10890, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10890, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10890, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10890, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10890, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10890, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "EASTC", - "CompanyName": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "Region": null, - "PostalCode": "WX3 6FW", - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10364, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1997-01-07T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10364, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10364, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1997-01-07T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10364, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10400, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10400, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10400, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10400, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10400, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10400, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10532, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00Z", - "RequiredDate": "1997-06-06T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10532, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10532, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00Z", - "RequiredDate": "1997-06-06T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10532, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10726, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10726, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10726, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10726, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10987, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10987, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10987, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10987, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10987, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10987, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11047, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11047, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11047, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11047, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11056, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11056, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11056, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11056, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11056, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11056, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ERNSH", - "CompanyName": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "Region": null, - "PostalCode": "8010", - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10258, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10258, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10258, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10258, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10258, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10258, - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.05, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10402, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10402, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10402, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10402, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10403, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10403, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10403, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10403, - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10442, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00Z", - "RequiredDate": "1997-03-11T00:00:00Z", - "ShippedDate": "1997-02-18T00:00:00Z", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10442, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10442, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00Z", - "RequiredDate": "1997-03-11T00:00:00Z", - "ShippedDate": "1997-02-18T00:00:00Z", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10442, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10442, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00Z", - "RequiredDate": "1997-03-11T00:00:00Z", - "ShippedDate": "1997-02-18T00:00:00Z", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10442, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10571, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-29T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10571, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.15, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10571, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-29T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10571, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10595, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00Z", - "RequiredDate": "1997-08-07T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10595, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10595, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00Z", - "RequiredDate": "1997-08-07T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10595, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10595, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00Z", - "RequiredDate": "1997-08-07T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10595, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.15, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10667, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10667, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10667, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10667, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10764, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10764, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10764, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10764, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10771, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00Z", - "RequiredDate": "1998-01-07T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10771, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10773, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1998-01-08T00:00:00Z", - "ShippedDate": "1997-12-16T00:00:00Z", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10773, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10773, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1998-01-08T00:00:00Z", - "ShippedDate": "1997-12-16T00:00:00Z", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10773, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10773, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1998-01-08T00:00:00Z", - "ShippedDate": "1997-12-16T00:00:00Z", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10773, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.05, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10795, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-20T00:00:00Z", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10795, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10795, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-20T00:00:00Z", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10795, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10854, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-05T00:00:00Z", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10854, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.15, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10854, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-05T00:00:00Z", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10854, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10968, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10968, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10968, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10968, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10968, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10968, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.15, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.15, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11008, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11008, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11008, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11008, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.05, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11008, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11008, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11017, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11017, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11017, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11017, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11017, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11017, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "FAMIA", - "CompanyName": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05442-030", - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10386, - "CustomerID": "FAMIA", - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-25T00:00:00Z", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10386, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10386, - "CustomerID": "FAMIA", - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-25T00:00:00Z", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10386, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10414, - "CustomerID": "FAMIA", - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-17T00:00:00Z", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10414, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10414, - "CustomerID": "FAMIA", - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-17T00:00:00Z", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10414, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.15, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10581, - "CustomerID": "FAMIA", - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-02T00:00:00Z", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10581, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10650, - "CustomerID": "FAMIA", - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00Z", - "RequiredDate": "1997-09-26T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10650, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10650, - "CustomerID": "FAMIA", - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00Z", - "RequiredDate": "1997-09-26T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10650, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10650, - "CustomerID": "FAMIA", - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00Z", - "RequiredDate": "1997-09-26T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10650, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10725, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10725, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10725, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10725, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10725, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10725, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FISSA", - "CompanyName": "FISSA Fabrica Inter. Salchichas S.A.", - "ContactName": "Diego Roel", - "ContactTitle": "Accounting Manager", - "Address": "C/ Moralzarzal, 86", - "City": "Madrid", - "Region": null, - "PostalCode": "28034", - "Country": "Spain", - "Phone": "(91) 555 94 44", - "Fax": "(91) 555 55 93", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": null - }, - { - "CustomerID": "FOLIG", - "CompanyName": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Assistant Sales Agent", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "Region": null, - "PostalCode": "59000", - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10408, - "CustomerID": "FOLIG", - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00Z", - "RequiredDate": "1997-02-05T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10408, - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10408, - "CustomerID": "FOLIG", - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00Z", - "RequiredDate": "1997-02-05T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10408, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10408, - "CustomerID": "FOLIG", - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00Z", - "RequiredDate": "1997-02-05T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10408, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10480, - "CustomerID": "FOLIG", - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10480, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10480, - "CustomerID": "FOLIG", - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10480, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10763, - "CustomerID": "FOLIG", - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10763, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10763, - "CustomerID": "FOLIG", - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10763, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10763, - "CustomerID": "FOLIG", - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10763, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FOLKO", - "CompanyName": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "Region": null, - "PostalCode": "S-844 67", - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10264, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00Z", - "RequiredDate": "1996-08-21T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10264, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10264, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00Z", - "RequiredDate": "1996-08-21T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10264, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10378, - "CustomerID": "FOLKO", - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00Z", - "RequiredDate": "1997-01-07T00:00:00Z", - "ShippedDate": "1996-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10378, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10434, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00Z", - "RequiredDate": "1997-03-03T00:00:00Z", - "ShippedDate": "1997-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10434, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10434, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00Z", - "RequiredDate": "1997-03-03T00:00:00Z", - "ShippedDate": "1997-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10434, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10460, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10460, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10460, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10460, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10533, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-22T00:00:00Z", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10533, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10533, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-22T00:00:00Z", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10533, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10533, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-22T00:00:00Z", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10533, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10561, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10561, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10561, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10561, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10703, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-10-20T00:00:00Z", - "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10703, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10703, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-10-20T00:00:00Z", - "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10703, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10703, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-10-20T00:00:00Z", - "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10703, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10774, - "CustomerID": "FOLKO", - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10774, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10774, - "CustomerID": "FOLKO", - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10774, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10824, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10824, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10824, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10824, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10880, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10880, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10880, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10880, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10880, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10880, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10902, - "CustomerID": "FOLKO", - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10902, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10902, - "CustomerID": "FOLKO", - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10902, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10955, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10955, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10980, - "CustomerID": "FOLKO", - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10980, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10993, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10993, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10993, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10993, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11050, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11050, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FRANK", - "CompanyName": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "Region": null, - "PostalCode": "80805", - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10267, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00Z", - "RequiredDate": "1996-08-26T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10267, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10267, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00Z", - "RequiredDate": "1996-08-26T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10267, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10267, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00Z", - "RequiredDate": "1996-08-26T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10267, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10396, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1997-01-06T00:00:00Z", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10396, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10396, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1997-01-06T00:00:00Z", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10396, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10396, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1997-01-06T00:00:00Z", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10396, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10488, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00Z", - "RequiredDate": "1997-04-24T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10488, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10488, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00Z", - "RequiredDate": "1997-04-24T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10488, - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10560, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10560, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10560, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10560, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10653, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10653, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10653, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10653, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10675, - "CustomerID": "FRANK", - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00Z", - "RequiredDate": "1997-10-17T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10675, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10675, - "CustomerID": "FRANK", - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00Z", - "RequiredDate": "1997-10-17T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10675, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10675, - "CustomerID": "FRANK", - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00Z", - "RequiredDate": "1997-10-17T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10675, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10717, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10717, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.05, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10717, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10717, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10717, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10717, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10791, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-01T00:00:00Z", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10791, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10791, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-01T00:00:00Z", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10791, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10859, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10859, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10859, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10859, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10859, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10859, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10929, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10929, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10929, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10929, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10929, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10929, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11012, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11012, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11012, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11012, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11012, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11012, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FRANR", - "CompanyName": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "Region": null, - "PostalCode": "44000", - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10671, - "CustomerID": "FRANR", - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-09-24T00:00:00Z", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10671, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10671, - "CustomerID": "FRANR", - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-09-24T00:00:00Z", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10671, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10671, - "CustomerID": "FRANR", - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-09-24T00:00:00Z", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10671, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10860, - "CustomerID": "FRANR", - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10860, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10860, - "CustomerID": "FRANR", - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10860, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10971, - "CustomerID": "FRANR", - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10971, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "FRANS", - "CompanyName": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "Region": null, - "PostalCode": "10100", - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10422, - "CustomerID": "FRANS", - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00Z", - "RequiredDate": "1997-02-19T00:00:00Z", - "ShippedDate": "1997-01-31T00:00:00Z", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10422, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10710, - "CustomerID": "FRANS", - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10710, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10710, - "CustomerID": "FRANS", - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10710, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10753, - "CustomerID": "FRANS", - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00Z", - "RequiredDate": "1997-12-23T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10753, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10753, - "CustomerID": "FRANS", - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00Z", - "RequiredDate": "1997-12-23T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10753, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10807, - "CustomerID": "FRANS", - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10807, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11026, - "CustomerID": "FRANS", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11026, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11026, - "CustomerID": "FRANS", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11026, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11060, - "CustomerID": "FRANS", - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11060, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11060, - "CustomerID": "FRANS", - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11060, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "FURIB", - "CompanyName": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "Region": null, - "PostalCode": "1675", - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10328, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00Z", - "RequiredDate": "1996-11-11T00:00:00Z", - "ShippedDate": "1996-10-17T00:00:00Z", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10328, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10328, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00Z", - "RequiredDate": "1996-11-11T00:00:00Z", - "ShippedDate": "1996-10-17T00:00:00Z", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10328, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10328, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00Z", - "RequiredDate": "1996-11-11T00:00:00Z", - "ShippedDate": "1996-10-17T00:00:00Z", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10328, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10352, - "CustomerID": "FURIB", - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10352, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10352, - "CustomerID": "FURIB", - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10352, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10491, - "CustomerID": "FURIB", - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10491, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10491, - "CustomerID": "FURIB", - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10491, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.15, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10551, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10551, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10551, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10551, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10551, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10551, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10604, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10604, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10604, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10604, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10664, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10664, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10664, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10664, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10664, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10664, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10963, - "CustomerID": "FURIB", - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-26T00:00:00Z", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10963, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GALED", - "CompanyName": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "Region": null, - "PostalCode": "08022", - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10366, - "CustomerID": "GALED", - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1996-12-30T00:00:00Z", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10366, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10366, - "CustomerID": "GALED", - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1996-12-30T00:00:00Z", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10366, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10426, - "CustomerID": "GALED", - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00Z", - "RequiredDate": "1997-02-24T00:00:00Z", - "ShippedDate": "1997-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10426, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10426, - "CustomerID": "GALED", - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00Z", - "RequiredDate": "1997-02-24T00:00:00Z", - "ShippedDate": "1997-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10426, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10568, - "CustomerID": "GALED", - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00Z", - "RequiredDate": "1997-07-11T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10568, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10887, - "CustomerID": "GALED", - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-02-16T00:00:00Z", - "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10887, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10928, - "CustomerID": "GALED", - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10928, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10928, - "CustomerID": "GALED", - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10928, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GODOS", - "CompanyName": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "Region": null, - "PostalCode": "41101", - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10303, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00Z", - "RequiredDate": "1996-10-09T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10303, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10303, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00Z", - "RequiredDate": "1996-10-09T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10303, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10303, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00Z", - "RequiredDate": "1996-10-09T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10303, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10629, - "CustomerID": "GODOS", - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00Z", - "RequiredDate": "1997-09-09T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10629, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10629, - "CustomerID": "GODOS", - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00Z", - "RequiredDate": "1997-09-09T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10629, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10874, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10874, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10888, - "CustomerID": "GODOS", - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10888, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10888, - "CustomerID": "GODOS", - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10888, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10911, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10911, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10911, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10911, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10911, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10911, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10948, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10948, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10948, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10948, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10948, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10948, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11009, - "CustomerID": "GODOS", - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11009, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11009, - "CustomerID": "GODOS", - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11009, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11009, - "CustomerID": "GODOS", - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11009, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11037, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11037, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GOURL", - "CompanyName": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": "04876-786", - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10423, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10423, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10423, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10423, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10652, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10652, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10652, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10652, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10685, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10685, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10685, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10685, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10685, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10685, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10709, - "CustomerID": "GOURL", - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10709, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10709, - "CustomerID": "GOURL", - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10709, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10709, - "CustomerID": "GOURL", - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10709, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10734, - "CustomerID": "GOURL", - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-12T00:00:00Z", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10734, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10734, - "CustomerID": "GOURL", - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-12T00:00:00Z", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10734, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10734, - "CustomerID": "GOURL", - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-12T00:00:00Z", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10734, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10777, - "CustomerID": "GOURL", - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10777, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10790, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10790, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.15, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10790, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10790, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10959, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10959, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11049, - "CustomerID": "GOURL", - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11049, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11049, - "CustomerID": "GOURL", - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11049, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GREAL", - "CompanyName": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": "97403", - "Country": "USA", - "Phone": "(503) 555-7555", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10528, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10528, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10528, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10528, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10528, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10528, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10589, - "CustomerID": "GREAL", - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00Z", - "RequiredDate": "1997-08-01T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10589, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10617, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-04T00:00:00Z", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10617, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10656, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10656, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10656, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10656, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10656, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10656, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10681, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10681, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10681, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10681, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10681, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10681, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10816, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-02-03T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10816, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10816, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-02-03T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10816, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10936, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10936, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11006, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-15T00:00:00Z", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11006, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11006, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-15T00:00:00Z", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11006, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11040, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 18.84, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11040, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11061, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-06-11T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11061, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GROSR", - "CompanyName": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": "1081", - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10268, - "CustomerID": "GROSR", - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00Z", - "RequiredDate": "1996-08-27T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10268, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10268, - "CustomerID": "GROSR", - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00Z", - "RequiredDate": "1996-08-27T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10268, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10785, - "CustomerID": "GROSR", - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10785, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10785, - "CustomerID": "GROSR", - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10785, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "HANAR", - "CompanyName": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Rio de Janeiro", - "Region": "RJ", - "PostalCode": "05454-876", - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10250, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-12T00:00:00Z", - "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10250, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10250, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-12T00:00:00Z", - "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10250, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10250, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-12T00:00:00Z", - "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10250, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10253, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1996-07-10T00:00:00Z", - "RequiredDate": "1996-07-24T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 58.17, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10253, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10253, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1996-07-10T00:00:00Z", - "RequiredDate": "1996-07-24T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 58.17, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10253, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10253, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1996-07-10T00:00:00Z", - "RequiredDate": "1996-07-24T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 58.17, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10253, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10645, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00Z", - "RequiredDate": "1997-09-23T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10645, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10645, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00Z", - "RequiredDate": "1997-09-23T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10645, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10690, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10690, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10690, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10690, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10770, - "CustomerID": "HANAR", - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00Z", - "RequiredDate": "1998-01-06T00:00:00Z", - "ShippedDate": "1997-12-17T00:00:00Z", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10770, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10783, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10783, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10783, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10783, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10886, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10886, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10886, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10886, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10886, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10886, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10903, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10903, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10903, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10903, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10903, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10903, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10922, - "CustomerID": "HANAR", - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-03-31T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10922, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10922, - "CustomerID": "HANAR", - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-03-31T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10922, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10925, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10925, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10925, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10925, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10981, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10981, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11022, - "CustomerID": "HANAR", - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11022, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11022, - "CustomerID": "HANAR", - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11022, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11052, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11052, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11052, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11052, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "HILAA", - "CompanyName": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": "5022", - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10257, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00Z", - "RequiredDate": "1996-08-13T00:00:00Z", - "ShippedDate": "1996-07-22T00:00:00Z", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10257, - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10257, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00Z", - "RequiredDate": "1996-08-13T00:00:00Z", - "ShippedDate": "1996-07-22T00:00:00Z", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10257, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10257, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00Z", - "RequiredDate": "1996-08-13T00:00:00Z", - "ShippedDate": "1996-07-22T00:00:00Z", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10257, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10395, - "CustomerID": "HILAA", - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00Z", - "RequiredDate": "1997-01-23T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10395, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10395, - "CustomerID": "HILAA", - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00Z", - "RequiredDate": "1997-01-23T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10395, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10395, - "CustomerID": "HILAA", - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00Z", - "RequiredDate": "1997-01-23T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10395, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10476, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10476, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10476, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10476, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10486, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10486, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10486, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10486, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10486, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10486, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10490, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-03T00:00:00Z", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10490, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10490, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-03T00:00:00Z", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10490, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10490, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-03T00:00:00Z", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10490, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10498, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00Z", - "RequiredDate": "1997-05-05T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10498, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10498, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00Z", - "RequiredDate": "1997-05-05T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10498, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10498, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00Z", - "RequiredDate": "1997-05-05T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10498, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10552, - "CustomerID": "HILAA", - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00Z", - "RequiredDate": "1997-06-26T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10552, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10552, - "CustomerID": "HILAA", - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00Z", - "RequiredDate": "1997-06-26T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10552, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10601, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-27T00:00:00Z", - "ShippedDate": "1997-07-22T00:00:00Z", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10601, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10601, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-27T00:00:00Z", - "ShippedDate": "1997-07-22T00:00:00Z", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10601, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10613, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10613, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10613, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10613, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10641, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10641, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10641, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10641, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10705, - "CustomerID": "HILAA", - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00Z", - "RequiredDate": "1997-11-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10705, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10705, - "CustomerID": "HILAA", - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00Z", - "RequiredDate": "1997-11-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10705, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10863, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10863, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10863, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10863, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10901, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10901, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10901, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10901, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10957, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10957, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10957, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10957, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10957, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10957, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10960, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10960, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10960, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10960, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10976, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10976, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "HUNGC", - "CompanyName": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": "97827", - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10375, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00Z", - "RequiredDate": "1997-01-03T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10375, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10375, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00Z", - "RequiredDate": "1997-01-03T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10375, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10394, - "CustomerID": "HUNGC", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10394, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10394, - "CustomerID": "HUNGC", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10394, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10415, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00Z", - "RequiredDate": "1997-02-12T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10415, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10415, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00Z", - "RequiredDate": "1997-02-12T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10415, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10600, - "CustomerID": "HUNGC", - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-13T00:00:00Z", - "ShippedDate": "1997-07-21T00:00:00Z", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10600, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10600, - "CustomerID": "HUNGC", - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-13T00:00:00Z", - "ShippedDate": "1997-07-21T00:00:00Z", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10600, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10660, - "CustomerID": "HUNGC", - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00Z", - "RequiredDate": "1997-10-06T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10660, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "HUNGO", - "CompanyName": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "PostalCode": null, - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10373, - "CustomerID": "HUNGO", - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-11T00:00:00Z", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10373, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10373, - "CustomerID": "HUNGO", - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-11T00:00:00Z", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10373, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10429, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10429, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10429, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10429, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10503, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10503, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10503, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10503, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10516, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10516, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10516, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10516, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10516, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10516, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10567, - "CustomerID": "HUNGO", - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-17T00:00:00Z", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10567, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10567, - "CustomerID": "HUNGO", - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-17T00:00:00Z", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10567, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10567, - "CustomerID": "HUNGO", - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-17T00:00:00Z", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10567, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10661, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00Z", - "RequiredDate": "1997-10-07T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10661, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10661, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00Z", - "RequiredDate": "1997-10-07T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10661, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10687, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-30T00:00:00Z", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10687, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10687, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-30T00:00:00Z", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10687, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10687, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-30T00:00:00Z", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10687, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10701, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-10-27T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10701, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10701, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-10-27T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10701, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10701, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-10-27T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10701, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10712, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-31T00:00:00Z", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10712, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.05, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10712, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-31T00:00:00Z", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10712, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10736, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10736, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10736, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10736, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10897, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-25T00:00:00Z", - "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10897, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10897, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-25T00:00:00Z", - "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10897, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10912, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10912, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10912, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10912, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10985, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10985, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10985, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10985, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10985, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10985, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11063, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11063, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11063, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11063, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11063, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11063, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ISLAT", - "CompanyName": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Isle of Wight", - "PostalCode": "PO31 7PJ", - "Country": "UK", - "Phone": "(198) 555-8888", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10315, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00Z", - "RequiredDate": "1996-10-24T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10315, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10315, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00Z", - "RequiredDate": "1996-10-24T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10315, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10318, - "CustomerID": "ISLAT", - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00Z", - "RequiredDate": "1996-10-29T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10318, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10318, - "CustomerID": "ISLAT", - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00Z", - "RequiredDate": "1996-10-29T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10318, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10321, - "CustomerID": "ISLAT", - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00Z", - "RequiredDate": "1996-10-31T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10321, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10473, - "CustomerID": "ISLAT", - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10473, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10473, - "CustomerID": "ISLAT", - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10473, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10674, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10674, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10749, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10749, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10749, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10749, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10749, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10749, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10798, - "CustomerID": "ISLAT", - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10798, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10798, - "CustomerID": "ISLAT", - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10798, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10933, - "CustomerID": "ISLAT", - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10933, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10933, - "CustomerID": "ISLAT", - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10933, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "KOENE", - "CompanyName": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "Region": null, - "PostalCode": "14776", - "Country": "Germany", - "Phone": "0555-09876", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10323, - "CustomerID": "KOENE", - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00Z", - "RequiredDate": "1996-11-04T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10323, - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10323, - "CustomerID": "KOENE", - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00Z", - "RequiredDate": "1996-11-04T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10323, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10323, - "CustomerID": "KOENE", - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00Z", - "RequiredDate": "1996-11-04T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10323, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10456, - "CustomerID": "KOENE", - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10456, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10456, - "CustomerID": "KOENE", - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10456, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10457, - "CustomerID": "KOENE", - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00Z", - "RequiredDate": "1997-03-25T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10457, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10468, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00Z", - "RequiredDate": "1997-04-04T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10468, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10468, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00Z", - "RequiredDate": "1997-04-04T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10468, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10506, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10506, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10506, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10506, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10542, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-05-26T00:00:00Z", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10542, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10542, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-05-26T00:00:00Z", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10542, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10630, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10630, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10630, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10630, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10799, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10799, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10799, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10799, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10799, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10799, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10849, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10849, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10849, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10849, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11028, - "CustomerID": "KOENE", - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11028, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11028, - "CustomerID": "KOENE", - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11028, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LACOR", - "CompanyName": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "Region": null, - "PostalCode": "78000", - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10858, - "CustomerID": "LACOR", - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10858, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10858, - "CustomerID": "LACOR", - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10858, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10858, - "CustomerID": "LACOR", - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10858, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10927, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10927, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10927, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10927, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10927, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10927, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10972, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-26T00:00:00Z", - "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10972, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10972, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-26T00:00:00Z", - "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10972, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10973, - "CustomerID": "LACOR", - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10973, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10973, - "CustomerID": "LACOR", - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10973, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10973, - "CustomerID": "LACOR", - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10973, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LAMAI", - "CompanyName": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "Region": null, - "PostalCode": "31000", - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10350, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10350, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10350, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10350, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10358, - "CustomerID": "LAMAI", - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00Z", - "RequiredDate": "1996-12-18T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10358, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10358, - "CustomerID": "LAMAI", - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00Z", - "RequiredDate": "1996-12-18T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10358, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10358, - "CustomerID": "LAMAI", - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00Z", - "RequiredDate": "1996-12-18T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10358, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10371, - "CustomerID": "LAMAI", - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10371, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10413, - "CustomerID": "LAMAI", - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10413, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10413, - "CustomerID": "LAMAI", - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10413, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10413, - "CustomerID": "LAMAI", - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10413, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10425, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00Z", - "RequiredDate": "1997-02-21T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10425, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10425, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00Z", - "RequiredDate": "1997-02-21T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10425, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10454, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-25T00:00:00Z", - "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10454, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10454, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-25T00:00:00Z", - "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10454, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10454, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-25T00:00:00Z", - "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10454, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10493, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10493, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10493, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10493, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10493, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10493, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10500, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-04-17T00:00:00Z", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10500, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10500, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-04-17T00:00:00Z", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10500, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10610, - "CustomerID": "LAMAI", - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10610, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10631, - "CustomerID": "LAMAI", - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00Z", - "RequiredDate": "1997-09-11T00:00:00Z", - "ShippedDate": "1997-08-15T00:00:00Z", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10631, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10787, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10787, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10787, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10787, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10923, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10923, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10923, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10923, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10923, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10923, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11051, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11051, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LAUGB", - "CompanyName": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": "V3F 2K1", - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10495, - "CustomerID": "LAUGB", - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00Z", - "RequiredDate": "1997-05-01T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10495, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10495, - "CustomerID": "LAUGB", - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00Z", - "RequiredDate": "1997-05-01T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10495, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10495, - "CustomerID": "LAUGB", - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00Z", - "RequiredDate": "1997-05-01T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10495, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10620, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10620, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10620, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10620, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10810, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10810, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10810, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10810, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10810, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10810, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LAZYK", - "CompanyName": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": "99362", - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10482, - "CustomerID": "LAZYK", - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00Z", - "RequiredDate": "1997-04-18T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": "99362", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10482, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10545, - "CustomerID": "LAZYK", - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00Z", - "RequiredDate": "1997-06-19T00:00:00Z", - "ShippedDate": "1997-06-26T00:00:00Z", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": "99362", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10545, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LEHMS", - "CompanyName": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "Region": null, - "PostalCode": "60528", - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10279, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00Z", - "RequiredDate": "1996-09-10T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10279, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10343, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-11-06T00:00:00Z", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10343, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10343, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-11-06T00:00:00Z", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10343, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.05, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10343, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-11-06T00:00:00Z", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10343, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10497, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10497, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10497, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10497, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10497, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10497, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10534, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10534, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10534, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10534, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10534, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10534, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10557, - "CustomerID": "LEHMS", - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10557, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10557, - "CustomerID": "LEHMS", - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10557, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10592, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00Z", - "RequiredDate": "1997-08-05T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10592, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10592, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00Z", - "RequiredDate": "1997-08-05T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10592, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.05, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10593, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-08-13T00:00:00Z", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10593, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10593, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-08-13T00:00:00Z", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10593, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10593, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-08-13T00:00:00Z", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10593, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10772, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00Z", - "RequiredDate": "1998-01-07T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10772, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10772, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00Z", - "RequiredDate": "1998-01-07T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10772, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10862, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10862, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10862, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10862, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10891, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00Z", - "RequiredDate": "1998-03-17T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10891, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10934, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10934, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LETSS", - "CompanyName": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": "94117", - "Country": "USA", - "Phone": "(415) 555-5938", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10579, - "CustomerID": "LETSS", - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00Z", - "RequiredDate": "1997-07-23T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10579, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10579, - "CustomerID": "LETSS", - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00Z", - "RequiredDate": "1997-07-23T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10579, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10719, - "CustomerID": "LETSS", - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10719, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10719, - "CustomerID": "LETSS", - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10719, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10719, - "CustomerID": "LETSS", - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10719, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10735, - "CustomerID": "LETSS", - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00Z", - "RequiredDate": "1997-12-08T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10735, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10735, - "CustomerID": "LETSS", - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00Z", - "RequiredDate": "1997-12-08T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10735, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10884, - "CustomerID": "LETSS", - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10884, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10884, - "CustomerID": "LETSS", - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10884, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10884, - "CustomerID": "LETSS", - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10884, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LILAS", - "CompanyName": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": "3508", - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10296, - "CustomerID": "LILAS", - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00Z", - "RequiredDate": "1996-10-01T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10296, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10296, - "CustomerID": "LILAS", - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00Z", - "RequiredDate": "1996-10-01T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10296, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10296, - "CustomerID": "LILAS", - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00Z", - "RequiredDate": "1996-10-01T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10296, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10330, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10330, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10330, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10330, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10357, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10357, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10357, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10357, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10357, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10357, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10381, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10381, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10461, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10461, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10461, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10461, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10461, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10461, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10499, - "CustomerID": "LILAS", - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00Z", - "RequiredDate": "1997-05-06T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10499, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10499, - "CustomerID": "LILAS", - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00Z", - "RequiredDate": "1997-05-06T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10499, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10543, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10543, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10543, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10543, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10780, - "CustomerID": "LILAS", - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-25T00:00:00Z", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10780, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10780, - "CustomerID": "LILAS", - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-25T00:00:00Z", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10780, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10899, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-02-26T00:00:00Z", - "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10899, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10997, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10997, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10997, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10997, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10997, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10997, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11065, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11065, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11065, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11065, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11071, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11071, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11071, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11071, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LINOD", - "CompanyName": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "I. de Margarita", - "Region": "Nueva Esparta", - "PostalCode": "4980", - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10405, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00Z", - "RequiredDate": "1997-02-03T00:00:00Z", - "ShippedDate": "1997-01-22T00:00:00Z", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10405, - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10638, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10638, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10638, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10638, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10638, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10638, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10729, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10729, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10729, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10729, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10729, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10729, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10811, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10811, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10811, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10811, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10811, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10811, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10838, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10838, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10838, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10838, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10838, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10838, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10840, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-16T00:00:00Z", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10840, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10840, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-16T00:00:00Z", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10840, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10919, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10919, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10919, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10919, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10919, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10919, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11014, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-15T00:00:00Z", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11014, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LONEP", - "CompanyName": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": "97219", - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10307, - "CustomerID": "LONEP", - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00Z", - "RequiredDate": "1996-10-15T00:00:00Z", - "ShippedDate": "1996-09-25T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10307, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10307, - "CustomerID": "LONEP", - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00Z", - "RequiredDate": "1996-10-15T00:00:00Z", - "ShippedDate": "1996-09-25T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10307, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10317, - "CustomerID": "LONEP", - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00Z", - "RequiredDate": "1996-10-28T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10317, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10544, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10544, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10544, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10544, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10662, - "CustomerID": "LONEP", - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00Z", - "RequiredDate": "1997-10-07T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10662, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10665, - "CustomerID": "LONEP", - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10665, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10665, - "CustomerID": "LONEP", - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10665, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10665, - "CustomerID": "LONEP", - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10665, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10867, - "CustomerID": "LONEP", - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-17T00:00:00Z", - "ShippedDate": "1998-02-11T00:00:00Z", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10867, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10883, - "CustomerID": "LONEP", - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10883, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11018, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11018, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11018, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11018, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11018, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11018, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "MAGAA", - "CompanyName": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "Region": null, - "PostalCode": "24100", - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10275, - "CustomerID": "MAGAA", - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00Z", - "RequiredDate": "1996-09-04T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10275, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10275, - "CustomerID": "MAGAA", - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00Z", - "RequiredDate": "1996-09-04T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10275, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10300, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10300, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10300, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10300, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10404, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10404, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10404, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10404, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10404, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10404, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10467, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10467, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10467, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10467, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10635, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00Z", - "RequiredDate": "1997-09-15T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10635, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10635, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00Z", - "RequiredDate": "1997-09-15T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10635, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10635, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00Z", - "RequiredDate": "1997-09-15T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10635, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10754, - "CustomerID": "MAGAA", - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00Z", - "RequiredDate": "1997-12-23T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10754, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10784, - "CustomerID": "MAGAA", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10784, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10784, - "CustomerID": "MAGAA", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10784, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10784, - "CustomerID": "MAGAA", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10784, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10818, - "CustomerID": "MAGAA", - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10818, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10818, - "CustomerID": "MAGAA", - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10818, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10939, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10939, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10939, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10939, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10950, - "CustomerID": "MAGAA", - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-13T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10950, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "MAISD", - "CompanyName": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "Region": null, - "PostalCode": "B-1180", - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10529, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00Z", - "RequiredDate": "1997-06-04T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10529, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10529, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00Z", - "RequiredDate": "1997-06-04T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10529, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10529, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00Z", - "RequiredDate": "1997-06-04T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10529, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10649, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-09-25T00:00:00Z", - "ShippedDate": "1997-08-29T00:00:00Z", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10649, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10649, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-09-25T00:00:00Z", - "ShippedDate": "1997-08-29T00:00:00Z", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10649, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10760, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1997-12-10T00:00:00Z", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10760, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10760, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1997-12-10T00:00:00Z", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10760, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10760, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1997-12-10T00:00:00Z", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10760, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10892, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00Z", - "RequiredDate": "1998-03-17T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10892, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10896, - "CustomerID": "MAISD", - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10896, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10896, - "CustomerID": "MAISD", - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10896, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11004, - "CustomerID": "MAISD", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11004, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11004, - "CustomerID": "MAISD", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11004, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "MEREP", - "CompanyName": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10332, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10332, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10332, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10332, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10332, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10332, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10339, - "CustomerID": "MEREP", - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00Z", - "RequiredDate": "1996-11-25T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10339, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10339, - "CustomerID": "MEREP", - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00Z", - "RequiredDate": "1996-11-25T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10339, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10339, - "CustomerID": "MEREP", - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00Z", - "RequiredDate": "1996-11-25T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10339, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10376, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00Z", - "RequiredDate": "1997-01-06T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10376, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10424, - "CustomerID": "MEREP", - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-20T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10424, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10424, - "CustomerID": "MEREP", - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-20T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10424, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10424, - "CustomerID": "MEREP", - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-20T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10424, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10505, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00Z", - "RequiredDate": "1997-05-12T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10505, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10565, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10565, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10565, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10565, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10570, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-15T00:00:00Z", - "ShippedDate": "1997-06-19T00:00:00Z", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10570, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10570, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-15T00:00:00Z", - "ShippedDate": "1997-06-19T00:00:00Z", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10570, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10590, - "CustomerID": "MEREP", - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10590, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10590, - "CustomerID": "MEREP", - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10590, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10618, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10618, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10618, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10618, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10618, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10618, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10619, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00Z", - "RequiredDate": "1997-09-01T00:00:00Z", - "ShippedDate": "1997-08-07T00:00:00Z", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10619, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10619, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00Z", - "RequiredDate": "1997-09-01T00:00:00Z", - "ShippedDate": "1997-08-07T00:00:00Z", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10619, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10724, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10724, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10724, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10724, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "MORGK", - "CompanyName": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "Region": null, - "PostalCode": "04179", - "Country": "Germany", - "Phone": "0342-023176", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10277, - "CustomerID": "MORGK", - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00Z", - "RequiredDate": "1996-09-06T00:00:00Z", - "ShippedDate": "1996-08-13T00:00:00Z", - "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10277, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10277, - "CustomerID": "MORGK", - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00Z", - "RequiredDate": "1996-09-06T00:00:00Z", - "ShippedDate": "1996-08-13T00:00:00Z", - "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10277, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10699, - "CustomerID": "MORGK", - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-13T00:00:00Z", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10699, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10779, - "CustomerID": "MORGK", - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1998-01-13T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10779, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10779, - "CustomerID": "MORGK", - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1998-01-13T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10779, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10945, - "CustomerID": "MORGK", - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10945, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10945, - "CustomerID": "MORGK", - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10945, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "NORTS", - "CompanyName": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "Region": null, - "PostalCode": "SW7 1RZ", - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10517, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10517, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10517, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10517, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10517, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10517, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10752, - "CustomerID": "NORTS", - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10752, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10752, - "CustomerID": "NORTS", - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10752, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11057, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11057, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "OCEAN", - "CompanyName": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "Region": null, - "PostalCode": "1010", - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10409, - "CustomerID": "OCEAN", - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10409, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10409, - "CustomerID": "OCEAN", - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10409, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10531, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10531, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10898, - "CustomerID": "OCEAN", - "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10898, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10958, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10958, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10958, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10958, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10958, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10958, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "OLDWO", - "CompanyName": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": "99508", - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10305, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00Z", - "RequiredDate": "1996-10-11T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10305, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10305, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00Z", - "RequiredDate": "1996-10-11T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10305, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10305, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00Z", - "RequiredDate": "1996-10-11T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10305, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10338, - "CustomerID": "OLDWO", - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00Z", - "RequiredDate": "1996-11-22T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10338, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10338, - "CustomerID": "OLDWO", - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00Z", - "RequiredDate": "1996-11-22T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10338, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10441, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-24T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10441, - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10594, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10594, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10594, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10594, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10680, - "CustomerID": "OLDWO", - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00Z", - "RequiredDate": "1997-10-22T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10680, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10680, - "CustomerID": "OLDWO", - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00Z", - "RequiredDate": "1997-10-22T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10680, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10680, - "CustomerID": "OLDWO", - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00Z", - "RequiredDate": "1997-10-22T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10680, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10706, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-11-13T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10706, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10706, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-11-13T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10706, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10706, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-11-13T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10706, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10808, - "CustomerID": "OLDWO", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10808, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10808, - "CustomerID": "OLDWO", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10808, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10965, - "CustomerID": "OLDWO", - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10965, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11034, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11034, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11034, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11034, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11034, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11034, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "OTTIK", - "CompanyName": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "Region": null, - "PostalCode": "50739", - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10407, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-04T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10407, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10407, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-04T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10407, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10407, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-04T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10407, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10508, - "CustomerID": "OTTIK", - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00Z", - "RequiredDate": "1997-05-14T00:00:00Z", - "ShippedDate": "1997-05-13T00:00:00Z", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10508, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10508, - "CustomerID": "OTTIK", - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00Z", - "RequiredDate": "1997-05-14T00:00:00Z", - "ShippedDate": "1997-05-13T00:00:00Z", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10508, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10580, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-01T00:00:00Z", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10580, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10580, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-01T00:00:00Z", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10580, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10580, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-01T00:00:00Z", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10580, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10684, - "CustomerID": "OTTIK", - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10684, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10684, - "CustomerID": "OTTIK", - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10684, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10684, - "CustomerID": "OTTIK", - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10684, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10766, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10766, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10766, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10766, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10766, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10766, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10833, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10833, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10833, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10833, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10833, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10833, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10999, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-01T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10999, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10999, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-01T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10999, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10999, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-01T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10999, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11020, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11020, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "PARIS", - "CompanyName": "Paris spécialités", - "ContactName": "Marie Bertrand", - "ContactTitle": "Owner", - "Address": "265, boulevard Charonne", - "City": "Paris", - "Region": null, - "PostalCode": "75012", - "Country": "France", - "Phone": "(1) 42.34.22.66", - "Fax": "(1) 42.34.22.77", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": null - }, - { - "CustomerID": "PERIC", - "CompanyName": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "Region": null, - "PostalCode": "05033", - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10322, - "CustomerID": "PERIC", - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00Z", - "RequiredDate": "1996-11-01T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10322, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10354, - "CustomerID": "PERIC", - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00Z", - "RequiredDate": "1996-12-12T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10354, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10354, - "CustomerID": "PERIC", - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00Z", - "RequiredDate": "1996-12-12T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10354, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10502, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00Z", - "RequiredDate": "1997-05-08T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10502, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10502, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00Z", - "RequiredDate": "1997-05-08T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10502, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10502, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00Z", - "RequiredDate": "1997-05-08T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10502, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10995, - "CustomerID": "PERIC", - "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-30T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10995, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10995, - "CustomerID": "PERIC", - "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-30T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10995, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11073, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11073, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11073, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11073, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "PICCO", - "CompanyName": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "Region": null, - "PostalCode": "5020", - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10353, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00Z", - "RequiredDate": "1996-12-11T00:00:00Z", - "ShippedDate": "1996-11-25T00:00:00Z", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10353, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10353, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00Z", - "RequiredDate": "1996-12-11T00:00:00Z", - "ShippedDate": "1996-11-25T00:00:00Z", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10353, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10392, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00Z", - "RequiredDate": "1997-01-21T00:00:00Z", - "ShippedDate": "1997-01-01T00:00:00Z", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10392, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10427, - "CustomerID": "PICCO", - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00Z", - "RequiredDate": "1997-02-24T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10427, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10489, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00Z", - "RequiredDate": "1997-04-25T00:00:00Z", - "ShippedDate": "1997-04-09T00:00:00Z", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10489, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10489, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00Z", - "RequiredDate": "1997-04-25T00:00:00Z", - "ShippedDate": "1997-04-09T00:00:00Z", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10489, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10597, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10597, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10597, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10597, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10597, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10597, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10686, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-08T00:00:00Z", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10686, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10686, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-08T00:00:00Z", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10686, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10844, - "CustomerID": "PICCO", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-18T00:00:00Z", - "ShippedDate": "1998-01-26T00:00:00Z", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10844, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11053, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11053, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11053, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11053, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11053, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11053, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "PRINI", - "CompanyName": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "Region": null, - "PostalCode": "1756", - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10336, - "CustomerID": "PRINI", - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00Z", - "RequiredDate": "1996-11-20T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10336, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10397, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-24T00:00:00Z", - "ShippedDate": "1997-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10397, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10397, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-24T00:00:00Z", - "ShippedDate": "1997-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10397, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10433, - "CustomerID": "PRINI", - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00Z", - "RequiredDate": "1997-03-03T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10433, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10477, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10477, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10477, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10477, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10477, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10477, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11007, - "CustomerID": "PRINI", - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11007, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11007, - "CustomerID": "PRINI", - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11007, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11007, - "CustomerID": "PRINI", - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11007, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "QUEDE", - "CompanyName": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Rio de Janeiro", - "Region": "RJ", - "PostalCode": "02389-673", - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10261, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10261, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10261, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10261, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10291, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10291, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10291, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10291, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10291, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10291, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10379, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00Z", - "RequiredDate": "1997-01-08T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 1, - "Freight": 45.03, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10379, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10379, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00Z", - "RequiredDate": "1997-01-08T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 1, - "Freight": 45.03, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10379, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10379, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00Z", - "RequiredDate": "1997-01-08T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 1, - "Freight": 45.03, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10379, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10587, - "CustomerID": "QUEDE", - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10587, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10587, - "CustomerID": "QUEDE", - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10587, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10587, - "CustomerID": "QUEDE", - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10587, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10647, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10647, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10647, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10647, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10720, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10720, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10720, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10720, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10794, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10794, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10794, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10794, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10989, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10989, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10989, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10989, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10989, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10989, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "QUEEN", - "CompanyName": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05487-020", - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10487, - "CustomerID": "QUEEN", - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-03-28T00:00:00Z", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10487, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10487, - "CustomerID": "QUEEN", - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-03-28T00:00:00Z", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10487, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10487, - "CustomerID": "QUEEN", - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-03-28T00:00:00Z", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10487, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10637, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10637, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10637, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10637, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10637, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10637, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10659, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10659, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10659, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10659, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10659, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10659, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10704, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10704, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10704, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10704, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10704, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10704, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10786, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-16T00:00:00Z", - "ShippedDate": "1997-12-23T00:00:00Z", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10786, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10786, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-16T00:00:00Z", - "ShippedDate": "1997-12-23T00:00:00Z", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10786, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10786, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-16T00:00:00Z", - "ShippedDate": "1997-12-23T00:00:00Z", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10786, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10868, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10868, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10868, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10868, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10868, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10868, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10913, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10913, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10913, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10913, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10913, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10913, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10914, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10914, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10961, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10961, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10961, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10961, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11068, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11068, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11068, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11068, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.15, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11068, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11068, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "QUICK", - "CompanyName": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "Region": null, - "PostalCode": "01307", - "Country": "Germany", - "Phone": "0372-035188", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.05, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10285, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00Z", - "RequiredDate": "1996-09-17T00:00:00Z", - "ShippedDate": "1996-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10285, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10285, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00Z", - "RequiredDate": "1996-09-17T00:00:00Z", - "ShippedDate": "1996-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10285, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10285, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00Z", - "RequiredDate": "1996-09-17T00:00:00Z", - "ShippedDate": "1996-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10285, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10286, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00Z", - "RequiredDate": "1996-09-18T00:00:00Z", - "ShippedDate": "1996-08-30T00:00:00Z", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10286, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10286, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00Z", - "RequiredDate": "1996-09-18T00:00:00Z", - "ShippedDate": "1996-08-30T00:00:00Z", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10286, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10313, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00Z", - "RequiredDate": "1996-10-22T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10313, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10345, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00Z", - "RequiredDate": "1996-12-02T00:00:00Z", - "ShippedDate": "1996-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10345, - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10345, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00Z", - "RequiredDate": "1996-12-02T00:00:00Z", - "ShippedDate": "1996-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10345, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10345, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00Z", - "RequiredDate": "1996-12-02T00:00:00Z", - "ShippedDate": "1996-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10345, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10361, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10361, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10361, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10361, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.15, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.15, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10527, - "CustomerID": "QUICK", - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10527, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10527, - "CustomerID": "QUICK", - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10527, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10549, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10549, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.15, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10549, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10549, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.15, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10549, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10549, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.15, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10588, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00Z", - "RequiredDate": "1997-07-31T00:00:00Z", - "ShippedDate": "1997-07-10T00:00:00Z", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10588, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10588, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00Z", - "RequiredDate": "1997-07-31T00:00:00Z", - "ShippedDate": "1997-07-10T00:00:00Z", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10588, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10694, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-11-03T00:00:00Z", - "ShippedDate": "1997-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10694, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10694, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-11-03T00:00:00Z", - "ShippedDate": "1997-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10694, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10694, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-11-03T00:00:00Z", - "ShippedDate": "1997-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10694, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10721, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-11-26T00:00:00Z", - "ShippedDate": "1997-10-31T00:00:00Z", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10721, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10765, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00Z", - "RequiredDate": "1998-01-01T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10765, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10788, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10788, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10788, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10788, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10865, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10865, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10865, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10865, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.05, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10878, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10878, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10991, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10991, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10991, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10991, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10991, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10991, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 90, - "Discount": 0.2, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10996, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-30T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10996, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "RANCH", - "CompanyName": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "Region": null, - "PostalCode": "1010", - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10448, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00Z", - "RequiredDate": "1997-03-17T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10448, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10448, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00Z", - "RequiredDate": "1997-03-17T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10448, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10716, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10716, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10716, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10716, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10716, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10716, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10828, - "CustomerID": "RANCH", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10828, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10828, - "CustomerID": "RANCH", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10828, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10916, - "CustomerID": "RANCH", - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10916, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10916, - "CustomerID": "RANCH", - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10916, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10916, - "CustomerID": "RANCH", - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10916, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11019, - "CustomerID": "RANCH", - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 3.17, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11019, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11019, - "CustomerID": "RANCH", - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 3.17, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11019, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "RATTC", - "CompanyName": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Assistant Sales Representative", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": "87110", - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10262, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00Z", - "RequiredDate": "1996-08-19T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10262, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10262, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00Z", - "RequiredDate": "1996-08-19T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10262, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10262, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00Z", - "RequiredDate": "1996-08-19T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10262, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10272, - "CustomerID": "RATTC", - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00Z", - "RequiredDate": "1996-08-30T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10272, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10272, - "CustomerID": "RATTC", - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00Z", - "RequiredDate": "1996-08-30T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10272, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10272, - "CustomerID": "RATTC", - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00Z", - "RequiredDate": "1996-08-30T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10272, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10314, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10314, - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10314, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10314, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10314, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10314, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10316, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00Z", - "RequiredDate": "1996-10-25T00:00:00Z", - "ShippedDate": "1996-10-08T00:00:00Z", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10316, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10316, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00Z", - "RequiredDate": "1996-10-25T00:00:00Z", - "ShippedDate": "1996-10-08T00:00:00Z", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10316, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10346, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10346, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10346, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10346, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10564, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-08T00:00:00Z", - "ShippedDate": "1997-06-16T00:00:00Z", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10564, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10564, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-08T00:00:00Z", - "ShippedDate": "1997-06-16T00:00:00Z", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10564, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10564, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-08T00:00:00Z", - "ShippedDate": "1997-06-16T00:00:00Z", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10564, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10569, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00Z", - "RequiredDate": "1997-07-14T00:00:00Z", - "ShippedDate": "1997-07-11T00:00:00Z", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10569, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10569, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00Z", - "RequiredDate": "1997-07-14T00:00:00Z", - "ShippedDate": "1997-07-11T00:00:00Z", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10569, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10598, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00Z", - "RequiredDate": "1997-08-11T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10598, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10598, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00Z", - "RequiredDate": "1997-08-11T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10598, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10761, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10761, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10761, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10761, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10820, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10820, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10852, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10852, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10852, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10852, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10852, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10852, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10889, - "CustomerID": "RATTC", - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10889, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10889, - "CustomerID": "RATTC", - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10889, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10988, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10988, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10988, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10988, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11000, - "CustomerID": "RATTC", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11000, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11000, - "CustomerID": "RATTC", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11000, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11000, - "CustomerID": "RATTC", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11000, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.05, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.03, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.03, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.05, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.03, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.01, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "REGGC", - "CompanyName": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "Region": null, - "PostalCode": "42100", - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10288, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00Z", - "RequiredDate": "1996-09-20T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10288, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10288, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00Z", - "RequiredDate": "1996-09-20T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10288, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10428, - "CustomerID": "REGGC", - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00Z", - "RequiredDate": "1997-02-25T00:00:00Z", - "ShippedDate": "1997-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10428, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10443, - "CustomerID": "REGGC", - "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10443, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10443, - "CustomerID": "REGGC", - "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10443, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10562, - "CustomerID": "REGGC", - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-12T00:00:00Z", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10562, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10562, - "CustomerID": "REGGC", - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-12T00:00:00Z", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10562, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10586, - "CustomerID": "REGGC", - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10586, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10655, - "CustomerID": "REGGC", - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00Z", - "RequiredDate": "1997-10-01T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10655, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10727, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-12-01T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10727, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10727, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-12-01T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10727, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10727, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-12-01T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10727, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10812, - "CustomerID": "REGGC", - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10812, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10812, - "CustomerID": "REGGC", - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10812, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10812, - "CustomerID": "REGGC", - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10812, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10908, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10908, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10908, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10908, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.05, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10942, - "CustomerID": "REGGC", - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10942, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11010, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11010, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11010, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11010, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11062, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11062, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11062, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11062, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "RICAR", - "CompanyName": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Assistant Sales Agent", - "Address": "Av. Copacabana, 267", - "City": "Rio de Janeiro", - "Region": "RJ", - "PostalCode": "02389-890", - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10287, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00Z", - "RequiredDate": "1996-09-19T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10287, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10287, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00Z", - "RequiredDate": "1996-09-19T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10287, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10287, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00Z", - "RequiredDate": "1996-09-19T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10287, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10299, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-13T00:00:00Z", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10299, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10299, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-13T00:00:00Z", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10299, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10447, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-03-07T00:00:00Z", - "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10447, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10447, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-03-07T00:00:00Z", - "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10447, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10447, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-03-07T00:00:00Z", - "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10447, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10481, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10481, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10481, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10481, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10563, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-06-24T00:00:00Z", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10563, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10563, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-06-24T00:00:00Z", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10563, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10622, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00Z", - "RequiredDate": "1997-09-03T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10622, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10622, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00Z", - "RequiredDate": "1997-09-03T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10622, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10648, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-09T00:00:00Z", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10648, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10648, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-09T00:00:00Z", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10648, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10813, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10813, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10813, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10813, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.05, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10877, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10877, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10877, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10877, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11059, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-06-10T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11059, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11059, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-06-10T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11059, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11059, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-06-10T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11059, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "RICSU", - "CompanyName": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "Region": null, - "PostalCode": "1203", - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10419, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00Z", - "RequiredDate": "1997-02-17T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10419, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10419, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00Z", - "RequiredDate": "1997-02-17T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10419, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10666, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-22T00:00:00Z", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10666, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10666, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-22T00:00:00Z", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10666, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10758, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10758, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10758, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10758, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10758, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10758, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10931, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10931, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10931, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10931, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10951, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10951, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10951, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10951, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10951, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10951, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11033, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11033, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11033, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11033, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11075, - "CustomerID": "RICSU", - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11075, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11075, - "CustomerID": "RICSU", - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11075, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11075, - "CustomerID": "RICSU", - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11075, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ROMEY", - "CompanyName": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "Region": null, - "PostalCode": "28001", - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10281, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-08-28T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10281, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10281, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-08-28T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10281, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10281, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-08-28T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10281, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10282, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00Z", - "RequiredDate": "1996-09-12T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10282, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10282, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00Z", - "RequiredDate": "1996-09-12T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10282, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10306, - "CustomerID": "ROMEY", - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00Z", - "RequiredDate": "1996-10-14T00:00:00Z", - "ShippedDate": "1996-09-23T00:00:00Z", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10306, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10306, - "CustomerID": "ROMEY", - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00Z", - "RequiredDate": "1996-10-14T00:00:00Z", - "ShippedDate": "1996-09-23T00:00:00Z", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10306, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10306, - "CustomerID": "ROMEY", - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00Z", - "RequiredDate": "1996-10-14T00:00:00Z", - "ShippedDate": "1996-09-23T00:00:00Z", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10306, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10917, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10917, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10917, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10917, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SANTG", - "CompanyName": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "Region": null, - "PostalCode": "4110", - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10520, - "CustomerID": "SANTG", - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10520, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10520, - "CustomerID": "SANTG", - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10520, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10639, - "CustomerID": "SANTG", - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-08-27T00:00:00Z", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10639, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10909, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-10T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10909, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10909, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-10T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10909, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10909, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-10T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10909, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11015, - "CustomerID": "SANTG", - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11015, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11015, - "CustomerID": "SANTG", - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11015, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "SAVEA", - "CompanyName": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": "83720", - "Country": "USA", - "Phone": "(208) 555-8097", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.15, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10398, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00Z", - "RequiredDate": "1997-01-27T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10398, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10398, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00Z", - "RequiredDate": "1997-01-27T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10398, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.15, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10452, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00Z", - "RequiredDate": "1997-03-20T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10452, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10452, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00Z", - "RequiredDate": "1997-03-20T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10452, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.05, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10510, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10510, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10510, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10510, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10603, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10603, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10603, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10603, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10627, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10627, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10627, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10627, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10711, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10711, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10711, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10711, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10711, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10711, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10748, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10748, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10748, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10748, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10748, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10748, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10815, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10815, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10882, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10882, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10882, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10882, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10882, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10882, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.15, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10894, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10894, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.05, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10894, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10894, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10894, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10894, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.05, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10983, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10983, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10983, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10983, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10984, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10984, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10984, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10984, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10984, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10984, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SEVES", - "CompanyName": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "Region": null, - "PostalCode": "OX15 4NB", - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10359, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00Z", - "RequiredDate": "1996-12-19T00:00:00Z", - "ShippedDate": "1996-11-26T00:00:00Z", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10359, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10359, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00Z", - "RequiredDate": "1996-12-19T00:00:00Z", - "ShippedDate": "1996-11-26T00:00:00Z", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10359, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10359, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00Z", - "RequiredDate": "1996-12-19T00:00:00Z", - "ShippedDate": "1996-11-26T00:00:00Z", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10359, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10377, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00Z", - "RequiredDate": "1997-01-06T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10377, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10377, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00Z", - "RequiredDate": "1997-01-06T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10377, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10388, - "CustomerID": "SEVES", - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00Z", - "RequiredDate": "1997-01-16T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10388, - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10388, - "CustomerID": "SEVES", - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00Z", - "RequiredDate": "1997-01-16T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10388, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10388, - "CustomerID": "SEVES", - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00Z", - "RequiredDate": "1997-01-16T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10388, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10472, - "CustomerID": "SEVES", - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00Z", - "RequiredDate": "1997-04-09T00:00:00Z", - "ShippedDate": "1997-03-19T00:00:00Z", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10472, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.05, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10472, - "CustomerID": "SEVES", - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00Z", - "RequiredDate": "1997-04-09T00:00:00Z", - "ShippedDate": "1997-03-19T00:00:00Z", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10472, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10547, - "CustomerID": "SEVES", - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10547, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10547, - "CustomerID": "SEVES", - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10547, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10800, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10800, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10800, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10800, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10800, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10800, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10804, - "CustomerID": "SEVES", - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10804, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10804, - "CustomerID": "SEVES", - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10804, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10804, - "CustomerID": "SEVES", - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10804, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SIMOB", - "CompanyName": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "Region": null, - "PostalCode": "1734", - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10341, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10341, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10341, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10341, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10556, - "CustomerID": "SIMOB", - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00Z", - "RequiredDate": "1997-07-15T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10556, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10642, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-09-05T00:00:00Z", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10642, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10642, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-09-05T00:00:00Z", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10642, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10669, - "CustomerID": "SIMOB", - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-22T00:00:00Z", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10669, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11074, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11074, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SPECD", - "CompanyName": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "Region": null, - "PostalCode": "75016", - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10738, - "CustomerID": "SPECD", - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10738, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10907, - "CustomerID": "SPECD", - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00Z", - "RequiredDate": "1998-03-25T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10907, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10964, - "CustomerID": "SPECD", - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10964, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10964, - "CustomerID": "SPECD", - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10964, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10964, - "CustomerID": "SPECD", - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10964, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11043, - "CustomerID": "SPECD", - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11043, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SPLIR", - "CompanyName": "Split Rail Beer \u0026 Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": "82520", - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10271, - "CustomerID": "SPLIR", - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00Z", - "RequiredDate": "1996-08-29T00:00:00Z", - "ShippedDate": "1996-08-30T00:00:00Z", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10271, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10349, - "CustomerID": "SPLIR", - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00Z", - "RequiredDate": "1996-12-06T00:00:00Z", - "ShippedDate": "1996-11-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10349, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10369, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00Z", - "RequiredDate": "1996-12-30T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10369, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10369, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00Z", - "RequiredDate": "1996-12-30T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10369, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10385, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1996-12-23T00:00:00Z", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10385, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10385, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1996-12-23T00:00:00Z", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10385, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10385, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1996-12-23T00:00:00Z", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10385, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10432, - "CustomerID": "SPLIR", - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10432, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10432, - "CustomerID": "SPLIR", - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10432, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10821, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-15T00:00:00Z", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10821, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10821, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-15T00:00:00Z", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10821, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10974, - "CustomerID": "SPLIR", - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10974, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SUPRD", - "CompanyName": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "Region": null, - "PostalCode": "B-6000", - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10252, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00Z", - "RequiredDate": "1996-08-06T00:00:00Z", - "ShippedDate": "1996-07-11T00:00:00Z", - "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10252, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10252, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00Z", - "RequiredDate": "1996-08-06T00:00:00Z", - "ShippedDate": "1996-07-11T00:00:00Z", - "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10252, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10252, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00Z", - "RequiredDate": "1996-08-06T00:00:00Z", - "ShippedDate": "1996-07-11T00:00:00Z", - "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10252, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10302, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00Z", - "RequiredDate": "1996-10-08T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10302, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10302, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00Z", - "RequiredDate": "1996-10-08T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10302, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10302, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00Z", - "RequiredDate": "1996-10-08T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10302, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10463, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-06T00:00:00Z", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10463, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10463, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-06T00:00:00Z", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10463, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10475, - "CustomerID": "SUPRD", - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00Z", - "RequiredDate": "1997-04-11T00:00:00Z", - "ShippedDate": "1997-04-04T00:00:00Z", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10475, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10475, - "CustomerID": "SUPRD", - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00Z", - "RequiredDate": "1997-04-11T00:00:00Z", - "ShippedDate": "1997-04-04T00:00:00Z", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10475, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10475, - "CustomerID": "SUPRD", - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00Z", - "RequiredDate": "1997-04-11T00:00:00Z", - "ShippedDate": "1997-04-04T00:00:00Z", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10475, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10767, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10767, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10846, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10846, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10846, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10846, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10846, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10846, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11038, - "CustomerID": "SUPRD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11038, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11038, - "CustomerID": "SUPRD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11038, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11038, - "CustomerID": "SUPRD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11038, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "THEBI", - "CompanyName": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": "97201", - "Country": "USA", - "Phone": "(503) 555-3612", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10310, - "CustomerID": "THEBI", - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-18T00:00:00Z", - "ShippedDate": "1996-09-27T00:00:00Z", - "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10310, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10310, - "CustomerID": "THEBI", - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-18T00:00:00Z", - "ShippedDate": "1996-09-27T00:00:00Z", - "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10310, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10708, - "CustomerID": "THEBI", - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10708, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10708, - "CustomerID": "THEBI", - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10708, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10805, - "CustomerID": "THEBI", - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10805, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10805, - "CustomerID": "THEBI", - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10805, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10992, - "CustomerID": "THEBI", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10992, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "THECR", - "CompanyName": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": "59801", - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10624, - "CustomerID": "THECR", - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10624, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10624, - "CustomerID": "THECR", - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10624, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10624, - "CustomerID": "THECR", - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10624, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10775, - "CustomerID": "THECR", - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00Z", - "RequiredDate": "1998-01-09T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10775, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10775, - "CustomerID": "THECR", - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00Z", - "RequiredDate": "1998-01-09T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10775, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11003, - "CustomerID": "THECR", - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11003, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11003, - "CustomerID": "THECR", - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11003, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11003, - "CustomerID": "THECR", - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11003, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "TOMSP", - "CompanyName": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "Region": null, - "PostalCode": "44087", - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10249, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1996-07-05T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-10T00:00:00Z", - "ShipVia": 1, - "Freight": 11.61, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10249, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10249, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1996-07-05T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-10T00:00:00Z", - "ShipVia": 1, - "Freight": 11.61, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10249, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10438, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00Z", - "RequiredDate": "1997-03-06T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10438, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10438, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00Z", - "RequiredDate": "1997-03-06T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10438, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10438, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00Z", - "RequiredDate": "1997-03-06T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10438, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10548, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00Z", - "RequiredDate": "1997-06-23T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10548, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10548, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00Z", - "RequiredDate": "1997-06-23T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10548, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10608, - "CustomerID": "TOMSP", - "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00Z", - "RequiredDate": "1997-08-20T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10608, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10967, - "CustomerID": "TOMSP", - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10967, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10967, - "CustomerID": "TOMSP", - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10967, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "TORTU", - "CompanyName": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "Region": null, - "PostalCode": "05033", - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10276, - "CustomerID": "TORTU", - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10276, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10276, - "CustomerID": "TORTU", - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10276, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10304, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00Z", - "RequiredDate": "1996-10-10T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10304, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10304, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00Z", - "RequiredDate": "1996-10-10T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10304, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10304, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00Z", - "RequiredDate": "1996-10-10T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10304, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10319, - "CustomerID": "TORTU", - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00Z", - "RequiredDate": "1996-10-30T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10319, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10319, - "CustomerID": "TORTU", - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00Z", - "RequiredDate": "1996-10-30T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10319, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10319, - "CustomerID": "TORTU", - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00Z", - "RequiredDate": "1996-10-30T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10319, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10518, - "CustomerID": "TORTU", - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10518, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10518, - "CustomerID": "TORTU", - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10518, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10518, - "CustomerID": "TORTU", - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10518, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10576, - "CustomerID": "TORTU", - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10576, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10576, - "CustomerID": "TORTU", - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10576, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10576, - "CustomerID": "TORTU", - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10576, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10676, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-29T00:00:00Z", - "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10676, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10676, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-29T00:00:00Z", - "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10676, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10676, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-29T00:00:00Z", - "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10676, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10915, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10915, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10915, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10915, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10915, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10915, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11069, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11069, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "TRADH", - "CompanyName": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05634-030", - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10292, - "CustomerID": "TRADH", - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00Z", - "RequiredDate": "1996-09-25T00:00:00Z", - "ShippedDate": "1996-09-02T00:00:00Z", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10292, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10496, - "CustomerID": "TRADH", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10496, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10606, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10606, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10606, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10606, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10606, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10606, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10834, - "CustomerID": "TRADH", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10834, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10834, - "CustomerID": "TRADH", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10834, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10839, - "CustomerID": "TRADH", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-22T00:00:00Z", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10839, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10839, - "CustomerID": "TRADH", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-22T00:00:00Z", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10839, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "TRAIH", - "CompanyName": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": "98034", - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10577, - "CustomerID": "TRAIH", - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10577, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10577, - "CustomerID": "TRAIH", - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10577, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10577, - "CustomerID": "TRAIH", - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10577, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10822, - "CustomerID": "TRAIH", - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10822, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10822, - "CustomerID": "TRAIH", - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10822, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "VAFFE", - "CompanyName": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "Region": null, - "PostalCode": "8200", - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10591, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-07-21T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10591, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10591, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-07-21T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10591, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10591, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-07-21T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10591, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10602, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00Z", - "RequiredDate": "1997-08-14T00:00:00Z", - "ShippedDate": "1997-07-22T00:00:00Z", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10602, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10688, - "CustomerID": "VAFFE", - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10688, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10688, - "CustomerID": "VAFFE", - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10688, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10688, - "CustomerID": "VAFFE", - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10688, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10744, - "CustomerID": "VAFFE", - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00Z", - "RequiredDate": "1997-12-15T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10744, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10921, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10921, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10921, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10921, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10946, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 27.2, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10946, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10946, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 27.2, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10946, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10946, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 27.2, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10946, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10994, - "CustomerID": "VAFFE", - "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-04-09T00:00:00Z", - "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10994, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "VICTE", - "CompanyName": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "Region": null, - "PostalCode": "69004", - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10251, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10251, - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10251, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10251, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10251, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10251, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10334, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00Z", - "RequiredDate": "1996-11-18T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10334, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10334, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00Z", - "RequiredDate": "1996-11-18T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10334, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10450, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-19T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10450, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10450, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-19T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10450, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10459, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10459, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10459, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10459, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10459, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10459, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10478, - "CustomerID": "VICTE", - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-26T00:00:00Z", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10478, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10546, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-05-27T00:00:00Z", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10546, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10546, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-05-27T00:00:00Z", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10546, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10546, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-05-27T00:00:00Z", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10546, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10806, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10806, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10806, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10806, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10806, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10806, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10843, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-18T00:00:00Z", - "ShippedDate": "1998-01-26T00:00:00Z", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10843, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10850, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10850, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10850, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10850, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10850, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10850, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "VINET", - "CompanyName": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "Region": null, - "PostalCode": "51100", - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10248, - "CustomerID": "VINET", - "EmployeeID": 5, - "OrderDate": "1996-07-04T00:00:00Z", - "RequiredDate": "1996-08-01T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 3, - "Freight": 32.38, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10248, - "ProductID": 11, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10248, - "CustomerID": "VINET", - "EmployeeID": 5, - "OrderDate": "1996-07-04T00:00:00Z", - "RequiredDate": "1996-08-01T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 3, - "Freight": 32.38, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10248, - "ProductID": 42, - "UnitPrice": 9.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10248, - "CustomerID": "VINET", - "EmployeeID": 5, - "OrderDate": "1996-07-04T00:00:00Z", - "RequiredDate": "1996-08-01T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 3, - "Freight": 32.38, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10248, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10274, - "CustomerID": "VINET", - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00Z", - "RequiredDate": "1996-09-03T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10274, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10274, - "CustomerID": "VINET", - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00Z", - "RequiredDate": "1996-09-03T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10274, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10295, - "CustomerID": "VINET", - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00Z", - "RequiredDate": "1996-09-30T00:00:00Z", - "ShippedDate": "1996-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10295, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10737, - "CustomerID": "VINET", - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10737, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10737, - "CustomerID": "VINET", - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10737, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10739, - "CustomerID": "VINET", - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-17T00:00:00Z", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10739, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10739, - "CustomerID": "VINET", - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-17T00:00:00Z", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10739, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "WANDK", - "CompanyName": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "Region": null, - "PostalCode": "70563", - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10301, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10301, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10301, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10301, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10348, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00Z", - "RequiredDate": "1996-12-05T00:00:00Z", - "ShippedDate": "1996-11-15T00:00:00Z", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10348, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10348, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00Z", - "RequiredDate": "1996-12-05T00:00:00Z", - "ShippedDate": "1996-11-15T00:00:00Z", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10348, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10356, - "CustomerID": "WANDK", - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00Z", - "RequiredDate": "1996-12-16T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10356, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10356, - "CustomerID": "WANDK", - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00Z", - "RequiredDate": "1996-12-16T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10356, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10356, - "CustomerID": "WANDK", - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00Z", - "RequiredDate": "1996-12-16T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10356, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10513, - "CustomerID": "WANDK", - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-06-03T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10513, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10513, - "CustomerID": "WANDK", - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-06-03T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10513, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10513, - "CustomerID": "WANDK", - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-06-03T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10513, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10632, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00Z", - "RequiredDate": "1997-09-11T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10632, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10632, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00Z", - "RequiredDate": "1997-09-11T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10632, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10640, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00Z", - "RequiredDate": "1997-09-18T00:00:00Z", - "ShippedDate": "1997-08-28T00:00:00Z", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10640, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10640, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00Z", - "RequiredDate": "1997-09-18T00:00:00Z", - "ShippedDate": "1997-08-28T00:00:00Z", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10640, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10651, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10651, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10651, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10651, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10668, - "CustomerID": "WANDK", - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10668, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10668, - "CustomerID": "WANDK", - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10668, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10668, - "CustomerID": "WANDK", - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10668, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11046, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11046, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11046, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11046, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11046, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11046, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WARTH", - "CompanyName": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "Region": null, - "PostalCode": "90110", - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10266, - "CustomerID": "WARTH", - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00Z", - "RequiredDate": "1996-09-06T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10266, - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10270, - "CustomerID": "WARTH", - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00Z", - "RequiredDate": "1996-08-29T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10270, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10270, - "CustomerID": "WARTH", - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00Z", - "RequiredDate": "1996-08-29T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10270, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10320, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10320, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10333, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00Z", - "RequiredDate": "1996-11-15T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10333, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10333, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00Z", - "RequiredDate": "1996-11-15T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10333, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10333, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00Z", - "RequiredDate": "1996-11-15T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10333, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10412, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00Z", - "RequiredDate": "1997-02-10T00:00:00Z", - "ShippedDate": "1997-01-15T00:00:00Z", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10412, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10416, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10416, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10416, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10416, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10416, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10416, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10437, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 19.97, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10437, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10526, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-15T00:00:00Z", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10526, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10526, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-15T00:00:00Z", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10526, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10526, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-15T00:00:00Z", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10526, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10583, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10583, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10583, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10583, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10583, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10583, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10636, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10636, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10636, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10636, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10750, - "CustomerID": "WARTH", - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00Z", - "RequiredDate": "1997-12-19T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10750, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.15, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10750, - "CustomerID": "WARTH", - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00Z", - "RequiredDate": "1997-12-19T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10750, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10750, - "CustomerID": "WARTH", - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00Z", - "RequiredDate": "1997-12-19T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10750, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10781, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10781, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10781, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10781, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10781, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10781, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11025, - "CustomerID": "WARTH", - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11025, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11025, - "CustomerID": "WARTH", - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11025, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "WELLI", - "CompanyName": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": "08737-363", - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10256, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00Z", - "RequiredDate": "1996-08-12T00:00:00Z", - "ShippedDate": "1996-07-17T00:00:00Z", - "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10256, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10256, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00Z", - "RequiredDate": "1996-08-12T00:00:00Z", - "ShippedDate": "1996-07-17T00:00:00Z", - "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10256, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10585, - "CustomerID": "WELLI", - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00Z", - "RequiredDate": "1997-07-29T00:00:00Z", - "ShippedDate": "1997-07-10T00:00:00Z", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10585, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10644, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10644, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10644, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10644, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10644, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10644, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10803, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-06T00:00:00Z", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10803, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10803, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-06T00:00:00Z", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10803, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10803, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-06T00:00:00Z", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10803, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10809, - "CustomerID": "WELLI", - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10809, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10900, - "CustomerID": "WELLI", - "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10900, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10905, - "CustomerID": "WELLI", - "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10905, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10935, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10935, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10935, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10935, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10935, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10935, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WHITC", - "CompanyName": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": "98128", - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10269, - "CustomerID": "WHITC", - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10269, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10269, - "CustomerID": "WHITC", - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10269, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10344, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00Z", - "RequiredDate": "1996-11-29T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10344, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10344, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00Z", - "RequiredDate": "1996-11-29T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10344, - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10469, - "CustomerID": "WHITC", - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 1, - "Freight": 60.18, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10469, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10469, - "CustomerID": "WHITC", - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 1, - "Freight": 60.18, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10469, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10469, - "CustomerID": "WHITC", - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 1, - "Freight": 60.18, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10469, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10483, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-25T00:00:00Z", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10483, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.05, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10483, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-25T00:00:00Z", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10483, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10596, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10596, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10596, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10596, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10596, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10596, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10696, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10696, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10696, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10696, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10723, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00Z", - "RequiredDate": "1997-11-27T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10723, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10904, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10904, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10904, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10904, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11032, - "CustomerID": "WHITC", - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11032, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11032, - "CustomerID": "WHITC", - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11032, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11032, - "CustomerID": "WHITC", - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11032, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11066, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11066, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11066, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11066, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11066, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11066, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WILMK", - "CompanyName": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "Region": null, - "PostalCode": "21240", - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10615, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00Z", - "RequiredDate": "1997-08-27T00:00:00Z", - "ShippedDate": "1997-08-06T00:00:00Z", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10615, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10673, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10673, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10673, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10673, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10673, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10673, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10695, - "CustomerID": "WILMK", - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10695, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10695, - "CustomerID": "WILMK", - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10695, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10695, - "CustomerID": "WILMK", - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10695, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10873, - "CustomerID": "WILMK", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10873, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10873, - "CustomerID": "WILMK", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10873, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10879, - "CustomerID": "WILMK", - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10879, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10879, - "CustomerID": "WILMK", - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10879, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10879, - "CustomerID": "WILMK", - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10879, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10910, - "CustomerID": "WILMK", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10910, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10910, - "CustomerID": "WILMK", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10910, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10910, - "CustomerID": "WILMK", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10910, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11005, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11005, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11005, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11005, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WOLZA", - "CompanyName": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "Region": null, - "PostalCode": "01-012", - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10374, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10374, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10374, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10374, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10611, - "CustomerID": "WOLZA", - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10611, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10611, - "CustomerID": "WOLZA", - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10611, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10611, - "CustomerID": "WOLZA", - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10611, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10792, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10792, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10792, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10792, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10792, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10792, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10870, - "CustomerID": "WOLZA", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10870, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10870, - "CustomerID": "WOLZA", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10870, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10906, - "CustomerID": "WOLZA", - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10906, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11044, - "CustomerID": "WOLZA", - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11044, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/quick-start-dest.json b/tests/postgres/testdata/quick-start-dest.json deleted file mode 100644 index 050a6fb..0000000 --- a/tests/postgres/testdata/quick-start-dest.json +++ /dev/null @@ -1,6067 +0,0 @@ -[ - { - "ActorID": 1, - "FirstName": "Penelope", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 3, - "FirstName": "Ed", - "LastName": "Chase", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 996, - "Title": "Young Language", - "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 4, - "FirstName": "Jennifer", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 721, - "Title": "Reds Pocus", - "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 23.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 5, - "FirstName": "Johnny", - "LastName": "Lollobrigida", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 535, - "Title": "Love Suicides", - "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 21.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 841, - "Title": "Star Operation", - "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 9.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 9, - "FirstName": "Joe", - "LastName": "Swank", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 510, - "Title": "Lawless Vision", - "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 29.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 974, - "Title": "Wild Apollo", - "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 24.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 11, - "FirstName": "Zero", - "LastName": "Cage", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 13, - "FirstName": "Uma", - "LastName": "Wood", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 15, - "FirstName": "Cuba", - "LastName": "Olivier", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 16, - "FirstName": "Fred", - "LastName": "Costner", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 19, - "FirstName": "Bob", - "LastName": "Fawcett", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 182, - "Title": "Control Anthem", - "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 510, - "Title": "Lawless Vision", - "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 29.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 20, - "FirstName": "Lucille", - "LastName": "Tracy", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 21, - "FirstName": "Kirsten", - "LastName": "Paltrow", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 22, - "FirstName": "Elvis", - "LastName": "Marx", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 349, - "Title": "Gangs Pride", - "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 23, - "FirstName": "Sandra", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 435, - "Title": "Hotel Happiness", - "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 26, - "FirstName": "Rip", - "LastName": "Crawford", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 821, - "Title": "Sorority Queen", - "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 27, - "FirstName": "Julia", - "LastName": "Mcqueen", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 996, - "Title": "Young Language", - "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 28, - "FirstName": "Woody", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 33, - "FirstName": "Milla", - "LastName": "Peck", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 34, - "FirstName": "Audrey", - "LastName": "Olivier", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 182, - "Title": "Control Anthem", - "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 35, - "FirstName": "Judy", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 36, - "FirstName": "Burt", - "LastName": "Dukakis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 37, - "FirstName": "Val", - "LastName": "Bolger", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 38, - "FirstName": "Tom", - "LastName": "Mckellen", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 24, - "Title": "Analyze Hoosiers", - "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 19.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 40, - "FirstName": "Johnny", - "LastName": "Cage", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 128, - "Title": "Catch Amistad", - "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 41, - "FirstName": "Jodie", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 721, - "Title": "Reds Pocus", - "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 23.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 42, - "FirstName": "Tom", - "LastName": "Miranda", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 24, - "Title": "Analyze Hoosiers", - "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 19.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 535, - "Title": "Love Suicides", - "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 21.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 43, - "FirstName": "Kirk", - "LastName": "Jovovich", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 180, - "Title": "Conspiracy Spirit", - "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 4, - "Name": "Classics", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 44, - "FirstName": "Nick", - "LastName": "Stallone", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 591, - "Title": "Monsoon Cause", - "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 751, - "Title": "Runaway Tenenbaums", - "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 45, - "FirstName": "Reese", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 198, - "Title": "Crystal Breaking", - "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 767, - "Title": "Scalawag Duck", - "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 13.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 46, - "FirstName": "Parker", - "LastName": "Goldberg", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 47, - "FirstName": "Julia", - "LastName": "Barrymore", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 48, - "FirstName": "Frances", - "LastName": "Day-Lewis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 349, - "Title": "Gangs Pride", - "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 50, - "FirstName": "Natalie", - "LastName": "Hopkins", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 591, - "Title": "Monsoon Cause", - "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 51, - "FirstName": "Gary", - "LastName": "Phoenix", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 974, - "Title": "Wild Apollo", - "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 24.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 54, - "FirstName": "Penelope", - "LastName": "Pinkett", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 510, - "Title": "Lawless Vision", - "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 29.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 55, - "FirstName": "Fay", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 57, - "FirstName": "Jude", - "LastName": "Cruise", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 767, - "Title": "Scalawag Duck", - "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 13.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 58, - "FirstName": "Christian", - "LastName": "Akroyd", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 128, - "Title": "Catch Amistad", - "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 61, - "FirstName": "Christian", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 535, - "Title": "Love Suicides", - "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 21.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 767, - "Title": "Scalawag Duck", - "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 13.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 62, - "FirstName": "Jayne", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 198, - "Title": "Crystal Breaking", - "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 406, - "Title": "Haunting Pianist", - "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 22.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 64, - "FirstName": "Ray", - "LastName": "Johansson", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 67, - "FirstName": "Jessica", - "LastName": "Bailey", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 24, - "Title": "Analyze Hoosiers", - "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 19.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 68, - "FirstName": "Rip", - "LastName": "Winslet", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 435, - "Title": "Hotel Happiness", - "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 70, - "FirstName": "Michelle", - "LastName": "Mcconaughey", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 50, - "Title": "Baked Cleopatra", - "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 72, - "FirstName": "Sean", - "LastName": "Williams", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 609, - "Title": "Muscle Bright", - "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 23.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 73, - "FirstName": "Gary", - "LastName": "Penn", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 74, - "FirstName": "Milla", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 76, - "FirstName": "Angelina", - "LastName": "Astaire", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 765, - "Title": "Saturn Name", - "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 18.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 78, - "FirstName": "Groucho", - "LastName": "Sinatra", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 767, - "Title": "Scalawag Duck", - "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 13.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 79, - "FirstName": "Mae", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 83, - "FirstName": "Ben", - "LastName": "Willis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 84, - "FirstName": "James", - "LastName": "Pitt", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 996, - "Title": "Young Language", - "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 85, - "FirstName": "Minnie", - "LastName": "Zellweger", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 591, - "Title": "Monsoon Cause", - "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 87, - "FirstName": "Spencer", - "LastName": "Peck", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 721, - "Title": "Reds Pocus", - "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 23.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 88, - "FirstName": "Kenneth", - "LastName": "Pesci", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 128, - "Title": "Catch Amistad", - "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 89, - "FirstName": "Charlize", - "LastName": "Dench", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 182, - "Title": "Control Anthem", - "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 406, - "Title": "Haunting Pianist", - "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 22.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 90, - "FirstName": "Sean", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 406, - "Title": "Haunting Pianist", - "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 22.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 93, - "FirstName": "Ellen", - "LastName": "Presley", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 94, - "FirstName": "Kenneth", - "LastName": "Torn", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 95, - "FirstName": "Daryl", - "LastName": "Wahlberg", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 690, - "Title": "Pond Seattle", - "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 25.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 813, - "Title": "Smoochy Control", - "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 18.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 98, - "FirstName": "Chris", - "LastName": "Bridges", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 721, - "Title": "Reds Pocus", - "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 23.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 765, - "Title": "Saturn Name", - "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 18.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 100, - "FirstName": "Spencer", - "LastName": "Depp", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 101, - "FirstName": "Susan", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 774, - "Title": "Searchers Wait", - "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 841, - "Title": "Star Operation", - "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 9.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 103, - "FirstName": "Matthew", - "LastName": "Leigh", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 609, - "Title": "Muscle Bright", - "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 23.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 104, - "FirstName": "Penelope", - "LastName": "Cronyn", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 198, - "Title": "Crystal Breaking", - "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 107, - "FirstName": "Gina", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 774, - "Title": "Searchers Wait", - "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 108, - "FirstName": "Warren", - "LastName": "Nolte", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 721, - "Title": "Reds Pocus", - "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 23.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 110, - "FirstName": "Susan", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 435, - "Title": "Hotel Happiness", - "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 111, - "FirstName": "Cameron", - "LastName": "Zellweger", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 112, - "FirstName": "Russell", - "LastName": "Bacall", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 113, - "FirstName": "Morgan", - "LastName": "Hopkins", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 114, - "FirstName": "Morgan", - "LastName": "Mcdormand", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 841, - "Title": "Star Operation", - "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 9.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 116, - "FirstName": "Dan", - "LastName": "Streep", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 128, - "Title": "Catch Amistad", - "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 118, - "FirstName": "Cuba", - "LastName": "Allen", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 119, - "FirstName": "Warren", - "LastName": "Jackman", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 751, - "Title": "Runaway Tenenbaums", - "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 121, - "FirstName": "Liza", - "LastName": "Bergman", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 198, - "Title": "Crystal Breaking", - "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 127, - "FirstName": "Kevin", - "LastName": "Garland", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 128, - "FirstName": "Cate", - "LastName": "Mcqueen", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 774, - "Title": "Searchers Wait", - "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 129, - "FirstName": "Daryl", - "LastName": "Crawford", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 134, - "FirstName": "Gene", - "LastName": "Hopkins", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 690, - "Title": "Pond Seattle", - "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 25.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 135, - "FirstName": "Rita", - "LastName": "Reynolds", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 137, - "FirstName": "Morgan", - "LastName": "Williams", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 841, - "Title": "Star Operation", - "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 9.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 139, - "FirstName": "Ewan", - "LastName": "Gooding", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 140, - "FirstName": "Whoopi", - "LastName": "Hurt", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 141, - "FirstName": "Cate", - "LastName": "Harris", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 821, - "Title": "Sorority Queen", - "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 143, - "FirstName": "River", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 690, - "Title": "Pond Seattle", - "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 25.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 821, - "Title": "Sorority Queen", - "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 144, - "FirstName": "Angela", - "LastName": "Witherspoon", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 146, - "FirstName": "Albert", - "LastName": "Johansson", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 591, - "Title": "Monsoon Cause", - "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 152, - "FirstName": "Ben", - "LastName": "Harris", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 821, - "Title": "Sorority Queen", - "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 153, - "FirstName": "Minnie", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 180, - "Title": "Conspiracy Spirit", - "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 4, - "Name": "Classics", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 154, - "FirstName": "Meryl", - "LastName": "Gibson", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 155, - "FirstName": "Ian", - "LastName": "Tandy", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 128, - "Title": "Catch Amistad", - "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 156, - "FirstName": "Fay", - "LastName": "Wood", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 198, - "Title": "Crystal Breaking", - "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 349, - "Title": "Gangs Pride", - "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 157, - "FirstName": "Greta", - "LastName": "Malden", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 24, - "Title": "Analyze Hoosiers", - "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 19.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 406, - "Title": "Haunting Pianist", - "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 22.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 535, - "Title": "Love Suicides", - "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 21.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 158, - "FirstName": "Vivien", - "LastName": "Basinger", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 160, - "FirstName": "Chris", - "LastName": "Depp", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 767, - "Title": "Scalawag Duck", - "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 13.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 161, - "FirstName": "Harvey", - "LastName": "Hope", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 163, - "FirstName": "Christopher", - "LastName": "West", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 180, - "Title": "Conspiracy Spirit", - "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 4, - "Name": "Classics", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 996, - "Title": "Young Language", - "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 164, - "FirstName": "Humphrey", - "LastName": "Willis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 165, - "FirstName": "Al", - "LastName": "Garland", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 166, - "FirstName": "Nick", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 168, - "FirstName": "Will", - "LastName": "Wilson", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 841, - "Title": "Star Operation", - "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 9.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 169, - "FirstName": "Kenneth", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 349, - "Title": "Gangs Pride", - "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 170, - "FirstName": "Mena", - "LastName": "Hopper", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 180, - "Title": "Conspiracy Spirit", - "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 4, - "Name": "Classics", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 996, - "Title": "Young Language", - "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 171, - "FirstName": "Olympia", - "LastName": "Pfeiffer", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 172, - "FirstName": "Groucho", - "LastName": "Williams", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 609, - "Title": "Muscle Bright", - "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 23.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 175, - "FirstName": "William", - "LastName": "Hackman", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 591, - "Title": "Monsoon Cause", - "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 176, - "FirstName": "Jon", - "LastName": "Chase", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 177, - "FirstName": "Gene", - "LastName": "Mckellen", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 751, - "Title": "Runaway Tenenbaums", - "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 178, - "FirstName": "Lisa", - "LastName": "Monroe", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 974, - "Title": "Wild Apollo", - "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 24.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 179, - "FirstName": "Ed", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 24, - "Title": "Analyze Hoosiers", - "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 19.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 180, - "FirstName": "Jeff", - "LastName": "Silverstone", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 609, - "Title": "Muscle Bright", - "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 23.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 181, - "FirstName": "Matthew", - "LastName": "Carrey", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 609, - "Title": "Muscle Bright", - "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 23.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 184, - "FirstName": "Humphrey", - "LastName": "Garland", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 185, - "FirstName": "Michael", - "LastName": "Bolger", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 510, - "Title": "Lawless Vision", - "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 29.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 187, - "FirstName": "Renee", - "LastName": "Ball", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 435, - "Title": "Hotel Happiness", - "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 188, - "FirstName": "Rock", - "LastName": "Dukakis", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 774, - "Title": "Searchers Wait", - "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 189, - "FirstName": "Cuba", - "LastName": "Birch", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 190, - "FirstName": "Audrey", - "LastName": "Bailey", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 192, - "FirstName": "John", - "LastName": "Suvari", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 193, - "FirstName": "Burt", - "LastName": "Temple", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 194, - "FirstName": "Meryl", - "LastName": "Allen", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 195, - "FirstName": "Jayne", - "LastName": "Silverstone", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 813, - "Title": "Smoochy Control", - "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 18.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 196, - "FirstName": "Bela", - "LastName": "Walken", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 197, - "FirstName": "Reese", - "LastName": "West", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 974, - "Title": "Wild Apollo", - "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 24.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 198, - "FirstName": "Mary", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 406, - "Title": "Haunting Pianist", - "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 22.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - }, - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - }, - { - "ActorID": 199, - "FirstName": "Julia", - "LastName": "Fawcett", - "LastUpdate": "2013-05-26T14:47:57.62Z", - "Films": [ - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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", - "Language": { - "LanguageID": 1, - "Name": "English ", - "LastUpdate": "2006-02-15T10:02:19Z" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/quick-start-dest2.json b/tests/postgres/testdata/quick-start-dest2.json deleted file mode 100644 index 095bd0c..0000000 --- a/tests/postgres/testdata/quick-start-dest2.json +++ /dev/null @@ -1,1769 +0,0 @@ -[ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 499, - "Title": "King Evolution", - "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 50, - "Title": "Baked Cleopatra", - "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17" - } - ], - "Actors": [ - { - "ActorID": 1, - "FirstName": "Penelope", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 20, - "FirstName": "Lucille", - "LastName": "Tracy", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 36, - "FirstName": "Burt", - "LastName": "Dukakis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 70, - "FirstName": "Michelle", - "LastName": "Mcconaughey", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 118, - "FirstName": "Cuba", - "LastName": "Allen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 187, - "FirstName": "Renee", - "LastName": "Ball", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 198, - "FirstName": "Mary", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 6, - "Name": "Documentary", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 996, - "Title": "Young Language", - "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 973, - "Title": "Wife Turn", - "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 27.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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" - } - ], - "Actors": [ - { - "ActorID": 3, - "FirstName": "Ed", - "LastName": "Chase", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 27, - "FirstName": "Julia", - "LastName": "Mcqueen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 28, - "FirstName": "Woody", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 47, - "FirstName": "Julia", - "LastName": "Barrymore", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 84, - "FirstName": "James", - "LastName": "Pitt", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 107, - "FirstName": "Gina", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 111, - "FirstName": "Cameron", - "LastName": "Zellweger", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 157, - "FirstName": "Greta", - "LastName": "Malden", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 163, - "FirstName": "Christopher", - "LastName": "West", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 170, - "FirstName": "Mena", - "LastName": "Hopper", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 185, - "FirstName": "Michael", - "LastName": "Bolger", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 12, - "Name": "Music", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 721, - "Title": "Reds Pocus", - "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 23.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5" - }, - { - "FilmID": 426, - "Title": "Home Pity", - "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 15.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4" - }, - { - "FilmID": 767, - "Title": "Scalawag Duck", - "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 13.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16" - } - ], - "Actors": [ - { - "ActorID": 4, - "FirstName": "Jennifer", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 21, - "FirstName": "Kirsten", - "LastName": "Paltrow", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 36, - "FirstName": "Burt", - "LastName": "Dukakis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 41, - "FirstName": "Jodie", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 45, - "FirstName": "Reese", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 57, - "FirstName": "Jude", - "LastName": "Cruise", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 58, - "FirstName": "Christian", - "LastName": "Akroyd", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 61, - "FirstName": "Christian", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 78, - "FirstName": "Groucho", - "LastName": "Sinatra", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 87, - "FirstName": "Spencer", - "LastName": "Peck", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 98, - "FirstName": "Chris", - "LastName": "Bridges", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 108, - "FirstName": "Warren", - "LastName": "Nolte", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 160, - "FirstName": "Chris", - "LastName": "Depp", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 166, - "FirstName": "Nick", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 190, - "FirstName": "Audrey", - "LastName": "Bailey", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 192, - "FirstName": "John", - "LastName": "Suvari", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 13, - "Name": "New", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 340, - "Title": "Frontier Cabin", - "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 183, - "ReplacementCost": 14.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", - "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11" - }, - { - "FilmID": 974, - "Title": "Wild Apollo", - "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 24.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12" - }, - { - "FilmID": 751, - "Title": "Runaway Tenenbaums", - "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4" - } - ], - "Actors": [ - { - "ActorID": 5, - "FirstName": "Johnny", - "LastName": "Lollobrigida", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 9, - "FirstName": "Joe", - "LastName": "Swank", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 26, - "FirstName": "Rip", - "LastName": "Crawford", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 44, - "FirstName": "Nick", - "LastName": "Stallone", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 51, - "FirstName": "Gary", - "LastName": "Phoenix", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 55, - "FirstName": "Fay", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 57, - "FirstName": "Jude", - "LastName": "Cruise", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 83, - "FirstName": "Ben", - "LastName": "Willis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 119, - "FirstName": "Warren", - "LastName": "Jackman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 161, - "FirstName": "Harvey", - "LastName": "Hope", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 177, - "FirstName": "Gene", - "LastName": "Mckellen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 178, - "FirstName": "Lisa", - "LastName": "Monroe", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 197, - "FirstName": "Reese", - "LastName": "West", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 11, - "Name": "Horror", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 535, - "Title": "Love Suicides", - "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 21.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2" - }, - { - "FilmID": 24, - "Title": "Analyze Hoosiers", - "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 19.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4" - } - ], - "Actors": [ - { - "ActorID": 5, - "FirstName": "Johnny", - "LastName": "Lollobrigida", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 38, - "FirstName": "Tom", - "LastName": "Mckellen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 42, - "FirstName": "Tom", - "LastName": "Miranda", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 61, - "FirstName": "Christian", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 67, - "FirstName": "Jessica", - "LastName": "Bailey", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 157, - "FirstName": "Greta", - "LastName": "Malden", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 179, - "FirstName": "Ed", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 14, - "Name": "Sci-Fi", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 817, - "Title": "Soldiers Evolution", - "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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" - } - ], - "Actors": [ - { - "ActorID": 5, - "FirstName": "Johnny", - "LastName": "Lollobrigida", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 13, - "FirstName": "Uma", - "LastName": "Wood", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 15, - "FirstName": "Cuba", - "LastName": "Olivier", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 35, - "FirstName": "Judy", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 90, - "FirstName": "Sean", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 112, - "FirstName": "Russell", - "LastName": "Bacall", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 153, - "FirstName": "Minnie", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 179, - "FirstName": "Ed", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 198, - "FirstName": "Mary", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 15, - "Name": "Sports", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 841, - "Title": "Star Operation", - "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 9.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'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" - }, - { - "FilmID": 719, - "Title": "Records Zorro", - "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 11.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2" - }, - { - "FilmID": 813, - "Title": "Smoochy Control", - "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 18.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4" - } - ], - "Actors": [ - { - "ActorID": 5, - "FirstName": "Johnny", - "LastName": "Lollobrigida", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 62, - "FirstName": "Jayne", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 83, - "FirstName": "Ben", - "LastName": "Willis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 95, - "FirstName": "Daryl", - "LastName": "Wahlberg", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 101, - "FirstName": "Susan", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 113, - "FirstName": "Morgan", - "LastName": "Hopkins", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 114, - "FirstName": "Morgan", - "LastName": "Mcdormand", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 135, - "FirstName": "Rita", - "LastName": "Reynolds", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 137, - "FirstName": "Morgan", - "LastName": "Williams", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 139, - "FirstName": "Ewan", - "LastName": "Gooding", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 163, - "FirstName": "Christopher", - "LastName": "West", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 168, - "FirstName": "Will", - "LastName": "Wilson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 175, - "FirstName": "William", - "LastName": "Hackman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 194, - "FirstName": "Meryl", - "LastName": "Allen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 195, - "FirstName": "Jayne", - "LastName": "Silverstone", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 510, - "Title": "Lawless Vision", - "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 29.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5" - }, - { - "FilmID": 886, - "Title": "Theory Mermaid", - "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 9.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 349, - "Title": "Gangs Pride", - "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9" - }, - { - "FilmID": 820, - "Title": "Sons Interview", - "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 11.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 690, - "Title": "Pond Seattle", - "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 25.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8" - } - ], - "Actors": [ - { - "ActorID": 9, - "FirstName": "Joe", - "LastName": "Swank", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 15, - "FirstName": "Cuba", - "LastName": "Olivier", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 16, - "FirstName": "Fred", - "LastName": "Costner", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 19, - "FirstName": "Bob", - "LastName": "Fawcett", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 22, - "FirstName": "Elvis", - "LastName": "Marx", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 23, - "FirstName": "Sandra", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 46, - "FirstName": "Parker", - "LastName": "Goldberg", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 48, - "FirstName": "Frances", - "LastName": "Day-Lewis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 54, - "FirstName": "Penelope", - "LastName": "Pinkett", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 95, - "FirstName": "Daryl", - "LastName": "Wahlberg", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 134, - "FirstName": "Gene", - "LastName": "Hopkins", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 140, - "FirstName": "Whoopi", - "LastName": "Hurt", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 143, - "FirstName": "River", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 156, - "FirstName": "Fay", - "LastName": "Wood", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 164, - "FirstName": "Humphrey", - "LastName": "Willis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 168, - "FirstName": "Will", - "LastName": "Wilson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 169, - "FirstName": "Kenneth", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 170, - "FirstName": "Mena", - "LastName": "Hopper", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 180, - "FirstName": "Jeff", - "LastName": "Silverstone", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 185, - "FirstName": "Michael", - "LastName": "Bolger", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 189, - "FirstName": "Cuba", - "LastName": "Birch", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 198, - "FirstName": "Mary", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 199, - "FirstName": "Julia", - "LastName": "Fawcett", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 10, - "Name": "Games", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 597, - "Title": "Moonwalker Fool", - "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 4.99, - "Length": 184, - "ReplacementCost": 12.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14" - }, - { - "FilmID": 591, - "Title": "Monsoon Cause", - "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 20.99, - "Rating": "PG", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 406, - "Title": "Haunting Pianist", - "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 22.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 141, - "Title": "Chicago North", - "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 11.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5" - } - ], - "Actors": [ - { - "ActorID": 11, - "FirstName": "Zero", - "LastName": "Cage", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 13, - "FirstName": "Uma", - "LastName": "Wood", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 28, - "FirstName": "Woody", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 44, - "FirstName": "Nick", - "LastName": "Stallone", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 50, - "FirstName": "Natalie", - "LastName": "Hopkins", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 62, - "FirstName": "Jayne", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 64, - "FirstName": "Ray", - "LastName": "Johansson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 79, - "FirstName": "Mae", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 85, - "FirstName": "Minnie", - "LastName": "Zellweger", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 89, - "FirstName": "Charlize", - "LastName": "Dench", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 90, - "FirstName": "Sean", - "LastName": "Guiness", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 118, - "FirstName": "Cuba", - "LastName": "Allen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 121, - "FirstName": "Liza", - "LastName": "Bergman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 127, - "FirstName": "Kevin", - "LastName": "Garland", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 129, - "FirstName": "Daryl", - "LastName": "Crawford", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 143, - "FirstName": "River", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 146, - "FirstName": "Albert", - "LastName": "Johansson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 154, - "FirstName": "Meryl", - "LastName": "Gibson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 157, - "FirstName": "Greta", - "LastName": "Malden", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 175, - "FirstName": "William", - "LastName": "Hackman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 184, - "FirstName": "Humphrey", - "LastName": "Garland", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 193, - "FirstName": "Burt", - "LastName": "Temple", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 195, - "FirstName": "Jayne", - "LastName": "Silverstone", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 198, - "FirstName": "Mary", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 5, - "Name": "Comedy", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 182, - "Title": "Control Anthem", - "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 185, - "ReplacementCost": 9.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Commentaries}", - "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11" - }, - { - "FilmID": 765, - "Title": "Saturn Name", - "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 4.99, - "Length": 182, - "ReplacementCost": 18.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16" - }, - { - "FilmID": 774, - "Title": "Searchers Wait", - "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 182, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'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" - } - ], - "Actors": [ - { - "ActorID": 19, - "FirstName": "Bob", - "LastName": "Fawcett", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 34, - "FirstName": "Audrey", - "LastName": "Olivier", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 76, - "FirstName": "Angelina", - "LastName": "Astaire", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 89, - "FirstName": "Charlize", - "LastName": "Dench", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 98, - "FirstName": "Chris", - "LastName": "Bridges", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 101, - "FirstName": "Susan", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 107, - "FirstName": "Gina", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 128, - "FirstName": "Cate", - "LastName": "Mcqueen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 188, - "FirstName": "Rock", - "LastName": "Dukakis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 7, - "Name": "Drama", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 473, - "Title": "Jacket Frisco", - "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 181, - "ReplacementCost": 16.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", - "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8" - } - ], - "Actors": [ - { - "ActorID": 19, - "FirstName": "Bob", - "LastName": "Fawcett", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 33, - "FirstName": "Milla", - "LastName": "Peck", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 79, - "FirstName": "Mae", - "LastName": "Hoffman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 89, - "FirstName": "Charlize", - "LastName": "Dench", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 93, - "FirstName": "Ellen", - "LastName": "Presley", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 94, - "FirstName": "Kenneth", - "LastName": "Torn", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 144, - "FirstName": "Angela", - "LastName": "Witherspoon", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 158, - "FirstName": "Vivien", - "LastName": "Basinger", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 165, - "FirstName": "Al", - "LastName": "Garland", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 196, - "FirstName": "Bela", - "LastName": "Walken", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 9, - "Name": "Foreign", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 435, - "Title": "Hotel Happiness", - "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 181, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Behind the Scenes\"}", - "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5" - }, - { - "FilmID": 821, - "Title": "Sorority Queen", - "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 184, - "ReplacementCost": 17.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 467, - "Title": "Intrigue Worst", - "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 181, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'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" - }, - { - "FilmID": 128, - "Title": "Catch Amistad", - "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 0.99, - "Length": 183, - "ReplacementCost": 10.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", - "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16" - }, - { - "FilmID": 198, - "Title": "Crystal Breaking", - "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 22.99, - "Rating": "NC-17", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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" - } - ], - "Actors": [ - { - "ActorID": 23, - "FirstName": "Sandra", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 26, - "FirstName": "Rip", - "LastName": "Crawford", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 37, - "FirstName": "Val", - "LastName": "Bolger", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 40, - "FirstName": "Johnny", - "LastName": "Cage", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 45, - "FirstName": "Reese", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 58, - "FirstName": "Christian", - "LastName": "Akroyd", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 62, - "FirstName": "Jayne", - "LastName": "Neeson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 68, - "FirstName": "Rip", - "LastName": "Winslet", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 73, - "FirstName": "Gary", - "LastName": "Penn", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 88, - "FirstName": "Kenneth", - "LastName": "Pesci", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 104, - "FirstName": "Penelope", - "LastName": "Cronyn", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 107, - "FirstName": "Gina", - "LastName": "Degeneres", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 110, - "FirstName": "Susan", - "LastName": "Davis", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 116, - "FirstName": "Dan", - "LastName": "Streep", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 121, - "FirstName": "Liza", - "LastName": "Bergman", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 141, - "FirstName": "Cate", - "LastName": "Harris", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 143, - "FirstName": "River", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 152, - "FirstName": "Ben", - "LastName": "Harris", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 154, - "FirstName": "Meryl", - "LastName": "Gibson", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 155, - "FirstName": "Ian", - "LastName": "Tandy", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 156, - "FirstName": "Fay", - "LastName": "Wood", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 187, - "FirstName": "Renee", - "LastName": "Ball", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 4, - "Name": "Classics", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 180, - "Title": "Conspiracy Spirit", - "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 4, - "RentalRate": 2.99, - "Length": 184, - "ReplacementCost": 27.99, - "Rating": "PG-13", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{Trailers,Commentaries}", - "Fulltext": "'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" - } - ], - "Actors": [ - { - "ActorID": 43, - "FirstName": "Kirk", - "LastName": "Jovovich", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 153, - "FirstName": "Minnie", - "LastName": "Kilmer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 163, - "FirstName": "Christopher", - "LastName": "West", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 170, - "FirstName": "Mena", - "LastName": "Hopper", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - }, - { - "CategoryID": 16, - "Name": "Travel", - "LastUpdate": "2006-02-15T09:46:27Z", - "Films": [ - { - "FilmID": 609, - "Title": "Muscle Bright", - "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 23.99, - "Rating": "G", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9" - }, - { - "FilmID": 872, - "Title": "Sweet Brotherhood", - "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", - "ReleaseYear": 2006, - "LanguageID": 1, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 185, - "ReplacementCost": 27.99, - "Rating": "R", - "LastUpdate": "2013-05-26T14:50:58.951Z", - "SpecialFeatures": "{\"Deleted Scenes\"}", - "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9" - } - ], - "Actors": [ - { - "ActorID": 72, - "FirstName": "Sean", - "LastName": "Williams", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 74, - "FirstName": "Milla", - "LastName": "Keitel", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 100, - "FirstName": "Spencer", - "LastName": "Depp", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 103, - "FirstName": "Matthew", - "LastName": "Leigh", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 143, - "FirstName": "River", - "LastName": "Dean", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 171, - "FirstName": "Olympia", - "LastName": "Pfeiffer", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 172, - "FirstName": "Groucho", - "LastName": "Williams", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 176, - "FirstName": "Jon", - "LastName": "Chase", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 180, - "FirstName": "Jeff", - "LastName": "Silverstone", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 181, - "FirstName": "Matthew", - "LastName": "Carrey", - "LastUpdate": "2013-05-26T14:47:57.62Z" - }, - { - "ActorID": 194, - "FirstName": "Meryl", - "LastName": "Allen", - "LastUpdate": "2013-05-26T14:47:57.62Z" - } - ] - } -] \ No newline at end of file diff --git a/tests/testdata b/tests/testdata new file mode 160000 index 0000000..7f3f3cc --- /dev/null +++ b/tests/testdata @@ -0,0 +1 @@ +Subproject commit 7f3f3cc26ce34324f3699d6b422376671b827490 diff --git a/tests/testdata/common/bool_operators.json b/tests/testdata/common/bool_operators.json deleted file mode 100644 index e3f8edf..0000000 --- a/tests/testdata/common/bool_operators.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "Eq1": false, - "Eq2": false, - "NEq1": true, - "NEq2": false, - "Distinct1": true, - "Distinct2": true, - "NotDistinct1": false, - "NotDistinct2": false, - "IsTrue": false, - "IsNotTrue": true, - "IsFalse": true, - "IsNotFalse": false, - "IsUnknown": false, - "IsNotUnknown": true, - "Complex1": true, - "Complex2": true - }, - { - "Eq1": null, - "Eq2": false, - "NEq1": null, - "NEq2": false, - "Distinct1": true, - "Distinct2": true, - "NotDistinct1": false, - "NotDistinct2": false, - "IsTrue": false, - "IsNotTrue": true, - "IsFalse": true, - "IsNotFalse": false, - "IsUnknown": false, - "IsNotUnknown": true, - "Complex1": true, - "Complex2": true - } -] \ No newline at end of file diff --git a/tests/testdata/common/common.go b/tests/testdata/common/common.go deleted file mode 100644 index 60ebf7c..0000000 --- a/tests/testdata/common/common.go +++ /dev/null @@ -1,93 +0,0 @@ -package common - -type ExpressionTestResult struct { - IsNull *bool - IsNotNull *bool - In *bool - InSelect *bool - NotIn *bool - NotInSelect *bool -} - -type EqualityExpResult struct { - Eq1 *bool - Eq2 *bool - Distinct1 *bool - Distinct2 *bool - NotDistinct1 *bool - NotDistinct2 *bool - Lt1 *bool - Lt2 *bool - Lte1 *bool - Lte2 *bool - Gt1 *bool - Gt2 *bool - Gte1 *bool - Gte2 *bool -} - -type AllTypesIntegerExpResult struct { - EqualityExpResult `alias:"."` - - Add1 *int64 - Add2 *int64 - Sub1 *int64 - Sub2 *int64 - Mul1 *int64 - Mul2 *int64 - Div1 *int64 - Div2 *int64 - Mod1 *int64 - Mod2 *int64 - Pow1 *int64 - Pow2 *int64 - BitAnd1 *int64 - BitAnd2 *int64 - BitOr1 *int64 - BitOr2 *int64 - BitXor1 *int64 - BitXor2 *int64 - BitShiftLeft1 *int64 - BitShiftLeft2 *int64 - BitShiftRight1 *int64 - BitShiftRight2 *int64 -} - -type FloatExpressionTestResult struct { - Eq1 *bool - Eq2 *bool - Eq3 *bool - Distinct1 *bool - Distinct2 *bool - Distinct3 *bool - NotDistinct1 *bool - NotDistinct2 *bool - NotDistinct3 *bool - Lt1 *bool - Lt2 *bool - Gt1 *bool - Gt2 *bool - Add1 *float64 - Add2 *float64 - Sub1 *float64 - Sub2 *float64 - Mul1 *float64 - Mul2 *float64 - Div1 *float64 - Div2 *float64 - Mod1 *float64 - Mod2 *float64 - Pow1 *float64 - Pow2 *float64 - - Abs *float64 - Power *float64 - Sqrt *float64 - Cbrt *float64 - Ceil *float64 - Floor *float64 - Round1 *float64 - Round2 *float64 - Sign *float64 - Trunc *float64 -} diff --git a/tests/testdata/common/float_operators.json b/tests/testdata/common/float_operators.json deleted file mode 100644 index cc234ab..0000000 --- a/tests/testdata/common/float_operators.json +++ /dev/null @@ -1,76 +0,0 @@ -[ - { - "Eq1": true, - "Eq2": false, - "Eq3": false, - "Distinct1": false, - "Distinct2": true, - "Distinct3": true, - "NotDistinct1": true, - "NotDistinct2": false, - "NotDistinct3": false, - "Lt1": true, - "Lt2": true, - "Gt1": false, - "Gt2": false, - "Add1": 2.22, - "Add2": 12.33, - "Sub1": 0, - "Sub2": -10.11, - "Mul1": 1.23, - "Mul2": 12.45, - "Div1": 1, - "Div2": 0.09, - "Mod1": 0, - "Mod2": 1.11, - "Pow1": 1.12, - "Pow2": 1.24, - "Abs": 1.11, - "Power": 1.24, - "Sqrt": 1.05, - "Cbrt": 1.03, - "Ceil": 6, - "Floor": 5, - "Round1": 1, - "Round2": 1.11, - "Sign": 1, - "Trunc": 1.1 - }, - { - "Eq1": true, - "Eq2": false, - "Eq3": false, - "Distinct1": false, - "Distinct2": true, - "Distinct3": true, - "NotDistinct1": true, - "NotDistinct2": false, - "NotDistinct3": false, - "Lt1": true, - "Lt2": true, - "Gt1": false, - "Gt2": false, - "Add1": 2.22, - "Add2": 12.33, - "Sub1": null, - "Sub2": -10.11, - "Mul1": null, - "Mul2": 12.45, - "Div1": null, - "Div2": 0.09, - "Mod1": null, - "Mod2": 1.11, - "Pow1": null, - "Pow2": 1.24, - "Abs": 1.11, - "Power": 1.24, - "Sqrt": 1.05, - "Cbrt": 1.03, - "Ceil": 6, - "Floor": 5, - "Round1": 1, - "Round2": 1.11, - "Sign": 1, - "Trunc": 1.1 - } -] \ No newline at end of file diff --git a/tests/testdata/common/int_operators.json b/tests/testdata/common/int_operators.json deleted file mode 100644 index 249efff..0000000 --- a/tests/testdata/common/int_operators.json +++ /dev/null @@ -1,78 +0,0 @@ -[ - { - "Eq1": true, - "Eq2": false, - "Distinct1": false, - "Distinct2": true, - "NotDistinct1": true, - "NotDistinct2": false, - "Lt1": true, - "Lt2": false, - "Lte1": true, - "Lte2": false, - "Gt1": false, - "Gt2": true, - "Gte1": false, - "Gte2": true, - "Add1": 10000, - "Add2": 5011, - "Sub1": 0, - "Sub2": 4989, - "Mul1": 25000000, - "Mul2": 55000, - "Div1": 1, - "Div2": 454, - "Mod1": 0, - "Mod2": 6, - "Pow1": 38416, - "Pow2": 7529536, - "BitAnd1": 14, - "BitAnd2": 14, - "BitOr1": 14, - "BitOr2": 30, - "BitXor1": 0, - "BitXor2": 5, - "BitShiftLeft1": 1792, - "BitShiftLeft2": 224, - "BitShiftRight1": 3, - "BitShiftRight2": 7 - }, - { - "Eq1": true, - "Eq2": false, - "Distinct1": false, - "Distinct2": true, - "NotDistinct1": true, - "NotDistinct2": false, - "Lt1": null, - "Lt2": false, - "Lte1": null, - "Lte2": false, - "Gt1": null, - "Gt2": true, - "Gte1": null, - "Gte2": true, - "Add1": 10000, - "Add2": 5011, - "Sub1": 0, - "Sub2": 4989, - "Mul1": 25000000, - "Mul2": 55000, - "Div1": 1, - "Div2": 454, - "Mod1": 0, - "Mod2": 6, - "Pow1": 38416, - "Pow2": 7529536, - "BitAnd1": 14, - "BitAnd2": 14, - "BitOr1": 14, - "BitOr2": 30, - "BitXor1": 0, - "BitXor2": 5, - "BitShiftLeft1": 1792, - "BitShiftLeft2": 224, - "BitShiftRight1": 3, - "BitShiftRight2": 7 - } -] \ No newline at end of file